diff --git a/.env.example b/.env.example index 2a4a8b78..3cf92cbd 100644 --- a/.env.example +++ b/.env.example @@ -19,12 +19,12 @@ LOG_STACK=single LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug -DB_CONNECTION=sqlite -# DB_HOST=127.0.0.1 -# DB_PORT=3306 -# DB_DATABASE=laravel -# DB_USERNAME=root -# DB_PASSWORD= +DB_CONNECTION=pgsql +DB_HOST=127.0.0.1 +DB_PORT=5432 +DB_DATABASE=pic2bim +DB_USERNAME=root +DB_PASSWORD= SESSION_DRIVER=database SESSION_LIFETIME=120 @@ -62,3 +62,4 @@ AWS_BUCKET= AWS_USE_PATH_STYLE_ENDPOINT=false VITE_APP_NAME="${APP_NAME}" +VITE_MAPBOX_TOKEN="" diff --git a/README.md b/README.md index 1a4c26ba..2cd5ec3b 100644 --- a/README.md +++ b/README.md @@ -1,66 +1,117 @@ -
+# PIC2BIM + +## Overview +PIC2BIM is a powerful tool designed to convert images into Building Information Models (BIM). This project streamlines the transformation of visual data into structured digital models, facilitating efficient architectural and engineering workflows. - -## About Laravel +## Prerequisites +Ensure you have the following installed before proceeding: +- PHP 8.0 or later +- Composer +- Node.js & npm +- PostgreSQL database +- Laravel 12 +- Git -Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: +## Database Import -- [Simple, fast routing engine](https://laravel.com/docs/routing). -- [Powerful dependency injection container](https://laravel.com/docs/container). -- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. -- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). -- Database agnostic [schema migrations](https://laravel.com/docs/migrations). -- [Robust background job processing](https://laravel.com/docs/queues). -- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). +Create a database named PIC2BIM using adminer or any other database tool +- Import the provided database file into PIC2BIM +- Execute the following query in the editor -Laravel is accessible, powerful, and provides tools required for large, robust applications. + ```sh + CREATE EXTENSION POSTGIS; + ``` +- Open bld_fts_buildingpart database table and import the data dump of that table +- Drop codepoint table and import the provided codepoint dump file +- Execute the following query in the editor -## Learning Laravel + ```sh + DELETE from personal_access_tokens where id > 0 + ``` -Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. -You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. +## Photos4all -If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. +Unzip the provided photos4all folder in storage/app/public directory -## Laravel Sponsors +## Installation Guide +Follow these steps to set up PIC2BIM locally: -We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). +### Step 1: Clone the Repository +```sh +git clone git@github.com:buildvoc/PIC2BIM.git +cd PIC2BIM +``` -### Premium Partners +### Step 2: Checkout to Staging Branch +```sh +git checkout staging +``` -- **[Vehikl](https://vehikl.com/)** -- **[Tighten Co.](https://tighten.co)** -- **[WebReinvent](https://webreinvent.com/)** -- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** -- **[64 Robots](https://64robots.com)** -- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** -- **[Cyber-Duck](https://cyber-duck.co.uk)** -- **[DevSquad](https://devsquad.com/hire-laravel-developers)** -- **[Jump24](https://jump24.co.uk)** -- **[Redberry](https://redberry.international/laravel/)** -- **[Active Logic](https://activelogic.com)** -- **[byte5](https://byte5.de)** -- **[OP.GG](https://op.gg)** +### Step 3: Setup Environment Variables +```sh +cp .env.example .env +``` +Update the `.env` file with your database credentials: +```env +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=your_database_name +DB_USERNAME=your_database_user +DB_PASSWORD=your_database_password +``` -## Contributing +### Step 4: Install Dependencies +```sh +composer install +npm install --save +``` + +### Step 5: Generate Application Key +```sh +php artisan key:generate +``` + +### Step 6: Generate Application Key +```sh +php artisan storage:link +``` + +### Step 7: Run the Application +```sh +php artisan serve +``` -Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). +### Step 8: Build Frontend Assets +```sh +npm run build +``` -## Code of Conduct +## Usage +Once the server is running, you can access the application via: +``` +http://127.0.0.1:8000 +``` -In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). -## Security Vulnerabilities +## PMTILES -If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. +PMTILES is placed in the public folder and can be accessed at http://127.0.0.1:8000/output.pmtiles + + +## Contributing +We welcome contributions to improve PIC2BIM! To contribute: +1. Fork the repository. +2. Create a new branch (`git checkout -b feature-branch`). +3. Commit your changes (`git commit -m 'Add new feature'`). +4. Push to your branch (`git push origin feature-branch`). +5. Open a Pull Request. ## License +This project is licensed under the MIT License. + +## Contact +For support or inquiries, please open an issue on GitHub or reach out to the maintainers. -The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Console/Commands/CronCheckLocation.php b/app/Console/Commands/CronCheckLocation.php new file mode 100644 index 00000000..58fd3fc3 --- /dev/null +++ b/app/Console/Commands/CronCheckLocation.php @@ -0,0 +1,47 @@ +where(function ($query) { + $query->whereNull('network_info') + ->orWhereNotNull('network_location'); + }) + ->where('nmea_distance', '<=', 50) + ->where('distance', '<=', 5000) + ->update(['flg_checked_location' => 1]); + + Photo:: + whereNull('flg_checked_location') + ->where(function ($query) { + $query->whereNull('network_info') + ->orWhereNotNull('network_location'); + }) + ->update(['flg_checked_location' => 0]); + } +} diff --git a/app/Console/Commands/ImportBuildingJson.php b/app/Console/Commands/ImportBuildingJson.php new file mode 100644 index 00000000..fcff0120 --- /dev/null +++ b/app/Console/Commands/ImportBuildingJson.php @@ -0,0 +1,178 @@ +info('Total buildings found: ' . $total); + $bar = $this->output->createProgressBar($total); + + $count = 0; + foreach ($jsonData['features'] as $data) { + $building = Building::updateOrCreate([ + 'osid' => $data['id'] + ], [ + 'versiondate' => $data['properties']['versiondate'] ?? null, + 'versionavailablefromdate' => $data['properties']['versionavailablefromdate'] ?? null, + 'versionavailabletodate' => $data['properties']['versionavailabletodate'] ?? null, + 'changetype' => $data['properties']['changetype'] ?? null, + 'geometry' => isset($data['geometry']) ? DB::raw("ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON('" . json_encode($data['geometry']) . "'), 4326), 27700)") : null, + 'geometry_area_m2' => $data['properties']['geometry_area_m2'] ?? null, + 'geometry_updatedate' => $data['properties']['geometry_updatedate'] ?? null, + 'theme' => $data['properties']['theme'] ?? null, + 'description' => $data['properties']['description'] ?? null, + 'description_updatedate' => $data['properties']['description_updatedate'] ?? null, + 'physicalstate' => $data['properties']['physicalstate'] ?? '', + 'physicalstate_updatedate' => date('Y-m-d'), + 'buildingpartcount' => $data['properties']['buildingpartcount'] ?? null, + 'isinsite' => $data['properties']['isinsite'] ?? null, + 'primarysiteid' => $data['properties']['primarysiteid'] ?? null, + 'containingsitecount' => $data['properties']['containingsitecount'] ?? null, + 'mainbuildingid' => $data['properties']['mainbuildingid'] ?? null, + 'mainbuildingid_ismainbuilding' => $data['properties']['mainbuildingid_ismainbuilding'] ?? null, + 'mainbuildingid_updatedate' => $data['properties']['mainbuildingid_updatedate'] ?? null, + 'buildinguse' => $data['properties']['buildinguse'] ?? null, + 'buildinguse_oslandusetiera' => $data['properties']['buildinguse_oslandusetiera'] ?? null, + 'buildinguse_addresscount_total' => $data['properties']['buildinguse_addresscount_total'] ?? null, + 'buildinguse_addresscount_residential' => $data['properties']['buildinguse_addresscount_residential'] ?? null, + 'buildinguse_addresscount_commercial' => $data['properties']['buildinguse_addresscount_commercial'] ?? null, + 'buildinguse_addresscount_other' => $data['properties']['buildinguse_addresscount_other'] ?? null, + 'buildinguse_updatedate' => $data['properties']['buildinguse_updatedate'] ?? null, + 'connectivity' => $data['properties']['connectivity'] ?? null, + 'connectivity_count' => $data['properties']['connectivity_count'] ?? null, + 'connectivity_updatedate' => $data['properties']['connectivity_updatedate'] ?? null, + 'constructionmaterial' => $data['properties']['constructionmaterial'] ?? null, + 'constructionmaterial_evidencedate' => $data['properties']['constructionmaterial_evidencedate'] ?? null, + 'constructionmaterial_updatedate' => $data['properties']['constructionmaterial_updatedate'] ?? null, + 'constructionmaterial_source' => $data['properties']['constructionmaterial_source'] ?? null, + 'constructionmaterial_capturemethod' => $data['properties']['constructionmaterial_capturemethod'] ?? null, + 'constructionmaterial_thirdpartyprovenance' => $data['properties']['constructionmaterial_thirdpartyprovenance'] ?? null, + 'buildingage_period' => $data['properties']['buildingage_period'] ?? null, + 'buildingage_year' => $data['properties']['buildingage_year'] ?? null, + 'buildingage_evidencedate' => $data['properties']['buildingage_evidencedate'] ?? null, + 'buildingage_updatedate' => $data['properties']['buildingage_updatedate'] ?? null, + 'buildingage_source' => $data['properties']['buildingage_source'] ?? null, + 'buildingage_capturemethod' => $data['properties']['buildingage_capturemethod'] ?? null, + 'buildingage_thirdpartyprovenance' => $data['properties']['buildingage_thirdpartyprovenance'] ?? null, + 'basementpresence' => $data['properties']['basementpresence'] ?? null, + 'basementpresence_selfcontained' => $data['properties']['basementpresence_selfcontained'] ?? null, + 'basementpresence_evidencedate' => $data['properties']['basementpresence_evidencedate'] ?? null, + 'basementpresence_updatedate' => $data['properties']['basementpresence_updatedate'] ?? null, + 'basementpresence_source' => $data['properties']['basementpresence_source'] ?? null, + 'basementpresence_capturemethod' => $data['properties']['basementpresence_capturemethod'] ?? null, + 'basementpresence_thirdpartyprovenance' => $data['properties']['basementpresence_thirdpartyprovenance'] ?? null, + 'numberoffloors' => $data['properties']['numberoffloors'] ?? null, + 'numberoffloors_evidencedate' => $data['properties']['numberoffloors_evidencedate'] ?? null, + 'numberoffloors_updatedate' => $data['properties']['numberoffloors_updatedate'] ?? null, + 'numberoffloors_source' => $data['properties']['numberoffloors_source'] ?? null, + 'numberoffloors_capturemethod' => $data['properties']['numberoffloors_capturemethod'] ?? null, + // Height fields + 'height_absolutemin_m' => $data['properties']['height_absolutemin_m'] ?? null, + 'height_absoluteroofbase_m' => $data['properties']['height_absoluteroofbase_m'] ?? null, + 'height_absolutemax_m' => $data['properties']['height_absolutemax_m'] ?? null, + 'height_relativeroofbase_m' => $data['properties']['height_relativeroofbase_m'] ?? null, + 'height_relativemax_m' => $data['properties']['height_relativemax_m'] ?? null, + 'height_confidencelevel' => $data['properties']['height_confidencelevel'] ?? null, + 'height_evidencedate' => $data['properties']['height_evidencedate'] ?? null, + 'height_updatedate' => $data['properties']['height_updatedate'] ?? null, + // Roof material fields + 'roofmaterial_primarymaterial' => $data['properties']['roofmaterial_primarymaterial'] ?? null, + 'roofmaterial_solarpanelpresence' => $data['properties']['roofmaterial_solarpanelpresence'] ?? null, + 'roofmaterial_greenroofpresence' => $data['properties']['roofmaterial_greenroofpresence'] ?? null, + 'roofmaterial_confidenceindicator' => $data['properties']['roofmaterial_confidenceindicator'] ?? null, + 'roofmaterial_evidencedate' => $data['properties']['roofmaterial_evidencedate'] ?? null, + 'roofmaterial_updatedate' => $data['properties']['roofmaterial_updatedate'] ?? null, + 'roofmaterial_capturemethod' => $data['properties']['roofmaterial_capturemethod'] ?? null, + // Roof shape aspect fields + 'roofshapeaspect_shape' => $data['properties']['roofshapeaspect_shape'] ?? null, + 'roofshapeaspect_areapitched_m2' => $data['properties']['roofshapeaspect_areapitched_m2'] ?? null, + 'roofshapeaspect_areaflat_m2' => $data['properties']['roofshapeaspect_areaflat_m2'] ?? null, + 'roofshapeaspect_areafacingnorth_m2' => $data['properties']['roofshapeaspect_areafacingnorth_m2'] ?? null, + 'roofshapeaspect_areafacingnortheast_m2' => $data['properties']['roofshapeaspect_areafacingnortheast_m2'] ?? null, + 'roofshapeaspect_areafacingeast_m2' => $data['properties']['roofshapeaspect_areafacingeast_m2'] ?? null, + 'roofshapeaspect_areafacingsoutheast_m2' => $data['properties']['roofshapeaspect_areafacingsoutheast_m2'] ?? null, + 'roofshapeaspect_areafacingsouth_m2' => $data['properties']['roofshapeaspect_areafacingsouth_m2'] ?? null, + 'roofshapeaspect_areafacingsouthwest_m2' => $data['properties']['roofshapeaspect_areafacingsouthwest_m2'] ?? null, + 'roofshapeaspect_areafacingwest_m2' => $data['properties']['roofshapeaspect_areafacingwest_m2'] ?? null, + 'roofshapeaspect_areafacingnorthwest_m2' => $data['properties']['roofshapeaspect_areafacingnorthwest_m2'] ?? null, + 'roofshapeaspect_areaindeterminable_m2' => $data['properties']['roofshapeaspect_areaindeterminable_m2'] ?? null, + 'roofshapeaspect_areatotal_m2' => $data['properties']['roofshapeaspect_areatotal_m2'] ?? null, + 'roofshapeaspect_confidenceindicator' => $data['properties']['roofshapeaspect_confidenceindicator'] ?? null, + 'roofshapeaspect_evidencedate' => $data['properties']['roofshapeaspect_evidencedate'] ?? null, + 'roofshapeaspect_updatedate' => $data['properties']['roofshapeaspect_updatedate'] ?? null, + 'roofshapeaspect_capturemethod' => $data['properties']['roofshapeaspect_capturemethod'] ?? null, + ]); + + // Handle buildingpartreference + if (!empty($data['properties']['buildingpartreference']) && is_array($data['properties']['buildingpartreference'])) { + foreach ($data['properties']['buildingpartreference'] as $partRef) { + BuildingPartLink::updateOrCreate([ + 'buildingid' => $partRef['buildingid'], + 'buildingpartid' => $partRef['buildingpartid'], + 'buildingversiondate' => $partRef['buildingversiondate'], + ], []); + } + } + + // Handle sitereference + if (!empty($data['properties']['sitereference']) && is_array($data['properties']['sitereference'])) { + foreach ($data['properties']['sitereference'] as $siteRef) { + BuildingSiteLink::updateOrCreate([ + 'buildingid' => $siteRef['buildingid'], + 'siteid' => $siteRef['siteid'], + 'buildingversiondate' => $siteRef['buildingversiondate'], + ], []); + } + } + + // Handle uprnreference + if (!empty($data['properties']['uprnreference']) && is_array($data['properties']['uprnreference'])) { + foreach ($data['properties']['uprnreference'] as $uprnRef) { + BuildingAddress::updateOrCreate([ + 'uprn' => $uprnRef['uprn'], + 'buildingid' => $uprnRef['buildingid'], + 'buildingversiondate' => $uprnRef['buildingversiondate'], + ], []); + } + } + $count++; + $bar->advance(); + } + $bar->finish(); + $this->newLine(2); + $this->info('Building import completed!'); + $this->info("Total buildings processed: $count"); + } +} + diff --git a/app/Console/Commands/ImportBuiltupAreaJson.php b/app/Console/Commands/ImportBuiltupAreaJson.php new file mode 100644 index 00000000..bcc054c7 --- /dev/null +++ b/app/Console/Commands/ImportBuiltupAreaJson.php @@ -0,0 +1,70 @@ +argument('file'); + $jsonData = json_decode(File::get($filePath), true); + + if (!$jsonData || !isset($jsonData['features'])) { + $this->error('Invalid JSON file or format.'); + return 1; + } + + $total = count($jsonData['features']); + $this->info('Total features found: ' . $total); + $bar = $this->output->createProgressBar($total); + + $count = 0; + foreach ($jsonData['features'] as $data) { + BuiltupArea::updateOrCreate([ + 'fid' => $data['properties']['fid'] + ], [ + 'objectid_1' => $data['properties']['OBJECTID_1'], + 'gsscode' => $data['properties']['gsscode'], + 'bua24cd' => $data['properties']['BUA24CD'], + 'bua24nm' => $data['properties']['BUA24NM'], + 'bua24nmw' => $data['properties']['BUA24NMW'], + 'geometry_a' => $data['properties']['geometry_a'], + 'areahectar' => $data['properties']['areahectar'], + 'globalid' => $data['properties']['GlobalID'], + 'geometry' => isset($data['geometry']) ? DB::raw("ST_SetSRID(ST_GeomFromGeoJSON('" . json_encode($data['geometry']) . "'), 27700)") : null, + ]); + + $count++; + $bar->advance(); + } + + $bar->finish(); + $this->newLine(2); + $this->info('ONS BUA import completed!'); + $this->info("Total features processed: $count"); + + return 0; + } +} diff --git a/app/Console/Commands/ImportLandGeojson.php b/app/Console/Commands/ImportLandGeojson.php deleted file mode 100644 index 175e48e5..00000000 --- a/app/Console/Commands/ImportLandGeojson.php +++ /dev/null @@ -1,270 +0,0 @@ -info('Memory limit: ' . ini_get('memory_limit')); - - $filePath = $this->argument('file') ?? 'public/SURREYPoint.geojson'; - $shouldTruncate = $this->option('truncate'); - - $this->info('Importing GeoJSON file: ' . $filePath); - - if (!File::exists($filePath)) { - $this->error('File not found: ' . $filePath); - return 1; - } - - try { - $jsonData = json_decode(File::get($filePath), true); - - if (json_last_error() !== JSON_ERROR_NONE) { - $this->error('Invalid JSON file: ' . json_last_error_msg()); - return 1; - } - - $this->info('Total features found: ' . count($jsonData['features'])); - - if ($shouldTruncate) { - if ($this->confirm('Are you sure you want to truncate the land table? This will delete all existing data.')) { - DB::statement('TRUNCATE TABLE land CASCADE'); - $this->info('Land table truncated.'); - } else { - $this->info('Truncate operation cancelled.'); - } - } - - DB::beginTransaction(); - - $count = 0; - $skipped = 0; - $bboxCount = 0; - $noBboxCount = 0; - $pointsCount = 0; - $polygonsCount = 0; - $errors = 0; - - $bar = $this->output->createProgressBar(count($jsonData['features'])); - - foreach ($jsonData['features'] as $data) { - $properties = $data['properties']; - $geometry = $data['geometry']; - $bbox = $data['bbox'] ?? null; - - // Use parcel_ref as main identificator - $parcel_ref = $properties['parcel_ref'] ?? $properties['PARCEL_REF'] ?? null; - - // Get identificator from name property with Surrey prefix and index - $name = $properties['name'] ?? $properties['NAME'] ?? null; - $identificator = 'Surrey.' . ($count + 1); - - // Always use parcel_ref as pa_description like in ImportSurreyJsonData - $pa_description = $parcel_ref; - - // Skip if no identificator or parcel_ref - if (empty($parcel_ref)) { - $skipped++; - $bar->advance(); - continue; - } - - // Calculate bbox if not provided - $minLng = null; - $maxLng = null; - $minLat = null; - $maxLat = null; - - if ($bbox) { - // bbox format is typically [minLng, minLat, maxLng, maxLat] - $minLng = $bbox[0]; - $minLat = $bbox[1]; - $maxLng = $bbox[2]; - $maxLat = $bbox[3]; - $bboxCount++; - } else { - $noBboxCount++; - - // Handle different geometry types - if ($geometry['type'] === 'Point') { - // For Point, min and max are the same - $minLng = $maxLng = $geometry['coordinates'][0]; - $minLat = $maxLat = $geometry['coordinates'][1]; - } else { - // For other geometry types, calculate from bounding box helper - $this->calculateBboxFromGeometry($geometry, $minLng, $maxLng, $minLat, $maxLat); - } - } - - // Convert geometry to JSON string - $geomJson = json_encode($geometry); - - try { - // Count geometry types - if ($geometry['type'] === 'Point') { - $pointsCount++; - - // For Point geometries, create a small buffer to convert to Polygon - $lng = $geometry['coordinates'][0]; - $lat = $geometry['coordinates'][1]; - - // Insert using buffer with ST_Buffer to convert Point to Polygon - DB::statement( - "INSERT INTO land (identificator, pa_description, wkt, wgs_geometry, wgs_max_lat, wgs_min_lat, wgs_max_lng, wgs_min_lng) - VALUES (?, ?, ?, ST_Multi(ST_Buffer(ST_SetSRID(ST_MakePoint(?, ?), 4326)::geography, 1)::geometry), ?, ?, ?, ?)", - [ - $identificator, - $pa_description, - $geometry['type'], - $lng, - $lat, - $maxLat, - $minLat, - $maxLng, - $minLng - ] - ); - } else { - $polygonsCount++; - - // For other geometries, use normal GeoJSON import - DB::statement( - "INSERT INTO land (identificator, pa_description, wkt, wgs_geometry, wgs_max_lat, wgs_min_lat, wgs_max_lng, wgs_min_lng) - VALUES (?, ?, ?, ST_Multi(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326)), ?, ?, ?, ?)", - [ - $identificator, - $pa_description, - $geometry['type'], - $geomJson, - $maxLat, - $minLat, - $maxLng, - $minLng - ] - ); - } - - $count++; - } catch (\Exception $e) { - $errors++; - $this->info("\nError processing record: " . $e->getMessage()); - } - - if ($count % 100 === 0) { - DB::commit(); - DB::beginTransaction(); - $this->info("\n$count records inserted so far"); - } - - $bar->advance(); - } - - DB::commit(); - $bar->finish(); - $this->newLine(2); - $this->info('Import completed successfully!'); - $this->info("Total records: $count inserted, $skipped skipped, $errors errors"); - $this->info("BBox statistics: $bboxCount records with bbox, $noBboxCount calculated from geometry"); - $this->info("Geometry statistics: $pointsCount Point geometries, $polygonsCount Polygon/MultiPolygon geometries"); - - // Update sequence - try { - $sequenceExists = DB::select("SELECT 1 FROM pg_class WHERE relname = 'land_id_seq' AND relkind = 'S'"); - - if (!empty($sequenceExists)) { - DB::statement("SELECT setval('land_id_seq', (SELECT MAX(id) FROM land))"); - $this->info('Sequence updated.'); - } - } catch (\Exception $e) { - $this->info('No sequence found for land table. Skipping sequence update.'); - } - - } catch (\Exception $e) { - DB::rollBack(); - $this->error('Error processing file: ' . $e->getMessage()); - $this->error($e->getTraceAsString()); - return 1; - } - - return 0; - } - - /** - * Calculate bounding box from geometry - * - * @param array $geometry The geometry object from GeoJSON - * @param float &$minLng Minimum longitude - * @param float &$maxLng Maximum longitude - * @param float &$minLat Minimum latitude - * @param float &$maxLat Maximum latitude - */ - private function calculateBboxFromGeometry(array $geometry, &$minLng, &$maxLng, &$minLat, &$maxLat) - { - $type = $geometry['type']; - $coordinates = $geometry['coordinates']; - - $lngs = []; - $lats = []; - - if ($type === 'Polygon') { - // Use the outer ring (first ring) - $ring = $coordinates[0]; - foreach ($ring as $point) { - $lngs[] = $point[0]; - $lats[] = $point[1]; - } - } elseif ($type === 'MultiPolygon') { - foreach ($coordinates as $polygon) { - $ring = $polygon[0]; // Use the outer ring of each polygon - foreach ($ring as $point) { - $lngs[] = $point[0]; - $lats[] = $point[1]; - } - } - } elseif ($type === 'LineString') { - foreach ($coordinates as $point) { - $lngs[] = $point[0]; - $lats[] = $point[1]; - } - } elseif ($type === 'MultiLineString') { - foreach ($coordinates as $lineString) { - foreach ($lineString as $point) { - $lngs[] = $point[0]; - $lats[] = $point[1]; - } - } - } - - if (!empty($lngs) && !empty($lats)) { - $minLng = min($lngs); - $maxLng = max($lngs); - $minLat = min($lats); - $maxLat = max($lats); - } - } -} \ No newline at end of file diff --git a/app/Console/Commands/ImportLandRegistryCadastral.php b/app/Console/Commands/ImportLandRegistryCadastral.php new file mode 100644 index 00000000..f113ffe5 --- /dev/null +++ b/app/Console/Commands/ImportLandRegistryCadastral.php @@ -0,0 +1,168 @@ +argument('path') ?: public_path('Land_registry_export_qgis.geojson'); + + if (!File::exists($filePath)) { + $this->error("GeoJSON file not found: {$filePath}"); + return 1; + } + + $this->info("Reading GeoJSON file: {$filePath}"); + $json = File::get($filePath); + $jsonData = json_decode($json, true); + + if (!is_array($jsonData) || !isset($jsonData['features']) || !is_array($jsonData['features'])) { + $this->error('Invalid GeoJSON format. "features" key not found or invalid.'); + return 1; + } + + $features = $jsonData['features']; + $total = count($features); + + $this->info('Total Land Registry Cadastral features found: ' . $total); + + $bar = $this->output->createProgressBar($total); + $bar->start(); + + $processed = 0; + $errors = 0; + + // Process in chunks for better memory management + $chunkSize = 500; // Smaller chunks for geometry-heavy data + $chunks = array_chunk($features, $chunkSize); + + foreach ($chunks as $chunkIndex => $chunk) { + DB::beginTransaction(); + + try { + foreach ($chunk as $feature) { + $bar->advance(); + + try { + $properties = $feature['properties'] ?? []; + $geometry = $feature['geometry'] ?? null; + + // Extract fields with fallbacks based on GeoJSON structure + $fid = $properties['FID'] ?? null; + $countyCode = $properties['CTY24CD'] ?? null; + $countyName = $properties['CTY24NM'] ?? null; + $bngEasting = $properties['BNG_E'] ?? null; + $bngNorthing = $properties['BNG_N'] ?? null; + $longitude = $properties['LONG'] ?? null; + $latitude = $properties['LAT'] ?? null; + $globalId = $properties['GlobalID'] ?? null; + + if ($fid === null || $countyCode === null) { + $this->warn("\nSkipping a feature without FID or County Code."); + $errors++; + continue; + } + + // Create or update by FID and county_code as the business key (without geometry first) + $record = LandRegistryCadastral::updateOrCreate([ + 'fid' => $fid, + 'county_code' => $countyCode, + ], [ + 'county_name' => $countyName, + 'bng_easting' => $bngEasting, + 'bng_northing' => $bngNorthing, + 'longitude' => $longitude, + 'latitude' => $latitude, + 'global_id' => $globalId, + ]); + + // Update geometry separately using raw SQL for proper PostGIS handling + if ($geometry && !empty($geometry['coordinates']) && $geometry['type'] === 'MultiPolygon') { + $geometryJson = json_encode($geometry); + + // Insert WGS84 geometry (EPSG:4326) - original coordinates from GeoJSON + DB::statement( + "UPDATE land_registry_cadastral SET geometry = ST_SetSRID(ST_GeomFromGeoJSON(?), 4326) WHERE fid = ? AND county_code = ?", + [$geometryJson, $fid, $countyCode] + ); + + // Convert and store BNG geometry (EPSG:27700) if BNG coordinates are available + if ($bngEasting && $bngNorthing) { + // Transform WGS84 geometry to BNG + DB::statement( + "UPDATE land_registry_cadastral SET geometry_bng = ST_Transform(geometry, 27700) WHERE fid = ? AND county_code = ?", + [$fid, $countyCode] + ); + } + } + + $processed++; + + } catch (\Throwable $e) { + $id = $feature['properties']['FID'] ?? 'N/A'; + $county = $feature['properties']['CTY24CD'] ?? 'N/A'; + $this->warn("\nSkipping record with FID: {$id}, County: {$county}. Error: " . $e->getMessage()); + $errors++; + continue; + } + } + + DB::commit(); + $this->info("\nCompleted chunk " . ($chunkIndex + 1) . " of " . count($chunks)); + + } catch (\Throwable $e) { + DB::rollBack(); + $this->error("\nTransaction failed for chunk " . ($chunkIndex + 1) . ". Error: " . $e->getMessage()); + $errors += count($chunk); + } + } + + $bar->finish(); + $this->newLine(2); + $this->info('Land Registry Cadastral import completed!'); + $this->info("Total records successfully processed: {$processed}"); + + if ($errors > 0) { + $this->warn("Total errors encountered: {$errors}"); + } + + // Show some statistics + $totalRecords = LandRegistryCadastral::count(); + $recordsWithGeometry = LandRegistryCadastral::whereRaw('geometry IS NOT NULL')->count(); + $recordsWithBngGeometry = LandRegistryCadastral::whereRaw('geometry_bng IS NOT NULL')->count(); + + $this->info("Database statistics:"); + $this->info("- Total records in database: {$totalRecords}"); + $this->info("- Records with WGS84 geometry: {$recordsWithGeometry}"); + $this->info("- Records with BNG geometry: {$recordsWithBngGeometry}"); + + return 0; + } +} diff --git a/app/Console/Commands/ImportLandRegistryInspire.php b/app/Console/Commands/ImportLandRegistryInspire.php new file mode 100644 index 00000000..05550bd8 --- /dev/null +++ b/app/Console/Commands/ImportLandRegistryInspire.php @@ -0,0 +1,193 @@ +argument('path') ?: public_path('Land_registry_50873136_st_andrews_boundary.geojson'); + + if (!File::exists($filePath)) { + $this->error("GeoJSON file not found: {$filePath}"); + return 1; + } + + $this->info("Reading GeoJSON file: {$filePath}"); + $json = File::get($filePath); + $jsonData = json_decode($json, true); + + if (!is_array($jsonData) || !isset($jsonData['features']) || !is_array($jsonData['features'])) { + $this->error('Invalid GeoJSON format. "features" key not found or invalid.'); + return 1; + } + + $features = $jsonData['features']; + $total = count($features); + + $this->info('Total Land Registry INSPIRE features found: ' . $total); + + // Check coordinate system from CRS + $crs = $jsonData['crs'] ?? null; + $isEPSG27700 = false; + if ($crs && isset($crs['properties']['name'])) { + $crsName = $crs['properties']['name']; + $isEPSG27700 = strpos($crsName, '27700') !== false; + $this->info("Detected CRS: {$crsName}"); + if ($isEPSG27700) { + $this->info("Data is in British National Grid (EPSG:27700) - will transform to WGS84"); + } + } + + $bar = $this->output->createProgressBar($total); + $bar->start(); + + $processed = 0; + $errors = 0; + + // Process in chunks for better memory management + $chunkSize = 500; // Smaller chunks for geometry-heavy data + $chunks = array_chunk($features, $chunkSize); + + foreach ($chunks as $chunkIndex => $chunk) { + DB::beginTransaction(); + + try { + foreach ($chunk as $feature) { + $bar->advance(); + + try { + $properties = $feature['properties'] ?? []; + $geometry = $feature['geometry'] ?? null; + + // Extract INSPIRE fields + $gmlId = $properties['gml_id'] ?? null; + $inspireId = $properties['INSPIREID'] ?? null; + $label = $properties['LABEL'] ?? null; + $nationalCadastralReference = $properties['NATIONALCADASTRALREFERENCE'] ?? null; + $validFrom = $properties['VALIDFROM'] ?? null; + $beginLifespanVersion = $properties['BEGINLIFESPANVERSION'] ?? null; + + if ($gmlId === null || $inspireId === null) { + $this->warn("\nSkipping a feature without gml_id or INSPIREID."); + $errors++; + continue; + } + + // Convert datetime strings to proper format + $validFromDate = null; + $beginLifespanDate = null; + + if ($validFrom) { + try { + $validFromDate = \Carbon\Carbon::parse($validFrom)->format('Y-m-d H:i:s'); + } catch (\Exception $e) { + $this->warn("\nInvalid VALIDFROM date format for gml_id: {$gmlId}"); + } + } + + if ($beginLifespanVersion) { + try { + $beginLifespanDate = \Carbon\Carbon::parse($beginLifespanVersion)->format('Y-m-d H:i:s'); + } catch (\Exception $e) { + $this->warn("\nInvalid BEGINLIFESPANVERSION date format for gml_id: {$gmlId}"); + } + } + + // Create or update by gml_id as the business key (without geometry first) + $record = LandRegistryInspire::updateOrCreate([ + 'gml_id' => $gmlId, + ], [ + 'INSPIREID' => $inspireId, + 'LABEL' => $label, + 'NATIONALCADASTRALREFERENCE' => $nationalCadastralReference, + 'VALIDFROM' => $validFromDate, + 'BEGINLIFESPANVERSION' => $beginLifespanDate, + ]); + + // Update geometry separately using raw SQL for proper PostGIS handling + if ($geometry && !empty($geometry['coordinates'])) { + $geometryJson = json_encode($geometry); + + if ($isEPSG27700) { + // Data is in BNG (EPSG:27700), insert as BNG then transform to WGS84 + DB::statement( + "UPDATE land_registry_inspire SET geom = ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 27700), 4326) WHERE gml_id = ?", + [$geometryJson, $gmlId] + ); + } else { + // Data is already in WGS84 (EPSG:4326) + DB::statement( + "UPDATE land_registry_inspire SET geom = ST_SetSRID(ST_GeomFromGeoJSON(?), 4326) WHERE gml_id = ?", + [$geometryJson, $gmlId] + ); + } + } + + $processed++; + + } catch (\Throwable $e) { + $gmlId = $feature['properties']['gml_id'] ?? 'N/A'; + $inspireId = $feature['properties']['INSPIREID'] ?? 'N/A'; + $this->warn("\nSkipping record with gml_id: {$gmlId}, INSPIREID: {$inspireId}. Error: " . $e->getMessage()); + $errors++; + continue; + } + } + + DB::commit(); + $this->info("\nCompleted chunk " . ($chunkIndex + 1) . " of " . count($chunks)); + + } catch (\Throwable $e) { + DB::rollBack(); + $this->error("\nTransaction failed for chunk " . ($chunkIndex + 1) . ". Error: " . $e->getMessage()); + $errors += count($chunk); + } + } + + $bar->finish(); + $this->newLine(2); + $this->info('Land Registry INSPIRE import completed!'); + $this->info("Total records successfully processed: {$processed}"); + + if ($errors > 0) { + $this->warn("Total errors encountered: {$errors}"); + } + + // Show some statistics + $totalRecords = LandRegistryInspire::count(); + $recordsWithGeometry = LandRegistryInspire::whereRaw('geom IS NOT NULL')->count(); + + $this->info("Database statistics:"); + $this->info("- Total records in database: {$totalRecords}"); + $this->info("- Records with geometry: {$recordsWithGeometry}"); + + return 0; + } +} diff --git a/app/Console/Commands/ImportNHLEJson.php b/app/Console/Commands/ImportNHLEJson.php new file mode 100644 index 00000000..e1838952 --- /dev/null +++ b/app/Console/Commands/ImportNHLEJson.php @@ -0,0 +1,98 @@ +error('nhle2.geojson not found in public path.'); + return 1; + } + + $jsonData = json_decode(File::get($filePath), true); + + if (!isset($jsonData['features'])) { + $this->error('Invalid GeoJSON format. "features" key not found.'); + return 1; + } + + $features = $jsonData['features']; + $total = count($features); + $this->info('Total features found: ' . $total); + $bar = $this->output->createProgressBar($total); + + $count = 0; + foreach ($features as $data) { + $bar->advance(); + try { + $properties = $data['properties']; + $geometry = $data['geometry']; + + $coordinates = $geometry['coordinates'][0] ?? [null, null]; + + $nhle = NHLE::updateOrCreate([ + 'listentry' => $properties['listentry'] + ], [ + 'objectid' => $properties['objectid'] ?? null, + 'name' => $properties['name'] ?? null, + 'grade' => $properties['grade'] ?? null, + 'listdate' => isset($properties['listdate']) ? Carbon::parse($properties['listdate'])->toDateString() : null, + 'amenddate' => isset($properties['amenddate']) ? Carbon::parse($properties['amenddate'])->toDateString() : null, + 'capturesca' => $properties['capturescale'] ?? null, + 'hyperlink' => $properties['hyperlink'] ?? null, + 'ngr' => $properties['ngr'] ?? null, + 'easting' => $properties['easting'] ?? null, + 'northing' => $properties['northing'] ?? null, + 'longitude' => $coordinates[0], + 'latitude' => $coordinates[1], + ]); + + if (isset($geometry) && !empty($geometry['coordinates'])) { + $geomJson = json_encode($geometry); + DB::table('nhle_') + ->where('gid', $nhle->gid) + ->update(['geom' => DB::raw("ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON('$geomJson'), 4326), 27700)")]); + } + + $count++; + } catch (\Exception $e) { + $listentry = $data['properties']['listentry'] ?? 'N/A'; + $this->warn("\nSkipping record with listentry: {$listentry}. Error: " . $e->getMessage()); + continue; + } + } + + $bar->finish(); + $this->newLine(2); + $this->info('NHLE import completed!'); + $this->info("Total records successfully processed: $count"); + + return 0; + } +} diff --git a/app/Console/Commands/ImportOsmAddress.php b/app/Console/Commands/ImportOsmAddress.php new file mode 100644 index 00000000..4330fb09 --- /dev/null +++ b/app/Console/Commands/ImportOsmAddress.php @@ -0,0 +1,232 @@ +argument('path') ?? public_path('osm_addresses_all_tags.geojson'); + + if (!file_exists($filePath)) { + $this->error("File not found: {$filePath}"); + return 1; + } + + $this->info("Importing OSM addresses from: {$filePath}"); + + try { + $content = file_get_contents($filePath); + $geoJson = json_decode($content, true); + + if (!$geoJson || !isset($geoJson['features'])) { + $this->error('Invalid GeoJSON format'); + return 1; + } + + $features = $geoJson['features']; + $totalFeatures = count($features); + $this->info("Found {$totalFeatures} features to import"); + + $chunkSize = 100; + $chunks = array_chunk($features, $chunkSize); + $totalChunks = count($chunks); + $imported = 0; + $skipped = 0; + $errors = 0; + + $progressBar = $this->output->createProgressBar($totalChunks); + $progressBar->start(); + + foreach ($chunks as $chunkIndex => $chunk) { + DB::transaction(function () use ($chunk, &$imported, &$skipped, &$errors) { + foreach ($chunk as $feature) { + try { + $result = $this->processFeature($feature); + if ($result === 'imported') { + $imported++; + } elseif ($result === 'skipped') { + $skipped++; + } + } catch (\Exception $e) { + $errors++; + Log::error('Error processing OSM address feature', [ + 'error' => $e->getMessage(), + 'feature' => $feature + ]); + } + } + }); + + $progressBar->advance(); + } + + $progressBar->finish(); + $this->newLine(); + + $this->info("Import completed!"); + $this->info("Imported: {$imported}"); + $this->info("Skipped: {$skipped}"); + $this->info("Errors: {$errors}"); + + return 0; + + } catch (\Exception $e) { + $this->error("Error importing data: " . $e->getMessage()); + Log::error('OSM address import error', ['error' => $e->getMessage()]); + return 1; + } + } + + /** + * Process a single GeoJSON feature + */ + private function processFeature(array $feature): string + { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + return 'skipped'; + } + + $geometry = $feature['geometry']; + $properties = $feature['properties']; + + // Skip if no geometry or not a Point + if (!$geometry || $geometry['type'] !== 'Point') { + return 'skipped'; + } + + // Extract coordinates + $coordinates = $geometry['coordinates']; + if (count($coordinates) < 2) { + return 'skipped'; + } + + $longitude = $coordinates[0]; + $latitude = $coordinates[1]; + + // Skip if coordinates are invalid + if (!is_numeric($longitude) || !is_numeric($latitude)) { + return 'skipped'; + } + + // Extract OSM ID and UPRN for duplicate checking + $osmId = $this->extractValue($properties, ['osm_id']); + $uprn = $this->extractValue($properties, ['uprn']); + + // Allow records with valid coordinates even if they don't have OSM ID, UPRN, or address data + // This handles placeholder/centroid records that might be populated later + + // Check for duplicates + $existingQuery = OsmAddress::query(); + if (!empty($osmId)) { + $existingQuery->where('osm_id', $osmId); + } elseif (!empty($uprn)) { + $existingQuery->where('uprn', $uprn); + } + + if ($existingQuery->exists()) { + return 'skipped'; + } + + // Find building part ID if provided + $buildingPartId = $this->extractValue($properties, ['building_part_id']); + if (!empty($buildingPartId) && is_numeric($buildingPartId)) { + // Verify building part exists + if (!OsmBuildingPart::where('id', $buildingPartId)->exists()) { + $buildingPartId = null; + } + } else { + $buildingPartId = null; + } + + // Prepare data for insertion + $addressData = [ + 'building_part_id' => $buildingPartId, + 'osm_id' => !empty($osmId) && is_numeric($osmId) ? (int)$osmId : null, + 'uprn' => $this->extractValue($properties, ['uprn']), + 'source' => $this->extractValue($properties, ['source']) ?: 'osm', + 'housenumber' => $this->extractValue($properties, ['housenumber', 'addr:housenumber']), + 'unit' => $this->extractValue($properties, ['unit', 'addr:unit']), + 'street' => $this->extractValue($properties, ['street', 'addr:street']), + 'suburb' => $this->extractValue($properties, ['suburb', 'addr:suburb']), + 'city' => $this->extractValue($properties, ['city', 'addr:city']), + 'postcode' => $this->extractValue($properties, ['postcode', 'addr:postcode']), + 'county' => $this->extractValue($properties, ['county', 'addr:county']), + 'state' => $this->extractValue($properties, ['state', 'addr:state']), + 'country' => $this->extractValue($properties, ['country', 'addr:country']), + 'country_code' => $this->extractValue($properties, ['country_code', 'addr:country_code']), + ]; + + // Create geometry using PostGIS + $point = DB::selectOne( + "SELECT ST_SetSRID(ST_MakePoint(?, ?), 4326) as geom", + [$longitude, $latitude] + )->geom; + + $addressData['point_wgs84'] = $point; + + // Create the address record + OsmAddress::create($addressData); + + return 'imported'; + } + + /** + * Extract value from properties, trying multiple possible keys + */ + private function extractValue(array $properties, array $keys): ?string + { + foreach ($keys as $key) { + if (isset($properties[$key]) && !empty(trim($properties[$key]))) { + return trim($properties[$key]); + } + } + return null; + } + + /** + * Check if properties contain minimal address data + */ + private function hasMinimalAddressData(array $properties): bool + { + $addressFields = [ + ['housenumber', 'addr:housenumber'], + ['street', 'addr:street'], + ['postcode', 'addr:postcode'], + ['city', 'addr:city'], + ['suburb', 'addr:suburb'] + ]; + + foreach ($addressFields as $fieldKeys) { + $value = $this->extractValue($properties, $fieldKeys); + if (!empty($value)) { + return true; + } + } + + return false; + } +} diff --git a/app/Console/Commands/ImportOsmBuildingPart.php b/app/Console/Commands/ImportOsmBuildingPart.php new file mode 100644 index 00000000..84cb481f --- /dev/null +++ b/app/Console/Commands/ImportOsmBuildingPart.php @@ -0,0 +1,259 @@ +argument('path') ?? 'public/osm_buildings_all_tags.geojson'; + + if (!file_exists($path)) { + $this->error("File not found: {$path}"); + return 1; + } + + $this->info("Starting import from: {$path}"); + + try { + $geojsonContent = file_get_contents($path); + $geojson = json_decode($geojsonContent, true); + + if (!$geojson || !isset($geojson['features'])) { + $this->error('Invalid GeoJSON format'); + return 1; + } + + $features = $geojson['features']; + $totalFeatures = count($features); + $this->info("Found {$totalFeatures} features to import"); + + $chunkSize = 100; + $chunks = array_chunk($features, $chunkSize); + $imported = 0; + $skipped = 0; + $errors = 0; + + $progressBar = $this->output->createProgressBar($totalFeatures); + $progressBar->start(); + + foreach ($chunks as $chunk) { + DB::beginTransaction(); + + try { + foreach ($chunk as $feature) { + try { + $this->importFeature($feature); + $imported++; + } catch (\Exception $e) { + $this->error("\nError importing feature: " . $e->getMessage()); + $errors++; + } + $progressBar->advance(); + } + + DB::commit(); + } catch (\Exception $e) { + DB::rollback(); + $this->error("\nTransaction failed: " . $e->getMessage()); + $errors += count($chunk); + } + } + + $progressBar->finish(); + $this->newLine(); + + $this->info("Import completed!"); + $this->info("Imported: {$imported}"); + $this->info("Errors: {$errors}"); + $this->info("Total processed: " . ($imported + $errors)); + + return 0; + + } catch (\Exception $e) { + $this->error("Import failed: " . $e->getMessage()); + return 1; + } + } + + /** + * Import a single GeoJSON feature + */ + private function importFeature($feature) + { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + throw new \Exception('Invalid feature format'); + } + + $geometry = $feature['geometry']; + $properties = $feature['properties']; + + // Encode geometry JSON dan escape tanda kutip + $geometryJson = json_encode($geometry, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); + + // Siapkan data untuk kolom non-geometry + $data = [ + 'source' => 'OSM', + 'osm_id' => $this->parseNumeric($properties['osm_id'] ?? null), + 'name' => $this->parseText($properties['name'] ?? null), + + // UPRN + 'ref_gb_uprn' => $this->parseText( + $properties['ref:GB:uprn'] ?? $properties['ref_gb_uprn'] ?? null + ), + + // Base properties (sesuai ENUM di schema) + 'base_shape' => $this->parseEnum( + $properties['base_shape'] ?? null, + ['flat','slope','pyramidal','inverted_pyramidal','dome','inverted_dome', + 'round','inverted_round','gabled','gambrel','segmental_arch', + 'inverted_segmental_arch','partial_arch'] + ), + 'base_direction' => $this->parseNumeric($properties['base_direction'] ?? null), + 'base_orientation' => $this->parseEnum( + $properties['base_orientation'] ?? null, + ['along','across'] + ), + 'base_height_m' => $this->parseNumeric($properties['base_height_m'] ?? null), + 'base_levels' => $this->parseInteger($properties['base_levels'] ?? null), + 'base_colour' => $this->parseText($properties['base_colour'] ?? null), + 'base_material' => $this->parseText($properties['base_material'] ?? $properties['building:material'] ?? null), + 'base_angle_deg' => $this->parseNumeric($properties['base_angle_deg'] ?? null), + + // Building + 'building' => $this->parseText($properties['building'] ?? null), + 'building_part' => $this->parseText($properties['building:part'] ?? $properties['building_part'] ?? null), + 'building_levels' => $this->parseInteger($properties['building_levels'] ?? $properties['building:levels'] ?? null), + 'building_min_level' => $this->parseInteger($properties['building_min_level'] ?? null), + 'building_levels_underground' => $this->parseInteger($properties['building_levels_underground'] ?? $properties['building:levels:underground'] ?? null), + + // Roof + 'roof_levels' => $this->parseInteger($properties['roof_levels'] ?? $properties['roof:levels'] ?? null), + 'roof_shape' => $this->parseText($properties['roof_shape'] ?? $properties['roof:shape'] ?? null), + + // Height + 'height_m' => $this->parseNumeric($properties['height_m'] ?? $properties['height'] ?? null), + 'min_height_m' => $this->parseNumeric($properties['min_height_m'] ?? null), + 'roof_height_m' => $this->parseNumeric($properties['roof_height_m'] ?? $properties['roof:height'] ?? null), + + // Levels + 'levels' => $this->parseInteger($properties['levels'] ?? null), + 'min_level' => $this->parseInteger($properties['min_level'] ?? null), + + // Additional + 'building_reference_number' => $this->parseText($properties['building_reference_number'] ?? null), + 'tenure' => $this->parseText($properties['tenure'] ?? null), + 'construction_age_band' => $this->parseText($properties['construction_age_band'] ?? null), + 'transaction_type' => $this->parseText($properties['transaction_type'] ?? null), + ]; + + // Insert pakai statement binding agar GeoJSON tidak error + $sql = " + INSERT INTO osm_building_part ( + source, osm_id, name, ref_gb_uprn, + base_shape, base_direction, base_orientation, base_height_m, + base_levels, base_colour, base_material, base_angle_deg, + building, building_part, building_levels, building_min_level, + building_levels_underground, roof_levels, roof_shape, + height_m, min_height_m, roof_height_m, levels, min_level, + building_reference_number, tenure, construction_age_band, transaction_type, + geom + ) + VALUES ( + :source, :osm_id, :name, :ref_gb_uprn, + :base_shape, :base_direction, :base_orientation, :base_height_m, + :base_levels, :base_colour, :base_material, :base_angle_deg, + :building, :building_part, :building_levels, :building_min_level, + :building_levels_underground, :roof_levels, :roof_shape, + :height_m, :min_height_m, :roof_height_m, :levels, :min_level, + :building_reference_number, :tenure, :construction_age_band, :transaction_type, + ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(:geometry), 4326), 27700) + ) + "; + + DB::statement($sql, array_merge($data, ['geometry' => $geometryJson])); + } + + /** + * Parse text value, return null if empty + */ + private function parseText($value) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + return trim($value); + } + + /** + * Parse numeric value, return null if not numeric + */ + private function parseNumeric($value) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + + if (is_numeric($value)) { + return (float) $value; + } + + return null; + } + + /** + * Parse integer value, return null if not integer + */ + private function parseInteger($value) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + + if (is_numeric($value)) { + return (int) $value; + } + + return null; + } + + /** + * Parse enum value, return null if not in allowed values + */ + private function parseEnum($value, $allowedValues) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + + $value = strtolower(trim($value)); + + if (in_array($value, $allowedValues)) { + return $value; + } + + return null; + } +} diff --git a/app/Console/Commands/ImportOsmLanduseArea.php b/app/Console/Commands/ImportOsmLanduseArea.php new file mode 100644 index 00000000..9eabe038 --- /dev/null +++ b/app/Console/Commands/ImportOsmLanduseArea.php @@ -0,0 +1,264 @@ +argument('path') ?? public_path('osm_landuse_all_tags.visible.geojson'); + + if (!file_exists($filePath)) { + $this->error("File not found: {$filePath}"); + return 1; + } + + $this->info("Importing OSM landuse areas from: {$filePath}"); + + try { + $content = file_get_contents($filePath); + $geoJson = json_decode($content, true); + + if (!$geoJson || !isset($geoJson['features'])) { + $this->error('Invalid GeoJSON format'); + return 1; + } + + $features = $geoJson['features']; + $totalFeatures = count($features); + $this->info("Found {$totalFeatures} features to import"); + + $chunkSize = 100; + $chunks = array_chunk($features, $chunkSize); + $totalChunks = count($chunks); + $imported = 0; + $skipped = 0; + $errors = 0; + + $progressBar = $this->output->createProgressBar($totalChunks); + $progressBar->start(); + + foreach ($chunks as $chunkIndex => $chunk) { + DB::transaction(function () use ($chunk, &$imported, &$skipped, &$errors) { + foreach ($chunk as $feature) { + try { + $result = $this->processFeature($feature); + if ($result === 'imported') { + $imported++; + } elseif ($result === 'skipped') { + $skipped++; + } + } catch (\Exception $e) { + $errors++; + Log::error('Error processing OSM landuse area feature', [ + 'error' => $e->getMessage(), + 'feature' => $feature + ]); + } + } + }); + + $progressBar->advance(); + } + + $progressBar->finish(); + $this->newLine(); + + $this->info("Import completed!"); + $this->info("Imported: {$imported}"); + $this->info("Skipped: {$skipped}"); + $this->info("Errors: {$errors}"); + + return 0; + + } catch (\Exception $e) { + $this->error("Error importing data: " . $e->getMessage()); + Log::error('OSM landuse area import error', ['error' => $e->getMessage()]); + return 1; + } + } + + /** + * Process a single GeoJSON feature + */ + private function processFeature(array $feature): string + { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + return 'skipped'; + } + + $geometry = $feature['geometry']; + $properties = $feature['properties']; + + // Skip if no geometry or not a Polygon + if (!$geometry || $geometry['type'] !== 'Polygon') { + return 'skipped'; + } + + // Extract OSM ID for duplicate checking + $osmId = $this->extractValue($properties, ['osm_id']); + + // Extract landuse type, provide default if empty + $landuse = $this->extractLanduseType($properties); + if (empty($landuse)) { + $landuse = 'unknown'; // Default value for empty landuse + } + + // Check for duplicates by OSM ID + if (!empty($osmId) && is_numeric($osmId)) { + if (OsmLanduseArea::where('osm_id', $osmId)->exists()) { + return 'skipped'; + } + } + + // Prepare tags JSON from all properties + $tags = $this->prepareTags($properties); + + // Prepare data for insertion + $landuseData = [ + 'source' => $this->extractValue($properties, ['source']) ?: 'osm', + 'osm_id' => !empty($osmId) && is_numeric($osmId) ? (int)$osmId : null, + 'name' => $this->extractValue($properties, ['name']), + 'landuse' => $landuse, + 'operator' => $this->extractValue($properties, ['operator']), + 'ref' => $this->extractValue($properties, ['ref']), + 'start_date' => $this->parseDate($this->extractValue($properties, ['start_date'])), + 'opening_date' => $this->parseDate($this->extractValue($properties, ['opening_date'])), + 'end_date' => $this->parseDate($this->extractValue($properties, ['end_date'])), + 'tags' => $tags, + ]; + + // Create geometry using PostGIS (convert from WGS84 to BNG) + $geometryJson = json_encode($geometry); + $bngGeometry = DB::selectOne( + "SELECT ST_Transform(ST_GeomFromGeoJSON(?), 27700) as geom", + [$geometryJson] + )->geom; + + $landuseData['geom'] = $bngGeometry; + + // Create the landuse area record + OsmLanduseArea::create($landuseData); + + return 'imported'; + } + + /** + * Extract landuse type from properties + */ + private function extractLanduseType(array $properties): ?string + { + // First check the main landuse field + $landuse = $this->extractValue($properties, ['landuse']); + if (!empty($landuse)) { + return $landuse; + } + + // Check for specific landuse types in properties + $landuseTypes = [ + 'residential', 'commercial', 'industrial', 'retail', + 'farmland', 'forest', 'grass', 'meadow', 'construction', + 'crop', 'trees', 'wood' + ]; + + foreach ($landuseTypes as $type) { + $value = $this->extractValue($properties, [$type]); + if (!empty($value)) { + return $type; + } + } + + return null; + } + + /** + * Prepare tags JSON from properties + */ + private function prepareTags(array $properties): array + { + $tags = []; + + // Skip standard fields that have their own columns + $skipFields = [ + 'name', 'source', 'osm_id', 'landuse', 'operator', 'ref', + 'start_date', 'opening_date', 'end_date' + ]; + + foreach ($properties as $key => $value) { + if (in_array($key, $skipFields)) { + continue; + } + + // Only include non-empty values + if (!empty(trim($value))) { + $tags[$key] = trim($value); + } + } + + return $tags; + } + + /** + * Parse date string to Carbon instance + */ + private function parseDate(?string $dateString): ?Carbon + { + if (empty($dateString)) { + return null; + } + + try { + // Try various date formats + $formats = ['Y-m-d', 'Y-m-d H:i:s', 'Y/m/d', 'd/m/Y', 'd-m-Y']; + + foreach ($formats as $format) { + try { + return Carbon::createFromFormat($format, $dateString); + } catch (\Exception $e) { + continue; + } + } + + // Try parsing as a general date + return Carbon::parse($dateString); + } catch (\Exception $e) { + return null; + } + } + + /** + * Extract value from properties, trying multiple possible keys + */ + private function extractValue(array $properties, array $keys): ?string + { + foreach ($keys as $key) { + if (isset($properties[$key]) && !empty(trim($properties[$key]))) { + return trim($properties[$key]); + } + } + return null; + } +} diff --git a/app/Console/Commands/ImportUprnGeojson.php b/app/Console/Commands/ImportUprnGeojson.php deleted file mode 100644 index 056e0266..00000000 --- a/app/Console/Commands/ImportUprnGeojson.php +++ /dev/null @@ -1,225 +0,0 @@ -argument('file') ?? 'public/osopenuprn_address-Ward-South-East-Farnham-Castle.geojson'; - $shouldTruncate = $this->option('truncate'); - $skipExisting = $this->option('skip-existing'); - $updateExisting = $this->option('update-existing'); - - $this->info('Importing GeoJSON file: ' . $filePath); - - if (!File::exists($filePath)) { - $this->error('File not found: ' . $filePath); - return 1; - } - - try { - $jsonData = json_decode(File::get($filePath), true); - - if (json_last_error() !== JSON_ERROR_NONE) { - $this->error('Invalid JSON file: ' . json_last_error_msg()); - return 1; - } - - $this->info('Total features found: ' . count($jsonData['features'])); - - if ($shouldTruncate) { - if ($this->confirm('Are you sure you want to truncate the osopenuprn_address table? This will delete all existing data.')) { - DB::connection('pgsql')->statement('TRUNCATE TABLE osopenuprn_address CASCADE'); - $this->info('osopenuprn_address table truncated.'); - } else { - $this->info('Truncate operation cancelled.'); - } - } - - // Get existing uprn values if we need to skip or update existing records - $existingUprns = []; - if ($skipExisting || $updateExisting) { - $existingUprns = DB::connection('pgsql') - ->table('osopenuprn_address') - ->whereNotNull('uprn') - ->pluck('fid', 'uprn') - ->toArray(); - - $this->info("Found " . count($existingUprns) . " existing UPRN records"); - } - - // Get the max fid to start from - $maxFid = DB::connection('pgsql')->table('osopenuprn_address')->max('fid') ?? 0; - $this->info("Starting with FID: " . ($maxFid + 1)); - - $bar = $this->output->createProgressBar(count($jsonData['features'])); - - DB::connection('pgsql')->beginTransaction(); - - try { - $count = 0; - $skipped = 0; - $updated = 0; - - foreach ($jsonData['features'] as $index => $feature) { - $properties = $feature['properties']; - $geometry = $feature['geometry']; - - // Extract fields from properties (case-insensitive) - $fid = $this->getPropertyValue($properties, 'FID'); - $uprn = $this->getPropertyValue($properties, 'UPRN'); - $x_coordinate = $this->getPropertyValue($properties, 'X_COORDINATE'); - $y_coordinate = $this->getPropertyValue($properties, 'Y_COORDINATE'); - $latitude = $this->getPropertyValue($properties, 'LATITUDE'); - $longitude = $this->getPropertyValue($properties, 'LONGITUDE'); - - // Skip if no uprn - if (empty($uprn)) { - $skipped++; - $bar->advance(); - continue; - } - - // Check if record already exists and handle according to options - if (array_key_exists($uprn, $existingUprns)) { - if ($skipExisting) { - $skipped++; - $bar->advance(); - continue; - } elseif ($updateExisting) { - // Update existing record - $existingFid = $existingUprns[$uprn]; - $geomStr = json_encode($geometry); - - DB::connection('pgsql')->statement( - "UPDATE osopenuprn_address SET - x_coordinate = ?, - y_coordinate = ?, - latitude = ?, - longitude = ?, - geom = ST_SetSRID(ST_GeomFromGeoJSON(?), 27700) - WHERE fid = ?", - [ - $x_coordinate, - $y_coordinate, - $latitude, - $longitude, - $geomStr, - $existingFid - ] - ); - - $updated++; - $bar->advance(); - continue; - } - } - - // Insert new record - $newFid = $fid ?? ($maxFid + $index + 1); - $geomStr = json_encode($geometry); - - DB::connection('pgsql')->statement( - "INSERT INTO osopenuprn_address (fid, uprn, x_coordinate, y_coordinate, latitude, longitude, geom) - VALUES (?, ?, ?, ?, ?, ?, ST_SetSRID(ST_GeomFromGeoJSON(?), 27700))", - [ - $newFid, - $uprn, - $x_coordinate, - $y_coordinate, - $latitude, - $longitude, - $geomStr - ] - ); - - $count++; - $bar->advance(); - - if (($count + $updated) % 100 == 0) { - DB::connection('pgsql')->commit(); - DB::connection('pgsql')->beginTransaction(); - $this->info("\nCommitted records: $count inserted, $updated updated"); - } - } - - DB::connection('pgsql')->commit(); - $bar->finish(); - $this->newLine(2); - $this->info('Import completed successfully!'); - $this->info("Total records: $count inserted, $updated updated, $skipped skipped"); - - // Check if sequence exists before updating it - try { - $sequenceExists = DB::connection('pgsql') - ->select("SELECT 1 FROM pg_class WHERE relname = 'osopenuprn_address_fid_seq' AND relkind = 'S'"); - - if (!empty($sequenceExists)) { - DB::connection('pgsql')->statement("SELECT setval('osopenuprn_address_fid_seq', (SELECT MAX(fid) FROM osopenuprn_address))"); - $this->info('Sequence updated.'); - } - } catch (\Exception $e) { - $this->info('No sequence found for osopenuprn_address table. Skipping sequence update.'); - } - - } catch (\Exception $e) { - DB::connection('pgsql')->rollBack(); - $this->error('Error importing data: ' . $e->getMessage()); - return 1; - } - - } catch (\Exception $e) { - $this->error('Error processing file: ' . $e->getMessage()); - return 1; - } - - return 0; - } - - /** - * Get property value with case-insensitive lookup - */ - private function getPropertyValue($properties, $key) - { - // Direct match - if (array_key_exists($key, $properties)) { - return $properties[$key]; - } - - // Case-insensitive match - $lowercaseKey = strtolower($key); - foreach ($properties as $k => $value) { - if (strtolower($k) === $lowercaseKey) { - return $value; - } - } - - return null; - } -} \ No newline at end of file diff --git a/app/Console/Commands/ImportUprnJson.php b/app/Console/Commands/ImportUprnJson.php new file mode 100644 index 00000000..c7d3fe6d --- /dev/null +++ b/app/Console/Commands/ImportUprnJson.php @@ -0,0 +1,142 @@ +argument('path') ?: public_path('sampleuprn.geojson'); + + if (!File::exists($filePath)) { + $this->error("GeoJSON file not found: {$filePath}"); + return 1; + } + + $json = File::get($filePath); + $jsonData = json_decode($json, true); + + if (!is_array($jsonData) || !isset($jsonData['features']) || !is_array($jsonData['features'])) { + $this->error('Invalid GeoJSON format. "features" key not found or invalid.'); + return 1; + } + + $features = $jsonData['features']; + $total = count($features); + + $this->info('Total UPRN features found: ' . $total); + + $bar = $this->output->createProgressBar($total); + $bar->start(); + + $processed = 0; + $errors = 0; + + // Process in chunks for better memory management + $chunkSize = 1000; + $chunks = array_chunk($features, $chunkSize); + + foreach ($chunks as $chunk) { + DB::beginTransaction(); + + try { + foreach ($chunk as $feature) { + $bar->advance(); + + try { + $properties = $feature['properties'] ?? []; + $geometry = $feature['geometry'] ?? null; + + // Extract fields with fallbacks + $fid = $properties['FID'] ?? null; + $uprn = $properties['UPRN'] ?? null; + $x = $properties['X_COORDINATE'] ?? null; + $y = $properties['Y_COORDINATE'] ?? null; + $lat = $properties['LATITUDE'] ?? null; + $lon = $properties['LONGITUDE'] ?? null; + + if ($uprn === null) { + $this->warn("\nSkipping a feature without UPRN."); + $errors++; + continue; + } + + // Create or update by UPRN as the business key (without geometry first) + $record = Uprn::updateOrCreate([ + 'uprn' => $uprn, + ], [ + 'fid' => $fid, + 'x_coordinate' => $x, + 'y_coordinate' => $y, + 'latitude' => $lat, + 'longitude' => $lon, + ]); + + // Update geometry separately using raw SQL + if ($geometry && !empty($geometry['coordinates']) && $geometry['type'] === 'Point') { + $x_coord = $geometry['coordinates'][0]; + $y_coord = $geometry['coordinates'][1]; + + // Use direct coordinate values, not variables to avoid SQL injection issues + DB::statement( + "UPDATE osopenuprn_address SET geom = ST_SetSRID(ST_MakePoint(?, ?), 27700) WHERE uprn = ?", + [$x_coord, $y_coord, $uprn] + ); + } + + $processed++; + + } catch (\Throwable $e) { + $id = $feature['properties']['UPRN'] ?? 'N/A'; + $this->warn("\nSkipping record with UPRN: {$id}. Error: " . $e->getMessage()); + $errors++; + continue; + } + } + + DB::commit(); + + } catch (\Throwable $e) { + DB::rollBack(); + $this->error("\nTransaction failed for chunk. Error: " . $e->getMessage()); + $errors += count($chunk); + } + } + + $bar->finish(); + $this->newLine(2); + $this->info('UPRN import completed!'); + $this->info("Total records successfully processed: {$processed}"); + + if ($errors > 0) { + $this->warn("Total errors encountered: {$errors}"); + } + + return 0; + } +} \ No newline at end of file diff --git a/app/Console/Commands/ImportWDGeojson.php b/app/Console/Commands/ImportWDGeojson.php deleted file mode 100644 index efb17e96..00000000 --- a/app/Console/Commands/ImportWDGeojson.php +++ /dev/null @@ -1,215 +0,0 @@ -argument('file') ?? 'public/WD_MAY_2024_UK_BGC.geojson'; - $shouldTruncate = $this->option('truncate'); - $skipExisting = $this->option('skip-existing'); - $updateExisting = $this->option('update-existing'); - - $this->info('Importing GeoJSON file: ' . $filePath); - - if (!File::exists($filePath)) { - $this->error('File not found: ' . $filePath); - return 1; - } - - try { - $jsonData = json_decode(File::get($filePath), true); - - if (json_last_error() !== JSON_ERROR_NONE) { - $this->error('Invalid JSON file: ' . json_last_error_msg()); - return 1; - } - - $this->info('Total features found: ' . count($jsonData['features'])); - - if ($shouldTruncate) { - if ($this->confirm('Are you sure you want to truncate the shape table? This will delete all existing data.')) { - DB::connection('pgsql')->statement('TRUNCATE TABLE shape RESTART IDENTITY CASCADE'); - $this->info('Shape table truncated.'); - } else { - $this->info('Truncate operation cancelled.'); - } - } - - // Get existing wd24cd values if we need to skip or update existing records - $existingWd24Cds = []; - if ($skipExisting || $updateExisting) { - $existingWd24Cds = DB::connection('pgsql') - ->table('shape') - ->whereNotNull('wd24cd') - ->pluck('ogc_fid', 'wd24cd') - ->toArray(); - - $this->info("Found " . count($existingWd24Cds) . " existing wd24cd records"); - } - - // Get the max ogc_fid to start from - $maxOgcFid = DB::connection('pgsql')->table('shape')->max('ogc_fid') ?? 0; - $this->info("Starting with ogc_fid: " . ($maxOgcFid + 1)); - - $bar = $this->output->createProgressBar(count($jsonData['features'])); - - DB::connection('pgsql')->beginTransaction(); - - try { - $count = 0; - $skipped = 0; - $updated = 0; - $globalIdCount = 0; - $nullGlobalIds = 0; - - foreach ($jsonData['features'] as $index => $feature) { - $properties = $feature['properties']; - $geometry = $feature['geometry']; - - // Extract lat/long from properties - $lat = $properties['LAT'] ?? null; - $long = $properties['LONG'] ?? null; - $wd24cd = $properties['WD24CD'] ?? null; - - // Check for GlobalID field with proper case sensitivity - $globalId = null; - if (array_key_exists('GlobalID', $properties)) { - $globalId = $properties['GlobalID']; - $globalIdCount++; - } elseif (array_key_exists('GLOBALID', $properties)) { - $globalId = $properties['GLOBALID']; - $globalIdCount++; - } elseif (array_key_exists('globalid', $properties)) { - $globalId = $properties['globalid']; - $globalIdCount++; - } else { - $nullGlobalIds++; - } - - // Skip if no wd24cd - if (empty($wd24cd)) { - $skipped++; - $bar->advance(); - continue; - } - - // Check if record already exists and handle according to options - if (array_key_exists($wd24cd, $existingWd24Cds)) { - if ($skipExisting) { - $skipped++; - $bar->advance(); - continue; - } elseif ($updateExisting) { - // Update existing record - $ogcFid = $existingWd24Cds[$wd24cd]; - $geomStr = json_encode($geometry); - - DB::connection('pgsql')->statement( - "UPDATE shape SET - wd24nm = ?, - wd24nmw = ?, - bng_e = ?, - bng_n = ?, - lat = ?, - long = ?, - globalid = ?, - wkb_geometry = ST_SetSRID(ST_GeomFromGeoJSON(?), 27700) - WHERE ogc_fid = ?", - [ - $properties['WD24NM'] ?? null, - $properties['WD24NMW'] ?? null, - $properties['BNG_E'] ?? null, - $properties['BNG_N'] ?? null, - $lat, - $long, - $globalId, - $geomStr, - $ogcFid - ] - ); - - $updated++; - $bar->advance(); - continue; - } - } - - // Insert new record - $ogcFid = $maxOgcFid + $index + 1; - $geomStr = json_encode($geometry); - - DB::connection('pgsql')->statement( - "INSERT INTO shape (ogc_fid, wd24cd, wd24nm, wd24nmw, bng_e, bng_n, lat, long, globalid, wkb_geometry) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ST_SetSRID(ST_GeomFromGeoJSON(?), 27700))", - [ - $ogcFid, - $wd24cd, - $properties['WD24NM'] ?? null, - $properties['WD24NMW'] ?? null, - $properties['BNG_E'] ?? null, - $properties['BNG_N'] ?? null, - $lat, - $long, - $globalId, - $geomStr - ] - ); - - $count++; - $bar->advance(); - - if (($count + $updated) % 100 == 0) { - DB::connection('pgsql')->commit(); - DB::connection('pgsql')->beginTransaction(); - $this->info("\nCommitted records: $count inserted, $updated updated"); - } - } - - DB::connection('pgsql')->commit(); - $bar->finish(); - $this->newLine(2); - $this->info('Import completed successfully!'); - $this->info("Total records: $count inserted, $updated updated, $skipped skipped"); - $this->info("GlobalID statistics: $globalIdCount records with GlobalID, $nullGlobalIds without GlobalID"); - - DB::connection('pgsql')->statement("SELECT setval('shape_ogc_fid_seq', (SELECT MAX(ogc_fid) FROM shape))"); - $this->info('Sequence updated.'); - - } catch (\Exception $e) { - DB::connection('pgsql')->rollBack(); - $this->error('Error importing data: ' . $e->getMessage()); - return 1; - } - - } catch (\Exception $e) { - $this->error('Error processing file: ' . $e->getMessage()); - return 1; - } - - return 0; - } -} \ No newline at end of file diff --git a/app/Console/Commands/PomLocateByNmea.php b/app/Console/Commands/PomLocateByNmea.php new file mode 100644 index 00000000..10bb1d73 --- /dev/null +++ b/app/Console/Commands/PomLocateByNmea.php @@ -0,0 +1,64 @@ +whereNull('flg_checked_location') + ->where('device_platform', 'Android') + ->limit(2000) + ->get(); + + foreach ($photos as $photo) { + $photoId = $photo->id; + $nmeaMsg = $photo->nmea_msg; + $lat = $photo->lat; + $lng = $photo->lng; + + $nmeaLocation = get_coordinates_from_nmea($nmeaMsg); + + if ($nmeaLocation) { + $nmeaLocationJson = json_encode($nmeaLocation); + $distance = get_distance_from_coordinates($lat, $lng, $nmeaLocation['lat'], $nmeaLocation['lon']); + $checkLocation = $distance < 50 ? 1 : 0; + + Photo:: + where('id', $photoId) + ->update([ + 'nmea_location' => $nmeaLocationJson, + 'nmea_distance' => $distance, + 'flg_checked_location' => $checkLocation, + ]); + } else { + Photo:: + where('id', $photoId) + ->update(['flg_checked_location' => 0]); + } + } + + } +} diff --git a/app/Http/Controllers/ApiController.php b/app/Http/Controllers/ApiController.php index 11ba1299..0f9f3853 100644 --- a/app/Http/Controllers/ApiController.php +++ b/app/Http/Controllers/ApiController.php @@ -15,24 +15,58 @@ use App\Models\Attr\Codepoint; use App\Models\Attr\BuildingPart; use Illuminate\Support\Facades\DB; +use App\Models\LandRegistryInspire; +use App\Models\OsmBuildingPart; use Illuminate\Support\Facades\Log; +use App\Http\Resources\NhleCollection; use App\Http\Resources\UprnCollection; +use App\Http\Resources\UprnFeatureResource; use App\Http\Resources\ShapeCollection; +use Illuminate\Support\Facades\Artisan; use App\Http\Resources\CodepointCollection; -use App\Http\Resources\NhleCollection; -use App\Models\LandRegistryInspire; +use App\Http\Resources\CodepointFeatureResource; use App\Http\Resources\LandRegistryInspireCollection; +use App\Models\Attr\Building; +use App\Models\Attr\BuildingPartLink; +use App\Models\Attr\BuildingAddress; +use App\Http\Resources\BuildingCollection; +use App\Http\Resources\BuildingCollectionV4; +use App\Models\BuiltupArea; +use Symfony\Component\HttpFoundation\StreamedResponse; class ApiController extends Controller { - public function comm_get_paths(Request $request){ + /** + * @OA\Post( + * path="/comm_get_paths", + * security={{"bearerAuth":{}}}, + * tags={"Paths"}, + * summary="Get paths by user ID", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="user_id", + * type="integer", + * example="4" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_get_paths(Request $request) + { $user_id = $request->user_id; $paths = Path::where('flg_deleted', 0) - ->where('user_id', $user_id) - ->with('points') - ->get(); + ->where('user_id', $user_id) + ->with('points') + ->get(); $output = $paths->map(function ($path) { return [ @@ -58,19 +92,42 @@ public function comm_get_paths(Request $request){ ]; }); - $output = $output->toArray(); + $output = $output->toArray(); return response()->json([ - 'status'=>'ok', + 'status' => 'ok', 'error_msg' => null, 'paths' => $output ]); } - public function comm_unassigned(Request $request){ + /** + * @OA\Post( + * path="/comm_unassigned", + * security={{"bearerAuth":{}}}, + * tags={"Photos"}, + * summary="Get unassigned photo IDs by user ID", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="user_id", + * type="integer", + * example="4" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_unassigned(Request $request) + { $user_id = $request->user_id; - $ids = Photo::where('user_id',$user_id)->where('flg_deleted',0)->whereNull('task_id')->pluck('id')->toArray(); + $ids = Photo::where('user_id', $user_id)->where('flg_deleted', 0)->whereNull('task_id')->pluck('id')->toArray(); $output = []; $output['status'] = 'ok'; @@ -80,42 +137,65 @@ public function comm_unassigned(Request $request){ return response()->json($output); } - public function comm_tasks(Request $request){ + /** + * @OA\Post( + * path="/comm_tasks", + * security={{"bearerAuth":{}}}, + * tags={"Tasks"}, + * summary="Get tasks by user ID", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="user_id", + * type="integer", + * example="3" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_tasks(Request $request) + { $user_id = $request->user_id; - - + + $tasks = Task::withCount(['photos' => function ($query) { $query->where('flg_deleted', 0); }]) - ->with(['taskType' => function ($query) { - $query->select('id', 'description'); - }]) - ->select('id', 'task.status','type_id', 'name', 'text', 'text_returned', 'date_created', 'task_due_date', 'note', 'text_reason') - ->selectRaw('CASE WHEN (SELECT COUNT(*) FROM task_flag tf WHERE task_id = task.id AND flag_id = 1) > 0 THEN 1 ELSE 0 END AS flag_valid') - ->selectRaw('CASE WHEN (SELECT COUNT(*) FROM task_flag tf WHERE task_id = task.id AND flag_id = 2) > 0 THEN 1 ELSE 0 END AS flag_invalid') - ->where('user_id', $user_id) - ->where('flg_deleted', 0) - ->leftJoin('status_sortorder', 'task.status', '=', 'status_sortorder.status') - ->orderBy('status_sortorder.sortorder') - ->get() - ->map(function ($task) { - return [ - 'id' => $task->id, - 'status' => $task->status, - 'name' => $task->name, - 'text' => $task->text, - 'text_returned' => $task->text_returned, - 'date_created' => $task->date_created, - 'task_due_date' => $task->task_due_date, - 'note' => $task->note, - 'number_of_photos' => $task->photos->count(), - 'flag_valid' => (string) $task->flag_valid, - 'flag_invalid' => (string) $task->flag_invalid, - 'reopen_reason' => $task->text_reason, - 'purpose' => $task->taskType->description ?? null, - 'photos_ids' => $task->photos->pluck('id')->toArray(), - ]; - }); + ->with(['taskType' => function ($query) { + $query->select('id', 'description'); + }]) + ->select('id', 'task.status', 'type_id', 'name', 'text', 'text_returned', 'date_created', 'task_due_date', 'note', 'text_reason') + ->selectRaw('CASE WHEN (SELECT COUNT(*) FROM task_flag tf WHERE task_id = task.id AND flag_id = 1) > 0 THEN 1 ELSE 0 END AS flag_valid') + ->selectRaw('CASE WHEN (SELECT COUNT(*) FROM task_flag tf WHERE task_id = task.id AND flag_id = 2) > 0 THEN 1 ELSE 0 END AS flag_invalid') + ->where('user_id', $user_id) + ->where('flg_deleted', 0) + ->leftJoin('status_sortorder', 'task.status', '=', 'status_sortorder.status') + ->orderBy('status_sortorder.sortorder') + ->get() + ->map(function ($task) { + return [ + 'id' => $task->id, + 'status' => $task->status, + 'name' => $task->name, + 'text' => $task->text, + 'text_returned' => $task->text_returned, + 'date_created' => $task->date_created, + 'task_due_date' => $task->task_due_date, + 'note' => $task->note, + 'number_of_photos' => $task->photos->count(), + 'flag_valid' => (string) $task->flag_valid, + 'flag_invalid' => (string) $task->flag_invalid, + 'reopen_reason' => $task->text_reason, + 'purpose' => $task->taskType->description ?? null, + 'photos_ids' => $task->photos->pluck('id')->toArray(), + ]; + }); $output = []; $output['status'] = 'ok'; $output['error_msg'] = NULL; @@ -123,25 +203,58 @@ public function comm_tasks(Request $request){ return response()->json($output); } - public function comm_status(Request $request){ + /** + * @OA\Post( + * path="/comm_status", + * security={{"bearerAuth":{}}}, + * tags={"Tasks"}, + * summary="Update task status", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="task_id", + * type="integer", + * example="123" + * ), + * @OA\Property( + * property="note", + * type="string", + * example="test" + * ), + * @OA\Property( + * property="status", + * type="string", + * example="new" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_status(Request $request) + { $task_id = trim($request->task_id); $status = trim($request->status); $note = trim($request->note); - $output = array(); + $output = array(); $output['status'] = 'ok'; - $output['error_msg'] = NULL; + $output['error_msg'] = NULL; - if($task_id){ - $task_status = Task::select('id','status')->where('id',$task_id)->first(); + if ($task_id) { + $task_status = Task::select('id', 'status')->where('id', $task_id)->first(); $task_status = $task_status ? $task_status->status : ''; - if($task_status == 'new' && $status == 'open'){ + if ($task_status == 'new' && $status == 'open') { $output = Task::setTaskStatus($task_id, $status, $note); - }elseif (($task_status == 'new' || $task_status == 'open' || $task_status == 'returned') && $status == 'data provided') { - if(Task::checkTaskPhotos($task_id)){ + } elseif (($task_status == 'new' || $task_status == 'open' || $task_status == 'returned') && $status == 'data provided') { + if (Task::checkTaskPhotos($task_id)) { $output = Task::setTaskStatus($task_id, $status, $note); - }else{ + } else { $output['status'] = 'error'; $output['error_msg'] = 'task has no photos'; } @@ -150,7 +263,75 @@ public function comm_status(Request $request){ return response()->json($output); } - public function comm_path(Request $request){ + /** + * @OA\Post( + * path="/comm_path", + * security={{"bearerAuth":{}}}, + * tags={"Paths"}, + * summary="Create a new path", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="user_id", + * type="integer", + * example="3" + * ), + * @OA\Property( + * property="name", + * type="string", + * example="Test example path" + * ), + * @OA\Property( + * property="deviceManufacture", + * type="string", + * example="Manufacturer" + * ), + * @OA\Property( + * property="deviceModel", + * type="string", + * example="Model" + * ), + * @OA\Property( + * property="devicePlatform", + * type="string", + * example="Platform" + * ), + * @OA\Property( + * property="deviceVersion", + * type="string", + * example="Version" + * ), + * @OA\Property( + * property="start", + * type="string", + * example="2024-05-01 12:00:00" + * ), + * @OA\Property( + * property="end", + * type="string", + * example="2024-05-01 13:00:00" + * ), + * @OA\Property( + * property="area", + * type="number", + * example="150.50" + * ), + * @OA\Property( + * property="points", + * type="string", + * example="JSON array of points" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_path(Request $request) + { $user_id = $request->input('user_id'); $name = $request->input('name'); $device_manufacture = $request->input('deviceManufacture'); @@ -159,7 +340,7 @@ public function comm_path(Request $request){ $device_version = $request->input('deviceVersion'); $area = $request->input('area'); $points_json = $request->input('points'); - + $start = gmdate('Y-m-d H:i:s', strtotime($request->input('start'))); $end = gmdate('Y-m-d H:i:s', strtotime($request->input('end'))); @@ -187,14 +368,51 @@ public function comm_path(Request $request){ } return response()->json($output); - } - public function comm_photo(Request $request){ + /** + * @OA\Post( + * path="/comm_photo", + * security={{"bearerAuth":{}}}, + * tags={"Photos"}, + * summary="Upload a photo", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="task_id", + * type="integer", + * example="125950" + * ), + * @OA\Property( + * property="user_id", + * type="integer", + * example="4" + * ), + * @OA\Property( + * property="photo", + * type="string", + * example="JSON object with photo data" + * ), + * @OA\Property( + * property="digest", + * type="string", + * example="abc123digestvalue" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_photo(Request $request) + { $task_id = trim($request->input('task_id')); $user_id = trim($request->input('user_id')); $photo_json = trim($request->input('photo')); - + $status_ok = true; if ($task_id) { $task_status = getTaskStatus($task_id); @@ -214,6 +432,8 @@ public function comm_photo(Request $request){ $photo = json_decode($photo_json, true); if (json_last_error() === JSON_ERROR_NONE) { $output = setPhoto($photo, $user_id, $task_id); + Artisan::queue('app:pom-locate-by-nmea'); + Artisan::queue('app:cron-check-location'); } else { $output['status'] = 'error'; $output['error_msg'] = 'photo json decode error'; @@ -235,7 +455,30 @@ public function comm_photo(Request $request){ return response()->json($output); } - public function comm_get_photo(Request $request){ + /** + * @OA\Post( + * path="/comm_get_photo", + * security={{"bearerAuth":{}}}, + * tags={"Photos"}, + * summary="Get photo by ID", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="photo_id", + * type="integer", + * example="18021" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_get_photo(Request $request) + { $photo_id = trim($request->input('photo_id')); $output = [ @@ -249,18 +492,61 @@ public function comm_get_photo(Request $request){ $output['error_msg'] = 'wrong photo ID'; unset($output['photo']); } - + return response()->json($output); } - public function comm_update(Request $request){ + /** + * @OA\Post( + * path="/comm_update", + * security={{"bearerAuth":{}}}, + * tags={"Tasks"}, + * summary="Submit task photos and update task status", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="user_id", + * type="integer", + * example="4" + * ), + * @OA\Property( + * property="task_id", + * type="integer", + * example="125950" + * ), + * @OA\Property( + * property="photos", + * type="string", + * example="JSON array of photos" + * ), + * @OA\Property( + * property="status", + * type="string", + * example="data provided" + * ), + * @OA\Property( + * property="note", + * type="string", + * example="TEST TASK NOTE" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_update(Request $request) + { $task_id = trim($request->input('task_id')); $user_id = trim($request->input('user_id')); $status = trim($request->input('status')); $note = trim($request->input('note')); $photos_json = trim($request->input('photos')); - + $status_ok = true; if ($task_id) { $task_status = getTaskStatus($task_id); @@ -299,7 +585,7 @@ public function comm_update(Request $request){ if ($task_status === 'new' && $status === 'open') { $output = setTaskStatus($task_id, $status, $note); } elseif (in_array($task_status, ['new', 'open', 'returned']) && $status === 'data provided') { - if (checkTaskPhotos($task_id)) { + if (checkTaskPhotos($task_id)) { $output = setTaskStatus($task_id, $status, $note); } else { $output['status'] = 'error'; @@ -316,20 +602,71 @@ public function comm_update(Request $request){ return response()->json($output); } - public function comm_task_photos(Request $request){ + /** + * @OA\Post( + * path="/comm_task_photos", + * security={{"bearerAuth":{}}}, + * tags={"Tasks"}, + * summary="Get task photos", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="task_id", + * type="integer", + * example="125950" + * ), + * @OA\Property( + * property="user_id", + * type="integer", + * example="4" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_task_photos(Request $request) + { $task_id = trim($request->input('task_id')); $user_id = trim($request->input('user_id')); - + $output = [ 'status' => 'ok', 'error_msg' => null, 'photos' => getTaskPhotos($task_id, $user_id, true), ]; - + return response()->json($output); } - public function comm_delete_path(Request $request){ + /** + * @OA\Post( + * path="/comm_delete_path", + * security={{"bearerAuth":{}}}, + * tags={"Paths"}, + * summary="Delete a path", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="path_id", + * type="integer", + * example="373" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_delete_path(Request $request) + { $uid = trim($request->input('path_id')); $output = []; @@ -341,7 +678,30 @@ public function comm_delete_path(Request $request){ return response()->json($output); } - public function comm_delete_unassigned_photo(Request $request){ + /** + * @OA\Post( + * path="/comm_delete_unassigned_photo", + * security={{"bearerAuth":{}}}, + * tags={"Photos"}, + * summary="Delete unassigned photo", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="photo_id", + * type="integer", + * example="17804" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_delete_unassigned_photo(Request $request) + { $uid = trim($request->input('photo_id')); $output = []; @@ -355,9 +715,39 @@ public function comm_delete_unassigned_photo(Request $request){ } - public function comm_get_lpis(Request $request){ - - $bbox = explode(",",$request->bbox); + /** + * @OA\Get( + * path="/comm_get_lpis", + * security={{"bearerAuth":{}}}, + * tags={"LPIS"}, + * summary="Retrieve a list of LPIS records based on filters or bounding box", + * @OA\Parameter( + * name="bbox", + * in="query", + * required=false, + * @OA\Schema( + * type="string" + * ), + * example="-0.6000,51.2000,-0.5900,51.2100", + * description="bbox coordinates" + * ), + * @OA\Parameter( + * name="numberOfRecords", + * in="query", + * required=false, + * @OA\Schema( + * type="integer", + * default=20 + * ), + * description="Number of records per page for pagination" + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_get_lpis(Request $request) + { + + $bbox = explode(",", $request->bbox); $requestData = $request->all(); $max_lng = $bbox[2] ?? false; $max_lat = $bbox[3] ?? false; @@ -365,38 +755,34 @@ public function comm_get_lpis(Request $request){ $min_lat = $bbox[1] ?? false; $numberOfRecords = $requestData['numberOfRecords'] ?? 20; - $query = Land::select('id', 'identificator', 'pa_description', 'wkt', 'wgs_max_lat', 'wgs_min_lat', 'wgs_max_lng', 'wgs_min_lng') - ->selectRaw("ST_AsGeoJSON(wgs_geometry) as geometry_json") - ->whereNotNull('wgs_geometry'); - + $query = Land::whereNotNull('wgs_geometry'); + if ($request->has('identificator')) { $query->where('identificator', $request->input('identificator')); } - if($max_lat && $min_lat && $max_lng && $min_lng){ + if ($max_lat && $min_lat && $max_lng && $min_lng) { $query ->where('wgs_min_lat', '<', $max_lat) ->where('wgs_max_lat', '>', $min_lat) ->where('wgs_min_lng', '<', $max_lng) ->where('wgs_max_lng', '>', $min_lng); } - + $lands = $query->limit($numberOfRecords)->get(); $features = []; - foreach ($lands as $land){ - $geometryJson = json_decode($land->geometry_json, true); - + foreach ($lands as $land) { $features[] = [ - 'id' => $land->id, + 'id' => $land['id'], 'type' => 'Feature', - 'geometry' => $geometryJson ?? [ - 'type' => $land->wkt, - 'coordinates' => null + 'geometry' => [ + 'type' => $land['wkt'], + 'coordinates' => $land['wgs_geometry'] ], 'properties' => [ - 'name' => $land->identificator, - 'description' => $land->pa_description + 'name' => $land['identificator'], + 'description' => $land['pa_description'] ] ]; } @@ -407,8 +793,66 @@ public function comm_get_lpis(Request $request){ ]); } - public function comm_save_lpis(Request $request){ - try{ + /** + * @OA\Post( + * path="/comm_lpis", + * security={{"bearerAuth":{}}}, + * tags={"LPIS"}, + * summary="Save LPIS", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="identificator", + * type="string", + * example="identificator" + * ), + * @OA\Property( + * property="pa_description", + * type="string", + * example="pa description" + * ), + * @OA\Property( + * property="wkt", + * type="string", + * example="wkt data" + * ), + * @OA\Property( + * property="wgs_geometry", + * type="string", + * example="JSON array of coordinates" + * ), + * @OA\Property( + * property="wgs_max_lat", + * type="number", + * example="21.22" + * ), + * @OA\Property( + * property="wgs_min_lat", + * type="number", + * example="-98.32" + * ), + * @OA\Property( + * property="wgs_max_lng", + * type="number", + * example="3.21" + * ), + * @OA\Property( + * property="wgs_min_lng", + * type="number", + * example="12.01" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_save_lpis(Request $request) + { + try { $request->validate([ 'wgs_geometry' => 'required', 'wgs_max_lat' => 'required', @@ -427,13 +871,13 @@ public function comm_save_lpis(Request $request){ 'wgs_max_lng' => $requestData['wgs_max_lng'], 'wgs_min_lng' => $requestData['wgs_min_lng'] ]); - + return response()->json([ 'status' => 'ok', 'error_msg' => null, 'lpis_id' => $land['id'] ]); - } catch (Exception $e){ + } catch (Exception $e) { return response()->json([ 'status' => 'error', 'error_msg' => $e->getMessage(), @@ -441,19 +885,42 @@ public function comm_save_lpis(Request $request){ } } - public function comm_get_lpis_by_id(Request $request){ + /** + * @OA\Post( + * path="/comm_get_lpis_record", + * security={{"bearerAuth":{}}}, + * tags={"LPIS"}, + * summary="Get a single LPIS record", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="id", + * type="integer", + * example="627847" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_get_lpis_by_id(Request $request) + { $request->validate([ 'id' => 'required', ]); $id = $request->id; $land = Land::find($id); - if($land){ + if ($land) { return response()->json([ 'status' => 'ok', 'error_msg' => null, 'lpis' => $land ]); - }else { + } else { return response()->json([ 'status' => 'error', 'error_msg' => 'Record deleted or record not found' @@ -461,17 +928,55 @@ public function comm_get_lpis_by_id(Request $request){ } } - public function comm_shapes(Request $request){ + /** + * @OA\Post( + * path="/comm_shapes", + * security={{"bearerAuth":{}}}, + * tags={"Shapes"}, + * summary="Get shapes by coordinates", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="max_lat", + * type="number", + * example="1" + * ), + * @OA\Property( + * property="min_lat", + * type="number", + * example="1" + * ), + * @OA\Property( + * property="max_lng", + * type="number", + * example="1" + * ), + * @OA\Property( + * property="min_lng", + * type="number", + * example="1" + * ) + * ) + * ) + * ), + * @OA\Response(response=200, description="Successful response", @OA\JsonContent()), + * ) + */ + public function comm_shapes(Request $request) + { $maxEasting = $request->max_lng; $maxNorthing = $request->max_lat; $minEasting = $request->min_lng; $minNorthing = $request->min_lat; $data = Shape::query() - ->when($minEasting, function ($query) use ($minEasting, $minNorthing,$maxEasting, $maxNorthing) { - $query->whereRaw("wkb_geometry && ST_Transform(ST_MakeEnvelope($minEasting, $minNorthing,$maxEasting, $maxNorthing, 4326), 27700)"); - }) - ->get(); + ->when($minEasting, function ($query) use ($minEasting, $minNorthing, $maxEasting, $maxNorthing) { + $query->whereRaw("wkb_geometry && ST_Transform(ST_MakeEnvelope($minEasting, $minNorthing,$maxEasting, $maxNorthing, 4326), 27700)"); + }) + ->get(); return new ShapeCollection($data); } @@ -487,48 +992,49 @@ public function comm_shapes(Request $request){ public function comm_building_part() { $data = BuildingPart::query() - ->select( - 'osid', - 'toid', - 'versiondate', - 'versionavailablefromdate', - 'versionavailabletodate', - 'firstdigitalcapturedate', - 'changetype', - 'geometry_area', - 'geometry_evidencedate', - 'geometry_updatedate', - 'geometry_source', - 'theme', - 'description', - 'description_evidencedate', - 'description_updatedate', - 'description_source', - 'oslandcovertiera', - 'oslandcovertierb', - 'oslandcover_evidencedate', - 'oslandcover_updatedate', - 'oslandcover_source', - 'oslandusetiera', - 'oslandusetierb', - 'oslanduse_evidencedate', - 'oslanduse_updatedate', - 'oslanduse_source', - 'absoluteheightroofbase', - 'relativeheightroofbase', - 'absoluteheightmaximum', - 'relativeheightmaximum', - 'absoluteheightminimum', - 'heightconfidencelevel', - 'height_evidencedate', - 'height_updatedate', - 'height_source', - 'associatedstructure', - 'isobscured', - 'physicallevel', - 'capturespecification') - ->selectRaw("st_transform(geometry,3857) as geometry_transformed, ST_AsGeoJSON(st_transform(geometry,4326)) as geometry_json") - ->paginate(20); + ->select( + 'osid', + 'toid', + 'versiondate', + 'versionavailablefromdate', + 'versionavailabletodate', + 'firstdigitalcapturedate', + 'changetype', + 'geometry_area', + 'geometry_evidencedate', + 'geometry_updatedate', + 'geometry_source', + 'theme', + 'description', + 'description_evidencedate', + 'description_updatedate', + 'description_source', + 'oslandcovertiera', + 'oslandcovertierb', + 'oslandcover_evidencedate', + 'oslandcover_updatedate', + 'oslandcover_source', + 'oslandusetiera', + 'oslandusetierb', + 'oslanduse_evidencedate', + 'oslanduse_updatedate', + 'oslanduse_source', + 'absoluteheightroofbase', + 'relativeheightroofbase', + 'absoluteheightmaximum', + 'relativeheightmaximum', + 'absoluteheightminimum', + 'heightconfidencelevel', + 'height_evidencedate', + 'height_updatedate', + 'height_source', + 'associatedstructure', + 'isobscured', + 'physicallevel', + 'capturespecification' + ) + ->selectRaw("st_transform(geometry,3857) as geometry_transformed, ST_AsGeoJSON(st_transform(geometry,4326)) as geometry_json") + ->paginate(20); return response()->json([ 'success' => true, @@ -593,51 +1099,52 @@ public function comm_building_part_nearest(Request $request) $imagedirection = $request->imagedirection ?: 9; $data = BuildingPart::query() - ->select( - 'osid', - 'toid', - 'versiondate', - 'versionavailablefromdate', - 'versionavailabletodate', - 'firstdigitalcapturedate', - 'changetype', - 'geometry_area', - 'geometry_evidencedate', - 'geometry_updatedate', - 'geometry_source', - 'theme', - 'description', - 'description_evidencedate', - 'description_updatedate', - 'description_source', - 'oslandcovertiera', - 'oslandcovertierb', - 'oslandcover_evidencedate', - 'oslandcover_updatedate', - 'oslandcover_source', - 'oslandusetiera', - 'oslandusetierb', - 'oslanduse_evidencedate', - 'oslanduse_updatedate', - 'oslanduse_source', - 'absoluteheightroofbase', - 'relativeheightroofbase', - 'absoluteheightmaximum', - 'relativeheightmaximum', - 'absoluteheightminimum', - 'heightconfidencelevel', - 'height_evidencedate', - 'height_updatedate', - 'height_source', - 'associatedstructure', - 'isobscured', - 'physicallevel', - 'capturespecification') - ->selectRaw("st_transform(geometry,3857) as geometry_transformed, ST_AsGeoJSON(st_transform(geometry,4326)) as geometry_json") - ->whereRaw("st_intersects(st_transform(ST_MakeLine(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, ST_SetSRID(ST_Project(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, $distance, radians($imagedirection))::geometry, 4326)::geometry), 3857), st_transform(geometry, 3857))") - ->orderByRaw("st_transform(geometry, 3857) <-> st_transform(ST_MakeLine( ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, ST_SetSRID(ST_Project(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, $distance, radians($imagedirection))::geometry, 4326)::geometry), 3857)") - ->limit(1) - ->get(); + ->select( + 'osid', + 'toid', + 'versiondate', + 'versionavailablefromdate', + 'versionavailabletodate', + 'firstdigitalcapturedate', + 'changetype', + 'geometry_area', + 'geometry_evidencedate', + 'geometry_updatedate', + 'geometry_source', + 'theme', + 'description', + 'description_evidencedate', + 'description_updatedate', + 'description_source', + 'oslandcovertiera', + 'oslandcovertierb', + 'oslandcover_evidencedate', + 'oslandcover_updatedate', + 'oslandcover_source', + 'oslandusetiera', + 'oslandusetierb', + 'oslanduse_evidencedate', + 'oslanduse_updatedate', + 'oslanduse_source', + 'absoluteheightroofbase', + 'relativeheightroofbase', + 'absoluteheightmaximum', + 'relativeheightmaximum', + 'absoluteheightminimum', + 'heightconfidencelevel', + 'height_evidencedate', + 'height_updatedate', + 'height_source', + 'associatedstructure', + 'isobscured', + 'physicallevel', + 'capturespecification' + ) + ->selectRaw("st_transform(geometry,3857) as geometry_transformed, ST_AsGeoJSON(st_transform(geometry,4326)) as geometry_json") + ->whereRaw("st_intersects(st_transform(ST_MakeLine(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, ST_SetSRID(ST_Project(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, $distance, radians($imagedirection))::geometry, 4326)::geometry), 3857), st_transform(geometry, 3857))") + ->orderByRaw("st_transform(geometry, 3857) <-> st_transform(ST_MakeLine( ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, ST_SetSRID(ST_Project(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, $distance, radians($imagedirection))::geometry, 4326)::geometry), 3857)") + ->limit(1) + ->get(); return response()->json([ 'success' => true, @@ -646,6 +1153,246 @@ public function comm_building_part_nearest(Request $request) ], 200); } + /** + * @OA\Get( + * path="/comm_osm_building_part_nearest", + * security={{"bearerAuth":{}}}, + * tags={"OSM Building Part"}, + * @OA\Parameter( + * name="latitude", + * in="query", + * required=true, + * @OA\Schema(type="number", format="float") + * ), + * @OA\Parameter( + * name="longitude", + * in="query", + * required=true, + * @OA\Schema(type="number", format="float") + * ), + * @OA\Parameter( + * name="distance", + * in="query", + * required=false, + * @OA\Schema(type="number", format="float", default=10) + * ), + * @OA\Parameter( + * name="imagedirection", + * in="query", + * required=false, + * @OA\Schema(type="number", format="float", default=9) + * ), + * @OA\Response( + * response=200, + * description="Successful response", + * @OA\JsonContent( + * @OA\Property(property="success", type="boolean", example=true), + * @OA\Property(property="http_code", type="integer", example=200), + * @OA\Property(property="data", type="object", + * @OA\Property(property="building_part", type="array", @OA\Items(type="object")) + * ) + * ) + * ), + * ) + */ + public function comm_osm_building_part_nearest(Request $request) + { + $latitude = $request->latitude; + $longitude = $request->longitude; + $distance = $request->distance ?: 10; + $imagedirection = $request->imagedirection ?: 9; + + try { + $data = OsmBuildingPart::query() + ->select([ + 'id', + 'source', + 'osm_id', + 'name', + 'ref_gb_uprn', + 'base_shape', + 'base_direction', + 'base_orientation', + 'base_height_m', + 'base_levels', + 'base_colour', + 'base_material', + 'base_angle_deg', + 'building', + 'building_part', + 'building_levels', + 'building_min_level', + 'building_levels_underground', + 'roof_levels', + 'roof_shape', + 'height_m', + 'min_height_m', + 'roof_height_m', + 'levels', + 'min_level', + 'building_reference_number', + 'tenure', + 'construction_age_band', + 'transaction_type' + ]) + ->selectRaw("ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry_json") + ->where('building_part', 'yes') + ->whereRaw("st_intersects(st_transform(ST_MakeLine(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, ST_SetSRID(ST_Project(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, $distance, radians($imagedirection))::geometry, 4326)::geometry), 3857), st_transform(geom, 3857))") + ->orderByRaw("st_transform(geom, 3857) <-> st_transform(ST_MakeLine( ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, ST_SetSRID(ST_Project(ST_SetSRID(ST_MakePoint($longitude, $latitude), 4326)::geometry, $distance, radians($imagedirection))::geometry, 4326)::geometry), 3857)") + ->get(); + + // Transform data to match expected format + $transformedData = $data->map(function ($item) { + return [ + 'id' => $item->id, + 'osm_id' => $item->osm_id, + 'name' => $item->name, + 'source' => $item->source, + 'ref_gb_uprn' => $item->ref_gb_uprn, + 'geojson' => [ + 'type' => 'FeatureCollection', + 'features' => [ + [ + 'type' => 'Feature', + 'id' => $item->id, + 'geometry' => json_decode($item->geometry_json), + 'properties' => [ + 'osm_id' => $item->osm_id, + 'name' => $item->name, + 'source' => $item->source, + 'ref_gb_uprn' => $item->ref_gb_uprn, + 'base_shape' => $item->base_shape, + 'base_direction' => $item->base_direction, + 'base_orientation' => $item->base_orientation, + 'base_height_m' => $item->base_height_m, + 'base_levels' => $item->base_levels, + 'base_colour' => $item->base_colour, + 'base_material' => $item->base_material, + 'base_angle_deg' => $item->base_angle_deg, + 'building' => $item->building, + 'building_part' => $item->building_part, + 'building_levels' => $item->building_levels, + 'building_min_level' => $item->building_min_level, + 'building_levels_underground' => $item->building_levels_underground, + 'roof_levels' => $item->roof_levels, + 'roof_shape' => $item->roof_shape, + 'height_m' => $item->height_m, + 'min_height_m' => $item->min_height_m, + 'roof_height_m' => $item->roof_height_m, + 'levels' => $item->levels, + 'min_level' => $item->min_level, + 'building_reference_number' => $item->building_reference_number, + 'tenure' => $item->tenure, + 'construction_age_band' => $item->construction_age_band, + 'transaction_type' => $item->transaction_type, + // Map OSM fields to legacy format for compatibility + 'relativeheightmaximum' => $item->height_m ?: $item->roof_height_m, + 'relativeheightroofbase' => $item->min_height_m ?: 0, + 'absoluteheightmaximum' => $item->height_m ?: $item->roof_height_m, + 'absoluteheightminimum' => $item->min_height_m + ] + ] + ] + ] + ]; + }); + + return response()->json([ + 'success' => true, + 'http_code' => 200, + 'data' => ['building_part' => $transformedData] + ], 200); + } catch (Exception $e) { + Log::error('OSM Building Part Nearest Error: ' . $e->getMessage()); + + return response()->json([ + 'success' => false, + 'http_code' => 500, + 'message' => 'Error fetching OSM building part data', + 'error' => $e->getMessage() + ], 500); + } + } + + /** + * @OA\Get( + * path="/comm_codepoint", + * security={{"bearerAuth":{}}}, + * tags={"Codepoint"}, + * @OA\Parameter( + * name="postcode", + * in="query", + * required=false, + * @OA\Schema( + * type="string" + * ), + * example="BA1 0AH", + * ), + * @OA\Parameter( + * name="page", + * in="query", + * required=false, + * @OA\Schema( + * type="string" + * ) + * ), + * @OA\Parameter( + * name="min_lng", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="min_lat", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="max_lng", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="max_lat", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="lng", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="lat", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Response(response=200, description="List of codepoint", @OA\JsonContent()), + * ) + */ public function comm_codepoint(Request $request) { $postcode = $request->query('postcode'); @@ -653,20 +1400,43 @@ public function comm_codepoint(Request $request) $min_lat = $request->query('min_lat'); $max_lng = $request->query('max_lng'); $max_lat = $request->query('max_lat'); - + $lng = $request->query('lng'); + $lat = $request->query('lat'); + + // If lng and lat are provided, return only the nearest codepoint (optimized) + if ($lng && $lat) { + // Transform input point to match database SRID (27700) + $nearest = Codepoint::query() + ->selectRaw('*, ST_Distance(ST_Transform(geometry, 4326)::geography, ST_SetSRID(ST_MakePoint(?, ?), 4326)::geography) as distance', [$lng, $lat]) + ->orderByRaw('ST_Transform(geometry, 4326) <-> ST_SetSRID(ST_MakePoint(?, ?), 4326)', [$lng, $lat]) + ->limit(1) + ->first(); + + if ($nearest) { + return response()->json([ + 'data' => new CodepointFeatureResource($nearest) + ]); + } + + return response()->json(['data' => null]); + } + + // Original behavior for postcode search or bounding box $query = Codepoint::query(); - + if ($postcode) { - $query->where('postcode', 'ILIKE', '%'.$postcode.'%'); + $query->where('postcode', 'ILIKE', '%' . $postcode . '%'); } - + if ($min_lng && $min_lat && $max_lng && $max_lat) { - $query->whereRaw("ST_Intersects(geometry, ST_Transform(ST_MakeEnvelope(?, ?, ?, ?, 4326), ST_SRID(geometry)))", - [$min_lng, $min_lat, $max_lng, $max_lat]); + $query->whereRaw( + "ST_Intersects(geometry, ST_Transform(ST_MakeEnvelope(?, ?, ?, ?, 4326), ST_SRID(geometry)))", + [$min_lng, $min_lat, $max_lng, $max_lat] + ); } - + $data = $query->paginate(100); - + $data->appends([ 'postcode' => $postcode, 'min_lng' => $min_lng, @@ -674,7 +1444,7 @@ public function comm_codepoint(Request $request) 'max_lng' => $max_lng, 'max_lat' => $max_lat ]); - + return new CodepointCollection($data); } @@ -710,20 +1480,42 @@ public function comm_uprn(Request $request) $min_lat = $request->query('min_lat'); $max_lng = $request->query('max_lng'); $max_lat = $request->query('max_lat'); - + $lng = $request->query('lng'); + $lat = $request->query('lat'); + + // If lng and lat are provided, return only the nearest UPRN (optimized) + if ($lng && $lat) { + $nearest = Uprn::query() + ->selectRaw('*, ST_Distance(ST_Transform(geom, 4326)::geography, ST_SetSRID(ST_MakePoint(?, ?), 4326)::geography) as distance', [$lng, $lat]) + ->orderByRaw('ST_Transform(geom, 4326) <-> ST_SetSRID(ST_MakePoint(?, ?), 4326)', [$lng, $lat]) + ->limit(1) + ->first(); + + if ($nearest) { + return response()->json([ + 'data' => new UprnFeatureResource($nearest) + ]); + } + + return response()->json(['data' => null]); + } + + // Original behavior for uprn search or bounding box $query = Uprn::query(); - + if ($uprn) { $query->where('uprn', $uprn); } - + if ($min_lng && $min_lat && $max_lng && $max_lat) { - $query->whereRaw("ST_Intersects(geom, ST_Transform(ST_MakeEnvelope(?, ?, ?, ?, 4326), ST_SRID(geom)))", - [$min_lng, $min_lat, $max_lng, $max_lat]); + $query->whereRaw( + "ST_Intersects(geom, ST_Transform(ST_MakeEnvelope(?, ?, ?, ?, 4326), ST_SRID(geom)))", + [$min_lng, $min_lat, $max_lng, $max_lat] + ); } - + $data = $query->paginate(100); - + $data->appends([ 'uprn' => $uprn, 'min_lng' => $min_lng, @@ -735,6 +1527,34 @@ public function comm_uprn(Request $request) return new UprnCollection($data); } + /** + * @OA\Get( + * path="/comm_nhle", + * security={{"bearerAuth":{}}}, + * tags={"NHLE"}, + * @OA\Parameter( + * name="latitude", + * in="query", + * required=true, + * @OA\Schema( + * type="number", + * format="double" + * ), + * example="51.5074" + * ), + * @OA\Parameter( + * name="longitude", + * in="query", + * required=true, + * @OA\Schema( + * type="number", + * format="double" + * ), + * example="-0.1278" + * ), + * @OA\Response(response=200, description="List of NHLE data", @OA\JsonContent()), + * ) + */ public function comm_nhle(Request $request) { $request->validate([ @@ -745,18 +1565,19 @@ public function comm_nhle(Request $request) $longitude = $request->query('longitude'); $distance = $request->query('distance') ?: 5; $imagedirection = $request->query('imagedirection') ?: 9; - + $query = NHLE::query(); - + if ($latitude && $longitude) { // Calculate target point based on direction $radians = deg2rad($imagedirection); $targetLng = $longitude + (sin($radians) * $distance * 0.00001); $targetLat = $latitude + (cos($radians) * $distance * 0.00001); - + // Using buffer to create a corridor for intersection $query - ->whereRaw("ST_Intersects( + ->whereRaw( + "ST_Intersects( geom, ST_Transform( ST_SetSRID( @@ -772,12 +1593,16 @@ public function comm_nhle(Request $request) ST_SRID(geom) ) )", - [ - $longitude, $latitude, - $targetLng, $targetLat - ]) + [ + $longitude, + $latitude, + $targetLng, + $targetLat + ] + ) // Just order by the direction the user is facing - ->orderByRaw(" + ->orderByRaw( + " ST_Distance( geom, ST_Transform( @@ -786,16 +1611,70 @@ public function comm_nhle(Request $request) ) ) ASC ", - [ - $targetLng, $targetLat - ]); + [ + $targetLng, + $targetLat + ] + ); } - + $data = $query->limit(1)->get(); - + return new NhleCollection($data); } + /** + * @OA\Get( + * path="/comm_land_registry_inspire", + * security={{"bearerAuth":{}}}, + * tags={"Land Registry"}, + * @OA\Parameter( + * name="inspire_id", + * in="query", + * required=false, + * @OA\Schema( + * type="string" + * ) + * ), + * @OA\Parameter( + * name="min_lng", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="min_lat", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="max_lng", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Parameter( + * name="max_lat", + * in="query", + * required=false, + * @OA\Schema( + * type="number", + * format="double" + * ) + * ), + * @OA\Response(response=200, description="List of land registry inspire data", @OA\JsonContent()), + * ) + */ public function comm_land_registry_inspire(Request $request) { $inspire_id = $request->query('inspire_id'); @@ -803,20 +1682,22 @@ public function comm_land_registry_inspire(Request $request) $min_lat = $request->query('min_lat'); $max_lng = $request->query('max_lng'); $max_lat = $request->query('max_lat'); - + $query = LandRegistryInspire::query(); - + if ($inspire_id) { $query->where('INSPIREID', $inspire_id); } - + if ($min_lng && $min_lat && $max_lng && $max_lat) { - $query->whereRaw("ST_Intersects(geom, ST_Transform(ST_MakeEnvelope(?, ?, ?, ?, 4326), ST_SRID(geom)))", - [$min_lng, $min_lat, $max_lng, $max_lat]); + $query->whereRaw( + "ST_Intersects(geom, ST_Transform(ST_MakeEnvelope(?, ?, ?, ?, 4326), ST_SRID(geom)))", + [$min_lng, $min_lat, $max_lng, $max_lat] + ); } - + $data = $query->paginate(100); - + $data->appends([ 'inspire_id' => $inspire_id, 'min_lng' => $min_lng, @@ -827,4 +1708,208 @@ public function comm_land_registry_inspire(Request $request) return new LandRegistryInspireCollection($data); } + + /** + * @OA\Get( + * path="/comm_get_building_attributes", + * security={{"bearerAuth":{}}}, + * tags={"Building Attributes"}, + * @OA\Parameter( + * name="osid", + * in="query", + * required=true, + * @OA\Schema( + * type="string" + * ), + * example="12345" + * ), + * @OA\Response(response=200, description="Building attributes data", @OA\JsonContent()), + * ) + */ + public function comm_get_building_attributes(Request $request) + { + $osid = $request->osid; + + // Single optimized query with join and eager loading + $building = Building::whereHas('buildingPartLinks', function ($query) use ($osid) { + $query->where('buildingpartid', $osid); + }) + ->with('buildingAddresses.uprn') + ->get(); + + if ($building->isEmpty()) { + return response()->json([ + 'success' => false, + 'message' => 'Building not found for the given buildingpartid' + ], 404); + } + + return new BuildingCollection($building); + } + /** + * @OA\Post( + * path="/comm_builtup_area", + * security={{"bearerAuth":{}}}, + * tags={"BuiltupArea"}, + * summary="Get all built-up areas", + * description="Retrieves all built-up areas from the ONS BUA dataset as GeoJSON features", + * @OA\Response( + * response=200, + * description="Successful response", + * @OA\JsonContent( + * @OA\Property( + * property="shapes", + * type="object", + * description="GeoJSON FeatureCollection containing built-up area data" + * ) + * ) + * ) + * ) + */ + public function comm_builtup_area(Request $request) + { + return new StreamedResponse(function () { + echo '{"shapes":['; // start JSON array + $first = true; + + DB::table('ons_bua') + ->select( + 'fid', + 'objectid_1', + 'gsscode', + 'bua24cd', + 'bua24nm', + 'bua24nmw', + 'geometry_a', + 'areahectar', + 'globalid', + DB::raw('public.ST_AsGeoJSON(st_transform(geometry, 4326)) as geometry') + ) + ->orderBy('fid') + ->chunk(500, function ($rows) use (&$first) { + foreach ($rows as $row) { + if (!$first) echo ','; + $first = false; + echo json_encode($row); + flush(); // push data immediately + } + }); + + echo ']}'; // end JSON array + }, 200, [ + 'Content-Type' => 'application/json', + ]); + } + /** + * @OA\Post( + * path="/comm_get_area", + * security={{"bearerAuth":{}}}, + * tags={"Area"}, + * summary="Get buildings and center point for specified areas", + * description="Retrieves buildings that intersect with the specified built-up area IDs and calculates the center point of the areas", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="application/json", + * @OA\Schema( + * @OA\Property( + * property="area_ids", + * type="array", + * @OA\Items(type="integer"), + * example={1, 2, 3}, + * description="Array of built-up area IDs to filter buildings" + * ), + * @OA\Property( + * property="include_bua_filter", + * type="boolean", + * example=true, + * description="Whether to include built-up area filtering" + * ) + * ) + * ) + * ), + * @OA\Response( + * response=200, + * description="Successful response", + * @OA\JsonContent( + * @OA\Property( + * property="buildings", + * type="object", + * description="GeoJSON FeatureCollection containing building data" + * ), + * @OA\Property( + * property="center", + * type="object", + * description="Center point coordinates of the specified areas" + * ) + * ) + * ) + * ) + */ + public function comm_get_area(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + + if (!is_array($areaIds)) { + if (is_string($areaIds) && str_starts_with($areaIds, '[')) { + $areaIds = json_decode($areaIds, true); + } else { + $areaIds = [$areaIds]; + } + } + + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + + // Fetch buildings + $buildings = collect(); + $buildingQuery = Building::query(); + + if (!empty($areaIds)) { + $builtupAreaGeometriesQuery = BuiltupArea::query() + ->whereIn('fid', $areaIds) + ->select('geometry'); + + $buildingQuery->whereExists(function ($query) use ($builtupAreaGeometriesQuery) { + $query->select(DB::raw(1)) + ->fromSub($builtupAreaGeometriesQuery, 's') + ->whereRaw('ST_INTERSECTS(bld_fts_building.geometry, s.geometry)'); + }); + } + + $buildingQuery + ->with('sites', 'buildingAddresses') + ->chunk(2000, function ($chunk) use (&$buildings) { + $buildings = $buildings->merge($chunk); + }); + + // Calculate center point + $center = null; + if (!empty($areaIds)) { + $centerData = DB::table('ons_bua') + ->select(DB::raw('ST_AsGeoJSON(ST_Transform(ST_Centroid(ST_Collect(geometry)), 4326)) as center')) + ->whereIn('fid', $areaIds) + ->first(); + + if ($centerData && $centerData->center) { + $center = json_decode($centerData->center); + } + } + + // Prepare response + $responseData = [ + 'buildings' => new BuildingCollectionV4($buildings), + 'center' => $center, + ]; + + Log::info('getArea response prepared', [ + 'buildings_count' => $buildings->count(), + 'has_center' => !is_null($center) + ]); + + return response()->json($responseData); + } } diff --git a/app/Http/Controllers/BuildingAttributesController.php b/app/Http/Controllers/BuildingAttributesController.php new file mode 100644 index 00000000..31cd2c87 --- /dev/null +++ b/app/Http/Controllers/BuildingAttributesController.php @@ -0,0 +1,24 @@ +id); + return Inertia::render('BuildingAttributes/Index',compact('photos')); + } + + public function index_2() + { + $user = Auth::user(); + $photos = getPhotosWithoutTask($user->id); + return Inertia::render('BuildingAttributes/Index_2',compact('photos')); + } +} diff --git a/app/Http/Controllers/BuildingHeightController.php b/app/Http/Controllers/BuildingHeightController.php new file mode 100644 index 00000000..1424074a --- /dev/null +++ b/app/Http/Controllers/BuildingHeightController.php @@ -0,0 +1,36 @@ +id); + return Inertia::render('BuildingHeight/Index',compact('photos')); + } + + public function lazFiles(){ + $path = public_path('laz'); + + if (!File::exists($path)) { + return response()->json(['error' => 'Directory not found'], 404); + } + + $files = File::files($path); + + $fileList = array_map(function ($file) { + return [ + 'name' => $file->getFilename(), + ]; + }, $files); + + return response()->json($fileList, 200, ['Content-Type' => 'application/json']); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php index f716fcb1..232bd63b 100644 --- a/app/Http/Controllers/Controller.php +++ b/app/Http/Controllers/Controller.php @@ -16,6 +16,66 @@ * bearerFormat="JWT", * securityScheme="bearerAuth", * ) + * @OA\Tag( + * name="Authorization", + * description="Authentication endpoints" + * ) + * @OA\Tag( + * name="Photos", + * description="Photo management endpoints" + * ) + * @OA\Tag( + * name="BuiltupArea", + * description="Built-up area data endpoints" + * ) + * @OA\Tag( + * name="Area", + * description="Area and building data endpoints" + * ) + * @OA\Tag( + * name="Tasks", + * description="Task management endpoints" + * ) + * @OA\Tag( + * name="Paths", + * description="Path tracking endpoints" + * ) + * @OA\Tag( + * name="Shapes", + * description="Shape data endpoints" + * ) + * @OA\Tag( + * name="LPIS", + * description="LPIS data endpoints" + * ) + * @OA\Tag( + * name="Building Part", + * description="Building part data endpoints" + * ) + * @OA\Tag( + * name="OSM Building Part", + * description="OSM building part data endpoints" + * ) + * @OA\Tag( + * name="Codepoint", + * description="Codepoint data endpoints" + * ) + * @OA\Tag( + * name="UPRN", + * description="UPRN address endpoints" + * ) + * @OA\Tag( + * name="NHLE", + * description="NHLE data endpoints" + * ) + * @OA\Tag( + * name="Land Registry", + * description="Land registry data endpoints" + * ) + * @OA\Tag( + * name="Building Attributes", + * description="Building attributes endpoints" + * ) */ abstract class Controller diff --git a/app/Http/Controllers/DataMapController.php b/app/Http/Controllers/DataMapController.php new file mode 100644 index 00000000..cc652604 --- /dev/null +++ b/app/Http/Controllers/DataMapController.php @@ -0,0 +1,3340 @@ + null, + 'buildings' => ['data' => ['type' => 'FeatureCollection', 'features' => []]], + 'buildingParts' => ['data' => ['type' => 'FeatureCollection', 'features' => []]], + 'sites' => ['data' => ['type' => 'FeatureCollection', 'features' => []]], + 'nhle' => [], + 'photos' => ['type' => 'FeatureCollection', 'features' => []], + 'center' => null, + 'uprn' => ['data' => ['type' => 'FeatureCollection', 'features' => []]] + ]); + } + public function getBuiltupArea(Request $request) + { + $BuiltupAreas = BuiltupArea::query()->get(); + + return response()->json([ + 'shapes' => new BuiltupAreaCollection($BuiltupAreas) + ]); + } + + + public function getArea(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + + if (!is_array($areaIds)) { + if (is_string($areaIds) && str_starts_with($areaIds, '[')) { + $areaIds = json_decode($areaIds, true); + } else { + $areaIds = [$areaIds]; + } + } + + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + + // Fetch buildings + $buildings = collect(); + $buildingQuery = Building::query(); + + if (!empty($areaIds)) { + $builtupAreaGeometriesQuery = BuiltupArea::query() + ->whereIn('fid', $areaIds) + ->select('geometry'); + + $buildingQuery->whereExists(function ($query) use ($builtupAreaGeometriesQuery) { + $query->select(DB::raw(1)) + ->fromSub($builtupAreaGeometriesQuery, 's') + ->whereRaw('ST_INTERSECTS(bld_fts_building.geometry, s.geometry)'); + }); + } + + $buildingQuery + ->with('sites', 'buildingAddresses') + ->chunk(2000, function ($chunk) use (&$buildings) { + $buildings = $buildings->merge($chunk); + }); + + // Calculate center point + $center = null; + if (!empty($areaIds)) { + $centerData = DB::table('ons_bua') + ->select(DB::raw('ST_AsGeoJSON(ST_Transform(ST_Centroid(ST_Collect(geometry)), 4326)) as center')) + ->whereIn('fid', $areaIds) + ->first(); + + if ($centerData && $centerData->center) { + $center = json_decode($centerData->center); + } + } + + // Prepare response + $responseData = [ + 'buildings' => new BuildingCollectionV4($buildings), + 'center' => $center, + ]; + + Log::info('getArea response prepared', [ + 'buildings_count' => $buildings->count(), + 'has_center' => !is_null($center) + ]); + + return response()->json($responseData); + } + + /** + * Stream NHLE data in chunks + */ + public function streamNHLEData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + + if (!is_array($areaIds)) { + if (is_string($areaIds) && str_starts_with($areaIds, '[')) { + $areaIds = json_decode($areaIds, true); + } else { + $areaIds = [$areaIds]; + } + } + + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 50); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 120000'); + + // Build query + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + $query = " + SELECT + n.gid, + n.objectid, + n.listentry, + n.name, + n.grade, + n.listdate, + n.amenddate, + n.capturesca, + n.hyperlink, + n.ngr, + n.easting, + n.northing, + n.latitude, + n.longitude, + ST_AsGeoJSON(ST_Transform(n.geom, 4326)) as geometry + FROM nhle_ n + WHERE EXISTS ( + SELECT 1 FROM ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_INTERSECTS(n.geom, b.geometry) + ) + "; + } else { + $query = " + SELECT + n.gid, + n.objectid, + n.listentry, + n.name, + n.grade, + n.listdate, + n.amenddate, + n.capturesca, + n.hyperlink, + n.ngr, + n.easting, + n.northing, + n.latitude, + n.longitude, + ST_AsGeoJSON(ST_Transform(n.geom, 4326)) as geometry + FROM nhle_ n + "; + } + + $results = DB::select($query); + $totalCount = count($results); + $chunks = array_chunk($results, $chunkSize); + $totalChunks = count($chunks); + + // Send metadata + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + // Stream chunks + foreach ($chunks as $chunkIndex => $chunk) { + $nhleChunk = []; + + foreach ($chunk as $row) { + if (!empty($row->geometry)) { + $nhleModel = new NHLE(); + $nhleModel->gid = $row->gid; + $nhleModel->objectid = $row->objectid; + $nhleModel->listentry = $row->listentry; + $nhleModel->name = $row->name; + $nhleModel->grade = $row->grade; + $nhleModel->listdate = $row->listdate; + $nhleModel->amenddate = $row->amenddate; + $nhleModel->capturesca = $row->capturesca; + $nhleModel->hyperlink = $row->hyperlink; + $nhleModel->ngr = $row->ngr; + $nhleModel->easting = $row->easting; + $nhleModel->northing = $row->northing; + $nhleModel->latitude = $row->latitude; + $nhleModel->longitude = $row->longitude; + $nhleModel->geom = json_decode($row->geometry); + $nhleChunk[] = $nhleModel; + } + } + + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $nhleChunk, + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + usleep(10000); // 10ms + } + + // Send complete + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream Building Parts data in chunks + */ + public function streamBuildingPartsData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + $query = BuildingPartV2::query(); + + if ($includeBuaFilter && !empty($areaIds)) { + $builtupAreaGeometriesQuery = BuiltupArea::query() + ->whereIn('fid', $areaIds) + ->select('geometry'); + + $query->whereExists(function ($q) use ($builtupAreaGeometriesQuery) { + $q->select(DB::raw(1)) + ->fromSub($builtupAreaGeometriesQuery, 's') + ->whereRaw('ST_INTERSECTS(bld_fts_buildingpart_v2.geometry, s.geometry)'); + }); + } + + $totalCount = $query->count(); + $totalChunks = ceil($totalCount / $chunkSize); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + $query->with('buildingPartSiteRefs') + ->chunk($chunkSize, function ($buildingParts) use (&$chunkIndex, $totalChunks) { + $collection = new BuildingPartCollectionV2($buildingParts); + $data = $collection->toArray(request()); + + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $data, + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + }); + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream Land Registry data in chunks + */ + public function streamLandRegistryData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 120000'); + + $landRegistryFeatures = collect(); + + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + + $bbox = DB::table('ons_bua') + ->selectRaw(' + ST_XMin(ST_Transform(ST_SetSRID(ST_Extent(geometry), 27700), 4326)) as min_lng, + ST_YMin(ST_Transform(ST_SetSRID(ST_Extent(geometry), 27700), 4326)) as min_lat, + ST_XMax(ST_Transform(ST_SetSRID(ST_Extent(geometry), 27700), 4326)) as max_lng, + ST_YMax(ST_Transform(ST_SetSRID(ST_Extent(geometry), 27700), 4326)) as max_lat + ') + ->whereIn('fid', $areaIds) + ->first(); + + if ($bbox && $bbox->min_lng && $bbox->min_lat && $bbox->max_lng && $bbox->max_lat) { + $expandedBbox = [ + 'min_lng' => $bbox->min_lng - 0.01, + 'min_lat' => $bbox->min_lat - 0.01, + 'max_lng' => $bbox->max_lng + 0.01, + 'max_lat' => $bbox->max_lat + 0.01 + ]; + + $results = DB::select(" + SELECT + lri.gml_id, + lri.\"INSPIREID\" as inspireid, + lri.\"LABEL\" as label, + lri.\"NATIONALCADASTRALREFERENCE\" as nationalcadastralreference, + lri.\"VALIDFROM\" as validfrom, + lri.\"BEGINLIFESPANVERSION\" as beginlifespanversion, + ST_AsGeoJSON(lri.geom) as geometry, + GeometryType(lri.geom) as geom_type + FROM land_registry_inspire lri + WHERE lri.geom && ST_MakeEnvelope(?, ?, ?, ?, 4326) + AND EXISTS ( + SELECT 1 FROM nhle_ n, ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_INTERSECTS(n.geom, b.geometry) + AND ST_INTERSECTS(ST_Transform(n.geom, 4326), lri.geom) + ) + ", [ + $expandedBbox['min_lng'], + $expandedBbox['min_lat'], + $expandedBbox['max_lng'], + $expandedBbox['max_lat'] + ]); + + $seenGmlIds = []; + foreach ($results as $row) { + if (!empty($row->geometry) && !in_array($row->gml_id, $seenGmlIds)) { + $seenGmlIds[] = $row->gml_id; + $geometry = json_decode($row->geometry, true); + $landRegistryFeatures->push([ + 'type' => 'Feature', + 'geometry' => $geometry, + 'properties' => [ + 'gml_id' => $row->gml_id, + 'INSPIREID' => $row->inspireid, + 'LABEL' => $row->label, + 'NATIONALCADASTRALREFERENCE' => $row->nationalcadastralreference, + 'VALIDFROM' => $row->validfrom, + 'BEGINLIFESPANVERSION' => $row->beginlifespanversion, + ] + ]); + } + } + } + } + + $totalCount = $landRegistryFeatures->count(); + $chunks = $landRegistryFeatures->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream Sites data in chunks + */ + public function streamSitesData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 120000'); + + $sites = collect(); + + // Build the builtup area geometries query if needed + $builtupAreaGeometriesQuery = null; + if ($includeBuaFilter && !empty($areaIds)) { + $builtupAreaGeometriesQuery = DB::table('ons_bua') + ->select('geometry') + ->whereIn('fid', $areaIds); + } + + $query = Site::query(); + + if ($includeBuaFilter && $builtupAreaGeometriesQuery !== null) { + $query->whereExists(function ($query) use ($builtupAreaGeometriesQuery) { + $query->select(DB::raw(1)) + ->fromSub($builtupAreaGeometriesQuery, 's') + ->whereRaw('ST_INTERSECTS(lus_fts_site.geometry, s.geometry)'); + }); + } + + $query->with(['buildings', 'buildingPartSiteRefs']) + ->chunk(2000, function ($chunk) use (&$sites) { + $sites = $sites->merge($chunk); + }); + + // Convert to resource collection + $siteCollection = new SiteCollection($sites); + $sitesArray = $siteCollection->toArray(request()); + $sitesData = collect($sitesArray['features'] ?? []); + + $totalCount = $sitesData->count(); + $chunks = $sitesData->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream Photos data in chunks + */ + public function streamPhotosData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 20); // Smaller default for photos (they have more data per item) + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 120000'); + + // Build the builtup area geometries query if needed + $builtupAreaGeometriesQuery = null; + if ($includeBuaFilter && !empty($areaIds)) { + $builtupAreaGeometriesQuery = DB::table('ons_bua') + ->select('geometry') + ->whereIn('fid', $areaIds); + } + + $users = collect(); + User::query() + ->join('user_role as ur', 'user.id', '=', 'ur.user_id') + ->select('user.id', 'user.login', 'user.name', 'user.surname', 'user.identification_number', 'user.vat', 'user.email') + ->where('ur.role_id', '=', User::FARMER_ROLE) + ->where('user.active', '=', 1) + ->where('user.pa_id', '=', Auth::user()->pa_id) + ->with(['photos' => function ($query) use ($builtupAreaGeometriesQuery, $includeBuaFilter) { + $query->where('flg_deleted', 0); + + if ($includeBuaFilter && $builtupAreaGeometriesQuery !== null) { + $query->whereExists(function ($subQuery) use ($builtupAreaGeometriesQuery) { + $subQuery->select(DB::raw(1)) + ->fromSub($builtupAreaGeometriesQuery, 's') + ->whereRaw('ST_INTERSECTS(ST_Transform(ST_SetSRID(ST_MakePoint(photo.lng, photo.lat), 4326), 27700), s.geometry)'); + }); + } + }]) + ->chunk(2000, function ($chunk) use (&$users) { + $users = $users->merge($chunk); + }); + + $users = $users->filter(function ($user) { + return $user->photos->isNotEmpty(); + }); + + $photos = collect(); + foreach ($users as $user) { + foreach ($user->photos as $photo) { + $photo->user_name = $user->name; + $photo->link = $photo->link; + $photos->push($photo); + } + } + + // Convert to resource collection + $photoCollection = new DataMapPhotoCollection($photos); + $photosArray = $photoCollection->toArray(request()); + $photosData = collect($photosArray['features'] ?? []); + + $totalCount = $photosData->count(); + $chunks = $photosData->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream UPRN data in chunks + */ + public function streamUPRNData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 180000'); // 3 minutes + + $uprnFeatures = collect(); + + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + + // Use CTE with window function for better performance + $uprnResults = DB::select(" + WITH filtered_uprn AS ( + SELECT u.uprn, u.geom + FROM osopenuprn_address u + WHERE u.geom IS NOT NULL + AND EXISTS ( + SELECT 1 FROM ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_Intersects(u.geom, b.geometry) + ) + ), + latest_epc AS ( + SELECT DISTINCT ON (uprn) + uprn::bigint, + floor_level, property_type, built_form, current_energy_rating, + potential_energy_rating, current_energy_efficiency, potential_energy_efficiency, + total_floor_area, construction_age_band, lodgement_date, transaction_type, tenure + FROM epc_certificate + WHERE uprn::bigint IN (SELECT uprn FROM filtered_uprn) + ORDER BY uprn, lodgement_date DESC NULLS LAST + ) + SELECT + u.uprn, + ST_AsGeoJSON(ST_Transform(u.geom, 4326)) as geom, + e.floor_level, e.property_type, e.built_form, e.current_energy_rating, + e.potential_energy_rating, e.current_energy_efficiency, e.potential_energy_efficiency, + e.total_floor_area, e.construction_age_band, e.lodgement_date, e.transaction_type, e.tenure + FROM filtered_uprn u + LEFT JOIN latest_epc e ON e.uprn = u.uprn + "); + } else { + $uprnResults = DB::select(" + WITH filtered_uprn AS ( + SELECT u.uprn, u.geom + FROM osopenuprn_address u + WHERE u.geom IS NOT NULL + LIMIT 5000 + ), + latest_epc AS ( + SELECT DISTINCT ON (uprn) + uprn::bigint, + floor_level, property_type, built_form, current_energy_rating, + potential_energy_rating, current_energy_efficiency, potential_energy_efficiency, + total_floor_area, construction_age_band, lodgement_date, transaction_type, tenure + FROM epc_certificate + WHERE uprn::bigint IN (SELECT uprn FROM filtered_uprn) + ORDER BY uprn, lodgement_date DESC NULLS LAST + ) + SELECT + u.uprn, + ST_AsGeoJSON(ST_Transform(u.geom, 4326)) as geom, + e.floor_level, e.property_type, e.built_form, e.current_energy_rating, + e.potential_energy_rating, e.current_energy_efficiency, e.potential_energy_efficiency, + e.total_floor_area, e.construction_age_band, e.lodgement_date, e.transaction_type, e.tenure + FROM filtered_uprn u + LEFT JOIN latest_epc e ON e.uprn = u.uprn + "); + } + + foreach ($uprnResults as $row) { + if (!empty($row->geom)) { + $properties = [ + 'id' => (int)$row->uprn, + 'uprn' => (int)$row->uprn, + ]; + + // Add EPC data if exists + if ($row->property_type !== null) { + $properties = array_merge($properties, [ + 'floor_level' => $row->floor_level, + 'property_type' => $row->property_type, + 'built_form' => $row->built_form, + 'current_energy_rating' => $row->current_energy_rating, + 'potential_energy_rating' => $row->potential_energy_rating, + 'current_energy_efficiency' => $row->current_energy_efficiency, + 'potential_energy_efficiency' => $row->potential_energy_efficiency, + 'total_floor_area' => $row->total_floor_area, + 'construction_age_band' => $row->construction_age_band, + 'lodgement_date' => $row->lodgement_date, + 'transaction_type' => $row->transaction_type, + 'tenure' => $row->tenure, + ]); + } + + $uprnFeatures->push([ + 'type' => 'Feature', + 'geometry' => json_decode($row->geom, true), + 'properties' => $properties + ]); + } + } + + $totalCount = $uprnFeatures->count(); + $chunks = $uprnFeatures->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream EPC Certificates data in chunks + */ + public function streamEPCCertificatesData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 180000'); // 3 minutes + + $epcCertificates = collect(); + + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + + $epcResults = DB::select(" + SELECT + e.id, e.lmk_key, e.building_reference_number, e.current_energy_rating, + e.potential_energy_rating, e.property_type, e.built_form, e.inspection_date, + e.local_authority, e.lodgement_date, e.transaction_type, e.total_floor_area, + e.co2_emissions_current, e.energy_consumption_current, e.uprn, + ST_AsGeoJSON(ST_Transform(u.geom, 4326)) as geometry + FROM epc_certificate e + LEFT JOIN osopenuprn_address u ON e.uprn::bigint = u.uprn + AND EXISTS ( + SELECT 1 FROM ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_INTERSECTS(u.geom, b.geometry) + ) + "); + } else { + $epcResults = DB::select(" + SELECT + e.id, e.lmk_key, e.building_reference_number, e.current_energy_rating, + e.potential_energy_rating, e.property_type, e.built_form, e.inspection_date, + e.local_authority, e.lodgement_date, e.transaction_type, e.total_floor_area, + e.co2_emissions_current, e.energy_consumption_current, e.uprn, + ST_AsGeoJSON(ST_Transform(u.geom, 4326)) as geometry + FROM epc_certificate e + LEFT JOIN osopenuprn_address u ON e.uprn::bigint = u.uprn + "); + } + + foreach ($epcResults as $row) { + // if (!empty($row->geometry)) { + $epcCertificates->push([ + 'type' => 'Feature', + 'geometry' => (!empty($row->geometry) ? json_decode($row->geometry, true) : null), + 'properties' => [ + 'id' => $row->id, + 'lmk_key' => $row->lmk_key, + 'building_reference_number' => $row->building_reference_number, + 'current_energy_rating' => $row->current_energy_rating, + 'potential_energy_rating' => $row->potential_energy_rating, + 'property_type' => $row->property_type, + 'built_form' => $row->built_form, + 'inspection_date' => $row->inspection_date, + 'local_authority' => $row->local_authority, + 'lodgement_date' => $row->lodgement_date, + 'transaction_type' => $row->transaction_type, + 'total_floor_area' => $row->total_floor_area, + 'co2_emissions_current' => $row->co2_emissions_current, + 'energy_consumption_current' => $row->energy_consumption_current, + 'uprn' => $row->uprn, + ] + ]); + // } + } + + $totalCount = $epcCertificates->count(); + $chunks = $epcCertificates->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream OSM Building Parts data in chunks + */ + public function streamOSMBuildingPartsData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 180000'); // 3 minutes + + $osmBuildingParts = collect(); + + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + $rawResults = DB::select(" + SELECT + id, source, osm_id, name, ref_gb_uprn, + base_shape, base_orientation, building, building_part, + building_levels, roof_shape, height_m, + ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry + FROM osm_building_part + WHERE geom IS NOT NULL + AND EXISTS ( + SELECT 1 FROM ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_INTERSECTS(ST_Transform(osm_building_part.geom, 27700), b.geometry) + ) + "); + } else { + $rawResults = DB::select(" + SELECT + id, source, osm_id, name, ref_gb_uprn, + base_shape, base_orientation, building, building_part, + building_levels, roof_shape, height_m, + ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry + FROM osm_building_part + WHERE geom IS NOT NULL + "); + } + + foreach ($rawResults as $row) { + if (!empty($row->geometry)) { + $geometry = json_decode($row->geometry, true); + $osmBuildingParts->push([ + 'type' => 'Feature', + 'geometry' => $geometry, + 'properties' => [ + 'id' => $row->id, + 'source' => $row->source, + 'osm_id' => $row->osm_id, + 'name' => $row->name, + 'ref_gb_uprn' => $row->ref_gb_uprn, + 'base_shape' => $row->base_shape, + 'base_orientation' => $row->base_orientation, + 'building' => $row->building, + 'building_part' => $row->building_part, + 'building_levels' => $row->building_levels, + 'roof_shape' => $row->roof_shape, + 'height_m' => $row->height_m, + ] + ]); + } + } + + $totalCount = $osmBuildingParts->count(); + $chunks = $osmBuildingParts->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream OSM Addresses data in chunks + */ + public function streamOSMAddressesData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 180000'); // 3 minutes + + $osmAddresses = collect(); + + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + $addressResults = DB::select(" + SELECT + id, building_part_id, osm_id, uprn, source, + housenumber, unit, street, suburb, city, postcode, + ST_AsGeoJSON(point_wgs84) as geometry + FROM osm_address + WHERE point_wgs84 IS NOT NULL + AND EXISTS ( + SELECT 1 FROM ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_INTERSECTS(ST_Transform(osm_address.point_wgs84, 27700), b.geometry) + ) + "); + } else { + $addressResults = DB::select(" + SELECT + id, building_part_id, osm_id, uprn, source, + housenumber, unit, street, suburb, city, postcode, + ST_AsGeoJSON(point_wgs84) as geometry + FROM osm_address + WHERE point_wgs84 IS NOT NULL + "); + } + + foreach ($addressResults as $row) { + if (!empty($row->geometry)) { + $geometry = json_decode($row->geometry, true); + $osmAddresses->push([ + 'type' => 'Feature', + 'geometry' => $geometry, + 'properties' => [ + 'id' => $row->id, + 'building_part_id' => $row->building_part_id, + 'osm_id' => $row->osm_id, + 'uprn' => $row->uprn, + 'source' => $row->source, + 'housenumber' => $row->housenumber, + 'unit' => $row->unit, + 'street' => $row->street, + 'suburb' => $row->suburb, + 'city' => $row->city, + 'postcode' => $row->postcode, + ] + ]); + } + } + + $totalCount = $osmAddresses->count(); + $chunks = $osmAddresses->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + /** + * Stream OSM Landuse data in chunks + */ + public function streamOSMLanduseData(Request $request) + { + set_time_limit(300); + ini_set('memory_limit', '1024M'); + + $areaIds = $request->input('area_ids', []); + if (!is_array($areaIds)) { + $areaIds = is_string($areaIds) && str_starts_with($areaIds, '[') + ? json_decode($areaIds, true) + : [$areaIds]; + } + $areaIds = array_map('intval', array_filter($areaIds)); + $includeBuaFilter = $request->input('include_bua_filter', true); + $chunkSize = $request->input('chunk_size', 100); + + return response()->stream(function () use ($areaIds, $includeBuaFilter, $chunkSize) { + DB::statement('SET statement_timeout = 180000'); // 3 minutes + + $osmLanduseAreas = collect(); + + if ($includeBuaFilter && !empty($areaIds)) { + $areaIdsString = implode(',', $areaIds); + $landuseResults = DB::select(" + SELECT + id, source, osm_id, name, landuse, operator, ref, + ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry + FROM osm_landuse_area + WHERE geom IS NOT NULL + AND EXISTS ( + SELECT 1 FROM ons_bua b + WHERE b.fid IN ({$areaIdsString}) + AND ST_INTERSECTS(osm_landuse_area.geom, b.geometry) + ) + "); + } else { + $landuseResults = DB::select(" + SELECT + id, source, osm_id, name, landuse, operator, ref, + ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry + FROM osm_landuse_area + WHERE geom IS NOT NULL + "); + } + + foreach ($landuseResults as $row) { + if (!empty($row->geometry)) { + $geometry = json_decode($row->geometry, true); + $osmLanduseAreas->push([ + 'type' => 'Feature', + 'geometry' => $geometry, + 'properties' => [ + 'id' => $row->id, + 'source' => $row->source, + 'osm_id' => $row->osm_id, + 'name' => $row->name, + 'landuse' => $row->landuse, + 'operator' => $row->operator, + 'ref' => $row->ref, + ] + ]); + } + } + + $totalCount = $osmLanduseAreas->count(); + $chunks = $osmLanduseAreas->chunk($chunkSize); + $totalChunks = $chunks->count(); + + echo "data: " . json_encode([ + 'type' => 'metadata', + 'total' => $totalCount, + 'chunkSize' => $chunkSize, + 'totalChunks' => $totalChunks + ]) . "\n\n"; + ob_flush(); + flush(); + + $chunkIndex = 0; + foreach ($chunks as $chunk) { + echo "data: " . json_encode([ + 'type' => 'chunk', + 'chunkIndex' => $chunkIndex, + 'data' => $chunk->values()->all(), + 'progress' => round(($chunkIndex + 1) / $totalChunks * 100, 2) + ]) . "\n\n"; + + ob_flush(); + flush(); + $chunkIndex++; + usleep(10000); + } + + echo "data: " . json_encode([ + 'type' => 'complete', + 'total' => $totalCount + ]) . "\n\n"; + ob_flush(); + flush(); + }, 200, [ + 'Content-Type' => 'text/event-stream', + 'Cache-Control' => 'no-cache', + 'X-Accel-Buffering' => 'no', + ]); + } + + public function validateBuilding(Request $request) + { + return $this->performValidation(Building::class, $request->input('geojson')); + } + + public function validateSite(Request $request) + { + return $this->performValidation(Site::class, $request->input('geojson')); + } + + public function validateNhle(Request $request) + { + return $this->performValidation(NHLE::class, $request->input('geojson')); + } + + public function validateBuildingPart(Request $request) + { + return $this->performValidation(BuildingPartV2::class, $request->input('geojson')); + } + + public function validateEpcCertificate(Request $request) + { + $data_json = $request->input('geojson'); + $results = []; + + // Validate JSON structure + if (!isset($data_json['column-names']) || !isset($data_json['rows'])) { + return response()->json([ + 'results' => [], + 'error' => 'Invalid EPC Certificate format. Expected "column-names" and "rows" properties.' + ], 400); + } + + $columnNames = $data_json['column-names']; + $rows = $data_json['rows']; + + // Validate each row + foreach ($rows as $index => $row) { + // Normalize kebab-case keys to snake_case + $normalizedRow = []; + foreach ($row as $key => $value) { + $normalizedKey = str_replace('-', '_', $key); + $normalizedRow[$normalizedKey] = $value; + } + + $lmkKey = $normalizedRow['lmk_key'] ?? null; + $address = $normalizedRow['address'] ?? null; + + // Check if record already exists + $exists = EpcCertificate::where('lmk_key', $lmkKey)->exists(); + + $status = 'ok'; + $message = 'Ready to import'; + + if ($exists) { + $status = 'duplicate'; + $message = "EPC Certificate with lmk_key '{$lmkKey}' already exists"; + } + + if (!$lmkKey) { + $status = 'error'; + $message = 'Missing required field: lmk_key'; + } + + $results[] = [ + 'feature_index' => $index, + 'lmk_key' => $lmkKey, + 'address' => $address, + 'status' => $status, + 'message' => $message, + 'properties' => $normalizedRow // Use normalized keys + ]; + } + + return response()->json(['results' => $results]); + } + + private function performValidation($modelClass, $geojson) + { + $results = []; + + if (!$geojson || !isset($geojson['features'])) { + return response()->json(['results' => []]); + } + + foreach ($geojson['features'] as $index => $feature) { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + continue; + } + + $osid = $feature['properties']['osid'] ?? null; + $gid = $feature['properties']['gid'] ?? $feature['properties']['ListEntry'] ?? null; + $geometry = json_encode($feature['geometry']); + $srid = $geojson['crs']['properties']['name'] ?? 'EPSG:4326'; + $sridNumber = (int) filter_var($srid, FILTER_SANITIZE_NUMBER_INT); + + $featureData = [ + 'feature_index' => $index, + 'properties' => $feature['properties'], + 'status' => 'ok', + 'details' => 'Ready to import.', + 'existing_osid' => null + ]; + + // --- Validation Checks --- + + // 1. OSID Check + if (!$osid && $modelClass != NHLE::class) { + $featureData['status'] = 'missing_osid'; + $featureData['details'] = 'Missing OSID or List Entry. Import will be skipped.'; + $results[] = $featureData; + continue; + } else if (!$gid && $modelClass == NHLE::class) { + $featureData['status'] = 'missing_gid'; + $featureData['details'] = 'Missing List Entry. Import will be skipped.'; + $results[] = $featureData; + continue; + } + + if ($modelClass == NHLE::class) { + $existingItemBygid = $modelClass::where('gid', $gid)->first(); + if ($existingItemBygid) { + $featureData['status'] = 'duplicate'; + $featureData['details'] = "Duplicate List Entry: Matches existing item with List Entry '{$gid}'."; + $featureData['existing_gid'] = $existingItemBygid->gid; + $results[] = $featureData; + continue; + } + } else if ($modelClass == BuildingPartV2::class) { + $existingItemBygid = $modelClass::where('osid', $osid)->first(); + if ($existingItemBygid) { + $featureData['status'] = 'duplicate'; + $featureData['details'] = "Duplicate OSID: Matches existing item with OSID '{$osid}'."; + $featureData['existing_osid'] = $existingItemBygid->osid; + $results[] = $featureData; + continue; + } + } else { + $existingItemByOsid = $modelClass::where('osid', $osid)->first(); + if ($existingItemByOsid) { + $featureData['status'] = 'duplicate'; + $featureData['details'] = "Duplicate OSID: Matches existing item with OSID '{$osid}'."; + $featureData['existing_osid'] = $existingItemByOsid->osid; + $results[] = $featureData; + continue; + } + } + + + // 2. Exact Geometry Check + if ($modelClass != NHLE::class) { + $geomSql = "ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), ?), 27700)"; + $exactMatch = $modelClass::whereRaw("ST_Equals(geometry, {$geomSql})", [$geometry, $sridNumber])->first(); + if ($exactMatch) { + $featureData['status'] = 'exact_match'; + $featureData['details'] = "Exact Geometry: Matches existing item (OSID: {$exactMatch->osid})."; + $results[] = $featureData; + continue; + } + } + + // 3. Spatial Overlap Check with Tolerance + if ($modelClass != NHLE::class) { + $overlapTolerance = 0.1; // meters squared + $overlappingItem = $modelClass::select('osid') + ->selectRaw("ST_Area(ST_Intersection(geometry, {$geomSql})) as overlap_area", [$geometry, $sridNumber]) + ->whereRaw("ST_Intersects(geometry, {$geomSql})", [$geometry, $sridNumber]) + ->orderBy('overlap_area', 'desc') + ->first(); + + if ($overlappingItem && $overlappingItem->overlap_area > $overlapTolerance) { + $featureData['status'] = 'overlap'; + $featureData['details'] = sprintf( + "Spatial Overlap: Overlaps with OSID %s by %.2f m².", + $overlappingItem->osid, + $overlappingItem->overlap_area + ); + $results[] = $featureData; + continue; + } + } + + $results[] = $featureData; + } + + return response()->json(['results' => $results]); + } + + public function importBuilding(Request $request) + { + return $this->performImport(Building::class, $request); + } + + public function importSite(Request $request) + { + return $this->performImport(Site::class, $request); + } + + public function importNhle(Request $request) + { + return $this->performImport(NHLE::class, $request); + } + + public function importBuildingPart(Request $request) + { + return $this->performImport(BuildingPartV2::class, $request); + } + + public function importEpcCertificate(Request $request) + { + $rows = $request->input('rows'); + if (!$rows || !is_array($rows)) { + return response()->json(['error' => 'Invalid row data provided.'], 400); + } + + $importedCount = 0; + $updatedCount = 0; + $skippedCount = 0; + $errors = []; + + DB::beginTransaction(); + try { + foreach ($rows as $item) { + $action = $item['action'] ?? 'skip'; + $data = $item['data'] ?? []; + + if ($action === 'skip') { + $skippedCount++; + continue; + } + + //set address to null + $data['address'] = null; + $data['address1'] = null; + $data['address2'] = null; + $data['address3'] = null; + $data['postcode'] = null; + + // Validate required field + if (empty($data['lmk_key'])) { + $errors[] = "Row skipped: missing lmk_key"; + $skippedCount++; + continue; + } + + // Prepare data for insert/update (remove non-fillable fields) + $fillableData = array_intersect_key($data, array_flip((new EpcCertificate())->getFillable())); + $fillableData['data_jsonb'] = json_encode($data); + + if ($action === 'import') { + // Insert new record + EpcCertificate::create($fillableData); + $importedCount++; + } elseif ($action === 'update') { + // Update existing record + $updated = EpcCertificate::where('lmk_key', $data['lmk_key']) + ->update($fillableData); + if ($updated) { + $updatedCount++; + } else { + $errors[] = "Failed to update record with lmk_key: {$data['lmk_key']}"; + } + } + } + + DB::commit(); + + $message = "Import completed: {$importedCount} imported, {$updatedCount} updated, {$skippedCount} skipped."; + if (!empty($errors)) { + $message .= " Errors: " . implode('; ', $errors); + } + + return response()->json([ + 'message' => $message, + 'imported' => $importedCount, + 'updated' => $updatedCount, + 'skipped' => $skippedCount, + 'errors' => $errors + ]); + } catch (\Exception $e) { + DB::rollBack(); + Log::error('EPC Certificate import failed: ' . $e->getMessage()); + return response()->json(['error' => 'Import failed: ' . $e->getMessage()], 500); + } + } + + public function validateUprn(Request $request) + { + $results = []; + $geojson = $request->input('geojson'); + $maxJoinRadiusMeters = (int)($request->input('join_radius_m', 30)); + if ($maxJoinRadiusMeters < 10) { + $maxJoinRadiusMeters = 10; + } + if ($maxJoinRadiusMeters > 30) { + $maxJoinRadiusMeters = 30; + } + + if (!$geojson || !isset($geojson['features']) || !is_array($geojson['features'])) { + return response()->json(['results' => []]); + } + + $seenUprns = []; + foreach ($geojson['features'] as $index => $feature) { + $properties = $feature['properties'] ?? []; + $geometry = $feature['geometry'] ?? null; + + $uprn = $properties['UPRN'] ?? $properties['uprn'] ?? null; + $latitude = $properties['LATITUDE'] ?? $properties['latitude'] ?? null; + $longitude = $properties['LONGITUDE'] ?? $properties['longitude'] ?? null; + + $featureData = [ + 'feature_index' => $index, + 'properties' => [ + 'uprn' => $uprn, + 'latitude' => $latitude, + 'longitude' => $longitude, + ], + 'status' => 'ok', + 'details' => 'Ready to import.', + 'audit' => [ + 'link_method' => null, + 'confidence' => null, + 'nearest_site' => null, + 'nearest_building' => null, + ], + ]; + + // Rule 1: Schema - UPRN numeric & non-null + if (is_null($uprn) || !is_numeric($uprn)) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'Invalid UPRN: must be numeric and non-null.'; + $results[] = $featureData; + continue; + } + + // Rule 3: Duplicates - within batch + if (isset($seenUprns[$uprn])) { + $featureData['status'] = 'duplicate_in_batch'; + $featureData['details'] = 'Duplicate UPRN within this upload batch; only one row per UPRN is allowed.'; + $results[] = $featureData; + continue; + } + $seenUprns[$uprn] = true; + + // Existing duplicate in DB + $existing = Uprn::where('uprn', (int)$uprn)->first(); + if ($existing) { + $featureData['status'] = 'duplicate_existing'; + $featureData['details'] = "Duplicate UPRN: record already exists (UPRN '{$uprn}'). Re-ingest will only fill missing metadata."; + } + + // Rule 2: CRS/Geometry - Must be point in EPSG:4326 (accept lat/lon or GeoJSON Point) + $hasLatLng = (!is_null($latitude) && !is_null($longitude)); + $isPointGeom = (is_array($geometry) && strtoupper((string)($geometry['type'] ?? '')) === 'POINT'); + if (!$hasLatLng && !$isPointGeom) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'Missing valid point location: supply LATITUDE/LONGITUDE or GeoJSON Point geometry (EPSG:4326).'; + $results[] = $featureData; + continue; + } + if ($hasLatLng) { + // Basic 4326 bounds check + if ($latitude < -90 || $latitude > 90 || $longitude < -180 || $longitude > 180) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'Invalid lat/lon range for EPSG:4326.'; + $results[] = $featureData; + continue; + } + } + + // Build a 27700 point for spatial validation and joins + $point27700 = null; + try { + if ($hasLatLng) { + $pt = DB::selectOne( + "SELECT ST_Transform(ST_SetSRID(ST_MakePoint(?, ?), 4326), 27700) AS g", + [(float)$longitude, (float)$latitude] + ); + $point27700 = $pt ? $pt->g : null; + } elseif ($isPointGeom) { + $geomJson = json_encode($geometry); + $pt = DB::selectOne( + "SELECT ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700) AS g", + [$geomJson] + ); + $point27700 = $pt ? $pt->g : null; + } + } catch (\Exception $e) { + $point27700 = null; + } + + if (!$point27700) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'Failed to construct spatial point for validation.'; + $results[] = $featureData; + continue; + } + + // Rules 4,5,6,7: Nearest-neighbour join to sites/buildings within capped radius; audit method & confidence; index-friendly queries + try { + // Nearest Site + $nearestSite = DB::selectOne( + "SELECT osid, ST_Distance(s.geometry, g.geom) AS dist + FROM lus_fts_site s + JOIN (SELECT ?::geometry AS geom) AS g ON TRUE + WHERE ST_DWithin(s.geometry, g.geom, ?) + ORDER BY s.geometry <-> g.geom + LIMIT 1", + [$point27700, $maxJoinRadiusMeters] + ); + + // Nearest Building + $nearestBld = DB::selectOne( + "SELECT osid, ST_Distance(b.geometry, g.geom) AS dist + FROM bld_fts_building b + JOIN (SELECT ?::geometry AS geom) AS g ON TRUE + WHERE ST_DWithin(b.geometry, g.geom, ?) + ORDER BY b.geometry <-> g.geom + LIMIT 1", + [$point27700, $maxJoinRadiusMeters] + ); + + $featureData['audit']['nearest_site'] = $nearestSite ? ['osid' => $nearestSite->osid, 'distance_m' => (float)$nearestSite->dist] : null; + $featureData['audit']['nearest_building'] = $nearestBld ? ['osid' => $nearestBld->osid, 'distance_m' => (float)$nearestBld->dist] : null; + + $featureData['audit']['link_method'] = 'nearest_neighbour_within_radius'; + $minDist = null; + if ($nearestSite) { + $minDist = is_null($minDist) ? (float)$nearestSite->dist : min($minDist, (float)$nearestSite->dist); + } + if ($nearestBld) { + $minDist = is_null($minDist) ? (float)$nearestBld->dist : min($minDist, (float)$nearestBld->dist); + } + if (!is_null($minDist)) { + if ($minDist <= 10) $featureData['audit']['confidence'] = 'high'; + elseif ($minDist <= 20) $featureData['audit']['confidence'] = 'medium'; + else $featureData['audit']['confidence'] = 'low'; + } else { + $featureData['audit']['confidence'] = 'none'; + } + } catch (\Exception $e) { + // If spatial join fails, keep validation status but note no link + $featureData['audit']['link_method'] = 'nearest_neighbour_within_radius'; + $featureData['audit']['confidence'] = 'none'; + } + + // Rule 8: Re-ingest safety hint + if ($existing) { + $featureData['reingest_policy'] = 'fill_missing_only'; + } else { + $featureData['reingest_policy'] = 'insert_new_requires_xy_present'; + } + + $results[] = $featureData; + } + + return response()->json(['results' => $results]); + } + + public function importUprn(Request $request) + { + $features = $request->input('features'); + $sridNumber = $request->input('srid', 4326) ?? 4326; + $maxJoinRadiusMeters = (int)($request->input('join_radius_m', 30)); + if ($maxJoinRadiusMeters < 1) { + $maxJoinRadiusMeters = 10; + } + if ($maxJoinRadiusMeters > 30) { + $maxJoinRadiusMeters = 30; + } + + if (!$features || !is_array($features)) { + return response()->json(['error' => 'Invalid feature data provided.'], 400); + } + + $importedCount = 0; + $updatedCount = 0; + $skippedCount = 0; + + DB::beginTransaction(); + try { + foreach ($features as $featureAction) { + $action = $featureAction['action'] ?? 'skip'; + $data = $featureAction['feature'] ?? $featureAction['data'] ?? null; + + if (!$data || $action === 'skip') { + continue; + } + + $props = $data['properties'] ?? []; + $uprnVal = $props['UPRN'] ?? $props['uprn'] ?? null; + // Validation Rule 1: Schema -> uprn numeric, unique, non-null + if (is_null($uprnVal) || !is_numeric($uprnVal)) { + $skippedCount++; + continue; + } + + $attributes = [ + 'uprn' => (int)$uprnVal, + 'x_coordinate' => isset($props['EASTING']) ? (float)$props['EASTING'] : (isset($props['x_coordinate']) ? (float)$props['x_coordinate'] : null), + 'y_coordinate' => isset($props['NORTHING']) ? (float)$props['NORTHING'] : (isset($props['y_coordinate']) ? (float)$props['y_coordinate'] : null), + 'latitude' => isset($props['LATITUDE']) ? (float)$props['LATITUDE'] : (isset($props['latitude']) ? (float)$props['latitude'] : null), + 'longitude' => isset($props['LONGITUDE']) ? (float)$props['LONGITUDE'] : (isset($props['longitude']) ? (float)$props['longitude'] : null), + ]; + + // Validation Rule 2: CRS/Geometry -> Must be valid POINT in EPSG:4326 (accept lat/lng or GeoJSON Point) + $hasLatLng = (!is_null($attributes['latitude']) && !is_null($attributes['longitude'])); + $hasGeometryPoint = false; + if (isset($data['geometry']) && is_array($data['geometry'])) { + $geomType = $data['geometry']['type'] ?? null; + if (strtoupper((string)$geomType) === 'POINT') { + $hasGeometryPoint = true; + } + } + if (!$hasLatLng && !$hasGeometryPoint && is_null($attributes['x_coordinate']) && is_null($attributes['y_coordinate'])) { + // No way to locate the UPRN spatially -> skip + $skippedCount++; + continue; + } + + // Build geometry expression separately to avoid model casts interfering + $geomExpr = null; + if (isset($data['geometry'])) { + $geomJson = json_encode($data['geometry']); + $geomExpr = DB::raw("ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON('" . $geomJson . "'), {$sridNumber}), 27700)"); + } elseif (!empty($attributes['x_coordinate']) && !empty($attributes['y_coordinate'])) { + $geomExpr = DB::raw("ST_SetSRID(ST_MakePoint({$attributes['x_coordinate']}, {$attributes['y_coordinate']}), 27700)"); + } elseif (!empty($attributes['longitude']) && !empty($attributes['latitude'])) { + $geomExpr = DB::raw("ST_Transform(ST_SetSRID(ST_MakePoint({$attributes['longitude']}, {$attributes['latitude']}), 4326), 27700)"); + } + + // Ensure x_coordinate and y_coordinate are populated to satisfy NOT NULL constraints + if ((is_null($attributes['x_coordinate']) || is_null($attributes['y_coordinate']))) { + try { + if (!empty($attributes['longitude']) && !empty($attributes['latitude'])) { + $point = DB::selectOne( + "SELECT ST_X(ST_Transform(ST_SetSRID(ST_MakePoint(?, ?), 4326), 27700)) AS x, ST_Y(ST_Transform(ST_SetSRID(ST_MakePoint(?, ?), 4326), 27700)) AS y", + [ + (float)$attributes['longitude'], + (float)$attributes['latitude'], + (float)$attributes['longitude'], + (float)$attributes['latitude'] + ] + ); + if ($point) { + $attributes['x_coordinate'] = (float)$point->x; + $attributes['y_coordinate'] = (float)$point->y; + } + } elseif (isset($data['geometry'])) { + $geomJson = json_encode($data['geometry']); + $point = DB::selectOne( + "SELECT ST_X(ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), {$sridNumber}), 27700)) AS x, ST_Y(ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), {$sridNumber}), 27700)) AS y", + [$geomJson, $geomJson] + ); + if ($point) { + $attributes['x_coordinate'] = (float)$point->x; + $attributes['y_coordinate'] = (float)$point->y; + } + } + } catch (\Exception $e) { + // If computation fails, continue; DB constraint may still fail and be caught by outer try/catch + } + } + + // Validation Rule 8: Re-ingest safety -> do not overwrite better metadata + // Merge with existing record: only fill missing values, never overwrite non-null with null + $existing = Uprn::where('uprn', (int)$uprnVal)->first(); + if ($existing) { + $update = []; + foreach (['x_coordinate', 'y_coordinate', 'latitude', 'longitude'] as $field) { + if (!is_null($attributes[$field]) && (is_null($existing->{$field}) || $existing->{$field} === 0.0)) { + $update[$field] = $attributes[$field]; + } + } + if (!empty($update)) { + Uprn::where('uprn', (int)$uprnVal)->update($update); + $updatedCount++; + } else { + // Nothing to update + $skippedCount++; + } + } else { + // Ensure x/y present before insert to satisfy NOT NULL constraints + if (is_null($attributes['x_coordinate']) || is_null($attributes['y_coordinate'])) { + $skippedCount++; + continue; + } + $instance = Uprn::create($attributes); + $importedCount++; + } + + // Then set geom via Query Builder using raw expression + if ($geomExpr) { + DB::table('osopenuprn_address') + ->where('uprn', (int)$uprnVal) + ->update(['geom' => $geomExpr]); + } + + // Note: counts already adjusted above to reflect re-ingest safety + } + + DB::commit(); + } catch (\Exception $e) { + DB::rollBack(); + return response()->json(['error' => 'An error occurred during import: ' . $e->getMessage()], 500); + } + + // Clear caches + try { + \Artisan::call('optimize:clear'); + \Artisan::call('cache:clear'); + \Artisan::call('config:clear'); + \Artisan::call('route:clear'); + \Artisan::call('view:clear'); + if (config('cache.default') === 'redis') { + \Cache::flush(); + } + } catch (\Exception $e) { + \Log::warning('Failed to clear cache after UPRN import: ' . $e->getMessage()); + } + + return response()->json(['message' => "Import finished. {$importedCount} imported, {$updatedCount} updated, {$skippedCount} skipped. Cache cleared."]); + } + + public function validateLandRegistryCadastral(Request $request) + { + @ini_set('upload_max_size', '256M'); + @ini_set('post_max_size', '256M'); + @ini_set('max_execution_time', '300'); + + $geojson = $request->input('geojson'); + + if (!$geojson || !isset($geojson['features'])) { + return response()->json(['error' => 'Invalid GeoJSON data provided.'], 400); + } + + $results = []; + foreach ($geojson['features'] as $index => $feature) { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + continue; + } + + $properties = $feature['properties']; + $globalId = $properties['GlobalID'] ?? $properties['global_id'] ?? null; + + $status = 'ok'; + $details = 'Ready for import'; + $existingGlobalId = null; + + // Check for duplicate global_id + if ($globalId) { + $existing = LandRegistryCadastral::where('global_id', $globalId)->first(); + if ($existing) { + $status = 'duplicate'; + $details = 'Global ID already exists in database'; + $existingGlobalId = $globalId; + } + } else { + $status = 'warning'; + $details = 'Missing Global ID'; + } + + // Check for spatial overlaps if geometry exists + if (isset($feature['geometry']) && $status === 'ok') { + $geometry = json_encode($feature['geometry']); + $srid = $geojson['crs']['properties']['name'] ?? 'EPSG:4326'; + $sridNumber = (int) filter_var($srid, FILTER_SANITIZE_NUMBER_INT); + + // Check for exact geometry match + $exactMatch = LandRegistryCadastral::whereRaw( + "ST_Equals(geometry, ST_SetSRID(ST_GeomFromGeoJSON(?), ?))", + [$geometry, $sridNumber] + )->exists(); + + if ($exactMatch) { + $status = 'exact_match'; + $details = 'Exact geometry match found'; + } else { + // Check for spatial overlap + $overlap = LandRegistryCadastral::whereRaw( + "ST_Intersects(geometry, ST_SetSRID(ST_GeomFromGeoJSON(?), ?)) AND NOT ST_Equals(geometry, ST_SetSRID(ST_GeomFromGeoJSON(?), ?))", + [$geometry, $sridNumber, $geometry, $sridNumber] + )->exists(); + + if ($overlap) { + $status = 'overlap'; + $details = 'Spatial overlap detected'; + } + } + } + + $results[] = [ + 'feature_index' => $index, + 'properties' => $properties, + 'status' => $status, + 'details' => $details, + 'existing_global_id' => $existingGlobalId, + ]; + } + + return response()->json(['results' => $results]); + } + + public function importLandRegistryCadastral(Request $request) + { + @ini_set('upload_max_size', '256M'); + @ini_set('post_max_size', '256M'); + @ini_set('max_execution_time', '300'); + + $features = $request->input('features'); + $sridNumber = $request->input('srid', 4326) ?? 4326; + + if (!$features || !is_array($features)) { + return response()->json(['error' => 'Invalid feature data provided.'], 400); + } + + $importedCount = 0; + $updatedCount = 0; + $skippedCount = 0; + + DB::beginTransaction(); + try { + foreach ($features as $featureAction) { + $action = $featureAction['action'] ?? 'skip'; + $data = $featureAction['data'] ?? null; + + if (!$data || $action === 'skip') { + $skippedCount++; + continue; + } + + $properties = $data['properties'] ?? []; + $geometry = $data['geometry'] ?? null; + + $globalId = $properties['GlobalID'] ?? $properties['global_id'] ?? $properties['GLOBAL_ID'] ?? null; + + // Skip if no global_id + if (!$globalId) { + $skippedCount++; + continue; + } + + // Prepare attributes based on the LandRegistryCadastral model structure + $attributes = [ + 'global_id' => $globalId, + 'fid' => $properties['FID'] ?? $properties['fid'] ?? null, + 'county_code' => $properties['CTY24CD'] ?? $properties['county_code'] ?? $properties['COUNTY_CODE'] ?? null, + 'county_name' => $properties['CTY24NM'] ?? $properties['county_name'] ?? $properties['COUNTY_NAME'] ?? null, + 'bng_easting' => isset($properties['BNG_E']) ? (float)$properties['BNG_E'] : (isset($properties['bng_easting']) ? (float)$properties['bng_easting'] : (isset($properties['BNG_EASTING']) ? (float)$properties['BNG_EASTING'] : null)), + 'bng_northing' => isset($properties['BNG_N']) ? (float)$properties['BNG_N'] : (isset($properties['bng_northing']) ? (float)$properties['bng_northing'] : (isset($properties['BNG_NORTHING']) ? (float)$properties['BNG_NORTHING'] : null)), + 'longitude' => isset($properties['LONG']) ? (float)$properties['LONG'] : (isset($properties['longitude']) ? (float)$properties['longitude'] : (isset($properties['LONGITUDE']) ? (float)$properties['LONGITUDE'] : null)), + 'latitude' => isset($properties['LAT']) ? (float)$properties['LAT'] : (isset($properties['latitude']) ? (float)$properties['latitude'] : (isset($properties['LATITUDE']) ? (float)$properties['LATITUDE'] : null)), + ]; + + // Create/update record first without geometry + if ($action === 'update') { + // Update existing record + $existing = LandRegistryCadastral::where('global_id', $globalId)->first(); + if ($existing) { + $existing->update($attributes); + $updatedCount++; + } else { + // If record doesn't exist, create it + $instance = LandRegistryCadastral::create($attributes); + $importedCount++; + } + } else { + // Import new record + $instance = LandRegistryCadastral::updateOrCreate( + ['global_id' => $globalId], + $attributes + ); + $importedCount++; + } + + // Handle geometry separately using raw SQL + if ($geometry && !empty($geometry['coordinates']) && $geometry['type'] === 'MultiPolygon') { + $geometryJson = json_encode($geometry); + + // Insert WGS84 geometry (EPSG:4326) - original coordinates from GeoJSON + DB::statement( + "UPDATE land_registry_cadastral SET geometry = ST_SetSRID(ST_GeomFromGeoJSON(?), 4326) WHERE fid = ? AND county_code = ?", + [$geometryJson, $properties['FID'], $properties['CTY24CD']] + ); + + // Convert and store BNG geometry (EPSG:27700) if BNG coordinates are available + if ($properties['BNG_E'] && $properties['BNG_N']) { + // Transform WGS84 geometry to BNG + DB::statement( + "UPDATE land_registry_cadastral SET geometry_bng = ST_Transform(geometry, 27700) WHERE fid = ? AND county_code = ?", + [$properties['FID'], $properties['CTY24CD']] + ); + } + } + } + + DB::commit(); + } catch (\Exception $e) { + DB::rollBack(); + return response()->json(['error' => 'An error occurred during import: ' . $e->getMessage()], 500); + } + + // Clear caches + try { + \Artisan::call('optimize:clear'); + \Artisan::call('cache:clear'); + \Artisan::call('config:clear'); + \Artisan::call('route:clear'); + \Artisan::call('view:clear'); + if (config('cache.default') === 'redis') { + \Cache::flush(); + } + } catch (\Exception $e) { + \Log::warning('Failed to clear cache after Land Registry import: ' . $e->getMessage()); + } + + return response()->json(['message' => "Import finished. {$importedCount} imported, {$updatedCount} updated, {$skippedCount} skipped. Cache cleared."]); + } + + private function performImport($modelClass, Request $request) + { + $features = $request->input('features'); + $sridNumber = $request->input('srid', 4326) ?? 4326; + + if (!$features || !is_array($features)) { + return response()->json(['error' => 'Invalid feature data provided.'], 400); + } + + $importedCount = 0; + $updatedCount = 0; + + DB::beginTransaction(); + try { + foreach ($features as $featureAction) { + $action = $featureAction['action'] ?? 'skip'; + // Support both 'feature' (from frontend) and 'data' (legacy) + $data = $featureAction['feature'] ?? $featureAction['data'] ?? null; + + if (!$data || $action === 'skip') { + continue; + } + + if ($action === 'import' || $action === 'update') { + $osid = $data['properties']['osid'] ?? null; + + // For NHLE, try to get gid from multiple possible field names + $gid = null; + if ($modelClass == NHLE::class) { + $gid = $data['properties']['gid'] ?? $data['properties']['ListEntry'] ?? $data['properties']['listentry'] ?? null; + } + + if (!$osid && $modelClass != NHLE::class) { + continue; + } else if (!$gid && $modelClass == NHLE::class) { + continue; + } + $isUpdate = ($action === 'update'); + + $model = new $modelClass; + $fillable = $model->getFillable(); + $attributes = []; + + foreach ($fillable as $field) { + if (in_array($field, ['osid', 'geometry'])) { + continue; + } + + $value = $data['properties'][$field] ?? null; + + if (is_null($value)) { + $nonNullableFields = [ + 'versiondate', + 'changetype', + 'geometry_area_m2', + 'geometry_updatedate', + 'geometry_capturemethod', + 'theme', + 'description', + 'description_updatedate', + 'description_capturemethod', + 'oslandcovertiera', + 'oslandcovertierb', + 'oslandcover_updatedate', + 'oslandcover_capturemethod', + 'oslandusetiera', + 'oslanduse_updatedate', + 'oslanduse_capturemethod', + 'isobscured', + 'physicallevel', + 'capturespecification', + 'containingsitecount', + 'lowertierlocalauthority_count' + ]; + + if (in_array($field, $nonNullableFields)) { + if (str_contains($field, 'date')) { + $value = '1970-01-01'; + } elseif (in_array($field, ['geometry_area_m2', 'containingsitecount'])) { + $value = 0; + } elseif ($field === 'isobscured') { + $value = false; + } elseif ($field === 'lowertierlocalauthority_count') { + $value = 0; + } else { + $value = ''; + } + } + } + + $array_fields = ['oslandusetierb', 'oslandcovertierb', 'largestsite_landusetierb', 'smallestsite_landusetierb']; + if (in_array($field, $array_fields) && is_array($value)) { + $attributes[$field] = json_encode($value); + } else { + $attributes[$field] = $value; + } + } + + if (isset($data['geometry'])) { + $attributes['geometry'] = DB::raw("ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON('" . json_encode($data['geometry']) . "'), {$sridNumber}), 27700)"); + } + + if ($modelClass == NHLE::class) { + $instance = $modelClass::updateOrCreate(['gid' => $gid], $attributes); + } else { + $instance = $modelClass::updateOrCreate(['osid' => $osid], $attributes); + } + + if ($modelClass === Site::class && isset($data['properties']['sitetoaddressreference']) && is_array($data['properties']['sitetoaddressreference'])) { + // Delete existing references to handle updates cleanly + SiteAddressReference::where('siteid', $instance->osid)->delete(); + + foreach ($data['properties']['sitetoaddressreference'] as $ref) { + SiteAddressReference::create([ + 'uprn' => $ref['uprn'], + 'siteid' => $ref['siteid'], + 'siteversiondate' => $ref['siteversiondate'], + 'relationshiptype' => $ref['relationshiptype'], + ]); + } + } + + if ($modelClass === Building::class) { + // Handle sitereference + if (isset($data['properties']['sitereference']) && is_array($data['properties']['sitereference'])) { + BuildingSiteLink::where('buildingid', $instance->osid)->delete(); + foreach ($data['properties']['sitereference'] as $ref) { + BuildingSiteLink::create([ + 'siteid' => $ref['siteid'], + 'buildingid' => $ref['buildingid'], + 'buildingversiondate' => $ref['buildingversiondate'], + ]); + } + } + + // Handle uprnreference + if (isset($data['properties']['uprnreference']) && is_array($data['properties']['uprnreference'])) { + BuildingAddress::where('buildingid', $instance->osid)->delete(); + foreach ($data['properties']['uprnreference'] as $ref) { + BuildingAddress::create([ + 'uprn' => $ref['uprn'], + 'buildingid' => $ref['buildingid'], + 'buildingversiondate' => $ref['buildingversiondate'], + ]); + } + } + + // Handle buildingpartreference + if (isset($data['properties']['buildingpartreference']) && is_array($data['properties']['buildingpartreference'])) { + BuildingPartLink::where('buildingid', $instance->osid)->delete(); + foreach ($data['properties']['buildingpartreference'] as $ref) { + BuildingPartLink::create([ + 'buildingpartid' => $ref['buildingpartid'], + 'buildingid' => $ref['buildingid'], + 'buildingversiondate' => $ref['buildingversiondate'], + ]); + } + } + } + if ($modelClass === BuildingPartV2::class) { + if (isset($data['properties']['sitereference']) && is_array($data['properties']['sitereference'])) { + BuildingPartSiteRefV2::where('buildingpartid', $instance->osid)->delete(); + foreach ($data['properties']['sitereference'] as $ref) { + if (empty($ref['buildingpartid'])) { + continue; + } + BuildingPartSiteRefV2::create([ + 'siteid' => $ref['siteid'], + 'buildingpartid' => $ref['buildingpartid'], + 'buildingpartversiondate' => $ref['buildingpartversiondate'], + ]); + } + } + } + + if ($modelClass === NHLE::class) { + $properties = $data['properties']; + $geometry = $data['geometry']; + $coordinates = $geometry['coordinates']; + + $longitude = null; + $latitude = null; + + if ($geometry['type'] === 'Point' && count($coordinates) >= 2) { + $longitude = $coordinates[0]; + $latitude = $coordinates[1]; + } elseif (($geometry['type'] === 'MultiPoint' || $geometry['type'] === 'Polygon') && !empty($coordinates)) { + // For MultiPoint or Polygon, calculate the centroid + $points = $geometry['type'] === 'MultiPoint' ? $coordinates : ($coordinates[0] ?? []); + if (!empty($points)) { + $numPoints = count($points); + $sumX = 0; + $sumY = 0; + foreach ($points as $point) { + if (is_array($point) && count($point) >= 2) { + $sumX += $point[0]; + $sumY += $point[1]; + } + } + if ($numPoints > 0) { + $longitude = $sumX / $numPoints; + $latitude = $sumY / $numPoints; + } + } + } + + // Helper function to get property value case-insensitively + $getProperty = function ($key) use ($properties) { + // Try exact match first + if (isset($properties[$key])) { + return $properties[$key]; + } + // Try case-insensitive match + foreach ($properties as $propKey => $propValue) { + if (strtolower($propKey) === strtolower($key)) { + return $propValue; + } + } + return null; + }; + + // Get listentry from either 'listentry', 'ListEntry', or 'gid' + $listentry = $getProperty('listentry') ?? $getProperty('ListEntry') ?? $properties['gid'] ?? null; + + // Parse dates - handle both string dates and formatted dates + $parseDate = function ($dateValue) { + if (!$dateValue) return null; + try { + return Carbon::parse($dateValue)->toDateString(); + } catch (\Exception $e) { + return null; + } + }; + + $nhle = NHLE::updateOrCreate([ + 'gid' => $properties['gid'] + ], [ + 'objectid' => $getProperty('objectid') ?? $getProperty('OBJECTID'), + 'listentry' => $listentry, + 'name' => $getProperty('name') ?? $getProperty('Name'), + 'grade' => $getProperty('grade') ?? $getProperty('Grade'), + 'listdate' => $parseDate($getProperty('listdate') ?? $getProperty('ListDate')), + 'amenddate' => $parseDate($getProperty('amenddate') ?? $getProperty('AmendDate')), + 'capturesca' => $getProperty('capturescale') ?? $getProperty('CaptureScale'), + 'hyperlink' => $getProperty('hyperlink'), + 'ngr' => $getProperty('ngr') ?? $getProperty('NGR'), + 'easting' => $getProperty('easting') ?? $getProperty('Easting'), + 'northing' => $getProperty('northing') ?? $getProperty('Northing'), + 'longitude' => $longitude, + 'latitude' => $latitude, + ]); + if (isset($geometry) && !empty($geometry['coordinates'])) { + $geomJson = json_encode($geometry); + DB::table('nhle_') + ->where('gid', $nhle->gid) + ->update(['geom' => DB::raw("ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON('$geomJson'), 4326), 27700)")]); + } + } + + if ($isUpdate) { + $updatedCount++; + } else { + $importedCount++; + } + } + } + DB::commit(); + } catch (\Exception $e) { + DB::rollBack(); + return response()->json(['error' => 'An error occurred during import: ' . $e->getMessage()], 500); + } + + // Clear all caches after successful import + try { + \Artisan::call('optimize:clear'); + \Artisan::call('cache:clear'); + \Artisan::call('config:clear'); + \Artisan::call('route:clear'); + \Artisan::call('view:clear'); + + if (config('cache.default') === 'redis') { + \Cache::flush(); + } + } catch (\Exception $e) { + \Log::warning('Failed to clear cache after import: ' . $e->getMessage()); + } + + return response()->json(['message' => "Import successful. {$importedCount} new NHLEs imported, {$updatedCount} NHLEs updated. Cache cleared."]); + } + + private function runValidation($geojson) + { + $results = []; + foreach ($geojson['features'] as $index => $feature) { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + continue; + } + + $warnings = []; + $osid = $feature['properties']['osid'] ?? 'N/A'; + $geometry = json_encode($feature['geometry']); + $srid = $geojson['crs']['properties']['name'] ?? 'EPSG:4326'; + $sridNumber = (int) filter_var($srid, FILTER_SANITIZE_NUMBER_INT); + + if ($osid !== 'N/A') { + if (Building::where('osid', $osid)->exists()) { + $warnings[] = "Duplicate OSID"; + } + } + + if (Building::whereRaw("ST_Equals(geometry, ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), ?), 27700))", [$geometry, $sridNumber])->exists()) { + $warnings[] = "Exact Geometry Match"; + } + + if (Building::whereRaw("ST_Intersects(geometry, ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), ?), 27700))", [$geometry, $sridNumber])->whereRaw("NOT ST_Equals(geometry, ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), ?), 27700))", [$geometry, $sridNumber])->exists()) { + $warnings[] = "Spatial Overlap"; + } + + $results[] = [ + 'status' => empty($warnings) ? 'ok' : 'warning', + ]; + } + return $results; + } + + public function validateLandRegistryInspire(Request $request) + { + @ini_set('upload_max_size', '256M'); + @ini_set('post_max_size', '256M'); + @ini_set('max_execution_time', '300'); + + $geojson = $request->input('geojson'); + if (!$geojson || !isset($geojson['features'])) { + return response()->json(['error' => 'Invalid GeoJSON data provided.'], 400); + } + + $features = collect($geojson['features']) + ->filter(fn($f) => isset($f['properties'])) + ->values(); + + $gmlIds = $features + ->map(fn($f) => $f['properties']['gml_id'] ?? null) + ->filter() + ->unique() + ->values(); + + $existingIds = LandRegistryInspire::whereIn('gml_id', $gmlIds) + ->pluck('gml_id') + ->toArray(); + + $results = []; + foreach ($features as $index => $feature) { + $properties = $feature['properties'] ?? []; + $gmlId = $properties['gml_id'] ?? null; + $inspireId = $properties['INSPIREID'] ?? null; + + $status = 'ok'; + $details = 'Ready for import'; + + if (!$gmlId) { + $status = 'warning'; + $details = 'Missing GML ID'; + } elseif (in_array($gmlId, $existingIds)) { + $status = 'duplicate'; + $details = 'GML ID already exists'; + } elseif (!$inspireId) { + $status = 'warning'; + $details = 'Missing INSPIRE ID'; + } + + $results[] = [ + 'feature_index' => $index, + 'properties' => $properties, + 'status' => $status, + 'details' => $details, + ]; + } + + return response()->json([ + 'summary' => [ + 'total' => count($results), + 'duplicates' => count(array_filter($results, fn($r) => $r['status'] === 'duplicate')), + 'warnings' => count(array_filter($results, fn($r) => $r['status'] === 'warning')), + ], + 'results' => $results, + ]); + } + + public function importLandRegistryInspire(Request $request) + { + @ini_set('upload_max_size', '256M'); + @ini_set('post_max_size', '256M'); + @ini_set('max_execution_time', '600'); + + $features = $request->input('features'); + $sridNumber = $request->input('srid', 4326); + + if (!$features || !is_array($features)) { + return response()->json(['error' => 'Invalid feature data provided.'], 400); + } + + $insertBatch = []; + $updateBatch = []; + $geometryBatch = []; + + foreach ($features as $featureAction) { + $action = $featureAction['action'] ?? 'skip'; + $data = $featureAction['data'] ?? null; + if (!$data || $action === 'skip') continue; + + $p = $data['properties'] ?? []; + $geometry = $data['geometry'] ?? null; + + $gmlId = $p['gml_id'] ?? null; + $inspireId = $p['INSPIREID'] ?? null; + if (!$gmlId || !$inspireId) continue; + + $row = [ + 'gml_id' => $gmlId, + 'INSPIREID' => $inspireId, + 'LABEL' => $p['LABEL'] ?? null, + 'NATIONALCADASTRALREFERENCE' => $p['NATIONALCADASTRALREFERENCE'] ?? null, + 'VALIDFROM' => self::parseDate($p['VALIDFROM'] ?? null), + 'BEGINLIFESPANVERSION' => self::parseDate($p['BEGINLIFESPANVERSION'] ?? null), + ]; + + if ($action === 'import') { + $insertBatch[] = $row; + } elseif ($action === 'update') { + $updateBatch[] = $row; + } + + if ($geometry && !empty($geometry['coordinates'])) { + $geometryBatch[] = [ + 'gml_id' => $gmlId, + 'geometry' => json_encode($geometry), + ]; + } + } + + DB::beginTransaction(); + try { + + if (!empty($insertBatch)) { + // DB::table('land_registry_inspire')->upsert($insertBatch, ['gml_id']); + DB::table('land_registry_inspire')->insertOrIgnore($insertBatch); + } + + if (!empty($updateBatch)) { + DB::table('land_registry_inspire')->upsert($updateBatch, ['gml_id'], [ + 'INSPIREID', + 'LABEL', + 'NATIONALCADASTRALREFERENCE', + 'VALIDFROM', + 'BEGINLIFESPANVERSION' + ]); + } + + foreach (array_chunk($geometryBatch, 500) as $chunk) { + $values = collect($chunk) + ->map( + fn($g) => + "(" . DB::getPdo()->quote($g['geometry']) . ", " . DB::getPdo()->quote($g['gml_id']) . ")" + )->implode(','); + + if ($sridNumber == 27700) { + DB::statement(" + UPDATE land_registry_inspire + SET geom = ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(v.geom), 27700), 4326) + FROM (VALUES $values) AS v(geom, gml_id) + WHERE land_registry_inspire.gml_id = v.gml_id + "); + } else { + DB::statement(" + UPDATE land_registry_inspire + SET geom = ST_SetSRID(ST_GeomFromGeoJSON(v.geom), 4326) + FROM (VALUES $values) AS v(geom, gml_id) + WHERE land_registry_inspire.gml_id = v.gml_id + "); + } + } + + DB::commit(); + Cache::forget('land_registry_inspire_data'); + } catch (\Throwable $e) { + DB::rollBack(); + return response()->json(['error' => 'Import failed: ' . $e->getMessage()], 500); + } + + return response()->json([ + 'message' => sprintf( + "Import finished. %d inserted, %d updated. Geometry updated for %d records. Cache cleared.", + count($insertBatch), + count($updateBatch), + count($geometryBatch) + ) + ]); + } + + private static function parseDate($value) + { + if (!$value) return null; + try { + return Carbon::parse($value)->format('Y-m-d H:i:s'); + } catch (\Throwable $e) { + return null; + } + } + + // OSM Building Part validation and import + public function validateOsmBuildingPart(Request $request) + { + return $this->performOsmValidation(\App\Models\OsmBuildingPart::class, $request->input('geojson')); + } + + public function importOsmBuildingPart(Request $request) + { + return $this->performOsmImport(\App\Models\OsmBuildingPart::class, $request); + } + + // OSM Address validation and import + public function validateOsmAddress(Request $request) + { + return $this->performOsmAddressValidation($request->input('geojson')); + } + + public function importOsmAddress(Request $request) + { + return $this->performOsmAddressImport($request); + } + + // OSM Landuse Area validation and import + public function validateOsmLanduseArea(Request $request) + { + return $this->performOsmValidation(\App\Models\OsmLanduseArea::class, $request->input('geojson')); + } + + public function importOsmLanduseArea(Request $request) + { + return $this->performOsmImport(\App\Models\OsmLanduseArea::class, $request); + } + + private function performOsmValidation($modelClass, $geojson) + { + $results = []; + + if (!$geojson || !isset($geojson['features'])) { + return response()->json(['results' => []]); + } + + foreach ($geojson['features'] as $index => $feature) { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + continue; + } + + $osmId = $feature['properties']['osm_id'] ?? null; + $geometry = json_encode($feature['geometry']); + + $featureData = [ + 'feature_index' => $index, + 'properties' => $feature['properties'], + 'status' => 'ok', + 'details' => 'Ready to import.', + 'existing_osm_id' => null + ]; + + // Check for duplicate OSM ID if provided + if (!empty($osmId)) { + // Validate OSM ID format (should only contain positive digits, no minus sign) + if (!ctype_digit(strval($osmId))) { + $featureData['status'] = 'warning'; + $featureData['details'] = "Invalid OSM ID format: OSM ID '{$osmId}' contains non-numeric characters. OSM IDs should only contain positive digits (0-9)."; + $results[] = $featureData; + continue; + } + + // Check for duplicate OSM ID + $existingItem = $modelClass::where('osm_id', $osmId)->first(); + if ($existingItem) { + $featureData['status'] = 'duplicate'; + $featureData['details'] = "Duplicate OSM ID: Matches existing item with OSM ID '{$osmId}'."; + $featureData['existing_osm_id'] = $existingItem->osm_id; + $results[] = $featureData; + continue; + } + } + + // Additional validation based on model type + if ($modelClass === \App\Models\OsmBuildingPart::class) { + // Building part specific validation + if (empty($feature['properties']['building']) && empty($feature['properties']['building:part'])) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'No building or building:part tag found.'; + } + } elseif ($modelClass === \App\Models\OsmLanduseArea::class) { + // Landuse specific validation + if (empty($feature['properties']['landuse'])) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'No landuse tag found.'; + } + } + + $results[] = $featureData; + } + + return response()->json(['results' => $results]); + } + + private function performOsmImport($modelClass, Request $request) + { + $features = $request->input('features', []); + $srid = $request->input('srid', 4326); + + if (empty($features)) { + return response()->json(['error' => 'No features provided for import'], 400); + } + + $importedCount = 0; + $updatedCount = 0; + $skippedCount = 0; + + // Process each feature individually to prevent one error from aborting all imports + foreach ($features as $featureData) { + $action = $featureData['action'] ?? 'import'; + $feature = $featureData['feature'] ?? $featureData; + + if ($action === 'skip') { + Log::info("OSM feature skipped by user action", [ + 'model' => $modelClass, + 'osm_id' => $feature['properties']['osm_id'] ?? 'unknown', + 'reason' => 'user_action_skip' + ]); + $skippedCount++; + continue; + } + + // Use individual transaction for each record to isolate errors + try { + DB::transaction(function () use ($feature, $action, $srid, $modelClass, &$importedCount, &$updatedCount, &$skippedCount) { + $properties = $feature['properties'] ?? []; + $geometry = $feature['geometry'] ?? null; + + if (!$geometry) { + Log::warning("OSM feature skipped - no geometry", [ + 'model' => $modelClass, + 'osm_id' => $properties['osm_id'] ?? 'unknown', + 'reason' => 'missing_geometry', + 'properties' => $properties + ]); + $skippedCount++; + return; + } + + // Prepare data based on model type + $data = $this->prepareOsmData($modelClass, $properties, $geometry, $srid); + + // Skip if data preparation failed + if (empty($data)) { + Log::warning("OSM feature skipped - data preparation failed", [ + 'model' => $modelClass, + 'osm_id' => $properties['osm_id'] ?? 'unknown', + 'reason' => 'data_preparation_failed', + 'properties' => $properties, + 'geometry_type' => $geometry['type'] ?? 'unknown' + ]); + $skippedCount++; + return; + } + + if ($action === 'update' && !empty($properties['osm_id'])) { + // Update existing record + $existing = $modelClass::where('osm_id', $properties['osm_id'])->first(); + if ($existing) { + $existing->update($data); + $updatedCount++; + } else { + $modelClass::create($data); + $importedCount++; + } + } else { + // Create new record + $modelClass::create($data); + $importedCount++; + } + }); + } catch (\Exception $e) { + Log::error("OSM feature skipped - import error: " . $e->getMessage(), [ + 'model' => $modelClass, + 'osm_id' => $feature['properties']['osm_id'] ?? 'unknown', + 'reason' => 'import_exception', + 'error_message' => $e->getMessage(), + 'error_file' => $e->getFile(), + 'error_line' => $e->getLine(), + 'feature' => $feature + ]); + $skippedCount++; + } + } + + // Clear relevant cache + Cache::flush(); + + return response()->json([ + 'message' => "Import completed. {$importedCount} imported, {$updatedCount} updated, {$skippedCount} skipped." + ]); + } + + private function prepareOsmData($modelClass, $properties, $geometry, $srid) + { + $geometryJson = json_encode($geometry, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); + + if ($modelClass === \App\Models\OsmBuildingPart::class) { + // Transform geometry to BNG (EPSG:27700) + // Handle MultiPolygon by extracting the largest polygon + $bngGeometry = DB::selectOne( + "SELECT ST_AsText( + CASE + WHEN ST_GeometryType(ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700)) = 'ST_MultiPolygon' + THEN ( + SELECT geom FROM ( + SELECT (ST_Dump(ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700))).geom + ) AS dumps + ORDER BY ST_Area(geom) DESC + LIMIT 1 + ) + ELSE ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700) + END + ) as geom", + [$geometryJson, $geometryJson, $geometryJson] + )->geom; + + return [ + 'source' => 'OSM', + 'osm_id' => $this->parseNumeric($properties['osm_id'] ?? null), + 'name' => $this->parseText($properties['name'] ?? null), + 'geom' => $bngGeometry, + + // UPRN + 'ref_gb_uprn' => $this->parseText( + $properties['ref:GB:uprn'] ?? $properties['ref_gb_uprn'] ?? null + ), + + // Base properties (sesuai ENUM di schema) + 'base_shape' => $this->parseEnum( + $properties['base_shape'] ?? null, + [ + 'flat', + 'slope', + 'pyramidal', + 'inverted_pyramidal', + 'dome', + 'inverted_dome', + 'round', + 'inverted_round', + 'gabled', + 'gambrel', + 'segmental_arch', + 'inverted_segmental_arch', + 'partial_arch' + ] + ), + 'base_direction' => $this->parseNumeric($properties['base_direction'] ?? null), + 'base_orientation' => $this->parseEnum( + $properties['base_orientation'] ?? null, + ['along', 'across'] + ), + 'base_height_m' => $this->parseNumeric($properties['base_height_m'] ?? null), + 'base_levels' => $this->parseInteger($properties['base_levels'] ?? null), + 'base_colour' => $this->parseText($properties['building:colour'] ?? null), + 'base_material' => $this->parseText($properties['building:material'] ?? null), + 'base_angle_deg' => $this->parseNumeric($properties['base_angle_deg'] ?? null), + + // Building + 'building' => $this->parseText($properties['building'] ?? null), + 'building_part' => $this->parseText($properties['building:part'] ?? $properties['building_part'] ?? null), + 'building_levels' => $this->parseInteger($properties['building_levels'] ?? $properties['building:levels'] ?? null), + 'building_min_level' => $this->parseInteger($properties['building_min_level'] ?? null), + 'building_levels_underground' => $this->parseInteger($properties['building_levels_underground'] ?? $properties['building:levels:underground'] ?? null), + + // Roof + 'roof_levels' => $this->parseInteger($properties['roof:levels'] ?? null), + 'roof_shape' => $this->parseText($properties['roof:shape'] ?? null), + + // Height + 'height_m' => $this->parseNumeric($properties['height_m'] ?? $properties['height'] ?? null), + 'min_height_m' => $this->parseNumeric($properties['min_height_m'] ?? null), + 'roof_height_m' => $this->parseNumeric($properties['roof:height'] ?? null), + + // Levels + 'levels' => $this->parseInteger($properties['levels'] ?? null), + 'min_level' => $this->parseInteger($properties['min_level'] ?? null), + + // Additional + 'building_reference_number' => $this->parseText($properties['building_reference_number'] ?? null), + 'tenure' => $this->parseText($properties['tenure'] ?? null), + 'construction_age_band' => $this->parseText($properties['construction_age_band'] ?? null), + 'transaction_type' => $this->parseText($properties['transaction_type'] ?? null), + ]; + } elseif ($modelClass === \App\Models\OsmAddress::class) { + // Skip if no geometry or not a Point + if (!$geometry || $geometry['type'] !== 'Point') { + return []; + } + + // Extract coordinates + $coordinates = $geometry['coordinates']; + if (count($coordinates) < 2) { + return []; + } + + $longitude = $coordinates[0]; + $latitude = $coordinates[1]; + + // Skip if coordinates are invalid + if (!is_numeric($longitude) || !is_numeric($latitude)) { + return []; + } + + // Find building part ID if provided + $buildingPartId = $this->extractValue($properties, ['building_part_id']); + if (!empty($buildingPartId) && is_numeric($buildingPartId)) { + // Verify building part exists + if (!\App\Models\OsmBuildingPart::where('id', $buildingPartId)->exists()) { + $buildingPartId = null; + } + } else { + $buildingPartId = null; + } + + // Create WGS84 Point geometry + $wgs84Point = DB::selectOne( + "SELECT ST_SetSRID(ST_MakePoint(?, ?), 4326) as geom", + [$longitude, $latitude] + )->geom; + + return [ + 'building_part_id' => $buildingPartId, + 'osm_id' => $this->parseInteger($this->extractValue($properties, ['osm_id'])), + 'uprn' => $this->extractValue($properties, ['uprn']), + 'source' => $this->extractValue($properties, ['source']) ?: 'osm', + 'housenumber' => $this->extractValue($properties, ['housenumber', 'addr:housenumber']), + 'unit' => $this->extractValue($properties, ['unit', 'addr:unit']), + 'street' => $this->extractValue($properties, ['street', 'addr:street']), + 'suburb' => $this->extractValue($properties, ['suburb', 'addr:suburb']), + 'city' => $this->extractValue($properties, ['city', 'addr:city']), + 'postcode' => $this->extractValue($properties, ['postcode', 'addr:postcode']), + 'county' => $this->extractValue($properties, ['county', 'addr:county']), + 'state' => $this->extractValue($properties, ['state', 'addr:state']), + 'country' => $this->extractValue($properties, ['country', 'addr:country']), + 'country_code' => $this->extractValue($properties, ['country_code', 'addr:country_code']), + 'point_wgs84' => $wgs84Point, + ]; + } elseif ($modelClass === \App\Models\OsmLanduseArea::class) { + // Transform geometry to BNG (EPSG:27700) + $bngGeometry = DB::selectOne( + "SELECT ST_AsText( + CASE + WHEN ST_GeometryType(ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700)) = 'ST_MultiPolygon' + THEN ( + SELECT geom FROM ( + SELECT (ST_Dump(ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700))).geom + ) AS dumps + ORDER BY ST_Area(geom) DESC + LIMIT 1 + ) + ELSE ST_Transform(ST_SetSRID(ST_GeomFromGeoJSON(?), 4326), 27700) + END + ) as geom", + [$geometryJson, $geometryJson, $geometryJson] + )->geom; + + return [ + 'source' => $properties['source'] ?? 'osm', + 'osm_id' => (!empty($properties['osm_id']) && trim($properties['osm_id']) !== '' && is_numeric($properties['osm_id'])) ? (int)$properties['osm_id'] : null, + 'name' => $properties['name'] ?? null, + 'geom' => $bngGeometry, + 'landuse' => $properties['landuse'] ?? 'unknown', + 'operator' => $properties['operator'] ?? null, + 'ref' => $properties['ref'] ?? null, + 'start_date' => $this->parseDate($properties['start_date'] ?? null), + 'opening_date' => $this->parseDate($properties['opening_date'] ?? null), + 'end_date' => $this->parseDate($properties['end_date'] ?? null), + 'tags' => $this->extractAdditionalTags($properties, [ + 'source', + 'osm_id', + 'name', + 'landuse', + 'operator', + 'ref', + 'start_date', + 'opening_date', + 'end_date' + ]) + ]; + } + + return []; + } + + private function extractAdditionalTags($properties, $excludeFields) + { + $tags = []; + foreach ($properties as $key => $value) { + if (!in_array($key, $excludeFields) && !empty(trim($value))) { + $tags[$key] = trim($value); + } + } + return $tags; + } + + /** + * Parse text value, return null if empty + */ + private function parseText($value) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + return trim($value); + } + + /** + * Parse numeric value, return null if not numeric + */ + private function parseNumeric($value) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + + if (is_numeric($value)) { + return (float) $value; + } + + return null; + } + + /** + * Parse integer value, return null if not integer + */ + private function parseInteger($value) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + + if (is_numeric($value)) { + return (int) $value; + } + + return null; + } + + /** + * Parse enum value, return null if not in allowed values + */ + private function parseEnum($value, $allowedValues) + { + if (is_null($value) || $value === '' || $value === 'null') { + return null; + } + + $value = strtolower(trim($value)); + + if (in_array($value, $allowedValues)) { + return $value; + } + + return null; + } + + /** + * Extract value from properties, trying multiple possible keys + */ + private function extractValue(array $properties, array $keys): ?string + { + foreach ($keys as $key) { + if (isset($properties[$key]) && !empty(trim($properties[$key]))) { + return trim($properties[$key]); + } + } + return null; + } + + /** + * Check if feature contains address-related keys (keys starting with "addr") + */ + private function hasAddressKeys(array $properties): bool + { + foreach (array_keys($properties) as $key) { + if (strpos($key, 'addr:') === 0) { + return true; + } + } + return false; + } + + /** + * Extract first coordinate pair from nested coordinate structure + */ + private function extractFirstCoordinate($coordinates): ?array + { + if (!is_array($coordinates)) { + return null; + } + + // If it's already a coordinate pair [lng, lat] + if (count($coordinates) >= 2 && is_numeric($coordinates[0]) && is_numeric($coordinates[1])) { + return [$coordinates[0], $coordinates[1]]; + } + + // If it's nested, recursively search for first coordinate pair + foreach ($coordinates as $coord) { + if (is_array($coord)) { + $result = $this->extractFirstCoordinate($coord); + if ($result) { + return $result; + } + } + } + + return null; + } + + /** + * Custom validation for OSM Address - only process features with address keys + */ + private function performOsmAddressValidation($geojson) + { + $results = []; + + if (!$geojson || !isset($geojson['features'])) { + return response()->json(['results' => []]); + } + + foreach ($geojson['features'] as $index => $feature) { + if (!isset($feature['geometry']) || !isset($feature['properties'])) { + continue; + } + + // Skip features that don't contain address keys + if (!$this->hasAddressKeys($feature['properties'])) { + continue; + } + + $osmId = $feature['properties']['osm_id'] ?? null; + $geometry = json_encode($feature['geometry']); + + $featureData = [ + 'feature_index' => $index, + 'properties' => $feature['properties'], + 'status' => 'ok', + 'details' => 'Ready to import.', + 'existing_osm_id' => null + ]; + + // Check for duplicate OSM ID if provided + if (!empty($osmId) && is_numeric($osmId)) { + $existingItem = \App\Models\OsmAddress::where('osm_id', $osmId)->first(); + if ($existingItem) { + $featureData['status'] = 'duplicate'; + $featureData['details'] = "Duplicate OSM ID: Matches existing item with OSM ID '{$osmId}'."; + $featureData['existing_osm_id'] = $existingItem->osm_id; + $results[] = $featureData; + continue; + } + } + + // Address specific validation + $addressKeys = array_filter(array_keys($feature['properties']), function ($key) { + return strpos($key, 'addr:') === 0; + }); + + if (empty($addressKeys)) { + $featureData['status'] = 'warning'; + $featureData['details'] = 'No address tags found. Feature will be skipped.'; + } else { + $featureData['details'] = 'Contains address tags: ' . implode(', ', $addressKeys); + } + + $results[] = $featureData; + } + + return response()->json(['results' => $results]); + } + + /** + * Custom import for OSM Address - only import features with address keys + */ + private function performOsmAddressImport(Request $request) + { + $features = $request->input('features', []); + $srid = $request->input('srid', 4326); + + if (empty($features)) { + return response()->json(['error' => 'No features provided for import'], 400); + } + + $importedCount = 0; + $updatedCount = 0; + $skippedCount = 0; + + DB::transaction(function () use ($features, $srid, &$importedCount, &$updatedCount, &$skippedCount) { + foreach ($features as $featureData) { + $action = $featureData['action'] ?? 'import'; + $feature = $featureData['feature'] ?? $featureData; + + if ($action === 'skip') { + Log::info("OSM Address feature skipped by user action", [ + 'osm_id' => $feature['properties']['osm_id'] ?? 'unknown', + ]); + $skippedCount++; + continue; + } + + // Skip features that don't contain address keys + if (!$this->hasAddressKeys($feature['properties'])) { + Log::info("OSM Address feature skipped - no address keys", [ + 'osm_id' => $feature['properties']['osm_id'] ?? 'unknown', + ]); + $skippedCount++; + continue; + } + + try { + $properties = $feature['properties']; + $geometry = $feature['geometry']; + + // Extract coordinates from geometry + if (!isset($geometry['coordinates'])) { + Log::warning("OSM Address feature skipped - no coordinates", [ + 'osm_id' => $properties['osm_id'] ?? 'unknown', + ]); + $skippedCount++; + continue; + } + + $coordinates = $geometry['coordinates']; + + // Handle different geometry types - extract first coordinate pair + if ($geometry['type'] === 'Point') { + $longitude = $coordinates[0]; + $latitude = $coordinates[1]; + } elseif ($geometry['type'] === 'Polygon' && isset($coordinates[0][0])) { + // Use first coordinate of first ring + $longitude = $coordinates[0][0][0]; + $latitude = $coordinates[0][0][1]; + } elseif ($geometry['type'] === 'LineString' && isset($coordinates[0])) { + // Use first coordinate of line + $longitude = $coordinates[0][0]; + $latitude = $coordinates[0][1]; + } else { + // Try to extract from any nested structure + $flatCoords = $this->extractFirstCoordinate($coordinates); + if (!$flatCoords) { + Log::warning("OSM Address feature skipped - cannot extract coordinates", [ + 'osm_id' => $properties['osm_id'] ?? 'unknown', + 'geometry_type' => $geometry['type'] ?? 'unknown' + ]); + $skippedCount++; + continue; + } + $longitude = $flatCoords[0]; + $latitude = $flatCoords[1]; + } + + // Create geometry using PostGIS ST_MakePoint + $point = DB::selectOne( + "SELECT ST_SetSRID(ST_MakePoint(?, ?), 4326) as geom", + [$longitude, $latitude] + )->geom; + + $addressData = [ + 'source' => $this->extractValue($properties, ['source']) ?? 'osm', + 'osm_id' => isset($properties['osm_id']) && is_numeric($properties['osm_id']) ? (int)$properties['osm_id'] : null, + 'housenumber' => $this->extractValue($properties, ['addr:housenumber']), + 'unit' => $this->extractValue($properties, ['addr:unit']), + 'street' => $this->extractValue($properties, ['addr:street']), + 'suburb' => $this->extractValue($properties, ['addr:suburb']), + 'city' => $this->extractValue($properties, ['addr:city']), + 'postcode' => $this->extractValue($properties, ['addr:postcode']), + 'county' => $this->extractValue($properties, ['addr:county']), + 'state' => $this->extractValue($properties, ['addr:state']), + 'country' => $this->extractValue($properties, ['addr:country']), + 'country_code' => $this->extractValue($properties, ['addr:country_code']), + 'point_wgs84' => $point, + ]; + + if ($action === 'update' && !empty($properties['osm_id'])) { + $existingAddress = \App\Models\OsmAddress::where('osm_id', $properties['osm_id'])->first(); + if ($existingAddress) { + $existingAddress->update($addressData); + $updatedCount++; + continue; + } + } + + \App\Models\OsmAddress::create($addressData); + $importedCount++; + } catch (\Exception $e) { + Log::error("Error importing OSM Address feature", [ + 'osm_id' => $feature['properties']['osm_id'] ?? 'unknown', + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + $skippedCount++; + } + } + }); + + // Clear cache + Cache::forget('area_data'); + + return response()->json([ + 'message' => 'OSM Address import completed', + 'imported' => $importedCount, + 'updated' => $updatedCount, + 'skipped' => $skippedCount, + 'total_processed' => $importedCount + $updatedCount + $skippedCount + ]); + } +} diff --git a/app/Http/Controllers/EntityLinkController.php b/app/Http/Controllers/EntityLinkController.php new file mode 100644 index 00000000..df0b78bc --- /dev/null +++ b/app/Http/Controllers/EntityLinkController.php @@ -0,0 +1,231 @@ + $request->all()]); + try { + $data = $this->validatePayload($request); + + $link = EntityLink::updateOrCreate( + [ + 'src_type' => $data['src_type'], + 'src_id' => $data['src_id'], + 'relation' => $data['relation'], + 'dst_type' => $data['dst_type'], + 'dst_id' => $data['dst_id'], + ], + [ + 'status' => $data['status'], + 'source' => $data['source'] ?? 'auto_bearing', + 'confidence' => $data['confidence'] ?? null, + 'bearing_delta' => $data['bearing_delta'] ?? null, + 'distance_m' => $data['distance_m'] ?? null, + 'note' => $data['note'] ?? null, + 'created_by' => $data['created_by'] ?? Auth::id(), + 'verified_by' => $data['status'] === 'verified' ? (Auth::id() ?? $data['verified_by'] ?? null) : null, + ] + ); + + Log::info('EntityLinkController@upsert: upserted', ['link' => $link->toArray()]); + return response()->json(['data' => $link], 200); + } catch (\Throwable $e) { + Log::error('EntityLinkController@upsert: exception', ['message' => $e->getMessage(), 'trace' => $e->getTraceAsString()]); + return response()->json(['message' => 'Server error'], 500); + } + } + + public function delete(Request $request): JsonResponse + { + // Delete by composite key + $validator = Validator::make($request->all(), [ + 'src_type' => 'required|string|max:32', + 'src_id' => 'required|string|max:128', + 'relation' => 'required|string|max:64', + 'dst_type' => 'required|string|max:32', + 'dst_id' => 'required|string|max:128', + ]); + + if ($validator->fails()) { + return response()->json(['message' => 'Validation error', 'errors' => $validator->errors()], 422); + } + + $data = $validator->validated(); + Log::info('EntityLinkController@delete: incoming request', ['payload' => $data]); + + try { + $deleted = EntityLink::where('src_type', $data['src_type']) + ->where('src_id', $data['src_id']) + ->where('relation', $data['relation']) + ->where('dst_type', $data['dst_type']) + ->where('dst_id', $data['dst_id']) + ->delete(); + + Log::info('EntityLinkController@delete: deleted', ['deleted' => $deleted]); + return response()->json(['deleted' => $deleted], 200); + } catch (\Throwable $e) { + Log::error('EntityLinkController@delete: exception', ['message' => $e->getMessage()]); + return response()->json(['message' => 'Server error'], 500); + } + } + + public function statuses(Request $request): JsonResponse + { + // Expect: src_type, src_id, relation, items: [{dst_type, dst_id}] + $validator = Validator::make($request->all(), [ + 'src_type' => 'required|string|max:32', + 'src_id' => 'required|string|max:128', + 'relation' => 'required|string|max:64', + 'items' => 'required|array|min:1', + 'items.*.dst_type' => 'required|string|max:32', + 'items.*.dst_id' => 'required|string|max:128', + ]); + + if ($validator->fails()) { + return response()->json(['message' => 'Validation error', 'errors' => $validator->errors()], 422); + } + + $data = $validator->validated(); + + Log::info('EntityLinkController@statuses: incoming request', ['payload' => $data]); + + try { + $srcType = $data['src_type']; + $srcId = $data['src_id']; + $relation = $data['relation']; + $items = $data['items']; + + // Fetch all links for the src+relation, then filter in PHP (keeps query simple) + $links = EntityLink::where('src_type', $srcType) + ->where('src_id', $srcId) + ->where('relation', $relation) + ->get(['dst_type', 'dst_id', 'status']); + + // Build set of requested pairs + $requested = []; + foreach ($items as $it) { + $requested[strtolower($it['dst_type']).'|'.$it['dst_id']] = true; + } + + $results = []; + foreach ($links as $link) { + $key = strtolower($link->dst_type).'|'.$link->dst_id; + if (isset($requested[$key])) { + $results[] = [ + 'dst_type' => $link->dst_type, + 'dst_id' => $link->dst_id, + 'status' => $link->status, + ]; + } + } + + Log::info('EntityLinkController@statuses: returning', ['count' => count($results)]); + return response()->json(['data' => $results], 200); + } catch (\Throwable $e) { + Log::error('EntityLinkController@statuses: exception', ['message' => $e->getMessage()]); + return response()->json(['message' => 'Server error'], 500); + } + } + + public function bulkUpsert(Request $request): JsonResponse + { + Log::info('EntityLinkController@bulkUpsert: incoming request', ['payload' => $request->all()]); + $items = $request->input('items'); + if (!is_array($items)) { + return response()->json(['message' => 'Invalid payload. items must be an array'], 422); + } + + try { + $results = []; + foreach ($items as $item) { + $validated = $this->validateArray($item); + if ($validated instanceof JsonResponse) { + Log::warning('EntityLinkController@bulkUpsert: validation error', ['errors' => $validated->getData(true)]); + return $validated; // early return on first error + } + + $link = EntityLink::updateOrCreate( + [ + 'src_type' => $validated['src_type'], + 'src_id' => $validated['src_id'], + 'relation' => $validated['relation'], + 'dst_type' => $validated['dst_type'], + 'dst_id' => $validated['dst_id'], + ], + [ + 'status' => $validated['status'], + 'source' => $validated['source'] ?? 'auto_bearing', + 'confidence' => $validated['confidence'] ?? null, + 'bearing_delta' => $validated['bearing_delta'] ?? null, + 'distance_m' => $validated['distance_m'] ?? null, + 'note' => $validated['note'] ?? null, + 'created_by' => $validated['created_by'] ?? Auth::id(), + 'verified_by' => $validated['status'] === 'verified' ? (Auth::id() ?? $validated['verified_by'] ?? null) : null, + ] + ); + $results[] = $link; + } + Log::info('EntityLinkController@bulkUpsert: upserted', ['count' => count($results)]); + return response()->json(['data' => $results], 200); + } catch (\Throwable $e) { + Log::error('EntityLinkController@bulkUpsert: exception', ['message' => $e->getMessage(), 'trace' => $e->getTraceAsString()]); + return response()->json(['message' => 'Server error'], 500); + } + } + + private function validatePayload(Request $request): array + { + $validator = Validator::make($request->all(), [ + 'src_type' => 'required|string|max:32', + 'src_id' => 'required|string|max:128', + 'relation' => 'required|string|max:64', + 'dst_type' => 'required|string|max:32', + 'dst_id' => 'required|string|max:128', + 'status' => 'required|in:verified,rejected', + 'source' => 'nullable|string|max:32', + 'confidence' => 'nullable|numeric', + 'bearing_delta' => 'nullable|numeric', + 'distance_m' => 'nullable|numeric', + 'note' => 'nullable|string', + 'created_by' => 'nullable|integer', + 'verified_by' => 'nullable|integer', + ]); + + $validator->validate(); + return $validator->validated(); + } + + private function validateArray(array $data) + { + $validator = Validator::make($data, [ + 'src_type' => 'required|string|max:32', + 'src_id' => 'required|string|max:128', + 'relation' => 'required|string|max:64', + 'dst_type' => 'required|string|max:32', + 'dst_id' => 'required|string|max:128', + 'status' => 'required|in:verified,rejected', + 'source' => 'nullable|string|max:32', + 'confidence' => 'nullable|numeric', + 'bearing_delta' => 'nullable|numeric', + 'distance_m' => 'nullable|numeric', + 'note' => 'nullable|string', + 'created_by' => 'nullable|integer', + 'verified_by' => 'nullable|integer', + ]); + + if ($validator->fails()) { + return response()->json(['message' => 'Validation error', 'errors' => $validator->errors()], 422); + } + return $validator->validated(); + } +} diff --git a/app/Http/Controllers/PhotoGalleryController.php b/app/Http/Controllers/PhotoGalleryController.php index 90aafd5d..1eaf690f 100644 --- a/app/Http/Controllers/PhotoGalleryController.php +++ b/app/Http/Controllers/PhotoGalleryController.php @@ -6,15 +6,21 @@ use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate\Http\RedirectResponse; - +use Illuminate\Support\Facades\Artisan; +use Illuminate\Support\Facades\Log; class PhotoGalleryController extends Controller { public function index(Request $request) { $user = Auth::user(); - $photos = getPhotosWithoutTask($user->id); - return Inertia::render('Farmers/PhotoGallery', compact('photos')); + $paginatedPhotos = getPhotosWithoutTask($user->id); + + $photos = $paginatedPhotos; + + if($request->has('showStatic')) return Inertia::render('Farmers/PhotoGalleryStatic', compact('photos')); + + return Inertia::render('Farmers/PhotoGallery', compact('photos','paginatedPhotos')); } public function destroy(Request $request, String $ids): RedirectResponse diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php new file mode 100644 index 00000000..745a2980 --- /dev/null +++ b/app/Http/Controllers/SearchController.php @@ -0,0 +1,62 @@ +user(); + + $search = $request->search; + $ogc_fid = $request->ogc_fid; + + //Cache::forget('shapes'); + $shapes = Cache::rememberForever('shapes', function () { + return Shape::query()->get(); + }); + + $selectedShape = $shapes->first(fn (Shape $item) => $item->ogc_fid == $ogc_fid); + + $photos = Photo::query() + ->when($selectedShape, function ($query) use ($selectedShape) { + $geoJson = json_encode($selectedShape->geometry); + $query->whereRaw("ST_WITHIN(ST_Transform(ST_SetSRID(ST_MakePoint(photo.lng, photo.lat)::geometry, 4326)::geometry, 27700),ST_Transform(ST_SetSRID( ST_AsText(ST_GeomFromGeoJSON('$geoJson')), 4326), 27700))"); + }) + ->paginate(100); + + $photos->appends(array('search' => $search)); + + return Inertia::render('Search/Index', [ + 'shapes' => new ShapeCollection($shapes), + 'selectedShape' => $selectedShape ? new ShapeFeatureResource($selectedShape): null, + 'photos' => PhotoResource::collection($photos), + 'search' => $search + ]); + } + + public function show(Request $request) + { + $user = $request->user(); + + $shapes = Cache::rememberForever('shapes', function () { + $data = Shape::query()->get(); + return new ShapeCollection($data); + }); + + // Cache::forget('shapes'); + + return Inertia::render('Search/Map', [ + "shapes" => $shapes, + ]); + } +} diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index d3d0d6ee..26ad0e72 100644 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -21,8 +21,7 @@ class UserController extends Controller */ public function index(Request $request) { - $users = User:: - join('user_role as ur', 'user.id', '=', 'ur.user_id') + $users = User::join('user_role as ur', 'user.id', '=', 'ur.user_id') ->select('user.id', 'user.login', 'user.name', 'user.surname', 'user.identification_number', 'user.vat', 'user.email') ->where('ur.role_id', '=', User::FARMER_ROLE) ->where('user.active', '=', 1) @@ -32,28 +31,28 @@ public function index(Request $request) $sortOrder = 'asc'; $search = $request->search; - if($request->search){ - $users = $users->where(function($q) use($request){ - $q->orWhere('user.name','ILIKE','%'.$request->search.'%') - ->orWhere('user.surname','ILIKE','%'.$request->search.'%') - ->orWhere('user.identification_number','ILIKE','%'.$request->search.'%'); + if ($request->search) { + $users = $users->where(function ($q) use ($request) { + $q->orWhere('user.name', 'ILIKE', '%' . $request->search . '%') + ->orWhere('user.surname', 'ILIKE', '%' . $request->search . '%') + ->orWhere('user.identification_number', 'ILIKE', '%' . $request->search . '%'); }); } - if($request->sortColumn && $request->sortOrder) { + if ($request->sortColumn && $request->sortOrder) { $sortColumn = $request->sortColumn; $sortOrder = $request->sortOrder; } - $users->orderBy($sortColumn,$sortOrder); + $users->orderBy($sortColumn, $sortOrder); $users = $users->paginate(10); - foreach($users as $user){ - $user->tasks_count=User::getFarmerCounts($user['id'],'tasks'); - $user->photo_count=User::getFarmerCounts($user['id'],'photos'); - $user->unassigned_photos_count=User::getFarmerCounts($user['id'],'unassigned_photos'); - $user->tasks_provided_count=User::getFarmerCounts($user['id'],'tasks_provided'); + foreach ($users as $user) { + $user->tasks_count = User::getFarmerCounts($user['id'], 'tasks'); + $user->photo_count = User::getFarmerCounts($user['id'], 'photos'); + $user->unassigned_photos_count = User::getFarmerCounts($user['id'], 'unassigned_photos'); + $user->tasks_provided_count = User::getFarmerCounts($user['id'], 'tasks_provided'); } - return Inertia::render('Users/Index',compact('users','sortColumn','sortOrder','search')); + return Inertia::render('Users/Index', compact('users', 'sortColumn', 'sortOrder', 'search')); } /** @@ -86,7 +85,7 @@ public function store(Request $request) 'pa_id' => Auth::user()->pa_id, 'timestamp' => Carbon::now()->format('Y-m-d H:i:s') ]); - DB::table('user_role')->insert(['user_id'=> $user->id,'role_id' => User::FARMER_ROLE,'timestamp' => Carbon::now()->format('Y-m-d H:i:s')]); + DB::table('user_role')->insert(['user_id' => $user->id, 'role_id' => User::FARMER_ROLE, 'timestamp' => Carbon::now()->format('Y-m-d H:i:s')]); event(new Registered($user)); return redirect()->route('users.index'); } @@ -96,26 +95,26 @@ public function store(Request $request) */ public function show(Request $request, User $user) { - $filtersVal = ["new","open","data provided","returned","accepted","declined"]; + $filtersVal = ["new", "open", "data provided", "returned", "accepted", "declined"]; $search = $request->search; - $selectedStatuses = explode(",",$request->status); + $selectedStatuses = explode(",", $request->status); $sortColumn = $request->sortColumn ?? 'status_sortorder.sortorder'; - $sortOrder= $request->sortOrder ?? 'asc'; + $sortOrder = $request->sortOrder ?? 'asc'; - if($request->has('sortColumn')) session(['sortColumn' => $sortColumn]); + if ($request->has('sortColumn')) session(['sortColumn' => $sortColumn]); else $sortColumn = session('sortColumn'); - - if($request->has('sortOrder')) session(['sortOrder' => $sortOrder]); + + if ($request->has('sortOrder')) session(['sortOrder' => $sortOrder]); else $sortOrder = session('sortOrder'); - if($request->has('search')) session(['search' => $request->search]); + if ($request->has('search')) session(['search' => $request->search]); else $search = session('search') ?? ''; - if($request->has('status')) session((['status' => $request->status])); - else $selectedStatuses = session('status') ? explode(",",session('status')) : []; - + if ($request->has('status')) session((['status' => $request->status])); + else $selectedStatuses = session('status') ? explode(",", session('status')) : []; + $tasksQuery = Task::select( 'task.id', 'task.status', @@ -129,64 +128,63 @@ public function show(Request $request, User $user) 'task_flag.flag_id', 'status_sortorder.sortorder' ) - ->leftJoin('photo', 'task.id', '=', 'photo.task_id') - ->leftJoin('task_flag', 'task.id', '=', 'task_flag.task_id') - ->leftJoin('pa_flag', 'pa_flag.id', '=', 'task_flag.flag_id') - ->leftJoin('status_sortorder', 'task.status', '=', 'status_sortorder.status') - ->where('task.user_id', $user->id) - ->where('task.flg_deleted', 0); - - + ->leftJoin('photo', 'task.id', '=', 'photo.task_id') + ->leftJoin('task_flag', 'task.id', '=', 'task_flag.task_id') + ->leftJoin('pa_flag', 'pa_flag.id', '=', 'task_flag.flag_id') + ->leftJoin('status_sortorder', 'task.status', '=', 'status_sortorder.status') + ->where('task.user_id', $user->id) + ->where('task.flg_deleted', 0); + + if (!empty($search)) { $tasksQuery->where('task.name', 'LIKE', '%' . $search . '%'); } - - - - if($selectedStatuses) { + + + + if ($selectedStatuses) { $filtersVal = $selectedStatuses; - if(!in_array('new',$selectedStatuses)) $tasksQuery->where('task.status','!=','new'); - if(!in_array('open',$selectedStatuses)) $tasksQuery->where('task.status','!=','open'); - if(!in_array('data provided',$selectedStatuses)) $tasksQuery->where('task.status','!=','data provided'); - if(!in_array('returned',$selectedStatuses)) $tasksQuery->where('task.status','!=','returned'); - if(!in_array('accepted',$selectedStatuses)) { - $tasksQuery->where(function($q){ - $q->whereNull('task_flag.flag_id')->orWhere('task_flag.flag_id','!=',1); + if (!in_array('new', $selectedStatuses)) $tasksQuery->where('task.status', '!=', 'new'); + if (!in_array('open', $selectedStatuses)) $tasksQuery->where('task.status', '!=', 'open'); + if (!in_array('data provided', $selectedStatuses)) $tasksQuery->where('task.status', '!=', 'data provided'); + if (!in_array('returned', $selectedStatuses)) $tasksQuery->where('task.status', '!=', 'returned'); + if (!in_array('accepted', $selectedStatuses)) { + $tasksQuery->where(function ($q) { + $q->whereNull('task_flag.flag_id')->orWhere('task_flag.flag_id', '!=', 1); }); - } - if(!in_array('declined',$selectedStatuses)) { - $tasksQuery->where(function($q){ - $q->whereNull('task_flag.flag_id')->orWhere('task_flag.flag_id','!=',2); + if (!in_array('declined', $selectedStatuses)) { + $tasksQuery->where(function ($q) { + $q->whereNull('task_flag.flag_id')->orWhere('task_flag.flag_id', '!=', 2); }); } } - - - if($sortColumn && $sortOrder){ - $tasksQuery->orderBy($sortColumn,$sortOrder); - }else{ + + + if ($sortColumn && $sortOrder) { + $tasksQuery->orderBy($sortColumn, $sortOrder); + } else { $tasksQuery->orderByRaw('status_sortorder.sortorder ASC, created DESC'); } $tasksQuery->groupBy([ - 'task.id', - 'task.status', - 'task.name', - 'task.text', - 'date_created', - 'task_due_date', + 'task.id', + 'task.status', + 'task.name', + 'task.text', + 'date_created', + 'task_due_date', 'task_flag.flag_id', 'status_sortorder.sortorder' ]); - + $tasks = $tasksQuery->paginate(10); - foreach($tasks as $task){ + foreach ($tasks as $task) { $task['verified'] = $this->photos_verified_status($task['id']); } - $selectedStatuses = implode(",",$selectedStatuses); - return Inertia::render('Tasks/Index',compact('tasks','sortColumn','sortOrder','search', 'user','selectedStatuses','filtersVal')); + $selectedStatuses = implode(",", $selectedStatuses); + return Inertia::render('Tasks/Index', compact('tasks', 'sortColumn', 'sortOrder', 'search', 'user', 'selectedStatuses', 'filtersVal')); } /** @@ -194,7 +192,7 @@ public function show(Request $request, User $user) */ public function edit(User $user) { - return Inertia::render('Users/Edit',compact('user')); + return Inertia::render('Users/Edit', compact('user')); } /** @@ -216,7 +214,7 @@ public function update(Request $request, User $user) 'vat' => $request->vat, 'timestamp' => Carbon::now()->format('Y-m-d H:i:s') ]); - if($request->password && !empty($request->password)) $user->update(['pswd' => sha1($request->password) ]); + if ($request->password && !empty($request->password)) $user->update(['pswd' => sha1($request->password)]); return redirect()->route('users.index'); } @@ -225,57 +223,102 @@ public function update(Request $request, User $user) */ public function destroy(User $user) { - $user->update(['active'=>0]); + $user->update(['active' => 0]); return redirect()->back(); } - public static function photos_verified_status($task_id){ + public static function photos_verified_status($task_id) + { $return = 'incomplete'; $verified = true; - $photos = Photo::select('id', 'flg_checked_location', 'flg_original')->where('task_id', $task_id)->where('flg_deleted',0)->get(); + $photos = Photo::select('id', 'flg_checked_location', 'flg_original')->where('task_id', $task_id)->where('flg_deleted', 0)->get(); foreach ($photos as $key => $photo) { - if ($photo['flg_checked_location'] === 0){ - $return = 'not_verified'; - $verified = false; - } else if (empty($photo['flg_checked_location'])){ - if ($return!='not_verified'){ - $return = 'incomplete'; - } - $verified = false; - } else { - if ($verified){ - $return = 'verified'; + if ($photo['flg_checked_location'] === 0) { + $return = 'not_verified'; + $verified = false; + } else if (empty($photo['flg_checked_location'])) { + if ($return != 'not_verified') { + $return = 'incomplete'; + } + $verified = false; + } else { + if ($verified) { + $return = 'verified'; + } } - } - if ($photo['flg_original'] === 0){ - $return = 'not_verified'; - $verified = false; - } else if (empty($photo['flg_original'])){ - if ($return!='not_verified'){ - $return = 'incomplete'; + if ($photo['flg_original'] === 0) { + $return = 'not_verified'; + $verified = false; + } else if (empty($photo['flg_original'])) { + if ($return != 'not_verified') { + $return = 'incomplete'; + } + $verified = false; + } else { + if ($verified) { + $return = 'verified'; + } } - $verified = false; - } else { - if ($verified){ - $return = 'verified'; - } - } } return $return; - } + } + + /** + * @OA\Post( + * path="/comm_login", + * tags={"Authorization"}, + * summary="Get Bearer Token", + * @OA\RequestBody( + * required=true, + * @OA\MediaType( + * mediaType="multipart/form-data", + * @OA\Schema( + * @OA\Property( + * property="login", + * type="string", + * example="user" + * ), + * @OA\Property( + * property="pswd", + * type="string", + * example="1234" + * ) + * ) + * ) + * ), + * @OA\Response( + * response=200, + * description="Successful response", + * @OA\JsonContent( + * @OA\Property(property="status", type="string", example="ok"), + * @OA\Property(property="error_message", type="string", example=null), + * @OA\Property(property="user", type="object"), + * @OA\Property(property="token", type="string", example="1|abc123token") + * ) + * ), + * @OA\Response( + * response=401, + * description="Authentication failed", + * @OA\JsonContent( + * @OA\Property(property="status", type="string", example="error"), + * @OA\Property(property="error_msg", type="string", example="bad login or password") + * ) + * ) + * ) + */ + public function createToken(Request $request) + { - public function createToken(Request $request){ - - $validator = Validator::make($request->all(),[ + $validator = Validator::make($request->all(), [ 'login' => 'required', 'pswd' => 'required' ]); $error_response = ['status' => 'error', 'error_msg' => 'bad login or password']; - if($validator->fails()) return response()->json($error_response); + if ($validator->fails()) return response()->json($error_response); - $user = User::select('id','name','surname','identification_number','email','vat')->where('login',trim($request->login))->where('pswd',sha1(trim($request->pswd)))->first(); + $user = User::select('id', 'name', 'surname', 'identification_number', 'email', 'vat')->where('login', trim($request->login))->where('pswd', sha1(trim($request->pswd)))->first(); - if($user){ + if ($user) { $token = $user->createToken($request->login)->plainTextToken; return response()->json([ @@ -284,48 +327,47 @@ public function createToken(Request $request){ 'user' => $user, 'token' => $token ]); - - }else{ + } else { return response()->json($error_response); } - } + } public function unassignedUsers(Request $request) { - $users = User:: - join('user_role as ur', 'user.id', '=', 'ur.user_id') + $users = User::join('user_role as ur', 'user.id', '=', 'ur.user_id') ->select('user.id', 'user.login', 'user.name', 'user.surname', 'user.identification_number', 'user.vat', 'user.email') ->where('ur.role_id', '=', User::FARMER_ROLE) - ->where('user.pa_id',0); + ->where('user.pa_id', 0); $sortColumn = 'id'; $sortOrder = 'asc'; $search = $request->search; - if($request->search){ - $users = $users->where(function($q) use($request){ - $q->orWhere('user.name','ILIKE','%'.$request->search.'%') - ->orWhere('user.surname','ILIKE','%'.$request->search.'%') - ->orWhere('user.identification_number','ILIKE','%'.$request->search.'%'); + if ($request->search) { + $users = $users->where(function ($q) use ($request) { + $q->orWhere('user.name', 'ILIKE', '%' . $request->search . '%') + ->orWhere('user.surname', 'ILIKE', '%' . $request->search . '%') + ->orWhere('user.identification_number', 'ILIKE', '%' . $request->search . '%'); }); } - if($request->sortColumn && $request->sortOrder) { + if ($request->sortColumn && $request->sortOrder) { $sortColumn = $request->sortColumn; $sortOrder = $request->sortOrder; } - $users->orderBy($sortColumn,$sortOrder); + $users->orderBy($sortColumn, $sortOrder); $users = $users->paginate(10); - foreach($users as $user){ - $user->tasks_count=User::getFarmerCounts($user['id'],'tasks'); - $user->photo_count=User::getFarmerCounts($user['id'],'photos'); - $user->unassigned_photos_count=User::getFarmerCounts($user['id'],'unassigned_photos'); - $user->tasks_provided_count=User::getFarmerCounts($user['id'],'tasks_provided'); + foreach ($users as $user) { + $user->tasks_count = User::getFarmerCounts($user['id'], 'tasks'); + $user->photo_count = User::getFarmerCounts($user['id'], 'photos'); + $user->unassigned_photos_count = User::getFarmerCounts($user['id'], 'unassigned_photos'); + $user->tasks_provided_count = User::getFarmerCounts($user['id'], 'tasks_provided'); } - return Inertia::render('Users/Unassigned',compact('users','sortColumn','sortOrder','search')); + return Inertia::render('Users/Unassigned', compact('users', 'sortColumn', 'sortOrder', 'search')); } - public function assign_user($id){ + public function assign_user($id) + { $user = User::find($id); $user->update(['pa_id' => Auth::user()->pa_id]); return redirect()->route('users.index'); diff --git a/app/Http/Resources/BuildingCollection.php b/app/Http/Resources/BuildingCollection.php new file mode 100644 index 00000000..a3ad8a82 --- /dev/null +++ b/app/Http/Resources/BuildingCollection.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => BuildingFeatureResource::collection($this->collection), + ]; + } +} \ No newline at end of file diff --git a/app/Http/Resources/BuildingCollectionV4.php b/app/Http/Resources/BuildingCollectionV4.php new file mode 100644 index 00000000..99cec131 --- /dev/null +++ b/app/Http/Resources/BuildingCollectionV4.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => BuildingFeatureResourceV4::collection($this->collection), + ]; + } +} \ No newline at end of file diff --git a/app/Http/Resources/BuildingFeatureResource.php b/app/Http/Resources/BuildingFeatureResource.php new file mode 100644 index 00000000..00910b77 --- /dev/null +++ b/app/Http/Resources/BuildingFeatureResource.php @@ -0,0 +1,45 @@ + + */ + public function toArray(Request $request): array + { + $geoJson = DB::selectOne("SELECT ST_AsGeoJSON(ST_Transform(geometry, 4326)) as geojson FROM bld_fts_building WHERE osid = ?", [$this->osid]); + + return [ + 'type' => 'Feature', + 'id' => $this->osid, + 'properties' => [ + 'osid' => $this->osid, + 'uprn' => $this->buildingAddresses->map(function ($address) { + return ['uprn' => $address->uprn]; + }), + 'postcode' => $this->postcode ?? null, + 'description' => $this->description ?? null, + 'constructionmaterial' => $this->constructionmaterial ?? null, + 'roofmaterial' => $this->roofmaterial_primarymaterial ?? null, + 'buildinguse' => $this->buildinguse ?? null, + 'numberoffloors' => $this->numberoffloors ?? null, + 'connectivity' => $this->connectivity ?? null, + 'theme' => $this->theme ?? null, + 'area' => $this->geometry_area_m2 ?? null, + 'sites' => $this->sites->map(function ($site) { + return ['site_id' => $site->osid]; + }), + ], + 'geometry' => $geoJson ? json_decode($geoJson->geojson) : null + ]; + } +} diff --git a/app/Http/Resources/BuildingFeatureResourceV4.php b/app/Http/Resources/BuildingFeatureResourceV4.php new file mode 100644 index 00000000..1b1f8e47 --- /dev/null +++ b/app/Http/Resources/BuildingFeatureResourceV4.php @@ -0,0 +1,128 @@ + + */ + public function toArray(Request $request): array + { + $geoJson = DB::selectOne("SELECT ST_AsGeoJSON(ST_Transform(geometry, 4326)) as geojson FROM bld_fts_building WHERE osid = ?", [$this->osid]); + + return [ + 'type' => 'Feature', + 'id' => $this->osid, + 'properties' => [ + 'osid' => $this->osid, + 'versiondate' => $this->versiondate ?? null, + 'versionavailablefromdate' => $this->versionavailablefromdate ?? null, + 'versionavailabletodate' => $this->versionavailabletodate ?? null, + 'changetype' => $this->changetype ?? null, + 'geometry_area_m2' => $this->geometry_area_m2 ?? null, + 'geometry_updatedate' => $this->geometry_updatedate ?? null, + 'theme' => $this->theme ?? null, + 'description' => $this->description ?? null, + 'description_updatedate' => $this->description_updatedate ?? null, + 'physicalstate' => $this->physicalstate ?? null, + 'physicalstate_updatedate' => $this->physicalstate_updatedate ?? null, + 'buildingpartcount' => $this->buildingpartcount ?? null, + 'isinsite' => $this->isinsite ?? null, + 'primarysiteid' => $this->primarysiteid ?? null, + 'containingsitecount' => $this->containingsitecount ?? null, + 'mainbuildingid' => $this->mainbuildingid ?? null, + 'mainbuildingid_ismainbuilding' => $this->mainbuildingid_ismainbuilding ?? null, + 'mainbuildingid_updatedate' => $this->mainbuildingid_updatedate ?? null, + 'buildinguse' => $this->buildinguse ?? null, + 'buildinguse_oslandusetiera' => $this->buildinguse_oslandusetiera ?? null, + 'buildinguse_addresscount_total' => $this->buildinguse_addresscount_total ?? null, + 'buildinguse_addresscount_residential' => $this->buildinguse_addresscount_residential ?? null, + 'buildinguse_addresscount_commercial' => $this->buildinguse_addresscount_commercial ?? null, + 'buildinguse_addresscount_other' => $this->buildinguse_addresscount_other ?? null, + 'buildinguse_updatedate' => $this->buildinguse_updatedate ?? null, + 'connectivity' => $this->connectivity ?? null, + 'connectivity_count' => $this->connectivity_count ?? null, + 'connectivity_updatedate' => $this->connectivity_updatedate ?? null, + 'constructionmaterial' => $this->constructionmaterial ?? null, + 'constructionmaterial_evidencedate' => $this->constructionmaterial_evidencedate ?? null, + 'constructionmaterial_updatedate' => $this->constructionmaterial_updatedate ?? null, + 'constructionmaterial_source' => $this->constructionmaterial_source ?? null, + 'constructionmaterial_capturemethod' => $this->constructionmaterial_capturemethod ?? null, + 'constructionmaterial_thirdpartyprovenance' => $this->constructionmaterial_thirdpartyprovenance ?? null, + 'buildingage_period' => $this->buildingage_period ?? null, + 'buildingage_year' => $this->buildingage_year ?? null, + 'buildingage_evidencedate' => $this->buildingage_evidencedate ?? null, + 'buildingage_updatedate' => $this->buildingage_updatedate ?? null, + 'buildingage_source' => $this->buildingage_source ?? null, + 'buildingage_capturemethod' => $this->buildingage_capturemethod ?? null, + 'buildingage_thirdpartyprovenance' => $this->buildingage_thirdpartyprovenance ?? null, + 'basementpresence' => $this->basementpresence ?? null, + 'basementpresence_selfcontained' => $this->basementpresence_selfcontained ?? null, + 'basementpresence_evidencedate' => $this->basementpresence_evidencedate ?? null, + 'basementpresence_updatedate' => $this->basementpresence_updatedate ?? null, + 'basementpresence_source' => $this->basementpresence_source ?? null, + 'basementpresence_capturemethod' => $this->basementpresence_capturemethod ?? null, + 'basementpresence_thirdpartyprovenance' => $this->basementpresence_thirdpartyprovenance ?? null, + 'numberoffloors' => $this->numberoffloors ?? null, + 'numberoffloors_evidencedate' => $this->numberoffloors_evidencedate ?? null, + 'numberoffloors_updatedate' => $this->numberoffloors_updatedate ?? null, + 'numberoffloors_source' => $this->numberoffloors_source ?? null, + 'numberoffloors_capturemethod' => $this->numberoffloors_capturemethod ?? null, + 'height_absolutemin_m' => $this->height_absolutemin_m ?? null, + 'height_absoluteroofbase_m' => $this->height_absoluteroofbase_m ?? null, + 'height_absolutemax_m' => $this->height_absolutemax_m ?? null, + 'height_relativeroofbase_m' => $this->height_relativeroofbase_m ?? null, + 'height_relativemax_m' => $this->height_relativemax_m ?? null, + 'height_confidencelevel' => $this->height_confidencelevel ?? null, + 'height_evidencedate' => $this->height_evidencedate ?? null, + 'height_updatedate' => $this->height_updatedate ?? null, + 'roofmaterial_primarymaterial' => $this->roofmaterial_primarymaterial ?? null, + 'roofmaterial_solarpanelpresence' => $this->roofmaterial_solarpanelpresence ?? null, + 'roofmaterial_greenroofpresence' => $this->roofmaterial_greenroofpresence ?? null, + 'roofmaterial_confidenceindicator' => $this->roofmaterial_confidenceindicator ?? null, + 'roofmaterial_evidencedate' => $this->roofmaterial_evidencedate ?? null, + 'roofmaterial_updatedate' => $this->roofmaterial_updatedate ?? null, + 'roofmaterial_capturemethod' => $this->roofmaterial_capturemethod ?? null, + 'roofshapeaspect_shape' => $this->roofshapeaspect_shape ?? null, + 'roofshapeaspect_areapitched_m2' => $this->roofshapeaspect_areapitched_m2 ?? null, + 'roofshapeaspect_areaflat_m2' => $this->roofshapeaspect_areaflat_m2 ?? null, + 'roofshapeaspect_areafacingnorth_m2' => $this->roofshapeaspect_areafacingnorth_m2 ?? null, + 'roofshapeaspect_areafacingnortheast_m2' => $this->roofshapeaspect_areafacingnortheast_m2 ?? null, + 'roofshapeaspect_areafacingeast_m2' => $this->roofshapeaspect_areafacingeast_m2 ?? null, + 'roofshapeaspect_areafacingsoutheast_m2' => $this->roofshapeaspect_areafacingsoutheast_m2 ?? null, + 'roofshapeaspect_areafacingsouth_m2' => $this->roofshapeaspect_areafacingsouth_m2 ?? null, + 'roofshapeaspect_areafacingsouthwest_m2' => $this->roofshapeaspect_areafacingsouthwest_m2 ?? null, + 'roofshapeaspect_areafacingwest_m2' => $this->roofshapeaspect_areafacingwest_m2 ?? null, + 'roofshapeaspect_areafacingnorthwest_m2' => $this->roofshapeaspect_areafacingnorthwest_m2 ?? null, + 'roofshapeaspect_areaindeterminable_m2' => $this->roofshapeaspect_areaindeterminable_m2 ?? null, + 'roofshapeaspect_areatotal_m2' => $this->roofshapeaspect_areatotal_m2 ?? null, + 'roofshapeaspect_confidenceindicator' => $this->roofshapeaspect_confidenceindicator ?? null, + 'roofshapeaspect_evidencedate' => $this->roofshapeaspect_evidencedate ?? null, + 'roofshapeaspect_updatedate' => $this->roofshapeaspect_updatedate ?? null, + 'roofshapeaspect_capturemethod' => $this->roofshapeaspect_capturemethod ?? null, + + // Existing relationship fields + 'uprn' => $this->buildingAddresses->map(function ($address) { + return ['uprn' => $address->uprn]; + }), + 'postcode' => $this->postcode ?? null, + 'sites' => $this->sites->map(function ($site) { + return ['site_id' => $site->osid]; + }), + + // Legacy field mappings for backward compatibility + 'area' => $this->geometry_area_m2 ?? null, + 'roofmaterial' => $this->roofmaterial_primarymaterial ?? null, + ], + 'geometry' => $geoJson ? json_decode($geoJson->geojson) : null + ]; + } +} diff --git a/app/Http/Resources/BuildingPartCollection.php b/app/Http/Resources/BuildingPartCollection.php new file mode 100644 index 00000000..77b4e3f3 --- /dev/null +++ b/app/Http/Resources/BuildingPartCollection.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => BuildingPartFeatureResource::collection($this->collection), + ]; + } +} diff --git a/app/Http/Resources/BuildingPartCollectionV2.php b/app/Http/Resources/BuildingPartCollectionV2.php new file mode 100644 index 00000000..0ef69213 --- /dev/null +++ b/app/Http/Resources/BuildingPartCollectionV2.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => BuildingPartFeatureResourceV2::collection($this->collection), + ]; + } +} diff --git a/app/Http/Resources/BuildingPartFeatureResource.php b/app/Http/Resources/BuildingPartFeatureResource.php new file mode 100644 index 00000000..6a4f50df --- /dev/null +++ b/app/Http/Resources/BuildingPartFeatureResource.php @@ -0,0 +1,47 @@ + + */ + public function toArray(Request $request): array + { + $geoJson = DB::selectOne("SELECT ST_AsGeoJSON(ST_Transform(geometry, 4326)) as geojson FROM bld_fts_buildingpart WHERE osid = ?", [$this->osid]); + + return [ + 'type' => 'Feature', + 'id' => $this->osid, + 'properties' => [ + 'osid' => $this->osid, + 'toid' => $this->toid, + 'description' => $this->description ?? null, + 'theme' => $this->theme ?? null, + 'absoluteheightroofbase' => $this->absoluteheightroofbase ?? null, + 'relativeheightroofbase' => $this->relativeheightroofbase ?? null, + 'absoluteheightmaximum' => $this->absoluteheightmaximum ?? null, + 'relativeheightmaximum' => $this->relativeheightmaximum ?? null, + 'absoluteheightminimum' => $this->absoluteheightminimum ?? null, + 'heightconfidencelevel' => $this->heightconfidencelevel ?? null, + 'oslandcovertiera' => $this->oslandcovertiera ?? null, + 'oslandcovertierb' => $this->oslandcovertierb ?? null, + 'oslandusetiera' => $this->oslandusetiera ?? null, + 'oslandusetierb' => $this->oslandusetierb ?? null, + 'associatedstructure' => $this->associatedstructure ?? null, + 'isobscured' => $this->isobscured ?? null, + 'physicallevel' => $this->physicallevel ?? null, + 'area' => $this->geometry_area ?? null + ], + 'geometry' => $geoJson ? json_decode($geoJson->geojson) : null + ]; + } +} diff --git a/app/Http/Resources/BuildingPartFeatureResourceV2.php b/app/Http/Resources/BuildingPartFeatureResourceV2.php new file mode 100644 index 00000000..1b2a6e7a --- /dev/null +++ b/app/Http/Resources/BuildingPartFeatureResourceV2.php @@ -0,0 +1,97 @@ + + */ + public function toArray(Request $request): array + { + $geoJson = DB::selectOne("SELECT ST_AsGeoJSON(ST_Transform(geometry, 4326)) as geojson FROM bld_fts_buildingpart_v2 WHERE osid = ?", [$this->osid]); + + return [ + 'type' => 'Feature', + 'id' => $this->osid, + 'properties' => [ + 'osid' => $this->osid, + 'toid' => $this->toid ?? null, + 'versiondate' => $this->versiondate ?? null, + 'versionavailablefromdate' => $this->versionavailablefromdate ?? null, + 'versionavailabletodate' => $this->versionavailabletodate ?? null, + 'firstdigitalcapturedate' => $this->firstdigitalcapturedate ?? null, + 'changetype' => $this->changetype ?? null, + 'geometry_area_m2' => $this->geometry_area_m2 ?? null, + 'geometry_evidencedate' => $this->geometry_evidencedate ?? null, + 'geometry_updatedate' => $this->geometry_updatedate ?? null, + 'geometry_capturemethod' => $this->geometry_capturemethod ?? null, + 'theme' => $this->theme ?? null, + 'description' => $this->description ?? null, + 'description_evidencedate' => $this->description_evidencedate ?? null, + 'description_updatedate' => $this->description_updatedate ?? null, + 'description_capturemethod' => $this->description_capturemethod ?? null, + 'oslandcovertiera' => $this->oslandcovertiera ?? null, + 'oslandcovertierb' => $this->oslandcovertierb ?? null, + 'oslandcover_evidencedate' => $this->oslandcover_evidencedate ?? null, + 'oslandcover_updatedate' => $this->oslandcover_updatedate ?? null, + 'oslandcover_capturemethod' => $this->oslandcover_capturemethod ?? null, + 'oslandusetiera' => $this->oslandusetiera ?? null, + 'oslandusetierb' => $this->oslandusetierb ?? null, + 'oslanduse_evidencedate' => $this->oslanduse_evidencedate ?? null, + 'oslanduse_updatedate' => $this->oslanduse_updatedate ?? null, + 'oslanduse_capturemethod' => $this->oslanduse_capturemethod ?? null, + 'height_absoluteroofbase_m' => $this->height_absoluteroofbase_m ?? null, + 'height_relativeroofbase_m' => $this->height_relativeroofbase_m ?? null, + 'height_absolutemax_m' => $this->height_absolutemax_m ?? null, + 'height_relativemax_m' => $this->height_relativemax_m ?? null, + 'height_absolutemin_m' => $this->height_absolutemin_m ?? null, + 'height_confidencelevel' => $this->height_confidencelevel ?? null, + 'height_evidencedate' => $this->height_evidencedate ?? null, + 'height_updatedate' => $this->height_updatedate ?? null, + 'associatedstructure' => $this->associatedstructure ?? null, + 'isobscured' => $this->isobscured ?? null, + 'physicallevel' => $this->physicallevel ?? null, + 'capturespecification' => $this->capturespecification ?? null, + 'containingsitecount' => $this->containingsitecount ?? null, + 'smallestsite_siteid' => $this->smallestsite_siteid ?? null, + 'smallestsite_landusetiera' => $this->smallestsite_landusetiera ?? null, + 'smallestsite_landusetierb' => $this->smallestsite_landusetierb ?? null, + 'largestsite_landusetiera' => $this->largestsite_landusetiera ?? null, + 'largestsite_landusetierb' => $this->largestsite_landusetierb ?? null, + 'nlud_code' => $this->nlud_code ?? null, + 'nlud_orderdescription' => $this->nlud_orderdescription ?? null, + 'nlud_groupdescription' => $this->nlud_groupdescription ?? null, + 'address_classificationcode' => $this->address_classificationcode ?? null, + 'address_primarydescription' => $this->address_primarydescription ?? null, + 'address_secondarydescription' => $this->address_secondarydescription ?? null, + 'lowertierlocalauthority_gsscode' => $this->lowertierlocalauthority_gsscode ?? null, + 'lowertierlocalauthority_count' => $this->lowertierlocalauthority_count ?? null, + 'status' => $this->status ?? null, + 'status_updatedate' => $this->status_updatedate ?? null, + + // Relationship fields + 'sites' => $this->buildingPartSiteRefs->map(function ($siteRef) { + return ['site_id' => $siteRef->siteid]; + }), + + // Legacy field mappings for backward compatibility + 'area' => $this->geometry_area_m2 ?? null, + 'absoluteheightroofbase' => $this->height_absoluteroofbase_m ?? null, + 'relativeheightroofbase' => $this->height_relativeroofbase_m ?? null, + 'absoluteheightmaximum' => $this->height_absolutemax_m ?? null, + 'relativeheightmaximum' => $this->height_relativemax_m ?? null, + 'absoluteheightminimum' => $this->height_absolutemin_m ?? null, + 'heightconfidencelevel' => $this->height_confidencelevel ?? null, + ], + 'geometry' => $geoJson ? json_decode($geoJson->geojson) : null + ]; + } +} diff --git a/app/Http/Resources/BuiltupAreaCollection.php b/app/Http/Resources/BuiltupAreaCollection.php new file mode 100644 index 00000000..3d5f7d7a --- /dev/null +++ b/app/Http/Resources/BuiltupAreaCollection.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => BuiltupAreaFeatureResource::collection($this->collection), + ]; + } + +} diff --git a/app/Http/Resources/BuiltupAreaFeatureResource.php b/app/Http/Resources/BuiltupAreaFeatureResource.php new file mode 100644 index 00000000..5e84974a --- /dev/null +++ b/app/Http/Resources/BuiltupAreaFeatureResource.php @@ -0,0 +1,50 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'Feature', + 'geometry' => $this->geometry, + 'id' => $this->fid, + 'properties' => [ + 'fid' => $this->fid, + 'bua24cd' => $this->bua24cd, + 'bua24nm' => $this->bua24nm, + 'bua24nmw' => $this->bua24nmw, + 'globalid' => $this->globalid, + 'areahectar' => $this->areahectar, + 'geometry_a' => $this->geometry_a, + 'color' => $this->stringToColour($this->bua24cd), + ], + ]; + } + + function stringToColour($str) { + $hash = 0; + $chars = str_split($str); + foreach ($chars as $char) { + $hash = ord($char) + (($hash << 5) - $hash); + } + + $colour = '#'; + for ($i = 0; $i < 3; $i++) { + $value = ($hash >> ($i * 8)) & 0xff; + $colour .= str_pad(dechex($value), 2, '0', STR_PAD_LEFT); + } + + return $colour; + } +} diff --git a/app/Http/Resources/DataMapPhotoCollection.php b/app/Http/Resources/DataMapPhotoCollection.php new file mode 100644 index 00000000..e3333828 --- /dev/null +++ b/app/Http/Resources/DataMapPhotoCollection.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => DataMapPhotoResource::collection($this->collection), + ]; + } + +} diff --git a/app/Http/Resources/DataMapPhotoResource.php b/app/Http/Resources/DataMapPhotoResource.php new file mode 100644 index 00000000..b40fd97d --- /dev/null +++ b/app/Http/Resources/DataMapPhotoResource.php @@ -0,0 +1,50 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'Feature', + 'geometry' => [ + 'type' => 'Point', + 'coordinates' => [(float)$this->lng, (float)$this->lat] + ], + 'id' => $this->id, + 'properties' => [ + 'id' => $this->id, + 'path' => $this->path, + 'file_name' => $this->file_name, + 'user_name' => $this->user_name, + 'user_id' => $this->user_id, + 'photo_heading' => $this->photo_heading, + 'accuracy' => $this->accuracy, + 'created' => $this->created, + 'altitude' => $this->altitude, + 'note' => $this->note, + 'device_manufacture' => $this->device_manufacture, + 'device_model' => $this->device_model, + 'device_platform' => $this->device_platform, + 'device_version' => $this->device_version, + 'network_info' => $this->network_info, + 'provider' => $this->provider, + 'lat' => $this->lat, + 'lng' => $this->lng, + 'link' => $this->link, + 'osnma_enabled' => $this->osnma_enabled, + 'osnma_validated' => $this->osnma_validated, + 'validated_sats' => $this->validated_sats, + ], + ]; + } +} diff --git a/app/Http/Resources/PhotoResource.php b/app/Http/Resources/PhotoResource.php new file mode 100644 index 00000000..0c65bad5 --- /dev/null +++ b/app/Http/Resources/PhotoResource.php @@ -0,0 +1,62 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'altitude' => $this->altitude, + 'vertical_view_angle' => $this->vertical_view_angle, + 'accuracy' => $this->accuracy, + 'distance' => $this->distance, + 'nmea_distance' => $this->nmea_distance, + 'device_manufacture' => $this->device_manufacture, + 'device_model' => $this->device_model, + 'device_platform' => $this->device_platform, + 'device_version' => $this->device_version, + 'efkLatGpsL1' => $this->efkLatGpsL1, + 'efkLngGpsL1' => $this->efkLngGpsL1, + 'efkAltGpsL1' => $this->efkAltGpsL1, + 'efkTimeGpsL1' => $this->efkTimeGpsL1, + 'efkLatGpsL5' => $this->efkLatGpsL5, + 'efkLngGpsL5' => $this->efkLngGpsL5, + 'efkAltGpsL5' => $this->efkAltGpsL5, + 'efkTimeGpsL5' => $this->efkTimeGpsL5, + 'efkLatGpsIf' => $this->efkLatGpsIf, + 'efkLngGpsIf' => $this->efkLngGpsIf, + 'efkAltGpsIf' => $this->efkAltGpsIf, + 'efkTimeGpsIf' => $this->efkTimeGpsIf, + 'efkLatGalE1' => $this->efkLatGalE1, + 'efkLngGalE1' => $this->efkLngGalE1, + 'efkAltGalE1' => $this->efkAltGalE1, + 'efkTimeGalE1' => $this->efkTimeGalE1, + 'efkLatGalE5' => $this->efkLatGalE5, + 'efkLngGalE5' => $this->efkLngGalE5, + 'efkAltGalE5' => $this->efkAltGalE5, + 'efkTimeGalE5' => $this->efkTimeGalE5, + 'efkLatGalIf' => $this->efkLatGalIf, + 'efkLngGalIf' => $this->efkLngGalIf, + 'efkAltGalIf' => $this->efkAltGalIf, + 'efkTimeGalIf' => $this->efkTimeGalIf, + 'note' => $this->note, + 'lat' => rtrim($this->lat,0), + 'lng' => rtrim($this->lng,0), + 'photo_heading' => $this->photo_heading, + 'created' => $this->created, + 'digest' => $this->digest, + 'id' => $this->id, + 'link' => $this->link, + 'angle' => $this->angle + ]; + } +} diff --git a/app/Http/Resources/ShapeFeatureResource.php b/app/Http/Resources/ShapeFeatureResource.php index 1785bd09..82395093 100644 --- a/app/Http/Resources/ShapeFeatureResource.php +++ b/app/Http/Resources/ShapeFeatureResource.php @@ -28,7 +28,24 @@ public function toArray(Request $request): array 'globalid' => $this->globalid, 'latitude' => $this->latitude, 'longitude' => $this->longitude, + 'color' => $this->stringToColour($this->wd24cd), ], ]; } + + function stringToColour($str) { + $hash = 0; + $chars = str_split($str); + foreach ($chars as $char) { + $hash = ord($char) + (($hash << 5) - $hash); + } + + $colour = '#'; + for ($i = 0; $i < 3; $i++) { + $value = ($hash >> ($i * 8)) & 0xff; + $colour .= str_pad(dechex($value), 2, '0', STR_PAD_LEFT); + } + + return $colour; + } } diff --git a/app/Http/Resources/SiteCollection.php b/app/Http/Resources/SiteCollection.php new file mode 100644 index 00000000..a54e2c58 --- /dev/null +++ b/app/Http/Resources/SiteCollection.php @@ -0,0 +1,23 @@ + + */ + public function toArray(Request $request): array + { + return [ + 'type' => 'FeatureCollection', + 'features' => SiteFeatureResource::collection($this->collection), + ]; + } +} \ No newline at end of file diff --git a/app/Http/Resources/SiteFeatureResource.php b/app/Http/Resources/SiteFeatureResource.php new file mode 100644 index 00000000..c743874b --- /dev/null +++ b/app/Http/Resources/SiteFeatureResource.php @@ -0,0 +1,89 @@ + + */ + public function toArray(Request $request): array + { + $geoJson = DB::selectOne("SELECT ST_AsGeoJSON(ST_Transform(geometry, 4326)) as geojson FROM lus_fts_site WHERE osid = ?", [$this->osid]); + + return [ + 'type' => 'Feature', + 'id' => $this->osid, + 'properties' => [ + 'osid' => $this->osid, + 'toid' => $this->toid ?? null, + 'versiondate' => $this->versiondate ?? null, + 'versionavailablefromdate' => $this->versionavailablefromdate ?? null, + 'versionavailabletodate' => $this->versionavailabletodate ?? null, + 'changetype' => $this->changetype ?? null, + 'geometry_area_m2' => $this->geometry_area_m2 ?? null, + 'geometry_evidencedate' => $this->geometry_evidencedate ?? null, + 'geometry_updatedate' => $this->geometry_updatedate ?? null, + 'geometry_capturemethod' => $this->geometry_capturemethod ?? null, + 'theme' => $this->theme ?? null, + 'description' => $this->description ?? null, + 'description_evidencedate' => $this->description_evidencedate ?? null, + 'description_updatedate' => $this->description_updatedate ?? null, + 'description_capturemethod' => $this->description_capturemethod ?? null, + 'oslandusetiera' => $this->oslandusetiera ?? null, + 'oslandusetierb' => $this->oslandusetierb ?? null, + 'oslanduse_evidencedate' => $this->oslanduse_evidencedate ?? null, + 'oslanduse_updatedate' => $this->oslanduse_updatedate ?? null, + 'oslanduse_capturemethod' => $this->oslanduse_capturemethod ?? null, + 'stakeholder' => $this->stakeholder ?? null, + 'name1_text' => $this->name1_text ?? null, + 'name1_language' => $this->name1_language ?? null, + 'name1_evidencedate' => $this->name1_evidencedate ?? null, + 'name1_updatedate' => $this->name1_updatedate ?? null, + 'name2_text' => $this->name2_text ?? null, + 'name2_language' => $this->name2_language ?? null, + 'name2_evidencedate' => $this->name2_evidencedate ?? null, + 'name2_updatedate' => $this->name2_updatedate ?? null, + 'extentdefinition' => $this->extentdefinition ?? null, + 'matcheduprn' => $this->matcheduprn ?? null, + 'matcheduprn_method' => $this->matcheduprn_method ?? null, + 'address_classificationcode' => $this->address_classificationcode ?? null, + 'address_primarydescription' => $this->address_primarydescription ?? null, + 'address_secondarydescription' => $this->address_secondarydescription ?? null, + 'address_classificationcorrelation' => $this->address_classificationcorrelation ?? null, + 'address_classificationsource' => $this->address_classificationsource ?? null, + 'addresscount_total' => $this->addresscount_total ?? null, + 'addresscount_residential' => $this->addresscount_residential ?? null, + 'addresscount_commercial' => $this->addresscount_commercial ?? null, + 'addresscount_other' => $this->addresscount_other ?? null, + 'nlud_code' => $this->nlud_code ?? null, + 'nlud_orderdescription' => $this->nlud_orderdescription ?? null, + 'nlud_groupdescription' => $this->nlud_groupdescription ?? null, + 'mainbuildingid' => $this->mainbuildingid ?? null, + 'status' => $this->status ?? null, + 'status_updatedate' => $this->status_updatedate ?? null, + + // Relationship fields + 'buildings' => $this->buildings->map(function ($building) { + return ['osid' => $building->osid]; + }), + 'buildingparts' => $this->buildingPartSiteRefs->map(function ($buildingPart) { + return ['osid' => $buildingPart->osid]; + }), + + // Legacy field mappings for backward compatibility + 'uprn' => $this->matcheduprn, + 'buildinguse' => $this->oslandusetiera ?? null, + 'area' => $this->geometry_area_m2 ?? null, + ], + 'geometry' => $geoJson ? json_decode($geoJson->geojson) : null + ]; + } +} diff --git a/app/Models/Attr/Building.php b/app/Models/Attr/Building.php new file mode 100644 index 00000000..5f4894f2 --- /dev/null +++ b/app/Models/Attr/Building.php @@ -0,0 +1,123 @@ +hasMany(BuildingAddress::class, 'buildingid', 'osid'); + } + + public function buildingPartLinks() + { + return $this->hasMany(BuildingPartLink::class, 'buildingid', 'osid'); + } + + public function sites() + { + return $this->belongsToMany(Site::class, 'bld_fts_building_bldtostecrossref', 'buildingid', 'siteid'); + } +} diff --git a/app/Models/Attr/BuildingAddress.php b/app/Models/Attr/BuildingAddress.php new file mode 100644 index 00000000..668adabf --- /dev/null +++ b/app/Models/Attr/BuildingAddress.php @@ -0,0 +1,33 @@ +belongsTo(Uprn::class, 'uprn', 'uprn'); + } + + public function building() + { + return $this->belongsTo(Building::class, 'buildingid', 'osid'); + } +} diff --git a/app/Models/Attr/BuildingPart.php b/app/Models/Attr/BuildingPart.php index 3444ea39..38705c51 100644 --- a/app/Models/Attr/BuildingPart.php +++ b/app/Models/Attr/BuildingPart.php @@ -12,6 +12,11 @@ class BuildingPart extends Model protected $table = 'bld_fts_buildingpart'; protected $connection = 'pgsql'; + protected $primaryKey = 'osid'; + public $incrementing = false; + public $timestamps = false; + + protected $keyType = 'string'; protected $fillable = [ 'osid', 'toid', @@ -160,4 +165,9 @@ public function geojson(): Attribute ); } + public function buildingPartLinks() + { + return $this->hasMany(BuildingPartLink::class, 'buildingpartid', 'osid'); + } + } diff --git a/app/Models/Attr/BuildingPartLink.php b/app/Models/Attr/BuildingPartLink.php new file mode 100644 index 00000000..622b9a29 --- /dev/null +++ b/app/Models/Attr/BuildingPartLink.php @@ -0,0 +1,34 @@ +belongsTo(Building::class, 'buildingid', 'osid'); + } + + public function buildingPart() + { + return $this->belongsTo(BuildingPart::class, 'buildingpartid', 'osid'); + } + +} diff --git a/app/Models/Attr/BuildingPartSiteRefV2.php b/app/Models/Attr/BuildingPartSiteRefV2.php new file mode 100644 index 00000000..112f80a1 --- /dev/null +++ b/app/Models/Attr/BuildingPartSiteRefV2.php @@ -0,0 +1,34 @@ +belongsTo(BuildingPartV2::class, 'buildingpartid', 'osid'); + } + + public function site() + { + return $this->belongsTo(Site::class, 'siteid', 'osid'); + } + +} diff --git a/app/Models/Attr/BuildingPartV2.php b/app/Models/Attr/BuildingPartV2.php new file mode 100644 index 00000000..91afd6fd --- /dev/null +++ b/app/Models/Attr/BuildingPartV2.php @@ -0,0 +1,218 @@ + 'FeatureCollection', + 'features' => [ + [ + 'geometry' => json_decode($this->geometry_json), + 'id' => $this->osid, + 'properties' => [ + 'TOID' => $this->toid, + 'versiondate' => $this->versiondate, + 'versionavailablefromdate' => $this->versionavailablefromdate , + 'versionavailabletodate' => $this->versionavailabletodate , + 'firstdigitalcapturedate' => $this->firstdigitalcapturedate , + 'changetype' => $this->changetype , + 'geometry_area_m2' => $this->geometry_area_m2 , + 'geometry_evidencedate' => $this->geometry_evidencedate , + 'geometry_updatedate' => $this->geometry_updatedate , + 'geometry_capturemethod' => $this->geometry_capturemethod , + 'theme' => $this->theme , + 'description' => $this->description , + 'description_evidencedate' => $this->description_evidencedate , + 'description_updatedate' => $this->description_updatedate , + 'description_capturemethod' => $this->description_capturemethod , + 'oslandcovertiera' => $this->oslandcovertiera , + 'oslandcovertierb' => $this->oslandcovertierb , + 'oslandcover_evidencedate' => $this->oslandcover_evidencedate , + 'oslandcover_updatedate' => $this->oslandcover_updatedate , + 'oslandcover_capturemethod' => $this->oslandcover_capturemethod , + 'oslandusetiera' => $this->oslandusetiera , + 'oslandusetierb' => $this->oslandusetierb , + 'oslanduse_evidencedate' => $this->oslanduse_evidencedate , + 'oslanduse_updatedate' => $this->oslanduse_updatedate , + 'oslanduse_capturemethod' => $this->oslanduse_capturemethod, + 'height_absoluteroofbase_m' => $this->height_absoluteroofbase_m, + 'height_relativeroofbase_m' => $this->height_relativeroofbase_m, + 'height_absolutemax_m' => $this->height_absolutemax_m, + 'height_relativemax_m' => $this->height_relativemax_m, + 'height_absolutemin_m' => $this->height_absolutemin_m, + 'height_confidencelevel' => $this->height_confidencelevel, + 'height_evidencedate' => $this->height_evidencedate, + 'height_updatedate' => $this->height_updatedate, + 'associatedstructure' => $this->associatedstructure, + 'isobscured' => $this->isobscured, + 'physicallevel' => $this->physicallevel, + 'capturespecification' => $this->capturespecification, + 'containingsitecount' => $this->containingsitecount, + 'smallestsite_siteid' => $this->smallestsite_siteid, + 'smallestsite_landusetiera' => $this->smallestsite_landusetiera, + 'smallestsite_landusetierb' => $this->smallestsite_landusetierb, + 'largestsite_landusetiera' => $this->largestsite_landusetiera, + 'largestsite_landusetierb' => $this->largestsite_landusetierb, + 'nlud_code' => $this->nlud_code, + 'nlud_orderdescription' => $this->nlud_orderdescription, + 'nlud_groupdescription' => $this->nlud_groupdescription, + 'address_classificationcode' => $this->address_classificationcode, + 'address_primarydescription' => $this->address_primarydescription, + 'address_secondarydescription' => $this->address_secondarydescription, + 'lowertierlocalauthority_gsscode' => $this->lowertierlocalauthority_gsscode, + 'lowertierlocalauthority_count' => $this->lowertierlocalauthority_count, + 'status' => $this->status, + 'status_updatedate' => $this->status_updatedate + + ], + 'type' => 'Feature', + ] + ] + ]; + } + ); + } + + public function buildingPartSiteRefs() + { + return $this->hasMany(BuildingPartSiteRefV2::class, 'buildingpartid', 'osid'); + } + +} diff --git a/app/Models/Attr/BuildingSiteLink.php b/app/Models/Attr/BuildingSiteLink.php new file mode 100644 index 00000000..42ff48bd --- /dev/null +++ b/app/Models/Attr/BuildingSiteLink.php @@ -0,0 +1,23 @@ + 'date', + 'versionavailablefromdate' => 'datetime', + 'versionavailabletodate' => 'datetime', + 'geometry_evidencedate' => 'date', + 'geometry_updatedate' => 'date', + 'description_evidencedate' => 'date', + 'description_updatedate' => 'date', + 'oslanduse_evidencedate' => 'date', + 'oslanduse_updatedate' => 'date', + 'name1_evidencedate' => 'date', + 'name1_updatedate' => 'date', + 'name2_evidencedate' => 'date', + 'name2_updatedate' => 'date', + 'status_updatedate' => 'date', + 'addresscount_total' => 'integer', + 'addresscount_residential' => 'integer', + 'addresscount_commercial' => 'integer', + 'addresscount_other' => 'integer', + ]; + + public function buildings() + { + return $this->belongsToMany(Building::class, 'bld_fts_building_bldtostecrossref', 'siteid', 'buildingid'); + } + + public function buildingPartSiteRefs() + { + return $this->belongsToMany(BuildingPartV2::class, 'bld_fts_buildingpart_siteref_v2', 'siteid', 'buildingpartid'); + } +} diff --git a/app/Models/Attr/SiteAddressReference.php b/app/Models/Attr/SiteAddressReference.php new file mode 100644 index 00000000..0ef45fce --- /dev/null +++ b/app/Models/Attr/SiteAddressReference.php @@ -0,0 +1,20 @@ +hasMany(BuildingAddress::class, 'uprn', 'uprn'); + } + + public function epcCertificates() + { + return $this->hasMany(EpcCertificate::class, 'uprn', 'uprn'); + } + + /** + * Get the most recent EPC certificate based on lodgement_date + * + * @return EpcCertificate|null + */ + public function getLatestEpcCertificate() + { + return $this->epcCertificates() + ->orderBy('lodgement_date', 'desc') + ->first(); + } + + /** + * Get floor_level from the most recent EPC certificate + * + * @return int|null + */ + public function getFloorLevelFromEpc() + { + $latestEpc = $this->getLatestEpcCertificate(); + return $latestEpc ? $latestEpc->floor_level : null; + } } diff --git a/app/Models/BuiltupArea.php b/app/Models/BuiltupArea.php new file mode 100644 index 00000000..c797c7ae --- /dev/null +++ b/app/Models/BuiltupArea.php @@ -0,0 +1,67 @@ + 'integer', + 'objectid_1' => 'integer', + 'gsscode' => 'string', + 'bua24cd' => 'string', + 'bua24nm' => 'string', + 'bua24nmw' => 'string', + 'geometry_a' => 'integer', + 'areahectar' => 'float', + 'globalid' => 'string', + 'geometry' => 'array', + ]; + + public function newQuery() + { + return parent::newQuery()->select( + 'fid', + 'objectid_1', + 'gsscode', + 'bua24cd', + 'bua24nm', + 'bua24nmw', + 'geometry_a', + 'areahectar', + 'globalid', + DB::raw('public.ST_AsGeoJSON(st_transform(geometry, 4326)) as geometry') + ); + } +} diff --git a/app/Models/EntityLink.php b/app/Models/EntityLink.php new file mode 100644 index 00000000..5a1478bd --- /dev/null +++ b/app/Models/EntityLink.php @@ -0,0 +1,25 @@ + 'float', + 'bearing_delta' => 'float', + 'distance_m' => 'float', + ]; +} diff --git a/app/Models/EpcCertificate.php b/app/Models/EpcCertificate.php new file mode 100644 index 00000000..88306501 --- /dev/null +++ b/app/Models/EpcCertificate.php @@ -0,0 +1,190 @@ + 'date', + 'lodgement_date' => 'date', + 'lodgement_datetime' => 'datetime', + + // Boolean + 'flat_top_storey' => 'boolean', + + // Integers + 'building_reference_number' => 'integer', + 'current_energy_efficiency' => 'integer', + 'potential_energy_efficiency' => 'integer', + 'environment_impact_current' => 'integer', + 'environment_impact_potential' => 'integer', + 'energy_consumption_current' => 'integer', + 'energy_consumption_potential' => 'integer', + 'co2_emiss_curr_per_floor_area' => 'integer', + 'lighting_cost_current' => 'integer', + 'lighting_cost_potential' => 'integer', + 'heating_cost_current' => 'integer', + 'heating_cost_potential' => 'integer', + 'hot_water_cost_current' => 'integer', + 'hot_water_cost_potential' => 'integer', + 'floor_level' => 'integer', + 'multi_glaze_proportion' => 'integer', + 'low_energy_lighting' => 'integer', + 'number_open_fireplaces' => 'integer', + 'wind_turbine_count' => 'integer', + 'construction_age_band' => 'integer', + 'fixed_lighting_outlets_count' => 'integer', + 'report_type' => 'integer', + + // Decimals + 'co2_emissions_current' => 'decimal:3', + 'co2_emissions_potential' => 'decimal:3', + 'total_floor_area' => 'decimal:2', + 'unheated_corridor_length' => 'decimal:2', + 'floor_height' => 'decimal:2', + + // JSON + 'data_jsonb' => 'array', + ]; + + /** + * Relationship to UPRN + */ + public function uprnRecord() + { + return $this->belongsTo(Uprn::class, 'uprn', 'uprn'); + } + + /** + * Scope to get EPC certificates with geometry from linked UPRN + */ + public function scopeWithGeometry($query) + { + return $query->select('epc_certificate.*') + ->selectRaw('ST_AsGeoJSON(ST_Transform(osopenuprn_address.geom, 4326)) as geometry') + ->leftJoin('osopenuprn_address', function($join) { + $join->on(\DB::raw('epc_certificate.uprn::bigint'), '=', 'osopenuprn_address.uprn'); + }) + ->whereNotNull('osopenuprn_address.geom'); + } + + /** + * Scope to filter by built-up area geometries + */ + public function scopeWithinBuiltupAreas($query, $builtupAreaGeometriesQuery) + { + // Convert the query builder to SQL string + $geometriesSubquery = $builtupAreaGeometriesQuery->toSql(); + $bindings = $builtupAreaGeometriesQuery->getBindings(); + + return $query->whereExists(function ($subQuery) use ($geometriesSubquery, $bindings) { + $subQuery->select(\DB::raw(1)) + ->from('osopenuprn_address') + ->whereRaw('osopenuprn_address.uprn = epc_certificate.uprn::bigint') + ->whereRaw("ST_Within(osopenuprn_address.geom, (SELECT ST_Union(geometry) FROM ({$geometriesSubquery}) as bua))", $bindings); + }); + } +} diff --git a/app/Models/LandRegistryCadastral.php b/app/Models/LandRegistryCadastral.php new file mode 100644 index 00000000..66d65a5d --- /dev/null +++ b/app/Models/LandRegistryCadastral.php @@ -0,0 +1,82 @@ + 'integer', + 'county_code' => 'string', + 'county_name' => 'string', + 'bng_easting' => 'integer', + 'bng_northing' => 'integer', + 'longitude' => 'decimal:7', + 'latitude' => 'decimal:7', + 'global_id' => 'string', + 'geometry' => 'array', + 'geometry_bng' => 'array', + ]; + + public function newQuery() + { + return parent::newQuery()->select( + 'id', + 'fid', + 'county_code', + 'county_name', + 'bng_easting', + 'bng_northing', + 'longitude', + 'latitude', + 'global_id', + 'created_at', + 'updated_at', + DB::raw('public.ST_AsGeoJSON(geometry) as geometry'), + DB::raw('public.ST_AsGeoJSON(geometry_bng) as geometry_bng') + ); + } + + /** + * Get geometry as GeoJSON for WGS84 (EPSG:4326) + */ + public function getGeometryAttribute($value) + { + if ($value) { + return json_decode($value, true); + } + return null; + } + + /** + * Get BNG geometry as GeoJSON for British National Grid (EPSG:27700) + */ + public function getGeometryBngAttribute($value) + { + if ($value) { + return json_decode($value, true); + } + return null; + } +} diff --git a/app/Models/LandRegistryInspire.php b/app/Models/LandRegistryInspire.php index 983ae17b..186bbaf2 100644 --- a/app/Models/LandRegistryInspire.php +++ b/app/Models/LandRegistryInspire.php @@ -47,4 +47,4 @@ public function newQuery() DB::raw('public.ST_AsGeoJSON(st_transform(geom, 4326)) as geom') ); } -} +} \ No newline at end of file diff --git a/app/Models/NHLE.php b/app/Models/NHLE.php index e2ee1287..c89345d5 100644 --- a/app/Models/NHLE.php +++ b/app/Models/NHLE.php @@ -12,15 +12,25 @@ class NHLE extends Model protected $table = 'nhle_'; protected $connection = 'pgsql'; + protected $primaryKey = 'gid'; + public $timestamps = false; + protected $fillable = [ 'gid', 'objectid', 'listentry', 'name', 'grade', + 'listdate', + 'amenddate', + 'capturesca', 'hyperlink', 'ngr', - 'geom' + 'easting', + 'northing', + 'geom', + 'latitude', + 'longitude' ]; protected $spatialFields = ['geom']; @@ -31,9 +41,16 @@ class NHLE extends Model 'listentry' => 'integer', 'name' => 'string', 'grade' => 'string', + 'listdate' => 'date', + 'amenddate' => 'date', + 'capturesca' => 'string', 'hyperlink' => 'string', 'ngr' => 'string', + 'easting' => 'string', + 'northing' => 'string', 'geom' => 'array', + 'latitude' => 'float', + 'longitude' => 'float', ]; public function newQuery() @@ -46,8 +63,15 @@ public function newQuery() 'grade', 'hyperlink', 'ngr', + 'latitude', + 'longitude', + 'easting', + 'northing', + 'listdate', + 'amenddate', + 'capturesca', DB::raw('public.ST_AsGeoJSON(st_transform(geom, 4326)) as geom') ); } -} +} \ No newline at end of file diff --git a/app/Models/OsmAddress.php b/app/Models/OsmAddress.php new file mode 100644 index 00000000..e0e1f4e4 --- /dev/null +++ b/app/Models/OsmAddress.php @@ -0,0 +1,173 @@ + 'integer', + 'osm_id' => 'integer', + 'created_at' => 'datetime', + 'updated_at' => 'datetime', + ]; + + /** + * Get the geometry as GeoJSON + */ + public function getGeometryAttribute() + { + if ($this->point_wgs84) { + return json_decode(DB::selectOne("SELECT ST_AsGeoJSON(?) as geojson", [$this->point_wgs84])->geojson); + } + return null; + } + + /** + * Set geometry from GeoJSON + */ + public function setGeometryAttribute($value) + { + if (is_array($value) || is_object($value)) { + $value = json_encode($value); + } + + if ($value) { + $this->attributes['point_wgs84'] = DB::selectOne("SELECT ST_GeomFromGeoJSON(?) as geom", [$value])->geom; + } + } + + /** + * Relationship with OsmBuildingPart + */ + public function buildingPart() + { + return $this->belongsTo(OsmBuildingPart::class, 'building_part_id'); + } + + /** + * Scope to get addresses within bounds + */ + public function scopeWithinBounds($query, $minLat, $minLng, $maxLat, $maxLng) + { + return $query->whereRaw( + "ST_Within(point_wgs84, ST_MakeEnvelope(?, ?, ?, ?, 4326))", + [$minLng, $minLat, $maxLng, $maxLat] + ); + } + + /** + * Scope to find addresses near a point + */ + public function scopeNearPoint($query, $lat, $lng, $radiusMeters = 1000) + { + return $query->whereRaw( + "ST_DWithin(ST_Transform(point_wgs84, 27700), ST_Transform(ST_SetSRID(ST_MakePoint(?, ?), 4326), 27700), ?)", + [$lng, $lat, $radiusMeters] + ); + } + + /** + * Scope to search by postcode + */ + public function scopeByPostcode($query, $postcode) + { + return $query->where('postcode', 'ILIKE', '%' . $postcode . '%'); + } + + /** + * Scope to search by street + */ + public function scopeByStreet($query, $street) + { + return $query->where('street', 'ILIKE', '%' . $street . '%'); + } + + /** + * Get addresses with geometry as GeoJSON + */ + public static function getWithGeometry($limit = null) + { + $query = self::select([ + 'id', + 'building_part_id', + 'osm_id', + 'uprn', + 'source', + 'housenumber', + 'unit', + 'street', + 'suburb', + 'city', + 'postcode', + 'county', + 'state', + 'country', + 'country_code', + 'created_at', + 'updated_at', + DB::raw('ST_AsGeoJSON(point_wgs84) as geometry') + ]); + + if ($limit) { + $query->limit($limit); + } + + return $query->get()->map(function ($address) { + $address->geometry = json_decode($address->geometry); + return $address; + }); + } + + /** + * Get full address string + */ + public function getFullAddressAttribute() + { + $parts = array_filter([ + $this->housenumber, + $this->unit, + $this->street, + $this->suburb, + $this->city, + $this->postcode, + $this->county, + $this->country + ]); + + return implode(', ', $parts); + } + + /** + * Check if address has minimal required data + */ + public function hasMinimalData() + { + return !empty($this->street) || !empty($this->postcode) || !empty($this->housenumber); + } +} diff --git a/app/Models/OsmBuildingPart.php b/app/Models/OsmBuildingPart.php new file mode 100644 index 00000000..5cc0a5ac --- /dev/null +++ b/app/Models/OsmBuildingPart.php @@ -0,0 +1,155 @@ + 'integer', + 'base_direction' => 'decimal:5', + 'base_height_m' => 'decimal:2', + 'base_levels' => 'integer', + 'base_angle_deg' => 'decimal:2', + 'building_levels' => 'integer', + 'building_min_level' => 'integer', + 'building_levels_underground' => 'integer', + 'roof_levels' => 'integer', + 'height_m' => 'decimal:2', + 'min_height_m' => 'decimal:2', + 'roof_height_m' => 'decimal:2', + 'levels' => 'integer', + 'min_level' => 'integer', + ]; + + /** + * Get the geometry as GeoJSON + */ + public function getGeometryAttribute() + { + if ($this->geom) { + $result = DB::selectOne("SELECT ST_AsGeoJSON(geom) as geojson FROM {$this->table} WHERE id = ?", [$this->id]); + return $result ? json_decode($result->geojson, true) : null; + } + return null; + } + + /** + * Set geometry from GeoJSON or WKT + */ + public function setGeomAttribute($value) + { + if (is_array($value)) { + // GeoJSON format + $this->attributes['geom'] = DB::raw("ST_GeomFromGeoJSON('" . json_encode($value) . "')"); + } elseif (is_string($value)) { + // WKT format or raw geometry + $this->attributes['geom'] = DB::raw("ST_GeomFromText('{$value}', 27700)"); + } + } + + /** + * Scope to filter by bounding box + */ + public function scopeWithinBounds($query, $minLng, $minLat, $maxLng, $maxLat) + { + return $query->whereRaw( + "ST_Intersects(geom, ST_MakeEnvelope(?, ?, ?, ?, 27700))", + [$minLng, $minLat, $maxLng, $maxLat] + ); + } + + /** + * Scope to find buildings containing a point + */ + public function scopeContainsPoint($query, $lng, $lat, $srid = 4326) + { + return $query->whereRaw( + "ST_Contains(geom, ST_Transform(ST_SetSRID(ST_MakePoint(?, ?), ?), 27700))", + [$lng, $lat, $srid] + ); + } + + /** + * Scope to find buildings intersecting with geometry + */ + public function scopeIntersects($query, $geometry, $srid = 4326) + { + if (is_array($geometry)) { + // GeoJSON format + return $query->whereRaw( + "ST_Intersects(geom, ST_Transform(ST_GeomFromGeoJSON(?), ?))", + [json_encode($geometry), 27700] + ); + } else { + // WKT format + return $query->whereRaw( + "ST_Intersects(geom, ST_Transform(ST_GeomFromText(?, ?), 27700))", + [$geometry, $srid] + ); + } + } + + /** + * Get buildings with their geometries as GeoJSON + */ + public static function getWithGeometry($limit = null) + { + $query = self::select([ + '*', + DB::raw('ST_AsGeoJSON(geom) as geometry_json') + ]); + + if ($limit) { + $query->limit($limit); + } + + return $query->get()->map(function ($item) { + $item->geometry = json_decode($item->geometry_json, true); + unset($item->geometry_json); + return $item; + }); + } +} diff --git a/app/Models/OsmLanduseArea.php b/app/Models/OsmLanduseArea.php new file mode 100644 index 00000000..c9c0e7a6 --- /dev/null +++ b/app/Models/OsmLanduseArea.php @@ -0,0 +1,212 @@ + 'integer', + 'start_date' => 'date', + 'opening_date' => 'date', + 'end_date' => 'date', + 'tags' => 'array', + ]; + + /** + * Get the geometry as GeoJSON + */ + public function getGeometryAttribute() + { + if ($this->geom) { + return json_decode(DB::selectOne("SELECT ST_AsGeoJSON(?) as geojson", [$this->geom])->geojson); + } + return null; + } + + /** + * Set geometry from GeoJSON + */ + public function setGeometryAttribute($value) + { + if (is_array($value) || is_object($value)) { + $value = json_encode($value); + } + + if ($value) { + // Transform from WGS84 to BNG (EPSG:27700) + $this->attributes['geom'] = DB::selectOne( + "SELECT ST_Transform(ST_GeomFromGeoJSON(?), 27700) as geom", + [$value] + )->geom; + } + } + + /** + * Scope to get landuse areas within bounds (WGS84 coordinates) + */ + public function scopeWithinBounds($query, $minLat, $minLng, $maxLat, $maxLng) + { + return $query->whereRaw( + "ST_Intersects(ST_Transform(geom, 4326), ST_MakeEnvelope(?, ?, ?, ?, 4326))", + [$minLng, $minLat, $maxLng, $maxLat] + ); + } + + /** + * Scope to find landuse areas that contain a point (WGS84 coordinates) + */ + public function scopeContainsPoint($query, $lat, $lng) + { + return $query->whereRaw( + "ST_Contains(ST_Transform(geom, 4326), ST_SetSRID(ST_MakePoint(?, ?), 4326))", + [$lng, $lat] + ); + } + + /** + * Scope to find landuse areas that intersect with a geometry + */ + public function scopeIntersects($query, $geometry) + { + return $query->whereRaw("ST_Intersects(geom, ?)", [$geometry]); + } + + /** + * Scope to filter by landuse type + */ + public function scopeByLanduse($query, $landuse) + { + return $query->where('landuse', $landuse); + } + + /** + * Scope to search by name + */ + public function scopeByName($query, $name) + { + return $query->where('name', 'ILIKE', '%' . $name . '%'); + } + + /** + * Scope to filter by operator + */ + public function scopeByOperator($query, $operator) + { + return $query->where('operator', 'ILIKE', '%' . $operator . '%'); + } + + /** + * Get landuse areas with geometry as GeoJSON + */ + public static function getWithGeometry($limit = null) + { + $query = self::select([ + 'id', + 'source', + 'osm_id', + 'name', + 'landuse', + 'operator', + 'ref', + 'start_date', + 'opening_date', + 'end_date', + 'tags', + DB::raw('ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry') + ]); + + if ($limit) { + $query->limit($limit); + } + + return $query->get()->map(function ($area) { + $area->geometry = json_decode($area->geometry); + return $area; + }); + } + + /** + * Get area in square meters + */ + public function getAreaAttribute() + { + if ($this->geom) { + return DB::selectOne("SELECT ST_Area(?) as area", [$this->geom])->area; + } + return null; + } + + /** + * Get perimeter in meters + */ + public function getPerimeterAttribute() + { + if ($this->geom) { + return DB::selectOne("SELECT ST_Perimeter(?) as perimeter", [$this->geom])->perimeter; + } + return null; + } + + /** + * Get centroid as WGS84 coordinates + */ + public function getCentroidAttribute() + { + if ($this->geom) { + $result = DB::selectOne( + "SELECT ST_X(ST_Transform(ST_Centroid(?), 4326)) as lng, ST_Y(ST_Transform(ST_Centroid(?), 4326)) as lat", + [$this->geom, $this->geom] + ); + return ['lat' => $result->lat, 'lng' => $result->lng]; + } + return null; + } + + /** + * Check if landuse area has specific tag + */ + public function hasTag($key, $value = null) + { + if (!$this->tags) { + return false; + } + + if ($value === null) { + return array_key_exists($key, $this->tags); + } + + return isset($this->tags[$key]) && $this->tags[$key] === $value; + } + + /** + * Get tag value + */ + public function getTag($key, $default = null) + { + return $this->tags[$key] ?? $default; + } +} diff --git a/app/Models/Photo.php b/app/Models/Photo.php index 7a3e1c78..f7b1191f 100644 --- a/app/Models/Photo.php +++ b/app/Models/Photo.php @@ -25,6 +25,10 @@ protected function lat(): Attribute ); } + public function user(){ + return $this->belongsTo(User::class, 'user_id', 'id'); + } + public function getLinkAttribute(){ return asset(Storage::url($this->path.$this->file_name)); } diff --git a/app/Models/User.php b/app/Models/User.php index f7faee70..8d8cc049 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -63,6 +63,10 @@ public function rolesArray(){ return $this->userRoles()->pluck('role')->toArray(); } + public function photos(){ + return $this->hasMany(Photo::class, 'user_id', 'id'); + } + public static function getFarmerCounts(int $farmers_id = 0, string $count_type) { $count_sql = null; diff --git a/app/helpers.php b/app/helpers.php index 8cd57ffa..e60688dd 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -162,7 +162,11 @@ function setPhoto($photo, $user_id, $task_id) 'nmea_location' => null, 'nmea_distance' => null, 'digest' => $photo['digest'], - 'timestamp' => Carbon::now()->format('Y-m-d H:i:s') + 'timestamp' => Carbon::now()->format('Y-m-d H:i:s'), + 'provider' => $photo['provider'] ?? null, + 'osnma_enabled' => $photo['osnmaEnabled'] ?? null, + 'osnma_validated' => $photo['osnmaValidated'] ?? null, + 'validated_sats' => $photo['validatedSats'] ?? null ]); $status['photo_id'] = $newPhoto->id; @@ -257,7 +261,12 @@ function getPhoto($photo_id, $wantsbase64Photo=false) 'path', 'file_name', 'digest', - 'rotation_correction as angle' + 'rotation_correction as angle', + 'network_info', + 'provider', + 'osnma_enabled', + 'osnma_validated', + 'validated_sats' ]) ->where('flg_deleted', 0) ->where('id', $photo_id) @@ -307,7 +316,12 @@ function getPhoto($photo_id, $wantsbase64Photo=false) 'created' => $photo->created, 'digest' => $photo->digest, 'link' => $photo->link, - 'angle' => $photo->angle + 'angle' => $photo->angle, + 'network_info' => $photo->network_info, + 'provider' => $photo->provider, + 'osnma_enabled' => $photo->osnma_enabled, + 'osnma_validated' => $photo->osnma_validated, + 'validated_sats' => $photo->validated_sats ]; if($wantsbase64Photo){ @@ -354,7 +368,7 @@ function get_distance_from_coordinates($a_lat, $a_lng, $b_lat, $b_lng) $const_p = pi() / 180; $const_r = 12742; - $a = 0.5 - cos(($b_lat - $a_lat) * $const_p) / 2 + cos($a_lat * $const_p) * cos($b_lat * $const_p) * (1 - cos(($b_lng - $a_lng) * $const_p)) / 2; + $a = 0.5 - cos(($b_lat - $a_lat) * $const_p) / 2 + cos($a_lat * $const_p) * cos($b_lat * $const_p) * (1 - cos((null) * $const_p)) / 2; $distance = $const_r * sin(sqrt($a)); @@ -424,6 +438,10 @@ function setPhotos($photos, $user_id, $task_id) $efkLngGpsIf = $photo['efkLngGpsIf'] ?? null; $efkAltGpsIf = $photo['efkAltGpsIf'] ?? null; $efkTimeGpsIf = isset($photo['efkTimeGpsIf']) ? gmdate('Y-m-d H:i:s', strtotime($photo['efkTimeGpsIf'])) : null; + $provider = isset($photo['provider']) ? $photo['provider'] : null; + $osnmaEnabled = isset($photo['osnmaEnabled']) ? $photo['osnmaEnabled'] : null; + $osnmaValidated = isset($photo['osnmaValidated']) ? $photo['osnmaValidated'] : null; + $validatedSats = isset($photo['validatedSats']) ? $photo['validatedSats'] : null; $existing_photo = DB::table('photo')->where('digest', $digest)->first(); @@ -472,6 +490,10 @@ function setPhotos($photos, $user_id, $task_id) 'efkLngGpsIf' => $efkLngGpsIf, 'efkAltGpsIf' => $efkAltGpsIf, 'efkTimeGpsIf' => $efkTimeGpsIf, + 'provider' => $provider, + 'osnma_enabled' => $osnmaEnabled, + 'osnma_validated' => $osnmaValidated, + 'validated_sats' => $validatedSats ]); if (isset($photo['photo'])) { $sql_path = DB::table('user')->select('pa_id')->where('id', $user_id)->first(); @@ -592,7 +614,14 @@ function getTaskPhotos($task_id = null, $user_id = null, $wantsBase64Photo=false 'file_name', 'digest', 'id', - 'rotation_correction as angle' + 'rotation_correction as angle', + 'flg_checked_location', + 'flg_original', + 'network_info', + 'provider', + 'osnma_enabled', + 'osnma_validated', + 'validated_sats' ]) ->where('flg_deleted', 0); @@ -651,6 +680,11 @@ function getTaskPhotos($task_id = null, $user_id = null, $wantsBase64Photo=false 'id' => $photo->id, 'angle' => $photo->angle, 'link' => $photo->link, + 'network_info' => $photo->network_info, + 'provider' => $photo->provider, + 'osnma_enabled' => $photo->osnma_enabled, + 'osnma_validated' => $photo->osnma_validated, + 'validated_sats' => $photo->validated_sats ]; if($wantsBase64Photo){ $file = null; @@ -662,11 +696,15 @@ function getTaskPhotos($task_id = null, $user_id = null, $wantsBase64Photo=false }else{ $out['link'] = $photo->link; } - + + $photoVerificationData = getPhotoVerifiedStatus($photo); + $out['return'] = $photoVerificationData['return']; + $out['verified'] = $photoVerificationData['verified']; + + $output[] = $out; } - return $output; } @@ -708,7 +746,7 @@ function deleteSelectedUnassignedPhoto(array $uids) return $affectedRows; } -function getPhotosWithoutTask($user_id) +function getPhotosWithoutTask($user_id, $paginate = false) { $photos = Photo ::select([ @@ -754,15 +792,22 @@ function getPhotosWithoutTask($user_id) 'file_name', 'digest', 'id', - 'rotation_correction as angle' + 'rotation_correction as angle', + 'flg_checked_location', + 'flg_original', + 'network_info', + 'provider', + 'osnma_enabled', + 'osnma_validated', + 'validated_sats' ]) ->where('user_id', $user_id) ->where('flg_deleted', 0) - ->whereNull('task_id') - ->get(); + ->whereNull('task_id'); + if($paginate) $photos = $photos->paginate(10); + else $photos = $photos->get(); $output = []; - foreach ($photos as $photo) { $photoData = [ 'altitude' => $photo->altitude, @@ -806,7 +851,12 @@ function getPhotosWithoutTask($user_id) 'digest' => $photo->digest, 'id' => $photo->id, 'link' => $photo->link, - 'angle' => $photo->angle + 'angle' => $photo->angle, + 'network_info' => $photo->network_info, + 'provider' => $photo->provider, + 'osnma_enabled' => $photo->osnma_enabled, + 'osnma_validated' => $photo->osnma_validated, + 'validated_sats' => $photo->validated_sats ]; $file = null; @@ -815,10 +865,17 @@ function getPhotosWithoutTask($user_id) $file = file_get_contents($filePath); } $photoData['photo'] = $file ? base64_encode($file) : null; + + $photoVerificationData = getPhotoVerifiedStatus($photo); + $photoData['return'] = $photoVerificationData['return']; + $photoData['verified'] = $photoVerificationData['verified']; + + + $photo = $photoData; $output[] = $photoData; } - - return $output; + + return $photos; } @@ -902,63 +959,106 @@ function getPhotoByIds(array $photoIds) 'created', 'path', 'file_name', - 'digest' + 'digest', + 'network_info', + 'provider', + 'osnma_enabled', + 'osnma_validated', + 'validated_sats' ]) ->where('flg_deleted', 0) ->whereIn('id', $photoIds) ->get(); -$output = []; - -foreach ($photos as $photo) { - $currentPhoto = [ - 'altitude' => $photo->altitude, - 'vertical_view_angle' => $photo->vertical_view_angle, - 'accuracy' => $photo->accuracy, - 'distance' => $photo->distance, - 'nmea_distance' => $photo->nmea_distance, - 'device_manufacture' => $photo->device_manufacture, - 'device_model' => $photo->device_model, - 'device_platform' => $photo->device_platform, - 'device_version' => $photo->device_version, - 'efkLatGpsL1' => $photo->efkLatGpsL1, - 'efkLngGpsL1' => $photo->efkLngGpsL1, - 'efkAltGpsL1' => $photo->efkAltGpsL1, - 'efkTimeGpsL1' => $photo->efkTimeGpsL1, - 'efkLatGpsL5' => $photo->efkLatGpsL5, - 'efkLngGpsL5' => $photo->efkLngGpsL5, - 'efkAltGpsL5' => $photo->efkAltGpsL5, - 'efkTimeGpsL5' => $photo->efkTimeGpsL5, - 'efkLatGpsIf' => $photo->efkLatGpsIf, - 'efkLngGpsIf' => $photo->efkLngGpsIf, - 'efkAltGpsIf' => $photo->efkAltGpsIf, - 'efkTimeGpsIf' => $photo->efkTimeGpsIf, - 'efkLatGalE1' => $photo->efkLatGalE1, - 'efkLngGalE1' => $photo->efkLngGalE1, - 'efkAltGalE1' => $photo->efkAltGalE1, - 'efkTimeGalE1' => $photo->efkTimeGalE1, - 'efkLatGalE5' => $photo->efkLatGalE5, - 'efkLngGalE5' => $photo->efkLngGalE5, - 'efkAltGalE5' => $photo->efkAltGalE5, - 'efkTimeGalE5' => $photo->efkTimeGalE5, - 'efkLatGalIf' => $photo->efkLatGalIf, - 'efkLngGalIf' => $photo->efkLngGalIf, - 'efkAltGalIf' => $photo->efkAltGalIf, - 'efkTimeGalIf' => $photo->efkTimeGalIf, - 'note' => $photo->note, - 'lat' => $photo->lat, - 'lng' => $photo->lng, - 'photo_heading' => $photo->photo_heading, - 'created' => $photo->created, - 'digest' => $photo->digest, - 'link' => $photo->link - ]; - + $output = []; + + foreach ($photos as $photo) { + $currentPhoto = [ + 'altitude' => $photo->altitude, + 'vertical_view_angle' => $photo->vertical_view_angle, + 'accuracy' => $photo->accuracy, + 'distance' => $photo->distance, + 'nmea_distance' => $photo->nmea_distance, + 'device_manufacture' => $photo->device_manufacture, + 'device_model' => $photo->device_model, + 'device_platform' => $photo->device_platform, + 'device_version' => $photo->device_version, + 'efkLatGpsL1' => $photo->efkLatGpsL1, + 'efkLngGpsL1' => $photo->efkLngGpsL1, + 'efkAltGpsL1' => $photo->efkAltGpsL1, + 'efkTimeGpsL1' => $photo->efkTimeGpsL1, + 'efkLatGpsL5' => $photo->efkLatGpsL5, + 'efkLngGpsL5' => $photo->efkLngGpsL5, + 'efkAltGpsL5' => $photo->efkAltGpsL5, + 'efkTimeGpsL5' => $photo->efkTimeGpsL5, + 'efkLatGpsIf' => $photo->efkLatGpsIf, + 'efkLngGpsIf' => $photo->efkLngGpsIf, + 'efkAltGpsIf' => $photo->efkAltGpsIf, + 'efkTimeGpsIf' => $photo->efkTimeGpsIf, + 'efkLatGalE1' => $photo->efkLatGalE1, + 'efkLngGalE1' => $photo->efkLngGalE1, + 'efkAltGalE1' => $photo->efkAltGalE1, + 'efkTimeGalE1' => $photo->efkTimeGalE1, + 'efkLatGalE5' => $photo->efkLatGalE5, + 'efkLngGalE5' => $photo->efkLngGalE5, + 'efkAltGalE5' => $photo->efkAltGalE5, + 'efkTimeGalE5' => $photo->efkTimeGalE5, + 'efkLatGalIf' => $photo->efkLatGalIf, + 'efkLngGalIf' => $photo->efkLngGalIf, + 'efkAltGalIf' => $photo->efkAltGalIf, + 'efkTimeGalIf' => $photo->efkTimeGalIf, + 'note' => $photo->note, + 'lat' => $photo->lat, + 'lng' => $photo->lng, + 'photo_heading' => $photo->photo_heading, + 'created' => $photo->created, + 'digest' => $photo->digest, + 'link' => $photo->link, + 'network_info' => $photo->network_info, + 'provider' => $photo->provider, + 'osnma_enabled' => $photo->osnma_enabled, + 'osnma_validated' => $photo->osnma_validated, + 'validated_sats' => $photo->validated_sats + ]; + - // Add the photo data to the output array - $output[] = $currentPhoto; + // Add the photo data to the output array + $output[] = $currentPhoto; + } + + return $output; } -return $output; +function getPhotoVerifiedStatus($photo){ + $photoData = []; + $return = 'incomplete'; + $verified = true; + if ($photo->flg_checked_location === 0) { + $return = 'not_verified'; + $verified = false; + } elseif (empty($photo->flg_checked_location)) { + if ($return !== 'not_verified') { + $return = 'incomplete'; + } + $verified = false; + } elseif ($verified) { + $return = 'verified'; + } + + if ($photo->flg_original === 0) { + $return = 'not_verified'; + $verified = false; + } elseif (empty($photo->flg_original)) { + if ($return !== 'not_verified') { + $return = 'incomplete'; + } + $verified = false; + } elseif ($verified) { + $return = 'verified'; + } + $photoData['return'] = $return; + $photoData['verified'] = $verified; + + return $photoData; } diff --git a/composer.json b/composer.json index a06cce40..5e63291b 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,8 @@ "laravel/framework": "^12.0", "laravel/sanctum": "^4.0", "laravel/tinker": "^2.9", - "tightenco/ziggy": "^2.0" + "tightenco/ziggy": "^2.0", + "predis/predis": "^2.0" }, "require-dev": { "fakerphp/faker": "^1.23", diff --git a/composer.lock b/composer.lock index 9428c80e..f6f4fbe7 100644 --- a/composer.lock +++ b/composer.lock @@ -4,29 +4,29 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "cf76045815eb70facf958b5af596038f", + "content-hash": "788c6286ac3ec7f8a83d18de2c095aab", "packages": [ { "name": "brick/math", - "version": "0.12.1", + "version": "0.14.0", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "f510c0a40911935b77b86859eb5223d58d660df1" + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", - "reference": "f510c0a40911935b77b86859eb5223d58d660df1", + "url": "https://api.github.com/repos/brick/math/zipball/113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", "shasum": "" }, "require": { - "php": "^8.1" + "php": "^8.2" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^10.1", - "vimeo/psalm": "5.16.0" + "phpstan/phpstan": "2.1.22", + "phpunit/phpunit": "^11.5" }, "type": "library", "autoload": { @@ -56,7 +56,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.12.1" + "source": "https://github.com/brick/math/tree/0.14.0" }, "funding": [ { @@ -64,7 +64,7 @@ "type": "github" } ], - "time": "2023-11-29T23:19:16+00:00" + "time": "2025-08-29T12:40:03+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -137,16 +137,16 @@ }, { "name": "darkaonline/l5-swagger", - "version": "8.6.3", + "version": "8.6.5", "source": { "type": "git", "url": "https://github.com/DarkaOnLine/L5-Swagger.git", - "reference": "b37695804b786c04ab4077ceb6c0f2907ccd0153" + "reference": "4cf2b3faae9e9cffd05e4eb6e066741bf56f0a85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DarkaOnLine/L5-Swagger/zipball/b37695804b786c04ab4077ceb6c0f2907ccd0153", - "reference": "b37695804b786c04ab4077ceb6c0f2907ccd0153", + "url": "https://api.github.com/repos/DarkaOnLine/L5-Swagger/zipball/4cf2b3faae9e9cffd05e4eb6e066741bf56f0a85", + "reference": "4cf2b3faae9e9cffd05e4eb6e066741bf56f0a85", "shasum": "" }, "require": { @@ -205,7 +205,7 @@ ], "support": { "issues": "https://github.com/DarkaOnLine/L5-Swagger/issues", - "source": "https://github.com/DarkaOnLine/L5-Swagger/tree/8.6.3" + "source": "https://github.com/DarkaOnLine/L5-Swagger/tree/8.6.5" }, "funding": [ { @@ -213,7 +213,7 @@ "type": "github" } ], - "time": "2024-10-28T06:29:43+00:00" + "time": "2025-02-06T14:54:32+00:00" }, { "name": "dflydev/dot-access-data", @@ -364,37 +364,37 @@ "issues": "https://github.com/doctrine/annotations/issues", "source": "https://github.com/doctrine/annotations/tree/2.0.2" }, + "abandoned": true, "time": "2024-09-05T10:17:24+00:00" }, { "name": "doctrine/inflector", - "version": "2.0.10", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", - "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^11.0", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25 || ^5.4" + "doctrine/coding-standard": "^12.0 || ^13.0", + "phpstan/phpstan": "^1.12 || ^2.0", + "phpstan/phpstan-phpunit": "^1.4 || ^2.0", + "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", + "phpunit/phpunit": "^8.5 || ^12.2" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + "Doctrine\\Inflector\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -439,7 +439,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.10" + "source": "https://github.com/doctrine/inflector/tree/2.1.0" }, "funding": [ { @@ -455,7 +455,7 @@ "type": "tidelift" } ], - "time": "2024-02-18T20:23:39+00:00" + "time": "2025-08-10T19:31:58+00:00" }, { "name": "doctrine/lexer", @@ -536,32 +536,35 @@ }, { "name": "dragonmantank/cron-expression", - "version": "v3.3.3", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" + "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", - "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013", + "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013", "shasum": "" }, "require": { - "php": "^7.2|^8.0", - "webmozart/assert": "^1.0" + "php": "^8.2|^8.3|^8.4|^8.5" }, "replace": { "mtdowling/cron-expression": "^1.0" }, "require-dev": { - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-webmozart-assert": "^1.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0" + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.32|^2.1.31", + "phpunit/phpunit": "^8.5.48|^9.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, "autoload": { "psr-4": { "Cron\\": "src/Cron/" @@ -585,7 +588,7 @@ ], "support": { "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0" }, "funding": [ { @@ -593,20 +596,20 @@ "type": "github" } ], - "time": "2023-08-10T19:36:49+00:00" + "time": "2025-10-31T18:51:33+00:00" }, { "name": "egulias/email-validator", - "version": "4.0.2", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", - "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", "shasum": "" }, "require": { @@ -652,7 +655,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" }, "funding": [ { @@ -660,7 +663,7 @@ "type": "github" } ], - "time": "2023-10-06T06:47:41+00:00" + "time": "2025-03-06T22:45:56+00:00" }, { "name": "fruitcake/php-cors", @@ -797,22 +800,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.2", + "version": "7.10.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "d281ed313b989f213357e3be1a179f02196ac99b" + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", - "reference": "d281ed313b989f213357e3be1a179f02196ac99b", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", + "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", + "guzzlehttp/promises": "^2.3", + "guzzlehttp/psr7": "^2.8", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -903,7 +906,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.2" + "source": "https://github.com/guzzle/guzzle/tree/7.10.0" }, "funding": [ { @@ -919,20 +922,20 @@ "type": "tidelift" } ], - "time": "2024-07-24T11:22:20+00:00" + "time": "2025-08-23T22:36:01+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.0.3", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8" + "reference": "481557b130ef3790cf82b713667b43030dc9c957" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", - "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957", + "reference": "481557b130ef3790cf82b713667b43030dc9c957", "shasum": "" }, "require": { @@ -940,7 +943,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "type": "library", "extra": { @@ -986,7 +989,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.3" + "source": "https://github.com/guzzle/promises/tree/2.3.0" }, "funding": [ { @@ -1002,20 +1005,20 @@ "type": "tidelift" } ], - "time": "2024-07-18T10:29:17+00:00" + "time": "2025-08-22T14:34:08+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" + "reference": "21dc724a0583619cd1652f673303492272778051" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", - "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", + "reference": "21dc724a0583619cd1652f673303492272778051", "shasum": "" }, "require": { @@ -1031,7 +1034,7 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^8.5.44 || ^9.6.25" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -1102,7 +1105,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.0" + "source": "https://github.com/guzzle/psr7/tree/2.8.0" }, "funding": [ { @@ -1118,20 +1121,20 @@ "type": "tidelift" } ], - "time": "2024-07-18T11:15:46+00:00" + "time": "2025-08-23T21:21:41+00:00" }, { "name": "guzzlehttp/uri-template", - "version": "v1.0.3", + "version": "v1.0.5", "source": { "type": "git", "url": "https://github.com/guzzle/uri-template.git", - "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", - "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1", + "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1", "shasum": "" }, "require": { @@ -1140,7 +1143,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "phpunit/phpunit": "^8.5.44 || ^9.6.25", "uri-template/tests": "1.0.0" }, "type": "library", @@ -1188,7 +1191,7 @@ ], "support": { "issues": "https://github.com/guzzle/uri-template/issues", - "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" + "source": "https://github.com/guzzle/uri-template/tree/v1.0.5" }, "funding": [ { @@ -1204,33 +1207,32 @@ "type": "tidelift" } ], - "time": "2023-12-03T19:50:20+00:00" + "time": "2025-08-22T14:27:06+00:00" }, { "name": "inertiajs/inertia-laravel", - "version": "v1.3.0", + "version": "v1.3.3", "source": { "type": "git", "url": "https://github.com/inertiajs/inertia-laravel.git", - "reference": "36730d13b1dab9017069004fd458b3e67449a326" + "reference": "7f5eecd6fd8c82e78435a52f84bdb0113297c280" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/36730d13b1dab9017069004fd458b3e67449a326", - "reference": "36730d13b1dab9017069004fd458b3e67449a326", + "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/7f5eecd6fd8c82e78435a52f84bdb0113297c280", + "reference": "7f5eecd6fd8c82e78435a52f84bdb0113297c280", "shasum": "" }, "require": { "ext-json": "*", - "laravel/framework": "^8.74|^9.0|^10.0|^11.0", - "php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0", + "laravel/framework": "^8.74|^9.0|^10.0|^11.0|^12.0", + "php": "^7.3|~8.0.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0", "symfony/console": "^5.3|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench": "^6.4|^7.0|^8.0|^9.0", - "phpunit/phpunit": "^8.0|^9.5.8|^10.4", - "roave/security-advisories": "dev-master" + "orchestra/testbench": "^6.45|^7.44|^8.25|^9.3|^10.0", + "phpunit/phpunit": "^8.0|^9.5.8|^10.4|^11.5" }, "suggest": { "ext-pcntl": "Recommended when running the Inertia SSR server via the `inertia:start-ssr` artisan command." @@ -1272,35 +1274,29 @@ ], "support": { "issues": "https://github.com/inertiajs/inertia-laravel/issues", - "source": "https://github.com/inertiajs/inertia-laravel/tree/v1.3.0" + "source": "https://github.com/inertiajs/inertia-laravel/tree/v1.3.3" }, - "funding": [ - { - "url": "https://github.com/reinink", - "type": "github" - } - ], - "time": "2024-06-13T01:25:09+00:00" + "time": "2025-06-06T14:51:50+00:00" }, { "name": "laravel/framework", - "version": "v11.25.0", + "version": "v12.39.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "b487a9089c0b1c71ac63bb6bc44fb4b00dc6da2e" + "reference": "1a6176129ef28eaf42b6b4a6250025120c3d8dac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/b487a9089c0b1c71ac63bb6bc44fb4b00dc6da2e", - "reference": "b487a9089c0b1c71ac63bb6bc44fb4b00dc6da2e", + "url": "https://api.github.com/repos/laravel/framework/zipball/1a6176129ef28eaf42b6b4a6250025120c3d8dac", + "reference": "1a6176129ef28eaf42b6b4a6250025120c3d8dac", "shasum": "" }, "require": { - "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "brick/math": "^0.11|^0.12|^0.13|^0.14", "composer-runtime-api": "^2.2", "doctrine/inflector": "^2.0.5", - "dragonmantank/cron-expression": "^3.3.2", + "dragonmantank/cron-expression": "^3.4", "egulias/email-validator": "^3.2.1|^4.0", "ext-ctype": "*", "ext-filter": "*", @@ -1310,38 +1306,41 @@ "ext-session": "*", "ext-tokenizer": "*", "fruitcake/php-cors": "^1.3", - "guzzlehttp/guzzle": "^7.8", + "guzzlehttp/guzzle": "^7.8.2", "guzzlehttp/uri-template": "^1.0", - "laravel/prompts": "^0.1.18|^0.2.0", - "laravel/serializable-closure": "^1.3", - "league/commonmark": "^2.2.1", - "league/flysystem": "^3.8.0", + "laravel/prompts": "^0.3.0", + "laravel/serializable-closure": "^1.3|^2.0", + "league/commonmark": "^2.7", + "league/flysystem": "^3.25.1", + "league/flysystem-local": "^3.25.1", + "league/uri": "^7.5.1", "monolog/monolog": "^3.0", - "nesbot/carbon": "^2.72.2|^3.0", + "nesbot/carbon": "^3.8.4", "nunomaduro/termwind": "^2.0", "php": "^8.2", "psr/container": "^1.1.1|^2.0.1", "psr/log": "^1.0|^2.0|^3.0", "psr/simple-cache": "^1.0|^2.0|^3.0", "ramsey/uuid": "^4.7", - "symfony/console": "^7.0", - "symfony/error-handler": "^7.0", - "symfony/finder": "^7.0", - "symfony/http-foundation": "^7.0", - "symfony/http-kernel": "^7.0", - "symfony/mailer": "^7.0", - "symfony/mime": "^7.0", - "symfony/polyfill-php83": "^1.28", - "symfony/process": "^7.0", - "symfony/routing": "^7.0", - "symfony/uid": "^7.0", - "symfony/var-dumper": "^7.0", + "symfony/console": "^7.2.0", + "symfony/error-handler": "^7.2.0", + "symfony/finder": "^7.2.0", + "symfony/http-foundation": "^7.2.0", + "symfony/http-kernel": "^7.2.0", + "symfony/mailer": "^7.2.0", + "symfony/mime": "^7.2.0", + "symfony/polyfill-php83": "^1.33", + "symfony/polyfill-php84": "^1.33", + "symfony/polyfill-php85": "^1.33", + "symfony/process": "^7.2.0", + "symfony/routing": "^7.2.0", + "symfony/uid": "^7.2.0", + "symfony/var-dumper": "^7.2.0", "tijsverkoyen/css-to-inline-styles": "^2.2.5", - "vlucas/phpdotenv": "^5.4.1", - "voku/portable-ascii": "^2.0" + "vlucas/phpdotenv": "^5.6.1", + "voku/portable-ascii": "^2.0.2" }, "conflict": { - "mockery/mockery": "1.6.8", "tightenco/collect": "<5.5.33" }, "provide": { @@ -1368,6 +1367,7 @@ "illuminate/filesystem": "self.version", "illuminate/hashing": "self.version", "illuminate/http": "self.version", + "illuminate/json-schema": "self.version", "illuminate/log": "self.version", "illuminate/macroable": "self.version", "illuminate/mail": "self.version", @@ -1388,29 +1388,34 @@ }, "require-dev": { "ably/ably-php": "^1.0", - "aws/aws-sdk-php": "^3.235.5", + "aws/aws-sdk-php": "^3.322.9", "ext-gmp": "*", - "fakerphp/faker": "^1.23", - "league/flysystem-aws-s3-v3": "^3.0", - "league/flysystem-ftp": "^3.0", - "league/flysystem-path-prefixing": "^3.3", - "league/flysystem-read-only": "^3.3", - "league/flysystem-sftp-v3": "^3.0", - "mockery/mockery": "^1.6", - "nyholm/psr7": "^1.2", - "orchestra/testbench-core": "^9.5", - "pda/pheanstalk": "^5.0", - "phpstan/phpstan": "^1.11.5", - "phpunit/phpunit": "^10.5|^11.0", - "predis/predis": "^2.0.2", - "resend/resend-php": "^0.10.0", - "symfony/cache": "^7.0", - "symfony/http-client": "^7.0", - "symfony/psr-http-message-bridge": "^7.0" + "fakerphp/faker": "^1.24", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^2.4", + "laravel/pint": "^1.18", + "league/flysystem-aws-s3-v3": "^3.25.1", + "league/flysystem-ftp": "^3.25.1", + "league/flysystem-path-prefixing": "^3.25.1", + "league/flysystem-read-only": "^3.25.1", + "league/flysystem-sftp-v3": "^3.25.1", + "mockery/mockery": "^1.6.10", + "opis/json-schema": "^2.4.1", + "orchestra/testbench-core": "^10.7.0", + "pda/pheanstalk": "^5.0.6|^7.0.0", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", + "predis/predis": "^2.3|^3.0", + "resend/resend-php": "^0.10.0|^1.0", + "symfony/cache": "^7.2.0", + "symfony/http-client": "^7.2.0", + "symfony/psr-http-message-bridge": "^7.2.0", + "symfony/translation": "^7.2.0" }, "suggest": { "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", - "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).", "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", "ext-apcu": "Required to use the APC cache driver.", "ext-fileinfo": "Required to use the Filesystem class.", @@ -1421,37 +1426,38 @@ "ext-pdo": "Required to use all database features.", "ext-posix": "Required to use all features of the queue worker.", "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", - "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).", "filp/whoops": "Required for friendly error pages in development (^2.14.3).", "laravel/tinker": "Required to use the tinker console command (^2.0).", - "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", - "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", - "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", - "league/flysystem-read-only": "Required to use read-only disks (^3.3)", - "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).", + "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).", "mockery/mockery": "Required to use mocking (^1.6).", - "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", - "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).", - "predis/predis": "Required to use the predis connector (^2.0.2).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).", + "predis/predis": "Required to use the predis connector (^2.3|^3.0).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", - "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", - "symfony/cache": "Required to PSR-6 cache bridge (^7.0).", - "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).", - "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).", - "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).", - "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).", - "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)." + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0|^1.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "11.x-dev" + "dev-master": "12.x-dev" } }, "autoload": { "files": [ + "src/Illuminate/Collections/functions.php", "src/Illuminate/Collections/helpers.php", "src/Illuminate/Events/functions.php", "src/Illuminate/Filesystem/functions.php", @@ -1489,25 +1495,25 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-09-26T11:21:58+00:00" + "time": "2025-11-18T15:16:10+00:00" }, { "name": "laravel/prompts", - "version": "v0.2.1", + "version": "v0.3.7", "source": { "type": "git", "url": "https://github.com/laravel/prompts.git", - "reference": "a132ccf64d46da183b7cf3729df260e836cc7e15" + "reference": "a1891d362714bc40c8d23b0b1d7090f022ea27cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/a132ccf64d46da183b7cf3729df260e836cc7e15", - "reference": "a132ccf64d46da183b7cf3729df260e836cc7e15", + "url": "https://api.github.com/repos/laravel/prompts/zipball/a1891d362714bc40c8d23b0b1d7090f022ea27cc", + "reference": "a1891d362714bc40c8d23b0b1d7090f022ea27cc", "shasum": "" }, "require": { + "composer-runtime-api": "^2.2", "ext-mbstring": "*", - "illuminate/collections": "^10.0|^11.0", "php": "^8.1", "symfony/console": "^6.2|^7.0" }, @@ -1516,10 +1522,11 @@ "laravel/framework": ">=10.17.0 <10.25.0" }, "require-dev": { + "illuminate/collections": "^10.0|^11.0|^12.0", "mockery/mockery": "^1.5", - "pestphp/pest": "^2.3", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-mockery": "^1.1" + "pestphp/pest": "^2.3|^3.4", + "phpstan/phpstan": "^1.12.28", + "phpstan/phpstan-mockery": "^1.1.3" }, "suggest": { "ext-pcntl": "Required for the spinner to be animated." @@ -1527,7 +1534,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.2.x-dev" + "dev-main": "0.3.x-dev" } }, "autoload": { @@ -1545,38 +1552,38 @@ "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.2.1" + "source": "https://github.com/laravel/prompts/tree/v0.3.7" }, - "time": "2024-09-19T10:28:37+00:00" + "time": "2025-09-19T13:47:56+00:00" }, { "name": "laravel/sanctum", - "version": "v4.0.3", + "version": "v4.2.0", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "54aea9d13743ae8a6cdd3c28dbef128a17adecab" + "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/54aea9d13743ae8a6cdd3c28dbef128a17adecab", - "reference": "54aea9d13743ae8a6cdd3c28dbef128a17adecab", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/fd6df4f79f48a72992e8d29a9c0ee25422a0d677", + "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/console": "^11.0", - "illuminate/contracts": "^11.0", - "illuminate/database": "^11.0", - "illuminate/support": "^11.0", + "illuminate/console": "^11.0|^12.0", + "illuminate/contracts": "^11.0|^12.0", + "illuminate/database": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", "php": "^8.2", "symfony/console": "^7.0" }, "require-dev": { "mockery/mockery": "^1.6", - "orchestra/testbench": "^9.0", + "orchestra/testbench": "^9.0|^10.0", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^10.5" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { @@ -1611,36 +1618,36 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2024-09-27T14:55:41+00:00" + "time": "2025-07-09T19:45:24+00:00" }, { "name": "laravel/serializable-closure", - "version": "v1.3.5", + "version": "v2.0.6", "source": { "type": "git", "url": "https://github.com/laravel/serializable-closure.git", - "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c" + "reference": "038ce42edee619599a1debb7e81d7b3759492819" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c", - "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/038ce42edee619599a1debb7e81d7b3759492819", + "reference": "038ce42edee619599a1debb7e81d7b3759492819", "shasum": "" }, "require": { - "php": "^7.3|^8.0" + "php": "^8.1" }, "require-dev": { - "illuminate/support": "^8.0|^9.0|^10.0|^11.0", - "nesbot/carbon": "^2.61|^3.0", - "pestphp/pest": "^1.21.3", - "phpstan/phpstan": "^1.8.2", - "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" + "illuminate/support": "^10.0|^11.0|^12.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36|^3.0", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -1672,26 +1679,26 @@ "issues": "https://github.com/laravel/serializable-closure/issues", "source": "https://github.com/laravel/serializable-closure" }, - "time": "2024-09-23T13:33:08+00:00" + "time": "2025-10-09T13:42:30+00:00" }, { "name": "laravel/tinker", - "version": "v2.10.0", + "version": "v2.10.1", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5" + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5", - "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5", + "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3", "shasum": "" }, "require": { - "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", "php": "^7.2.5|^8.0", "psy/psysh": "^0.11.1|^0.12.0", "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" @@ -1699,10 +1706,10 @@ "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8.5.8|^9.3.3" + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." }, "type": "library", "extra": { @@ -1736,22 +1743,22 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.10.0" + "source": "https://github.com/laravel/tinker/tree/v2.10.1" }, - "time": "2024-09-23T13:32:56+00:00" + "time": "2025-01-27T14:24:01+00:00" }, { "name": "league/commonmark", - "version": "2.5.3", + "version": "2.7.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "b650144166dfa7703e62a22e493b853b58d874b0" + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0", - "reference": "b650144166dfa7703e62a22e493b853b58d874b0", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca", + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca", "shasum": "" }, "require": { @@ -1776,10 +1783,11 @@ "phpstan/phpstan": "^1.8.2", "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", "scrutinizer/ocular": "^1.8.1", - "symfony/finder": "^5.3 | ^6.0 || ^7.0", - "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", + "symfony/finder": "^5.3 | ^6.0 | ^7.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", "unleashedtech/php-coding-standard": "^3.1.1", - "vimeo/psalm": "^4.24.0 || ^5.0.0" + "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" }, "suggest": { "symfony/yaml": "v2.3+ required if using the Front Matter extension" @@ -1787,7 +1795,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.6-dev" + "dev-main": "2.8-dev" } }, "autoload": { @@ -1844,7 +1852,7 @@ "type": "tidelift" } ], - "time": "2024-08-16T11:46:16+00:00" + "time": "2025-07-20T12:47:49+00:00" }, { "name": "league/config", @@ -1930,16 +1938,16 @@ }, { "name": "league/flysystem", - "version": "3.29.0", + "version": "3.30.2", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "0adc0d9a51852e170e0028a60bd271726626d3f0" + "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0adc0d9a51852e170e0028a60bd271726626d3f0", - "reference": "0adc0d9a51852e170e0028a60bd271726626d3f0", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277", + "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277", "shasum": "" }, "require": { @@ -1963,13 +1971,13 @@ "composer/semver": "^3.0", "ext-fileinfo": "*", "ext-ftp": "*", - "ext-mongodb": "^1.3", + "ext-mongodb": "^1.3|^2", "ext-zip": "*", "friendsofphp/php-cs-fixer": "^3.5", "google/cloud-storage": "^1.23", "guzzlehttp/psr7": "^2.6", "microsoft/azure-storage-blob": "^1.1", - "mongodb/mongodb": "^1.2", + "mongodb/mongodb": "^1.2|^2", "phpseclib/phpseclib": "^3.0.36", "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5.11|^10.0", @@ -2007,22 +2015,22 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.29.0" + "source": "https://github.com/thephpleague/flysystem/tree/3.30.2" }, - "time": "2024-09-29T11:59:11+00:00" + "time": "2025-11-10T17:13:11+00:00" }, { "name": "league/flysystem-local", - "version": "3.29.0", + "version": "3.30.2", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-local.git", - "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", - "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ab4f9d0d672f601b102936aa728801dd1a11968d", + "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d", "shasum": "" }, "require": { @@ -2056,9 +2064,9 @@ "local" ], "support": { - "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.2" }, - "time": "2024-08-09T21:24:39+00:00" + "time": "2025-11-10T11:23:37+00:00" }, { "name": "league/mime-type-detection", @@ -2116,18 +2124,200 @@ ], "time": "2024-09-21T08:32:55+00:00" }, + { + "name": "league/uri", + "version": "7.6.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "f625804987a0a9112d954f9209d91fec52182344" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/f625804987a0a9112d954f9209d91fec52182344", + "reference": "f625804987a0a9112d954f9209d91fec52182344", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.6", + "php": "^8.1", + "psr/http-factory": "^1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-dom": "to convert the URI into an HTML anchor tag", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "ext-uri": "to use the PHP native URI class", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "league/uri-polyfill": "Needed to backport the PHP URI extension for older versions of PHP", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle WHATWG URL", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "URN", + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc2141", + "rfc3986", + "rfc3987", + "rfc6570", + "rfc8141", + "uri", + "uri-template", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.6.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2025-11-18T12:17:23+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.6.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "ccbfb51c0445298e7e0b7f4481b942f589665368" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/ccbfb51c0445298e7e0b7f4481b942f589665368", + "reference": "ccbfb51c0445298e7e0b7f4481b942f589665368", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1", + "psr/http-message": "^1.1 || ^2.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle WHATWG URL", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.6.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2025-11-18T12:17:23+00:00" + }, { "name": "monolog/monolog", - "version": "3.7.0", + "version": "3.9.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8" + "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8", - "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6", + "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6", "shasum": "" }, "require": { @@ -2147,12 +2337,14 @@ "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", "php-amqplib/php-amqplib": "~2.4 || ^3", - "phpstan/phpstan": "^1.9", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-strict-rules": "^1.4", - "phpunit/phpunit": "^10.5.17", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", "predis/predis": "^1.1 || ^2", - "ruflin/elastica": "^7", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", "symfony/mailer": "^5.4 || ^6", "symfony/mime": "^5.4 || ^6" }, @@ -2203,7 +2395,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/3.7.0" + "source": "https://github.com/Seldaek/monolog/tree/3.9.0" }, "funding": [ { @@ -2215,30 +2407,30 @@ "type": "tidelift" } ], - "time": "2024-06-28T09:40:51+00:00" + "time": "2025-03-24T10:02:05+00:00" }, { "name": "nesbot/carbon", - "version": "3.8.0", + "version": "3.10.3", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f" + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/bbd3eef89af8ba66a3aa7952b5439168fbcc529f", - "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", + "reference": "8e3643dcd149ae0fe1d2ff4f2c8e4bbfad7c165f", "shasum": "" }, "require": { - "carbonphp/carbon-doctrine-types": "*", + "carbonphp/carbon-doctrine-types": "<100.0", "ext-json": "*", "php": "^8.1", "psr/clock": "^1.0", - "symfony/clock": "^6.3 || ^7.0", + "symfony/clock": "^6.3.12 || ^7.0", "symfony/polyfill-mbstring": "^1.0", - "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0" }, "provide": { "psr/clock-implementation": "1.0" @@ -2246,24 +2438,19 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.57.2", + "friendsofphp/php-cs-fixer": "^v3.87.1", "kylekatarnls/multi-tester": "^2.5.3", - "ondrejmirtes/better-reflection": "^6.25.0.4", "phpmd/phpmd": "^2.15.0", - "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.11.2", - "phpunit/phpunit": "^10.5.20", - "squizlabs/php_codesniffer": "^3.9.0" + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.1.22", + "phpunit/phpunit": "^10.5.53", + "squizlabs/php_codesniffer": "^3.13.4" }, "bin": [ "bin/carbon" ], "type": "library", "extra": { - "branch-alias": { - "dev-master": "3.x-dev", - "dev-2.x": "2.x-dev" - }, "laravel": { "providers": [ "Carbon\\Laravel\\ServiceProvider" @@ -2273,6 +2460,10 @@ "includes": [ "extension.neon" ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev", + "dev-master": "3.x-dev" } }, "autoload": { @@ -2304,8 +2495,8 @@ ], "support": { "docs": "https://carbon.nesbot.com/docs", - "issues": "https://github.com/briannesbitt/Carbon/issues", - "source": "https://github.com/briannesbitt/Carbon" + "issues": "https://github.com/CarbonPHP/carbon/issues", + "source": "https://github.com/CarbonPHP/carbon" }, "funding": [ { @@ -2321,29 +2512,29 @@ "type": "tidelift" } ], - "time": "2024-08-19T06:22:39+00:00" + "time": "2025-09-06T13:39:36+00:00" }, { "name": "nette/schema", - "version": "v1.3.0", + "version": "v1.3.3", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" + "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", - "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004", + "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004", "shasum": "" }, "require": { "nette/utils": "^4.0", - "php": "8.1 - 8.3" + "php": "8.1 - 8.5" }, "require-dev": { - "nette/tester": "^2.4", - "phpstan/phpstan-nette": "^1.0", + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^2.0@stable", "tracy/tracy": "^2.8" }, "type": "library", @@ -2353,6 +2544,9 @@ } }, "autoload": { + "psr-4": { + "Nette\\": "src" + }, "classmap": [ "src/" ] @@ -2381,35 +2575,35 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.3.0" + "source": "https://github.com/nette/schema/tree/v1.3.3" }, - "time": "2023-12-11T11:54:22+00:00" + "time": "2025-10-30T22:57:59+00:00" }, { "name": "nette/utils", - "version": "v4.0.5", + "version": "v4.0.8", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", - "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede", + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede", "shasum": "" }, "require": { - "php": "8.0 - 8.4" + "php": "8.0 - 8.5" }, "conflict": { "nette/finder": "<3", "nette/schema": "<1.2.2" }, "require-dev": { - "jetbrains/phpstorm-attributes": "dev-master", + "jetbrains/phpstorm-attributes": "^1.2", "nette/tester": "^2.5", - "phpstan/phpstan": "^1.0", + "phpstan/phpstan-nette": "^2.0@stable", "tracy/tracy": "^2.9" }, "suggest": { @@ -2427,6 +2621,9 @@ } }, "autoload": { + "psr-4": { + "Nette\\": "src" + }, "classmap": [ "src/" ] @@ -2467,22 +2664,22 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v4.0.5" + "source": "https://github.com/nette/utils/tree/v4.0.8" }, - "time": "2024-08-07T15:39:19+00:00" + "time": "2025-08-06T21:43:34+00:00" }, { "name": "nikic/php-parser", - "version": "v5.3.0", + "version": "v5.6.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a" + "reference": "3a454ca033b9e06b63282ce19562e892747449bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3abf7425cd284141dc5d8d14a9ee444de3345d1a", - "reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3a454ca033b9e06b63282ce19562e892747449bb", + "reference": "3a454ca033b9e06b63282ce19562e892747449bb", "shasum": "" }, "require": { @@ -2501,7 +2698,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.x-dev" } }, "autoload": { @@ -2525,38 +2722,37 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.2" }, - "time": "2024-09-29T13:56:26+00:00" + "time": "2025-10-21T19:32:17+00:00" }, { "name": "nunomaduro/termwind", - "version": "v2.1.0", + "version": "v2.3.2", "source": { "type": "git", "url": "https://github.com/nunomaduro/termwind.git", - "reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a" + "reference": "eb61920a53057a7debd718a5b89c2178032b52c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/e5f21eade88689536c0cdad4c3cd75f3ed26e01a", - "reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/eb61920a53057a7debd718a5b89c2178032b52c0", + "reference": "eb61920a53057a7debd718a5b89c2178032b52c0", "shasum": "" }, "require": { "ext-mbstring": "*", "php": "^8.2", - "symfony/console": "^7.0.4" + "symfony/console": "^7.3.4" }, "require-dev": { - "ergebnis/phpstan-rules": "^2.2.0", - "illuminate/console": "^11.1.1", - "laravel/pint": "^1.15.0", - "mockery/mockery": "^1.6.11", - "pestphp/pest": "^2.34.6", - "phpstan/phpstan": "^1.10.66", - "phpstan/phpstan-strict-rules": "^1.5.2", - "symfony/var-dumper": "^7.0.4", + "illuminate/console": "^11.46.1", + "laravel/pint": "^1.25.1", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0 || ^3.8.4", + "phpstan/phpstan": "^1.12.32", + "phpstan/phpstan-strict-rules": "^1.6.2", + "symfony/var-dumper": "^7.3.4", "thecodingmachine/phpstan-strict-rules": "^1.0.0" }, "type": "library", @@ -2599,7 +2795,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/termwind/issues", - "source": "https://github.com/nunomaduro/termwind/tree/v2.1.0" + "source": "https://github.com/nunomaduro/termwind/tree/v2.3.2" }, "funding": [ { @@ -2615,20 +2811,20 @@ "type": "github" } ], - "time": "2024-09-05T15:25:50+00:00" + "time": "2025-10-18T11:10:27+00:00" }, { "name": "phpoption/phpoption", - "version": "1.9.3", + "version": "1.9.4", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", + "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d", "shasum": "" }, "require": { @@ -2636,7 +2832,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34" }, "type": "library", "extra": { @@ -2678,7 +2874,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.4" }, "funding": [ { @@ -2690,7 +2886,69 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:41:07+00:00" + "time": "2025-08-21T11:53:16+00:00" + }, + { + "name": "predis/predis", + "version": "v2.4.1", + "source": { + "type": "git", + "url": "https://github.com/predis/predis.git", + "reference": "07105e050622ed80bd60808367ced9e379f31530" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/predis/predis/zipball/07105e050622ed80bd60808367ced9e379f31530", + "reference": "07105e050622ed80bd60808367ced9e379f31530", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.3", + "phpstan/phpstan": "^1.9", + "phpunit/phpcov": "^6.0 || ^8.0", + "phpunit/phpunit": "^8.0 || ^9.4" + }, + "suggest": { + "ext-relay": "Faster connection with in-memory caching (>=0.6.2)" + }, + "type": "library", + "autoload": { + "psr-4": { + "Predis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Till Krüss", + "homepage": "https://till.im", + "role": "Maintainer" + } + ], + "description": "A flexible and feature-complete Redis/Valkey client for PHP.", + "homepage": "http://github.com/predis/predis", + "keywords": [ + "nosql", + "predis", + "redis" + ], + "support": { + "issues": "https://github.com/predis/predis/issues", + "source": "https://github.com/predis/predis/tree/v2.4.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/tillkruss", + "type": "github" + } + ], + "time": "2025-11-12T18:00:11+00:00" }, { "name": "psr/cache", @@ -3155,16 +3413,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.4", + "version": "v0.12.14", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" + "reference": "95c29b3756a23855a30566b745d218bee690bef2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", - "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/95c29b3756a23855a30566b745d218bee690bef2", + "reference": "95c29b3756a23855a30566b745d218bee690bef2", "shasum": "" }, "require": { @@ -3179,11 +3437,12 @@ "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2" + "bamarni/composer-bin-plugin": "^1.2", + "composer/class-map-generator": "^1.6" }, "suggest": { + "composer/class-map-generator": "Improved tab completion performance with better class discovery.", "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", - "ext-pdo-sqlite": "The doc command requires SQLite to work.", "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." }, "bin": [ @@ -3191,12 +3450,12 @@ ], "type": "library", "extra": { - "branch-alias": { - "dev-main": "0.12.x-dev" - }, "bamarni-bin": { "bin-links": false, "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" } }, "autoload": { @@ -3214,12 +3473,11 @@ "authors": [ { "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "email": "justin@justinhileman.info" } ], "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", + "homepage": "https://psysh.org", "keywords": [ "REPL", "console", @@ -3228,9 +3486,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.14" }, - "time": "2024-06-10T01:18:23+00:00" + "time": "2025-10-27T17:15:31+00:00" }, { "name": "ralouphie/getallheaders", @@ -3278,16 +3536,16 @@ }, { "name": "ramsey/collection", - "version": "2.0.0", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", - "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2", "shasum": "" }, "require": { @@ -3295,25 +3553,22 @@ }, "require-dev": { "captainhook/plugin-composer": "^5.3", - "ergebnis/composer-normalize": "^2.28.3", - "fakerphp/faker": "^1.21", + "ergebnis/composer-normalize": "^2.45", + "fakerphp/faker": "^1.24", "hamcrest/hamcrest-php": "^2.0", - "jangregor/phpstan-prophecy": "^1.0", - "mockery/mockery": "^1.5", + "jangregor/phpstan-prophecy": "^2.1", + "mockery/mockery": "^1.6", "php-parallel-lint/php-console-highlighter": "^1.0", - "php-parallel-lint/php-parallel-lint": "^1.3", - "phpcsstandards/phpcsutils": "^1.0.0-rc1", - "phpspec/prophecy-phpunit": "^2.0", - "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.9", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^9.5", - "psalm/plugin-mockery": "^1.1", - "psalm/plugin-phpunit": "^0.18.4", - "ramsey/coding-standard": "^2.0.3", - "ramsey/conventional-commits": "^1.3", - "vimeo/psalm": "^5.4" + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpspec/prophecy-phpunit": "^2.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^10.5", + "ramsey/coding-standard": "^2.3", + "ramsey/conventional-commits": "^1.6", + "roave/security-advisories": "dev-latest" }, "type": "library", "extra": { @@ -3351,37 +3606,26 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/2.0.0" + "source": "https://github.com/ramsey/collection/tree/2.1.1" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", - "type": "tidelift" - } - ], - "time": "2022-12-31T21:50:55+00:00" + "time": "2025-03-22T05:38:12+00:00" }, { "name": "ramsey/uuid", - "version": "4.7.6", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", - "ext-json": "*", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -3389,26 +3633,23 @@ "rhumsaa/uuid": "self.version" }, "require-dev": { - "captainhook/captainhook": "^5.10", + "captainhook/captainhook": "^5.25", "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -3443,32 +3684,22 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.6" + "source": "https://github.com/ramsey/uuid/tree/4.9.1" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" - } - ], - "time": "2024-04-27T21:32:50+00:00" + "time": "2025-09-04T20:59:21+00:00" }, { "name": "swagger-api/swagger-ui", - "version": "v5.18.2", + "version": "v5.30.2", "source": { "type": "git", "url": "https://github.com/swagger-api/swagger-ui.git", - "reference": "3c7e281d97fd3e70b25f7ff4a001eabd56e375d7" + "reference": "30d8f985caeca5bb9400cf21403686ec5a82c1cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swagger-api/swagger-ui/zipball/3c7e281d97fd3e70b25f7ff4a001eabd56e375d7", - "reference": "3c7e281d97fd3e70b25f7ff4a001eabd56e375d7", + "url": "https://api.github.com/repos/swagger-api/swagger-ui/zipball/30d8f985caeca5bb9400cf21403686ec5a82c1cc", + "reference": "30d8f985caeca5bb9400cf21403686ec5a82c1cc", "shasum": "" }, "type": "library", @@ -3514,22 +3745,22 @@ ], "support": { "issues": "https://github.com/swagger-api/swagger-ui/issues", - "source": "https://github.com/swagger-api/swagger-ui/tree/v5.18.2" + "source": "https://github.com/swagger-api/swagger-ui/tree/v5.30.2" }, - "time": "2024-11-07T14:02:16+00:00" + "time": "2025-11-04T09:41:42+00:00" }, { "name": "symfony/clock", - "version": "v7.1.1", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/clock.git", - "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7" + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7", - "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7", + "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", "shasum": "" }, "require": { @@ -3574,7 +3805,7 @@ "time" ], "support": { - "source": "https://github.com/symfony/clock/tree/v7.1.1" + "source": "https://github.com/symfony/clock/tree/v7.3.0" }, "funding": [ { @@ -3590,27 +3821,28 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:57:53+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/console", - "version": "v7.1.5", + "version": "v7.3.6", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee" + "reference": "c28ad91448f86c5f6d9d2c70f0cf68bf135f252a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee", - "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee", + "url": "https://api.github.com/repos/symfony/console/zipball/c28ad91448f86c5f6d9d2c70f0cf68bf135f252a", + "reference": "c28ad91448f86c5f6d9d2c70f0cf68bf135f252a", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^6.4|^7.0" + "symfony/string": "^7.2" }, "conflict": { "symfony/dependency-injection": "<6.4", @@ -3667,7 +3899,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.1.5" + "source": "https://github.com/symfony/console/tree/v7.3.6" }, "funding": [ { @@ -3678,25 +3910,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-20T08:28:38+00:00" + "time": "2025-11-04T01:21:42+00:00" }, { "name": "symfony/css-selector", - "version": "v7.1.1", + "version": "v7.3.6", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4" + "reference": "84321188c4754e64273b46b406081ad9b18e8614" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4", - "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/84321188c4754e64273b46b406081ad9b18e8614", + "reference": "84321188c4754e64273b46b406081ad9b18e8614", "shasum": "" }, "require": { @@ -3732,7 +3968,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.1.1" + "source": "https://github.com/symfony/css-selector/tree/v7.3.6" }, "funding": [ { @@ -3743,25 +3979,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-05-31T14:57:53+00:00" + "time": "2025-10-29T17:24:25+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.0", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -3769,12 +4009,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.5-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -3799,7 +4039,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -3815,20 +4055,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/error-handler", - "version": "v7.1.3", + "version": "v7.3.6", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "432bb369952795c61ca1def65e078c4a80dad13c" + "reference": "bbe40bfab84323d99dab491b716ff142410a92a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c", - "reference": "432bb369952795c61ca1def65e078c4a80dad13c", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/bbe40bfab84323d99dab491b716ff142410a92a8", + "reference": "bbe40bfab84323d99dab491b716ff142410a92a8", "shasum": "" }, "require": { @@ -3841,9 +4081,11 @@ "symfony/http-kernel": "<6.4" }, "require-dev": { + "symfony/console": "^6.4|^7.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0" + "symfony/serializer": "^6.4|^7.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -3874,7 +4116,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.1.3" + "source": "https://github.com/symfony/error-handler/tree/v7.3.6" }, "funding": [ { @@ -3885,25 +4127,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-07-26T13:02:51+00:00" + "time": "2025-10-31T19:12:50+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.1.1", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7" + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", - "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191", + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191", "shasum": "" }, "require": { @@ -3954,7 +4200,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3" }, "funding": [ { @@ -3965,25 +4211,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-05-31T14:57:53+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.0", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", - "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", "shasum": "" }, "require": { @@ -3992,12 +4242,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.5-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -4030,7 +4280,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" }, "funding": [ { @@ -4046,20 +4296,20 @@ "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/finder", - "version": "v7.1.4", + "version": "v7.3.5", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "d95bbf319f7d052082fb7af147e0f835a695e823" + "reference": "9f696d2f1e340484b4683f7853b273abff94421f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823", - "reference": "d95bbf319f7d052082fb7af147e0f835a695e823", + "url": "https://api.github.com/repos/symfony/finder/zipball/9f696d2f1e340484b4683f7853b273abff94421f", + "reference": "9f696d2f1e340484b4683f7853b273abff94421f", "shasum": "" }, "require": { @@ -4094,7 +4344,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.1.4" + "source": "https://github.com/symfony/finder/tree/v7.3.5" }, "funding": [ { @@ -4105,40 +4355,46 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-08-13T14:28:19+00:00" + "time": "2025-10-15T18:45:57+00:00" }, { "name": "symfony/http-foundation", - "version": "v7.1.5", + "version": "v7.3.7", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b" + "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b", - "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/db488a62f98f7a81d5746f05eea63a74e55bb7c4", + "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", "symfony/polyfill-mbstring": "~1.1", "symfony/polyfill-php83": "^1.27" }, "conflict": { "doctrine/dbal": "<3.6", - "symfony/cache": "<6.4" + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" }, "require-dev": { "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.4|^7.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/clock": "^6.4|^7.0", "symfony/dependency-injection": "^6.4|^7.0", "symfony/expression-language": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", @@ -4171,7 +4427,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.1.5" + "source": "https://github.com/symfony/http-foundation/tree/v7.3.7" }, "funding": [ { @@ -4182,25 +4438,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-20T08:28:38+00:00" + "time": "2025-11-08T16:41:12+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.1.5", + "version": "v7.3.7", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b" + "reference": "10b8e9b748ea95fa4539c208e2487c435d3c87ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b", - "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/10b8e9b748ea95fa4539c208e2487c435d3c87ce", + "reference": "10b8e9b748ea95fa4539c208e2487c435d3c87ce", "shasum": "" }, "require": { @@ -4208,8 +4468,8 @@ "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", + "symfony/event-dispatcher": "^7.3", + "symfony/http-foundation": "^7.3", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -4229,7 +4489,7 @@ "symfony/twig-bridge": "<6.4", "symfony/validator": "<6.4", "symfony/var-dumper": "<6.4", - "twig/twig": "<3.0.4" + "twig/twig": "<3.12" }, "provide": { "psr/log-implementation": "1.0|2.0|3.0" @@ -4257,7 +4517,7 @@ "symfony/validator": "^6.4|^7.0", "symfony/var-dumper": "^6.4|^7.0", "symfony/var-exporter": "^6.4|^7.0", - "twig/twig": "^3.0.4" + "twig/twig": "^3.12" }, "type": "library", "autoload": { @@ -4285,7 +4545,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.1.5" + "source": "https://github.com/symfony/http-kernel/tree/v7.3.7" }, "funding": [ { @@ -4296,25 +4556,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-21T06:09:21+00:00" + "time": "2025-11-12T11:38:40+00:00" }, { "name": "symfony/mailer", - "version": "v7.1.5", + "version": "v7.3.5", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b" + "reference": "fd497c45ba9c10c37864e19466b090dcb60a50ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b", - "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b", + "url": "https://api.github.com/repos/symfony/mailer/zipball/fd497c45ba9c10c37864e19466b090dcb60a50ba", + "reference": "fd497c45ba9c10c37864e19466b090dcb60a50ba", "shasum": "" }, "require": { @@ -4323,7 +4587,7 @@ "psr/event-dispatcher": "^1", "psr/log": "^1|^2|^3", "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/mime": "^6.4|^7.0", + "symfony/mime": "^7.2", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -4365,7 +4629,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.1.5" + "source": "https://github.com/symfony/mailer/tree/v7.3.5" }, "funding": [ { @@ -4376,25 +4640,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-08T12:32:26+00:00" + "time": "2025-10-24T14:27:20+00:00" }, { "name": "symfony/mime", - "version": "v7.1.5", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff" + "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff", - "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff", + "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35", + "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35", "shasum": "" }, "require": { @@ -4449,7 +4717,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.1.5" + "source": "https://github.com/symfony/mime/tree/v7.3.4" }, "funding": [ { @@ -4460,16 +4728,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-20T08:28:38+00:00" + "time": "2025-09-16T08:38:17+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -4493,8 +4765,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -4528,7 +4800,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" }, "funding": [ { @@ -4539,6 +4811,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -4548,16 +4824,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", "shasum": "" }, "require": { @@ -4569,8 +4845,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -4606,7 +4882,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" }, "funding": [ { @@ -4617,25 +4893,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-06-27T09:58:17+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3", "shasum": "" }, "require": { @@ -4648,8 +4928,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -4689,7 +4969,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0" }, "funding": [ { @@ -4700,16 +4980,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-09-10T14:38:51+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -4730,8 +5014,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -4770,7 +5054,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" }, "funding": [ { @@ -4781,6 +5065,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -4790,19 +5078,20 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", "shasum": "" }, "require": { + "ext-iconv": "*", "php": ">=7.2" }, "provide": { @@ -4814,8 +5103,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -4850,7 +5139,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" }, "funding": [ { @@ -4861,25 +5150,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-12-23T08:48:59+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "shasum": "" }, "require": { @@ -4888,8 +5181,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -4930,7 +5223,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" }, "funding": [ { @@ -4941,25 +5234,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-01-02T08:10:11+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", "shasum": "" }, "require": { @@ -4968,8 +5265,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -5006,7 +5303,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" }, "funding": [ { @@ -5017,16 +5314,180 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-07-08T02:45:35+00:00" + }, + { + "name": "symfony/polyfill-php84", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php84\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-24T13:30:11+00:00" + }, + { + "name": "symfony/polyfill-php85", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php85\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-23T16:12:55+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.31.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", @@ -5050,8 +5511,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -5085,7 +5546,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0" }, "funding": [ { @@ -5096,6 +5557,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -5105,16 +5570,16 @@ }, { "name": "symfony/process", - "version": "v7.1.5", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "5c03ee6369281177f07f7c68252a280beccba847" + "reference": "f24f8f316367b30810810d4eb30c543d7003ff3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847", - "reference": "5c03ee6369281177f07f7c68252a280beccba847", + "url": "https://api.github.com/repos/symfony/process/zipball/f24f8f316367b30810810d4eb30c543d7003ff3b", + "reference": "f24f8f316367b30810810d4eb30c543d7003ff3b", "shasum": "" }, "require": { @@ -5146,7 +5611,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.1.5" + "source": "https://github.com/symfony/process/tree/v7.3.4" }, "funding": [ { @@ -5157,25 +5622,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-19T21:48:23+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { "name": "symfony/routing", - "version": "v7.1.4", + "version": "v7.3.6", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7" + "reference": "c97abe725f2a1a858deca629a6488c8fc20c3091" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7", - "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7", + "url": "https://api.github.com/repos/symfony/routing/zipball/c97abe725f2a1a858deca629a6488c8fc20c3091", + "reference": "c97abe725f2a1a858deca629a6488c8fc20c3091", "shasum": "" }, "require": { @@ -5227,7 +5696,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.1.4" + "source": "https://github.com/symfony/routing/tree/v7.3.6" }, "funding": [ { @@ -5238,25 +5707,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-08-29T08:16:25+00:00" + "time": "2025-11-05T07:57:47+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.5.0", + "version": "v3.6.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", - "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", "shasum": "" }, "require": { @@ -5269,12 +5742,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.5-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -5310,7 +5783,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" }, "funding": [ { @@ -5321,25 +5794,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2025-07-15T11:30:57+00:00" }, { "name": "symfony/string", - "version": "v7.1.5", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306" + "reference": "f96476035142921000338bad71e5247fbc138872" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306", - "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306", + "url": "https://api.github.com/repos/symfony/string/zipball/f96476035142921000338bad71e5247fbc138872", + "reference": "f96476035142921000338bad71e5247fbc138872", "shasum": "" }, "require": { @@ -5354,7 +5831,6 @@ }, "require-dev": { "symfony/emoji": "^7.1", - "symfony/error-handler": "^6.4|^7.0", "symfony/http-client": "^6.4|^7.0", "symfony/intl": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3.0", @@ -5397,7 +5873,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.1.5" + "source": "https://github.com/symfony/string/tree/v7.3.4" }, "funding": [ { @@ -5408,33 +5884,39 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-20T08:28:38+00:00" + "time": "2025-09-11T14:36:48+00:00" }, { "name": "symfony/translation", - "version": "v7.1.5", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea" + "reference": "ec25870502d0c7072d086e8ffba1420c85965174" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea", - "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea", + "url": "https://api.github.com/repos/symfony/translation/zipball/ec25870502d0c7072d086e8ffba1420c85965174", + "reference": "ec25870502d0c7072d086e8ffba1420c85965174", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { + "nikic/php-parser": "<5.0", "symfony/config": "<6.4", "symfony/console": "<6.4", "symfony/dependency-injection": "<6.4", @@ -5448,7 +5930,7 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.18|^5.0", + "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", "symfony/config": "^6.4|^7.0", "symfony/console": "^6.4|^7.0", @@ -5491,7 +5973,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.1.5" + "source": "https://github.com/symfony/translation/tree/v7.3.4" }, "funding": [ { @@ -5502,25 +5984,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-16T06:30:38+00:00" + "time": "2025-09-07T11:39:36+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.0", + "version": "v3.6.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" + "reference": "65a8bc82080447fae78373aa10f8d13b38338977" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", - "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977", "shasum": "" }, "require": { @@ -5528,12 +6014,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.5-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -5569,7 +6055,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1" }, "funding": [ { @@ -5580,25 +6066,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-04-18T09:32:20+00:00" + "time": "2025-07-15T13:41:35+00:00" }, { "name": "symfony/uid", - "version": "v7.1.5", + "version": "v7.3.1", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "8c7bb8acb933964055215d89f9a9871df0239317" + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/8c7bb8acb933964055215d89f9a9871df0239317", - "reference": "8c7bb8acb933964055215d89f9a9871df0239317", + "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb", + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb", "shasum": "" }, "require": { @@ -5643,7 +6133,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v7.1.5" + "source": "https://github.com/symfony/uid/tree/v7.3.1" }, "funding": [ { @@ -5659,36 +6149,36 @@ "type": "tidelift" } ], - "time": "2024-09-17T09:16:35+00:00" + "time": "2025-06-27T19:55:54+00:00" }, { "name": "symfony/var-dumper", - "version": "v7.1.5", + "version": "v7.3.5", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "e20e03889539fd4e4211e14d2179226c513c010d" + "reference": "476c4ae17f43a9a36650c69879dcf5b1e6ae724d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d", - "reference": "e20e03889539fd4e4211e14d2179226c513c010d", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/476c4ae17f43a9a36650c69879dcf5b1e6ae724d", + "reference": "476c4ae17f43a9a36650c69879dcf5b1e6ae724d", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { "symfony/console": "<6.4" }, "require-dev": { - "ext-iconv": "*", "symfony/console": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", "symfony/process": "^6.4|^7.0", "symfony/uid": "^6.4|^7.0", - "twig/twig": "^3.0.4" + "twig/twig": "^3.12" }, "bin": [ "Resources/bin/var-dump-server" @@ -5726,7 +6216,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.1.5" + "source": "https://github.com/symfony/var-dumper/tree/v7.3.5" }, "funding": [ { @@ -5737,29 +6227,34 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-16T10:07:02+00:00" + "time": "2025-09-27T09:00:46+00:00" }, { "name": "symfony/yaml", - "version": "v7.1.5", + "version": "v7.3.5", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4" + "reference": "90208e2fc6f68f613eae7ca25a2458a931b1bacc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4", - "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4", + "url": "https://api.github.com/repos/symfony/yaml/zipball/90208e2fc6f68f613eae7ca25a2458a931b1bacc", + "reference": "90208e2fc6f68f613eae7ca25a2458a931b1bacc", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -5797,7 +6292,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v7.1.5" + "source": "https://github.com/symfony/yaml/tree/v7.3.5" }, "funding": [ { @@ -5808,25 +6303,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-17T12:49:58+00:00" + "time": "2025-09-27T09:00:46+00:00" }, { "name": "tightenco/ziggy", - "version": "v2.3.0", + "version": "v2.6.0", "source": { "type": "git", "url": "https://github.com/tighten/ziggy.git", - "reference": "5395ba7c6d6ea1709acf5435694c4732c2912b5e" + "reference": "cccc6035c109daab03a33926b3a8499bedbed01f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tighten/ziggy/zipball/5395ba7c6d6ea1709acf5435694c4732c2912b5e", - "reference": "5395ba7c6d6ea1709acf5435694c4732c2912b5e", + "url": "https://api.github.com/repos/tighten/ziggy/zipball/cccc6035c109daab03a33926b3a8499bedbed01f", + "reference": "cccc6035c109daab03a33926b3a8499bedbed01f", "shasum": "" }, "require": { @@ -5836,9 +6335,9 @@ }, "require-dev": { "laravel/folio": "^1.1", - "orchestra/testbench": "^7.0 || ^8.0 || ^9.0", - "pestphp/pest": "^2.26", - "pestphp/pest-plugin-laravel": "^2.4" + "orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0", + "pestphp/pest": "^2.26|^3.0", + "pestphp/pest-plugin-laravel": "^2.4|^3.0" }, "type": "library", "extra": { @@ -5881,37 +6380,39 @@ ], "support": { "issues": "https://github.com/tighten/ziggy/issues", - "source": "https://github.com/tighten/ziggy/tree/v2.3.0" + "source": "https://github.com/tighten/ziggy/tree/v2.6.0" }, - "time": "2024-07-21T16:18:39+00:00" + "time": "2025-09-15T00:00:26+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "v2.2.7", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" + "reference": "0d72ac1c00084279c1816675284073c5a337c20d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", - "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", - "php": "^5.5 || ^7.0 || ^8.0", - "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -5934,22 +6435,22 @@ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", "support": { "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", - "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" }, - "time": "2023-12-08T13:03:43+00:00" + "time": "2024-12-21T16:25:41+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.1", + "version": "v5.6.2", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "shasum": "" }, "require": { @@ -6008,7 +6509,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" }, "funding": [ { @@ -6020,20 +6521,20 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:52:34+00:00" + "time": "2025-04-30T23:37:27+00:00" }, { "name": "voku/portable-ascii", - "version": "2.0.1", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/voku/portable-ascii.git", - "reference": "b56450eed252f6801410d810c8e1727224ae0743" + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", - "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", "shasum": "" }, "require": { @@ -6058,7 +6559,7 @@ "authors": [ { "name": "Lars Moelleken", - "homepage": "http://www.moelleken.org/" + "homepage": "https://www.moelleken.org/" } ], "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", @@ -6070,7 +6571,7 @@ ], "support": { "issues": "https://github.com/voku/portable-ascii/issues", - "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" }, "funding": [ { @@ -6094,65 +6595,7 @@ "type": "tidelift" } ], - "time": "2022-03-08T17:03:00+00:00" - }, - { - "name": "webmozart/assert", - "version": "1.11.0", - "source": { - "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", - "shasum": "" - }, - "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.13" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" - }, - "time": "2022-06-03T18:03:27+00:00" + "time": "2024-11-21T01:49:47+00:00" }, { "name": "zircote/swagger-php", @@ -6239,16 +6682,16 @@ "packages-dev": [ { "name": "fakerphp/faker", - "version": "v1.23.1", + "version": "v1.24.1", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", - "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", "shasum": "" }, "require": { @@ -6296,22 +6739,22 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" }, - "time": "2024-01-02T13:46:09+00:00" + "time": "2024-11-21T13:46:39+00:00" }, { "name": "filp/whoops", - "version": "2.16.0", + "version": "2.18.4", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "befcdc0e5dce67252aa6322d82424be928214fa2" + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2", - "reference": "befcdc0e5dce67252aa6322d82424be928214fa2", + "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d", "shasum": "" }, "require": { @@ -6361,7 +6804,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.16.0" + "source": "https://github.com/filp/whoops/tree/2.18.4" }, "funding": [ { @@ -6369,24 +6812,24 @@ "type": "github" } ], - "time": "2024-09-25T12:00:00+00:00" + "time": "2025-08-08T12:00:00+00:00" }, { "name": "hamcrest/hamcrest-php", - "version": "v2.0.1", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", - "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", "shasum": "" }, "require": { - "php": "^5.3|^7.0|^8.0" + "php": "^7.4|^8.0" }, "replace": { "cordoval/hamcrest-php": "*", @@ -6394,8 +6837,8 @@ "kodova/hamcrest-php": "*" }, "require-dev": { - "phpunit/php-file-iterator": "^1.4 || ^2.0", - "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { @@ -6418,35 +6861,36 @@ ], "support": { "issues": "https://github.com/hamcrest/hamcrest-php/issues", - "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1" }, - "time": "2020-07-09T08:09:16+00:00" + "time": "2025-04-30T06:54:44+00:00" }, { "name": "laravel/breeze", - "version": "v2.2.1", + "version": "v2.3.8", "source": { "type": "git", "url": "https://github.com/laravel/breeze.git", - "reference": "296d88c52b040b44b1003655af1689ea7dc2c7f1" + "reference": "1a29c5792818bd4cddf70b5f743a227e02fbcfcd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/breeze/zipball/296d88c52b040b44b1003655af1689ea7dc2c7f1", - "reference": "296d88c52b040b44b1003655af1689ea7dc2c7f1", + "url": "https://api.github.com/repos/laravel/breeze/zipball/1a29c5792818bd4cddf70b5f743a227e02fbcfcd", + "reference": "1a29c5792818bd4cddf70b5f743a227e02fbcfcd", "shasum": "" }, "require": { - "illuminate/console": "^11.0", - "illuminate/filesystem": "^11.0", - "illuminate/support": "^11.0", - "illuminate/validation": "^11.0", + "illuminate/console": "^11.0|^12.0", + "illuminate/filesystem": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", + "illuminate/validation": "^11.0|^12.0", "php": "^8.2.0", "symfony/console": "^7.0" }, "require-dev": { - "orchestra/testbench": "^9.0", - "phpstan/phpstan": "^1.10" + "laravel/framework": "^11.0|^12.0", + "orchestra/testbench-core": "^9.0|^10.0", + "phpstan/phpstan": "^2.0" }, "type": "library", "extra": { @@ -6480,20 +6924,20 @@ "issues": "https://github.com/laravel/breeze/issues", "source": "https://github.com/laravel/breeze" }, - "time": "2024-09-22T15:02:57+00:00" + "time": "2025-07-18T18:49:59+00:00" }, { "name": "laravel/pint", - "version": "v1.18.1", + "version": "v1.25.1", "source": { "type": "git", "url": "https://github.com/laravel/pint.git", - "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9" + "reference": "5016e263f95d97670d71b9a987bd8996ade6d8d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9", - "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9", + "url": "https://api.github.com/repos/laravel/pint/zipball/5016e263f95d97670d71b9a987bd8996ade6d8d9", + "reference": "5016e263f95d97670d71b9a987bd8996ade6d8d9", "shasum": "" }, "require": { @@ -6501,16 +6945,16 @@ "ext-mbstring": "*", "ext-tokenizer": "*", "ext-xml": "*", - "php": "^8.1.0" + "php": "^8.2.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.64.0", - "illuminate/view": "^10.48.20", - "larastan/larastan": "^2.9.8", - "laravel-zero/framework": "^10.4.0", + "friendsofphp/php-cs-fixer": "^3.87.2", + "illuminate/view": "^11.46.0", + "larastan/larastan": "^3.7.1", + "laravel-zero/framework": "^11.45.0", "mockery/mockery": "^1.6.12", - "nunomaduro/termwind": "^1.15.1", - "pestphp/pest": "^2.35.1" + "nunomaduro/termwind": "^2.3.1", + "pestphp/pest": "^2.36.0" }, "bin": [ "builds/pint" @@ -6546,33 +6990,33 @@ "issues": "https://github.com/laravel/pint/issues", "source": "https://github.com/laravel/pint" }, - "time": "2024-09-24T17:22:50+00:00" + "time": "2025-09-19T02:57:12+00:00" }, { "name": "laravel/sail", - "version": "v1.33.0", + "version": "v1.48.1", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "d54af9d5745e3680d8a6463ffd9f314aa53eb2d1" + "reference": "ef122b223f5fca5e5d88bda5127c846710886329" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/d54af9d5745e3680d8a6463ffd9f314aa53eb2d1", - "reference": "d54af9d5745e3680d8a6463ffd9f314aa53eb2d1", + "url": "https://api.github.com/repos/laravel/sail/zipball/ef122b223f5fca5e5d88bda5127c846710886329", + "reference": "ef122b223f5fca5e5d88bda5127c846710886329", "shasum": "" }, "require": { - "illuminate/console": "^9.52.16|^10.0|^11.0", - "illuminate/contracts": "^9.52.16|^10.0|^11.0", - "illuminate/support": "^9.52.16|^10.0|^11.0", + "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0", "php": "^8.0", "symfony/console": "^6.0|^7.0", "symfony/yaml": "^6.0|^7.0" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0|^9.0", - "phpstan/phpstan": "^1.10" + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpstan/phpstan": "^2.0" }, "bin": [ "bin/sail" @@ -6609,7 +7053,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2024-09-22T19:04:21+00:00" + "time": "2025-11-17T22:05:34+00:00" }, { "name": "mockery/mockery", @@ -6696,16 +7140,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.12.0", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", - "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -6744,7 +7188,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -6752,42 +7196,43 @@ "type": "tidelift" } ], - "time": "2024-06-12T14:39:25+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { "name": "nunomaduro/collision", - "version": "v8.4.0", + "version": "v8.8.2", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a" + "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/e7d1aa8ed753f63fa816932bbc89678238843b4a", - "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", + "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", "shasum": "" }, "require": { - "filp/whoops": "^2.15.4", - "nunomaduro/termwind": "^2.0.1", + "filp/whoops": "^2.18.1", + "nunomaduro/termwind": "^2.3.1", "php": "^8.2.0", - "symfony/console": "^7.1.3" + "symfony/console": "^7.3.0" }, "conflict": { - "laravel/framework": "<11.0.0 || >=12.0.0", - "phpunit/phpunit": "<10.5.1 || >=12.0.0" + "laravel/framework": "<11.44.2 || >=13.0.0", + "phpunit/phpunit": "<11.5.15 || >=13.0.0" }, "require-dev": { - "larastan/larastan": "^2.9.8", - "laravel/framework": "^11.19.0", - "laravel/pint": "^1.17.1", - "laravel/sail": "^1.31.0", - "laravel/sanctum": "^4.0.2", - "laravel/tinker": "^2.9.0", - "orchestra/testbench-core": "^9.2.3", - "pestphp/pest": "^2.35.0 || ^3.0.0", - "sebastian/environment": "^6.1.0 || ^7.0.0" + "brianium/paratest": "^7.8.3", + "larastan/larastan": "^3.4.2", + "laravel/framework": "^11.44.2 || ^12.18", + "laravel/pint": "^1.22.1", + "laravel/sail": "^1.43.1", + "laravel/sanctum": "^4.1.1", + "laravel/tinker": "^2.10.1", + "orchestra/testbench-core": "^9.12.0 || ^10.4", + "pestphp/pest": "^3.8.2", + "sebastian/environment": "^7.2.1 || ^8.0" }, "type": "library", "extra": { @@ -6824,6 +7269,7 @@ "cli", "command-line", "console", + "dev", "error", "handling", "laravel", @@ -6849,7 +7295,7 @@ "type": "patreon" } ], - "time": "2024-08-03T15:32:23+00:00" + "time": "2025-06-25T02:12:12+00:00" }, { "name": "phar-io/manifest", @@ -6971,35 +7417,35 @@ }, { "name": "phpunit/php-code-coverage", - "version": "11.0.6", + "version": "11.0.11", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "ebdffc9e09585dafa71b9bffcdb0a229d4704c45" + "reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ebdffc9e09585dafa71b9bffcdb0a229d4704c45", - "reference": "ebdffc9e09585dafa71b9bffcdb0a229d4704c45", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", + "reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^5.1.0", + "nikic/php-parser": "^5.4.0", "php": ">=8.2", - "phpunit/php-file-iterator": "^5.0.1", + "phpunit/php-file-iterator": "^5.1.0", "phpunit/php-text-template": "^4.0.1", "sebastian/code-unit-reverse-lookup": "^4.0.1", "sebastian/complexity": "^4.0.1", "sebastian/environment": "^7.2.0", "sebastian/lines-of-code": "^3.0.1", - "sebastian/version": "^5.0.1", + "sebastian/version": "^5.0.2", "theseer/tokenizer": "^1.2.3" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.5.2" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -7037,15 +7483,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.6" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.11" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage", + "type": "tidelift" } ], - "time": "2024-08-22T04:37:56+00:00" + "time": "2025-08-27T14:37:49+00:00" }, { "name": "phpunit/php-file-iterator", @@ -7294,16 +7752,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.3.6", + "version": "11.5.44", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "d62c45a19c665bb872c2a47023a0baf41a98bb2b" + "reference": "c346885c95423eda3f65d85a194aaa24873cda82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d62c45a19c665bb872c2a47023a0baf41a98bb2b", - "reference": "d62c45a19c665bb872c2a47023a0baf41a98bb2b", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c346885c95423eda3f65d85a194aaa24873cda82", + "reference": "c346885c95423eda3f65d85a194aaa24873cda82", "shasum": "" }, "require": { @@ -7313,25 +7771,26 @@ "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.12.0", + "myclabs/deep-copy": "^1.13.4", "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=8.2", - "phpunit/php-code-coverage": "^11.0.6", + "phpunit/php-code-coverage": "^11.0.11", "phpunit/php-file-iterator": "^5.1.0", "phpunit/php-invoker": "^5.0.1", "phpunit/php-text-template": "^4.0.1", "phpunit/php-timer": "^7.0.1", "sebastian/cli-parser": "^3.0.2", - "sebastian/code-unit": "^3.0.1", - "sebastian/comparator": "^6.1.0", + "sebastian/code-unit": "^3.0.3", + "sebastian/comparator": "^6.3.2", "sebastian/diff": "^6.0.2", - "sebastian/environment": "^7.2.0", - "sebastian/exporter": "^6.1.3", + "sebastian/environment": "^7.2.1", + "sebastian/exporter": "^6.3.2", "sebastian/global-state": "^7.0.2", "sebastian/object-enumerator": "^6.0.1", - "sebastian/type": "^5.1.0", - "sebastian/version": "^5.0.1" + "sebastian/type": "^5.1.3", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" }, "suggest": { "ext-soap": "To be able to generate mocks based on WSDL files" @@ -7342,7 +7801,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "11.3-dev" + "dev-main": "11.5-dev" } }, "autoload": { @@ -7374,7 +7833,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.3.6" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.44" }, "funding": [ { @@ -7385,12 +7844,20 @@ "url": "https://github.com/sebastianbergmann", "type": "github" }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, { "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", "type": "tidelift" } ], - "time": "2024-09-19T10:54:28+00:00" + "time": "2025-11-13T07:17:35+00:00" }, { "name": "sebastian/cli-parser", @@ -7451,23 +7918,23 @@ }, { "name": "sebastian/code-unit", - "version": "3.0.1", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "6bb7d09d6623567178cf54126afa9c2310114268" + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268", - "reference": "6bb7d09d6623567178cf54126afa9c2310114268", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64", "shasum": "" }, "require": { "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.5" }, "type": "library", "extra": { @@ -7496,7 +7963,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/code-unit/issues", "security": "https://github.com/sebastianbergmann/code-unit/security/policy", - "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1" + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3" }, "funding": [ { @@ -7504,7 +7971,7 @@ "type": "github" } ], - "time": "2024-07-03T04:44:28+00:00" + "time": "2025-03-19T07:56:08+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -7564,16 +8031,16 @@ }, { "name": "sebastian/comparator", - "version": "6.1.0", + "version": "6.3.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "fa37b9e2ca618cb051d71b60120952ee8ca8b03d" + "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa37b9e2ca618cb051d71b60120952ee8ca8b03d", - "reference": "fa37b9e2ca618cb051d71b60120952ee8ca8b03d", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8", + "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8", "shasum": "" }, "require": { @@ -7584,12 +8051,15 @@ "sebastian/exporter": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^11.3" + "phpunit/phpunit": "^11.4" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.1-dev" + "dev-main": "6.3-dev" } }, "autoload": { @@ -7629,15 +8099,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/6.1.0" + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.2" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2024-09-11T15:42:56+00:00" + "time": "2025-08-10T08:07:46+00:00" }, { "name": "sebastian/complexity", @@ -7766,23 +8248,23 @@ }, { "name": "sebastian/environment", - "version": "7.2.0", + "version": "7.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5" + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", - "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4", "shasum": "" }, "require": { "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.3" }, "suggest": { "ext-posix": "*" @@ -7818,28 +8300,40 @@ "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "security": "https://github.com/sebastianbergmann/environment/security/policy", - "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0" + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", + "type": "tidelift" } ], - "time": "2024-07-03T04:54:44+00:00" + "time": "2025-05-21T11:55:47+00:00" }, { "name": "sebastian/exporter", - "version": "6.1.3", + "version": "6.3.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e" + "reference": "70a298763b40b213ec087c51c739efcaa90bcd74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e", - "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74", + "reference": "70a298763b40b213ec087c51c739efcaa90bcd74", "shasum": "" }, "require": { @@ -7848,12 +8342,12 @@ "sebastian/recursion-context": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^11.2" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.1-dev" + "dev-main": "6.3-dev" } }, "autoload": { @@ -7896,15 +8390,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "security": "https://github.com/sebastianbergmann/exporter/security/policy", - "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3" + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" } ], - "time": "2024-07-03T04:56:19+00:00" + "time": "2025-09-24T06:12:51+00:00" }, { "name": "sebastian/global-state", @@ -8142,23 +8648,23 @@ }, { "name": "sebastian/recursion-context", - "version": "6.0.2", + "version": "6.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "694d156164372abbd149a4b85ccda2e4670c0e16" + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16", - "reference": "694d156164372abbd149a4b85ccda2e4670c0e16", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc", + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc", "shasum": "" }, "require": { "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^11.0" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { @@ -8194,28 +8700,40 @@ "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", + "type": "tidelift" } ], - "time": "2024-07-03T05:10:34+00:00" + "time": "2025-08-13T04:42:22+00:00" }, { "name": "sebastian/type", - "version": "5.1.0", + "version": "5.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac" + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac", - "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449", + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449", "shasum": "" }, "require": { @@ -8251,28 +8769,40 @@ "support": { "issues": "https://github.com/sebastianbergmann/type/issues", "security": "https://github.com/sebastianbergmann/type/security/policy", - "source": "https://github.com/sebastianbergmann/type/tree/5.1.0" + "source": "https://github.com/sebastianbergmann/type/tree/5.1.3" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/type", + "type": "tidelift" } ], - "time": "2024-09-17T13:12:04+00:00" + "time": "2025-08-09T06:55:48+00:00" }, { "name": "sebastian/version", - "version": "5.0.1", + "version": "5.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4" + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/45c9debb7d039ce9b97de2f749c2cf5832a06ac4", - "reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", "shasum": "" }, "require": { @@ -8305,7 +8835,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/version/issues", "security": "https://github.com/sebastianbergmann/version/security/policy", - "source": "https://github.com/sebastianbergmann/version/tree/5.0.1" + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" }, "funding": [ { @@ -8313,20 +8843,72 @@ "type": "github" } ], - "time": "2024-07-03T05:13:08+00:00" + "time": "2024-10-09T05:16:32+00:00" + }, + { + "name": "staabm/side-effects-detector", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" + ], + "support": { + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" + }, + "funding": [ + { + "url": "https://github.com/staabm", + "type": "github" + } + ], + "time": "2024-10-20T05:08:20+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.3", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", - "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c", + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c", "shasum": "" }, "require": { @@ -8355,7 +8937,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + "source": "https://github.com/theseer/tokenizer/tree/1.3.1" }, "funding": [ { @@ -8363,7 +8945,7 @@ "type": "github" } ], - "time": "2024-03-03T12:36:25+00:00" + "time": "2025-11-17T20:03:58+00:00" } ], "aliases": [], diff --git a/database/migrations/2025_04_27_075324_create_osopenuprn_address_table.php b/database/migrations/2025_04_27_075324_create_osopenuprn_address_table.php deleted file mode 100644 index 9a04b25c..00000000 --- a/database/migrations/2025_04_27_075324_create_osopenuprn_address_table.php +++ /dev/null @@ -1,37 +0,0 @@ -create('osopenuprn_address', function (Blueprint $table) { - $table->integer('fid')->autoIncrement()->primary(); - $table->bigInteger('uprn'); - $table->double('x_coordinate'); - $table->double('y_coordinate'); - $table->double('latitude'); - $table->double('longitude'); - $table->timestamps(); - }); - - DB::connection('pgsql')->statement('CREATE EXTENSION IF NOT EXISTS postgis'); - - DB::connection('pgsql')->statement('ALTER TABLE osopenuprn_address ADD COLUMN IF NOT EXISTS geom geometry(Point, 27700)'); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::connection('pgsql')->dropIfExists('osopenuprn_address'); - } -}; diff --git a/database/migrations/2025_05_07_031601_create_land_registry_inspires_table.php b/database/migrations/2025_05_07_031601_create_land_registry_inspires_table.php deleted file mode 100644 index 5062a41f..00000000 --- a/database/migrations/2025_05_07_031601_create_land_registry_inspires_table.php +++ /dev/null @@ -1,36 +0,0 @@ -create('land_registry_inspire', function (Blueprint $table) { - $table->id(); - $table->string('gmlId')->nullable(); - $table->integer('inspireId')->nullable(); - $table->integer('label')->nullable(); - $table->integer('nationalCadastralReference')->nullable(); - $table->timestamp('validFrom')->nullable(); - $table->timestamp('beginLifespanVersion')->nullable(); - $table->timestamps(); - }); - - DB::statement('ALTER TABLE land_registry_inspire ADD COLUMN geom geometry(MultiPolygon,4326) NULL'); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::connection('pgsql')->dropIfExists('land_registry_inspire'); - } -}; diff --git a/database/migrations/2025_05_12_145306_create_nhle_table.php b/database/migrations/2025_05_12_145306_create_nhle_table.php deleted file mode 100644 index 5435b70c..00000000 --- a/database/migrations/2025_05_12_145306_create_nhle_table.php +++ /dev/null @@ -1,49 +0,0 @@ -id('gid'); - - $table->integer('objectid')->nullable(); - $table->integer('listentry')->nullable(); - - $table->string('name', 254)->nullable(); - $table->string('grade', 3)->nullable(); - - $table->date('listdate')->nullable(); - $table->date('amenddate')->nullable(); - - $table->string('capturesca', 7)->nullable(); - $table->string('hyperlink', 66)->nullable(); - $table->string('ngr', 15)->nullable(); - $table->string('easting', 254)->nullable(); - $table->string('northing', 254)->nullable(); - - - $table->geometry('geom')->nullable(); - - $table->double('longitude')->nullable(); - $table->double('latitude')->nullable(); - }); - } - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('nhle'); - } -}; diff --git a/database/migrations/2025_05_21_072049_add_osnma_to_photo_table.php b/database/migrations/2025_05_21_072049_add_osnma_to_photo_table.php new file mode 100644 index 00000000..d1ebd714 --- /dev/null +++ b/database/migrations/2025_05_21_072049_add_osnma_to_photo_table.php @@ -0,0 +1,31 @@ +string('provider', 255)->nullable(); + $table->string('osnma_enabled', 255)->nullable(); + $table->string('osnma_validated', 255)->nullable(); + $table->string('validated_sats', 255)->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('photo', function (Blueprint $table) { + $table->dropColumn(['provider', 'osnma_enabled', 'osnma_validated', 'validated_sats']); + }); + } +}; diff --git a/database/migrations/2025_08_19_084937_create_bld_fts_building_table.php b/database/migrations/2025_08_19_084937_create_bld_fts_building_table.php new file mode 100644 index 00000000..0f601478 --- /dev/null +++ b/database/migrations/2025_08_19_084937_create_bld_fts_building_table.php @@ -0,0 +1,118 @@ +uuid('osid')->primary(); + $table->date('versiondate'); + $table->timestamp('versionavailablefromdate'); + $table->timestamp('versionavailabletodate')->nullable(); + $table->string('changetype', 50); + $table->decimal('geometry_area_m2', 15, 3); + $table->date('geometry_updatedate'); + $table->string('theme', 40); + $table->string('description', 45); + $table->date('description_updatedate'); + $table->string('physicalstate', 20); + $table->date('physicalstate_updatedate'); + $table->integer('buildingpartcount'); + $table->boolean('isinsite'); + $table->uuid('primarysiteid')->nullable(); + $table->integer('containingsitecount'); + $table->uuid('mainbuildingid')->nullable(); + $table->string('mainbuildingid_ismainbuilding', 5)->nullable(); + $table->date('mainbuildingid_updatedate'); + $table->string('buildinguse', 100); + $table->string('buildinguse_oslandusetiera', 50)->nullable(); + $table->integer('buildinguse_addresscount_total'); + $table->integer('buildinguse_addresscount_residential'); + $table->integer('buildinguse_addresscount_commercial'); + $table->integer('buildinguse_addresscount_other'); + $table->date('buildinguse_updatedate'); + $table->string('connectivity', 15); + $table->integer('connectivity_count'); + $table->date('connectivity_updatedate'); + $table->string('constructionmaterial', 40)->nullable(); + $table->date('constructionmaterial_evidencedate')->nullable(); + $table->date('constructionmaterial_updatedate')->nullable(); + $table->string('constructionmaterial_source', 85)->nullable(); + $table->string('constructionmaterial_capturemethod', 25)->nullable(); + $table->string('constructionmaterial_thirdpartyprovenance', 65)->nullable(); + $table->string('buildingage_period', 10)->nullable(); + $table->integer('buildingage_year')->nullable(); + $table->date('buildingage_evidencedate')->nullable(); + $table->date('buildingage_updatedate')->nullable(); + $table->string('buildingage_source', 85)->nullable(); + $table->string('buildingage_capturemethod', 25)->nullable(); + $table->string('buildingage_thirdpartyprovenance', 65)->nullable(); + $table->string('basementpresence', 15)->nullable(); + $table->string('basementpresence_selfcontained', 15)->nullable(); + $table->date('basementpresence_evidencedate')->nullable(); + $table->date('basementpresence_updatedate')->nullable(); + $table->string('basementpresence_source', 85)->nullable(); + $table->string('basementpresence_capturemethod', 25)->nullable(); + $table->string('basementpresence_thirdpartyprovenance', 65)->nullable(); + $table->integer('numberoffloors')->nullable(); + $table->date('numberoffloors_evidencedate')->nullable(); + $table->date('numberoffloors_updatedate')->nullable(); + $table->string('numberoffloors_source', 40)->nullable(); + $table->string('numberoffloors_capturemethod', 25)->nullable(); + $table->decimal('height_absolutemin_m', 5, 1)->nullable(); + $table->decimal('height_absoluteroofbase_m', 5, 1)->nullable(); + $table->decimal('height_absolutemax_m', 5, 1)->nullable(); + $table->decimal('height_relativeroofbase_m', 4, 1)->nullable(); + $table->decimal('height_relativemax_m', 4, 1)->nullable(); + $table->string('height_confidencelevel', 15)->nullable(); + $table->date('height_evidencedate')->nullable(); + $table->date('height_updatedate')->nullable(); + $table->string('roofmaterial_primarymaterial', 35)->nullable(); + $table->string('roofmaterial_solarpanelpresence', 15)->nullable(); + $table->string('roofmaterial_greenroofpresence', 15)->nullable(); + $table->string('roofmaterial_confidenceindicator', 50)->nullable(); + $table->date('roofmaterial_evidencedate')->nullable(); + $table->date('roofmaterial_updatedate')->nullable(); + $table->string('roofmaterial_capturemethod', 25)->nullable(); + $table->string('roofshapeaspect_shape', 10)->nullable(); + $table->decimal('roofshapeaspect_areapitched_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areaflat_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingnorth_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingnortheast_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingeast_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingsoutheast_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingsouth_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingsouthwest_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingwest_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areafacingnorthwest_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areaindeterminable_m2', 7, 1)->nullable(); + $table->decimal('roofshapeaspect_areatotal_m2', 7, 1)->nullable(); + $table->string('roofshapeaspect_confidenceindicator', 50)->nullable(); + $table->date('roofshapeaspect_evidencedate')->nullable(); + $table->date('roofshapeaspect_updatedate')->nullable(); + $table->string('roofshapeaspect_capturemethod', 25)->nullable(); + }); + + DB::statement('ALTER TABLE bld_fts_building ADD COLUMN geometry geometry(Polygon, 27700)'); + Schema::table('bld_fts_building', function (Blueprint $table) { + $table->spatialIndex('geometry'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('bld_fts_building'); + } +}; diff --git a/database/migrations/2025_08_19_090050_create_bld_fts_building_bldtoaddrcrossref_table.php b/database/migrations/2025_08_19_090050_create_bld_fts_building_bldtoaddrcrossref_table.php new file mode 100644 index 00000000..ccc4ae47 --- /dev/null +++ b/database/migrations/2025_08_19_090050_create_bld_fts_building_bldtoaddrcrossref_table.php @@ -0,0 +1,30 @@ +bigInteger('uprn'); + $table->uuid('buildingid'); + $table->date('buildingversiondate'); + + $table->primary(['uprn', 'buildingid', 'buildingversiondate']); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('bld_fts_building_bldtoaddrcrossref'); + } +}; diff --git a/database/migrations/2025_08_19_090100_create_bld_fts_building_bldtobldprtcrossref_table.php b/database/migrations/2025_08_19_090100_create_bld_fts_building_bldtobldprtcrossref_table.php new file mode 100644 index 00000000..ae37a8d9 --- /dev/null +++ b/database/migrations/2025_08_19_090100_create_bld_fts_building_bldtobldprtcrossref_table.php @@ -0,0 +1,30 @@ +uuid('buildingpartid'); + $table->uuid('buildingid'); + $table->date('buildingversiondate'); + + $table->primary(['buildingpartid', 'buildingid', 'buildingversiondate']); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('bld_fts_building_bldtobldprtcrossref'); + } +}; diff --git a/database/migrations/2025_08_19_090110_create_bld_fts_building_bldtostecrossref_table.php b/database/migrations/2025_08_19_090110_create_bld_fts_building_bldtostecrossref_table.php new file mode 100644 index 00000000..cfca6408 --- /dev/null +++ b/database/migrations/2025_08_19_090110_create_bld_fts_building_bldtostecrossref_table.php @@ -0,0 +1,30 @@ +uuid('siteid'); + $table->uuid('buildingid'); + $table->date('buildingversiondate'); + + $table->primary(['siteid', 'buildingid', 'buildingversiondate']); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('bld_fts_building_bldtostecrossref'); + } +}; diff --git a/database/migrations/2025_08_19_091000_create_lus_fts_site_table.php b/database/migrations/2025_08_19_091000_create_lus_fts_site_table.php new file mode 100644 index 00000000..e193255d --- /dev/null +++ b/database/migrations/2025_08_19_091000_create_lus_fts_site_table.php @@ -0,0 +1,76 @@ +uuid('osid')->primary(); + $table->string('toid', 20)->nullable(); + $table->date('versiondate'); + $table->timestamp('versionavailablefromdate'); + $table->timestamp('versionavailabletodate')->nullable(); + $table->string('changetype', 50); + $table->decimal('geometry_area_m2', 15, 3); + $table->date('geometry_evidencedate')->nullable(); + $table->date('geometry_updatedate'); + $table->string('geometry_capturemethod', 25); + $table->string('theme', 40); + $table->string('description', 50); + $table->date('description_evidencedate')->nullable(); + $table->date('description_updatedate'); + $table->string('description_capturemethod', 25); + $table->string('oslandusetiera', 50); + $table->string('oslandusetierb', 166)->nullable(); + $table->date('oslanduse_evidencedate')->nullable(); + $table->date('oslanduse_updatedate'); + $table->string('oslanduse_capturemethod', 25); + $table->string('stakeholder', 150)->nullable(); + $table->string('name1_text', 254)->nullable(); + $table->string('name1_language', 3)->nullable(); + $table->date('name1_evidencedate')->nullable(); + $table->date('name1_updatedate')->nullable(); + $table->string('name2_text', 254)->nullable(); + $table->string('name2_language', 3)->nullable(); + $table->date('name2_evidencedate')->nullable(); + $table->date('name2_updatedate')->nullable(); + $table->string('extentdefinition', 30); + $table->bigInteger('matcheduprn')->nullable(); + $table->string('matcheduprn_method', 40)->nullable(); + $table->string('address_classificationcode', 2)->nullable(); + $table->string('address_primarydescription', 120)->nullable(); + $table->string('address_secondarydescription', 120)->nullable(); + $table->string('address_classificationcorrelation', 15)->nullable(); + $table->string('address_classificationsource', 20)->nullable(); + $table->integer('addresscount_total'); + $table->integer('addresscount_residential'); + $table->integer('addresscount_commercial'); + $table->integer('addresscount_other'); + $table->string('nlud_code', 4)->nullable(); + $table->string('nlud_orderdescription', 30)->nullable(); + $table->string('nlud_groupdescription', 40)->nullable(); + $table->uuid('mainbuildingid')->nullable(); + $table->string('status', 20)->nullable(); + $table->date('status_updatedate')->nullable(); + }); + + DB::statement('ALTER TABLE lus_fts_site ADD COLUMN geometry geometry(MultiPolygon, 27700)'); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('lus_fts_site'); + } +}; diff --git a/database/migrations/2025_08_19_091500_create_lus_fts_site_siteaddressref_table.php b/database/migrations/2025_08_19_091500_create_lus_fts_site_siteaddressref_table.php new file mode 100644 index 00000000..b63bb76b --- /dev/null +++ b/database/migrations/2025_08_19_091500_create_lus_fts_site_siteaddressref_table.php @@ -0,0 +1,31 @@ +bigInteger('uprn'); + $table->uuid('siteid'); + $table->date('siteversiondate'); + $table->string('relationshiptype', 30); + + $table->primary(['uprn', 'siteid', 'siteversiondate', 'relationshiptype'], 'lus_fts_site_siteaddressref_primary'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('lus_fts_site_siteaddressref'); + } +}; diff --git a/database/migrations/2025_08_25_074801_create_ons_bua_table.php b/database/migrations/2025_08_25_074801_create_ons_bua_table.php new file mode 100644 index 00000000..7b0ff534 --- /dev/null +++ b/database/migrations/2025_08_25_074801_create_ons_bua_table.php @@ -0,0 +1,40 @@ +id('fid'); + $table->bigInteger('objectid_1'); + $table->string('gsscode'); + $table->string('bua24cd'); + $table->string('bua24nm'); + $table->string('bua24nmw')->nullable(); + $table->double('geometry_a'); + $table->double('areahectar'); + $table->uuid('globalid'); + }); + + DB::statement('ALTER TABLE ons_bua ADD COLUMN geometry geometry(MultiPolygon, 27700)'); + Schema::table('ons_bua', function (Blueprint $table) { + $table->spatialIndex('geometry'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('ons_bua'); + } +}; diff --git a/database/migrations/2025_09_12_100812_create_entity_links_table.php b/database/migrations/2025_09_12_100812_create_entity_links_table.php new file mode 100644 index 00000000..373b0acb --- /dev/null +++ b/database/migrations/2025_09_12_100812_create_entity_links_table.php @@ -0,0 +1,53 @@ +bigIncrements('id'); + + // Source node + $table->string('src_type', 32)->comment('photo, building, building_part, site, nhle'); + $table->string('src_id', 128)->comment('ID of source node'); + + // Relation + $table->string('relation', 64)->comment('e.g. bearing_match, photo_of'); + + // Destination node + $table->string('dst_type', 32)->comment('photo, building, building_part, site, nhle'); + $table->string('dst_id', 128)->comment('ID of destination node'); + + // Link status + $table->string('status', 16)->default('proposed')->comment('proposed|verified|rejected'); + $table->string('source', 32)->default('auto_bearing')->comment('auto_bearing|manual_officer|import'); + + // Additional metadata + $table->decimal('confidence', 4, 3)->nullable()->comment('confidence level of the link'); + $table->decimal('bearing_delta', 6, 2)->nullable()->comment('bearing delta between source and destination nodes'); + $table->decimal('distance_m', 10, 2)->nullable()->comment('distance between source and destination nodes in meters'); + $table->text('note')->nullable()->comment('additional note or comment about the link'); + + // Audit + $table->bigInteger('created_by')->nullable()->comment('ID of user who created the link'); + $table->bigInteger('verified_by')->nullable()->comment('ID of user who verified the link'); + $table->timestampsTz(); + }); + + // Index + Schema::table('entity_links', function (Blueprint $table) { + $table->unique(['src_type','src_id','relation','dst_type','dst_id'], 'ux_entity_links_unique'); + $table->index(['src_type','src_id','relation','status'], 'ix_entity_links_src'); + $table->index(['dst_type','dst_id','relation','status'], 'ix_entity_links_dst'); + }); + } + + public function down(): void + { + Schema::dropIfExists('entity_links'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_10_01_141000_create_land_registry_cadastral_table.php b/database/migrations/2025_10_01_141000_create_land_registry_cadastral_table.php new file mode 100644 index 00000000..25375f83 --- /dev/null +++ b/database/migrations/2025_10_01_141000_create_land_registry_cadastral_table.php @@ -0,0 +1,43 @@ +increments('id'); // SERIAL PRIMARY KEY (INT AUTO INCREMENT) + $table->integer('fid')->nullable(false)->index(); + $table->string('county_code', 10)->nullable(false)->index(); + $table->string('county_name', 100)->nullable(false)->index(); + $table->integer('bng_easting')->nullable(); + $table->integer('bng_northing')->nullable(); + $table->decimal('longitude', 10, 7)->nullable(); + $table->decimal('latitude', 10, 7)->nullable(); + $table->uuid('global_id')->unique()->nullable(); + + // timestamps dengan default CURRENT_TIMESTAMP + $table->timestamp('created_at')->useCurrent(); + $table->timestamp('updated_at')->useCurrent(); + }); + + // Tambah geometry columns (cara modern) + DB::statement("ALTER TABLE land_registry_cadastral ADD COLUMN geometry geometry(MULTIPOLYGON, 4326)"); + DB::statement("ALTER TABLE land_registry_cadastral ADD COLUMN geometry_bng geometry(MULTIPOLYGON, 27700)"); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('land_registry_cadastral'); + } +}; diff --git a/database/migrations/2025_10_05_103000_create_land_registry_inspire_table.php b/database/migrations/2025_10_05_103000_create_land_registry_inspire_table.php new file mode 100644 index 00000000..7213a51b --- /dev/null +++ b/database/migrations/2025_10_05_103000_create_land_registry_inspire_table.php @@ -0,0 +1,44 @@ +id(); + $table->string('gml_id')->unique()->index(); + $table->bigInteger('INSPIREID')->nullable()->index(); + $table->bigInteger('LABEL')->nullable(); + $table->bigInteger('NATIONALCADASTRALREFERENCE')->nullable(); + $table->timestamp('VALIDFROM')->nullable(); + $table->timestamp('BEGINLIFESPANVERSION')->nullable(); + $table->timestamps(); + }); + + // Add PostGIS geometry column for WGS84 coordinates (EPSG:4326) + DB::statement('ALTER TABLE land_registry_inspire ADD COLUMN geom geometry(GEOMETRY, 4326)'); + + // Create spatial index for geometry column + DB::statement('CREATE INDEX land_registry_inspire_geom_idx ON land_registry_inspire USING GIST (geom)'); + + // Create additional indexes for performance + DB::statement('CREATE INDEX land_registry_inspire_inspireid_idx ON land_registry_inspire (INSPIREID)'); + DB::statement('CREATE INDEX land_registry_inspire_validfrom_idx ON land_registry_inspire (VALIDFROM)'); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('land_registry_inspire'); + } +}; diff --git a/package-lock.json b/package-lock.json index 47c9f7f6..2c6db150 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,28 +1,58 @@ { - "name": "PIC2BIM", + "name": "Code", "lockfileVersion": 3, "requires": true, "packages": { "": { "dependencies": { + "@deck.gl-community/layers": "^9.0.3", + "@deck.gl/core": "^9.0.38", + "@deck.gl/geo-layers": "^9.0.38", + "@deck.gl/layers": "^9.0.38", + "@deck.gl/mesh-layers": "^9.0.38", + "@deck.gl/react": "^9.0.38", + "@deck.gl/widgets": "^9.0.38", + "@emotion/react": "^11.10.5", + "@emotion/styled": "^11.10.5", + "@fontsource/roboto": "^4.5.8", "@fortawesome/fontawesome-svg-core": "^6.6.0", "@fortawesome/free-solid-svg-icons": "^6.6.0", "@fortawesome/react-fontawesome": "^0.2.2", + "@loaders.gl/core": "^4.3.3", + "@loaders.gl/las": "^4.3.3", + "@loaders.gl/loader-utils": "^4.3.3", + "@loaders.gl/pmtiles": "^4.3.3", + "@math.gl/core": "^3.6.2", + "@math.gl/proj4": "^3.6.2", + "@mui/icons-material": "^5.14.9", + "@mui/material": "^5.14.9", + "@placemarkio/check-geojson": "^0.1.14", "@react-pdf/renderer": "^4.1.5", + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "@turf/turf": "^6.5.0", "@types/mapbox-gl": "^3.4.0", "bootstrap": "^5.3.3", "classnames": "^2.5.1", + "exifreader": "^4.16.0", "html2canvas": "^1.4.1", "jquery": "^3.7.1", "lodash": "^4.17.21", "lucide-react": "^0.427.0", - "mapbox-gl": "^3.7.0", + "mapbox-gl": "^3.9.4", + "maplibre-gl": "^2.4.0", "moment": "^2.30.1", + "pmtiles": "^2.7.1", "react-bootstrap": "^2.10.5", "react-icons": "^5.3.0", + "react-map-gl": "^7.1.9", "react-slick": "^0.30.3", "react-use": "^17.5.1", - "slick-carousel": "^1.8.1" + "sass": "^1.87.0", + "slick-carousel": "^1.8.1", + "string-convert": "^0.2.1", + "web-vitals": "^2.1.4" }, "devDependencies": { "@headlessui/react": "^2.2.0", @@ -34,6 +64,7 @@ "@types/react": "^18.0.28", "@types/react-dom": "^18.0.10", "@types/react-slick": "^0.23.13", + "@types/turf": "^3.5.32", "@vitejs/plugin-react": "^4.2.0", "autoprefixer": "^10.4.12", "axios": "^1.6.4", @@ -46,6 +77,12 @@ "vite": "^5.0" } }, + "node_modules/@adobe/css-tools": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz", + "integrity": "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==", + "license": "MIT" + }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", @@ -59,38 +96,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", - "dev": true, + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "license": "MIT", "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.25.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", - "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", "dev": true, "license": "MIT", "engines": { @@ -98,22 +121,22 @@ } }, "node_modules/@babel/core": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", - "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/helper-compilation-targets": "^7.25.2", - "@babel/helper-module-transforms": "^7.25.2", - "@babel/helpers": "^7.25.0", - "@babel/parser": "^7.25.0", - "@babel/template": "^7.25.0", - "@babel/traverse": "^7.25.2", - "@babel/types": "^7.25.2", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -128,32 +151,39 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/generator": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz", - "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==", + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true, + "license": "MIT" + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "license": "MIT", "dependencies": { - "@babel/types": "^7.25.6", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", - "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-validator-option": "^7.24.8", - "browserslist": "^4.23.1", + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -161,31 +191,38 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", - "dev": true, + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", - "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "@babel/traverse": "^7.25.2" + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -195,53 +232,37 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", - "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "dev": true, "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", - "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", - "dev": true, + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", - "dev": true, + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", - "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "dev": true, "license": "MIT", "engines": { @@ -249,43 +270,26 @@ } }, "node_modules/@babel/helpers": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz", - "integrity": "sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", - "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", - "dev": true, + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "license": "MIT", "dependencies": { - "@babel/types": "^7.25.6" + "@babel/types": "^7.28.5" }, "bin": { "parser": "bin/babel-parser.js" @@ -295,13 +299,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", - "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -311,13 +315,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", - "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -327,66 +331,425 @@ } }, "node_modules/@babel/runtime": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz", - "integrity": "sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", - "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", - "dev": true, + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.25.0", - "@babel/types": "^7.25.0" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz", - "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==", - "dev": true, + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.6", - "@babel/parser": "^7.25.6", - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.6", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", - "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", - "dev": true, + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@deck.gl-community/layers": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/@deck.gl-community/layers/-/layers-9.1.1.tgz", + "integrity": "sha512-uGyZLmI7ljkaykq6I8pO6AekeIecab1B/hz4gqGGFe4V9PSfI2e5niMkpQwj7HJAmAaYuAyd6hDReKDrAWYcAQ==", + "license": "MIT", + "dependencies": { + "@deck.gl/core": "^9.1.12", + "@deck.gl/extensions": "^9.1.0", + "@deck.gl/geo-layers": "^9.1.0", + "@deck.gl/layers": "^9.1.0", + "@deck.gl/mesh-layers": "^9.1.0", + "@deck.gl/react": "^9.1.0", + "@loaders.gl/core": "^4.2.0", + "@loaders.gl/i3s": "^4.2.0", + "@loaders.gl/loader-utils": "^4.2.0", + "@loaders.gl/schema": "^4.2.0", + "@loaders.gl/tiles": "^4.2.0", + "@luma.gl/constants": "^9.1.0", + "@luma.gl/core": "^9.1.0", + "@luma.gl/engine": "^9.1.0", + "@math.gl/core": "^4.0.0", + "a5-js": "^0.1.4", + "h3-js": "^4.2.1" + } + }, + "node_modules/@deck.gl-community/layers/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@deck.gl/core": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/core/-/core-9.2.2.tgz", + "integrity": "sha512-ZvCV8kcC730t62Q+iiCn8SOPgDCEyvV6i/GvIXf59Rnyl8pRvo7wcbl5zorbIEFng+a+EcYv/tEAZcAkwe1oEA==", + "license": "MIT", + "dependencies": { + "@loaders.gl/core": "^4.2.0", + "@loaders.gl/images": "^4.2.0", + "@luma.gl/constants": "^9.2.2", + "@luma.gl/core": "^9.2.2", + "@luma.gl/engine": "^9.2.2", + "@luma.gl/shadertools": "^9.2.2", + "@luma.gl/webgl": "^9.2.2", + "@math.gl/core": "^4.1.0", + "@math.gl/sun": "^4.1.0", + "@math.gl/types": "^4.1.0", + "@math.gl/web-mercator": "^4.1.0", + "@probe.gl/env": "^4.1.0", + "@probe.gl/log": "^4.1.0", + "@probe.gl/stats": "^4.1.0", + "@types/offscreencanvas": "^2019.6.4", + "gl-matrix": "^3.0.0", + "mjolnir.js": "^3.0.0" + } + }, + "node_modules/@deck.gl/core/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@deck.gl/extensions": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/extensions/-/extensions-9.2.2.tgz", + "integrity": "sha512-DwbUai9Gm3wdKUj7rflMeOTsBHXlvm5Zah10qNHehv4TNgt8iZ1FFvbZoTi5ocj8s5wo0JdyLQuT98r5LGplrw==", + "license": "MIT", + "dependencies": { + "@luma.gl/constants": "^9.2.2", + "@luma.gl/shadertools": "^9.2.2", + "@math.gl/core": "^4.1.0" + }, + "peerDependencies": { + "@deck.gl/core": "~9.2.0", + "@luma.gl/core": "~9.2.2", + "@luma.gl/engine": "~9.2.2" + } + }, + "node_modules/@deck.gl/extensions/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@deck.gl/geo-layers": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/geo-layers/-/geo-layers-9.2.2.tgz", + "integrity": "sha512-CvusvR5WBK/51N0b5thyXn3VuZBhCVGouOvQQF8c6syCn2G7mt2mbtYvl7xp1WygwviR8c3vBL0L/Av42lSeEg==", + "license": "MIT", + "dependencies": { + "@loaders.gl/3d-tiles": "^4.2.0", + "@loaders.gl/gis": "^4.2.0", + "@loaders.gl/loader-utils": "^4.2.0", + "@loaders.gl/mvt": "^4.2.0", + "@loaders.gl/schema": "^4.2.0", + "@loaders.gl/terrain": "^4.2.0", + "@loaders.gl/tiles": "^4.2.0", + "@loaders.gl/wms": "^4.2.0", + "@luma.gl/gltf": "^9.2.2", + "@luma.gl/shadertools": "^9.2.2", + "@math.gl/core": "^4.1.0", + "@math.gl/culling": "^4.1.0", + "@math.gl/web-mercator": "^4.1.0", + "@types/geojson": "^7946.0.8", + "a5-js": "^0.5.0", + "h3-js": "^4.1.0", + "long": "^3.2.0" + }, + "peerDependencies": { + "@deck.gl/core": "~9.2.0", + "@deck.gl/extensions": "~9.2.0", + "@deck.gl/layers": "~9.2.0", + "@deck.gl/mesh-layers": "~9.2.0", + "@loaders.gl/core": "^4.2.0", + "@luma.gl/core": "~9.2.2", + "@luma.gl/engine": "~9.2.2" + } + }, + "node_modules/@deck.gl/geo-layers/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@deck.gl/geo-layers/node_modules/a5-js": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/a5-js/-/a5-js-0.5.0.tgz", + "integrity": "sha512-VAw19sWdYadhdovb0ViOIi1SdKx6H6LwcGMRFKwMfgL5gcmL/1fKJHfgsNgNaJ7xC/eEyjs6VK+VVd4N0a+peg==", + "license": "Apache-2.0", + "dependencies": { + "gl-matrix": "^3.4.3" + } + }, + "node_modules/@deck.gl/layers": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/layers/-/layers-9.2.2.tgz", + "integrity": "sha512-O1tmE6I7KQs3Wv2W+KkLo3mOW6CqWn92jwkCq7i5b7OZwxNfzdEQFK3bDpQTfDEp1BTwR6bMP1TkhGBVksQJ2Q==", + "license": "MIT", + "dependencies": { + "@loaders.gl/images": "^4.2.0", + "@loaders.gl/schema": "^4.2.0", + "@luma.gl/shadertools": "^9.2.2", + "@mapbox/tiny-sdf": "^2.0.5", + "@math.gl/core": "^4.1.0", + "@math.gl/polygon": "^4.1.0", + "@math.gl/web-mercator": "^4.1.0", + "earcut": "^2.2.4" + }, + "peerDependencies": { + "@deck.gl/core": "~9.2.0", + "@loaders.gl/core": "^4.2.0", + "@luma.gl/core": "~9.2.2", + "@luma.gl/engine": "~9.2.2" + } + }, + "node_modules/@deck.gl/layers/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@deck.gl/mesh-layers": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/mesh-layers/-/mesh-layers-9.2.2.tgz", + "integrity": "sha512-OhH11zy2yyETXY6rwinJnaKk3eTzAk4BHH31ZltK+DI4XHBUVPpXHIyI9soPsI06TObfdx54LgLxdA/PIDdscg==", + "license": "MIT", + "dependencies": { + "@loaders.gl/gltf": "^4.2.0", + "@loaders.gl/schema": "^4.2.0", + "@luma.gl/gltf": "^9.2.2", + "@luma.gl/shadertools": "^9.2.2" + }, + "peerDependencies": { + "@deck.gl/core": "~9.2.0", + "@luma.gl/core": "~9.2.2", + "@luma.gl/engine": "~9.2.2", + "@luma.gl/gltf": "~9.2.2", + "@luma.gl/shadertools": "~9.2.2" + } + }, + "node_modules/@deck.gl/react": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/react/-/react-9.2.2.tgz", + "integrity": "sha512-Q55EaxL6dS5S3vpPiXywF13v3CNr9sbEvxYbjKkcv88xZkGFWCBsEN9+uDz34KjPzKgrvlaQK5Fn6+9Ve46DmA==", + "license": "MIT", + "peerDependencies": { + "@deck.gl/core": "~9.2.0", + "@deck.gl/widgets": "~9.2.0", + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + } + }, + "node_modules/@deck.gl/widgets": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@deck.gl/widgets/-/widgets-9.2.2.tgz", + "integrity": "sha512-CuXRMHlLU+3YJjbicxp84BtIks4dLVXm2txIwUQPHqZ99zSI30SQgnhHUOJi5tJMODLD26HaQaZo0Jp3Z+sRbQ==", + "license": "MIT", + "dependencies": { + "preact": "^10.17.0" + }, + "peerDependencies": { + "@deck.gl/core": "~9.2.0", + "@luma.gl/core": "~9.2.2" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz", + "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.3.3", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz", + "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==", + "license": "MIT" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.4.0.tgz", + "integrity": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz", + "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==", + "license": "MIT" + }, + "node_modules/@emotion/react": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz", + "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/cache": "^11.14.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz", + "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==", + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz", + "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==", + "license": "MIT" + }, + "node_modules/@emotion/styled": { + "version": "11.14.1", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.1.tgz", + "integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/is-prop-valid": "^1.3.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/unitless": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz", + "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==", + "license": "MIT" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz", + "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz", + "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==", + "license": "MIT" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", + "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", + "license": "MIT" + }, "node_modules/@esbuild/aix-ppc64": { "version": "0.21.5", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", @@ -779,30 +1142,30 @@ } }, "node_modules/@floating-ui/core": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", - "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz", + "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", "dev": true, "license": "MIT", "dependencies": { - "@floating-ui/utils": "^0.2.8" + "@floating-ui/utils": "^0.2.10" } }, "node_modules/@floating-ui/dom": { - "version": "1.6.11", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz", - "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz", + "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==", "dev": true, "license": "MIT", "dependencies": { - "@floating-ui/core": "^1.6.0", - "@floating-ui/utils": "^0.2.8" + "@floating-ui/core": "^1.7.3", + "@floating-ui/utils": "^0.2.10" } }, "node_modules/@floating-ui/react": { - "version": "0.26.24", - "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.24.tgz", - "integrity": "sha512-2ly0pCkZIGEQUq5H8bBK0XJmc1xIK/RM3tvVzY3GBER7IOD1UgmC2Y2tjj4AuS+TC+vTE1KJv2053290jua0Sw==", + "version": "0.26.28", + "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.28.tgz", + "integrity": "sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==", "dev": true, "license": "MIT", "dependencies": { @@ -816,13 +1179,13 @@ } }, "node_modules/@floating-ui/react-dom": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz", - "integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.6.tgz", + "integrity": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==", "dev": true, "license": "MIT", "dependencies": { - "@floating-ui/dom": "^1.0.0" + "@floating-ui/dom": "^1.7.4" }, "peerDependencies": { "react": ">=16.8.0", @@ -830,68 +1193,76 @@ } }, "node_modules/@floating-ui/utils": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", - "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz", + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==", "dev": true, "license": "MIT" }, + "node_modules/@fontsource/roboto": { + "version": "4.5.8", + "resolved": "https://registry.npmjs.org/@fontsource/roboto/-/roboto-4.5.8.tgz", + "integrity": "sha512-CnD7zLItIzt86q4Sj3kZUiLcBk1dSk81qcqgMGaZe7SQ1P8hFNxhMl5AZthK1zrDM5m74VVhaOpuMGIL4gagaA==", + "license": "MIT" + }, "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.6.0.tgz", - "integrity": "sha512-xyX0X9mc0kyz9plIyryrRbl7ngsA9jz77mCZJsUkLl+ZKs0KWObgaEBoSgQiYWAsSmjz/yjl0F++Got0Mdp4Rw==", + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.7.2.tgz", + "integrity": "sha512-Zs+YeHUC5fkt7Mg1l6XTniei3k4bwG/yo3iFUtZWd/pMx9g3fdvkSK9E0FOC+++phXOka78uJcYb8JaFkW52Xg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.6.0.tgz", - "integrity": "sha512-KHwPkCk6oRT4HADE7smhfsKudt9N/9lm6EJ5BVg0tD1yPA5hht837fB87F8pn15D8JfTqQOjhKTktwmLMiD7Kg==", + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.7.2.tgz", + "integrity": "sha512-yxtOBWDrdi5DD5o1pmVdq3WMCvnobT0LU6R8RyyVXPvFRd2o79/0NCuQoCjNTeZz9EzA9xS3JxNWfv54RIHFEA==", "license": "MIT", "dependencies": { - "@fortawesome/fontawesome-common-types": "6.6.0" + "@fortawesome/fontawesome-common-types": "6.7.2" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.6.0.tgz", - "integrity": "sha512-IYv/2skhEDFc2WGUcqvFJkeK39Q+HyPf5GHUrT/l2pKbtgEIv1al1TKd6qStR5OIwQdN1GZP54ci3y4mroJWjA==", + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.7.2.tgz", + "integrity": "sha512-GsBrnOzU8uj0LECDfD5zomZJIjrPhIlWU82AHwa2s40FKH+kcxQaBvBo3Z4TxyZHIyX8XTDxsyA33/Vx9eFuQA==", "license": "(CC-BY-4.0 AND MIT)", "dependencies": { - "@fortawesome/fontawesome-common-types": "6.6.0" + "@fortawesome/fontawesome-common-types": "6.7.2" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/react-fontawesome": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.2.2.tgz", - "integrity": "sha512-EnkrprPNqI6SXJl//m29hpaNzOp1bruISWaOiRtkMi/xSvHJlzc2j2JAYS7egxt/EbjSNV/k6Xy0AQI6vB2+1g==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.2.6.tgz", + "integrity": "sha512-mtBFIi1UsYQo7rYonYFkjgYKGoL8T+fEH6NGUpvuqtY3ytMsAoDaPo5rk25KuMtKDipY4bGYM/CkmCHA1N3FUg==", "license": "MIT", "dependencies": { "prop-types": "^15.8.1" }, "peerDependencies": { - "@fortawesome/fontawesome-svg-core": "~1 || ~6", - "react": ">=16.3" + "@fortawesome/fontawesome-svg-core": "~1 || ~6 || ~7", + "react": "^16.3 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/@headlessui/react": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-2.2.0.tgz", - "integrity": "sha512-RzCEg+LXsuI7mHiSomsu/gBJSjpupm6A1qIZ5sWjd7JhARNlMiSA4kKfJpCKwU9tE+zMRterhhrP74PvfJrpXQ==", + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-2.2.9.tgz", + "integrity": "sha512-Mb+Un58gwBn0/yWZfyrCh0TJyurtT+dETj7YHleylHk5od3dv2XqETPGWMyQ5/7sYN7oWdyM1u9MvC0OC8UmzQ==", "dev": true, + "license": "MIT", "dependencies": { "@floating-ui/react": "^0.26.16", - "@react-aria/focus": "^3.17.1", - "@react-aria/interactions": "^3.21.3", - "@tanstack/react-virtual": "^3.8.1" + "@react-aria/focus": "^3.20.2", + "@react-aria/interactions": "^3.25.0", + "@tanstack/react-virtual": "^3.13.9", + "use-sync-external-store": "^1.5.0" }, "engines": { "node": ">=10" @@ -902,9 +1273,9 @@ } }, "node_modules/@inertiajs/core": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@inertiajs/core/-/core-1.2.0.tgz", - "integrity": "sha512-6U0gqCPbGGGMcLoDm+ckKipc5gptZMmfVFfPGdO7vlO7yipWf1RD+TKkcZGJklFvfgFMKwK2VPw8GAv1OctuQA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@inertiajs/core/-/core-1.3.0.tgz", + "integrity": "sha512-TJ8R1eUYY473m9DaKlCPRdHTdznFWTDuy5VvEzXg3t/hohbDQedLj46yn/uAqziJPEUZJrSftZzPI2NMzL9tQA==", "dev": true, "license": "MIT", "dependencies": { @@ -915,17 +1286,17 @@ } }, "node_modules/@inertiajs/react": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@inertiajs/react/-/react-1.2.0.tgz", - "integrity": "sha512-Q3wTaQJdoUbUB8YIGeQ0y2Tf/k8dNtz9Nu2dYr1pbYUBv++6d45iC/CFB/lIpqVvvUw8XuIai2bdsUcRSIbPCQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@inertiajs/react/-/react-1.3.0.tgz", + "integrity": "sha512-K+PF23xP6jjMkubs8PbxT1MroSDdH1z3VTEGbO3685Xyf0QNwoNIF95hnyqJxlWaeG4fB0GAag40gh04fefRUA==", "dev": true, "license": "MIT", "dependencies": { - "@inertiajs/core": "1.2.0", + "@inertiajs/core": "1.3.0", "lodash.isequal": "^4.5.0" }, "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18.0.0" + "react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/@isaacs/cliui": { @@ -946,1902 +1317,9026 @@ "node": ">=12" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dev": true, + "node_modules/@jest/diff-sequences": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz", + "integrity": "sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==", + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.2.0.tgz", + "integrity": "sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==", "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" + "@jest/get-type": "30.1.0" }, "engines": { - "node": ">=6.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, + "node_modules/@jest/get-type": { + "version": "30.1.0", + "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz", + "integrity": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==", "license": "MIT", "engines": { - "node": ">=6.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "node_modules/@jest/pattern": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/pattern/-/pattern-30.0.1.tgz", + "integrity": "sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-regex-util": "30.0.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/schemas": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz", + "integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.34.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/types": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-30.2.0.tgz", + "integrity": "sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==", + "license": "MIT", + "dependencies": { + "@jest/pattern": "30.0.1", + "@jest/schemas": "30.0.5", + "@types/istanbul-lib-coverage": "^2.0.6", + "@types/istanbul-reports": "^3.0.4", + "@types/node": "*", + "@types/yargs": "^17.0.33", + "chalk": "^4.1.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@mapbox/jsonlint-lines-primitives": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", - "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", - "engines": { - "node": ">= 0.6" + "node_modules/@loaders.gl/3d-tiles": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/3d-tiles/-/3d-tiles-4.3.4.tgz", + "integrity": "sha512-JQ3y3p/KlZP7lfobwON5t7H9WinXEYTvuo3SRQM8TBKhM+koEYZhvI2GwzoXx54MbBbY+s3fm1dq5UAAmaTsZw==", + "license": "MIT", + "dependencies": { + "@loaders.gl/compression": "4.3.4", + "@loaders.gl/crypto": "4.3.4", + "@loaders.gl/draco": "4.3.4", + "@loaders.gl/gltf": "4.3.4", + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/math": "4.3.4", + "@loaders.gl/tiles": "4.3.4", + "@loaders.gl/zip": "4.3.4", + "@math.gl/core": "^4.1.0", + "@math.gl/culling": "^4.1.0", + "@math.gl/geospatial": "^4.1.0", + "@probe.gl/log": "^4.0.4", + "long": "^5.2.1" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@mapbox/mapbox-gl-supported": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-3.0.0.tgz", - "integrity": "sha512-2XghOwu16ZwPJLOFVuIOaLbN0iKMn867evzXFyf0P22dqugezfJwLmdanAgU25ITvz1TvOfVP4jsDImlDJzcWg==" - }, - "node_modules/@mapbox/point-geometry": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", - "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==" - }, - "node_modules/@mapbox/tiny-sdf": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.6.tgz", - "integrity": "sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==" - }, - "node_modules/@mapbox/unitbezier": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" - }, - "node_modules/@mapbox/vector-tile": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", - "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", + "node_modules/@loaders.gl/3d-tiles/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", "dependencies": { - "@mapbox/point-geometry": "~0.1.0" + "@math.gl/types": "4.1.0" } }, - "node_modules/@mapbox/whoots-js": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", - "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", - "engines": { - "node": ">=6.0.0" - } + "node_modules/@loaders.gl/3d-tiles/node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "license": "Apache-2.0" }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, + "node_modules/@loaders.gl/compression": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/compression/-/compression-4.3.4.tgz", + "integrity": "sha512-+o+5JqL9Sx8UCwdc2MTtjQiUHYQGJALHbYY/3CT+b9g/Emzwzez2Ggk9U9waRfdHiBCzEgRBivpWZEOAtkimXQ==", "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/worker-utils": "4.3.4", + "@types/brotli": "^1.3.0", + "@types/pako": "^1.0.1", + "fflate": "0.7.4", + "lzo-wasm": "^0.0.4", + "pako": "1.0.11", + "snappyjs": "^0.6.1" }, - "engines": { - "node": ">= 8" + "optionalDependencies": { + "brotli": "^1.3.2", + "lz4js": "^0.2.0", + "zstd-codec": "^0.1" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, + "node_modules/@loaders.gl/core": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/core/-/core-4.3.4.tgz", + "integrity": "sha512-cG0C5fMZ1jyW6WCsf4LoHGvaIAJCEVA/ioqKoYRwoSfXkOf+17KupK1OUQyUCw5XoRn+oWA1FulJQOYlXnb9Gw==", "license": "MIT", - "engines": { - "node": ">= 8" + "dependencies": { + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/worker-utils": "4.3.4", + "@probe.gl/log": "^4.0.2" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, + "node_modules/@loaders.gl/crypto": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/crypto/-/crypto-4.3.4.tgz", + "integrity": "sha512-3VS5FgB44nLOlAB9Q82VOQnT1IltwfRa1miE0mpHCe1prYu1M/dMnEyynusbrsp+eDs3EKbxpguIS9HUsFu5dQ==", "license": "MIT", "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/worker-utils": "4.3.4", + "@types/crypto-js": "^4.0.2" }, - "engines": { - "node": ">= 8" + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, + "node_modules/@loaders.gl/draco": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/draco/-/draco-4.3.4.tgz", + "integrity": "sha512-4Lx0rKmYENGspvcgV5XDpFD9o+NamXoazSSl9Oa3pjVVjo+HJuzCgrxTQYD/3JvRrolW/QRehZeWD/L/cEC6mw==", "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@react-aria/focus": { - "version": "3.18.2", - "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.18.2.tgz", - "integrity": "sha512-Jc/IY+StjA3uqN73o6txKQ527RFU7gnG5crEl5Xy3V+gbYp2O5L3ezAo/E0Ipi2cyMbG6T5Iit1IDs7hcGu8aw==", - "dev": true, - "license": "Apache-2.0", "dependencies": { - "@react-aria/interactions": "^3.22.2", - "@react-aria/utils": "^3.25.2", - "@react-types/shared": "^3.24.1", - "@swc/helpers": "^0.5.0", - "clsx": "^2.0.0" + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/worker-utils": "4.3.4", + "draco3d": "1.5.7" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-aria/interactions": { - "version": "3.22.2", - "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.22.2.tgz", - "integrity": "sha512-xE/77fRVSlqHp2sfkrMeNLrqf2amF/RyuAS6T5oDJemRSgYM3UoxTbWjucPhfnoW7r32pFPHHgz4lbdX8xqD/g==", - "dev": true, - "license": "Apache-2.0", + "node_modules/@loaders.gl/gis": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/gis/-/gis-4.3.4.tgz", + "integrity": "sha512-8xub38lSWW7+ZXWuUcggk7agRHJUy6RdipLNKZ90eE0ZzLNGDstGD1qiBwkvqH0AkG+uz4B7Kkiptyl7w2Oa6g==", + "license": "MIT", "dependencies": { - "@react-aria/ssr": "^3.9.5", - "@react-aria/utils": "^3.25.2", - "@react-types/shared": "^3.24.1", - "@swc/helpers": "^0.5.0" + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@mapbox/vector-tile": "^1.3.1", + "@math.gl/polygon": "^4.1.0", + "pbf": "^3.2.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-aria/ssr": { - "version": "3.9.5", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.5.tgz", - "integrity": "sha512-xEwGKoysu+oXulibNUSkXf8itW0npHHTa6c4AyYeZIJyRoegeteYuFpZUBPtIDE8RfHdNsSmE1ssOkxRnwbkuQ==", - "license": "Apache-2.0", + "node_modules/@loaders.gl/gltf": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/gltf/-/gltf-4.3.4.tgz", + "integrity": "sha512-EiUTiLGMfukLd9W98wMpKmw+hVRhQ0dJ37wdlXK98XPeGGB+zTQxCcQY+/BaMhsSpYt/OOJleHhTfwNr8RgzRg==", + "license": "MIT", "dependencies": { - "@swc/helpers": "^0.5.0" - }, - "engines": { - "node": ">= 12" + "@loaders.gl/draco": "4.3.4", + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/textures": "4.3.4", + "@math.gl/core": "^4.1.0" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-aria/utils": { - "version": "3.25.2", - "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.25.2.tgz", - "integrity": "sha512-GdIvG8GBJJZygB4L2QJP1Gabyn2mjFsha73I2wSe+o4DYeGWoJiMZRM06PyTIxLH4S7Sn7eVDtsSBfkc2VY/NA==", - "dev": true, - "license": "Apache-2.0", + "node_modules/@loaders.gl/gltf/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", "dependencies": { - "@react-aria/ssr": "^3.9.5", - "@react-stately/utils": "^3.10.3", - "@react-types/shared": "^3.24.1", - "@swc/helpers": "^0.5.0", - "clsx": "^2.0.0" + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@loaders.gl/i3s": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/i3s/-/i3s-4.3.4.tgz", + "integrity": "sha512-U71BwsLZ6wqDUxBWPWwdsAhZEwYjEluixmEPdif40KD318YoPEU7CU+w/gEE6JhlTijDhmEgsFCpRC+yvs15qw==", + "license": "MIT", + "dependencies": { + "@loaders.gl/compression": "4.3.4", + "@loaders.gl/crypto": "4.3.4", + "@loaders.gl/draco": "4.3.4", + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/math": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/textures": "4.3.4", + "@loaders.gl/tiles": "4.3.4", + "@loaders.gl/zip": "4.3.4", + "@math.gl/core": "^4.1.0", + "@math.gl/culling": "^4.1.0", + "@math.gl/geospatial": "^4.1.0" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/fns": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@react-pdf/fns/-/fns-3.0.0.tgz", - "integrity": "sha512-ICbIWR93PE6+xf2Xd/fXYO1dAuiOAJaszEuGGv3wp5lLSeeelDXlEYLh6R05okxh28YqMzc0Qd85x6n6MtaLUQ==", + "node_modules/@loaders.gl/i3s/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13" + "@math.gl/types": "4.1.0" } }, - "node_modules/@react-pdf/font": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@react-pdf/font/-/font-3.0.1.tgz", - "integrity": "sha512-s+0xrQabGoYDDZwVpz8PXp1ylwabqiMhzfyetvxBqjDuQ15PuoSkmUkKUOkfDzauuAqs0MLMvt+Pcv+NioLfzw==", + "node_modules/@loaders.gl/images": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/images/-/images-4.3.4.tgz", + "integrity": "sha512-qgc33BaNsqN9cWa/xvcGvQ50wGDONgQQdzHCKDDKhV2w/uptZoR5iofJfuG8UUV2vUMMd82Uk9zbopRx2rS4Ag==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/types": "^2.7.0", - "fontkit": "^2.0.2", - "is-url": "^1.2.4" + "@loaders.gl/loader-utils": "4.3.4" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/image": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@react-pdf/image/-/image-3.0.1.tgz", - "integrity": "sha512-Hd5F1LzjuzG4bL/ytaOYxwN/5ip8oFBYDHdpccOfYY87J/Ca7AL31SsuneLk9DtnwNM1BSAKXtBo/WDFY3r57A==", + "node_modules/@loaders.gl/las": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/las/-/las-4.3.4.tgz", + "integrity": "sha512-KGyVuSQwpnVO/RCHYF8ITkDd7DpXnhAPDpgGMCBrpWvBubAbIY38oP0uGecNO/HVfRVAovDEobZICN3uQx2Weg==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/png-js": "^3.0.0", - "jay-peg": "^1.1.0" + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "laz-perf": "^0.0.6" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/layout": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/@react-pdf/layout/-/layout-4.1.3.tgz", - "integrity": "sha512-EvIRg/QGACGyDB/+N6OCpaxBg4r3dTF1sXEQev9yrunq+f5HpoGsYEGt+wC7I63Gbza+k2/+NqJitlsDRrt9nA==", + "node_modules/@loaders.gl/loader-utils": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/loader-utils/-/loader-utils-4.3.4.tgz", + "integrity": "sha512-tjMZvlKQSaMl2qmYTAxg+ySR6zd6hQn5n3XaU8+Ehp90TD3WzxvDKOMNDqOa72fFmIV+KgPhcmIJTpq4lAdC4Q==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/fns": "3.0.0", - "@react-pdf/image": "^3.0.1", - "@react-pdf/pdfkit": "^4.0.0", - "@react-pdf/primitives": "^4.0.0", - "@react-pdf/stylesheet": "^5.1.0", - "@react-pdf/textkit": "^5.0.1", - "@react-pdf/types": "^2.7.0", - "emoji-regex": "^10.3.0", - "queue": "^6.0.1", - "yoga-layout": "^3.1.0" + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/worker-utils": "4.3.4", + "@probe.gl/log": "^4.0.2", + "@probe.gl/stats": "^4.0.2" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/layout/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==" - }, - "node_modules/@react-pdf/pdfkit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@react-pdf/pdfkit/-/pdfkit-4.0.0.tgz", - "integrity": "sha512-HaaAoBpoRGJ6c1ZOANNQZ3q6Ehmagqa8n40x+OZ5s9HcmUviZ34SCm+QBa42s1o4299M+Lgw3UoqpW7sHv3/Hg==", + "node_modules/@loaders.gl/math": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/math/-/math-4.3.4.tgz", + "integrity": "sha512-UJrlHys1fp9EUO4UMnqTCqvKvUjJVCbYZ2qAKD7tdGzHJYT8w/nsP7f/ZOYFc//JlfC3nq+5ogvmdpq2pyu3TA==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/png-js": "^3.0.0", - "browserify-zlib": "^0.2.0", - "crypto-js": "^4.2.0", - "fontkit": "^2.0.2", - "jay-peg": "^1.1.0", - "vite-compatible-readable-stream": "^3.6.1" + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@math.gl/core": "^4.1.0" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/png-js": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@react-pdf/png-js/-/png-js-3.0.0.tgz", - "integrity": "sha512-eSJnEItZ37WPt6Qv5pncQDxLJRK15eaRwPT+gZoujP548CodenOVp49GST8XJvKMFt9YqIBzGBV/j9AgrOQzVA==", + "node_modules/@loaders.gl/math/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", "dependencies": { - "browserify-zlib": "^0.2.0" + "@math.gl/types": "4.1.0" } }, - "node_modules/@react-pdf/primitives": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@react-pdf/primitives/-/primitives-4.0.0.tgz", - "integrity": "sha512-yp4E0rDL03NaUp/CnDBz3HQNfH2Mzdlgku57yhTMGNzetwB0NJusXcjYg5XsTGIXnR7Tv80JKI4O4ajj+oaLeQ==" + "node_modules/@loaders.gl/mvt": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/mvt/-/mvt-4.3.4.tgz", + "integrity": "sha512-9DrJX8RQf14htNtxsPIYvTso5dUce9WaJCWCIY/79KYE80Be6dhcEYMknxBS4w3+PAuImaAe66S5xo9B7Erm5A==", + "license": "MIT", + "dependencies": { + "@loaders.gl/gis": "4.3.4", + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@math.gl/polygon": "^4.1.0", + "@probe.gl/stats": "^4.0.0", + "pbf": "^3.2.1" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" + } }, - "node_modules/@react-pdf/reconciler": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@react-pdf/reconciler/-/reconciler-1.1.3.tgz", - "integrity": "sha512-4vqY0klmUH32kTFvuqdAszkOpwfZYKMLO4VpJ5xZWTsoUOLQSyhC2QM2QCj9eaxpB2Nd5Kl9uW+KfyutvZnMzQ==", + "node_modules/@loaders.gl/pmtiles": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/pmtiles/-/pmtiles-4.3.4.tgz", + "integrity": "sha512-IK8H1U6zBilQVknmtVjeYYywywY9LgqlMj+xodD54Z+adsOG4N3BFtqOA8mJxTHRwXzqEVWNbbr/iWf6mVm4Zw==", + "license": "MIT", "dependencies": { - "object-assign": "^4.1.1", - "scheduler": "0.25.0-rc-603e6108-20241029" + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/mvt": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "pmtiles": "^3.0.4" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/reconciler/node_modules/scheduler": { - "version": "0.25.0-rc-603e6108-20241029", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0-rc-603e6108-20241029.tgz", - "integrity": "sha512-pFwF6H1XrSdYYNLfOcGlM28/j8CGLu8IvdrxqhjWULe2bPcKiKW4CV+OWqR/9fT52mywx65l7ysNkjLKBda7eA==" + "node_modules/@loaders.gl/pmtiles/node_modules/fflate": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", + "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", + "license": "MIT" }, - "node_modules/@react-pdf/render": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@react-pdf/render/-/render-4.0.2.tgz", - "integrity": "sha512-5QJB9sS0uU5ALTLxrtT073VT1imZhrzuOun+7kvo0nykeAr9I4lv0Shmy8rS4QhpmXn8ASmhd17WjCVm4DcJlw==", + "node_modules/@loaders.gl/pmtiles/node_modules/pmtiles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/pmtiles/-/pmtiles-3.2.1.tgz", + "integrity": "sha512-3R4fBwwoli5mw7a6t1IGwOtfmcSAODq6Okz0zkXhS1zi9sz1ssjjIfslwPvcWw5TNhdjNBUg9fgfPLeqZlH6ng==", + "license": "BSD-3-Clause", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/fns": "3.0.0", - "@react-pdf/primitives": "^4.0.0", - "@react-pdf/textkit": "^5.0.1", - "@react-pdf/types": "^2.7.0", - "abs-svg-path": "^0.1.1", - "color-string": "^1.9.1", - "normalize-svg-path": "^1.1.0", - "parse-svg-path": "^0.1.2", - "svg-arc-to-cubic-bezier": "^3.2.0" + "@types/leaflet": "^1.9.8", + "fflate": "^0.8.0" } }, - "node_modules/@react-pdf/renderer": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@react-pdf/renderer/-/renderer-4.1.5.tgz", - "integrity": "sha512-SGaaVloGtBNCsgu7TrS9C8QrcMegqEzgaw2Y/DnpZJtru13WgBs+auM9ana58ytQ7PIMB1RYJtFVvYhM1hf/+w==", + "node_modules/@loaders.gl/schema": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/schema/-/schema-4.3.4.tgz", + "integrity": "sha512-1YTYoatgzr/6JTxqBLwDiD3AVGwQZheYiQwAimWdRBVB0JAzych7s1yBuE0CVEzj4JDPKOzVAz8KnU1TiBvJGw==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/font": "^3.0.1", - "@react-pdf/layout": "^4.1.3", - "@react-pdf/pdfkit": "^4.0.0", - "@react-pdf/primitives": "^4.0.0", - "@react-pdf/reconciler": "^1.1.3", - "@react-pdf/render": "^4.0.2", - "@react-pdf/types": "^2.7.0", - "events": "^3.3.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "queue": "^6.0.1" + "@types/geojson": "^7946.0.7" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/stylesheet": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@react-pdf/stylesheet/-/stylesheet-5.1.0.tgz", - "integrity": "sha512-QOPCGzlTz+irGLXbsQtKkEqkf78n9l3hRU0Omkvpk/gwLf/IchBBt358dV6FEtc+ujMFEpN+a+fWSS6v2tB0AQ==", + "node_modules/@loaders.gl/terrain": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/terrain/-/terrain-4.3.4.tgz", + "integrity": "sha512-JszbRJGnxL5Fh82uA2U8HgjlsIpzYoCNNjy3cFsgCaxi4/dvjz3BkLlBilR7JlbX8Ka+zlb4GAbDDChiXLMJ/g==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/fns": "3.0.0", - "@react-pdf/types": "^2.7.0", - "color-string": "^1.9.1", - "hsl-to-hex": "^1.0.0", - "media-engine": "^1.0.3", - "postcss-value-parser": "^4.1.0" + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@mapbox/martini": "^0.2.0" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/textkit": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-pdf/textkit/-/textkit-5.0.1.tgz", - "integrity": "sha512-4GdDiPA9l+If203hkh48slvRQmcmM3ecPLFTpXNMPrep/3retgvxUEXKMxI+xKclpw8tMzK/W6Z4hN9DgnxWMg==", + "node_modules/@loaders.gl/textures": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/textures/-/textures-4.3.4.tgz", + "integrity": "sha512-arWIDjlE7JaDS6v9by7juLfxPGGnjT9JjleaXx3wq/PTp+psLOpGUywHXm38BNECos3MFEQK3/GFShWI+/dWPw==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.20.13", - "@react-pdf/fns": "3.0.0", - "bidi-js": "^1.0.2", - "hyphen": "^1.6.4", - "unicode-properties": "^1.4.1" + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/worker-utils": "4.3.4", + "@math.gl/types": "^4.1.0", + "ktx-parse": "^0.7.0", + "texture-compressor": "^1.0.2" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-pdf/types": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@react-pdf/types/-/types-2.7.0.tgz", - "integrity": "sha512-7KrPPCpgRPKR+g+T127PE4bpw9Q84ZiY07EYRwXKVtTEVW9wJ5BZiF9smT9IvH19s+MQaDLmYRgjESsnqlyH0Q==" - }, - "node_modules/@react-stately/utils": { - "version": "3.10.3", - "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.3.tgz", - "integrity": "sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==", - "dev": true, - "license": "Apache-2.0", + "node_modules/@loaders.gl/tiles": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/tiles/-/tiles-4.3.4.tgz", + "integrity": "sha512-oC0zJfyvGox6Ag9ABF8fxOkx9yEFVyzTa9ryHXl2BqLiQoR1v3p+0tIJcEbh5cnzHfoTZzUis1TEAZluPRsHBQ==", + "license": "MIT", "dependencies": { - "@swc/helpers": "^0.5.0" + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/math": "4.3.4", + "@math.gl/core": "^4.1.0", + "@math.gl/culling": "^4.1.0", + "@math.gl/geospatial": "^4.1.0", + "@math.gl/web-mercator": "^4.1.0", + "@probe.gl/stats": "^4.0.2" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@react-types/shared": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.24.1.tgz", - "integrity": "sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==", - "dev": true, - "license": "Apache-2.0", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0" + "node_modules/@loaders.gl/tiles/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" } }, - "node_modules/@restart/hooks": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.16.tgz", - "integrity": "sha512-f7aCv7c+nU/3mF7NWLtVVr0Ra80RqsO89hO72r+Y/nvQr5+q0UFGkocElTH6MJApvReVh6JHUFYn2cw1WdHF3w==", + "node_modules/@loaders.gl/wms": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/wms/-/wms-4.3.4.tgz", + "integrity": "sha512-yXF0wuYzJUdzAJQrhLIua6DnjOiBJusaY1j8gpvuH1VYs3mzvWlIRuZKeUd9mduQZKK88H2IzHZbj2RGOauq4w==", + "license": "MIT", "dependencies": { - "dequal": "^2.0.3" + "@loaders.gl/images": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "@loaders.gl/xml": "4.3.4", + "@turf/rewind": "^5.1.5", + "deep-strict-equal": "^0.2.0" }, "peerDependencies": { - "react": ">=16.8.0" + "@loaders.gl/core": "^4.3.0" } }, - "node_modules/@restart/ui": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.8.0.tgz", - "integrity": "sha512-xJEOXUOTmT4FngTmhdjKFRrVVF0hwCLNPdatLCHkyS4dkiSK12cEu1Y0fjxktjJrdst9jJIc5J6ihMJCoWEN/g==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@popperjs/core": "^2.11.6", - "@react-aria/ssr": "^3.5.0", - "@restart/hooks": "^0.4.9", - "@types/warning": "^3.0.0", + "node_modules/@loaders.gl/worker-utils": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/worker-utils/-/worker-utils-4.3.4.tgz", + "integrity": "sha512-EbsszrASgT85GH3B7jkx7YXfQyIYo/rlobwMx6V3ewETapPUwdSAInv+89flnk5n2eu2Lpdeh+2zS6PvqbL2RA==", + "license": "MIT", + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" + } + }, + "node_modules/@loaders.gl/xml": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/xml/-/xml-4.3.4.tgz", + "integrity": "sha512-p+y/KskajsvyM3a01BwUgjons/j/dUhniqd5y1p6keLOuwoHlY/TfTKd+XluqfyP14vFrdAHCZTnFCWLblN10w==", + "license": "MIT", + "dependencies": { + "@loaders.gl/loader-utils": "4.3.4", + "@loaders.gl/schema": "4.3.4", + "fast-xml-parser": "^4.2.5" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" + } + }, + "node_modules/@loaders.gl/zip": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@loaders.gl/zip/-/zip-4.3.4.tgz", + "integrity": "sha512-bHY4XdKYJm3vl9087GMoxnUqSURwTxPPh6DlAGOmz6X9Mp3JyWuA2gk3tQ1UIuInfjXKph3WAUfGe6XRIs1sfw==", + "license": "MIT", + "dependencies": { + "@loaders.gl/compression": "4.3.4", + "@loaders.gl/crypto": "4.3.4", + "@loaders.gl/loader-utils": "4.3.4", + "jszip": "^3.1.5", + "md5": "^2.3.0" + }, + "peerDependencies": { + "@loaders.gl/core": "^4.3.0" + } + }, + "node_modules/@luma.gl/constants": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@luma.gl/constants/-/constants-9.2.4.tgz", + "integrity": "sha512-Cy0OAg3uJbbHhPJGeik6ZhII0EMokTXmo6MtP7dyUrS+pSG5N176G4WYD9zS4DaJm2cLUW4UJzsu5B4Cd8rBuw==", + "license": "MIT" + }, + "node_modules/@luma.gl/core": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@luma.gl/core/-/core-9.2.4.tgz", + "integrity": "sha512-oYuHlpvd4e6E4hre7I7gnmCtcTDdpgREnumgjcPTe8VVsimnYM2P+vBqdOE7AUlOHDS8r//7YxM2bFvlDkcM8w==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "^4.1.0", + "@probe.gl/env": "^4.0.8", + "@probe.gl/log": "^4.0.8", + "@probe.gl/stats": "^4.0.8", + "@types/offscreencanvas": "^2019.6.4" + } + }, + "node_modules/@luma.gl/engine": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@luma.gl/engine/-/engine-9.2.4.tgz", + "integrity": "sha512-UJXif5qMPMxTCj0GbPqJLn3+L5BEwqpl6utWn2mG1gnVF/urXruMYn3kjUNoGKhk5CHOtb6ON1Dc+FL0hBYgQA==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "^4.1.0", + "@math.gl/types": "^4.1.0", + "@probe.gl/log": "^4.0.8", + "@probe.gl/stats": "^4.0.8" + }, + "peerDependencies": { + "@luma.gl/core": "~9.2.0", + "@luma.gl/shadertools": "~9.2.0" + } + }, + "node_modules/@luma.gl/engine/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@luma.gl/gltf": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@luma.gl/gltf/-/gltf-9.2.4.tgz", + "integrity": "sha512-OhT9Aq8/MC9r/ii8hAW7sPlIbol1ZG74jsZXsFsoGzw9gfuxT5LX71rQ/oKnsDz7dGf2cM+bM3qe8C7QiIaUvw==", + "license": "MIT", + "dependencies": { + "@loaders.gl/core": "^4.2.0", + "@loaders.gl/gltf": "^4.2.0", + "@loaders.gl/textures": "^4.2.0", + "@math.gl/core": "^4.1.0" + }, + "peerDependencies": { + "@luma.gl/constants": "~9.2.0", + "@luma.gl/core": "~9.2.0", + "@luma.gl/engine": "~9.2.0", + "@luma.gl/shadertools": "~9.2.0" + } + }, + "node_modules/@luma.gl/gltf/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@luma.gl/shadertools": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@luma.gl/shadertools/-/shadertools-9.2.4.tgz", + "integrity": "sha512-PoBvat7sTQp0ZPVWXm5o4Xopssk9WI75g4YZUPBhya1MUdyzY2AUe9vOnxhJ9fqSYzhBGj5y/RDrxXPHz8gIjw==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "^4.1.0", + "@math.gl/types": "^4.1.0", + "wgsl_reflect": "^1.2.0" + }, + "peerDependencies": { + "@luma.gl/core": "~9.2.0" + } + }, + "node_modules/@luma.gl/shadertools/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@luma.gl/webgl": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@luma.gl/webgl/-/webgl-9.2.4.tgz", + "integrity": "sha512-s2o4TU8HJLlFdjDUp9xW3ataWXiTefpZfjH5M2XJot0qnXM6aXXAihFdmWJXQozmKEP3Sg9bCFxw9INQNWtbkQ==", + "license": "MIT", + "dependencies": { + "@luma.gl/constants": "9.2.4", + "@math.gl/types": "^4.1.0", + "@probe.gl/env": "^4.0.8" + }, + "peerDependencies": { + "@luma.gl/core": "~9.2.0" + } + }, + "node_modules/@mapbox/geojson-rewind": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", + "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", + "license": "ISC", + "dependencies": { + "get-stream": "^6.0.1", + "minimist": "^1.2.6" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", + "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@mapbox/mapbox-gl-supported": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-3.0.0.tgz", + "integrity": "sha512-2XghOwu16ZwPJLOFVuIOaLbN0iKMn867evzXFyf0P22dqugezfJwLmdanAgU25ITvz1TvOfVP4jsDImlDJzcWg==", + "license": "BSD-3-Clause" + }, + "node_modules/@mapbox/martini": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@mapbox/martini/-/martini-0.2.0.tgz", + "integrity": "sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==", + "license": "ISC" + }, + "node_modules/@mapbox/point-geometry": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz", + "integrity": "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==", + "license": "ISC" + }, + "node_modules/@mapbox/tiny-sdf": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.7.tgz", + "integrity": "sha512-25gQLQMcpivjOSA40g3gO6qgiFPDpWRoMfd+G/GoppPIeP6JDaMMkMrEJnMZhKyyS6iKwVt5YKu02vCUyJM3Ug==", + "license": "BSD-2-Clause" + }, + "node_modules/@mapbox/unitbezier": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", + "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==", + "license": "BSD-2-Clause" + }, + "node_modules/@mapbox/vector-tile": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz", + "integrity": "sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==", + "license": "BSD-3-Clause", + "dependencies": { + "@mapbox/point-geometry": "~0.1.0" + } + }, + "node_modules/@mapbox/whoots-js": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", + "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", + "license": "ISC", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@maplibre/maplibre-gl-style-spec": { + "version": "19.3.3", + "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.3.tgz", + "integrity": "sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw==", + "license": "ISC", + "dependencies": { + "@mapbox/jsonlint-lines-primitives": "~2.0.2", + "@mapbox/unitbezier": "^0.0.1", + "json-stringify-pretty-compact": "^3.0.0", + "minimist": "^1.2.8", + "rw": "^1.3.3", + "sort-object": "^3.0.3" + }, + "bin": { + "gl-style-format": "dist/gl-style-format.mjs", + "gl-style-migrate": "dist/gl-style-migrate.mjs", + "gl-style-validate": "dist/gl-style-validate.mjs" + } + }, + "node_modules/@math.gl/core": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz", + "integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@math.gl/types": "3.6.3", + "gl-matrix": "^3.4.0" + } + }, + "node_modules/@math.gl/core/node_modules/@math.gl/types": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz", + "integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==", + "license": "MIT" + }, + "node_modules/@math.gl/culling": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/culling/-/culling-4.1.0.tgz", + "integrity": "sha512-jFmjFEACnP9kVl8qhZxFNhCyd47qPfSVmSvvjR0/dIL6R9oD5zhR1ub2gN16eKDO/UM7JF9OHKU3EBIfeR7gtg==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "4.1.0", + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@math.gl/culling/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@math.gl/geospatial": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/geospatial/-/geospatial-4.1.0.tgz", + "integrity": "sha512-BzsUhpVvnmleyYF6qdqJIip6FtIzJmnWuPTGhlBuPzh7VBHLonCFSPtQpbkRuoyAlbSyaGXcVt6p6lm9eK2vtg==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "4.1.0", + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@math.gl/geospatial/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@math.gl/polygon": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/polygon/-/polygon-4.1.0.tgz", + "integrity": "sha512-YA/9PzaCRHbIP5/0E9uTYrqe+jsYTQoqoDWhf6/b0Ixz8bPZBaGDEafLg3z7ffBomZLacUty9U3TlPjqMtzPjA==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "4.1.0" + } + }, + "node_modules/@math.gl/polygon/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@math.gl/proj4": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/@math.gl/proj4/-/proj4-3.6.3.tgz", + "integrity": "sha512-8VC3noTBiLD45VzsOVBb9nniKC+e27n5NWdzwKNOBUiXgl5HtRwNessoUYY0GccABz0OP41wbyfSzukLVAyphw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@math.gl/core": "3.6.3", + "@types/proj4": "^2.5.0", + "proj4": "2.6.2" + } + }, + "node_modules/@math.gl/sun": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/sun/-/sun-4.1.0.tgz", + "integrity": "sha512-i3q6OCBLSZ5wgZVhXg+X7gsjY/TUtuFW/2KBiq/U1ypLso3S4sEykoU/MGjxUv1xiiGtr+v8TeMbO1OBIh/HmA==", + "license": "MIT" + }, + "node_modules/@math.gl/types": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/types/-/types-4.1.0.tgz", + "integrity": "sha512-clYZdHcmRvMzVK5fjeDkQlHUzXQSNdZ7s4xOqC3nJPgz4C/TZkUecTo9YS4PruZqtDda/ag4erndP0MIn40dGA==", + "license": "MIT" + }, + "node_modules/@math.gl/web-mercator": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/web-mercator/-/web-mercator-4.1.0.tgz", + "integrity": "sha512-HZo3vO5GCMkXJThxRJ5/QYUYRr3XumfT8CzNNCwoJfinxy5NtKUd7dusNTXn7yJ40UoB8FMIwkVwNlqaiRZZAw==", + "license": "MIT", + "dependencies": { + "@math.gl/core": "4.1.0" + } + }, + "node_modules/@math.gl/web-mercator/node_modules/@math.gl/core": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@math.gl/core/-/core-4.1.0.tgz", + "integrity": "sha512-FrdHBCVG3QdrworwrUSzXIaK+/9OCRLscxI2OUy6sLOHyHgBMyfnEGs99/m3KNvs+95BsnQLWklVfpKfQzfwKA==", + "license": "MIT", + "dependencies": { + "@math.gl/types": "4.1.0" + } + }, + "node_modules/@mui/core-downloads-tracker": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.18.0.tgz", + "integrity": "sha512-jbhwoQ1AY200PSSOrNXmrFCaSDSJWP7qk6urkTmIirvRXDROkqe+QwcLlUiw/PrREwsIF/vm3/dAXvjlMHF0RA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + } + }, + "node_modules/@mui/icons-material": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.18.0.tgz", + "integrity": "sha512-1s0vEZj5XFXDMmz3Arl/R7IncFqJ+WQ95LDp1roHWGDE2oCO3IS4/hmiOv1/8SD9r6B7tv9GLiqVZYHo+6PkTg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@mui/material": "^5.0.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/material": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.18.0.tgz", + "integrity": "sha512-bbH/HaJZpFtXGvWg3TsBWG4eyt3gah3E7nCNU8GLyRjVoWcA91Vm/T+sjHfUcwgJSw9iLtucfHBoq+qW/T30aA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/core-downloads-tracker": "^5.18.0", + "@mui/system": "^5.18.0", + "@mui/types": "~7.2.15", + "@mui/utils": "^5.17.1", + "@popperjs/core": "^2.11.8", + "@types/react-transition-group": "^4.4.10", + "clsx": "^2.1.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1", + "react-is": "^19.0.0", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/private-theming": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.17.1.tgz", + "integrity": "sha512-XMxU0NTYcKqdsG8LRmSoxERPXwMbp16sIXPcLVgLGII/bVNagX0xaheWAwFv8+zDK7tI3ajllkuD3GZZE++ICQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/utils": "^5.17.1", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/styled-engine": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.18.0.tgz", + "integrity": "sha512-BN/vKV/O6uaQh2z5rXV+MBlVrEkwoS/TK75rFQ2mjxA7+NBo8qtTAOA4UaM0XeJfn7kh2wZ+xQw2HAx0u+TiBg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@emotion/cache": "^11.13.5", + "@emotion/serialize": "^1.3.3", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@mui/system": { + "version": "5.18.0", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.18.0.tgz", + "integrity": "sha512-ojZGVcRWqWhu557cdO3pWHloIGJdzVtxs3rk0F9L+x55LsUjcMUVkEhiF7E4TMxZoF9MmIHGGs0ZX3FDLAf0Xw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/private-theming": "^5.17.1", + "@mui/styled-engine": "^5.18.0", + "@mui/types": "~7.2.15", + "@mui/utils": "^5.17.1", + "clsx": "^2.1.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/types": { + "version": "7.2.24", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.24.tgz", + "integrity": "sha512-3c8tRt/CbWZ+pEg7QpSwbdxOk36EfmhbKf6AGZsD1EcLDLTSZoxxJ86FVtcjxvjuhdyBiWKSTGZFaXCnidO2kw==", + "license": "MIT", + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/utils": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.17.1.tgz", + "integrity": "sha512-jEZ8FTqInt2WzxDV8bhImWBqeQRD99c/id/fq83H0ER9tFl+sfZlaAoCdznGvbSQQ9ividMxqSV2c7cC1vBcQg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/types": "~7.2.15", + "@types/prop-types": "^15.7.12", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-is": "^19.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", + "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", + "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", + "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", + "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", + "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", + "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", + "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", + "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", + "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", + "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", + "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", + "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@placemarkio/check-geojson": { + "version": "0.1.14", + "resolved": "https://registry.npmjs.org/@placemarkio/check-geojson/-/check-geojson-0.1.14.tgz", + "integrity": "sha512-PZvNKzt6STytUw21TUkqU+TG6dbwTWb1ACosvInBYTBm37zsr8C74J6crBTQ3BWkyd6YeitYd4HibJzBEyk6Aw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@probe.gl/env": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@probe.gl/env/-/env-4.1.0.tgz", + "integrity": "sha512-5ac2Jm2K72VCs4eSMsM7ykVRrV47w32xOGMvcgqn8vQdEMF9PRXyBGYEV9YbqRKWNKpNKmQJVi4AHM/fkCxs9w==", + "license": "MIT" + }, + "node_modules/@probe.gl/log": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@probe.gl/log/-/log-4.1.0.tgz", + "integrity": "sha512-r4gRReNY6f+OZEMgfWEXrAE2qJEt8rX0HsDJQXUBMoc+5H47bdB7f/5HBHAmapK8UydwPKL9wCDoS22rJ0yq7Q==", + "license": "MIT", + "dependencies": { + "@probe.gl/env": "4.1.0" + } + }, + "node_modules/@probe.gl/stats": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@probe.gl/stats/-/stats-4.1.0.tgz", + "integrity": "sha512-EI413MkWKBDVNIfLdqbeNSJTs7ToBz/KVGkwi3D+dQrSIkRI2IYbWGAU3xX+D6+CI4ls8ehxMhNpUVMaZggDvQ==", + "license": "MIT" + }, + "node_modules/@react-aria/focus": { + "version": "3.21.2", + "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.21.2.tgz", + "integrity": "sha512-JWaCR7wJVggj+ldmM/cb/DXFg47CXR55lznJhZBh4XVqJjMKwaOOqpT5vNN7kpC1wUpXicGNuDnJDN1S/+6dhQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@react-aria/interactions": "^3.25.6", + "@react-aria/utils": "^3.31.0", + "@react-types/shared": "^3.32.1", + "@swc/helpers": "^0.5.0", + "clsx": "^2.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", + "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" + } + }, + "node_modules/@react-aria/interactions": { + "version": "3.25.6", + "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.25.6.tgz", + "integrity": "sha512-5UgwZmohpixwNMVkMvn9K1ceJe6TzlRlAfuYoQDUuOkk62/JVJNDLAPKIf5YMRc7d2B0rmfgaZLMtbREb0Zvkw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@react-aria/ssr": "^3.9.10", + "@react-aria/utils": "^3.31.0", + "@react-stately/flags": "^3.1.2", + "@react-types/shared": "^3.32.1", + "@swc/helpers": "^0.5.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", + "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" + } + }, + "node_modules/@react-aria/ssr": { + "version": "3.9.10", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz", + "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==", + "license": "Apache-2.0", + "dependencies": { + "@swc/helpers": "^0.5.0" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" + } + }, + "node_modules/@react-aria/utils": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.31.0.tgz", + "integrity": "sha512-ABOzCsZrWzf78ysswmguJbx3McQUja7yeGj6/vZo4JVsZNlxAN+E9rs381ExBRI0KzVo6iBTeX5De8eMZPJXig==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@react-aria/ssr": "^3.9.10", + "@react-stately/flags": "^3.1.2", + "@react-stately/utils": "^3.10.8", + "@react-types/shared": "^3.32.1", + "@swc/helpers": "^0.5.0", + "clsx": "^2.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", + "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" + } + }, + "node_modules/@react-pdf/fns": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@react-pdf/fns/-/fns-3.1.2.tgz", + "integrity": "sha512-qTKGUf0iAMGg2+OsUcp9ffKnKi41RukM/zYIWMDJ4hRVYSr89Q7e3wSDW/Koqx3ea3Uy/z3h2y3wPX6Bdfxk6g==", + "license": "MIT" + }, + "node_modules/@react-pdf/font": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@react-pdf/font/-/font-4.0.3.tgz", + "integrity": "sha512-N1qQDZr6phXYQOp033Hvm2nkUkx2LkszjGPbmRavs9VOYzi4sp31MaccMKptL24ii6UhBh/z9yPUhnuNe/qHwA==", + "license": "MIT", + "dependencies": { + "@react-pdf/pdfkit": "^4.0.4", + "@react-pdf/types": "^2.9.1", + "fontkit": "^2.0.2", + "is-url": "^1.2.4" + } + }, + "node_modules/@react-pdf/image": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@react-pdf/image/-/image-3.0.3.tgz", + "integrity": "sha512-lvP5ryzYM3wpbO9bvqLZYwEr5XBDX9jcaRICvtnoRqdJOo7PRrMnmB4MMScyb+Xw10mGeIubZAAomNAG5ONQZQ==", + "license": "MIT", + "dependencies": { + "@react-pdf/png-js": "^3.0.0", + "jay-peg": "^1.1.1" + } + }, + "node_modules/@react-pdf/layout": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@react-pdf/layout/-/layout-4.4.1.tgz", + "integrity": "sha512-GVzdlWoZWldRDzlWj3SttRXmVDxg7YfraAohwy+o9gb9hrbDJaaAV6jV3pc630Evd3K46OAzk8EFu8EgPDuVuA==", + "license": "MIT", + "dependencies": { + "@react-pdf/fns": "3.1.2", + "@react-pdf/image": "^3.0.3", + "@react-pdf/primitives": "^4.1.1", + "@react-pdf/stylesheet": "^6.1.1", + "@react-pdf/textkit": "^6.0.0", + "@react-pdf/types": "^2.9.1", + "emoji-regex-xs": "^1.0.0", + "queue": "^6.0.1", + "yoga-layout": "^3.2.1" + } + }, + "node_modules/@react-pdf/pdfkit": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@react-pdf/pdfkit/-/pdfkit-4.0.4.tgz", + "integrity": "sha512-/nITLggsPlB66bVLnm0X7MNdKQxXelLGZG6zB5acF5cCgkFwmXHnLNyxYOUD4GMOMg1HOPShXDKWrwk2ZeHsvw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@react-pdf/png-js": "^3.0.0", + "browserify-zlib": "^0.2.0", + "crypto-js": "^4.2.0", + "fontkit": "^2.0.2", + "jay-peg": "^1.1.1", + "linebreak": "^1.1.0", + "vite-compatible-readable-stream": "^3.6.1" + } + }, + "node_modules/@react-pdf/png-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-pdf/png-js/-/png-js-3.0.0.tgz", + "integrity": "sha512-eSJnEItZ37WPt6Qv5pncQDxLJRK15eaRwPT+gZoujP548CodenOVp49GST8XJvKMFt9YqIBzGBV/j9AgrOQzVA==", + "license": "MIT", + "dependencies": { + "browserify-zlib": "^0.2.0" + } + }, + "node_modules/@react-pdf/primitives": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@react-pdf/primitives/-/primitives-4.1.1.tgz", + "integrity": "sha512-IuhxYls1luJb7NUWy6q5avb1XrNaVj9bTNI40U9qGRuS6n7Hje/8H8Qi99Z9UKFV74bBP3DOf3L1wV2qZVgVrQ==", + "license": "MIT" + }, + "node_modules/@react-pdf/reconciler": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@react-pdf/reconciler/-/reconciler-1.1.4.tgz", + "integrity": "sha512-oTQDiR/t4Z/Guxac88IavpU2UgN7eR0RMI9DRKvKnvPz2DUasGjXfChAdMqDNmJJxxV26mMy9xQOUV2UU5/okg==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "scheduler": "0.25.0-rc-603e6108-20241029" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/@react-pdf/render": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@react-pdf/render/-/render-4.3.1.tgz", + "integrity": "sha512-v1WAaAhQShQZGcBxfjkEThGCHVH9CSuitrZ1bIOLvB5iBKM14abYK5D6djKhWCwF6FTzYeT2WRjRMVgze/ND2A==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@react-pdf/fns": "3.1.2", + "@react-pdf/primitives": "^4.1.1", + "@react-pdf/textkit": "^6.0.0", + "@react-pdf/types": "^2.9.1", + "abs-svg-path": "^0.1.1", + "color-string": "^1.9.1", + "normalize-svg-path": "^1.1.0", + "parse-svg-path": "^0.1.2", + "svg-arc-to-cubic-bezier": "^3.2.0" + } + }, + "node_modules/@react-pdf/renderer": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@react-pdf/renderer/-/renderer-4.3.1.tgz", + "integrity": "sha512-dPKHiwGTaOsKqNWCHPYYrx8CDfAGsUnV4tvRsEu0VPGxuot1AOq/M+YgfN/Pb+MeXCTe2/lv6NvA8haUtj3tsA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@react-pdf/fns": "3.1.2", + "@react-pdf/font": "^4.0.3", + "@react-pdf/layout": "^4.4.1", + "@react-pdf/pdfkit": "^4.0.4", + "@react-pdf/primitives": "^4.1.1", + "@react-pdf/reconciler": "^1.1.4", + "@react-pdf/render": "^4.3.1", + "@react-pdf/types": "^2.9.1", + "events": "^3.3.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "queue": "^6.0.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/@react-pdf/stylesheet": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@react-pdf/stylesheet/-/stylesheet-6.1.1.tgz", + "integrity": "sha512-Iyw0A3wRIeQLN4EkaKf8yF9MvdMxiZ8JjoyzLzDHSxnKYoOA4UGu84veCb8dT9N8MxY5x7a0BUv/avTe586Plg==", + "license": "MIT", + "dependencies": { + "@react-pdf/fns": "3.1.2", + "@react-pdf/types": "^2.9.1", + "color-string": "^1.9.1", + "hsl-to-hex": "^1.0.0", + "media-engine": "^1.0.3", + "postcss-value-parser": "^4.1.0" + } + }, + "node_modules/@react-pdf/textkit": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@react-pdf/textkit/-/textkit-6.0.0.tgz", + "integrity": "sha512-fDt19KWaJRK/n2AaFoVm31hgGmpygmTV7LsHGJNGZkgzXcFyLsx+XUl63DTDPH3iqxj3xUX128t104GtOz8tTw==", + "license": "MIT", + "dependencies": { + "@react-pdf/fns": "3.1.2", + "bidi-js": "^1.0.2", + "hyphen": "^1.6.4", + "unicode-properties": "^1.4.1" + } + }, + "node_modules/@react-pdf/types": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/@react-pdf/types/-/types-2.9.1.tgz", + "integrity": "sha512-5GoCgG0G5NMgpPuHbKG2xcVRQt7+E5pg3IyzVIIozKG3nLcnsXW4zy25vG1ZBQA0jmo39q34au/sOnL/0d1A4w==", + "license": "MIT", + "dependencies": { + "@react-pdf/font": "^4.0.3", + "@react-pdf/primitives": "^4.1.1", + "@react-pdf/stylesheet": "^6.1.1" + } + }, + "node_modules/@react-stately/flags": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.1.2.tgz", + "integrity": "sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/helpers": "^0.5.0" + } + }, + "node_modules/@react-stately/utils": { + "version": "3.10.8", + "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz", + "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" + } + }, + "node_modules/@react-types/shared": { + "version": "3.32.1", + "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.32.1.tgz", + "integrity": "sha512-famxyD5emrGGpFuUlgOP6fVW2h/ZaF405G5KDi3zPHzyjAWys/8W6NAVJtNbkCkhedmvL0xOhvt8feGXyXaw5w==", + "dev": true, + "license": "Apache-2.0", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" + } + }, + "node_modules/@restart/hooks": { + "version": "0.4.16", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.16.tgz", + "integrity": "sha512-f7aCv7c+nU/3mF7NWLtVVr0Ra80RqsO89hO72r+Y/nvQr5+q0UFGkocElTH6MJApvReVh6JHUFYn2cw1WdHF3w==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.9.4.tgz", + "integrity": "sha512-N4C7haUc3vn4LTwVUPlkJN8Ach/+yIMvRuTVIhjilNHqegY60SGLrzud6errOMNJwSnmYFnt1J0H/k8FE3A4KA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.26.0", + "@popperjs/core": "^2.11.8", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.5.0", + "@types/warning": "^3.0.3", "dequal": "^2.0.3", "dom-helpers": "^5.2.0", - "uncontrollable": "^8.0.1", + "uncontrollable": "^8.0.4", "warning": "^4.0.3" }, "peerDependencies": { - "react": ">=16.14.0", - "react-dom": ">=16.14.0" + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/@restart/ui/node_modules/@restart/hooks": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.5.1.tgz", + "integrity": "sha512-EMoH04NHS1pbn07iLTjIjgttuqb7qu4+/EyhAx27MHpoENcB2ZdSsLTNxmKD+WEPnZigo62Qc8zjGnNxoSE/5Q==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui/node_modules/uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.14.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.2.tgz", + "integrity": "sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.2.tgz", + "integrity": "sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.2.tgz", + "integrity": "sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.2.tgz", + "integrity": "sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.2.tgz", + "integrity": "sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.2.tgz", + "integrity": "sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.2.tgz", + "integrity": "sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.2.tgz", + "integrity": "sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.2.tgz", + "integrity": "sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.2.tgz", + "integrity": "sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.2.tgz", + "integrity": "sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.2.tgz", + "integrity": "sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.2.tgz", + "integrity": "sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.2.tgz", + "integrity": "sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.2.tgz", + "integrity": "sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.2.tgz", + "integrity": "sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.2.tgz", + "integrity": "sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.2.tgz", + "integrity": "sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.2.tgz", + "integrity": "sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.2.tgz", + "integrity": "sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.2.tgz", + "integrity": "sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.2.tgz", + "integrity": "sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sinclair/typebox": { + "version": "0.34.41", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.41.tgz", + "integrity": "sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==", + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.17", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz", + "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz", + "integrity": "sha512-utI1ONF6uf/pPNO68kmN1b8rEwNXv3czukalo8VtJH8ksIkZXr3Q3VYudZLkCsDd4Wku120uF02hYK25XGPorw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1" + } + }, + "node_modules/@tanstack/react-virtual": { + "version": "3.13.12", + "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.13.12.tgz", + "integrity": "sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tanstack/virtual-core": "3.13.12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/@tanstack/virtual-core": { + "version": "3.13.12", + "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.13.12.tgz", + "integrity": "sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@testing-library/dom": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", + "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "picocolors": "1.1.1", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", + "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", + "license": "MIT", + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/react/node_modules/@testing-library/dom": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@testing-library/react/node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "license": "Apache-2.0", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/@testing-library/react/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/react/node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@testing-library/react/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@turf/along": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/along/-/along-6.5.0.tgz", + "integrity": "sha512-LLyWQ0AARqJCmMcIEAXF4GEu8usmd4Kbz3qk1Oy5HoRNpZX47+i5exQtmIWKdqJ1MMhW26fCTXgpsEs5zgJ5gw==", + "license": "MIT", + "dependencies": { + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/along/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/along/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/angle": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/angle/-/angle-6.5.0.tgz", + "integrity": "sha512-4pXMbWhFofJJAOvTMCns6N4C8CMd5Ih4O2jSAG9b3dDHakj3O4yN1+Zbm+NUei+eVEZ9gFeVp9svE3aMDenIkw==", + "license": "MIT", + "dependencies": { + "@turf/bearing": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/angle/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/angle/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/area": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/area/-/area-6.5.0.tgz", + "integrity": "sha512-xCZdiuojokLbQ+29qR6qoMD89hv+JAgWjLrwSEWL+3JV8IXKeNFl6XkEJz9HGkVpnXvQKJoRz4/liT+8ZZ5Jyg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/area/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/area/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz", + "integrity": "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox-clip": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-6.5.0.tgz", + "integrity": "sha512-F6PaIRF8WMp8EmgU/Ke5B1Y6/pia14UAYB5TiBC668w5rVVjy5L8rTm/m2lEkkDMHlzoP9vNY4pxpNthE7rLcQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox-clip/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox-clip/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox-polygon": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz", + "integrity": "sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox-polygon/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bbox/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bearing": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.5.0.tgz", + "integrity": "sha512-dxINYhIEMzgDOztyMZc20I7ssYVNEpSv04VbMo5YPQsqa80KO3TFvbuCahMsCAW5z8Tncc8dwBlEFrmRjJG33A==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bearing/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bearing/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bezier-spline": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-6.5.0.tgz", + "integrity": "sha512-vokPaurTd4PF96rRgGVm6zYYC5r1u98ZsG+wZEv9y3kJTuJRX/O3xIY2QnTGTdbVmAJN1ouOsD0RoZYaVoXORQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bezier-spline/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/bezier-spline/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-clockwise": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", + "integrity": "sha512-FqbmEEOJ4rU4/2t7FKx0HUWmjFEVqR+NJrFP7ymGSjja2SQ7Q91nnBihGuT+yuHHl6ElMjQ3ttsB/eTmyCycxA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5", + "@turf/invariant": "^5.1.5" + } + }, + "node_modules/@turf/boolean-contains": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.5.0.tgz", + "integrity": "sha512-4m8cJpbw+YQcKVGi8y0cHhBUnYT+QRfx6wzM4GI1IdtYH3p4oh/DOBJKrepQyiDzFDaNIjxuWXBh0ai1zVwOQQ==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-contains/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-contains/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-crosses": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-6.5.0.tgz", + "integrity": "sha512-gvshbTPhAHporTlQwBJqyfW+2yV8q/mOTxG6PzRVl6ARsqNoqYQWkd4MLug7OmAqVyBzLK3201uAeBjxbGw0Ng==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-crosses/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-crosses/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-disjoint": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-6.5.0.tgz", + "integrity": "sha512-rZ2ozlrRLIAGo2bjQ/ZUu4oZ/+ZjGvLkN5CKXSKBcu6xFO6k2bgqeM8a1836tAW+Pqp/ZFsTA5fZHsJZvP2D5g==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-disjoint/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-disjoint/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-equal": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-6.5.0.tgz", + "integrity": "sha512-cY0M3yoLC26mhAnjv1gyYNQjn7wxIXmL2hBmI/qs8g5uKuC2hRWi13ydufE3k4x0aNRjFGlg41fjoYLwaVF+9Q==", + "license": "MIT", + "dependencies": { + "@turf/clean-coords": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "geojson-equality": "0.1.6" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-equal/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-equal/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-intersects": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-intersects/-/boolean-intersects-6.5.0.tgz", + "integrity": "sha512-nIxkizjRdjKCYFQMnml6cjPsDOBCThrt+nkqtSEcxkKMhAQj5OO7o2CecioNTaX8EayqwMGVKcsz27oP4mKPTw==", + "license": "MIT", + "dependencies": { + "@turf/boolean-disjoint": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-intersects/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-intersects/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-overlap": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-6.5.0.tgz", + "integrity": "sha512-8btMIdnbXVWUa1M7D4shyaSGxLRw6NjMcqKBcsTXcZdnaixl22k7ar7BvIzkaRYN3SFECk9VGXfLncNS3ckQUw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-overlap": "^6.5.0", + "@turf/meta": "^6.5.0", + "geojson-equality": "0.1.6" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-overlap/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-overlap/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-overlap/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-parallel": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-6.5.0.tgz", + "integrity": "sha512-aSHJsr1nq9e5TthZGZ9CZYeXklJyRgR5kCLm5X4urz7+MotMOp/LsGOsvKvK9NeUl9+8OUmfMn8EFTT8LkcvIQ==", + "license": "MIT", + "dependencies": { + "@turf/clean-coords": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-parallel/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-point-in-polygon": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz", + "integrity": "sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-point-in-polygon/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-point-in-polygon/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-point-on-line": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.5.0.tgz", + "integrity": "sha512-A1BbuQ0LceLHvq7F/P7w3QvfpmZqbmViIUPHdNLvZimFNLo4e6IQunmzbe+8aSStH9QRZm3VOflyvNeXvvpZEQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-point-on-line/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-point-on-line/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-within": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-6.5.0.tgz", + "integrity": "sha512-YQB3oU18Inx35C/LU930D36RAVe7LDXk1kWsQ8mLmuqYn9YdPsDQTMTkLJMhoQ8EbN7QTdy333xRQ4MYgToteQ==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-within/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/boolean-within/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/buffer": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.5.0.tgz", + "integrity": "sha512-qeX4N6+PPWbKqp1AVkBVWFerGjMYMUyencwfnkCesoznU6qvfugFHNAngNqIBVnJjZ5n8IFyOf+akcxnrt9sNg==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/projection": "^6.5.0", + "d3-geo": "1.7.1", + "turf-jsts": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/buffer/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/buffer/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.5.0.tgz", + "integrity": "sha512-T8KtMTfSATWcAX088rEDKjyvQCBkUsLnK/Txb6/8WUXIeOZyHu42G7MkdkHRoHtwieLdduDdmPLFyTdG5/e7ZQ==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-mean": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-6.5.0.tgz", + "integrity": "sha512-AAX6f4bVn12pTVrMUiB9KrnV94BgeBKpyg3YpfnEbBpkN/znfVhL8dG8IxMAxAoSZ61Zt9WLY34HfENveuOZ7Q==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-mean/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-mean/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-median": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-6.5.0.tgz", + "integrity": "sha512-dT8Ndu5CiZkPrj15PBvslpuf01ky41DEYEPxS01LOxp5HOUHXp1oJxsPxvc+i/wK4BwccPNzU1vzJ0S4emd1KQ==", + "license": "MIT", + "dependencies": { + "@turf/center-mean": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-median/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-median/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-of-mass": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-6.5.0.tgz", + "integrity": "sha512-EWrriU6LraOfPN7m1jZi+1NLTKNkuIsGLZc2+Y8zbGruvUW+QV7K0nhf7iZWutlxHXTBqEXHbKue/o79IumAsQ==", + "license": "MIT", + "dependencies": { + "@turf/centroid": "^6.5.0", + "@turf/convex": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-of-mass/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-of-mass/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center-of-mass/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/center/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/centroid": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-6.5.0.tgz", + "integrity": "sha512-MwE1oq5E3isewPprEClbfU5pXljIK/GUOMbn22UM3IFPDJX0KeoyLNwghszkdmFp/qMGL/M13MMWvU+GNLXP/A==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/centroid/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/centroid/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/circle": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-6.5.0.tgz", + "integrity": "sha512-oU1+Kq9DgRnoSbWFHKnnUdTmtcRUMmHoV9DjTXu9vOLNV5OWtAAh1VZ+mzsioGGzoDNT/V5igbFOkMfBQc0B6A==", + "license": "MIT", + "dependencies": { + "@turf/destination": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/circle/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clean-coords": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-6.5.0.tgz", + "integrity": "sha512-EMX7gyZz0WTH/ET7xV8MyrExywfm9qUi0/MY89yNffzGIEHuFfqwhcCqZ8O00rZIPZHUTxpmsxQSTfzJJA1CPw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clean-coords/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clean-coords/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clone": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", + "integrity": "sha512-//pITsQ8xUdcQ9pVb4JqXiSqG4dos5Q9N4sYFoWghX21tfOV2dhc5TGqYOhnHrQS7RiKQL1vQ48kIK34gQ5oRg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5" + } + }, + "node_modules/@turf/clusters": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-6.5.0.tgz", + "integrity": "sha512-Y6gfnTJzQ1hdLfCsyd5zApNbfLIxYEpmDibHUqR5z03Lpe02pa78JtgrgUNt1seeO/aJ4TG1NLN8V5gOrHk04g==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-dbscan": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.5.0.tgz", + "integrity": "sha512-SxZEE4kADU9DqLRiT53QZBBhu8EP9skviSyl+FGj08Y01xfICM/RR9ACUdM0aEQimhpu+ZpRVcUK+2jtiCGrYQ==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", + "density-clustering": "1.3.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-dbscan/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-dbscan/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-dbscan/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-kmeans": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.5.0.tgz", + "integrity": "sha512-DwacD5+YO8kwDPKaXwT9DV46tMBVNsbi1IzdajZu1JDSWoN7yc7N9Qt88oi+p30583O0UPVkAK+A10WAQv4mUw==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "skmeans": "0.9.7" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-kmeans/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-kmeans/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-kmeans/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters-kmeans/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/clusters/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/collect": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-6.5.0.tgz", + "integrity": "sha512-4dN/T6LNnRg099m97BJeOcTA5fSI8cu87Ydgfibewd2KQwBexO69AnjEFqfPX3Wj+Zvisj1uAVIZbPmSSrZkjg==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "rbush": "2.x" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/collect/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/combine": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-6.5.0.tgz", + "integrity": "sha512-Q8EIC4OtAcHiJB3C4R+FpB4LANiT90t17uOd851qkM2/o6m39bfN5Mv0PWqMZIHWrrosZqRqoY9dJnzz/rJxYQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/combine/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/combine/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/concave": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-6.5.0.tgz", + "integrity": "sha512-I/sUmUC8TC5h/E2vPwxVht+nRt+TnXIPRoztDFvS8/Y0+cBDple9inLSo9nnPXMXidrBlGXZ9vQx/BjZUJgsRQ==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/tin": "^6.5.0", + "topojson-client": "3.x", + "topojson-server": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/concave/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/concave/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/concave/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/concave/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/convex": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-6.5.0.tgz", + "integrity": "sha512-x7ZwC5z7PJB0SBwNh7JCeCNx7Iu+QSrH7fYgK0RhhNop13TqUlvHMirMLRgf2db1DqUetrAO2qHJeIuasquUWg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", + "concaveman": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/convex/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/convex/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/destination": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-6.5.0.tgz", + "integrity": "sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/destination/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/destination/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/difference": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-6.5.0.tgz", + "integrity": "sha512-l8iR5uJqvI+5Fs6leNbhPY5t/a3vipUF/3AeVLpwPQcgmedNXyheYuy07PcMGH5Jdpi5gItOiTqwiU/bUH4b3A==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/difference/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/difference/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/dissolve": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-6.5.0.tgz", + "integrity": "sha512-WBVbpm9zLTp0Bl9CE35NomTaOL1c4TQCtEoO43YaAhNEWJOOIhZMFJyr8mbvYruKl817KinT3x7aYjjCMjTAsQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/dissolve/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/dissolve/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/dissolve/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.5.0.tgz", + "integrity": "sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance-weight": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/distance-weight/-/distance-weight-6.5.0.tgz", + "integrity": "sha512-a8qBKkgVNvPKBfZfEJZnC3DV7dfIsC3UIdpRci/iap/wZLH41EmS90nM+BokAJflUHYy8PqE44wySGWHN1FXrQ==", + "license": "MIT", + "dependencies": { + "@turf/centroid": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance-weight/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance-weight/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance-weight/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/distance/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/ellipse": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-6.5.0.tgz", + "integrity": "sha512-kuXtwFviw/JqnyJXF1mrR/cb496zDTSbGKtSiolWMNImYzGGkbsAsFTjwJYgD7+4FixHjp0uQPzo70KDf3AIBw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/transform-rotate": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/ellipse/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/ellipse/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/envelope": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-6.5.0.tgz", + "integrity": "sha512-9Z+FnBWvOGOU4X+fMZxYFs1HjFlkKqsddLuMknRaqcJd6t+NIv5DWvPtDL8ATD2GEExYDiFLwMdckfr1yqJgHA==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/envelope/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/explode": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-6.5.0.tgz", + "integrity": "sha512-6cSvMrnHm2qAsace6pw9cDmK2buAlw8+tjeJVXMfMyY+w7ZUi1rprWMsY92J7s2Dar63Bv09n56/1V7+tcj52Q==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/explode/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/explode/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flatten": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-6.5.0.tgz", + "integrity": "sha512-IBZVwoNLVNT6U/bcUUllubgElzpMsNoCw8tLqBw6dfYg9ObGmpEjf9BIYLr7a2Yn5ZR4l7YIj2T7kD5uJjZADQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flatten/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flatten/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flip": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-6.5.0.tgz", + "integrity": "sha512-oyikJFNjt2LmIXQqgOGLvt70RgE2lyzPMloYWM7OR5oIFGRiBvqVD2hA6MNw6JewIm30fWZ8DQJw1NHXJTJPbg==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flip/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flip/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/flip/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/great-circle": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-6.5.0.tgz", + "integrity": "sha512-7ovyi3HaKOXdFyN7yy1yOMa8IyOvV46RC1QOQTT+RYUN8ke10eyqExwBpL9RFUPvlpoTzoYbM/+lWPogQlFncg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/great-circle/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/great-circle/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/helpers": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", + "integrity": "sha512-/lF+JR+qNDHZ8bF9d+Cp58nxtZWJ3sqFe6n3u3Vpj+/0cqkjk4nXKYBSY0azm+GIYB5mWKxUXvuP/m0ZnKj1bw==", + "license": "MIT" + }, + "node_modules/@turf/hex-grid": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-6.5.0.tgz", + "integrity": "sha512-Ln3tc2tgZT8etDOldgc6e741Smg1CsMKAz1/Mlel+MEL5Ynv2mhx3m0q4J9IB1F3a4MNjDeVvm8drAaf9SF33g==", + "license": "MIT", + "dependencies": { + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/intersect": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/hex-grid/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/hex-grid/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/interpolate": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-6.5.0.tgz", + "integrity": "sha512-LSH5fMeiGyuDZ4WrDJNgh81d2DnNDUVJtuFryJFup8PV8jbs46lQGfI3r1DJ2p1IlEJIz3pmAZYeTfMMoeeohw==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/hex-grid": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/point-grid": "^6.5.0", + "@turf/square-grid": "^6.5.0", + "@turf/triangle-grid": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/interpolate/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/interpolate/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/interpolate/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/interpolate/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/intersect": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.5.0.tgz", + "integrity": "sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/intersect/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/intersect/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/invariant": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.2.0.tgz", + "integrity": "sha512-28RCBGvCYsajVkw2EydpzLdcYyhSA77LovuOvgCJplJWaNVyJYH6BOR3HR9w50MEkPqb/Vc/jdo6I6ermlRtQA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5" + } + }, + "node_modules/@turf/isobands": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-6.5.0.tgz", + "integrity": "sha512-4h6sjBPhRwMVuFaVBv70YB7eGz+iw0bhPRnp+8JBdX1UPJSXhoi/ZF2rACemRUr0HkdVB/a1r9gC32vn5IAEkw==", + "license": "MIT", + "dependencies": { + "@turf/area": "^6.5.0", + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "object-assign": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isobands/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isobands/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isobands/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isolines": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-6.5.0.tgz", + "integrity": "sha512-6ElhiLCopxWlv4tPoxiCzASWt/jMRvmp6mRYrpzOm3EUl75OhHKa/Pu6Y9nWtCMmVC/RcWtiiweUocbPLZLm0A==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "object-assign": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isolines/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isolines/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/isolines/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/kinks": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-6.5.0.tgz", + "integrity": "sha512-ViCngdPt1eEL7hYUHR2eHR662GvCgTc35ZJFaNR6kRtr6D8plLaDju0FILeFFWSc+o8e3fwxZEJKmFj9IzPiIQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/kinks/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/length": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/length/-/length-6.5.0.tgz", + "integrity": "sha512-5pL5/pnw52fck3oRsHDcSGrj9HibvtlrZ0QNy2OcW8qBFDNgZ4jtl6U7eATVoyWPKBHszW3dWETW+iLV7UARig==", + "license": "MIT", + "dependencies": { + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/length/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/length/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-arc": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-6.5.0.tgz", + "integrity": "sha512-I6c+V6mIyEwbtg9P9zSFF89T7QPe1DPTG3MJJ6Cm1MrAY0MdejwQKOpsvNl8LDU2ekHOlz2kHpPVR7VJsoMllA==", + "license": "MIT", + "dependencies": { + "@turf/circle": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-arc/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-chunk": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-6.5.0.tgz", + "integrity": "sha512-i1FGE6YJaaYa+IJesTfyRRQZP31QouS+wh/pa6O3CC0q4T7LtHigyBSYjrbjSLfn2EVPYGlPCMFEqNWCOkC6zg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/line-slice-along": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-chunk/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-chunk/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-intersect": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.5.0.tgz", + "integrity": "sha512-CS6R1tZvVQD390G9Ea4pmpM6mJGPWoL82jD46y0q1KSor9s6HupMIo1kY4Ny+AEYQl9jd21V3Scz20eldpbTVA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "geojson-rbush": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-intersect/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-intersect/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-intersect/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-offset": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-6.5.0.tgz", + "integrity": "sha512-CEXZbKgyz8r72qRvPchK0dxqsq8IQBdH275FE6o4MrBkzMcoZsfSjghtXzKaz9vvro+HfIXal0sTk2mqV1lQTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-offset/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-offset/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-offset/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-overlap": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-6.5.0.tgz", + "integrity": "sha512-xHOaWLd0hkaC/1OLcStCpfq55lPHpPNadZySDXYiYjEz5HXr1oKmtMYpn0wGizsLwrOixRdEp+j7bL8dPt4ojQ==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "deep-equal": "1.x", + "geojson-rbush": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-overlap/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-overlap/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-overlap/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-segment": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.5.0.tgz", + "integrity": "sha512-jI625Ho4jSuJESNq66Mmi290ZJ5pPZiQZruPVpmHkUw257Pew0alMmb6YrqYNnLUuiVVONxAAKXUVeeUGtycfw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-segment/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-segment/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-segment/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-slice": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-6.5.0.tgz", + "integrity": "sha512-vDqJxve9tBHhOaVVFXqVjF5qDzGtKWviyjbyi2QnSnxyFAmLlLnBfMX8TLQCAf2GxHibB95RO5FBE6I2KVPRuw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-slice-along": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-6.5.0.tgz", + "integrity": "sha512-KHJRU6KpHrAj+BTgTNqby6VCTnDzG6a1sJx/I3hNvqMBLvWVA2IrkR9L9DtsQsVY63IBwVdQDqiwCuZLDQh4Ng==", + "license": "MIT", + "dependencies": { + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-slice-along/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-slice/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-slice/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-split": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-6.5.0.tgz", + "integrity": "sha512-/rwUMVr9OI2ccJjw7/6eTN53URtGThNSD5I0GgxyFXMtxWiloRJ9MTff8jBbtPWrRka/Sh2GkwucVRAEakx9Sw==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "@turf/square": "^6.5.0", + "@turf/truncate": "^6.5.0", + "geojson-rbush": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-split/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-split/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-split/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-to-polygon": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-6.5.0.tgz", + "integrity": "sha512-qYBuRCJJL8Gx27OwCD1TMijM/9XjRgXH/m/TyuND4OXedBpIWlK5VbTIO2gJ8OCfznBBddpjiObLBrkuxTpN4Q==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-to-polygon/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-to-polygon/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/line-to-polygon/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/mask": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-6.5.0.tgz", + "integrity": "sha512-RQha4aU8LpBrmrkH8CPaaoAfk0Egj5OuXtv6HuCQnHeGNOQt3TQVibTA3Sh4iduq4EPxnZfDjgsOeKtrCA19lg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/mask/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/meta": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.2.0.tgz", + "integrity": "sha512-ZjQ3Ii62X9FjnK4hhdsbT+64AYRpaI8XMBMcyftEOGSmPMUVnkbvuv3C9geuElAXfQU7Zk1oWGOcrGOD9zr78Q==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^5.1.5" + } + }, + "node_modules/@turf/midpoint": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-6.5.0.tgz", + "integrity": "sha512-MyTzV44IwmVI6ec9fB2OgZ53JGNlgOpaYl9ArKoF49rXpL84F9rNATndbe0+MQIhdkw8IlzA6xVP4lZzfMNVCw==", + "license": "MIT", + "dependencies": { + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/midpoint/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/moran-index": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/moran-index/-/moran-index-6.5.0.tgz", + "integrity": "sha512-ItsnhrU2XYtTtTudrM8so4afBCYWNaB0Mfy28NZwLjB5jWuAsvyV+YW+J88+neK/ougKMTawkmjQqodNJaBeLQ==", + "license": "MIT", + "dependencies": { + "@turf/distance-weight": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/moran-index/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/moran-index/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-6.5.0.tgz", + "integrity": "sha512-fguV09QxilZv/p94s8SMsXILIAMiaXI5PATq9d7YWijLxWUj6Q/r43kxyoi78Zmwwh1Zfqz9w+bCYUAxZ5+euA==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-on-line": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.5.0.tgz", + "integrity": "sha512-WthrvddddvmymnC+Vf7BrkHGbDOUu6Z3/6bFYUGv1kxw8tiZ6n83/VG6kHz4poHOfS0RaNflzXSkmCi64fLBlg==", + "license": "MIT", + "dependencies": { + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-on-line/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-on-line/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-on-line/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-to-line": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-6.5.0.tgz", + "integrity": "sha512-PXV7cN0BVzUZdjj6oeb/ESnzXSfWmEMrsfZSDRgqyZ9ytdiIj/eRsnOXLR13LkTdXVOJYDBuf7xt1mLhM4p6+Q==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/point-to-line-distance": "^6.5.0", + "object-assign": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-to-line/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-to-line/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point-to-line/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/nearest-point/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/planepoint": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-6.5.0.tgz", + "integrity": "sha512-R3AahA6DUvtFbka1kcJHqZ7DMHmPXDEQpbU5WaglNn7NaCQg9HB0XM0ZfqWcd5u92YXV+Gg8QhC8x5XojfcM4Q==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/planepoint/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/planepoint/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-grid": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-6.5.0.tgz", + "integrity": "sha512-Iq38lFokNNtQJnOj/RBKmyt6dlof0yhaHEDELaWHuECm1lIZLY3ZbVMwbs+nXkwTAHjKfS/OtMheUBkw+ee49w==", + "license": "MIT", + "dependencies": { + "@turf/boolean-within": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-grid/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-grid/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-on-feature": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-6.5.0.tgz", + "integrity": "sha512-bDpuIlvugJhfcF/0awAQ+QI6Om1Y1FFYE8Y/YdxGRongivix850dTeXCo0mDylFdWFPGDo7Mmh9Vo4VxNwW/TA==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/nearest-point": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-on-feature/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-to-line-distance": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-6.5.0.tgz", + "integrity": "sha512-opHVQ4vjUhNBly1bob6RWy+F+hsZDH9SA0UW36pIRzfpu27qipU18xup0XXEePfY6+wvhF6yL/WgCO2IbrLqEA==", + "license": "MIT", + "dependencies": { + "@turf/bearing": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/projection": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-to-line-distance/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-to-line-distance/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/point-to-line-distance/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/points-within-polygon": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-6.5.0.tgz", + "integrity": "sha512-YyuheKqjliDsBDt3Ho73QVZk1VXX1+zIA2gwWvuz8bR1HXOkcuwk/1J76HuFMOQI3WK78wyAi+xbkx268PkQzQ==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/points-within-polygon/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/points-within-polygon/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-smooth": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-smooth/-/polygon-smooth-6.5.0.tgz", + "integrity": "sha512-LO/X/5hfh/Rk4EfkDBpLlVwt3i6IXdtQccDT9rMjXEP32tRgy0VMFmdkNaXoGlSSKf/1mGqLl4y4wHd86DqKbg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-smooth/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-smooth/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-tangents": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-6.5.0.tgz", + "integrity": "sha512-sB4/IUqJMYRQH9jVBwqS/XDitkEfbyqRy+EH/cMRJURTg78eHunvJ708x5r6umXsbiUyQU4eqgPzEylWEQiunw==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/boolean-within": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/nearest-point": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-tangents/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-tangents/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-to-line": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-6.5.0.tgz", + "integrity": "sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-to-line/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygon-to-line/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygonize": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-6.5.0.tgz", + "integrity": "sha512-a/3GzHRaCyzg7tVYHo43QUChCspa99oK4yPqooVIwTC61npFzdrmnywMv0S+WZjHZwK37BrFJGFrZGf6ocmY5w==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/envelope": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygonize/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygonize/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/polygonize/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/projection": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.5.0.tgz", + "integrity": "sha512-/Pgh9mDvQWWu8HRxqpM+tKz8OzgauV+DiOcr3FCjD6ubDnrrmMJlsf6fFJmggw93mtVPrZRL6yyi9aYCQBOIvg==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/projection/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/projection/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/projection/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/random": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/random/-/random-6.5.0.tgz", + "integrity": "sha512-8Q25gQ/XbA7HJAe+eXp4UhcXM9aOOJFaxZ02+XSNwMvY8gtWSCBLVqRcW4OhqilgZ8PeuQDWgBxeo+BIqqFWFQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/random/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rectangle-grid": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rectangle-grid/-/rectangle-grid-6.5.0.tgz", + "integrity": "sha512-yQZ/1vbW68O2KsSB3OZYK+72aWz/Adnf7m2CMKcC+aq6TwjxZjAvlbCOsNUnMAuldRUVN1ph6RXMG4e9KEvKvg==", + "license": "MIT", + "dependencies": { + "@turf/boolean-intersects": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rectangle-grid/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rewind": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", + "integrity": "sha512-Gdem7JXNu+G4hMllQHXRFRihJl3+pNl7qY+l4qhQFxq+hiU1cQoVFnyoleIqWKIrdK/i2YubaSwc3SCM7N5mMw==", + "license": "MIT", + "dependencies": { + "@turf/boolean-clockwise": "^5.1.5", + "@turf/clone": "^5.1.5", + "@turf/helpers": "^5.1.5", + "@turf/invariant": "^5.1.5", + "@turf/meta": "^5.1.5" + } + }, + "node_modules/@turf/rhumb-bearing": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.5.0.tgz", + "integrity": "sha512-jMyqiMRK4hzREjQmnLXmkJ+VTNTx1ii8vuqRwJPcTlKbNWfjDz/5JqJlb5NaFDcdMpftWovkW5GevfnuzHnOYA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-bearing/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-bearing/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-destination": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-6.5.0.tgz", + "integrity": "sha512-RHNP1Oy+7xTTdRrTt375jOZeHceFbjwohPHlr9Hf68VdHHPMAWgAKqiX2YgSWDcvECVmiGaBKWus1Df+N7eE4Q==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-destination/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-destination/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-distance": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.5.0.tgz", + "integrity": "sha512-oKp8KFE8E4huC2Z1a1KNcFwjVOqa99isxNOwfo4g3SUABQ6NezjKDDrnvC4yI5YZ3/huDjULLBvhed45xdCrzg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-distance/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/rhumb-distance/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/sample": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-6.5.0.tgz", + "integrity": "sha512-kSdCwY7el15xQjnXYW520heKUrHwRvnzx8ka4eYxX9NFeOxaFITLW2G7UtXb6LJK8mmPXI8Aexv23F2ERqzGFg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/sample/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/sector": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-6.5.0.tgz", + "integrity": "sha512-cYUOkgCTWqa23SOJBqxoFAc/yGCUsPRdn/ovbRTn1zNTm/Spmk6hVB84LCKOgHqvSF25i0d2kWqpZDzLDdAPbw==", + "license": "MIT", + "dependencies": { + "@turf/circle": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-arc": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/sector/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/sector/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/sector/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/shortest-path": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-6.5.0.tgz", + "integrity": "sha512-4de5+G7+P4hgSoPwn+SO9QSi9HY5NEV/xRJ+cmoFVRwv2CDsuOPDheHKeuIAhKyeKDvPvPt04XYWbac4insJMg==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/clean-coords": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/transform-scale": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/shortest-path/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/shortest-path/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/shortest-path/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/simplify": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-6.5.0.tgz", + "integrity": "sha512-USas3QqffPHUY184dwQdP8qsvcVH/PWBYdXY5am7YTBACaQOMAlf6AKJs9FT8jiO6fQpxfgxuEtwmox+pBtlOg==", + "license": "MIT", + "dependencies": { + "@turf/clean-coords": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/simplify/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/simplify/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/simplify/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/square": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/square/-/square-6.5.0.tgz", + "integrity": "sha512-BM2UyWDmiuHCadVhHXKIx5CQQbNCpOxB6S/aCNOCLbhCeypKX5Q0Aosc5YcmCJgkwO5BERCC6Ee7NMbNB2vHmQ==", + "license": "MIT", + "dependencies": { + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/square-grid": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-6.5.0.tgz", + "integrity": "sha512-mlR0ayUdA+L4c9h7p4k3pX6gPWHNGuZkt2c5II1TJRmhLkW2557d6b/Vjfd1z9OVaajb1HinIs1FMSAPXuuUrA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/rectangle-grid": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/square-grid/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/square/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/standard-deviational-ellipse": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-6.5.0.tgz", + "integrity": "sha512-02CAlz8POvGPFK2BKK8uHGUk/LXb0MK459JVjKxLC2yJYieOBTqEbjP0qaWhiBhGzIxSMaqe8WxZ0KvqdnstHA==", + "license": "MIT", + "dependencies": { + "@turf/center-mean": "^6.5.0", + "@turf/ellipse": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/points-within-polygon": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/standard-deviational-ellipse/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/standard-deviational-ellipse/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/standard-deviational-ellipse/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tag": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-6.5.0.tgz", + "integrity": "sha512-XwlBvrOV38CQsrNfrxvBaAPBQgXMljeU0DV8ExOyGM7/hvuGHJw3y8kKnQ4lmEQcmcrycjDQhP7JqoRv8vFssg==", + "license": "MIT", + "dependencies": { + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tag/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tag/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tag/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tesselate": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-6.5.0.tgz", + "integrity": "sha512-M1HXuyZFCfEIIKkglh/r5L9H3c5QTEsnMBoZOFQiRnGPGmJWcaBissGb7mTFX2+DKE7FNWXh4TDnZlaLABB0dQ==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "earcut": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tesselate/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tin": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-6.5.0.tgz", + "integrity": "sha512-YLYikRzKisfwj7+F+Tmyy/LE3d2H7D4kajajIfc9mlik2+esG7IolsX/+oUz1biguDYsG0DUA8kVYXDkobukfg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/tin/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-rotate": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-6.5.0.tgz", + "integrity": "sha512-A2Ip1v4246ZmpssxpcL0hhiVBEf4L8lGnSPWTgSv5bWBEoya2fa/0SnFX9xJgP40rMP+ZzRaCN37vLHbv1Guag==", + "license": "MIT", + "dependencies": { + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-rotate/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-rotate/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-rotate/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-rotate/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-scale": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-6.5.0.tgz", + "integrity": "sha512-VsATGXC9rYM8qTjbQJ/P7BswKWXHdnSJ35JlV4OsZyHBMxJQHftvmZJsFbOqVtQnIQIzf2OAly6rfzVV9QLr7g==", + "license": "MIT", + "dependencies": { + "@turf/bbox": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-scale/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-scale/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-scale/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-scale/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-translate": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-6.5.0.tgz", + "integrity": "sha512-NABLw5VdtJt/9vSstChp93pc6oel4qXEos56RBMsPlYB8hzNTEKYtC146XJvyF4twJeeYS8RVe1u7KhoFwEM5w==", + "license": "MIT", + "dependencies": { + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-translate/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-translate/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-translate/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/transform-translate/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/triangle-grid": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-6.5.0.tgz", + "integrity": "sha512-2jToUSAS1R1htq4TyLQYPTIsoy6wg3e3BQXjm2rANzw4wPQCXGOxrur1Fy9RtzwqwljlC7DF4tg0OnWr8RjmfA==", + "license": "MIT", + "dependencies": { + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/intersect": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/triangle-grid/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/truncate": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-6.5.0.tgz", + "integrity": "sha512-pFxg71pLk+eJj134Z9yUoRhIi8vqnnKvCYwdT4x/DQl/19RVdq1tV3yqOT3gcTQNfniteylL5qV1uTBDV5sgrg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/truncate/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/truncate/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-6.5.0.tgz", + "integrity": "sha512-ipMCPnhu59bh92MNt8+pr1VZQhHVuTMHklciQURo54heoxRzt1neNYZOBR6jdL+hNsbDGAECMuIpAutX+a3Y+w==", + "license": "MIT", + "dependencies": { + "@turf/along": "^6.5.0", + "@turf/angle": "^6.5.0", + "@turf/area": "^6.5.0", + "@turf/bbox": "^6.5.0", + "@turf/bbox-clip": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/bearing": "^6.5.0", + "@turf/bezier-spline": "^6.5.0", + "@turf/boolean-clockwise": "^6.5.0", + "@turf/boolean-contains": "^6.5.0", + "@turf/boolean-crosses": "^6.5.0", + "@turf/boolean-disjoint": "^6.5.0", + "@turf/boolean-equal": "^6.5.0", + "@turf/boolean-intersects": "^6.5.0", + "@turf/boolean-overlap": "^6.5.0", + "@turf/boolean-parallel": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/boolean-within": "^6.5.0", + "@turf/buffer": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/center-mean": "^6.5.0", + "@turf/center-median": "^6.5.0", + "@turf/center-of-mass": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/circle": "^6.5.0", + "@turf/clean-coords": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/clusters": "^6.5.0", + "@turf/clusters-dbscan": "^6.5.0", + "@turf/clusters-kmeans": "^6.5.0", + "@turf/collect": "^6.5.0", + "@turf/combine": "^6.5.0", + "@turf/concave": "^6.5.0", + "@turf/convex": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/difference": "^6.5.0", + "@turf/dissolve": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/distance-weight": "^6.5.0", + "@turf/ellipse": "^6.5.0", + "@turf/envelope": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/flatten": "^6.5.0", + "@turf/flip": "^6.5.0", + "@turf/great-circle": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/hex-grid": "^6.5.0", + "@turf/interpolate": "^6.5.0", + "@turf/intersect": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/isobands": "^6.5.0", + "@turf/isolines": "^6.5.0", + "@turf/kinks": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/line-arc": "^6.5.0", + "@turf/line-chunk": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-offset": "^6.5.0", + "@turf/line-overlap": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/line-slice": "^6.5.0", + "@turf/line-slice-along": "^6.5.0", + "@turf/line-split": "^6.5.0", + "@turf/line-to-polygon": "^6.5.0", + "@turf/mask": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/midpoint": "^6.5.0", + "@turf/moran-index": "^6.5.0", + "@turf/nearest-point": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "@turf/nearest-point-to-line": "^6.5.0", + "@turf/planepoint": "^6.5.0", + "@turf/point-grid": "^6.5.0", + "@turf/point-on-feature": "^6.5.0", + "@turf/point-to-line-distance": "^6.5.0", + "@turf/points-within-polygon": "^6.5.0", + "@turf/polygon-smooth": "^6.5.0", + "@turf/polygon-tangents": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0", + "@turf/polygonize": "^6.5.0", + "@turf/projection": "^6.5.0", + "@turf/random": "^6.5.0", + "@turf/rewind": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0", + "@turf/sample": "^6.5.0", + "@turf/sector": "^6.5.0", + "@turf/shortest-path": "^6.5.0", + "@turf/simplify": "^6.5.0", + "@turf/square": "^6.5.0", + "@turf/square-grid": "^6.5.0", + "@turf/standard-deviational-ellipse": "^6.5.0", + "@turf/tag": "^6.5.0", + "@turf/tesselate": "^6.5.0", + "@turf/tin": "^6.5.0", + "@turf/transform-rotate": "^6.5.0", + "@turf/transform-scale": "^6.5.0", + "@turf/transform-translate": "^6.5.0", + "@turf/triangle-grid": "^6.5.0", + "@turf/truncate": "^6.5.0", + "@turf/union": "^6.5.0", + "@turf/unkink-polygon": "^6.5.0", + "@turf/voronoi": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf/node_modules/@turf/boolean-clockwise": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-6.5.0.tgz", + "integrity": "sha512-45+C7LC5RMbRWrxh3Z0Eihsc8db1VGBO5d9BLTOAwU4jR6SgsunTfRWR16X7JUwIDYlCVEmnjcXJNi/kIU3VIw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf/node_modules/@turf/clone": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/turf/node_modules/@turf/rewind": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-6.5.0.tgz", + "integrity": "sha512-IoUAMcHWotBWYwSYuYypw/LlqZmO+wcBpn8ysrBNbazkFNkLf3btSDZMkKJO/bvOzl55imr/Xj4fi3DdsLsbzQ==", + "license": "MIT", + "dependencies": { + "@turf/boolean-clockwise": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/union": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/union/-/union-6.5.0.tgz", + "integrity": "sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/union/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/union/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/unkink-polygon": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-6.5.0.tgz", + "integrity": "sha512-8QswkzC0UqKmN1DT6HpA9upfa1HdAA5n6bbuzHy8NJOX8oVizVAqfEPY0wqqTgboDjmBR4yyImsdPGUl3gZ8JQ==", + "license": "MIT", + "dependencies": { + "@turf/area": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", + "rbush": "^2.0.1" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/unkink-polygon/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/unkink-polygon/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/voronoi": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-6.5.0.tgz", + "integrity": "sha512-C/xUsywYX+7h1UyNqnydHXiun4UPjK88VDghtoRypR9cLlb7qozkiLRphQxxsCM0KxyxpVPHBVQXdAL3+Yurow==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "d3-voronoi": "1.1.2" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/voronoi/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "license": "MIT", + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@turf/voronoi/node_modules/@turf/invariant": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", + "license": "MIT", + "dependencies": { + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/brotli": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/@types/brotli/-/brotli-1.3.4.tgz", + "integrity": "sha512-cKYjgaS2DMdCKF7R0F5cgx1nfBYObN2ihIuPGQ4/dlIY6RpV7OWNwe9L8V4tTVKL2eZqOkNM9FM/rgTvLf4oXw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/crypto-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.2.2.tgz", + "integrity": "sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, + "node_modules/@types/geojson-vt": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@types/geojson-vt/-/geojson-vt-3.2.5.tgz", + "integrity": "sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "30.0.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-30.0.0.tgz", + "integrity": "sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==", + "license": "MIT", + "dependencies": { + "expect": "^30.0.0", + "pretty-format": "^30.0.0" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz", + "integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/@types/jquery": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.33.tgz", + "integrity": "sha512-SeyVJXlCZpEki5F0ghuYe+L+PprQta6nRZqhONt9F13dWBtR/ftoaIbdRQ7cis7womE+X2LKhsDdDtkkDhJS6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/sizzle": "*" + } + }, + "node_modules/@types/js-cookie": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.7.tgz", + "integrity": "sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==", + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.21", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.21.tgz", + "integrity": "sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mapbox__point-geometry": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.4.tgz", + "integrity": "sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==", + "license": "MIT" + }, + "node_modules/@types/mapbox__vector-tile": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.4.tgz", + "integrity": "sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*", + "@types/mapbox__point-geometry": "*", + "@types/pbf": "*" + } + }, + "node_modules/@types/mapbox-gl": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-3.4.1.tgz", + "integrity": "sha512-NsGKKtgW93B+UaLPti6B7NwlxYlES5DpV5Gzj9F75rK5ALKsqSk15CiEHbOnTr09RGbr6ZYiCdI+59NNNcAImg==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/node": { + "version": "18.19.130", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.130.tgz", + "integrity": "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/offscreencanvas": { + "version": "2019.7.3", + "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz", + "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==", + "license": "MIT" + }, + "node_modules/@types/pako": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/pako/-/pako-1.0.7.tgz", + "integrity": "sha512-YBtzT2ztNF6R/9+UXj2wTGFnC9NklAnASt3sC0h2m1bbH7G6FyBIkt4AN8ThZpNfxUo1b2iMVO0UawiJymEt8A==", + "license": "MIT" + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/pbf": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.5.tgz", + "integrity": "sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==", + "license": "MIT" + }, + "node_modules/@types/proj4": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@types/proj4/-/proj4-2.5.6.tgz", + "integrity": "sha512-zfMrPy9fx+8DchqM0kIUGeu2tTVB5ApO1KGAYcSGFS8GoqRIkyL41xq2yCx/iV3sOLzo7v4hEgViSLTiPI1L0w==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.27", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz", + "integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@types/react-slick": { + "version": "0.23.13", + "resolved": "https://registry.npmjs.org/@types/react-slick/-/react-slick-0.23.13.tgz", + "integrity": "sha512-bNZfDhe/L8t5OQzIyhrRhBr/61pfBcWaYJoq6UDqFtv5LMwfg4NsVDD2J8N01JqdAdxLjOt66OZEp6PX+dGs/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.12", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz", + "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/sizzle": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.10.tgz", + "integrity": "sha512-TC0dmN0K8YcWEAEfiPi5gJP14eJe30TTGjkvek3iM/1NdHHsdCA/Td6GvNndMOo/iSnIsZ4HuuhrYPDAmbxzww==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/supercluster": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.3.tgz", + "integrity": "sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.9", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", + "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", + "license": "MIT", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/turf": { + "version": "3.5.32", + "resolved": "https://registry.npmjs.org/@types/turf/-/turf-3.5.32.tgz", + "integrity": "sha512-2Rtv0EIG7Tx1CC2ASzCPw63ugCwrqJCFqNL/Gk9QYE5iIyd+0/S/TlPTgQ+qeQC8NCEn/TncUeZp+aM9cg68rg==", + "deprecated": "'turf' has been deprecated in favor of '@turf/turf', which provides its own types.", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/warning": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", + "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.35", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", + "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.27", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.9.8", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz", + "integrity": "sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@xobotyi/scrollbar-width": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/@xobotyi/scrollbar-width/-/scrollbar-width-1.9.5.tgz", + "integrity": "sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==", + "license": "MIT" + }, + "node_modules/a5-js": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/a5-js/-/a5-js-0.1.4.tgz", + "integrity": "sha512-lpuXcoBHL4Sa5sKu+dbBaH/8L3TYIHpVBSWqBdwDVMKYNipaVpW6sZBv0x9Yu9y38iS72jWyoKLFiKynUpwvBw==", + "license": "Apache-2.0", + "dependencies": { + "gl-matrix": "^3.4.3" + } + }, + "node_modules/abs-svg-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/abs-svg-path/-/abs-svg-path-0.1.1.tgz", + "integrity": "sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==", + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/autoprefixer": { + "version": "10.4.22", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz", + "integrity": "sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.27.0", + "caniuse-lite": "^1.0.30001754", + "fraction.js": "^5.3.4", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz", + "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.29.tgz", + "integrity": "sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/bidi-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", + "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", + "license": "MIT", + "dependencies": { + "require-from-string": "^2.0.2" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bootstrap": { + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.8.tgz", + "integrity": "sha512-HP1SZDqaLDPwsNiqRqi5NcP0SSXciX2s9E+RyqJIIqGo+vJeN5AJVM98CXmW/Wux0nQ5L7jeWUdplCEf0Ee+tg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "license": "MIT", + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brotli": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", + "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.1.2" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "license": "MIT", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz", + "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.25", + "caniuse-lite": "^1.0.30001754", + "electron-to-chromium": "^1.5.249", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buf-compare": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz", + "integrity": "sha512-Bvx4xH00qweepGc43xFvMs5BKASXTbHaHm6+kDYIK9p/4iFwjATQkmPKHQSgJZzKbAymhztRbXUf1Nqhzl73/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bytewise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz", + "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==", + "license": "MIT", + "dependencies": { + "bytewise-core": "^1.2.2", + "typewise": "^1.0.3" + } + }, + "node_modules/bytewise-core": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz", + "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==", + "license": "MIT", + "dependencies": { + "typewise-core": "^1.2" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001755", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001755.tgz", + "integrity": "sha512-44V+Jm6ctPj7R52Na4TLi3Zri4dWUljJd+RDm+j8LtNCc/ihLCT+X1TzoOAkRETEWqjuLnh9581Tl80FvK7jVA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/cheap-ruler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cheap-ruler/-/cheap-ruler-4.0.0.tgz", + "integrity": "sha512-0BJa8f4t141BYKQyn9NSQt1PguFQXMXwZiA5shfoaBYHAb2fFk2RAX+tiWMoQU+Agtzt3mdt0JtuyshAXqZ+Vw==", + "license": "ISC" + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/ci-info": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz", + "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/@restart/ui/node_modules/uncontrollable": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", - "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", - "peerDependencies": { - "react": ">=16.14.0" + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.5.tgz", - "integrity": "sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.5.tgz", - "integrity": "sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==", - "cpu": [ - "arm64" - ], - "dev": true, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", "license": "MIT", - "optional": true, - "os": [ - "android" - ] + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.5.tgz", - "integrity": "sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==", - "cpu": [ - "arm64" - ], + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.5.tgz", - "integrity": "sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==", - "cpu": [ - "x64" - ], + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] + "engines": { + "node": ">= 6" + } }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.5.tgz", - "integrity": "sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==", - "cpu": [ - "arm" - ], - "dev": true, + "node_modules/concaveman": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-2.0.0.tgz", + "integrity": "sha512-3a9C//4G44/boNehBPZMRh8XxrwBvTXlhENUim+GMm207WoDie/Vq89U5lkhLn3kKA+vxwmwfdQPWIRwjQWoLA==", + "license": "ISC", + "dependencies": { + "point-in-polygon": "^1.1.0", + "rbush": "^4.0.1", + "robust-predicates": "^3.0.2", + "tinyqueue": "^3.0.0" + } + }, + "node_modules/concaveman/node_modules/rbush": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-4.0.1.tgz", + "integrity": "sha512-IP0UpfeWQujYC8Jg162rMNc01Rf0gWMMAb2Uxus/Q0qOFw4lCcq6ZnQEZwUoJqWyUGJ9th7JjwI4yIWo+uvoAQ==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "quickselect": "^3.0.0" + } }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.5.tgz", - "integrity": "sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==", - "cpu": [ - "arm" - ], - "dev": true, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "toggle-selection": "^1.0.6" + } }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.5.tgz", - "integrity": "sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==", - "cpu": [ - "arm64" - ], - "dev": true, + "node_modules/core-assert": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz", + "integrity": "sha512-IG97qShIP+nrJCXMCgkNZgH7jZQ4n8RpPyPeXX++T6avR/KhLhgLiHKoEn5Rc1KjfycSfA9DMa6m+4C4eguHhw==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "buf-compare": "^1.0.0", + "is-error": "^2.2.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.5.tgz", - "integrity": "sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==", - "cpu": [ - "arm64" - ], - "dev": true, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.5.tgz", - "integrity": "sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==", - "cpu": [ - "ppc64" - ], + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.5.tgz", - "integrity": "sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==", - "cpu": [ - "riscv64" - ], + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", + "license": "MIT" + }, + "node_modules/css-in-js-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "hyphenate-style-name": "^1.0.3" + } }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.5.tgz", - "integrity": "sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==", - "cpu": [ - "s390x" - ], - "dev": true, + "node_modules/css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "utrie": "^1.0.2" + } }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.5.tgz", - "integrity": "sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==", - "cpu": [ - "x64" - ], - "dev": true, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "license": "MIT" }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.5.tgz", - "integrity": "sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "node_modules/csscolorparser": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", + "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==", + "license": "MIT" }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.5.tgz", - "integrity": "sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==", - "cpu": [ - "arm64" - ], + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.5.tgz", - "integrity": "sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.5.tgz", - "integrity": "sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "node_modules/d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==", + "license": "BSD-3-Clause" }, - "node_modules/@swc/helpers": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.13.tgz", - "integrity": "sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==", - "license": "Apache-2.0", + "node_modules/d3-geo": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.7.1.tgz", + "integrity": "sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==", + "license": "BSD-3-Clause", "dependencies": { - "tslib": "^2.4.0" + "d3-array": "1" } }, - "node_modules/@tailwindcss/forms": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.9.tgz", - "integrity": "sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==", - "dev": true, + "node_modules/d3-voronoi": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.2.tgz", + "integrity": "sha512-RhGS1u2vavcO7ay7ZNAPo4xeDh/VYeGof3x5ZLJBQgYhLegxr3s5IykvWmJ94FTU6mcbtp4sloqZ54mP6R4Utw==", + "license": "BSD-3-Clause" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "license": "MIT", "dependencies": { - "mini-svg-data-uri": "^1.2.3" + "ms": "^2.1.3" }, - "peerDependencies": { - "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20" + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/@tanstack/react-virtual": { - "version": "3.10.8", - "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.10.8.tgz", - "integrity": "sha512-VbzbVGSsZlQktyLrP5nxE+vE1ZR+U0NFAWPbJLoG2+DKPwd2D7dVICTVIIaYlJqX1ZCEnYDbaOpmMwbsyhBoIA==", - "dev": true, + "node_modules/deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", "license": "MIT", "dependencies": { - "@tanstack/virtual-core": "3.10.8" + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.5.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-strict-equal": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz", + "integrity": "sha512-3daSWyvZ/zwJvuMGlzG1O+Ow0YSadGfb3jsh9xoCutv2tWyB9dA4YvR9L9/fSdDZa2dByYQe+TqapSGUrjnkoA==", + "license": "MIT", + "dependencies": { + "core-assert": "^0.2.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@tanstack/virtual-core": { - "version": "3.10.8", - "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.10.8.tgz", - "integrity": "sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==", + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "license": "MIT", "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "license": "MIT", "dependencies": { - "@babel/types": "^7.0.0" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "dev": true, "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, + "node_modules/density-clustering": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/density-clustering/-/density-clustering-1.3.0.tgz", + "integrity": "sha512-icpmBubVTwLnsaor9qH/4tG5+7+f61VcqMN3V3pm9sxxSCt2Jcs0zWOgwZW9ARJYaKD3FumIgHiMOcIMRRAzFQ==", + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "license": "MIT", - "dependencies": { - "@babel/types": "^7.20.7" + "engines": { + "node": ">=6" } }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dfa": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", + "license": "MIT" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", "dev": true, "license": "MIT" }, - "node_modules/@types/geojson": { - "version": "7946.0.14", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", - "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==" + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "license": "MIT" }, - "node_modules/@types/geojson-vt": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/@types/geojson-vt/-/geojson-vt-3.2.5.tgz", - "integrity": "sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==", + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", "dependencies": { - "@types/geojson": "*" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" } }, - "node_modules/@types/jquery": { - "version": "3.5.32", - "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.32.tgz", - "integrity": "sha512-b9Xbf4CkMqS02YH8zACqN1xzdxc3cO735Qe5AbSUFmyOiaWAbcpqh9Wna+Uk0vgACvoQHpWDg2rGdHkYPLmCiQ==", - "dev": true, + "node_modules/draco3d": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.7.tgz", + "integrity": "sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==", + "license": "Apache-2.0" + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", "dependencies": { - "@types/sizzle": "*" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/@types/js-cookie": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.7.tgz", - "integrity": "sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==", + "node_modules/earcut": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", + "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==", + "license": "ISC" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, "license": "MIT" }, - "node_modules/@types/lodash": { - "version": "4.17.9", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.9.tgz", - "integrity": "sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==", + "node_modules/electron-to-chromium": { + "version": "1.5.255", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.255.tgz", + "integrity": "sha512-Z9oIp4HrFF/cZkDPMpz2XSuVpc1THDpT4dlmATFlJUIBVCy9Vap5/rIXsASP1CscBacBqhabwh8vLctqBwEerQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true, "license": "MIT" }, - "node_modules/@types/mapbox__point-geometry": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.4.tgz", - "integrity": "sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==" + "node_modules/emoji-regex-xs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", + "license": "MIT" }, - "node_modules/@types/mapbox__vector-tile": { + "node_modules/enquire.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/enquire.js/-/enquire.js-2.1.6.tgz", + "integrity": "sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==", + "license": "MIT" + }, + "node_modules/error-ex": { "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.4.tgz", - "integrity": "sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==", - "dependencies": { - "@types/geojson": "*", - "@types/mapbox__point-geometry": "*", - "@types/pbf": "*" + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" } }, - "node_modules/@types/mapbox-gl": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@types/mapbox-gl/-/mapbox-gl-3.4.0.tgz", - "integrity": "sha512-tbn++Mm94H1kE7W6FF0oVC9rMXHVzDDNUbS7KfBMRF8NV/8csFi+67ytKcZJ4LsrpsJ+8MC6Os6ZinEDCsrunw==", + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", "dependencies": { - "@types/geojson": "*" + "stackframe": "^1.3.4" } }, - "node_modules/@types/node": { - "version": "18.19.54", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.54.tgz", - "integrity": "sha512-+BRgt0G5gYjTvdLac9sIeE0iZcJxi4Jc4PV5EUzqi+88jmQLr+fRZdv2tCTV7IHKSGxM6SaLoOXQWWUiLUItMw==", - "dev": true, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "license": "MIT", - "dependencies": { - "undici-types": "~5.26.4" + "engines": { + "node": ">= 0.4" } }, - "node_modules/@types/pbf": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.5.tgz", - "integrity": "sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==" + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "node_modules/@types/prop-types": { - "version": "15.7.13", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", - "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-get-iterator/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "license": "MIT" }, - "node_modules/@types/react": { - "version": "18.3.10", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.10.tgz", - "integrity": "sha512-02sAAlBnP39JgXwkAq3PeU9DVaaGpZyF3MGcC0MKgQVkZor5IiiDAipVaxQHtDJAmO4GIy/rVBy/LzVj76Cyqg==", + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "license": "MIT", "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/@types/react-dom": { - "version": "18.3.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", - "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, "license": "MIT", "dependencies": { - "@types/react": "*" + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/@types/react-slick": { - "version": "0.23.13", - "resolved": "https://registry.npmjs.org/@types/react-slick/-/react-slick-0.23.13.tgz", - "integrity": "sha512-bNZfDhe/L8t5OQzIyhrRhBr/61pfBcWaYJoq6UDqFtv5LMwfg4NsVDD2J8N01JqdAdxLjOt66OZEp6PX+dGs/A==", + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", "dev": true, + "hasInstallScript": true, "license": "MIT", - "dependencies": { - "@types/react": "*" + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" } }, - "node_modules/@types/react-transition-group": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz", - "integrity": "sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==", - "dependencies": { - "@types/react": "*" + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/@types/sizzle": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.9.tgz", - "integrity": "sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==", - "dev": true + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@types/supercluster": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.3.tgz", - "integrity": "sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==", - "dependencies": { - "@types/geojson": "*" + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" } }, - "node_modules/@types/warning": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", - "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==" + "node_modules/exifreader": { + "version": "4.32.0", + "resolved": "https://registry.npmjs.org/exifreader/-/exifreader-4.32.0.tgz", + "integrity": "sha512-sj1PzjpaPwSE/2MeUqoAYcfc2u7AZOGSby0FzmAkB4jjeCXgDryxzVgMwV+tJKGIkGdWkkWiUWoLSJoPHJ6V5Q==", + "hasInstallScript": true, + "license": "MPL-2.0", + "optionalDependencies": { + "@xmldom/xmldom": "^0.9.4" + } }, - "node_modules/@vitejs/plugin-react": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.2.tgz", - "integrity": "sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==", - "dev": true, + "node_modules/expect": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-30.2.0.tgz", + "integrity": "sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==", "license": "MIT", "dependencies": { - "@babel/core": "^7.25.2", - "@babel/plugin-transform-react-jsx-self": "^7.24.7", - "@babel/plugin-transform-react-jsx-source": "^7.24.7", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.2" + "@jest/expect-utils": "30.2.0", + "@jest/get-type": "30.1.0", + "jest-matcher-utils": "30.2.0", + "jest-message-util": "30.2.0", + "jest-mock": "30.2.0", + "jest-util": "30.2.0" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@xobotyi/scrollbar-width": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/@xobotyi/scrollbar-width/-/scrollbar-width-1.9.5.tgz", - "integrity": "sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "license": "MIT" }, - "node_modules/abs-svg-path": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/abs-svg-path/-/abs-svg-path-0.1.1.tgz", - "integrity": "sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==" - }, - "node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "engines": { + "node": ">=8.6.0" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "color-convert": "^1.9.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=4" + "node": ">= 6" } }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true, - "license": "MIT" + "node_modules/fast-shallow-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-shallow-equal/-/fast-shallow-equal-1.0.0.tgz", + "integrity": "sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==" }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "license": "ISC", + "node_modules/fast-xml-parser": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz", + "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "license": "MIT", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "strnum": "^1.1.1" }, - "engines": { - "node": ">= 8" + "bin": { + "fxparser": "src/cli/cli.js" } }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true, + "node_modules/fastest-stable-stringify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz", + "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==", "license": "MIT" }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fflate": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz", + "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==", "license": "MIT" }, - "node_modules/autoprefixer": { - "version": "10.4.20", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", - "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "dev": true, + "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/ai" + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" } ], "license": "MIT", - "dependencies": { - "browserslist": "^4.23.3", - "caniuse-lite": "^1.0.30001646", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=4.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", - "dev": true, + "node_modules/fontkit": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz", + "integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==", "license": "MIT", "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "@swc/helpers": "^0.5.12", + "brotli": "^1.3.2", + "clone": "^2.1.2", + "dfa": "^1.2.0", + "fast-deep-equal": "^3.1.3", + "restructure": "^3.0.0", + "tiny-inflate": "^1.0.3", + "unicode-properties": "^1.4.0", + "unicode-trie": "^2.0.0" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/base64-arraybuffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", - "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, "engines": { - "node": ">= 0.6.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/bidi-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", - "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "dev": true, + "license": "MIT", "dependencies": { - "require-from-string": "^2.0.2" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/bootstrap": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz", - "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/twbs" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/bootstrap" - } + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" ], - "peerDependencies": { - "@popperjs/core": "^2.11.8" + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/brotli": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", - "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==", + "node_modules/geojson-equality": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/geojson-equality/-/geojson-equality-0.1.6.tgz", + "integrity": "sha512-TqG8YbqizP3EfwP5Uw4aLu6pKkg6JQK9uq/XZ1lXQntvTHD1BBKJWhNpJ2M0ax6TuWMP3oyx6Oq7FCIfznrgpQ==", + "license": "MIT", "dependencies": { - "base64-js": "^1.1.2" + "deep-equal": "^1.0.0" } }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "node_modules/geojson-rbush": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.2.0.tgz", + "integrity": "sha512-oVltQTXolxvsz1sZnutlSuLDEcQAKYC/uXt9zDzJJ6bu0W+baTI8LZBaTup5afzibEH4N3jlq2p+a152wlBJ7w==", + "license": "MIT", "dependencies": { - "pako": "~1.0.5" + "@turf/bbox": "*", + "@turf/helpers": "6.x", + "@turf/meta": "6.x", + "@types/geojson": "7946.0.8", + "rbush": "^3.0.1" } }, - "node_modules/browserslist": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", - "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/geojson-rbush/node_modules/@turf/helpers": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001663", - "electron-to-chromium": "^1.5.28", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, + "node_modules/geojson-rbush/node_modules/@turf/meta": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" + "@turf/helpers": "^6.5.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/turf" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, + "node_modules/geojson-rbush/node_modules/@types/geojson": { + "version": "7946.0.8", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.8.tgz", + "integrity": "sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA==", + "license": "MIT" + }, + "node_modules/geojson-rbush/node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==", + "license": "ISC" + }, + "node_modules/geojson-rbush/node_modules/rbush": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz", + "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==", "license": "MIT", - "engines": { - "node": ">= 6" + "dependencies": { + "quickselect": "^2.0.0" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001664", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001664.tgz", - "integrity": "sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" + "node_modules/geojson-vt": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-4.0.2.tgz", + "integrity": "sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==", + "license": "ISC" }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cheap-ruler": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cheap-ruler/-/cheap-ruler-4.0.0.tgz", - "integrity": "sha512-0BJa8f4t141BYKQyn9NSQt1PguFQXMXwZiA5shfoaBYHAb2fFk2RAX+tiWMoQU+Agtzt3mdt0JtuyshAXqZ+Vw==" - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" }, "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gl-matrix": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.4.tgz", + "integrity": "sha512-latSnyDNt/8zYUB6VIJ6PCh2jBjJX6gnDsoCZ7LyW7GkqrD51EWwa9qCoGixj8YqBtETQK/xY7OmpTF8xz1DdQ==", + "license": "MIT" + }, + "node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "dev": true, "license": "ISC", "dependencies": { - "is-glob": "^4.0.1" + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, - "engines": { - "node": ">= 6" + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/classnames": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", - "license": "MIT" - }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">=0.8" + "node": ">=10.13.0" } }, - "node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", - "dev": true, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, "engines": { "node": ">=6" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "license": "MIT", - "dependencies": { - "color-name": "1.1.3" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "node_modules/grid-index": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", + "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==", + "license": "ISC" + }, + "node_modules/h3-js": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/h3-js/-/h3-js-4.3.0.tgz", + "integrity": "sha512-zgvyHZz5bEKeuyYGh0bF9/kYSxJ2SqroopkXHqKnD3lfjaZawcxulcI9nWbNC54gakl/2eObRLHWueTf1iLSaA==", + "license": "Apache-2.0", + "engines": { + "node": ">=4", + "npm": ">=3", + "yarn": ">=1.3.0" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true, - "license": "MIT" - }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "license": "MIT", "dependencies": { - "toggle-selection": "^1.0.6" + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "license": "MIT", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", - "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" - }, - "node_modules/css-in-js-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", - "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "license": "MIT", "dependencies": { - "hyphenate-style-name": "^1.0.3" + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/css-line-break": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", - "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", "dependencies": { - "utrie": "^1.0.2" + "react-is": "^16.7.0" } }, - "node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/hsl-to-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-to-hex/-/hsl-to-hex-1.0.0.tgz", + "integrity": "sha512-K6GVpucS5wFf44X0h2bLVRDsycgJmf9FF2elg+CrqD8GcFU8c6vYhgXn8NjUkFCwj+xDFb70qgLbTUm6sxwPmA==", "license": "MIT", "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "hsl-to-rgb-for-reals": "^1.1.0" + } + }, + "node_modules/hsl-to-rgb-for-reals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/hsl-to-rgb-for-reals/-/hsl-to-rgb-for-reals-1.1.1.tgz", + "integrity": "sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==", + "license": "ISC" + }, + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "license": "MIT", + "dependencies": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" }, "engines": { "node": ">=8.0.0" } }, - "node_modules/csscolorparser": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz", - "integrity": "sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==" + "node_modules/hyphen": { + "version": "1.10.6", + "resolved": "https://registry.npmjs.org/hyphen/-/hyphen-1.10.6.tgz", + "integrity": "sha512-fXHXcGFTXOvZTSkPJuGOQf5Lv5T/R2itiiCVPg9LxAje5D00O0pP83yJShFq5V89Ly//Gt6acj7z8pbBr34stw==", + "license": "ISC" + }, + "node_modules/hyphenate-style-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz", + "integrity": "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==", + "license": "BSD-3-Clause" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, + "node_modules/image-size": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", + "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", "license": "MIT", "bin": { - "cssesc": "bin/cssesc" + "image-size": "bin/image-size.js" }, "engines": { - "node": ">=4" + "node": ">=6.9.0" } }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", "license": "MIT" }, - "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/immutable": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz", + "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==", + "license": "MIT" }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "license": "MIT", "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/dfa": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", - "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==" - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true, - "license": "MIT" - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" + "node": ">=8" } }, - "node_modules/earcut": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-3.0.0.tgz", - "integrity": "sha512-41Fs7Q/PLq1SDbqjsgcY7GA42T0jvaCNGXgGtsNdvg+Yv8eIu06bxv4/PoREkZ9nMDNwnUSG9OFB9+yv8eKhDg==" - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true, - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.5.29", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.29.tgz", - "integrity": "sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==", - "dev": true, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "license": "ISC" }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/enquire.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/enquire.js/-/enquire.js-2.1.6.tgz", - "integrity": "sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==", - "license": "MIT" + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "node_modules/inline-style-prefixer": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-7.0.1.tgz", + "integrity": "sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==", "license": "MIT", "dependencies": { - "stackframe": "^1.3.4" + "css-in-js-utils": "^3.1.0" } }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.4" + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "dev": true, - "hasInstallScript": true, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=8" } }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "hasown": "^2.0.2" }, "engines": { - "node": ">=8.6.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fast-shallow-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-shallow-equal/-/fast-shallow-equal-1.0.0.tgz", - "integrity": "sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==" - }, - "node_modules/fastest-stable-stringify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz", - "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==", + "node_modules/is-error": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", + "integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==", "license": "MIT" }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "devOptional": true, + "license": "MIT", "dependencies": { - "to-regex-range": "^5.0.1" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/follow-redirects": { - "version": "1.15.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", - "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "license": "MIT", "engines": { - "node": ">=4.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fontkit": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz", - "integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==", - "dependencies": { - "@swc/helpers": "^0.5.12", - "brotli": "^1.3.2", - "clone": "^2.1.2", - "dfa": "^1.2.0", - "fast-deep-equal": "^3.1.3", - "restructure": "^3.0.0", - "tiny-inflate": "^1.0.3", - "unicode-properties": "^1.4.0", - "unicode-trie": "^2.0.0" + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" } }, - "node_modules/foreground-child": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", - "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", - "dev": true, - "license": "ISC", + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "isobject": "^3.0.1" }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, "engines": { - "node": ">=6.9.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/geojson-vt": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-4.0.2.tgz", - "integrity": "sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==" - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -2850,329 +10345,340 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gl-matrix": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz", - "integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==" + "node_modules/is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "license": "MIT" }, - "node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "dev": true, - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.3" + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "dependencies": { - "get-intrinsic": "^1.1.3" + "@isaacs/cliui": "^8.0.2" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/grid-index": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grid-index/-/grid-index-1.1.0.tgz", - "integrity": "sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==" + "node_modules/jay-peg": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jay-peg/-/jay-peg-1.1.1.tgz", + "integrity": "sha512-D62KEuBxz/ip2gQKOEhk/mx14o7eiFRaU+VNNSP4MOiIkwb/D6B3G1Mfas7C/Fit8EsSV2/IWjZElx/Gs6A4ww==", + "license": "MIT", + "dependencies": { + "restructure": "^3.0.0" + } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, + "node_modules/jest-diff": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.2.0.tgz", + "integrity": "sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==", "license": "MIT", + "dependencies": { + "@jest/diff-sequences": "30.0.1", + "@jest/get-type": "30.1.0", + "chalk": "^4.1.2", + "pretty-format": "30.2.0" + }, "engines": { - "node": ">=4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz", + "integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==", "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/jest-matcher-utils": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.2.0.tgz", + "integrity": "sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==", "license": "MIT", "dependencies": { - "function-bind": "^1.1.2" + "@jest/get-type": "30.1.0", + "chalk": "^4.1.2", + "jest-diff": "30.2.0", + "pretty-format": "30.2.0" }, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hsl-to-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-to-hex/-/hsl-to-hex-1.0.0.tgz", - "integrity": "sha512-K6GVpucS5wFf44X0h2bLVRDsycgJmf9FF2elg+CrqD8GcFU8c6vYhgXn8NjUkFCwj+xDFb70qgLbTUm6sxwPmA==", - "dependencies": { - "hsl-to-rgb-for-reals": "^1.1.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/hsl-to-rgb-for-reals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/hsl-to-rgb-for-reals/-/hsl-to-rgb-for-reals-1.1.1.tgz", - "integrity": "sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==" - }, - "node_modules/html2canvas": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", - "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { - "css-line-break": "^2.1.0", - "text-segmentation": "^1.0.3" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/hyphen": { - "version": "1.10.6", - "resolved": "https://registry.npmjs.org/hyphen/-/hyphen-1.10.6.tgz", - "integrity": "sha512-fXHXcGFTXOvZTSkPJuGOQf5Lv5T/R2itiiCVPg9LxAje5D00O0pP83yJShFq5V89Ly//Gt6acj7z8pbBr34stw==" - }, - "node_modules/hyphenate-style-name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz", - "integrity": "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==", - "license": "BSD-3-Clause" - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/inline-style-prefixer": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-7.0.1.tgz", - "integrity": "sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==", + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz", + "integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==", "license": "MIT", "dependencies": { - "css-in-js-utils": "^3.1.0" + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, + "node_modules/jest-message-util": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.2.0.tgz", + "integrity": "sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==", "license": "MIT", "dependencies": { - "binary-extensions": "^2.0.0" + "@babel/code-frame": "^7.27.1", + "@jest/types": "30.2.0", + "@types/stack-utils": "^2.0.3", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "micromatch": "^4.0.8", + "pretty-format": "30.2.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.6" }, "engines": { - "node": ">=8" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "dev": true, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { - "hasown": "^2.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.2.0.tgz", + "integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==", "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, "engines": { - "node": ">=0.10.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/jest-mock": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.2.0.tgz", + "integrity": "sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==", "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" + "@jest/types": "30.2.0", + "@types/node": "*", + "jest-util": "30.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, + "node_modules/jest-regex-util": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.0.1.tgz", + "integrity": "sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==", "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/is-url": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "dev": true, - "license": "BlueOak-1.0.0", + "node_modules/jest-util": { + "version": "30.2.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.2.0.tgz", + "integrity": "sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==", + "license": "MIT", "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "@jest/types": "30.2.0", + "@types/node": "*", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "graceful-fs": "^4.2.11", + "picomatch": "^4.0.2" }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jay-peg": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/jay-peg/-/jay-peg-1.1.1.tgz", - "integrity": "sha512-D62KEuBxz/ip2gQKOEhk/mx14o7eiFRaU+VNNSP4MOiIkwb/D6B3G1Mfas7C/Fit8EsSV2/IWjZElx/Gs6A4ww==", + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { - "restructure": "^3.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jiti": { - "version": "1.21.6", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", - "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", "dev": true, "license": "MIT", "bin": { @@ -3182,7 +10688,8 @@ "node_modules/jquery": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", - "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==", + "license": "MIT" }, "node_modules/js-cookie": { "version": "2.2.1", @@ -3197,18 +10704,29 @@ "license": "MIT" }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-stringify-pretty-compact": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz", + "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==", + "license": "MIT" + }, "node_modules/json2mq": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", @@ -3231,15 +10749,43 @@ "node": ">=6" } }, + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "license": "(MIT OR GPL-3.0-or-later)", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, "node_modules/kdbush": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", - "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==" + "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==", + "license": "ISC" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ktx-parse": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.7.1.tgz", + "integrity": "sha512-FeA3g56ksdFNwjXJJsc1CCc7co+AJYDp6ipIp878zZ2bU8kWROatLYf39TQEd4/XRSUvBXovQ8gaVKWPXsCLEQ==", + "license": "MIT" }, "node_modules/laravel-vite-plugin": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.5.tgz", - "integrity": "sha512-Zv+to82YLBknDCZ6g3iwOv9wZ7f6EWStb9pjSm7MGe9Mfoy5ynT2ssZbGsMr1udU6rDg9HOoYEVGw5Qf+p9zbw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.3.0.tgz", + "integrity": "sha512-P5qyG56YbYxM8OuYmK2OkhcKe0AksNVJUjq9LUZ5tOekU9fBn9LujYyctI4t9XoLjuMvHJXXpCoPntY1oKltuA==", "dev": true, "license": "MIT", "dependencies": { @@ -3250,27 +10796,63 @@ "clean-orphaned-assets": "bin/clean.js" }, "engines": { - "node": "^18.0.0 || >=20.0.0" + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" }, "peerDependencies": { - "vite": "^5.0.0" + "vite": "^5.0.0 || ^6.0.0" + } + }, + "node_modules/laz-perf": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/laz-perf/-/laz-perf-0.0.6.tgz", + "integrity": "sha512-ZBqC+BBlofznDIY3SfjXDBVdIhYfz7bq8HAHztlw4XOnu++nHiWtCGPgzpdeAhPkByc68DaKNy3E3rY4XrdRtQ==", + "license": "Apache-2.0" + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "license": "MIT", + "dependencies": { + "immediate": "~3.0.5" } }, "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/linebreak": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz", + "integrity": "sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==", + "license": "MIT", + "dependencies": { + "base64-js": "0.0.8", + "unicode-trie": "^2.0.0" + } + }, + "node_modules/linebreak/node_modules/base64-js": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz", + "integrity": "sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" } }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, "license": "MIT" }, "node_modules/lodash": { @@ -3289,9 +10871,19 @@ "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", "dev": true, "license": "MIT" }, + "node_modules/long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.6" + } + }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -3323,41 +10915,223 @@ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" } }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/lz4js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/lz4js/-/lz4js-0.2.0.tgz", + "integrity": "sha512-gY2Ia9Lm7Ep8qMiuGRhvUq0Q7qUereeldZPP1PMEJxPtEWHJLqw9pgX68oHajBH0nzJK4MaZEA/YNV3jT8u8Bg==", + "license": "ISC", + "optional": true + }, + "node_modules/lzo-wasm": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/lzo-wasm/-/lzo-wasm-0.0.4.tgz", + "integrity": "sha512-VKlnoJRFrB8SdJhlVKvW5vI1gGwcZ+mvChEXcSX6r2xDNc/Q2FD9esfBmGCuPZdrJ1feO+YcVFd2PTk0c137Gw==", + "license": "BSD-2-Clause" + }, "node_modules/mapbox-gl": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-3.7.0.tgz", - "integrity": "sha512-dCbVyH1uGobwv6f4QKRv2Z2wuVT/RmspsudK3sTxGRFxZi6Pd2P9axdbVyZpmGddCAREy44pHhvzvO0qgpdKAg==", + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/mapbox-gl/-/mapbox-gl-3.16.0.tgz", + "integrity": "sha512-rluV1Zp/0oHf1Y9BV+nePRNnKyTdljko3E19CzO5rBqtQaNUYS0ePCMPRtxOuWRwSdKp3f9NWJkOCjemM8nmjw==", + "license": "SEE LICENSE IN LICENSE.txt", + "workspaces": [ + "src/style-spec", + "test/build/typings" + ], "dependencies": { "@mapbox/jsonlint-lines-primitives": "^2.0.2", "@mapbox/mapbox-gl-supported": "^3.0.0", - "@mapbox/point-geometry": "^0.1.0", + "@mapbox/point-geometry": "^1.1.0", "@mapbox/tiny-sdf": "^2.0.6", "@mapbox/unitbezier": "^0.0.1", - "@mapbox/vector-tile": "^1.3.1", + "@mapbox/vector-tile": "^2.0.4", "@mapbox/whoots-js": "^3.1.0", - "@types/geojson": "^7946.0.14", + "@types/geojson": "^7946.0.16", "@types/geojson-vt": "^3.2.5", "@types/mapbox__point-geometry": "^0.1.4", - "@types/mapbox__vector-tile": "^1.3.4", "@types/pbf": "^3.0.5", "@types/supercluster": "^7.1.3", "cheap-ruler": "^4.0.0", "csscolorparser": "~1.0.3", - "earcut": "^3.0.0", + "earcut": "^3.0.1", "geojson-vt": "^4.0.2", - "gl-matrix": "^3.4.3", + "gl-matrix": "^3.4.4", "grid-index": "^1.1.0", "kdbush": "^4.0.2", + "martinez-polygon-clipping": "^0.7.4", "murmurhash-js": "^1.0.0", - "pbf": "^3.2.1", + "pbf": "^4.0.1", "potpack": "^2.0.0", "quickselect": "^3.0.0", "serialize-to-js": "^3.1.2", "supercluster": "^8.0.1", - "tinyqueue": "^3.0.0", + "tinyqueue": "^3.0.0" + } + }, + "node_modules/mapbox-gl/node_modules/@mapbox/point-geometry": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-1.1.0.tgz", + "integrity": "sha512-YGcBz1cg4ATXDCM/71L9xveh4dynfGmcLDqufR+nQQy3fKwsAZsWd/x4621/6uJaeB9mwOHE6hPeDgXz9uViUQ==", + "license": "ISC" + }, + "node_modules/mapbox-gl/node_modules/@mapbox/vector-tile": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-2.0.4.tgz", + "integrity": "sha512-AkOLcbgGTdXScosBWwmmD7cDlvOjkg/DetGva26pIRiZPdeJYjYKarIlb4uxVzi6bwHO6EWH82eZ5Nuv4T5DUg==", + "license": "BSD-3-Clause", + "dependencies": { + "@mapbox/point-geometry": "~1.1.0", + "@types/geojson": "^7946.0.16", + "pbf": "^4.0.1" + } + }, + "node_modules/mapbox-gl/node_modules/earcut": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-3.0.2.tgz", + "integrity": "sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==", + "license": "ISC" + }, + "node_modules/mapbox-gl/node_modules/pbf": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pbf/-/pbf-4.0.1.tgz", + "integrity": "sha512-SuLdBvS42z33m8ejRbInMapQe8n0D3vN/Xd5fmWM3tufNgRQFBpaW2YVJxQZV4iPNqb0vEFvssMEo5w9c6BTIA==", + "license": "BSD-3-Clause", + "dependencies": { + "resolve-protobuf-schema": "^2.1.0" + }, + "bin": { + "pbf": "bin/pbf" + } + }, + "node_modules/maplibre-gl": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz", + "integrity": "sha512-csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/mapbox-gl-supported": "^2.0.1", + "@mapbox/point-geometry": "^0.1.0", + "@mapbox/tiny-sdf": "^2.0.5", + "@mapbox/unitbezier": "^0.0.1", + "@mapbox/vector-tile": "^1.3.1", + "@mapbox/whoots-js": "^3.1.0", + "@types/geojson": "^7946.0.10", + "@types/mapbox__point-geometry": "^0.1.2", + "@types/mapbox__vector-tile": "^1.3.0", + "@types/pbf": "^3.0.2", + "csscolorparser": "~1.0.3", + "earcut": "^2.2.4", + "geojson-vt": "^3.2.1", + "gl-matrix": "^3.4.3", + "global-prefix": "^3.0.0", + "murmurhash-js": "^1.0.0", + "pbf": "^3.2.1", + "potpack": "^1.0.2", + "quickselect": "^2.0.0", + "supercluster": "^7.1.5", + "tinyqueue": "^2.0.3", "vt-pbf": "^3.1.3" } }, + "node_modules/maplibre-gl/node_modules/@mapbox/mapbox-gl-supported": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz", + "integrity": "sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==", + "license": "BSD-3-Clause" + }, + "node_modules/maplibre-gl/node_modules/geojson-vt": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz", + "integrity": "sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==", + "license": "ISC" + }, + "node_modules/maplibre-gl/node_modules/kdbush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz", + "integrity": "sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==", + "license": "ISC" + }, + "node_modules/maplibre-gl/node_modules/potpack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz", + "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==", + "license": "ISC" + }, + "node_modules/maplibre-gl/node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==", + "license": "ISC" + }, + "node_modules/maplibre-gl/node_modules/supercluster": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz", + "integrity": "sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==", + "license": "ISC", + "dependencies": { + "kdbush": "^3.0.0" + } + }, + "node_modules/maplibre-gl/node_modules/tinyqueue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz", + "integrity": "sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==", + "license": "ISC" + }, + "node_modules/martinez-polygon-clipping": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/martinez-polygon-clipping/-/martinez-polygon-clipping-0.7.4.tgz", + "integrity": "sha512-jBEwrKtA0jTagUZj2bnmb4Yg2s4KnJGRePStgI7bAVjtcipKiF39R4LZ2V/UT61jMYWrTcBhPazexeqd6JAVtw==", + "license": "MIT", + "dependencies": { + "robust-predicates": "^2.0.4", + "splaytree": "^0.1.4", + "tinyqueue": "^1.2.0" + } + }, + "node_modules/martinez-polygon-clipping/node_modules/robust-predicates": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-2.0.4.tgz", + "integrity": "sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==", + "license": "Unlicense" + }, + "node_modules/martinez-polygon-clipping/node_modules/tinyqueue": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-1.2.3.tgz", + "integrity": "sha512-Qz9RgWuO9l8lT+Y9xvbzhPT2efIUIFd69N7eF7tJ9lnQl0iLj1M7peK7IoUGZL9DJHw9XftqLreccfxcQgYLxA==", + "license": "ISC" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -3367,7 +11141,8 @@ "node_modules/media-engine": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/media-engine/-/media-engine-1.0.3.tgz", - "integrity": "sha512-aa5tG6sDoK+k70B9iEX1NeyfT8ObCKhNDs6lJVpwF6r8vhUfuKMslIcirq6HIUYuuUYLefcEQOn9bSBOvawtwg==" + "integrity": "sha512-aa5tG6sDoK+k70B9iEX1NeyfT8ObCKhNDs6lJVpwF6r8vhUfuKMslIcirq6HIUYuuUYLefcEQOn9bSBOvawtwg==", + "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", @@ -3379,11 +11154,16 @@ "node": ">= 8" } }, + "node_modules/mgrs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mgrs/-/mgrs-1.0.0.tgz", + "integrity": "sha512-awNbTOqCxK1DBGjalK3xqWIstBZgN6fxsMSiXLs9/spqWkF2pAhb2rrYCFSsr1/tT7PhcDGjZndG8SWYn0byYA==", + "license": "MIT" + }, "node_modules/micromatch": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, "license": "MIT", "dependencies": { "braces": "^3.0.3", @@ -3393,6 +11173,18 @@ "node": ">=8.6" } }, + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -3416,6 +11208,15 @@ "node": ">= 0.6" } }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/mini-svg-data-uri": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", @@ -3442,6 +11243,15 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", @@ -3452,10 +11262,17 @@ "node": ">=16 || 14 >=14.17" } }, + "node_modules/mjolnir.js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mjolnir.js/-/mjolnir.js-3.0.0.tgz", + "integrity": "sha512-siX3YCG7N2HnmN1xMH3cK4JkUZJhbkhRFJL+G5N1vH0mh1t5088rJknIoqDFWDIU6NPGvRRgLnYW3ZHjSMEBLA==", + "license": "MIT" + }, "node_modules/moment": { "version": "2.30.1", "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "license": "MIT", "engines": { "node": "*" } @@ -3464,13 +11281,13 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, "license": "MIT" }, "node_modules/murmurhash-js": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz", - "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==" + "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==", + "license": "MIT" }, "node_modules/mz": { "version": "2.7.0", @@ -3504,10 +11321,16 @@ "react-dom": "*" } }, + "node_modules/nano-css/node_modules/stylis": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz", + "integrity": "sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==", + "license": "MIT" + }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "dev": true, "funding": [ { @@ -3523,10 +11346,17 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "license": "MIT", + "optional": true + }, "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", "dev": true, "license": "MIT" }, @@ -3554,6 +11384,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/normalize-svg-path/-/normalize-svg-path-1.1.0.tgz", "integrity": "sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg==", + "license": "MIT", "dependencies": { "svg-arc-to-cubic-bezier": "^3.0.0" } @@ -3585,11 +11416,55 @@ } }, "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", - "dev": true, + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, "engines": { "node": ">= 0.4" }, @@ -3607,12 +11482,44 @@ "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/parse-svg-path": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/parse-svg-path/-/parse-svg-path-0.1.2.tgz", - "integrity": "sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==" + "integrity": "sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==", + "license": "MIT" }, "node_modules/path-key": { "version": "3.1.1", @@ -3628,7 +11535,6 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, "license": "MIT" }, "node_modules/path-scurry": { @@ -3655,10 +11561,20 @@ "dev": true, "license": "ISC" }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/pbf": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.3.0.tgz", "integrity": "sha512-XDF38WCH3z5OV/OVa8GKUNtLAyneuzbCisx7QUCF8Q6Nutx0WnJrQe5O+kOtBlLfRNUws98Y58Lblp+NJG5T4Q==", + "license": "BSD-3-Clause", "dependencies": { "ieee754": "^1.1.12", "resolve-protobuf-schema": "^2.1.0" @@ -3668,49 +11584,93 @@ } }, "node_modules/picocolors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", - "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", - "dev": true, + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "license": "ISC" }, "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "license": "MIT", "engines": { - "node": ">=8.6" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pmtiles": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/pmtiles/-/pmtiles-2.11.0.tgz", + "integrity": "sha512-dU9SzzaqmCGpdEuTnIba6bDHT6j09ZJFIXxwGpvkiEnce3ZnBB1VKt6+EOmJGueriweaZLAMTUmKVElU2CBe0g==", + "license": "BSD-3-Clause", + "dependencies": { + "fflate": "^0.8.0" + } + }, + "node_modules/pmtiles/node_modules/fflate": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", + "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", + "license": "MIT" + }, + "node_modules/point-in-polygon": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", + "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==", + "license": "MIT" + }, + "node_modules/polygon-clipping": { + "version": "0.15.7", + "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.7.tgz", + "integrity": "sha512-nhfdr83ECBg6xtqOAJab1tbksbBAOMUltN60bU+llHVOL0e5Onm1WpAXXWXVB39L8AJFssoIhEVuy/S90MmotA==", "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "robust-predicates": "^3.0.2", + "splaytree": "^3.1.0" } }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, + "node_modules/polygon-clipping/node_modules/splaytree": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.2.tgz", + "integrity": "sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A==", + "license": "MIT" + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "license": "MIT", "engines": { - "node": ">= 6" + "node": ">= 0.4" } }, "node_modules/postcss": { - "version": "8.4.47", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", - "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", "dev": true, "funding": [ { @@ -3728,8 +11688,8 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.1.0", + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, "engines": { @@ -3755,29 +11715,9 @@ } }, "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-load-config": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", - "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz", + "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==", "dev": true, "funding": [ { @@ -3791,36 +11731,13 @@ ], "license": "MIT", "dependencies": { - "lilconfig": "^3.0.0", - "yaml": "^2.3.4" + "camelcase-css": "^2.0.1" }, "engines": { - "node": ">= 14" + "node": "^12 || ^14 || >= 16" }, "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-load-config/node_modules/lilconfig": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", - "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" + "postcss": "^8.4.21" } }, "node_modules/postcss-nested": { @@ -3870,9 +11787,68 @@ "license": "MIT" }, "node_modules/potpack": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.0.0.tgz", - "integrity": "sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/potpack/-/potpack-2.1.0.tgz", + "integrity": "sha512-pcaShQc1Shq0y+E7GqJqvZj8DTthWV1KeHGdi0Z6IAin2Oi3JnLCOfwnCo84qc+HAp52wT9nK9H7FAJp5a44GQ==", + "license": "ISC" + }, + "node_modules/preact": { + "version": "10.27.2", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.27.2.tgz", + "integrity": "sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/proj4": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/proj4/-/proj4-2.6.2.tgz", + "integrity": "sha512-Pn0+HZtXb4JzuN8RR0VM7yyseegiYHbXkF+2FOdGpzRojcZ1BTjWxOh7qfp2vH0EyLu8pvcrhLxidwzgyUy/Gw==", + "license": "MIT", + "dependencies": { + "mgrs": "1.0.0", + "wkt-parser": "^1.2.4" + } }, "node_modules/prop-types": { "version": "15.8.1", @@ -3889,6 +11865,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "license": "MIT", "dependencies": { "react-is": "^16.3.2", "warning": "^4.0.0" @@ -3897,10 +11874,23 @@ "react": ">=0.14.0" } }, + "node_modules/prop-types-extra/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, "node_modules/protocol-buffers-schema": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", - "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==", + "license": "MIT" }, "node_modules/proxy-from-env": { "version": "1.1.0", @@ -3910,13 +11900,13 @@ "license": "MIT" }, "node_modules/qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", "dev": true, "license": "BSD-3-Clause", "dependencies": { - "side-channel": "^1.0.6" + "side-channel": "^1.1.0" }, "engines": { "node": ">=0.6" @@ -3929,6 +11919,7 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", "dependencies": { "inherits": "~2.0.3" } @@ -3957,7 +11948,23 @@ "node_modules/quickselect": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-3.0.0.tgz", - "integrity": "sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==" + "integrity": "sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==", + "license": "ISC" + }, + "node_modules/rbush": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-2.0.2.tgz", + "integrity": "sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==", + "license": "MIT", + "dependencies": { + "quickselect": "^1.0.1" + } + }, + "node_modules/rbush/node_modules/quickselect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-1.1.1.tgz", + "integrity": "sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==", + "license": "ISC" }, "node_modules/react": { "version": "18.3.1", @@ -3972,13 +11979,15 @@ } }, "node_modules/react-bootstrap": { - "version": "2.10.5", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.10.5.tgz", - "integrity": "sha512-XueAOEn64RRkZ0s6yzUTdpFtdUXs5L5491QU//8ZcODKJNDLt/r01tNyriZccjgRImH1REynUc9pqjiRMpDLWQ==", + "version": "2.10.10", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.10.10.tgz", + "integrity": "sha512-gMckKUqn8aK/vCnfwoBpBVFUGT9SVQxwsYrp9yDHt0arXMamxALerliKBxr1TPbntirK/HGrUAHYbAeQTa9GHQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.24.7", "@restart/hooks": "^0.4.9", - "@restart/ui": "^1.6.9", + "@restart/ui": "^1.9.4", + "@types/prop-types": "^15.7.12", "@types/react-transition-group": "^4.4.6", "classnames": "^2.3.2", "dom-helpers": "^5.2.1", @@ -4013,29 +12022,64 @@ "react": "^18.3.1" } }, + "node_modules/react-dom/node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, "node_modules/react-icons": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.3.0.tgz", - "integrity": "sha512-DnUk8aFbTyQPSkCfF8dbX6kQjXA9DktMeJqfjrg6cK9vwQVMxmcA3BfP4QoiztVmEHtwlTgLFsPuH2NskKT6eg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz", + "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", + "license": "MIT", "peerDependencies": { "react": "*" } }, "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.2.0.tgz", + "integrity": "sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==", "license": "MIT" }, "node_modules/react-lifecycles-compat": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", + "license": "MIT" + }, + "node_modules/react-map-gl": { + "version": "7.1.9", + "resolved": "https://registry.npmjs.org/react-map-gl/-/react-map-gl-7.1.9.tgz", + "integrity": "sha512-KsCc8Gyn05wVGlHZoopaiiCr0RCAQ6LDISo5sEy1/pV/d7RlozkF946tiX7IgyijJQMRujHol5QdwUPESjh73w==", + "license": "MIT", + "dependencies": { + "@maplibre/maplibre-gl-style-spec": "^19.2.1", + "@types/mapbox-gl": ">=1.0.0" + }, + "peerDependencies": { + "mapbox-gl": ">=1.13.0", + "maplibre-gl": ">=1.13.0 <5.0.0", + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + }, + "peerDependenciesMeta": { + "mapbox-gl": { + "optional": true + }, + "maplibre-gl": { + "optional": true + } + } }, "node_modules/react-refresh": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", - "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", "dev": true, "license": "MIT", "engines": { @@ -4063,6 +12107,7 @@ "version": "4.4.5", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", @@ -4084,9 +12129,9 @@ } }, "node_modules/react-use": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/react-use/-/react-use-17.5.1.tgz", - "integrity": "sha512-LG/uPEVRflLWMwi3j/sZqR00nF6JGqTTDblkXK2nzXsIvij06hXl1V/MZIlwj1OKIQUtlh1l9jK8gLsRyCQxMg==", + "version": "17.6.0", + "resolved": "https://registry.npmjs.org/react-use/-/react-use-17.6.0.tgz", + "integrity": "sha512-OmedEScUMKFfzn1Ir8dBxiLLSOzhKe/dPZwVxcujweSj45aNM7BEGPb9BEVIgVEqEXx6f3/TsXzwIktNgUR02g==", "license": "Unlicense", "dependencies": { "@types/js-cookie": "^2.2.6", @@ -4119,29 +12164,72 @@ "pify": "^2.3.0" } }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "license": "MIT", "dependencies": { - "picomatch": "^2.2.1" + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" }, "engines": { - "node": ">=8.10.0" + "node": ">=8" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "license": "MIT" + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -4153,27 +12241,39 @@ "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/resolve-protobuf-schema": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "license": "MIT", "dependencies": { "protocol-buffers-schema": "^3.3.1" } @@ -4181,12 +12281,13 @@ "node_modules/restructure": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz", - "integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==" + "integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==", + "license": "MIT" }, "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, "license": "MIT", "engines": { @@ -4194,14 +12295,20 @@ "node": ">=0.10.0" } }, + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "license": "Unlicense" + }, "node_modules/rollup": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.22.5.tgz", - "integrity": "sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==", + "version": "4.53.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.2.tgz", + "integrity": "sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==", "dev": true, "license": "MIT", "dependencies": { - "@types/estree": "1.0.6" + "@types/estree": "1.0.8" }, "bin": { "rollup": "dist/bin/rollup" @@ -4211,22 +12318,28 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.22.5", - "@rollup/rollup-android-arm64": "4.22.5", - "@rollup/rollup-darwin-arm64": "4.22.5", - "@rollup/rollup-darwin-x64": "4.22.5", - "@rollup/rollup-linux-arm-gnueabihf": "4.22.5", - "@rollup/rollup-linux-arm-musleabihf": "4.22.5", - "@rollup/rollup-linux-arm64-gnu": "4.22.5", - "@rollup/rollup-linux-arm64-musl": "4.22.5", - "@rollup/rollup-linux-powerpc64le-gnu": "4.22.5", - "@rollup/rollup-linux-riscv64-gnu": "4.22.5", - "@rollup/rollup-linux-s390x-gnu": "4.22.5", - "@rollup/rollup-linux-x64-gnu": "4.22.5", - "@rollup/rollup-linux-x64-musl": "4.22.5", - "@rollup/rollup-win32-arm64-msvc": "4.22.5", - "@rollup/rollup-win32-ia32-msvc": "4.22.5", - "@rollup/rollup-win32-x64-msvc": "4.22.5", + "@rollup/rollup-android-arm-eabi": "4.53.2", + "@rollup/rollup-android-arm64": "4.53.2", + "@rollup/rollup-darwin-arm64": "4.53.2", + "@rollup/rollup-darwin-x64": "4.53.2", + "@rollup/rollup-freebsd-arm64": "4.53.2", + "@rollup/rollup-freebsd-x64": "4.53.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.2", + "@rollup/rollup-linux-arm-musleabihf": "4.53.2", + "@rollup/rollup-linux-arm64-gnu": "4.53.2", + "@rollup/rollup-linux-arm64-musl": "4.53.2", + "@rollup/rollup-linux-loong64-gnu": "4.53.2", + "@rollup/rollup-linux-ppc64-gnu": "4.53.2", + "@rollup/rollup-linux-riscv64-gnu": "4.53.2", + "@rollup/rollup-linux-riscv64-musl": "4.53.2", + "@rollup/rollup-linux-s390x-gnu": "4.53.2", + "@rollup/rollup-linux-x64-gnu": "4.53.2", + "@rollup/rollup-linux-x64-musl": "4.53.2", + "@rollup/rollup-openharmony-arm64": "4.53.2", + "@rollup/rollup-win32-arm64-msvc": "4.53.2", + "@rollup/rollup-win32-ia32-msvc": "4.53.2", + "@rollup/rollup-win32-x64-gnu": "4.53.2", + "@rollup/rollup-win32-x64-msvc": "4.53.2", "fsevents": "~2.3.2" } }, @@ -4263,34 +12376,61 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" }, - "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sass": { + "version": "1.94.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.94.1.tgz", + "integrity": "sha512-/YVm5FRQaRlr3oNh2LLFYne1PdPlRZGyKnHh1sLleOqLcohTR4eUUvBjBIqkl1fEXd1MGOHgzJGJh+LgTtV4KQ==", + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" } }, + "node_modules/scheduler": { + "version": "0.25.0-rc-603e6108-20241029", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0-rc-603e6108-20241029.tgz", + "integrity": "sha512-pFwF6H1XrSdYYNLfOcGlM28/j8CGLu8IvdrxqhjWULe2bPcKiKW4CV+OWqR/9fT52mywx65l7ysNkjLKBda7eA==", + "license": "MIT" + }, "node_modules/screenfull": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz", @@ -4317,6 +12457,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-3.1.2.tgz", "integrity": "sha512-owllqNuDDEimQat7EPG0tH7JjO090xKNzUtYz6X+Sk2BXDnOCilDdNLwjWeFywG9xkJul1ULvtUQa9O4pUaY0w==", + "license": "MIT", "engines": { "node": ">=4.0.0" } @@ -4325,7 +12466,6 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", @@ -4339,15 +12479,51 @@ "node": ">= 0.4" } }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/set-harmonic-interval": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/set-harmonic-interval/-/set-harmonic-interval-1.0.1.tgz", "integrity": "sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==", "license": "Unlicense", "engines": { - "node": ">=6.9" + "node": ">=6.9" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -4372,16 +12548,69 @@ } }, "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "dev": true, + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -4404,13 +12633,35 @@ } }, "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz", + "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==", + "license": "MIT", "dependencies": { "is-arrayish": "^0.3.1" } }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz", + "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==", + "license": "MIT" + }, + "node_modules/skmeans": { + "version": "0.9.7", + "resolved": "https://registry.npmjs.org/skmeans/-/skmeans-0.9.7.tgz", + "integrity": "sha512-hNj1/oZ7ygsfmPZ7ZfN5MUBRoGg1gtpnImuJBgLO0ljQ67DtJuiQaiYdS4lUA6s0KCwnPhGivtC/WRwIZLkHyg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/slick-carousel": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/slick-carousel/-/slick-carousel-1.8.1.tgz", @@ -4420,10 +12671,51 @@ "jquery": ">=1.8.0" } }, - "node_modules/source-map": { + "node_modules/snappyjs": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "resolved": "https://registry.npmjs.org/snappyjs/-/snappyjs-0.6.1.tgz", + "integrity": "sha512-YIK6I2lsH072UE0aOFxxY1dPDCS43I5ktqHpeAsuLNYWkE5pGxRGWfDM4/vSUfNzXjC1Ivzt3qx31PCLmc9yqg==", + "license": "MIT" + }, + "node_modules/sort-asc": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz", + "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-desc": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.2.0.tgz", + "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-object": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-3.0.3.tgz", + "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==", + "license": "MIT", + "dependencies": { + "bytewise": "^1.1.0", + "get-value": "^2.0.2", + "is-extendable": "^0.1.1", + "sort-asc": "^0.2.0", + "sort-desc": "^0.2.0", + "union-value": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -4433,12 +12725,60 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, + "node_modules/splaytree": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-0.1.4.tgz", + "integrity": "sha512-D50hKrjZgBzqD3FT2Ek53f2dcDLAQT8SSGrzj3vidNH5ISRgceeGVJ2dQIthKOuayqFXfFjXheHNo4bbt9LhRQ==", + "license": "MIT" + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, "node_modules/stack-generator": { "version": "2.0.10", "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", @@ -4448,6 +12788,27 @@ "stackframe": "^1.3.4" } }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/stackframe": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", @@ -4484,12 +12845,26 @@ "stacktrace-gps": "^3.0.4" } }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", "dependencies": { - "safe-buffer": "~5.2.0" + "safe-buffer": "~5.1.0" } }, "node_modules/string-convert": { @@ -4532,16 +12907,6 @@ "node": ">=8" } }, - "node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/string-width-cjs/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -4563,9 +12928,9 @@ } }, "node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", "dev": true, "license": "MIT", "dependencies": { @@ -4592,20 +12957,47 @@ "node": ">=8" } }, - "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", "dev": true, "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, "engines": { "node": ">=8" } }, + "node_modules/strnum": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz", + "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "license": "MIT" + }, "node_modules/stylis": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.4.tgz", - "integrity": "sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", "license": "MIT" }, "node_modules/sucrase": { @@ -4635,94 +13027,230 @@ "version": "8.0.1", "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", + "license": "ISC", "dependencies": { "kdbush": "^4.0.2" } }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-arc-to-cubic-bezier": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz", + "integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==", + "license": "ISC" + }, + "node_modules/tabbable": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.3.0.tgz", + "integrity": "sha512-EIHvdY5bPLuWForiR/AN2Bxngzpuwn1is4asboytXtpTgsArc+WmSJKVLlhdh71u7jFcryDqB2A8lQvj78MkyQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/tailwindcss": { + "version": "3.4.18", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.18.tgz", + "integrity": "sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.7", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/tailwindcss/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/svg-arc-to-cubic-bezier": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz", - "integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==" - }, - "node_modules/tabbable": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", - "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", + "node_modules/tailwindcss/node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } }, - "node_modules/tailwindcss": { - "version": "3.4.13", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.13.tgz", - "integrity": "sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==", + "node_modules/tailwindcss/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "license": "MIT", "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.3.0", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.21.0", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" + "picomatch": "^2.2.1" }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/tailwindcss/node_modules/yaml": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", + "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", + "dev": true, + "license": "ISC", + "optional": true, + "peer": true, "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" + "yaml": "bin.mjs" }, "engines": { - "node": ">=14.0.0" + "node": ">= 14.6" } }, "node_modules/text-segmentation": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "license": "MIT", "dependencies": { "utrie": "^1.0.2" } }, + "node_modules/texture-compressor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/texture-compressor/-/texture-compressor-1.0.2.tgz", + "integrity": "sha512-dStVgoaQ11mA5htJ+RzZ51ZxIZqNOgWKAIvtjLrW1AliQQLCmrDqNzQZ8Jh91YealQ95DXt4MEduLzJmbs6lig==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.10", + "image-size": "^0.7.4" + }, + "bin": { + "texture-compressor": "bin/texture-compressor.js" + } + }, "node_modules/thenify": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", @@ -4758,28 +13286,19 @@ "node_modules/tiny-inflate": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", - "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "license": "MIT" }, "node_modules/tinyqueue": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tinyqueue/-/tinyqueue-3.0.0.tgz", - "integrity": "sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } + "integrity": "sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==", + "license": "ISC" }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, "license": "MIT", "dependencies": { "is-number": "^7.0.0" @@ -4794,6 +13313,44 @@ "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==", "license": "MIT" }, + "node_modules/topojson-client": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", + "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", + "license": "ISC", + "dependencies": { + "commander": "2" + }, + "bin": { + "topo2geo": "bin/topo2geo", + "topomerge": "bin/topomerge", + "topoquantize": "bin/topoquantize" + } + }, + "node_modules/topojson-client/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/topojson-server": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz", + "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==", + "license": "ISC", + "dependencies": { + "commander": "2" + }, + "bin": { + "geo2topo": "bin/geo2topo" + } + }, + "node_modules/topojson-server/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, "node_modules/ts-easing": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/ts-easing/-/ts-easing-0.2.0.tgz", @@ -4808,15 +13365,21 @@ "license": "Apache-2.0" }, "node_modules/tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "license": "0BSD" }, + "node_modules/turf-jsts": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/turf-jsts/-/turf-jsts-1.2.3.tgz", + "integrity": "sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA==", + "license": "(EDL-1.0 OR EPL-1.0)" + }, "node_modules/typescript": { - "version": "5.6.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", - "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -4827,10 +13390,26 @@ "node": ">=14.17" } }, + "node_modules/typewise": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz", + "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==", + "license": "MIT", + "dependencies": { + "typewise-core": "^1.2.0" + } + }, + "node_modules/typewise-core": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz", + "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==", + "license": "MIT" + }, "node_modules/uncontrollable": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.6.3", "@types/react": ">=16.9.11", @@ -4845,13 +13424,13 @@ "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true, "license": "MIT" }, "node_modules/unicode-properties": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz", "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==", + "license": "MIT", "dependencies": { "base64-js": "^1.3.0", "unicode-trie": "^2.0.0" @@ -4861,6 +13440,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", + "license": "MIT", "dependencies": { "pako": "^0.2.5", "tiny-inflate": "^1.0.0" @@ -4869,12 +13449,28 @@ "node_modules/unicode-trie/node_modules/pako": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==" + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "license": "MIT" + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } }, "node_modules/update-browserslist-db": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", - "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "dev": true, "funding": [ { @@ -4893,7 +13489,7 @@ "license": "MIT", "dependencies": { "escalade": "^3.2.0", - "picocolors": "^1.1.0" + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -4902,6 +13498,16 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -4912,14 +13518,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "license": "MIT", "dependencies": { "base64-arraybuffer": "^1.0.2" } }, "node_modules/vite": { - "version": "5.4.8", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz", - "integrity": "sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==", + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", "dev": true, "license": "MIT", "dependencies": { @@ -4980,6 +13587,7 @@ "version": "3.6.1", "resolved": "https://registry.npmjs.org/vite-compatible-readable-stream/-/vite-compatible-readable-stream-3.6.1.tgz", "integrity": "sha512-t20zYkrSf868+j/p31cRIGN28Phrjm3nRSLR2fyc2tiWi4cZGVdv68yNlwnIINTkMTmPoMiSlc0OadaO7DXZaQ==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -5000,10 +13608,24 @@ "picomatch": "^2.3.1" } }, + "node_modules/vite-plugin-full-reload/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/vt-pbf": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz", "integrity": "sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==", + "license": "MIT", "dependencies": { "@mapbox/point-geometry": "0.1.0", "@mapbox/vector-tile": "^1.3.1", @@ -5014,26 +13636,99 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } }, + "node_modules/web-vitals": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==", + "license": "Apache-2.0" + }, + "node_modules/wgsl_reflect": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/wgsl_reflect/-/wgsl_reflect-1.2.3.tgz", + "integrity": "sha512-BQWBIsOn411M+ffBxmA6QRLvAOVbuz3Uk4NusxnqC1H7aeQcVLhdA3k2k/EFFFtqVjhz3z7JOOZF1a9hj2tv4Q==", + "license": "MIT" + }, "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { - "node-which": "bin/node-which" + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/wkt-parser": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/wkt-parser/-/wkt-parser-1.5.2.tgz", + "integrity": "sha512-1ZUiV1FTwSiSrgWzV9KXJuOF2BVW91KY/mau04BhnmgOdroRQea7Q0s5TVqwGLm0D2tZwObd/tBYXW49sSxp3Q==", + "license": "MIT" + }, "node_modules/wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", @@ -5071,52 +13766,6 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -5153,9 +13802,9 @@ } }, "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, "license": "MIT", "engines": { @@ -5173,22 +13822,26 @@ "license": "ISC" }, "node_modules/yaml": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.1.tgz", - "integrity": "sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==", - "dev": true, + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "license": "ISC", - "bin": { - "yaml": "bin.mjs" - }, "engines": { - "node": ">= 14" + "node": ">= 6" } }, "node_modules/yoga-layout": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.1.0.tgz", - "integrity": "sha512-auzJ8lEovThZIpR8wLGWNo/JEj4VTO79q9/gOJ0dWb3shAYPFdX3t9VN0fC0v+jeQF77STUdCzebLwRMqzn5gQ==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.2.1.tgz", + "integrity": "sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==", + "license": "MIT" + }, + "node_modules/zstd-codec": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/zstd-codec/-/zstd-codec-0.1.5.tgz", + "integrity": "sha512-v3fyjpK8S/dpY/X5WxqTK3IoCnp/ZOLxn144GZVlNUjtwAchzrVo03h+oMATFhCIiJ5KTr4V3vDQQYz4RU684g==", + "license": "MIT", + "optional": true } } } diff --git a/package.json b/package.json index 2d5abded..d3e50715 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "@types/react": "^18.0.28", "@types/react-dom": "^18.0.10", "@types/react-slick": "^0.23.13", + "@types/turf": "^3.5.32", "@vitejs/plugin-react": "^4.2.0", "autoprefixer": "^10.4.12", "axios": "^1.6.4", @@ -27,23 +28,53 @@ "vite": "^5.0" }, "dependencies": { + "@deck.gl-community/layers": "^9.0.3", + "@deck.gl/core": "^9.0.38", + "@deck.gl/geo-layers": "^9.0.38", + "@deck.gl/layers": "^9.0.38", + "@deck.gl/mesh-layers": "^9.0.38", + "@deck.gl/react": "^9.0.38", + "@deck.gl/widgets": "^9.0.38", + "@emotion/react": "^11.10.5", + "@emotion/styled": "^11.10.5", + "@fontsource/roboto": "^4.5.8", "@fortawesome/fontawesome-svg-core": "^6.6.0", "@fortawesome/free-solid-svg-icons": "^6.6.0", "@fortawesome/react-fontawesome": "^0.2.2", + "@loaders.gl/core": "^4.3.3", + "@loaders.gl/las": "^4.3.3", + "@loaders.gl/loader-utils": "^4.3.3", + "@loaders.gl/pmtiles": "^4.3.3", + "@math.gl/core": "^3.6.2", + "@math.gl/proj4": "^3.6.2", + "@mui/icons-material": "^5.14.9", + "@mui/material": "^5.14.9", + "@placemarkio/check-geojson": "^0.1.14", "@react-pdf/renderer": "^4.1.5", + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "@turf/turf": "^6.5.0", "@types/mapbox-gl": "^3.4.0", "bootstrap": "^5.3.3", "classnames": "^2.5.1", + "exifreader": "^4.16.0", "html2canvas": "^1.4.1", "jquery": "^3.7.1", "lodash": "^4.17.21", "lucide-react": "^0.427.0", - "mapbox-gl": "^3.7.0", + "mapbox-gl": "^3.9.4", + "maplibre-gl": "^2.4.0", "moment": "^2.30.1", + "pmtiles": "^2.7.1", "react-bootstrap": "^2.10.5", "react-icons": "^5.3.0", + "react-map-gl": "^7.1.9", "react-slick": "^0.30.3", "react-use": "^17.5.1", - "slick-carousel": "^1.8.1" + "sass": "^1.87.0", + "slick-carousel": "^1.8.1", + "string-convert": "^0.2.1", + "web-vitals": "^2.1.4" } } diff --git a/public/.htaccess b/public/.htaccess old mode 100644 new mode 100755 diff --git a/public/SHAPES.json b/public/SHAPES.json old mode 100644 new mode 100755 diff --git a/public/SURREY.json b/public/SURREY.json old mode 100644 new mode 100755 diff --git a/public/SURREYPoint.geojson b/public/SURREYPoint.geojson deleted file mode 100644 index 27bb889b..00000000 --- a/public/SURREYPoint.geojson +++ /dev/null @@ -1,24349 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "SURREYPoint", -"bbox": [ -0.8454109, 51.0742888, 0.0552924, 51.4816850 ], -"features": [ -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08450107" }, "bbox": [ -0.4555352, 51.1947396, -0.4555352, 51.1947396 ], "geometry": { "type": "Point", "coordinates": [ -0.4555352, 51.1947396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15471346" }, "bbox": [ -0.3530799, 51.2147531, -0.3530799, 51.2147531 ], "geometry": { "type": "Point", "coordinates": [ -0.3530799, 51.2147531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15379378" }, "bbox": [ -0.3452083, 51.1273834, -0.3452083, 51.1273834 ], "geometry": { "type": "Point", "coordinates": [ -0.3452083, 51.1273834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24469150" }, "bbox": [ -0.2134629, 51.2041203, -0.2134629, 51.2041203 ], "geometry": { "type": "Point", "coordinates": [ -0.2134629, 51.2041203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09356352" }, "bbox": [ -0.4353287, 51.1084418, -0.4353287, 51.1084418 ], "geometry": { "type": "Point", "coordinates": [ -0.4353287, 51.1084418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18415909" }, "bbox": [ -0.3055832, 51.1568363, -0.3055832, 51.1568363 ], "geometry": { "type": "Point", "coordinates": [ -0.3055832, 51.1568363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07417608" }, "bbox": [ -0.4600666, 51.1587387, -0.4600666, 51.1587387 ], "geometry": { "type": "Point", "coordinates": [ -0.4600666, 51.1587387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09435208" }, "bbox": [ -0.4345985, 51.176515, -0.4345985, 51.176515 ], "geometry": { "type": "Point", "coordinates": [ -0.4345985, 51.176515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431151" }, "bbox": [ -0.5406547, 51.1816671, -0.5406547, 51.1816671 ], "geometry": { "type": "Point", "coordinates": [ -0.5406547, 51.1816671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23517836" }, "bbox": [ -0.2280147, 51.2480463, -0.2280147, 51.2480463 ], "geometry": { "type": "Point", "coordinates": [ -0.2280147, 51.2480463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01395898" }, "bbox": [ -0.5477838, 51.1501952, -0.5477838, 51.1501952 ], "geometry": { "type": "Point", "coordinates": [ -0.5477838, 51.1501952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24419816" }, "bbox": [ -0.2143261, 51.1559993, -0.2143261, 51.1559993 ], "geometry": { "type": "Point", "coordinates": [ -0.2143261, 51.1559993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18491322" }, "bbox": [ -0.3094417, 51.2299433, -0.3094417, 51.2299433 ], "geometry": { "type": "Point", "coordinates": [ -0.3094417, 51.2299433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22440555" }, "bbox": [ -0.2549526, 51.1871702, -0.2549526, 51.1871702 ], "geometry": { "type": "Point", "coordinates": [ -0.2549526, 51.1871702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09473437" }, "bbox": [ -0.4358214, 51.2152009, -0.4358214, 51.2152009 ], "geometry": { "type": "Point", "coordinates": [ -0.4358214, 51.2152009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20464078" }, "bbox": [ -0.2777886, 51.2075442, -0.2777886, 51.2075442 ], "geometry": { "type": "Point", "coordinates": [ -0.2777886, 51.2075442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26458205" }, "bbox": [ -0.1866739, 51.1905559, -0.1866739, 51.1905559 ], "geometry": { "type": "Point", "coordinates": [ -0.1866739, 51.1905559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397402" }, "bbox": [ -0.4469078, 51.1401705, -0.4469078, 51.1401705 ], "geometry": { "type": "Point", "coordinates": [ -0.4469078, 51.1401705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01454235" }, "bbox": [ -0.5498345, 51.1984335, -0.5498345, 51.1984335 ], "geometry": { "type": "Point", "coordinates": [ -0.5498345, 51.1984335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33499824" }, "bbox": [ -0.0829395, 51.2265006, -0.0829395, 51.2265006 ], "geometry": { "type": "Point", "coordinates": [ -0.0829395, 51.2265006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41444527" }, "bbox": [ 0.0223164, 51.1801154, 0.0223164, 51.1801154 ], "geometry": { "type": "Point", "coordinates": [ 0.0223164, 51.1801154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05400512" }, "bbox": [ -0.4995349, 51.1506505, -0.4995349, 51.1506505 ], "geometry": { "type": "Point", "coordinates": [ -0.4995349, 51.1506505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465026" }, "bbox": [ -0.4625634, 51.2055214, -0.4625634, 51.2055214 ], "geometry": { "type": "Point", "coordinates": [ -0.4625634, 51.2055214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11614063" }, "bbox": [ -0.4021175, 51.3427477, -0.4021175, 51.3427477 ], "geometry": { "type": "Point", "coordinates": [ -0.4021175, 51.3427477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09481924" }, "bbox": [ -0.4377335, 51.2229353, -0.4377335, 51.2229353 ], "geometry": { "type": "Point", "coordinates": [ -0.4377335, 51.2229353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10391993" }, "bbox": [ -0.4259508, 51.1481039, -0.4259508, 51.1481039 ], "geometry": { "type": "Point", "coordinates": [ -0.4259508, 51.1481039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18440318" }, "bbox": [ -0.3126409, 51.1847178, -0.3126409, 51.1847178 ], "geometry": { "type": "Point", "coordinates": [ -0.3126409, 51.1847178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523229" }, "bbox": [ -0.3916809, 51.2587711, -0.3916809, 51.2587711 ], "geometry": { "type": "Point", "coordinates": [ -0.3916809, 51.2587711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24446938" }, "bbox": [ -0.2171712, 51.1850409, -0.2171712, 51.1850409 ], "geometry": { "type": "Point", "coordinates": [ -0.2171712, 51.1850409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25575526" }, "bbox": [ -0.2006417, 51.3006152, -0.2006417, 51.3006152 ], "geometry": { "type": "Point", "coordinates": [ -0.2006417, 51.3006152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32429268" }, "bbox": [ -0.1001024, 51.1679218, -0.1001024, 51.1679218 ], "geometry": { "type": "Point", "coordinates": [ -0.1001024, 51.1679218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436315" }, "bbox": [ -0.218473, 51.1740599, -0.218473, 51.1740599 ], "geometry": { "type": "Point", "coordinates": [ -0.218473, 51.1740599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459024" }, "bbox": [ -0.2138885, 51.1928265, -0.2138885, 51.1928265 ], "geometry": { "type": "Point", "coordinates": [ -0.2138885, 51.1928265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03375556" }, "bbox": [ -0.521614, 51.1279856, -0.521614, 51.1279856 ], "geometry": { "type": "Point", "coordinates": [ -0.521614, 51.1279856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40541657" }, "bbox": [ 0.0080052, 51.2730515, 0.0080052, 51.2730515 ], "geometry": { "type": "Point", "coordinates": [ 0.0080052, 51.2730515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33449783" }, "bbox": [ -0.084372, 51.1869274, -0.084372, 51.1869274 ], "geometry": { "type": "Point", "coordinates": [ -0.084372, 51.1869274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16412766" }, "bbox": [ -0.3387501, 51.1623551, -0.3387501, 51.1623551 ], "geometry": { "type": "Point", "coordinates": [ -0.3387501, 51.1623551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20438515" }, "bbox": [ -0.2725631, 51.1748854, -0.2725631, 51.1748854 ], "geometry": { "type": "Point", "coordinates": [ -0.2725631, 51.1748854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42549109" }, "bbox": [ 0.0469353, 51.2674073, 0.0469353, 51.2674073 ], "geometry": { "type": "Point", "coordinates": [ 0.0469353, 51.2674073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33444721" }, "bbox": [ -0.0916897, 51.1815299, -0.0916897, 51.1815299 ], "geometry": { "type": "Point", "coordinates": [ -0.0916897, 51.1815299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20513123" }, "bbox": [ -0.2776406, 51.2476432, -0.2776406, 51.2476432 ], "geometry": { "type": "Point", "coordinates": [ -0.2776406, 51.2476432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07463835" }, "bbox": [ -0.4643237, 51.2063311, -0.4643237, 51.2063311 ], "geometry": { "type": "Point", "coordinates": [ -0.4643237, 51.2063311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09392601" }, "bbox": [ -0.4395543, 51.1399632, -0.4395543, 51.1399632 ], "geometry": { "type": "Point", "coordinates": [ -0.4395543, 51.1399632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34557763" }, "bbox": [ -0.0688238, 51.2838978, -0.0688238, 51.2838978 ], "geometry": { "type": "Point", "coordinates": [ -0.0688238, 51.2838978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21422264" }, "bbox": [ -0.2675615, 51.1700798, -0.2675615, 51.1700798 ], "geometry": { "type": "Point", "coordinates": [ -0.2675615, 51.1700798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35447188" }, "bbox": [ -0.0595434, 51.1870895, -0.0595434, 51.1870895 ], "geometry": { "type": "Point", "coordinates": [ -0.0595434, 51.1870895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412140" }, "bbox": [ 0.0315892, 51.1542362, 0.0315892, 51.1542362 ], "geometry": { "type": "Point", "coordinates": [ 0.0315892, 51.1542362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07476816" }, "bbox": [ -0.4596684, 51.2135031, -0.4596684, 51.2135031 ], "geometry": { "type": "Point", "coordinates": [ -0.4596684, 51.2135031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15380987" }, "bbox": [ -0.3559964, 51.1377002, -0.3559964, 51.1377002 ], "geometry": { "type": "Point", "coordinates": [ -0.3559964, 51.1377002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32445982" }, "bbox": [ -0.1041291, 51.1873371, -0.1041291, 51.1873371 ], "geometry": { "type": "Point", "coordinates": [ -0.1041291, 51.1873371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12514760" }, "bbox": [ -0.3900431, 51.2523673, -0.3900431, 51.2523673 ], "geometry": { "type": "Point", "coordinates": [ -0.3900431, 51.2523673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436052" }, "bbox": [ -0.2187469, 51.1773834, -0.2187469, 51.1773834 ], "geometry": { "type": "Point", "coordinates": [ -0.2187469, 51.1773834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30499501" }, "bbox": [ -0.1260524, 51.224641, -0.1260524, 51.224641 ], "geometry": { "type": "Point", "coordinates": [ -0.1260524, 51.224641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39459990" }, "bbox": [ 0.0019447, 51.195284, 0.0019447, 51.195284 ], "geometry": { "type": "Point", "coordinates": [ 0.0019447, 51.195284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42433536" }, "bbox": [ 0.0349187, 51.1718188, 0.0349187, 51.1718188 ], "geometry": { "type": "Point", "coordinates": [ 0.0349187, 51.1718188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04552459" }, "bbox": [ -0.5063889, 51.289979, -0.5063889, 51.289979 ], "geometry": { "type": "Point", "coordinates": [ -0.5063889, 51.289979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15504517" }, "bbox": [ -0.3474863, 51.2390462, -0.3474863, 51.2390462 ], "geometry": { "type": "Point", "coordinates": [ -0.3474863, 51.2390462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23486828" }, "bbox": [ -0.2301763, 51.2200282, -0.2301763, 51.2200282 ], "geometry": { "type": "Point", "coordinates": [ -0.2301763, 51.2200282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14399129" }, "bbox": [ -0.3587443, 51.1414233, -0.3587443, 51.1414233 ], "geometry": { "type": "Point", "coordinates": [ -0.3587443, 51.1414233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35481334" }, "bbox": [ -0.0664889, 51.2183282, -0.0664889, 51.2183282 ], "geometry": { "type": "Point", "coordinates": [ -0.0664889, 51.2183282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32441085" }, "bbox": [ -0.1110809, 51.1876012, -0.1110809, 51.1876012 ], "geometry": { "type": "Point", "coordinates": [ -0.1110809, 51.1876012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20576753" }, "bbox": [ -0.2701377, 51.3040086, -0.2701377, 51.3040086 ], "geometry": { "type": "Point", "coordinates": [ -0.2701377, 51.3040086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492744" }, "bbox": [ -0.1355394, 51.2293131, -0.1355394, 51.2293131 ], "geometry": { "type": "Point", "coordinates": [ -0.1355394, 51.2293131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11397892" }, "bbox": [ -0.4031904, 51.1475558, -0.4031904, 51.1475558 ], "geometry": { "type": "Point", "coordinates": [ -0.4031904, 51.1475558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06547212" }, "bbox": [ -0.4711974, 51.2762425, -0.4711974, 51.2762425 ], "geometry": { "type": "Point", "coordinates": [ -0.4711974, 51.2762425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25411543" }, "bbox": [ -0.2117967, 51.1584181, -0.2117967, 51.1584181 ], "geometry": { "type": "Point", "coordinates": [ -0.2117967, 51.1584181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41435664" }, "bbox": [ 0.0239845, 51.1746089, 0.0239845, 51.1746089 ], "geometry": { "type": "Point", "coordinates": [ 0.0239845, 51.1746089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03387676" }, "bbox": [ -0.5181057, 51.1388368, -0.5181057, 51.1388368 ], "geometry": { "type": "Point", "coordinates": [ -0.5181057, 51.1388368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441657" }, "bbox": [ -0.3246987, 51.1884331, -0.3246987, 51.1884331 ], "geometry": { "type": "Point", "coordinates": [ -0.3246987, 51.1884331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12470264" }, "bbox": [ -0.3974375, 51.216886, -0.3974375, 51.216886 ], "geometry": { "type": "Point", "coordinates": [ -0.3974375, 51.216886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12379082" }, "bbox": [ -0.3879217, 51.1286212, -0.3879217, 51.1286212 ], "geometry": { "type": "Point", "coordinates": [ -0.3879217, 51.1286212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11436330" }, "bbox": [ -0.4044165, 51.1780512, -0.4044165, 51.1780512 ], "geometry": { "type": "Point", "coordinates": [ -0.4044165, 51.1780512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420523" }, "bbox": [ -0.2555528, 51.1661921, -0.2555528, 51.1661921 ], "geometry": { "type": "Point", "coordinates": [ -0.2555528, 51.1661921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14581697" }, "bbox": [ -0.3629702, 51.318324, -0.3629702, 51.318324 ], "geometry": { "type": "Point", "coordinates": [ -0.3629702, 51.318324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04514494" }, "bbox": [ -0.5044105, 51.2571128, -0.5044105, 51.2571128 ], "geometry": { "type": "Point", "coordinates": [ -0.5044105, 51.2571128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07575705" }, "bbox": [ -0.4582947, 51.3024498, -0.4582947, 51.3024498 ], "geometry": { "type": "Point", "coordinates": [ -0.4582947, 51.3024498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22390572" }, "bbox": [ -0.2565367, 51.1435992, -0.2565367, 51.1435992 ], "geometry": { "type": "Point", "coordinates": [ -0.2565367, 51.1435992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25469071" }, "bbox": [ -0.1991529, 51.2057334, -0.1991529, 51.2057334 ], "geometry": { "type": "Point", "coordinates": [ -0.1991529, 51.2057334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24442908" }, "bbox": [ -0.2230466, 51.1824712, -0.2230466, 51.1824712 ], "geometry": { "type": "Point", "coordinates": [ -0.2230466, 51.1824712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42416416" }, "bbox": [ 0.0379245, 51.1520274, 0.0379245, 51.1520274 ], "geometry": { "type": "Point", "coordinates": [ 0.0379245, 51.1520274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33433027" }, "bbox": [ -0.0944864, 51.1731167, -0.0944864, 51.1731167 ], "geometry": { "type": "Point", "coordinates": [ -0.0944864, 51.1731167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448950" }, "bbox": [ -0.1424109, 51.184759, -0.1424109, 51.184759 ], "geometry": { "type": "Point", "coordinates": [ -0.1424109, 51.184759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14387628" }, "bbox": [ -0.3612846, 51.132387, -0.3612846, 51.132387 ], "geometry": { "type": "Point", "coordinates": [ -0.3612846, 51.132387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20541604" }, "bbox": [ -0.2787087, 51.2728854, -0.2787087, 51.2728854 ], "geometry": { "type": "Point", "coordinates": [ -0.2787087, 51.2728854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24444416" }, "bbox": [ -0.2208232, 51.1831795, -0.2208232, 51.1831795 ], "geometry": { "type": "Point", "coordinates": [ -0.2208232, 51.1831795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08388674" }, "bbox": [ -0.4465739, 51.1374699, -0.4465739, 51.1374699 ], "geometry": { "type": "Point", "coordinates": [ -0.4465739, 51.1374699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02351940" }, "bbox": [ -0.5415367, 51.1088376, -0.5415367, 51.1088376 ], "geometry": { "type": "Point", "coordinates": [ -0.5415367, 51.1088376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11553617" }, "bbox": [ -0.4045656, 51.2848484, -0.4045656, 51.2848484 ], "geometry": { "type": "Point", "coordinates": [ -0.4045656, 51.2848484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05466731" }, "bbox": [ -0.4886754, 51.2062828, -0.4886754, 51.2062828 ], "geometry": { "type": "Point", "coordinates": [ -0.4886754, 51.2062828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08420901" }, "bbox": [ -0.4553085, 51.1671314, -0.4553085, 51.1671314 ], "geometry": { "type": "Point", "coordinates": [ -0.4553085, 51.1671314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04434038" }, "bbox": [ -0.5080035, 51.1802427, -0.5080035, 51.1802427 ], "geometry": { "type": "Point", "coordinates": [ -0.5080035, 51.1802427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22496601" }, "bbox": [ -0.2448138, 51.2269602, -0.2448138, 51.2269602 ], "geometry": { "type": "Point", "coordinates": [ -0.2448138, 51.2269602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523931" }, "bbox": [ -0.3907239, 51.2589111, -0.3907239, 51.2589111 ], "geometry": { "type": "Point", "coordinates": [ -0.3907239, 51.2589111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15621033" }, "bbox": [ -0.3485618, 51.3484664, -0.3485618, 51.3484664 ], "geometry": { "type": "Point", "coordinates": [ -0.3485618, 51.3484664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568961" }, "bbox": [ -0.2841461, 51.2966233, -0.2841461, 51.2966233 ], "geometry": { "type": "Point", "coordinates": [ -0.2841461, 51.2966233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33451306" }, "bbox": [ -0.0962923, 51.1892558, -0.0962923, 51.1892558 ], "geometry": { "type": "Point", "coordinates": [ -0.0962923, 51.1892558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03426967" }, "bbox": [ -0.5181006, 51.1739475, -0.5181006, 51.1739475 ], "geometry": { "type": "Point", "coordinates": [ -0.5181006, 51.1739475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493229" }, "bbox": [ -0.063399, 51.2267477, -0.063399, 51.2267477 ], "geometry": { "type": "Point", "coordinates": [ -0.063399, 51.2267477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23429824" }, "bbox": [ -0.2277287, 51.1659832, -0.2277287, 51.1659832 ], "geometry": { "type": "Point", "coordinates": [ -0.2277287, 51.1659832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20519638" }, "bbox": [ -0.2681772, 51.2487787, -0.2681772, 51.2487787 ], "geometry": { "type": "Point", "coordinates": [ -0.2681772, 51.2487787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06499418" }, "bbox": [ -0.4697404, 51.231778, -0.4697404, 51.231778 ], "geometry": { "type": "Point", "coordinates": [ -0.4697404, 51.231778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400921" }, "bbox": [ -0.3987316, 51.1502193, -0.3987316, 51.1502193 ], "geometry": { "type": "Point", "coordinates": [ -0.3987316, 51.1502193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42410780" }, "bbox": [ 0.030232, 51.157897, 0.030232, 51.157897 ], "geometry": { "type": "Point", "coordinates": [ 0.030232, 51.157897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14428314" }, "bbox": [ -0.3592418, 51.1667751, -0.3592418, 51.1667751 ], "geometry": { "type": "Point", "coordinates": [ -0.3592418, 51.1667751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00421213" }, "bbox": [ -0.5692977, 51.1696656, -0.5692977, 51.1696656 ], "geometry": { "type": "Point", "coordinates": [ -0.5692977, 51.1696656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01563171" }, "bbox": [ -0.5482365, 51.300566, -0.5482365, 51.300566 ], "geometry": { "type": "Point", "coordinates": [ -0.5482365, 51.300566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25456469" }, "bbox": [ -0.2032473, 51.1966449, -0.2032473, 51.1966449 ], "geometry": { "type": "Point", "coordinates": [ -0.2032473, 51.1966449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28451568" }, "bbox": [ -0.167768, 51.1961507, -0.167768, 51.1961507 ], "geometry": { "type": "Point", "coordinates": [ -0.167768, 51.1961507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05566458" }, "bbox": [ -0.4864414, 51.2985686, -0.4864414, 51.2985686 ], "geometry": { "type": "Point", "coordinates": [ -0.4864414, 51.2985686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36442528" }, "bbox": [ -0.052167, 51.1815507, -0.052167, 51.1815507 ], "geometry": { "type": "Point", "coordinates": [ -0.052167, 51.1815507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17403682" }, "bbox": [ -0.3232518, 51.1545235, -0.3232518, 51.1545235 ], "geometry": { "type": "Point", "coordinates": [ -0.3232518, 51.1545235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33495997" }, "bbox": [ -0.0879419, 51.233473, -0.0879419, 51.233473 ], "geometry": { "type": "Point", "coordinates": [ -0.0879419, 51.233473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24421744" }, "bbox": [ -0.2253102, 51.1678082, -0.2253102, 51.1678082 ], "geometry": { "type": "Point", "coordinates": [ -0.2253102, 51.1678082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15378182" }, "bbox": [ -0.3465075, 51.1278865, -0.3465075, 51.1278865 ], "geometry": { "type": "Point", "coordinates": [ -0.3465075, 51.1278865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41467672" }, "bbox": [ 0.0276615, 51.2020601, 0.0276615, 51.2020601 ], "geometry": { "type": "Point", "coordinates": [ 0.0276615, 51.2020601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33499675" }, "bbox": [ -0.0829421, 51.2312446, -0.0829421, 51.2312446 ], "geometry": { "type": "Point", "coordinates": [ -0.0829421, 51.2312446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42538631" }, "bbox": [ 0.0462367, 51.2608357, 0.0462367, 51.2608357 ], "geometry": { "type": "Point", "coordinates": [ 0.0462367, 51.2608357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23476504" }, "bbox": [ -0.2310926, 51.2092753, -0.2310926, 51.2092753 ], "geometry": { "type": "Point", "coordinates": [ -0.2310926, 51.2092753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08388187" }, "bbox": [ -0.445869, 51.1388797, -0.445869, 51.1388797 ], "geometry": { "type": "Point", "coordinates": [ -0.445869, 51.1388797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36578986" }, "bbox": [ -0.0375175, 51.3034956, -0.0375175, 51.3034956 ], "geometry": { "type": "Point", "coordinates": [ -0.0375175, 51.3034956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02420793" }, "bbox": [ -0.5412188, 51.1765598, -0.5412188, 51.1765598 ], "geometry": { "type": "Point", "coordinates": [ -0.5412188, 51.1765598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40546150" }, "bbox": [ 0.0140878, 51.2722506, 0.0140878, 51.2722506 ], "geometry": { "type": "Point", "coordinates": [ 0.0140878, 51.2722506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18456998" }, "bbox": [ -0.3027715, 51.2008031, -0.3027715, 51.2008031 ], "geometry": { "type": "Point", "coordinates": [ -0.3027715, 51.2008031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29566081" }, "bbox": [ -0.1427095, 51.2957162, -0.1427095, 51.2957162 ], "geometry": { "type": "Point", "coordinates": [ -0.1427095, 51.2957162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38455813" }, "bbox": [ -0.0184584, 51.1885265, -0.0184584, 51.1885265 ], "geometry": { "type": "Point", "coordinates": [ -0.0184584, 51.1885265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42401588" }, "bbox": [ 0.0309177, 51.1497579, 0.0309177, 51.1497579 ], "geometry": { "type": "Point", "coordinates": [ 0.0309177, 51.1497579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32471215" }, "bbox": [ -0.1099985, 51.2083574, -0.1099985, 51.2083574 ], "geometry": { "type": "Point", "coordinates": [ -0.1099985, 51.2083574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00558481" }, "bbox": [ -0.5551606, 51.2923338, -0.5551606, 51.2923338 ], "geometry": { "type": "Point", "coordinates": [ -0.5551606, 51.2923338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36469578" }, "bbox": [ -0.0412117, 51.2038503, -0.0412117, 51.2038503 ], "geometry": { "type": "Point", "coordinates": [ -0.0412117, 51.2038503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24579373" }, "bbox": [ -0.2092503, 51.3049669, -0.2092503, 51.3049669 ], "geometry": { "type": "Point", "coordinates": [ -0.2092503, 51.3049669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16429261" }, "bbox": [ -0.3288889, 51.1708287, -0.3288889, 51.1708287 ], "geometry": { "type": "Point", "coordinates": [ -0.3288889, 51.1708287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579380" }, "bbox": [ -0.39594, 51.3082084, -0.39594, 51.3082084 ], "geometry": { "type": "Point", "coordinates": [ -0.39594, 51.3082084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22477294" }, "bbox": [ -0.2442928, 51.2176503, -0.2442928, 51.2176503 ], "geometry": { "type": "Point", "coordinates": [ -0.2442928, 51.2176503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42396898" }, "bbox": [ 0.0382649, 51.1413238, 0.0382649, 51.1413238 ], "geometry": { "type": "Point", "coordinates": [ 0.0382649, 51.1413238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07561562" }, "bbox": [ -0.4644384, 51.2986495, -0.4644384, 51.2986495 ], "geometry": { "type": "Point", "coordinates": [ -0.4644384, 51.2986495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09564821" }, "bbox": [ -0.4311595, 51.2945694, -0.4311595, 51.2945694 ], "geometry": { "type": "Point", "coordinates": [ -0.4311595, 51.2945694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25554415" }, "bbox": [ -0.2027462, 51.2817292, -0.2027462, 51.2817292 ], "geometry": { "type": "Point", "coordinates": [ -0.2027462, 51.2817292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24497703" }, "bbox": [ -0.2154365, 51.2268214, -0.2154365, 51.2268214 ], "geometry": { "type": "Point", "coordinates": [ -0.2154365, 51.2268214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26430512" }, "bbox": [ -0.1982359, 51.1734984, -0.1982359, 51.1734984 ], "geometry": { "type": "Point", "coordinates": [ -0.1982359, 51.1734984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10343597" }, "bbox": [ -0.4251893, 51.1034355, -0.4251893, 51.1034355 ], "geometry": { "type": "Point", "coordinates": [ -0.4251893, 51.1034355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23447706" }, "bbox": [ -0.2306017, 51.1824184, -0.2306017, 51.1824184 ], "geometry": { "type": "Point", "coordinates": [ -0.2306017, 51.1824184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03398346" }, "bbox": [ -0.5169763, 51.1452454, -0.5169763, 51.1452454 ], "geometry": { "type": "Point", "coordinates": [ -0.5169763, 51.1452454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30442126" }, "bbox": [ -0.1383775, 51.1827605, -0.1383775, 51.1827605 ], "geometry": { "type": "Point", "coordinates": [ -0.1383775, 51.1827605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17488905" }, "bbox": [ -0.3132421, 51.2194455, -0.3132421, 51.2194455 ], "geometry": { "type": "Point", "coordinates": [ -0.3132421, 51.2194455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24419182" }, "bbox": [ -0.2152222, 51.162045, -0.2152222, 51.162045 ], "geometry": { "type": "Point", "coordinates": [ -0.2152222, 51.162045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20482618" }, "bbox": [ -0.2793837, 51.2202252, -0.2793837, 51.2202252 ], "geometry": { "type": "Point", "coordinates": [ -0.2793837, 51.2202252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11535358" }, "bbox": [ -0.4026485, 51.2704779, -0.4026485, 51.2704779 ], "geometry": { "type": "Point", "coordinates": [ -0.4026485, 51.2704779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27542683" }, "bbox": [ -0.1768444, 51.2783822, -0.1768444, 51.2783822 ], "geometry": { "type": "Point", "coordinates": [ -0.1768444, 51.2783822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14575020" }, "bbox": [ -0.3589986, 51.3023479, -0.3589986, 51.3023479 ], "geometry": { "type": "Point", "coordinates": [ -0.3589986, 51.3023479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24564370" }, "bbox": [ -0.2168352, 51.2958206, -0.2168352, 51.2958206 ], "geometry": { "type": "Point", "coordinates": [ -0.2168352, 51.2958206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43531358" }, "bbox": [ 0.0502206, 51.263363, 0.0502206, 51.263363 ], "geometry": { "type": "Point", "coordinates": [ 0.0502206, 51.263363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40571637" }, "bbox": [ 0.0085714, 51.297509, 0.0085714, 51.297509 ], "geometry": { "type": "Point", "coordinates": [ 0.0085714, 51.297509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02429295" }, "bbox": [ -0.5288763, 51.1771097, -0.5288763, 51.1771097 ], "geometry": { "type": "Point", "coordinates": [ -0.5288763, 51.1771097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39560850" }, "bbox": [ -0.0069743, 51.29078, -0.0069743, 51.29078 ], "geometry": { "type": "Point", "coordinates": [ -0.0069743, 51.29078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24563646" }, "bbox": [ -0.217753, 51.293658, -0.217753, 51.293658 ], "geometry": { "type": "Point", "coordinates": [ -0.217753, 51.293658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07512682" }, "bbox": [ -0.4642672, 51.2554903, -0.4642672, 51.2554903 ], "geometry": { "type": "Point", "coordinates": [ -0.4642672, 51.2554903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06369818" }, "bbox": [ -0.4730099, 51.1149765, -0.4730099, 51.1149765 ], "geometry": { "type": "Point", "coordinates": [ -0.4730099, 51.1149765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24450175" }, "bbox": [ -0.2264491, 51.1975105, -0.2264491, 51.1975105 ], "geometry": { "type": "Point", "coordinates": [ -0.2264491, 51.1975105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452602" }, "bbox": [ -0.0231025, 51.1877503, -0.0231025, 51.1877503 ], "geometry": { "type": "Point", "coordinates": [ -0.0231025, 51.1877503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03561559" }, "bbox": [ -0.5219462, 51.2990646, -0.5219462, 51.2990646 ], "geometry": { "type": "Point", "coordinates": [ -0.5219462, 51.2990646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34485131" }, "bbox": [ -0.0752917, 51.2180754, -0.0752917, 51.2180754 ], "geometry": { "type": "Point", "coordinates": [ -0.0752917, 51.2180754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33442867" }, "bbox": [ -0.0942698, 51.1856598, -0.0942698, 51.1856598 ], "geometry": { "type": "Point", "coordinates": [ -0.0942698, 51.1856598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10405304" }, "bbox": [ -0.4211274, 51.1489893, -0.4211274, 51.1489893 ], "geometry": { "type": "Point", "coordinates": [ -0.4211274, 51.1489893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20570861" }, "bbox": [ -0.2787028, 51.3048783, -0.2787028, 51.3048783 ], "geometry": { "type": "Point", "coordinates": [ -0.2787028, 51.3048783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13397935" }, "bbox": [ -0.3747536, 51.1421651, -0.3747536, 51.1421651 ], "geometry": { "type": "Point", "coordinates": [ -0.3747536, 51.1421651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31492440" }, "bbox": [ -0.1218528, 51.2286533, -0.1218528, 51.2286533 ], "geometry": { "type": "Point", "coordinates": [ -0.1218528, 51.2286533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30431522" }, "bbox": [ -0.1397181, 51.173455, -0.1397181, 51.173455 ], "geometry": { "type": "Point", "coordinates": [ -0.1397181, 51.173455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07513477" }, "bbox": [ -0.4633824, 51.2550375, -0.4633824, 51.2550375 ], "geometry": { "type": "Point", "coordinates": [ -0.4633824, 51.2550375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498043" }, "bbox": [ -0.2281914, 51.2307301, -0.2281914, 51.2307301 ], "geometry": { "type": "Point", "coordinates": [ -0.2281914, 51.2307301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06528671" }, "bbox": [ -0.4695892, 51.2637105, -0.4695892, 51.2637105 ], "geometry": { "type": "Point", "coordinates": [ -0.4695892, 51.2637105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19544208" }, "bbox": [ -0.2893477, 51.2733837, -0.2893477, 51.2733837 ], "geometry": { "type": "Point", "coordinates": [ -0.2893477, 51.2733837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02450131" }, "bbox": [ -0.5414827, 51.1978744, -0.5414827, 51.1978744 ], "geometry": { "type": "Point", "coordinates": [ -0.5414827, 51.1978744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496408" }, "bbox": [ -0.2306963, 51.2275953, -0.2306963, 51.2275953 ], "geometry": { "type": "Point", "coordinates": [ -0.2306963, 51.2275953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32518570" }, "bbox": [ -0.0980474, 51.2488967, -0.0980474, 51.2488967 ], "geometry": { "type": "Point", "coordinates": [ -0.0980474, 51.2488967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07371660" }, "bbox": [ -0.4699736, 51.1276655, -0.4699736, 51.1276655 ], "geometry": { "type": "Point", "coordinates": [ -0.4699736, 51.1276655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26541138" }, "bbox": [ -0.1922376, 51.2743742, -0.1922376, 51.2743742 ], "geometry": { "type": "Point", "coordinates": [ -0.1922376, 51.2743742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38434294" }, "bbox": [ -0.0210115, 51.1780038, -0.0210115, 51.1780038 ], "geometry": { "type": "Point", "coordinates": [ -0.0210115, 51.1780038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40561731" }, "bbox": [ 0.0087597, 51.2886492, 0.0087597, 51.2886492 ], "geometry": { "type": "Point", "coordinates": [ 0.0087597, 51.2886492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30443515" }, "bbox": [ -0.1364136, 51.1817293, -0.1364136, 51.1817293 ], "geometry": { "type": "Point", "coordinates": [ -0.1364136, 51.1817293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08359174" }, "bbox": [ -0.4455845, 51.1105225, -0.4455845, 51.1105225 ], "geometry": { "type": "Point", "coordinates": [ -0.4455845, 51.1105225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01462929" }, "bbox": [ -0.5514724, 51.2068389, -0.5514724, 51.2068389 ], "geometry": { "type": "Point", "coordinates": [ -0.5514724, 51.2068389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23438271" }, "bbox": [ -0.2300627, 51.179182, -0.2300627, 51.179182 ], "geometry": { "type": "Point", "coordinates": [ -0.2300627, 51.179182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34439544" }, "bbox": [ -0.0710232, 51.174381, -0.0710232, 51.174381 ], "geometry": { "type": "Point", "coordinates": [ -0.0710232, 51.174381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39405996" }, "bbox": [ -0.0055268, 51.1508427, -0.0055268, 51.1508427 ], "geometry": { "type": "Point", "coordinates": [ -0.0055268, 51.1508427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33458236" }, "bbox": [ -0.0863567, 51.1918114, -0.0863567, 51.1918114 ], "geometry": { "type": "Point", "coordinates": [ -0.0863567, 51.1918114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10509726" }, "bbox": [ -0.411779, 51.2408536, -0.411779, 51.2408536 ], "geometry": { "type": "Point", "coordinates": [ -0.411779, 51.2408536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32427865" }, "bbox": [ -0.1022729, 51.1677333, -0.1022729, 51.1677333 ], "geometry": { "type": "Point", "coordinates": [ -0.1022729, 51.1677333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25477685" }, "bbox": [ -0.2007417, 51.2160508, -0.2007417, 51.2160508 ], "geometry": { "type": "Point", "coordinates": [ -0.2007417, 51.2160508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448548" }, "bbox": [ -0.3293442, 51.1876131, -0.3293442, 51.1876131 ], "geometry": { "type": "Point", "coordinates": [ -0.3293442, 51.1876131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06568291" }, "bbox": [ -0.4691307, 51.3013911, -0.4691307, 51.3013911 ], "geometry": { "type": "Point", "coordinates": [ -0.4691307, 51.3013911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15451950" }, "bbox": [ -0.3526121, 51.1972468, -0.3526121, 51.1972468 ], "geometry": { "type": "Point", "coordinates": [ -0.3526121, 51.1972468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37506384" }, "bbox": [ -0.0295919, 51.240211, -0.0295919, 51.240211 ], "geometry": { "type": "Point", "coordinates": [ -0.0295919, 51.240211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03414334" }, "bbox": [ -0.5219287, 51.1622298, -0.5219287, 51.1622298 ], "geometry": { "type": "Point", "coordinates": [ -0.5219287, 51.1622298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16455508" }, "bbox": [ -0.333449, 51.1931153, -0.333449, 51.1931153 ], "geometry": { "type": "Point", "coordinates": [ -0.333449, 51.1931153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16511090" }, "bbox": [ -0.3376665, 51.2544308, -0.3376665, 51.2544308 ], "geometry": { "type": "Point", "coordinates": [ -0.3376665, 51.2544308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07460707" }, "bbox": [ -0.468784, 51.2038888, -0.468784, 51.2038888 ], "geometry": { "type": "Point", "coordinates": [ -0.468784, 51.2038888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426799" }, "bbox": [ -0.4326461, 51.1757087, -0.4326461, 51.1757087 ], "geometry": { "type": "Point", "coordinates": [ -0.4326461, 51.1757087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16641535" }, "bbox": [ -0.3338048, 51.3667486, -0.3338048, 51.3667486 ], "geometry": { "type": "Point", "coordinates": [ -0.3338048, 51.3667486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42443878" }, "bbox": [ 0.0357231, 51.1845395, 0.0357231, 51.1845395 ], "geometry": { "type": "Point", "coordinates": [ 0.0357231, 51.1845395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25413151" }, "bbox": [ -0.2093616, 51.1591016, -0.2093616, 51.1591016 ], "geometry": { "type": "Point", "coordinates": [ -0.2093616, 51.1591016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08401359" }, "bbox": [ -0.4551779, 51.1542107, -0.4551779, 51.1542107 ], "geometry": { "type": "Point", "coordinates": [ -0.4551779, 51.1542107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01433048" }, "bbox": [ -0.5518023, 51.1812219, -0.5518023, 51.1812219 ], "geometry": { "type": "Point", "coordinates": [ -0.5518023, 51.1812219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00441648" }, "bbox": [ -0.5682483, 51.1908121, -0.5682483, 51.1908121 ], "geometry": { "type": "Point", "coordinates": [ -0.5682483, 51.1908121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06418616" }, "bbox": [ -0.4732085, 51.159765, -0.4732085, 51.159765 ], "geometry": { "type": "Point", "coordinates": [ -0.4732085, 51.159765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35451545" }, "bbox": [ -0.0673902, 51.1923006, -0.0673902, 51.1923006 ], "geometry": { "type": "Point", "coordinates": [ -0.0673902, 51.1923006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13374255" }, "bbox": [ -0.3806351, 51.126087, -0.3806351, 51.126087 ], "geometry": { "type": "Point", "coordinates": [ -0.3806351, 51.126087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16447799" }, "bbox": [ -0.3301222, 51.192177, -0.3301222, 51.192177 ], "geometry": { "type": "Point", "coordinates": [ -0.3301222, 51.192177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428732" }, "bbox": [ -0.2870997, 51.1676372, -0.2870997, 51.1676372 ], "geometry": { "type": "Point", "coordinates": [ -0.2870997, 51.1676372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03432413" }, "bbox": [ -0.523631, 51.1772428, -0.523631, 51.1772428 ], "geometry": { "type": "Point", "coordinates": [ -0.523631, 51.1772428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06446768" }, "bbox": [ -0.4751189, 51.1913731, -0.4751189, 51.1913731 ], "geometry": { "type": "Point", "coordinates": [ -0.4751189, 51.1913731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19387458" }, "bbox": [ -0.2900626, 51.133889, -0.2900626, 51.133889 ], "geometry": { "type": "Point", "coordinates": [ -0.2900626, 51.133889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467601" }, "bbox": [ -0.2444118, 51.2000592, -0.2444118, 51.2000592 ], "geometry": { "type": "Point", "coordinates": [ -0.2444118, 51.2000592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39589704" }, "bbox": [ 0.0062112, 51.3040739, 0.0062112, 51.3040739 ], "geometry": { "type": "Point", "coordinates": [ 0.0062112, 51.3040739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25468735" }, "bbox": [ -0.1996262, 51.2025889, -0.1996262, 51.2025889 ], "geometry": { "type": "Point", "coordinates": [ -0.1996262, 51.2025889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10595104" }, "bbox": [ -0.4154863, 51.3197836, -0.4154863, 51.3197836 ], "geometry": { "type": "Point", "coordinates": [ -0.4154863, 51.3197836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11636335" }, "bbox": [ -0.3985472, 51.3584172, -0.3985472, 51.3584172 ], "geometry": { "type": "Point", "coordinates": [ -0.3985472, 51.3584172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06470349" }, "bbox": [ -0.4830007, 51.2168816, -0.4830007, 51.2168816 ], "geometry": { "type": "Point", "coordinates": [ -0.4830007, 51.2168816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03437983" }, "bbox": [ -0.5162895, 51.1842946, -0.5162895, 51.1842946 ], "geometry": { "type": "Point", "coordinates": [ -0.5162895, 51.1842946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08538383" }, "bbox": [ -0.4411145, 51.2733346, -0.4411145, 51.2733346 ], "geometry": { "type": "Point", "coordinates": [ -0.4411145, 51.2733346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42444980" }, "bbox": [ 0.0375485, 51.184717, 0.0375485, 51.184717 ], "geometry": { "type": "Point", "coordinates": [ 0.0375485, 51.184717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26546613" }, "bbox": [ -0.1857406, 51.2722889, -0.1857406, 51.2722889 ], "geometry": { "type": "Point", "coordinates": [ -0.1857406, 51.2722889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11628563" }, "bbox": [ -0.3951176, 51.3518171, -0.3951176, 51.3518171 ], "geometry": { "type": "Point", "coordinates": [ -0.3951176, 51.3518171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16446718" }, "bbox": [ -0.331916, 51.1851602, -0.331916, 51.1851602 ], "geometry": { "type": "Point", "coordinates": [ -0.331916, 51.1851602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05515520" }, "bbox": [ -0.488513, 51.2500829, -0.488513, 51.2500829 ], "geometry": { "type": "Point", "coordinates": [ -0.488513, 51.2500829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07445599" }, "bbox": [ -0.4620423, 51.1940762, -0.4620423, 51.1940762 ], "geometry": { "type": "Point", "coordinates": [ -0.4620423, 51.1940762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15465673" }, "bbox": [ -0.3472105, 51.2079337, -0.3472105, 51.2079337 ], "geometry": { "type": "Point", "coordinates": [ -0.3472105, 51.2079337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14397122" }, "bbox": [ -0.3616819, 51.1408479, -0.3616819, 51.1408479 ], "geometry": { "type": "Point", "coordinates": [ -0.3616819, 51.1408479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04563386" }, "bbox": [ -0.5050311, 51.3014632, -0.5050311, 51.3014632 ], "geometry": { "type": "Point", "coordinates": [ -0.5050311, 51.3014632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35439840" }, "bbox": [ -0.0562958, 51.1736149, -0.0562958, 51.1736149 ], "geometry": { "type": "Point", "coordinates": [ -0.0562958, 51.1736149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42524812" }, "bbox": [ 0.0402729, 51.250469, 0.0402729, 51.250469 ], "geometry": { "type": "Point", "coordinates": [ 0.0402729, 51.250469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466092" }, "bbox": [ -0.0030255, 51.20445, -0.0030255, 51.20445 ], "geometry": { "type": "Point", "coordinates": [ -0.0030255, 51.20445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42416548" }, "bbox": [ 0.0382782, 51.1544924, 0.0382782, 51.1544924 ], "geometry": { "type": "Point", "coordinates": [ 0.0382782, 51.1544924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09419485" }, "bbox": [ -0.4289931, 51.1653687, -0.4289931, 51.1653687 ], "geometry": { "type": "Point", "coordinates": [ -0.4289931, 51.1653687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14389766" }, "bbox": [ -0.3580821, 51.1357819, -0.3580821, 51.1357819 ], "geometry": { "type": "Point", "coordinates": [ -0.3580821, 51.1357819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04627992" }, "bbox": [ -0.4963846, 51.3557796, -0.4963846, 51.3557796 ], "geometry": { "type": "Point", "coordinates": [ -0.4963846, 51.3557796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36562401" }, "bbox": [ -0.0476664, 51.2869041, -0.0476664, 51.2869041 ], "geometry": { "type": "Point", "coordinates": [ -0.0476664, 51.2869041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41409276" }, "bbox": [ 0.0276148, 51.1485385, 0.0276148, 51.1485385 ], "geometry": { "type": "Point", "coordinates": [ 0.0276148, 51.1485385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01334421" }, "bbox": [ -0.552121, 51.0893709, -0.552121, 51.0893709 ], "geometry": { "type": "Point", "coordinates": [ -0.552121, 51.0893709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28551636" }, "bbox": [ -0.1636435, 51.2829227, -0.1636435, 51.2829227 ], "geometry": { "type": "Point", "coordinates": [ -0.1636435, 51.2829227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40573918" }, "bbox": [ 0.0121653, 51.2963768, 0.0121653, 51.2963768 ], "geometry": { "type": "Point", "coordinates": [ 0.0121653, 51.2963768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28467070" }, "bbox": [ -0.1597327, 51.2052562, -0.1597327, 51.2052562 ], "geometry": { "type": "Point", "coordinates": [ -0.1597327, 51.2052562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11565079" }, "bbox": [ -0.4020323, 51.2992945, -0.4020323, 51.2992945 ], "geometry": { "type": "Point", "coordinates": [ -0.4020323, 51.2992945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32544128" }, "bbox": [ -0.1031589, 51.2722009, -0.1031589, 51.2722009 ], "geometry": { "type": "Point", "coordinates": [ -0.1031589, 51.2722009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422758" }, "bbox": [ -0.5527838, 51.1734799, -0.5527838, 51.1734799 ], "geometry": { "type": "Point", "coordinates": [ -0.5527838, 51.1734799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378145" }, "bbox": [ -0.3607398, 51.1248178, -0.3607398, 51.1248178 ], "geometry": { "type": "Point", "coordinates": [ -0.3607398, 51.1248178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530180" }, "bbox": [ 0.0484855, 51.2655267, 0.0484855, 51.2655267 ], "geometry": { "type": "Point", "coordinates": [ 0.0484855, 51.2655267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24480452" }, "bbox": [ -0.2243768, 51.2222938, -0.2243768, 51.2222938 ], "geometry": { "type": "Point", "coordinates": [ -0.2243768, 51.2222938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01488473" }, "bbox": [ -0.5430023, 51.2287292, -0.5430023, 51.2287292 ], "geometry": { "type": "Point", "coordinates": [ -0.5430023, 51.2287292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33424642" }, "bbox": [ -0.0926256, 51.1653643, -0.0926256, 51.1653643 ], "geometry": { "type": "Point", "coordinates": [ -0.0926256, 51.1653643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14400461" }, "bbox": [ -0.370835, 51.1534008, -0.370835, 51.1534008 ], "geometry": { "type": "Point", "coordinates": [ -0.370835, 51.1534008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07388453" }, "bbox": [ -0.4600529, 51.1359502, -0.4600529, 51.1359502 ], "geometry": { "type": "Point", "coordinates": [ -0.4600529, 51.1359502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04345454" }, "bbox": [ -0.5084033, 51.1007397, -0.5084033, 51.1007397 ], "geometry": { "type": "Point", "coordinates": [ -0.5084033, 51.1007397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11504819" }, "bbox": [ -0.4043492, 51.240055, -0.4043492, 51.240055 ], "geometry": { "type": "Point", "coordinates": [ -0.4043492, 51.240055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11631801" }, "bbox": [ -0.4049945, 51.3551424, -0.4049945, 51.3551424 ], "geometry": { "type": "Point", "coordinates": [ -0.4049945, 51.3551424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38440823" }, "bbox": [ -0.0257908, 51.1806685, -0.0257908, 51.1806685 ], "geometry": { "type": "Point", "coordinates": [ -0.0257908, 51.1806685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13407842" }, "bbox": [ -0.374617, 51.1516836, -0.374617, 51.1516836 ], "geometry": { "type": "Point", "coordinates": [ -0.374617, 51.1516836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29561994" }, "bbox": [ -0.1481035, 51.2968603, -0.1481035, 51.2968603 ], "geometry": { "type": "Point", "coordinates": [ -0.1481035, 51.2968603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13440731" }, "bbox": [ -0.3836434, 51.1867345, -0.3836434, 51.1867345 ], "geometry": { "type": "Point", "coordinates": [ -0.3836434, 51.1867345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41473973" }, "bbox": [ 0.0229708, 51.2113018, 0.0229708, 51.2113018 ], "geometry": { "type": "Point", "coordinates": [ 0.0229708, 51.2113018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35473977" }, "bbox": [ -0.0629394, 51.2131307, -0.0629394, 51.2131307 ], "geometry": { "type": "Point", "coordinates": [ -0.0629394, 51.2131307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583904" }, "bbox": [ -0.4318674, 51.3110467, -0.4318674, 51.3110467 ], "geometry": { "type": "Point", "coordinates": [ -0.4318674, 51.3110467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28450368" }, "bbox": [ -0.1691105, 51.1960384, -0.1691105, 51.1960384 ], "geometry": { "type": "Point", "coordinates": [ -0.1691105, 51.1960384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25470712" }, "bbox": [ -0.2109179, 51.2095701, -0.2109179, 51.2095701 ], "geometry": { "type": "Point", "coordinates": [ -0.2109179, 51.2095701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21518103" }, "bbox": [ -0.2560116, 51.2456259, -0.2560116, 51.2456259 ], "geometry": { "type": "Point", "coordinates": [ -0.2560116, 51.2456259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19579162" }, "bbox": [ -0.2811008, 51.3051259, -0.2811008, 51.3051259 ], "geometry": { "type": "Point", "coordinates": [ -0.2811008, 51.3051259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18499654" }, "bbox": [ -0.2976748, 51.2326696, -0.2976748, 51.2326696 ], "geometry": { "type": "Point", "coordinates": [ -0.2976748, 51.2326696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32528842" }, "bbox": [ -0.0971751, 51.255557, -0.0971751, 51.255557 ], "geometry": { "type": "Point", "coordinates": [ -0.0971751, 51.255557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20481665" }, "bbox": [ -0.2808333, 51.2242987, -0.2808333, 51.2242987 ], "geometry": { "type": "Point", "coordinates": [ -0.2808333, 51.2242987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10585468" }, "bbox": [ -0.4160674, 51.3170755, -0.4160674, 51.3170755 ], "geometry": { "type": "Point", "coordinates": [ -0.4160674, 51.3170755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39435366" }, "bbox": [ -0.0053989, 51.1751297, -0.0053989, 51.1751297 ], "geometry": { "type": "Point", "coordinates": [ -0.0053989, 51.1751297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14425626" }, "bbox": [ -0.3627492, 51.167958, -0.3627492, 51.167958 ], "geometry": { "type": "Point", "coordinates": [ -0.3627492, 51.167958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24483624" }, "bbox": [ -0.2203673, 51.219755, -0.2203673, 51.219755 ], "geometry": { "type": "Point", "coordinates": [ -0.2203673, 51.219755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35494306" }, "bbox": [ -0.0617723, 51.2246881, -0.0617723, 51.2246881 ], "geometry": { "type": "Point", "coordinates": [ -0.0617723, 51.2246881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11496389" }, "bbox": [ -0.4019592, 51.2373177, -0.4019592, 51.2373177 ], "geometry": { "type": "Point", "coordinates": [ -0.4019592, 51.2373177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11492187" }, "bbox": [ -0.4084495, 51.2370593, -0.4084495, 51.2370593 ], "geometry": { "type": "Point", "coordinates": [ -0.4084495, 51.2370593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35446055" }, "bbox": [ -0.0609698, 51.1841825, -0.0609698, 51.1841825 ], "geometry": { "type": "Point", "coordinates": [ -0.0609698, 51.1841825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42553302" }, "bbox": [ 0.0389874, 51.2766884, 0.0389874, 51.2766884 ], "geometry": { "type": "Point", "coordinates": [ 0.0389874, 51.2766884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02364984" }, "bbox": [ -0.5368436, 51.1218694, -0.5368436, 51.1218694 ], "geometry": { "type": "Point", "coordinates": [ -0.5368436, 51.1218694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42413839" }, "bbox": [ 0.0345792, 51.1540653, 0.0345792, 51.1540653 ], "geometry": { "type": "Point", "coordinates": [ 0.0345792, 51.1540653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04488856" }, "bbox": [ -0.4997094, 51.2266855, -0.4997094, 51.2266855 ], "geometry": { "type": "Point", "coordinates": [ -0.4997094, 51.2266855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520657" }, "bbox": [ -0.3952745, 51.2613292, -0.3952745, 51.2613292 ], "geometry": { "type": "Point", "coordinates": [ -0.3952745, 51.2613292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13568899" }, "bbox": [ -0.368657, 51.30074, -0.368657, 51.30074 ], "geometry": { "type": "Point", "coordinates": [ -0.368657, 51.30074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35494906" }, "bbox": [ -0.0609718, 51.2247571, -0.0609718, 51.2247571 ], "geometry": { "type": "Point", "coordinates": [ -0.0609718, 51.2247571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06481918" }, "bbox": [ -0.4812145, 51.2228598, -0.4812145, 51.2228598 ], "geometry": { "type": "Point", "coordinates": [ -0.4812145, 51.2228598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12481469" }, "bbox": [ -0.395546, 51.2264702, -0.395546, 51.2264702 ], "geometry": { "type": "Point", "coordinates": [ -0.395546, 51.2264702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25442323" }, "bbox": [ -0.2095752, 51.1836723, -0.2095752, 51.1836723 ], "geometry": { "type": "Point", "coordinates": [ -0.2095752, 51.1836723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21546350" }, "bbox": [ -0.2575538, 51.2766791, -0.2575538, 51.2766791 ], "geometry": { "type": "Point", "coordinates": [ -0.2575538, 51.2766791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19498854" }, "bbox": [ -0.2843957, 51.2324602, -0.2843957, 51.2324602 ], "geometry": { "type": "Point", "coordinates": [ -0.2843957, 51.2324602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35455310" }, "bbox": [ -0.0618033, 51.188979, -0.0618033, 51.188979 ], "geometry": { "type": "Point", "coordinates": [ -0.0618033, 51.188979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03660609" }, "bbox": [ -0.5201249, 51.3844983, -0.5201249, 51.3844983 ], "geometry": { "type": "Point", "coordinates": [ -0.5201249, 51.3844983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10467914" }, "bbox": [ -0.4153341, 51.2038275, -0.4153341, 51.2038275 ], "geometry": { "type": "Point", "coordinates": [ -0.4153341, 51.2038275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04384765" }, "bbox": [ -0.5079096, 51.137365, -0.5079096, 51.137365 ], "geometry": { "type": "Point", "coordinates": [ -0.5079096, 51.137365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15388507" }, "bbox": [ -0.3458595, 51.1300814, -0.3458595, 51.1300814 ], "geometry": { "type": "Point", "coordinates": [ -0.3458595, 51.1300814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04609450" }, "bbox": [ -0.4949398, 51.3339087, -0.4949398, 51.3339087 ], "geometry": { "type": "Point", "coordinates": [ -0.4949398, 51.3339087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01379804" }, "bbox": [ -0.5443704, 51.1236314, -0.5443704, 51.1236314 ], "geometry": { "type": "Point", "coordinates": [ -0.5443704, 51.1236314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02393468" }, "bbox": [ -0.5385908, 51.1473463, -0.5385908, 51.1473463 ], "geometry": { "type": "Point", "coordinates": [ -0.5385908, 51.1473463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40460308" }, "bbox": [ 0.0027745, 51.1966577, 0.0027745, 51.1966577 ], "geometry": { "type": "Point", "coordinates": [ 0.0027745, 51.1966577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33440496" }, "bbox": [ -0.0973594, 51.1884676, -0.0973594, 51.1884676 ], "geometry": { "type": "Point", "coordinates": [ -0.0973594, 51.1884676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35491921" }, "bbox": [ -0.0652028, 51.2260845, -0.0652028, 51.2260845 ], "geometry": { "type": "Point", "coordinates": [ -0.0652028, 51.2260845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39567749" }, "bbox": [ 0.0032009, 51.2904002, 0.0032009, 51.2904002 ], "geometry": { "type": "Point", "coordinates": [ 0.0032009, 51.2904002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43402748" }, "bbox": [ 0.0467982, 51.1457468, 0.0467982, 51.1457468 ], "geometry": { "type": "Point", "coordinates": [ 0.0467982, 51.1457468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25421316" }, "bbox": [ -0.2117908, 51.1649385, -0.2117908, 51.1649385 ], "geometry": { "type": "Point", "coordinates": [ -0.2117908, 51.1649385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23412071" }, "bbox": [ -0.2394392, 51.1613697, -0.2394392, 51.1613697 ], "geometry": { "type": "Point", "coordinates": [ -0.2394392, 51.1613697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28452804" }, "bbox": [ -0.165854, 51.1902547, -0.165854, 51.1902547 ], "geometry": { "type": "Point", "coordinates": [ -0.165854, 51.1902547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466450" }, "bbox": [ -0.0028918, 51.2007634, -0.0028918, 51.2007634 ], "geometry": { "type": "Point", "coordinates": [ -0.0028918, 51.2007634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12406069" }, "bbox": [ -0.3911899, 51.1543189, -0.3911899, 51.1543189 ], "geometry": { "type": "Point", "coordinates": [ -0.3911899, 51.1543189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30536501" }, "bbox": [ -0.1285271, 51.2605363, -0.1285271, 51.2605363 ], "geometry": { "type": "Point", "coordinates": [ -0.1285271, 51.2605363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16408176" }, "bbox": [ -0.3308911, 51.1542318, -0.3308911, 51.1542318 ], "geometry": { "type": "Point", "coordinates": [ -0.3308911, 51.1542318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12443414" }, "bbox": [ -0.3938671, 51.1855758, -0.3938671, 51.1855758 ], "geometry": { "type": "Point", "coordinates": [ -0.3938671, 51.1855758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21552264" }, "bbox": [ -0.2631792, 51.2870947, -0.2631792, 51.2870947 ], "geometry": { "type": "Point", "coordinates": [ -0.2631792, 51.2870947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13579247" }, "bbox": [ -0.3671025, 51.304991, -0.3671025, 51.304991 ], "geometry": { "type": "Point", "coordinates": [ -0.3671025, 51.304991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24493723" }, "bbox": [ -0.220244, 51.2287627, -0.220244, 51.2287627 ], "geometry": { "type": "Point", "coordinates": [ -0.220244, 51.2287627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14362871" }, "bbox": [ -0.3686278, 51.1185252, -0.3686278, 51.1185252 ], "geometry": { "type": "Point", "coordinates": [ -0.3686278, 51.1185252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15461472" }, "bbox": [ -0.3530021, 51.2081082, -0.3530021, 51.2081082 ], "geometry": { "type": "Point", "coordinates": [ -0.3530021, 51.2081082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23408331" }, "bbox": [ -0.2309856, 51.1485513, -0.2309856, 51.1485513 ], "geometry": { "type": "Point", "coordinates": [ -0.2309856, 51.1485513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23479708" }, "bbox": [ -0.2269385, 51.2095756, -0.2269385, 51.2095756 ], "geometry": { "type": "Point", "coordinates": [ -0.2269385, 51.2095756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31484037" }, "bbox": [ -0.1198659, 51.2193494, -0.1198659, 51.2193494 ], "geometry": { "type": "Point", "coordinates": [ -0.1198659, 51.2193494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11575871" }, "bbox": [ -0.4008199, 51.3075712, -0.4008199, 51.3075712 ], "geometry": { "type": "Point", "coordinates": [ -0.4008199, 51.3075712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23445235" }, "bbox": [ -0.2340055, 51.1850871, -0.2340055, 51.1850871 ], "geometry": { "type": "Point", "coordinates": [ -0.2340055, 51.1850871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40403171" }, "bbox": [ 0.0047992, 51.1485702, 0.0047992, 51.1485702 ], "geometry": { "type": "Point", "coordinates": [ 0.0047992, 51.1485702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33472125" }, "bbox": [ -0.0945379, 51.2087437, -0.0945379, 51.2087437 ], "geometry": { "type": "Point", "coordinates": [ -0.0945379, 51.2087437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13482556" }, "bbox": [ -0.3795372, 51.2251424, -0.3795372, 51.2251424 ], "geometry": { "type": "Point", "coordinates": [ -0.3795372, 51.2251424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23462075" }, "bbox": [ -0.2378431, 51.2067308, -0.2378431, 51.2067308 ], "geometry": { "type": "Point", "coordinates": [ -0.2378431, 51.2067308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524938" }, "bbox": [ -0.2316674, 51.2572445, -0.2316674, 51.2572445 ], "geometry": { "type": "Point", "coordinates": [ -0.2316674, 51.2572445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20438324" }, "bbox": [ -0.2722501, 51.1754505, -0.2722501, 51.1754505 ], "geometry": { "type": "Point", "coordinates": [ -0.2722501, 51.1754505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08427403" }, "bbox": [ -0.4461956, 51.1670718, -0.4461956, 51.1670718 ], "geometry": { "type": "Point", "coordinates": [ -0.4461956, 51.1670718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19403638" }, "bbox": [ -0.2947566, 51.1504059, -0.2947566, 51.1504059 ], "geometry": { "type": "Point", "coordinates": [ -0.2947566, 51.1504059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38451002" }, "bbox": [ -0.025143, 51.1878051, -0.025143, 51.1878051 ], "geometry": { "type": "Point", "coordinates": [ -0.025143, 51.1878051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492547" }, "bbox": [ -0.1357641, 51.2296102, -0.1357641, 51.2296102 ], "geometry": { "type": "Point", "coordinates": [ -0.1357641, 51.2296102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24413045" }, "bbox": [ -0.2239329, 51.1588357, -0.2239329, 51.1588357 ], "geometry": { "type": "Point", "coordinates": [ -0.2239329, 51.1588357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05348341" }, "bbox": [ -0.4900173, 51.0994619, -0.4900173, 51.0994619 ], "geometry": { "type": "Point", "coordinates": [ -0.4900173, 51.0994619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09359925" }, "bbox": [ -0.4306069, 51.1049636, -0.4306069, 51.1049636 ], "geometry": { "type": "Point", "coordinates": [ -0.4306069, 51.1049636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40509258" }, "bbox": [ 0.0178365, 51.2370469, 0.0178365, 51.2370469 ], "geometry": { "type": "Point", "coordinates": [ 0.0178365, 51.2370469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09342648" }, "bbox": [ -0.4408144, 51.0990175, -0.4408144, 51.0990175 ], "geometry": { "type": "Point", "coordinates": [ -0.4408144, 51.0990175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24464947" }, "bbox": [ -0.2194274, 51.2039592, -0.2194274, 51.2039592 ], "geometry": { "type": "Point", "coordinates": [ -0.2194274, 51.2039592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375085" }, "bbox": [ -0.3506013, 51.1282735, -0.3506013, 51.1282735 ], "geometry": { "type": "Point", "coordinates": [ -0.3506013, 51.1282735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22519142" }, "bbox": [ -0.2414471, 51.2490289, -0.2414471, 51.2490289 ], "geometry": { "type": "Point", "coordinates": [ -0.2414471, 51.2490289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21511734" }, "bbox": [ -0.2650788, 51.2484634, -0.2650788, 51.2484634 ], "geometry": { "type": "Point", "coordinates": [ -0.2650788, 51.2484634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22523726" }, "bbox": [ -0.2476127, 51.2564219, -0.2476127, 51.2564219 ], "geometry": { "type": "Point", "coordinates": [ -0.2476127, 51.2564219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39454106" }, "bbox": [ -0.0065106, 51.1878424, -0.0065106, 51.1878424 ], "geometry": { "type": "Point", "coordinates": [ -0.0065106, 51.1878424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416234" }, "bbox": [ -0.5194771, 51.1620203, -0.5194771, 51.1620203 ], "geometry": { "type": "Point", "coordinates": [ -0.5194771, 51.1620203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34424126" }, "bbox": [ -0.0790606, 51.1638326, -0.0790606, 51.1638326 ], "geometry": { "type": "Point", "coordinates": [ -0.0790606, 51.1638326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34426662" }, "bbox": [ -0.0755155, 51.1669888, -0.0755155, 51.1669888 ], "geometry": { "type": "Point", "coordinates": [ -0.0755155, 51.1669888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30443035" }, "bbox": [ -0.1370697, 51.183577, -0.1370697, 51.183577 ], "geometry": { "type": "Point", "coordinates": [ -0.1370697, 51.183577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07590916" }, "bbox": [ -0.4645483, 51.3214323, -0.4645483, 51.3214323 ], "geometry": { "type": "Point", "coordinates": [ -0.4645483, 51.3214323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35452838" }, "bbox": [ -0.0653284, 51.1916043, -0.0653284, 51.1916043 ], "geometry": { "type": "Point", "coordinates": [ -0.0653284, 51.1916043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31483720" }, "bbox": [ -0.1204115, 51.2178083, -0.1204115, 51.2178083 ], "geometry": { "type": "Point", "coordinates": [ -0.1204115, 51.2178083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03383618" }, "bbox": [ -0.5240229, 51.1336284, -0.5240229, 51.1336284 ], "geometry": { "type": "Point", "coordinates": [ -0.5240229, 51.1336284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19420364" }, "bbox": [ -0.2987832, 51.1706829, -0.2987832, 51.1706829 ], "geometry": { "type": "Point", "coordinates": [ -0.2987832, 51.1706829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31423201" }, "bbox": [ -0.1232633, 51.162244, -0.1232633, 51.162244 ], "geometry": { "type": "Point", "coordinates": [ -0.1232633, 51.162244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42413408" }, "bbox": [ 0.0338322, 51.1513622, 0.0338322, 51.1513622 ], "geometry": { "type": "Point", "coordinates": [ 0.0338322, 51.1513622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33476497" }, "bbox": [ -0.0880041, 51.2150796, -0.0880041, 51.2150796 ], "geometry": { "type": "Point", "coordinates": [ -0.0880041, 51.2150796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37449523" }, "bbox": [ -0.0276557, 51.1805247, -0.0276557, 51.1805247 ], "geometry": { "type": "Point", "coordinates": [ -0.0276557, 51.1805247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15418028" }, "bbox": [ -0.3452792, 51.1592628, -0.3452792, 51.1592628 ], "geometry": { "type": "Point", "coordinates": [ -0.3452792, 51.1592628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39593607" }, "bbox": [ -0.0017984, 51.3136186, -0.0017984, 51.3136186 ], "geometry": { "type": "Point", "coordinates": [ -0.0017984, 51.3136186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41429864" }, "bbox": [ 0.0293433, 51.1652769, 0.0293433, 51.1652769 ], "geometry": { "type": "Point", "coordinates": [ 0.0293433, 51.1652769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08428914" }, "bbox": [ -0.4439064, 51.1681722, -0.4439064, 51.1681722 ], "geometry": { "type": "Point", "coordinates": [ -0.4439064, 51.1681722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04555018" }, "bbox": [ -0.5027314, 51.2861897, -0.5027314, 51.2861897 ], "geometry": { "type": "Point", "coordinates": [ -0.5027314, 51.2861897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01433470" }, "bbox": [ -0.5498711, 51.1831505, -0.5498711, 51.1831505 ], "geometry": { "type": "Point", "coordinates": [ -0.5498711, 51.1831505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09392611" }, "bbox": [ -0.4395587, 51.1408846, -0.4395587, 51.1408846 ], "geometry": { "type": "Point", "coordinates": [ -0.4395587, 51.1408846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40451153" }, "bbox": [ 0.0036174, 51.191807, 0.0036174, 51.191807 ], "geometry": { "type": "Point", "coordinates": [ 0.0036174, 51.191807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13377450" }, "bbox": [ -0.3761057, 51.1256905, -0.3761057, 51.1256905 ], "geometry": { "type": "Point", "coordinates": [ -0.3761057, 51.1256905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16641986" }, "bbox": [ -0.3323004, 51.3710345, -0.3323004, 51.3710345 ], "geometry": { "type": "Point", "coordinates": [ -0.3323004, 51.3710345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06557881" }, "bbox": [ -0.4700056, 51.2913838, -0.4700056, 51.2913838 ], "geometry": { "type": "Point", "coordinates": [ -0.4700056, 51.2913838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16394908" }, "bbox": [ -0.3358524, 51.1391743, -0.3358524, 51.1391743 ], "geometry": { "type": "Point", "coordinates": [ -0.3358524, 51.1391743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36430147" }, "bbox": [ -0.0556642, 51.1743038, -0.0556642, 51.1743038 ], "geometry": { "type": "Point", "coordinates": [ -0.0556642, 51.1743038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01660182" }, "bbox": [ -0.5494871, 51.3911089, -0.5494871, 51.3911089 ], "geometry": { "type": "Point", "coordinates": [ -0.5494871, 51.3911089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23403279" }, "bbox": [ -0.2383528, 51.1530483, -0.2383528, 51.1530483 ], "geometry": { "type": "Point", "coordinates": [ -0.2383528, 51.1530483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24412539" }, "bbox": [ -0.224563, 51.158337, -0.224563, 51.158337 ], "geometry": { "type": "Point", "coordinates": [ -0.224563, 51.158337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06377537" }, "bbox": [ -0.4759016, 51.1257635, -0.4759016, 51.1257635 ], "geometry": { "type": "Point", "coordinates": [ -0.4759016, 51.1257635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31445135" }, "bbox": [ -0.1197912, 51.1832742, -0.1197912, 51.1832742 ], "geometry": { "type": "Point", "coordinates": [ -0.1197912, 51.1832742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12432005" }, "bbox": [ -0.3963685, 51.1757686, -0.3963685, 51.1757686 ], "geometry": { "type": "Point", "coordinates": [ -0.3963685, 51.1757686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23449899" }, "bbox": [ -0.2271778, 51.1907682, -0.2271778, 51.1907682 ], "geometry": { "type": "Point", "coordinates": [ -0.2271778, 51.1907682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02420682" }, "bbox": [ -0.5413888, 51.1754294, -0.5413888, 51.1754294 ], "geometry": { "type": "Point", "coordinates": [ -0.5413888, 51.1754294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07371566" }, "bbox": [ -0.4702056, 51.1282246, -0.4702056, 51.1282246 ], "geometry": { "type": "Point", "coordinates": [ -0.4702056, 51.1282246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04627185" }, "bbox": [ -0.4975591, 51.3553518, -0.4975591, 51.3553518 ], "geometry": { "type": "Point", "coordinates": [ -0.4975591, 51.3553518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09419281" }, "bbox": [ -0.4290974, 51.1649737, -0.4290974, 51.1649737 ], "geometry": { "type": "Point", "coordinates": [ -0.4290974, 51.1649737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32480933" }, "bbox": [ -0.1100324, 51.2188231, -0.1100324, 51.2188231 ], "geometry": { "type": "Point", "coordinates": [ -0.1100324, 51.2188231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00723901" }, "bbox": [ -0.557368, 51.4383082, -0.557368, 51.4383082 ], "geometry": { "type": "Point", "coordinates": [ -0.557368, 51.4383082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26594422" }, "bbox": [ -0.1870829, 51.3179942, -0.1870829, 51.3179942 ], "geometry": { "type": "Point", "coordinates": [ -0.1870829, 51.3179942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35445129" }, "bbox": [ -0.0626074, 51.1817896, -0.0626074, 51.1817896 ], "geometry": { "type": "Point", "coordinates": [ -0.0626074, 51.1817896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10579003" }, "bbox": [ -0.410504, 51.3014628, -0.410504, 51.3014628 ], "geometry": { "type": "Point", "coordinates": [ -0.410504, 51.3014628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23453648" }, "bbox": [ -0.2359647, 51.1952917, -0.2359647, 51.1952917 ], "geometry": { "type": "Point", "coordinates": [ -0.2359647, 51.1952917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38594437" }, "bbox": [ -0.0148954, 51.3165879, -0.0148954, 51.3165879 ], "geometry": { "type": "Point", "coordinates": [ -0.0148954, 51.3165879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19543228" }, "bbox": [ -0.290815, 51.2752806, -0.290815, 51.2752806 ], "geometry": { "type": "Point", "coordinates": [ -0.290815, 51.2752806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10582376" }, "bbox": [ -0.419735, 51.3172662, -0.419735, 51.3172662 ], "geometry": { "type": "Point", "coordinates": [ -0.419735, 51.3172662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28449391" }, "bbox": [ -0.1561427, 51.1889537, -0.1561427, 51.1889537 ], "geometry": { "type": "Point", "coordinates": [ -0.1561427, 51.1889537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403115" }, "bbox": [ -0.4239199, 51.1498912, -0.4239199, 51.1498912 ], "geometry": { "type": "Point", "coordinates": [ -0.4239199, 51.1498912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13401392" }, "bbox": [ -0.383766, 51.1563562, -0.383766, 51.1563562 ], "geometry": { "type": "Point", "coordinates": [ -0.383766, 51.1563562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42502842" }, "bbox": [ 0.0366695, 51.2352806, 0.0366695, 51.2352806 ], "geometry": { "type": "Point", "coordinates": [ 0.0366695, 51.2352806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04511594" }, "bbox": [ -0.5086667, 51.2571375, -0.5086667, 51.2571375 ], "geometry": { "type": "Point", "coordinates": [ -0.5086667, 51.2571375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04609696" }, "bbox": [ -0.4947479, 51.3379695, -0.4947479, 51.3379695 ], "geometry": { "type": "Point", "coordinates": [ -0.4947479, 51.3379695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10572957" }, "bbox": [ -0.4191459, 51.3066519, -0.4191459, 51.3066519 ], "geometry": { "type": "Point", "coordinates": [ -0.4191459, 51.3066519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01562782" }, "bbox": [ -0.5487572, 51.3014285, -0.5487572, 51.3014285 ], "geometry": { "type": "Point", "coordinates": [ -0.5487572, 51.3014285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31475880" }, "bbox": [ -0.1175795, 51.2143514, -0.1175795, 51.2143514 ], "geometry": { "type": "Point", "coordinates": [ -0.1175795, 51.2143514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19406795" }, "bbox": [ -0.2902587, 51.1552989, -0.2902587, 51.1552989 ], "geometry": { "type": "Point", "coordinates": [ -0.2902587, 51.1552989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10544668" }, "bbox": [ -0.4176228, 51.2803354, -0.4176228, 51.2803354 ], "geometry": { "type": "Point", "coordinates": [ -0.4176228, 51.2803354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06377367" }, "bbox": [ -0.4760852, 51.1284076, -0.4760852, 51.1284076 ], "geometry": { "type": "Point", "coordinates": [ -0.4760852, 51.1284076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22515159" }, "bbox": [ -0.2459637, 51.2503737, -0.2459637, 51.2503737 ], "geometry": { "type": "Point", "coordinates": [ -0.2459637, 51.2503737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11629493" }, "bbox": [ -0.3938591, 51.3544228, -0.3938591, 51.3544228 ], "geometry": { "type": "Point", "coordinates": [ -0.3938591, 51.3544228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33478644" }, "bbox": [ -0.08511, 51.2104813, -0.08511, 51.2104813 ], "geometry": { "type": "Point", "coordinates": [ -0.08511, 51.2104813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36540835" }, "bbox": [ -0.0506087, 51.2722196, -0.0506087, 51.2722196 ], "geometry": { "type": "Point", "coordinates": [ -0.0506087, 51.2722196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19480792" }, "bbox": [ -0.296235, 51.2271418, -0.296235, 51.2271418 ], "geometry": { "type": "Point", "coordinates": [ -0.296235, 51.2271418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28546825" }, "bbox": [ -0.1566333, 51.2729079, -0.1566333, 51.2729079 ], "geometry": { "type": "Point", "coordinates": [ -0.1566333, 51.2729079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14573221" }, "bbox": [ -0.3619585, 51.3023454, -0.3619585, 51.3023454 ], "geometry": { "type": "Point", "coordinates": [ -0.3619585, 51.3023454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520785" }, "bbox": [ -0.3951236, 51.2638252, -0.3951236, 51.2638252 ], "geometry": { "type": "Point", "coordinates": [ -0.3951236, 51.2638252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22522402" }, "bbox": [ -0.2496352, 51.2543125, -0.2496352, 51.2543125 ], "geometry": { "type": "Point", "coordinates": [ -0.2496352, 51.2543125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31472820" }, "bbox": [ -0.1219102, 51.2089734, -0.1219102, 51.2089734 ], "geometry": { "type": "Point", "coordinates": [ -0.1219102, 51.2089734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18465477" }, "bbox": [ -0.3045554, 51.2077276, -0.3045554, 51.2077276 ], "geometry": { "type": "Point", "coordinates": [ -0.3045554, 51.2077276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16517447" }, "bbox": [ -0.3286736, 51.2504278, -0.3286736, 51.2504278 ], "geometry": { "type": "Point", "coordinates": [ -0.3286736, 51.2504278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446870" }, "bbox": [ -0.1314497, 51.1865762, -0.1314497, 51.1865762 ], "geometry": { "type": "Point", "coordinates": [ -0.1314497, 51.1865762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19464055" }, "bbox": [ -0.2922312, 51.205809, -0.2922312, 51.205809 ], "geometry": { "type": "Point", "coordinates": [ -0.2922312, 51.205809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39474279" }, "bbox": [ -0.0053347, 51.2123305, -0.0053347, 51.2123305 ], "geometry": { "type": "Point", "coordinates": [ -0.0053347, 51.2123305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24454741" }, "bbox": [ -0.2199192, 51.1944724, -0.2199192, 51.1944724 ], "geometry": { "type": "Point", "coordinates": [ -0.2199192, 51.1944724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421173" }, "bbox": [ -0.3690244, 51.1724966, -0.3690244, 51.1724966 ], "geometry": { "type": "Point", "coordinates": [ -0.3690244, 51.1724966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11552104" }, "bbox": [ -0.4067648, 51.2837134, -0.4067648, 51.2837134 ], "geometry": { "type": "Point", "coordinates": [ -0.4067648, 51.2837134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19391358" }, "bbox": [ -0.2983704, 51.1431352, -0.2983704, 51.1431352 ], "geometry": { "type": "Point", "coordinates": [ -0.2983704, 51.1431352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25422202" }, "bbox": [ -0.210629, 51.1634905, -0.210629, 51.1634905 ], "geometry": { "type": "Point", "coordinates": [ -0.210629, 51.1634905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19382935" }, "bbox": [ -0.2966138, 51.1318644, -0.2966138, 51.1318644 ], "geometry": { "type": "Point", "coordinates": [ -0.2966138, 51.1318644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03526905" }, "bbox": [ -0.5154861, 51.2582876, -0.5154861, 51.2582876 ], "geometry": { "type": "Point", "coordinates": [ -0.5154861, 51.2582876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07495262" }, "bbox": [ -0.4614855, 51.2356634, -0.4614855, 51.2356634 ], "geometry": { "type": "Point", "coordinates": [ -0.4614855, 51.2356634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29481652" }, "bbox": [ -0.1518769, 51.2213611, -0.1518769, 51.2213611 ], "geometry": { "type": "Point", "coordinates": [ -0.1518769, 51.2213611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33436848" }, "bbox": [ -0.0891312, 51.1749334, -0.0891312, 51.1749334 ], "geometry": { "type": "Point", "coordinates": [ -0.0891312, 51.1749334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22486204" }, "bbox": [ -0.2459295, 51.2181464, -0.2459295, 51.2181464 ], "geometry": { "type": "Point", "coordinates": [ -0.2459295, 51.2181464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24425825" }, "bbox": [ -0.2195049, 51.1659571, -0.2195049, 51.1659571 ], "geometry": { "type": "Point", "coordinates": [ -0.2195049, 51.1659571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16640858" }, "bbox": [ -0.3338033, 51.3681142, -0.3338033, 51.3681142 ], "geometry": { "type": "Point", "coordinates": [ -0.3338033, 51.3681142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26596202" }, "bbox": [ -0.1843976, 51.3161863, -0.1843976, 51.3161863 ], "geometry": { "type": "Point", "coordinates": [ -0.1843976, 51.3161863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19427547" }, "bbox": [ -0.2884794, 51.1689823, -0.2884794, 51.1689823 ], "geometry": { "type": "Point", "coordinates": [ -0.2884794, 51.1689823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30541727" }, "bbox": [ -0.1354251, 51.2728015, -0.1354251, 51.2728015 ], "geometry": { "type": "Point", "coordinates": [ -0.1354251, 51.2728015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05528733" }, "bbox": [ -0.4842253, 51.2602413, -0.4842253, 51.2602413 ], "geometry": { "type": "Point", "coordinates": [ -0.4842253, 51.2602413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10487312" }, "bbox": [ -0.415754, 51.221529, -0.415754, 51.221529 ], "geometry": { "type": "Point", "coordinates": [ -0.415754, 51.221529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05368119" }, "bbox": [ -0.4897265, 51.1151858, -0.4897265, 51.1151858 ], "geometry": { "type": "Point", "coordinates": [ -0.4897265, 51.1151858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11478624" }, "bbox": [ -0.3998833, 51.2133987, -0.3998833, 51.2133987 ], "geometry": { "type": "Point", "coordinates": [ -0.3998833, 51.2133987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18390907" }, "bbox": [ -0.3135702, 51.1387529, -0.3135702, 51.1387529 ], "geometry": { "type": "Point", "coordinates": [ -0.3135702, 51.1387529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00542148" }, "bbox": [ -0.5646564, 51.280616, -0.5646564, 51.280616 ], "geometry": { "type": "Point", "coordinates": [ -0.5646564, 51.280616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04474842" }, "bbox": [ -0.5054404, 51.216438, -0.5054404, 51.216438 ], "geometry": { "type": "Point", "coordinates": [ -0.5054404, 51.216438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29573310" }, "bbox": [ -0.1463037, 51.2983154, -0.1463037, 51.2983154 ], "geometry": { "type": "Point", "coordinates": [ -0.1463037, 51.2983154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41474698" }, "bbox": [ 0.0237643, 51.2135341, 0.0237643, 51.2135341 ], "geometry": { "type": "Point", "coordinates": [ 0.0237643, 51.2135341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28450332" }, "bbox": [ -0.1684691, 51.1928475, -0.1684691, 51.1928475 ], "geometry": { "type": "Point", "coordinates": [ -0.1684691, 51.1928475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31413716" }, "bbox": [ -0.1228456, 51.1546296, -0.1228456, 51.1546296 ], "geometry": { "type": "Point", "coordinates": [ -0.1228456, 51.1546296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40564378" }, "bbox": [ 0.0126609, 51.2925656, 0.0126609, 51.2925656 ], "geometry": { "type": "Point", "coordinates": [ 0.0126609, 51.2925656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01553756" }, "bbox": [ -0.5476977, 51.2901158, -0.5476977, 51.2901158 ], "geometry": { "type": "Point", "coordinates": [ -0.5476977, 51.2901158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11406905" }, "bbox": [ -0.404491, 51.1488784, -0.404491, 51.1488784 ], "geometry": { "type": "Point", "coordinates": [ -0.404491, 51.1488784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24524160" }, "bbox": [ -0.2178393, 51.2588061, -0.2178393, 51.2588061 ], "geometry": { "type": "Point", "coordinates": [ -0.2178393, 51.2588061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33499665" }, "bbox": [ -0.0828386, 51.2302751, -0.0828386, 51.2302751 ], "geometry": { "type": "Point", "coordinates": [ -0.0828386, 51.2302751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31499716" }, "bbox": [ -0.1118416, 51.2265502, -0.1118416, 51.2265502 ], "geometry": { "type": "Point", "coordinates": [ -0.1118416, 51.2265502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03370829" }, "bbox": [ -0.5282892, 51.1256799, -0.5282892, 51.1256799 ], "geometry": { "type": "Point", "coordinates": [ -0.5282892, 51.1256799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35554015" }, "bbox": [ -0.0606442, 51.2787076, -0.0606442, 51.2787076 ], "geometry": { "type": "Point", "coordinates": [ -0.0606442, 51.2787076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22444562" }, "bbox": [ -0.2492908, 51.1875598, -0.2492908, 51.1875598 ], "geometry": { "type": "Point", "coordinates": [ -0.2492908, 51.1875598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21454711" }, "bbox": [ -0.2632609, 51.1923169, -0.2632609, 51.1923169 ], "geometry": { "type": "Point", "coordinates": [ -0.2632609, 51.1923169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12572442" }, "bbox": [ -0.3911389, 51.3048582, -0.3911389, 51.3048582 ], "geometry": { "type": "Point", "coordinates": [ -0.3911389, 51.3048582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04543808" }, "bbox": [ -0.5048521, 51.2762933, -0.5048521, 51.2762933 ], "geometry": { "type": "Point", "coordinates": [ -0.5048521, 51.2762933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19620272" }, "bbox": [ -0.2923105, 51.3510685, -0.2923105, 51.3510685 ], "geometry": { "type": "Point", "coordinates": [ -0.2923105, 51.3510685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09380522" }, "bbox": [ -0.4427766, 51.1328535, -0.4427766, 51.1328535 ], "geometry": { "type": "Point", "coordinates": [ -0.4427766, 51.1328535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424805" }, "bbox": [ -0.5212322, 51.1682941, -0.5212322, 51.1682941 ], "geometry": { "type": "Point", "coordinates": [ -0.5212322, 51.1682941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03526509" }, "bbox": [ -0.51593, 51.2585461, -0.51593, 51.2585461 ], "geometry": { "type": "Point", "coordinates": [ -0.51593, 51.2585461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38596325" }, "bbox": [ -0.0121606, 51.3154399, -0.0121606, 51.3154399 ], "geometry": { "type": "Point", "coordinates": [ -0.0121606, 51.3154399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33407599" }, "bbox": [ -0.088992, 51.1525117, -0.088992, 51.1525117 ], "geometry": { "type": "Point", "coordinates": [ -0.088992, 51.1525117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07512178" }, "bbox": [ -0.4649651, 51.2551792, -0.4649651, 51.2551792 ], "geometry": { "type": "Point", "coordinates": [ -0.4649651, 51.2551792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23516060" }, "bbox": [ -0.2299818, 51.2501701, -0.2299818, 51.2501701 ], "geometry": { "type": "Point", "coordinates": [ -0.2299818, 51.2501701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29491546" }, "bbox": [ -0.1516565, 51.2297845, -0.1516565, 51.2297845 ], "geometry": { "type": "Point", "coordinates": [ -0.1516565, 51.2297845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07542787" }, "bbox": [ -0.4632315, 51.2830427, -0.4632315, 51.2830427 ], "geometry": { "type": "Point", "coordinates": [ -0.4632315, 51.2830427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26429378" }, "bbox": [ -0.185533, 51.1702063, -0.185533, 51.1702063 ], "geometry": { "type": "Point", "coordinates": [ -0.185533, 51.1702063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546568" }, "bbox": [ -0.3431716, 51.2795573, -0.3431716, 51.2795573 ], "geometry": { "type": "Point", "coordinates": [ -0.3431716, 51.2795573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02358502" }, "bbox": [ -0.5322951, 51.1050652, -0.5322951, 51.1050652 ], "geometry": { "type": "Point", "coordinates": [ -0.5322951, 51.1050652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25416436" }, "bbox": [ -0.2045574, 51.1577129, -0.2045574, 51.1577129 ], "geometry": { "type": "Point", "coordinates": [ -0.2045574, 51.1577129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20473184" }, "bbox": [ -0.2787543, 51.2172801, -0.2787543, 51.2172801 ], "geometry": { "type": "Point", "coordinates": [ -0.2787543, 51.2172801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29443587" }, "bbox": [ -0.150327, 51.1885192, -0.150327, 51.1885192 ], "geometry": { "type": "Point", "coordinates": [ -0.150327, 51.1885192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24462582" }, "bbox": [ -0.2226632, 51.2071184, -0.2226632, 51.2071184 ], "geometry": { "type": "Point", "coordinates": [ -0.2226632, 51.2071184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12423760" }, "bbox": [ -0.3940864, 51.1716174, -0.3940864, 51.1716174 ], "geometry": { "type": "Point", "coordinates": [ -0.3940864, 51.1716174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42406585" }, "bbox": [ 0.038188, 51.1490989, 0.038188, 51.1490989 ], "geometry": { "type": "Point", "coordinates": [ 0.038188, 51.1490989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33435930" }, "bbox": [ -0.0903024, 51.1733525, -0.0903024, 51.1733525 ], "geometry": { "type": "Point", "coordinates": [ -0.0903024, 51.1733525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13393060" }, "bbox": [ -0.3816476, 51.1445397, -0.3816476, 51.1445397 ], "geometry": { "type": "Point", "coordinates": [ -0.3816476, 51.1445397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40444571" }, "bbox": [ 0.0081098, 51.1844123, 0.0081098, 51.1844123 ], "geometry": { "type": "Point", "coordinates": [ 0.0081098, 51.1844123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13588618" }, "bbox": [ -0.3679379, 51.3114272, -0.3679379, 51.3114272 ], "geometry": { "type": "Point", "coordinates": [ -0.3679379, 51.3114272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23463913" }, "bbox": [ -0.2352094, 51.2010839, -0.2352094, 51.2010839 ], "geometry": { "type": "Point", "coordinates": [ -0.2352094, 51.2010839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15464363" }, "bbox": [ -0.3489111, 51.2072298, -0.3489111, 51.2072298 ], "geometry": { "type": "Point", "coordinates": [ -0.3489111, 51.2072298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520665" }, "bbox": [ -0.3952469, 51.2620414, -0.3952469, 51.2620414 ], "geometry": { "type": "Point", "coordinates": [ -0.3952469, 51.2620414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24416287" }, "bbox": [ -0.2190223, 51.1624251, -0.2190223, 51.1624251 ], "geometry": { "type": "Point", "coordinates": [ -0.2190223, 51.1624251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14384820" }, "bbox": [ -0.3651498, 51.1316873, -0.3651498, 51.1316873 ], "geometry": { "type": "Point", "coordinates": [ -0.3651498, 51.1316873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28499226" }, "bbox": [ -0.1553172, 51.2279419, -0.1553172, 51.2279419 ], "geometry": { "type": "Point", "coordinates": [ -0.1553172, 51.2279419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39579317" }, "bbox": [ 0.0056434, 51.296227, 0.0056434, 51.296227 ], "geometry": { "type": "Point", "coordinates": [ 0.0056434, 51.296227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13421751" }, "bbox": [ -0.3827883, 51.1706461, -0.3827883, 51.1706461 ], "geometry": { "type": "Point", "coordinates": [ -0.3827883, 51.1706461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566421" }, "bbox": [ -0.2854293, 51.2923843, -0.2854293, 51.2923843 ], "geometry": { "type": "Point", "coordinates": [ -0.2854293, 51.2923843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04342938" }, "bbox": [ -0.5118434, 51.0992621, -0.5118434, 51.0992621 ], "geometry": { "type": "Point", "coordinates": [ -0.5118434, 51.0992621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23409981" }, "bbox": [ -0.2284257, 51.1531396, -0.2284257, 51.1531396 ], "geometry": { "type": "Point", "coordinates": [ -0.2284257, 51.1531396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07563828" }, "bbox": [ -0.4612568, 51.2955619, -0.4612568, 51.2955619 ], "geometry": { "type": "Point", "coordinates": [ -0.4612568, 51.2955619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38454439" }, "bbox": [ -0.0203864, 51.1910471, -0.0203864, 51.1910471 ], "geometry": { "type": "Point", "coordinates": [ -0.0203864, 51.1910471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08415898" }, "bbox": [ -0.4486776, 51.1667172, -0.4486776, 51.1667172 ], "geometry": { "type": "Point", "coordinates": [ -0.4486776, 51.1667172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05477454" }, "bbox": [ -0.4871138, 51.2171044, -0.4871138, 51.2171044 ], "geometry": { "type": "Point", "coordinates": [ -0.4871138, 51.2171044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40549147" }, "bbox": [ 0.0184068, 51.2718841, 0.0184068, 51.2718841 ], "geometry": { "type": "Point", "coordinates": [ 0.0184068, 51.2718841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08475301" }, "bbox": [ -0.4475954, 51.2119646, -0.4475954, 51.2119646 ], "geometry": { "type": "Point", "coordinates": [ -0.4475954, 51.2119646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25462117" }, "bbox": [ -0.2091255, 51.2009545, -0.2091255, 51.2009545 ], "geometry": { "type": "Point", "coordinates": [ -0.2091255, 51.2009545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571905" }, "bbox": [ -0.4350728, 51.3021364, -0.4350728, 51.3021364 ], "geometry": { "type": "Point", "coordinates": [ -0.4350728, 51.3021364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16373222" }, "bbox": [ -0.3392123, 51.1224321, -0.3392123, 51.1224321 ], "geometry": { "type": "Point", "coordinates": [ -0.3392123, 51.1224321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28453648" }, "bbox": [ -0.1653313, 51.1938595, -0.1653313, 51.1938595 ], "geometry": { "type": "Point", "coordinates": [ -0.1653313, 51.1938595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26526346" }, "bbox": [ -0.1864421, 51.2576805, -0.1864421, 51.2576805 ], "geometry": { "type": "Point", "coordinates": [ -0.1864421, 51.2576805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455498" }, "bbox": [ -0.1758445, 51.1988581, -0.1758445, 51.1988581 ], "geometry": { "type": "Point", "coordinates": [ -0.1758445, 51.1988581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368527" }, "bbox": [ -0.5176343, 51.1161719, -0.5176343, 51.1161719 ], "geometry": { "type": "Point", "coordinates": [ -0.5176343, 51.1161719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20487667" }, "bbox": [ -0.2720575, 51.2244693, -0.2720575, 51.2244693 ], "geometry": { "type": "Point", "coordinates": [ -0.2720575, 51.2244693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02424748" }, "bbox": [ -0.5356785, 51.1723081, -0.5356785, 51.1723081 ], "geometry": { "type": "Point", "coordinates": [ -0.5356785, 51.1723081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08478090" }, "bbox": [ -0.4439876, 51.2201707, -0.4439876, 51.2201707 ], "geometry": { "type": "Point", "coordinates": [ -0.4439876, 51.2201707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10468995" }, "bbox": [ -0.414204, 51.2108225, -0.414204, 51.2108225 ], "geometry": { "type": "Point", "coordinates": [ -0.414204, 51.2108225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29454670" }, "bbox": [ -0.1485334, 51.1958993, -0.1485334, 51.1958993 ], "geometry": { "type": "Point", "coordinates": [ -0.1485334, 51.1958993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17413555" }, "bbox": [ -0.3230382, 51.1613223, -0.3230382, 51.1613223 ], "geometry": { "type": "Point", "coordinates": [ -0.3230382, 51.1613223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31462194" }, "bbox": [ -0.1230468, 51.2066079, -0.1230468, 51.2066079 ], "geometry": { "type": "Point", "coordinates": [ -0.1230468, 51.2066079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13400977" }, "bbox": [ -0.3843159, 51.1549835, -0.3843159, 51.1549835 ], "geometry": { "type": "Point", "coordinates": [ -0.3843159, 51.1549835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06567549" }, "bbox": [ -0.4699627, 51.2975681, -0.4699627, 51.2975681 ], "geometry": { "type": "Point", "coordinates": [ -0.4699627, 51.2975681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16596303" }, "bbox": [ -0.3277463, 51.3185663, -0.3277463, 51.3185663 ], "geometry": { "type": "Point", "coordinates": [ -0.3277463, 51.3185663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07403887" }, "bbox": [ -0.465951, 51.1570806, -0.465951, 51.1570806 ], "geometry": { "type": "Point", "coordinates": [ -0.465951, 51.1570806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14424776" }, "bbox": [ -0.3638668, 51.1726884, -0.3638668, 51.1726884 ], "geometry": { "type": "Point", "coordinates": [ -0.3638668, 51.1726884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33478611" }, "bbox": [ -0.0850972, 51.2075469, -0.0850972, 51.2075469 ], "geometry": { "type": "Point", "coordinates": [ -0.0850972, 51.2075469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21459265" }, "bbox": [ -0.25644, 51.1970292, -0.25644, 51.1970292 ], "geometry": { "type": "Point", "coordinates": [ -0.25644, 51.1970292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10559853" }, "bbox": [ -0.4100133, 51.2880442, -0.4100133, 51.2880442 ], "geometry": { "type": "Point", "coordinates": [ -0.4100133, 51.2880442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12421197" }, "bbox": [ -0.3976246, 51.1750191, -0.3976246, 51.1750191 ], "geometry": { "type": "Point", "coordinates": [ -0.3976246, 51.1750191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21569008" }, "bbox": [ -0.2530557, 51.2908826, -0.2530557, 51.2908826 ], "geometry": { "type": "Point", "coordinates": [ -0.2530557, 51.2908826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14625151" }, "bbox": [ -0.3569678, 51.3501407, -0.3569678, 51.3501407 ], "geometry": { "type": "Point", "coordinates": [ -0.3569678, 51.3501407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00371870" }, "bbox": [ -0.5705209, 51.1299013, -0.5705209, 51.1299013 ], "geometry": { "type": "Point", "coordinates": [ -0.5705209, 51.1299013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14574957" }, "bbox": [ -0.3590776, 51.3056156, -0.3590776, 51.3056156 ], "geometry": { "type": "Point", "coordinates": [ -0.3590776, 51.3056156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18566279" }, "bbox": [ -0.2998848, 51.2979306, -0.2998848, 51.2979306 ], "geometry": { "type": "Point", "coordinates": [ -0.2998848, 51.2979306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31473580" }, "bbox": [ -0.1208237, 51.2142722, -0.1208237, 51.2142722 ], "geometry": { "type": "Point", "coordinates": [ -0.1208237, 51.2142722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21569702" }, "bbox": [ -0.2520772, 51.2902672, -0.2520772, 51.2902672 ], "geometry": { "type": "Point", "coordinates": [ -0.2520772, 51.2902672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40499936" }, "bbox": [ 0.017715, 51.2261179, 0.017715, 51.2261179 ], "geometry": { "type": "Point", "coordinates": [ 0.017715, 51.2261179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18429730" }, "bbox": [ -0.2993567, 51.1676893, -0.2993567, 51.1676893 ], "geometry": { "type": "Point", "coordinates": [ -0.2993567, 51.1676893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39585161" }, "bbox": [ 0.0002097, 51.309595, 0.0002097, 51.309595 ], "geometry": { "type": "Point", "coordinates": [ 0.0002097, 51.309595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06341862" }, "bbox": [ -0.4847533, 51.1010712, -0.4847533, 51.1010712 ], "geometry": { "type": "Point", "coordinates": [ -0.4847533, 51.1010712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03640737" }, "bbox": [ -0.5207427, 51.3690008, -0.5207427, 51.3690008 ], "geometry": { "type": "Point", "coordinates": [ -0.5207427, 51.3690008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02758296" }, "bbox": [ -0.5209283, 51.4732934, -0.5209283, 51.4732934 ], "geometry": { "type": "Point", "coordinates": [ -0.5209283, 51.4732934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05476282" }, "bbox": [ -0.4890574, 51.2196349, -0.4890574, 51.2196349 ], "geometry": { "type": "Point", "coordinates": [ -0.4890574, 51.2196349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34496542" }, "bbox": [ -0.0728072, 51.2281302, -0.0728072, 51.2281302 ], "geometry": { "type": "Point", "coordinates": [ -0.0728072, 51.2281302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14390988" }, "bbox": [ -0.3702352, 51.1469169, -0.3702352, 51.1469169 ], "geometry": { "type": "Point", "coordinates": [ -0.3702352, 51.1469169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05545829" }, "bbox": [ -0.4875127, 51.278171, -0.4875127, 51.278171 ], "geometry": { "type": "Point", "coordinates": [ -0.4875127, 51.278171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466921" }, "bbox": [ -0.4597527, 51.2050111, -0.4597527, 51.2050111 ], "geometry": { "type": "Point", "coordinates": [ -0.4597527, 51.2050111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42453232" }, "bbox": [ 0.0352058, 51.1894118, 0.0352058, 51.1894118 ], "geometry": { "type": "Point", "coordinates": [ 0.0352058, 51.1894118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20414967" }, "bbox": [ -0.2782213, 51.1616325, -0.2782213, 51.1616325 ], "geometry": { "type": "Point", "coordinates": [ -0.2782213, 51.1616325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11502121" }, "bbox": [ -0.4081294, 51.2403146, -0.4081294, 51.2403146 ], "geometry": { "type": "Point", "coordinates": [ -0.4081294, 51.2403146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10567930" }, "bbox": [ -0.4121956, 51.2951784, -0.4121956, 51.2951784 ], "geometry": { "type": "Point", "coordinates": [ -0.4121956, 51.2951784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31449266" }, "bbox": [ -0.1135594, 51.1856399, -0.1135594, 51.1856399 ], "geometry": { "type": "Point", "coordinates": [ -0.1135594, 51.1856399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475048" }, "bbox": [ -0.0614826, 51.2103124, -0.0614826, 51.2103124 ], "geometry": { "type": "Point", "coordinates": [ -0.0614826, 51.2103124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19505674" }, "bbox": [ -0.2883538, 51.2434335, -0.2883538, 51.2434335 ], "geometry": { "type": "Point", "coordinates": [ -0.2883538, 51.2434335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42430767" }, "bbox": [ 0.031094, 51.1746821, 0.031094, 51.1746821 ], "geometry": { "type": "Point", "coordinates": [ 0.031094, 51.1746821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33455134" }, "bbox": [ -0.090642, 51.1916505, -0.090642, 51.1916505 ], "geometry": { "type": "Point", "coordinates": [ -0.090642, 51.1916505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02656854" }, "bbox": [ -0.5259997, 51.3796516, -0.5259997, 51.3796516 ], "geometry": { "type": "Point", "coordinates": [ -0.5259997, 51.3796516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37466451" }, "bbox": [ -0.0313211, 51.2012734, -0.0313211, 51.2012734 ], "geometry": { "type": "Point", "coordinates": [ -0.0313211, 51.2012734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14388308" }, "bbox": [ -0.3597032, 51.130353, -0.3597032, 51.130353 ], "geometry": { "type": "Point", "coordinates": [ -0.3597032, 51.130353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23407639" }, "bbox": [ -0.2318781, 51.1494299, -0.2318781, 51.1494299 ], "geometry": { "type": "Point", "coordinates": [ -0.2318781, 51.1494299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09411093" }, "bbox": [ -0.4409189, 51.1662485, -0.4409189, 51.1662485 ], "geometry": { "type": "Point", "coordinates": [ -0.4409189, 51.1662485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14576815" }, "bbox": [ -0.3562489, 51.3020998, -0.3562489, 51.3020998 ], "geometry": { "type": "Point", "coordinates": [ -0.3562489, 51.3020998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23478228" }, "bbox": [ -0.2289046, 51.2117202, -0.2289046, 51.2117202 ], "geometry": { "type": "Point", "coordinates": [ -0.2289046, 51.2117202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09473320" }, "bbox": [ -0.4362461, 51.2126989, -0.4362461, 51.2126989 ], "geometry": { "type": "Point", "coordinates": [ -0.4362461, 51.2126989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15476307" }, "bbox": [ -0.3469773, 51.2112747, -0.3469773, 51.2112747 ], "geometry": { "type": "Point", "coordinates": [ -0.3469773, 51.2112747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38500798" }, "bbox": [ -0.023469, 51.2413961, -0.023469, 51.2413961 ], "geometry": { "type": "Point", "coordinates": [ -0.023469, 51.2413961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12423339" }, "bbox": [ -0.3949984, 51.1697671, -0.3949984, 51.1697671 ], "geometry": { "type": "Point", "coordinates": [ -0.3949984, 51.1697671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12425514" }, "bbox": [ -0.3915375, 51.1674609, -0.3915375, 51.1674609 ], "geometry": { "type": "Point", "coordinates": [ -0.3915375, 51.1674609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522482" }, "bbox": [ -0.3926042, 51.2635831, -0.3926042, 51.2635831 ], "geometry": { "type": "Point", "coordinates": [ -0.3926042, 51.2635831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38597467" }, "bbox": [ -0.010684, 51.3191065, -0.010684, 51.3191065 ], "geometry": { "type": "Point", "coordinates": [ -0.010684, 51.3191065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06378426" }, "bbox": [ -0.4741043, 51.1245067, -0.4741043, 51.1245067 ], "geometry": { "type": "Point", "coordinates": [ -0.4741043, 51.1245067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10580570" }, "bbox": [ -0.4221952, 51.3168067, -0.4221952, 51.3168067 ], "geometry": { "type": "Point", "coordinates": [ -0.4221952, 51.3168067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28521946" }, "bbox": [ -0.1643123, 51.2568843, -0.1643123, 51.2568843 ], "geometry": { "type": "Point", "coordinates": [ -0.1643123, 51.2568843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14424026" }, "bbox": [ -0.3651706, 51.1681885, -0.3651706, 51.1681885 ], "geometry": { "type": "Point", "coordinates": [ -0.3651706, 51.1681885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38464509" }, "bbox": [ -0.0198848, 51.1973066, -0.0198848, 51.1973066 ], "geometry": { "type": "Point", "coordinates": [ -0.0198848, 51.1973066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34421713" }, "bbox": [ -0.0826966, 51.1626737, -0.0826966, 51.1626737 ], "geometry": { "type": "Point", "coordinates": [ -0.0826966, 51.1626737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39554039" }, "bbox": [ -0.002736, 51.2806515, -0.002736, 51.2806515 ], "geometry": { "type": "Point", "coordinates": [ -0.002736, 51.2806515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16396316" }, "bbox": [ -0.3343161, 51.1400325, -0.3343161, 51.1400325 ], "geometry": { "type": "Point", "coordinates": [ -0.3343161, 51.1400325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22491218" }, "bbox": [ -0.2525291, 51.2285305, -0.2525291, 51.2285305 ], "geometry": { "type": "Point", "coordinates": [ -0.2525291, 51.2285305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10558344" }, "bbox": [ -0.4121831, 51.2873683, -0.4121831, 51.2873683 ], "geometry": { "type": "Point", "coordinates": [ -0.4121831, 51.2873683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365471" }, "bbox": [ -0.4936152, 51.1202443, -0.4936152, 51.1202443 ], "geometry": { "type": "Point", "coordinates": [ -0.4936152, 51.1202443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15461256" }, "bbox": [ -0.3531715, 51.2067368, -0.3531715, 51.2067368 ], "geometry": { "type": "Point", "coordinates": [ -0.3531715, 51.2067368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39562512" }, "bbox": [ -0.0051249, 51.287614, -0.0051249, 51.287614 ], "geometry": { "type": "Point", "coordinates": [ -0.0051249, 51.287614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14584858" }, "bbox": [ -0.3587686, 51.3148393, -0.3587686, 51.3148393 ], "geometry": { "type": "Point", "coordinates": [ -0.3587686, 51.3148393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29457994" }, "bbox": [ -0.1438321, 51.1976756, -0.1438321, 51.1976756 ], "geometry": { "type": "Point", "coordinates": [ -0.1438321, 51.1976756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09397524" }, "bbox": [ -0.4321243, 51.1418146, -0.4321243, 51.1418146 ], "geometry": { "type": "Point", "coordinates": [ -0.4321243, 51.1418146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25577476" }, "bbox": [ -0.1976007, 51.3049456, -0.1976007, 51.3049456 ], "geometry": { "type": "Point", "coordinates": [ -0.1976007, 51.3049456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414699" }, "bbox": [ -0.2213597, 51.1636064, -0.2213597, 51.1636064 ], "geometry": { "type": "Point", "coordinates": [ -0.2213597, 51.1636064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35448899" }, "bbox": [ -0.0572696, 51.1880351, -0.0572696, 51.1880351 ], "geometry": { "type": "Point", "coordinates": [ -0.0572696, 51.1880351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35554916" }, "bbox": [ -0.0586513, 51.2788855, -0.0586513, 51.2788855 ], "geometry": { "type": "Point", "coordinates": [ -0.0586513, 51.2788855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04477544" }, "bbox": [ -0.5015089, 51.216585, -0.5015089, 51.216585 ], "geometry": { "type": "Point", "coordinates": [ -0.5015089, 51.216585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40471321" }, "bbox": [ 0.004418, 51.2068859, 0.004418, 51.2068859 ], "geometry": { "type": "Point", "coordinates": [ 0.004418, 51.2068859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08412039" }, "bbox": [ -0.4540226, 51.1615985, -0.4540226, 51.1615985 ], "geometry": { "type": "Point", "coordinates": [ -0.4540226, 51.1615985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414128" }, "bbox": [ -0.2224772, 51.1573228, -0.2224772, 51.1573228 ], "geometry": { "type": "Point", "coordinates": [ -0.2224772, 51.1573228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11629159" }, "bbox": [ -0.3942762, 51.3514027, -0.3942762, 51.3514027 ], "geometry": { "type": "Point", "coordinates": [ -0.3942762, 51.3514027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39591239" }, "bbox": [ -0.0051432, 51.3167985, -0.0051432, 51.3167985 ], "geometry": { "type": "Point", "coordinates": [ -0.0051432, 51.3167985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16433633" }, "bbox": [ -0.3365471, 51.1773125, -0.3365471, 51.1773125 ], "geometry": { "type": "Point", "coordinates": [ -0.3365471, 51.1773125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02462328" }, "bbox": [ -0.5377906, 51.2066723, -0.5377906, 51.2066723 ], "geometry": { "type": "Point", "coordinates": [ -0.5377906, 51.2066723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02392843" }, "bbox": [ -0.5391063, 51.1450842, -0.5391063, 51.1450842 ], "geometry": { "type": "Point", "coordinates": [ -0.5391063, 51.1450842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411380" }, "bbox": [ 0.0312098, 51.1578644, 0.0312098, 51.1578644 ], "geometry": { "type": "Point", "coordinates": [ 0.0312098, 51.1578644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439681" }, "bbox": [ -0.542492, 51.1842434, -0.542492, 51.1842434 ], "geometry": { "type": "Point", "coordinates": [ -0.542492, 51.1842434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520164" }, "bbox": [ -0.396174, 51.262008, -0.396174, 51.262008 ], "geometry": { "type": "Point", "coordinates": [ -0.396174, 51.262008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21506574" }, "bbox": [ -0.2587207, 51.2427507, -0.2587207, 51.2427507 ], "geometry": { "type": "Point", "coordinates": [ -0.2587207, 51.2427507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10463085" }, "bbox": [ -0.4222844, 51.2102725, -0.4222844, 51.2102725 ], "geometry": { "type": "Point", "coordinates": [ -0.4222844, 51.2102725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40403363" }, "bbox": [ 0.0050544, 51.1478005, 0.0050544, 51.1478005 ], "geometry": { "type": "Point", "coordinates": [ 0.0050544, 51.1478005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33482814" }, "bbox": [ -0.0930737, 51.2169715, -0.0930737, 51.2169715 ], "geometry": { "type": "Point", "coordinates": [ -0.0930737, 51.2169715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23435278" }, "bbox": [ -0.2341076, 51.1799379, -0.2341076, 51.1799379 ], "geometry": { "type": "Point", "coordinates": [ -0.2341076, 51.1799379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498977" }, "bbox": [ -0.1265587, 51.2321516, -0.1265587, 51.2321516 ], "geometry": { "type": "Point", "coordinates": [ -0.1265587, 51.2321516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07484749" }, "bbox": [ -0.4623088, 51.2254817, -0.4623088, 51.2254817 ], "geometry": { "type": "Point", "coordinates": [ -0.4623088, 51.2254817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31489529" }, "bbox": [ -0.1119756, 51.2185672, -0.1119756, 51.2185672 ], "geometry": { "type": "Point", "coordinates": [ -0.1119756, 51.2185672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16445631" }, "bbox": [ -0.3337239, 51.1861105, -0.3337239, 51.1861105 ], "geometry": { "type": "Point", "coordinates": [ -0.3337239, 51.1861105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09582030" }, "bbox": [ -0.4345787, 51.3134137, -0.4345787, 51.3134137 ], "geometry": { "type": "Point", "coordinates": [ -0.4345787, 51.3134137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20423775" }, "bbox": [ -0.279218, 51.1714577, -0.279218, 51.1714577 ], "geometry": { "type": "Point", "coordinates": [ -0.279218, 51.1714577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22419363" }, "bbox": [ -0.2434344, 51.1607769, -0.2434344, 51.1607769 ], "geometry": { "type": "Point", "coordinates": [ -0.2434344, 51.1607769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31467888" }, "bbox": [ -0.114915, 51.2059499, -0.114915, 51.2059499 ], "geometry": { "type": "Point", "coordinates": [ -0.114915, 51.2059499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24416833" }, "bbox": [ -0.2183244, 51.1577319, -0.2183244, 51.1577319 ], "geometry": { "type": "Point", "coordinates": [ -0.2183244, 51.1577319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16453906" }, "bbox": [ -0.3356103, 51.1929123, -0.3356103, 51.1929123 ], "geometry": { "type": "Point", "coordinates": [ -0.3356103, 51.1929123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11429882" }, "bbox": [ -0.3995624, 51.1736349, -0.3995624, 51.1736349 ], "geometry": { "type": "Point", "coordinates": [ -0.3995624, 51.1736349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36471220" }, "bbox": [ -0.0530595, 51.207659, -0.0530595, 51.207659 ], "geometry": { "type": "Point", "coordinates": [ -0.0530595, 51.207659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22490515" }, "bbox": [ -0.253747, 51.2287282, -0.253747, 51.2287282 ], "geometry": { "type": "Point", "coordinates": [ -0.253747, 51.2287282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20462326" }, "bbox": [ -0.2803809, 51.2028984, -0.2803809, 51.2028984 ], "geometry": { "type": "Point", "coordinates": [ -0.2803809, 51.2028984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05356355" }, "bbox": [ -0.4922899, 51.1096498, -0.4922899, 51.1096498 ], "geometry": { "type": "Point", "coordinates": [ -0.4922899, 51.1096498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26467749" }, "bbox": [ -0.1866697, 51.2035986, -0.1866697, 51.2035986 ], "geometry": { "type": "Point", "coordinates": [ -0.1866697, 51.2035986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35437240" }, "bbox": [ -0.0597359, 51.1742098, -0.0597359, 51.1742098 ], "geometry": { "type": "Point", "coordinates": [ -0.0597359, 51.1742098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19544647" }, "bbox": [ -0.2886055, 51.276943, -0.2886055, 51.276943 ], "geometry": { "type": "Point", "coordinates": [ -0.2886055, 51.276943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25461358" }, "bbox": [ -0.2103807, 51.2048489, -0.2103807, 51.2048489 ], "geometry": { "type": "Point", "coordinates": [ -0.2103807, 51.2048489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04510497" }, "bbox": [ -0.5103782, 51.2575321, -0.5103782, 51.2575321 ], "geometry": { "type": "Point", "coordinates": [ -0.5103782, 51.2575321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17447282" }, "bbox": [ -0.3172525, 51.1905267, -0.3172525, 51.1905267 ], "geometry": { "type": "Point", "coordinates": [ -0.3172525, 51.1905267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19457471" }, "bbox": [ -0.2876136, 51.1980977, -0.2876136, 51.1980977 ], "geometry": { "type": "Point", "coordinates": [ -0.2876136, 51.1980977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02348584" }, "bbox": [ -0.5323545, 51.103686, -0.5323545, 51.103686 ], "geometry": { "type": "Point", "coordinates": [ -0.5323545, 51.103686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09582333" }, "bbox": [ -0.4339041, 51.3136701, -0.4339041, 51.3136701 ], "geometry": { "type": "Point", "coordinates": [ -0.4339041, 51.3136701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20497981" }, "bbox": [ -0.271347, 51.2347184, -0.271347, 51.2347184 ], "geometry": { "type": "Point", "coordinates": [ -0.271347, 51.2347184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05381861" }, "bbox": [ -0.4979846, 51.1371059, -0.4979846, 51.1371059 ], "geometry": { "type": "Point", "coordinates": [ -0.4979846, 51.1371059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06547774" }, "bbox": [ -0.4706457, 51.2818321, -0.4706457, 51.2818321 ], "geometry": { "type": "Point", "coordinates": [ -0.4706457, 51.2818321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464932" }, "bbox": [ -0.4628006, 51.2059877, -0.4628006, 51.2059877 ], "geometry": { "type": "Point", "coordinates": [ -0.4628006, 51.2059877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28469698" }, "bbox": [ -0.1552355, 51.2076236, -0.1552355, 51.2076236 ], "geometry": { "type": "Point", "coordinates": [ -0.1552355, 51.2076236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06379059" }, "bbox": [ -0.4736307, 51.1277072, -0.4736307, 51.1277072 ], "geometry": { "type": "Point", "coordinates": [ -0.4736307, 51.1277072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28556275" }, "bbox": [ -0.1569422, 51.2864441, -0.1569422, 51.2864441 ], "geometry": { "type": "Point", "coordinates": [ -0.1569422, 51.2864441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11557746" }, "bbox": [ -0.3986491, 51.2872011, -0.3986491, 51.2872011 ], "geometry": { "type": "Point", "coordinates": [ -0.3986491, 51.2872011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07417352" }, "bbox": [ -0.4607332, 51.1627772, -0.4607332, 51.1627772 ], "geometry": { "type": "Point", "coordinates": [ -0.4607332, 51.1627772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14376086" }, "bbox": [ -0.3635158, 51.1286223, -0.3635158, 51.1286223 ], "geometry": { "type": "Point", "coordinates": [ -0.3635158, 51.1286223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05385311" }, "bbox": [ -0.4931363, 51.132548, -0.4931363, 51.132548 ], "geometry": { "type": "Point", "coordinates": [ -0.4931363, 51.132548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14581557" }, "bbox": [ -0.3633607, 51.3148602, -0.3633607, 51.3148602 ], "geometry": { "type": "Point", "coordinates": [ -0.3633607, 51.3148602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20453443" }, "bbox": [ -0.2791986, 51.1953323, -0.2791986, 51.1953323 ], "geometry": { "type": "Point", "coordinates": [ -0.2791986, 51.1953323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15477159" }, "bbox": [ -0.3443718, 51.2157742, -0.3443718, 51.2157742 ], "geometry": { "type": "Point", "coordinates": [ -0.3443718, 51.2157742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15451282" }, "bbox": [ -0.3537225, 51.2000136, -0.3537225, 51.2000136 ], "geometry": { "type": "Point", "coordinates": [ -0.3537225, 51.2000136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06662956" }, "bbox": [ -0.4737374, 51.3880891, -0.4737374, 51.3880891 ], "geometry": { "type": "Point", "coordinates": [ -0.4737374, 51.3880891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35415082" }, "bbox": [ -0.0638477, 51.1595659, -0.0638477, 51.1595659 ], "geometry": { "type": "Point", "coordinates": [ -0.0638477, 51.1595659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549370" }, "bbox": [ -0.3390927, 51.2795721, -0.3390927, 51.2795721 ], "geometry": { "type": "Point", "coordinates": [ -0.3390927, 51.2795721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06559848" }, "bbox": [ -0.4670931, 51.2884401, -0.4670931, 51.2884401 ], "geometry": { "type": "Point", "coordinates": [ -0.4670931, 51.2884401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42444953" }, "bbox": [ 0.0372315, 51.1821595, 0.0372315, 51.1821595 ], "geometry": { "type": "Point", "coordinates": [ 0.0372315, 51.1821595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13583550" }, "bbox": [ -0.3756847, 51.3142406, -0.3756847, 51.3142406 ], "geometry": { "type": "Point", "coordinates": [ -0.3756847, 51.3142406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24415042" }, "bbox": [ -0.2207001, 51.1584178, -0.2207001, 51.1584178 ], "geometry": { "type": "Point", "coordinates": [ -0.2207001, 51.1584178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27604315" }, "bbox": [ -0.1727125, 51.3266773, -0.1727125, 51.3266773 ], "geometry": { "type": "Point", "coordinates": [ -0.1727125, 51.3266773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24428331" }, "bbox": [ -0.2159509, 51.1664328, -0.2159509, 51.1664328 ], "geometry": { "type": "Point", "coordinates": [ -0.2159509, 51.1664328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24465286" }, "bbox": [ -0.2194333, 51.207542, -0.2194333, 51.207542 ], "geometry": { "type": "Point", "coordinates": [ -0.2194333, 51.207542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17416913" }, "bbox": [ -0.3183813, 51.1573748, -0.3183813, 51.1573748 ], "geometry": { "type": "Point", "coordinates": [ -0.3183813, 51.1573748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42503884" }, "bbox": [ 0.0381457, 51.2388513, 0.0381457, 51.2388513 ], "geometry": { "type": "Point", "coordinates": [ 0.0381457, 51.2388513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23454620" }, "bbox": [ -0.234566, 51.192714, -0.234566, 51.192714 ], "geometry": { "type": "Point", "coordinates": [ -0.234566, 51.192714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40526350" }, "bbox": [ 0.0139271, 51.2543679, 0.0139271, 51.2543679 ], "geometry": { "type": "Point", "coordinates": [ 0.0139271, 51.2543679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18449565" }, "bbox": [ -0.2992323, 51.1887813, -0.2992323, 51.1887813 ], "geometry": { "type": "Point", "coordinates": [ -0.2992323, 51.1887813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27456881" }, "bbox": [ -0.173946, 51.1972531, -0.173946, 51.1972531 ], "geometry": { "type": "Point", "coordinates": [ -0.173946, 51.1972531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06417071" }, "bbox": [ -0.4755432, 51.1647545, -0.4755432, 51.1647545 ], "geometry": { "type": "Point", "coordinates": [ -0.4755432, 51.1647545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04622266" }, "bbox": [ -0.5051169, 51.3534149, -0.5051169, 51.3534149 ], "geometry": { "type": "Point", "coordinates": [ -0.5051169, 51.3534149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405186" }, "bbox": [ -0.4640859, 51.1569971, -0.4640859, 51.1569971 ], "geometry": { "type": "Point", "coordinates": [ -0.4640859, 51.1569971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06356419" }, "bbox": [ -0.4783309, 51.1060977, -0.4783309, 51.1060977 ], "geometry": { "type": "Point", "coordinates": [ -0.4783309, 51.1060977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21508347" }, "bbox": [ -0.256144, 51.2404128, -0.256144, 51.2404128 ], "geometry": { "type": "Point", "coordinates": [ -0.256144, 51.2404128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17378279" }, "bbox": [ -0.3175522, 51.1272878, -0.3175522, 51.1272878 ], "geometry": { "type": "Point", "coordinates": [ -0.3175522, 51.1272878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38597571" }, "bbox": [ -0.0102524, 51.3195802, -0.0102524, 51.3195802 ], "geometry": { "type": "Point", "coordinates": [ -0.0102524, 51.3195802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23463580" }, "bbox": [ -0.2356937, 51.2073553, -0.2356937, 51.2073553 ], "geometry": { "type": "Point", "coordinates": [ -0.2356937, 51.2073553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23433554" }, "bbox": [ -0.2367, 51.1778219, -0.2367, 51.1778219 ], "geometry": { "type": "Point", "coordinates": [ -0.2367, 51.1778219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11390778" }, "bbox": [ -0.4134617, 51.1466108, -0.4134617, 51.1466108 ], "geometry": { "type": "Point", "coordinates": [ -0.4134617, 51.1466108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05478867" }, "bbox": [ -0.4854406, 51.2189439, -0.4854406, 51.2189439 ], "geometry": { "type": "Point", "coordinates": [ -0.4854406, 51.2189439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22416390" }, "bbox": [ -0.2474104, 51.1633869, -0.2474104, 51.1633869 ], "geometry": { "type": "Point", "coordinates": [ -0.2474104, 51.1633869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36469568" }, "bbox": [ -0.040986, 51.2029002, -0.040986, 51.2029002 ], "geometry": { "type": "Point", "coordinates": [ -0.040986, 51.2029002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33404782" }, "bbox": [ -0.0931262, 51.151142, -0.0931262, 51.151142 ], "geometry": { "type": "Point", "coordinates": [ -0.0931262, 51.151142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16419008" }, "bbox": [ -0.3297536, 51.1570882, -0.3297536, 51.1570882 ], "geometry": { "type": "Point", "coordinates": [ -0.3297536, 51.1570882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21552976" }, "bbox": [ -0.2620122, 51.2882141, -0.2620122, 51.2882141 ], "geometry": { "type": "Point", "coordinates": [ -0.2620122, 51.2882141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13497033" }, "bbox": [ -0.3729366, 51.2320303, -0.3729366, 51.2320303 ], "geometry": { "type": "Point", "coordinates": [ -0.3729366, 51.2320303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42484869" }, "bbox": [ 0.0385779, 51.219464, 0.0385779, 51.219464 ], "geometry": { "type": "Point", "coordinates": [ 0.0385779, 51.219464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42422426" }, "bbox": [ 0.0327332, 51.1623144, 0.0327332, 51.1623144 ], "geometry": { "type": "Point", "coordinates": [ 0.0327332, 51.1623144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32440855" }, "bbox": [ -0.1114571, 51.1849002, -0.1114571, 51.1849002 ], "geometry": { "type": "Point", "coordinates": [ -0.1114571, 51.1849002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06539701" }, "bbox": [ -0.4681595, 51.2661584, -0.4681595, 51.2661584 ], "geometry": { "type": "Point", "coordinates": [ -0.4681595, 51.2661584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35579410" }, "bbox": [ -0.0512941, 51.2969207, -0.0512941, 51.2969207 ], "geometry": { "type": "Point", "coordinates": [ -0.0512941, 51.2969207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06661330" }, "bbox": [ -0.4757486, 51.3857963, -0.4757486, 51.3857963 ], "geometry": { "type": "Point", "coordinates": [ -0.4757486, 51.3857963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30458901" }, "bbox": [ -0.1283857, 51.1892798, -0.1283857, 51.1892798 ], "geometry": { "type": "Point", "coordinates": [ -0.1283857, 51.1892798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00556684" }, "bbox": [ -0.5571688, 51.2927522, -0.5571688, 51.2927522 ], "geometry": { "type": "Point", "coordinates": [ -0.5571688, 51.2927522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09419984" }, "bbox": [ -0.428213, 51.1653293, -0.428213, 51.1653293 ], "geometry": { "type": "Point", "coordinates": [ -0.428213, 51.1653293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34453937" }, "bbox": [ -0.0781132, 51.1919129, -0.0781132, 51.1919129 ], "geometry": { "type": "Point", "coordinates": [ -0.0781132, 51.1919129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33443498" }, "bbox": [ -0.0933531, 51.1886003, -0.0933531, 51.1886003 ], "geometry": { "type": "Point", "coordinates": [ -0.0933531, 51.1886003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11453672" }, "bbox": [ -0.407521, 51.199948, -0.407521, 51.199948 ], "geometry": { "type": "Point", "coordinates": [ -0.407521, 51.199948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15392485" }, "bbox": [ -0.353729, 51.1463947, -0.353729, 51.1463947 ], "geometry": { "type": "Point", "coordinates": [ -0.353729, 51.1463947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04571354" }, "bbox": [ -0.5075687, 51.3073784, -0.5075687, 51.3073784 ], "geometry": { "type": "Point", "coordinates": [ -0.5075687, 51.3073784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05367183" }, "bbox": [ -0.4908156, 51.1209633, -0.4908156, 51.1209633 ], "geometry": { "type": "Point", "coordinates": [ -0.4908156, 51.1209633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570469" }, "bbox": [ -0.3795943, 51.3071406, -0.3795943, 51.3071406 ], "geometry": { "type": "Point", "coordinates": [ -0.3795943, 51.3071406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34438458" }, "bbox": [ -0.0723934, 51.1756025, -0.0723934, 51.1756025 ], "geometry": { "type": "Point", "coordinates": [ -0.0723934, 51.1756025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00531727" }, "bbox": [ -0.5655611, 51.2699134, -0.5655611, 51.2699134 ], "geometry": { "type": "Point", "coordinates": [ -0.5655611, 51.2699134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06560540" }, "bbox": [ -0.4802123, 51.29688, -0.4802123, 51.29688 ], "geometry": { "type": "Point", "coordinates": [ -0.4802123, 51.29688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35487832" }, "bbox": [ -0.0573562, 51.2179918, -0.0573562, 51.2179918 ], "geometry": { "type": "Point", "coordinates": [ -0.0573562, 51.2179918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07443185" }, "bbox": [ -0.4656811, 51.1928239, -0.4656811, 51.1928239 ], "geometry": { "type": "Point", "coordinates": [ -0.4656811, 51.1928239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06521079" }, "bbox": [ -0.4806653, 51.2644351, -0.4806653, 51.2644351 ], "geometry": { "type": "Point", "coordinates": [ -0.4806653, 51.2644351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30506080" }, "bbox": [ -0.1304732, 51.2414571, -0.1304732, 51.2414571 ], "geometry": { "type": "Point", "coordinates": [ -0.1304732, 51.2414571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04343944" }, "bbox": [ -0.510441, 51.0997326, -0.510441, 51.0997326 ], "geometry": { "type": "Point", "coordinates": [ -0.510441, 51.0997326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14383285" }, "bbox": [ -0.3673052, 51.1374886, -0.3673052, 51.1374886 ], "geometry": { "type": "Point", "coordinates": [ -0.3673052, 51.1374886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33445288" }, "bbox": [ -0.0906451, 51.1876096, -0.0906451, 51.1876096 ], "geometry": { "type": "Point", "coordinates": [ -0.0906451, 51.1876096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12391174" }, "bbox": [ -0.3987235, 51.1460657, -0.3987235, 51.1460657 ], "geometry": { "type": "Point", "coordinates": [ -0.3987235, 51.1460657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41467634" }, "bbox": [ 0.0275537, 51.1986423, 0.0275537, 51.1986423 ], "geometry": { "type": "Point", "coordinates": [ 0.0275537, 51.1986423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31490633" }, "bbox": [ -0.1243844, 51.2280356, -0.1243844, 51.2280356 ], "geometry": { "type": "Point", "coordinates": [ -0.1243844, 51.2280356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15463647" }, "bbox": [ -0.3501964, 51.2060319, -0.3501964, 51.2060319 ], "geometry": { "type": "Point", "coordinates": [ -0.3501964, 51.2060319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00364710" }, "bbox": [ -0.5659551, 51.1154099, -0.5659551, 51.1154099 ], "geometry": { "type": "Point", "coordinates": [ -0.5659551, 51.1154099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33437164" }, "bbox": [ -0.0884559, 51.176364, -0.0884559, 51.176364 ], "geometry": { "type": "Point", "coordinates": [ -0.0884559, 51.176364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01371284" }, "bbox": [ -0.5562202, 51.130854, -0.5562202, 51.130854 ], "geometry": { "type": "Point", "coordinates": [ -0.5562202, 51.130854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10617280" }, "bbox": [ -0.4113304, 51.3447722, -0.4113304, 51.3447722 ], "geometry": { "type": "Point", "coordinates": [ -0.4113304, 51.3447722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20502397" }, "bbox": [ -0.2793484, 51.2446211, -0.2793484, 51.2446211 ], "geometry": { "type": "Point", "coordinates": [ -0.2793484, 51.2446211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03539454" }, "bbox": [ -0.510858, 51.2715079, -0.510858, 51.2715079 ], "geometry": { "type": "Point", "coordinates": [ -0.510858, 51.2715079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26531686" }, "bbox": [ -0.1929335, 51.2699709, -0.1929335, 51.2699709 ], "geometry": { "type": "Point", "coordinates": [ -0.1929335, 51.2699709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20486328" }, "bbox": [ -0.2741261, 51.2210391, -0.2741261, 51.2210391 ], "geometry": { "type": "Point", "coordinates": [ -0.2741261, 51.2210391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07534027" }, "bbox": [ -0.4619702, 51.2685594, -0.4619702, 51.2685594 ], "geometry": { "type": "Point", "coordinates": [ -0.4619702, 51.2685594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08501188" }, "bbox": [ -0.4523794, 51.2468562, -0.4523794, 51.2468562 ], "geometry": { "type": "Point", "coordinates": [ -0.4523794, 51.2468562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00400904" }, "bbox": [ -0.5702082, 51.1507797, -0.5702082, 51.1507797 ], "geometry": { "type": "Point", "coordinates": [ -0.5702082, 51.1507797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00334630" }, "bbox": [ -0.5668799, 51.090234, -0.5668799, 51.090234 ], "geometry": { "type": "Point", "coordinates": [ -0.5668799, 51.090234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32452486" }, "bbox": [ -0.1088316, 51.1966839, -0.1088316, 51.1966839 ], "geometry": { "type": "Point", "coordinates": [ -0.1088316, 51.1966839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38489958" }, "bbox": [ -0.0110627, 51.2195351, -0.0110627, 51.2195351 ], "geometry": { "type": "Point", "coordinates": [ -0.0110627, 51.2195351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11542892" }, "bbox": [ -0.4059368, 51.2827582, -0.4059368, 51.2827582 ], "geometry": { "type": "Point", "coordinates": [ -0.4059368, 51.2827582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30440675" }, "bbox": [ -0.1402517, 51.1871824, -0.1402517, 51.1871824 ], "geometry": { "type": "Point", "coordinates": [ -0.1402517, 51.1871824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05429836" }, "bbox": [ -0.4856282, 51.1709559, -0.4856282, 51.1709559 ], "geometry": { "type": "Point", "coordinates": [ -0.4856282, 51.1709559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39564088" }, "bbox": [ -0.0019632, 51.2940279, -0.0019632, 51.2940279 ], "geometry": { "type": "Point", "coordinates": [ -0.0019632, 51.2940279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14637219" }, "bbox": [ -0.3543606, 51.3560513, -0.3543606, 51.3560513 ], "geometry": { "type": "Point", "coordinates": [ -0.3543606, 51.3560513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30441745" }, "bbox": [ -0.1390847, 51.1844625, -0.1390847, 51.1844625 ], "geometry": { "type": "Point", "coordinates": [ -0.1390847, 51.1844625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10586141" }, "bbox": [ -0.4144175, 51.3140671, -0.4144175, 51.3140671 ], "geometry": { "type": "Point", "coordinates": [ -0.4144175, 51.3140671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19474886" }, "bbox": [ -0.2902948, 51.2173135, -0.2902948, 51.2173135 ], "geometry": { "type": "Point", "coordinates": [ -0.2902948, 51.2173135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14626654" }, "bbox": [ -0.3548545, 51.3503795, -0.3548545, 51.3503795 ], "geometry": { "type": "Point", "coordinates": [ -0.3548545, 51.3503795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35439272" }, "bbox": [ -0.0569809, 51.1765418, -0.0569809, 51.1765418 ], "geometry": { "type": "Point", "coordinates": [ -0.0569809, 51.1765418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02527867" }, "bbox": [ -0.5283075, 51.2638884, -0.5283075, 51.2638884 ], "geometry": { "type": "Point", "coordinates": [ -0.5283075, 51.2638884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24468161" }, "bbox": [ -0.2145017, 51.2051023, -0.2145017, 51.2051023 ], "geometry": { "type": "Point", "coordinates": [ -0.2145017, 51.2051023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33477405" }, "bbox": [ -0.0867663, 51.2070642, -0.0867663, 51.2070642 ], "geometry": { "type": "Point", "coordinates": [ -0.0867663, 51.2070642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583053" }, "bbox": [ -0.4331177, 51.3154413, -0.4331177, 51.3154413 ], "geometry": { "type": "Point", "coordinates": [ -0.4331177, 51.3154413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08540355" }, "bbox": [ -0.4525605, 51.2797715, -0.4525605, 51.2797715 ], "geometry": { "type": "Point", "coordinates": [ -0.4525605, 51.2797715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02653759" }, "bbox": [ -0.5304541, 51.3801408, -0.5304541, 51.3801408 ], "geometry": { "type": "Point", "coordinates": [ -0.5304541, 51.3801408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24437707" }, "bbox": [ -0.2166032, 51.1731934, -0.2166032, 51.1731934 ], "geometry": { "type": "Point", "coordinates": [ -0.2166032, 51.1731934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596054" }, "bbox": [ -0.4139674, 51.3242149, -0.4139674, 51.3242149 ], "geometry": { "type": "Point", "coordinates": [ -0.4139674, 51.3242149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10602401" }, "bbox": [ -0.4192043, 51.3283346, -0.4192043, 51.3283346 ], "geometry": { "type": "Point", "coordinates": [ -0.4192043, 51.3283346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23436129" }, "bbox": [ -0.2331598, 51.1755407, -0.2331598, 51.1755407 ], "geometry": { "type": "Point", "coordinates": [ -0.2331598, 51.1755407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15393746" }, "bbox": [ -0.3521563, 51.1427083, -0.3521563, 51.1427083 ], "geometry": { "type": "Point", "coordinates": [ -0.3521563, 51.1427083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08482227" }, "bbox": [ -0.4514816, 51.2232182, -0.4514816, 51.2232182 ], "geometry": { "type": "Point", "coordinates": [ -0.4514816, 51.2232182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03421181" }, "bbox": [ -0.5262843, 51.1752637, -0.5262843, 51.1752637 ], "geometry": { "type": "Point", "coordinates": [ -0.5262843, 51.1752637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05600579" }, "bbox": [ -0.4933576, 51.3364777, -0.4933576, 51.3364777 ], "geometry": { "type": "Point", "coordinates": [ -0.4933576, 51.3364777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01393537" }, "bbox": [ -0.5529161, 51.1454651, -0.5529161, 51.1454651 ], "geometry": { "type": "Point", "coordinates": [ -0.5529161, 51.1454651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469456" }, "bbox": [ -0.2272717, 51.2047348, -0.2272717, 51.2047348 ], "geometry": { "type": "Point", "coordinates": [ -0.2272717, 51.2047348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24434936" }, "bbox": [ -0.2205926, 51.1760029, -0.2205926, 51.1760029 ], "geometry": { "type": "Point", "coordinates": [ -0.2205926, 51.1760029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22462241" }, "bbox": [ -0.2519726, 51.2038205, -0.2519726, 51.2038205 ], "geometry": { "type": "Point", "coordinates": [ -0.2519726, 51.2038205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04572045" }, "bbox": [ -0.5064294, 51.3067398, -0.5064294, 51.3067398 ], "geometry": { "type": "Point", "coordinates": [ -0.5064294, 51.3067398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41487862" }, "bbox": [ 0.028674, 51.2194113, 0.028674, 51.2194113 ], "geometry": { "type": "Point", "coordinates": [ 0.028674, 51.2194113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00693810" }, "bbox": [ -0.5579483, 51.4120504, -0.5579483, 51.4120504 ], "geometry": { "type": "Point", "coordinates": [ -0.5579483, 51.4120504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06407153" }, "bbox": [ -0.4756805, 51.1539491, -0.4756805, 51.1539491 ], "geometry": { "type": "Point", "coordinates": [ -0.4756805, 51.1539491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00475356" }, "bbox": [ -0.5618649, 51.2183477, -0.5618649, 51.2183477 ], "geometry": { "type": "Point", "coordinates": [ -0.5618649, 51.2183477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13589165" }, "bbox": [ -0.3670582, 51.3159385, -0.3670582, 51.3159385 ], "geometry": { "type": "Point", "coordinates": [ -0.3670582, 51.3159385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37402821" }, "bbox": [ -0.0388004, 51.1447611, -0.0388004, 51.1447611 ], "geometry": { "type": "Point", "coordinates": [ -0.0388004, 51.1447611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05366659" }, "bbox": [ -0.4917306, 51.1188286, -0.4917306, 51.1188286 ], "geometry": { "type": "Point", "coordinates": [ -0.4917306, 51.1188286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35423853" }, "bbox": [ -0.0653656, 51.1660703, -0.0653656, 51.1660703 ], "geometry": { "type": "Point", "coordinates": [ -0.0653656, 51.1660703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468544" }, "bbox": [ -0.2856977, 51.2045954, -0.2856977, 51.2045954 ], "geometry": { "type": "Point", "coordinates": [ -0.2856977, 51.2045954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00440544" }, "bbox": [ -0.5696873, 51.1905075, -0.5696873, 51.1905075 ], "geometry": { "type": "Point", "coordinates": [ -0.5696873, 51.1905075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01563981" }, "bbox": [ -0.5471665, 51.3014029, -0.5471665, 51.3014029 ], "geometry": { "type": "Point", "coordinates": [ -0.5471665, 51.3014029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13539236" }, "bbox": [ -0.3682302, 51.2681855, -0.3682302, 51.2681855 ], "geometry": { "type": "Point", "coordinates": [ -0.3682302, 51.2681855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19386484" }, "bbox": [ -0.2914046, 51.1362459, -0.2914046, 51.1362459 ], "geometry": { "type": "Point", "coordinates": [ -0.2914046, 51.1362459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19487662" }, "bbox": [ -0.2861939, 51.2241432, -0.2861939, 51.2241432 ], "geometry": { "type": "Point", "coordinates": [ -0.2861939, 51.2241432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03357538" }, "bbox": [ -0.5192183, 51.1085509, -0.5192183, 51.1085509 ], "geometry": { "type": "Point", "coordinates": [ -0.5192183, 51.1085509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06575605" }, "bbox": [ -0.4727276, 51.3026552, -0.4727276, 51.3026552 ], "geometry": { "type": "Point", "coordinates": [ -0.4727276, 51.3026552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00441445" }, "bbox": [ -0.5683858, 51.190545, -0.5683858, 51.190545 ], "geometry": { "type": "Point", "coordinates": [ -0.5683858, 51.190545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40449469" }, "bbox": [ 0.0151643, 51.1839086, 0.0151643, 51.1839086 ], "geometry": { "type": "Point", "coordinates": [ 0.0151643, 51.1839086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19480678" }, "bbox": [ -0.2962405, 51.2258279, -0.2962405, 51.2258279 ], "geometry": { "type": "Point", "coordinates": [ -0.2962405, 51.2258279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481371" }, "bbox": [ -0.5529754, 51.228692, -0.5529754, 51.228692 ], "geometry": { "type": "Point", "coordinates": [ -0.5529754, 51.228692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06374527" }, "bbox": [ -0.4802037, 51.1248474, -0.4802037, 51.1248474 ], "geometry": { "type": "Point", "coordinates": [ -0.4802037, 51.1248474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25454696" }, "bbox": [ -0.2057663, 51.1992177, -0.2057663, 51.1992177 ], "geometry": { "type": "Point", "coordinates": [ -0.2057663, 51.1992177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39537062" }, "bbox": [ 0.0009631, 51.2646671, 0.0009631, 51.2646671 ], "geometry": { "type": "Point", "coordinates": [ 0.0009631, 51.2646671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18492232" }, "bbox": [ -0.3080631, 51.230748, -0.3080631, 51.230748 ], "geometry": { "type": "Point", "coordinates": [ -0.3080631, 51.230748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31410246" }, "bbox": [ -0.1277577, 51.1575053, -0.1277577, 51.1575053 ], "geometry": { "type": "Point", "coordinates": [ -0.1277577, 51.1575053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600593" }, "bbox": [ -0.0055668, 51.3304927, -0.0055668, 51.3304927 ], "geometry": { "type": "Point", "coordinates": [ -0.0055668, 51.3304927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18491345" }, "bbox": [ -0.3094915, 51.2319687, -0.3094915, 51.2319687 ], "geometry": { "type": "Point", "coordinates": [ -0.3094915, 51.2319687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04514072" }, "bbox": [ -0.505255, 51.2554899, -0.505255, 51.2554899 ], "geometry": { "type": "Point", "coordinates": [ -0.505255, 51.2554899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32502306" }, "bbox": [ -0.1072461, 51.23444, -0.1072461, 51.23444 ], "geometry": { "type": "Point", "coordinates": [ -0.1072461, 51.23444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09424219" }, "bbox": [ -0.4362896, 51.1685167, -0.4362896, 51.1685167 ], "geometry": { "type": "Point", "coordinates": [ -0.4362896, 51.1685167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39456529" }, "bbox": [ -0.0029532, 51.1898524, -0.0029532, 51.1898524 ], "geometry": { "type": "Point", "coordinates": [ -0.0029532, 51.1898524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523445" }, "bbox": [ -0.3913201, 51.2602127, -0.3913201, 51.2602127 ], "geometry": { "type": "Point", "coordinates": [ -0.3913201, 51.2602127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26548320" }, "bbox": [ -0.1831211, 51.2728923, -0.1831211, 51.2728923 ], "geometry": { "type": "Point", "coordinates": [ -0.1831211, 51.2728923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36532579" }, "bbox": [ -0.048485, 51.2670742, -0.048485, 51.2670742 ], "geometry": { "type": "Point", "coordinates": [ -0.048485, 51.2670742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21407318" }, "bbox": [ -0.2609532, 51.1479431, -0.2609532, 51.1479431 ], "geometry": { "type": "Point", "coordinates": [ -0.2609532, 51.1479431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40525139" }, "bbox": [ 0.0106651, 51.2527598, 0.0106651, 51.2527598 ], "geometry": { "type": "Point", "coordinates": [ 0.0106651, 51.2527598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41459193" }, "bbox": [ 0.0295687, 51.1950025, 0.0295687, 51.1950025 ], "geometry": { "type": "Point", "coordinates": [ 0.0295687, 51.1950025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41444203" }, "bbox": [ 0.0218328, 51.1779251, 0.0218328, 51.1779251 ], "geometry": { "type": "Point", "coordinates": [ 0.0218328, 51.1779251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19540120" }, "bbox": [ -0.2952357, 51.2732985, -0.2952357, 51.2732985 ], "geometry": { "type": "Point", "coordinates": [ -0.2952357, 51.2732985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00629344" }, "bbox": [ -0.5516202, 51.3519641, -0.5516202, 51.3519641 ], "geometry": { "type": "Point", "coordinates": [ -0.5516202, 51.3519641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07479048" }, "bbox": [ -0.4566506, 51.2163607, -0.4566506, 51.2163607 ], "geometry": { "type": "Point", "coordinates": [ -0.4566506, 51.2163607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424109" }, "bbox": [ -0.5222679, 51.1687826, -0.5222679, 51.1687826 ], "geometry": { "type": "Point", "coordinates": [ -0.5222679, 51.1687826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07563953" }, "bbox": [ -0.4609086, 51.2977737, -0.4609086, 51.2977737 ], "geometry": { "type": "Point", "coordinates": [ -0.4609086, 51.2977737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42431552" }, "bbox": [ 0.031849, 51.1732357, 0.031849, 51.1732357 ], "geometry": { "type": "Point", "coordinates": [ 0.031849, 51.1732357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20514179" }, "bbox": [ -0.2758475, 51.2525464, -0.2758475, 51.2525464 ], "geometry": { "type": "Point", "coordinates": [ -0.2758475, 51.2525464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14429028" }, "bbox": [ -0.357937, 51.1681594, -0.357937, 51.1681594 ], "geometry": { "type": "Point", "coordinates": [ -0.357937, 51.1681594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37500807" }, "bbox": [ -0.0384516, 51.2335951, -0.0384516, 51.2335951 ], "geometry": { "type": "Point", "coordinates": [ -0.0384516, 51.2335951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498955" }, "bbox": [ -0.1267704, 51.2301066, -0.1267704, 51.2301066 ], "geometry": { "type": "Point", "coordinates": [ -0.1267704, 51.2301066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15464096" }, "bbox": [ -0.3493466, 51.2102905, -0.3493466, 51.2102905 ], "geometry": { "type": "Point", "coordinates": [ -0.3493466, 51.2102905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10585854" }, "bbox": [ -0.4147105, 51.315324, -0.4147105, 51.315324 ], "geometry": { "type": "Point", "coordinates": [ -0.4147105, 51.315324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41488040" }, "bbox": [ 0.0284613, 51.2171352, 0.0284613, 51.2171352 ], "geometry": { "type": "Point", "coordinates": [ 0.0284613, 51.2171352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25410136" }, "bbox": [ -0.214205, 51.1575144, -0.214205, 51.1575144 ], "geometry": { "type": "Point", "coordinates": [ -0.214205, 51.1575144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31518457" }, "bbox": [ -0.11234, 51.2481711, -0.11234, 51.2481711 ], "geometry": { "type": "Point", "coordinates": [ -0.11234, 51.2481711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18436706" }, "bbox": [ -0.3038927, 51.1744372, -0.3038927, 51.1744372 ], "geometry": { "type": "Point", "coordinates": [ -0.3038927, 51.1744372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434188" }, "bbox": [ -0.0641823, 51.1781969, -0.0641823, 51.1781969 ], "geometry": { "type": "Point", "coordinates": [ -0.0641823, 51.1781969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04481383" }, "bbox": [ -0.5102995, 51.2290943, -0.5102995, 51.2290943 ], "geometry": { "type": "Point", "coordinates": [ -0.5102995, 51.2290943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417359" }, "bbox": [ -0.5178375, 51.164233, -0.5178375, 51.164233 ], "geometry": { "type": "Point", "coordinates": [ -0.5178375, 51.164233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20420113" }, "bbox": [ -0.2851223, 51.1657694, -0.2851223, 51.1657694 ], "geometry": { "type": "Point", "coordinates": [ -0.2851223, 51.1657694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549456" }, "bbox": [ -0.281692, 51.2776, -0.281692, 51.2776 ], "geometry": { "type": "Point", "coordinates": [ -0.281692, 51.2776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27547814" }, "bbox": [ -0.1695764, 51.271977, -0.1695764, 51.271977 ], "geometry": { "type": "Point", "coordinates": [ -0.1695764, 51.271977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00569058" }, "bbox": [ -0.5541203, 51.2993633, -0.5541203, 51.2993633 ], "geometry": { "type": "Point", "coordinates": [ -0.5541203, 51.2993633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42501924" }, "bbox": [ 0.0352315, 51.2335813, 0.0352315, 51.2335813 ], "geometry": { "type": "Point", "coordinates": [ 0.0352315, 51.2335813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10595879" }, "bbox": [ -0.4141811, 51.3265075, -0.4141811, 51.3265075 ], "geometry": { "type": "Point", "coordinates": [ -0.4141811, 51.3265075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42418904" }, "bbox": [ 0.0415178, 51.1508189, 0.0415178, 51.1508189 ], "geometry": { "type": "Point", "coordinates": [ 0.0415178, 51.1508189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446348" }, "bbox": [ -0.1323704, 51.1846187, -0.1323704, 51.1846187 ], "geometry": { "type": "Point", "coordinates": [ -0.1323704, 51.1846187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00363655" }, "bbox": [ -0.5673559, 51.1195522, -0.5673559, 51.1195522 ], "geometry": { "type": "Point", "coordinates": [ -0.5673559, 51.1195522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10373071" }, "bbox": [ -0.4251671, 51.1279901, -0.4251671, 51.1279901 ], "geometry": { "type": "Point", "coordinates": [ -0.4251671, 51.1279901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26437438" }, "bbox": [ -0.1882341, 51.1752126, -0.1882341, 51.1752126 ], "geometry": { "type": "Point", "coordinates": [ -0.1882341, 51.1752126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12483341" }, "bbox": [ -0.3932742, 51.2236919, -0.3932742, 51.2236919 ], "geometry": { "type": "Point", "coordinates": [ -0.3932742, 51.2236919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36421368" }, "bbox": [ -0.052743, 51.1679131, -0.052743, 51.1679131 ], "geometry": { "type": "Point", "coordinates": [ -0.052743, 51.1679131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406964" }, "bbox": [ -0.2329146, 51.1517375, -0.2329146, 51.1517375 ], "geometry": { "type": "Point", "coordinates": [ -0.2329146, 51.1517375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41484122" }, "bbox": [ 0.0233373, 51.2157545, 0.0233373, 51.2157545 ], "geometry": { "type": "Point", "coordinates": [ 0.0233373, 51.2157545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09585515" }, "bbox": [ -0.4295357, 51.3120229, -0.4295357, 51.3120229 ], "geometry": { "type": "Point", "coordinates": [ -0.4295357, 51.3120229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09433031" }, "bbox": [ -0.4376715, 51.1786109, -0.4376715, 51.1786109 ], "geometry": { "type": "Point", "coordinates": [ -0.4376715, 51.1786109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03403497" }, "bbox": [ -0.5234982, 51.1588675, -0.5234982, 51.1588675 ], "geometry": { "type": "Point", "coordinates": [ -0.5234982, 51.1588675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04364726" }, "bbox": [ -0.5088277, 51.1160654, -0.5088277, 51.1160654 ], "geometry": { "type": "Point", "coordinates": [ -0.5088277, 51.1160654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01555054" }, "bbox": [ -0.5460537, 51.2899072, -0.5460537, 51.2899072 ], "geometry": { "type": "Point", "coordinates": [ -0.5460537, 51.2899072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34482355" }, "bbox": [ -0.0792227, 51.2203514, -0.0792227, 51.2203514 ], "geometry": { "type": "Point", "coordinates": [ -0.0792227, 51.2203514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33422165" }, "bbox": [ -0.0960189, 51.1676368, -0.0960189, 51.1676368 ], "geometry": { "type": "Point", "coordinates": [ -0.0960189, 51.1676368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20466922" }, "bbox": [ -0.2738671, 51.2024747, -0.2738671, 51.2024747 ], "geometry": { "type": "Point", "coordinates": [ -0.2738671, 51.2024747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25526782" }, "bbox": [ -0.2002121, 51.2606617, -0.2002121, 51.2606617 ], "geometry": { "type": "Point", "coordinates": [ -0.2002121, 51.2606617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19481162" }, "bbox": [ -0.2956857, 51.2240734, -0.2956857, 51.2240734 ], "geometry": { "type": "Point", "coordinates": [ -0.2956857, 51.2240734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21559995" }, "bbox": [ -0.2516279, 51.2896156, -0.2516279, 51.2896156 ], "geometry": { "type": "Point", "coordinates": [ -0.2516279, 51.2896156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18383086" }, "bbox": [ -0.3105525, 51.1367387, -0.3105525, 51.1367387 ], "geometry": { "type": "Point", "coordinates": [ -0.3105525, 51.1367387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22515502" }, "bbox": [ -0.2460048, 51.2450602, -0.2460048, 51.2450602 ], "geometry": { "type": "Point", "coordinates": [ -0.2460048, 51.2450602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17489552" }, "bbox": [ -0.3122869, 51.2236913, -0.3122869, 51.2236913 ], "geometry": { "type": "Point", "coordinates": [ -0.3122869, 51.2236913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16373925" }, "bbox": [ -0.3381453, 51.1227686, -0.3381453, 51.1227686 ], "geometry": { "type": "Point", "coordinates": [ -0.3381453, 51.1227686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15412111" }, "bbox": [ -0.3538696, 51.1578622, -0.3538696, 51.1578622 ], "geometry": { "type": "Point", "coordinates": [ -0.3538696, 51.1578622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04551470" }, "bbox": [ -0.5077904, 51.2909446, -0.5077904, 51.2909446 ], "geometry": { "type": "Point", "coordinates": [ -0.5077904, 51.2909446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21466683" }, "bbox": [ -0.2598774, 51.2077961, -0.2598774, 51.2077961 ], "geometry": { "type": "Point", "coordinates": [ -0.2598774, 51.2077961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37556088" }, "bbox": [ -0.0281283, 51.2854465, -0.0281283, 51.2854465 ], "geometry": { "type": "Point", "coordinates": [ -0.0281283, 51.2854465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12445302" }, "bbox": [ -0.3912884, 51.1843916, -0.3912884, 51.1843916 ], "geometry": { "type": "Point", "coordinates": [ -0.3912884, 51.1843916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40509578" }, "bbox": [ 0.0175569, 51.2386317, 0.0175569, 51.2386317 ], "geometry": { "type": "Point", "coordinates": [ 0.0175569, 51.2386317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39586099" }, "bbox": [ 0.0015256, 51.3129089, 0.0015256, 51.3129089 ], "geometry": { "type": "Point", "coordinates": [ 0.0015256, 51.3129089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01360162" }, "bbox": [ -0.5582839, 51.1198426, -0.5582839, 51.1198426 ], "geometry": { "type": "Point", "coordinates": [ -0.5582839, 51.1198426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11540566" }, "bbox": [ -0.4088764, 51.2802186, -0.4088764, 51.2802186 ], "geometry": { "type": "Point", "coordinates": [ -0.4088764, 51.2802186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10594066" }, "bbox": [ -0.416768, 51.3254265, -0.416768, 51.3254265 ], "geometry": { "type": "Point", "coordinates": [ -0.416768, 51.3254265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08536992" }, "bbox": [ -0.4433406, 51.2741641, -0.4433406, 51.2741641 ], "geometry": { "type": "Point", "coordinates": [ -0.4433406, 51.2741641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21469863" }, "bbox": [ -0.2551971, 51.2061348, -0.2551971, 51.2061348 ], "geometry": { "type": "Point", "coordinates": [ -0.2551971, 51.2061348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414867" }, "bbox": [ -0.221096, 51.1607872, -0.221096, 51.1607872 ], "geometry": { "type": "Point", "coordinates": [ -0.221096, 51.1607872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37602702" }, "bbox": [ -0.0311496, 51.3226395, -0.0311496, 51.3226395 ], "geometry": { "type": "Point", "coordinates": [ -0.0311496, 51.3226395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37405301" }, "bbox": [ -0.0353439, 51.1430192, -0.0353439, 51.1430192 ], "geometry": { "type": "Point", "coordinates": [ -0.0353439, 51.1430192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00558797" }, "bbox": [ -0.5547857, 51.2938575, -0.5547857, 51.2938575 ], "geometry": { "type": "Point", "coordinates": [ -0.5547857, 51.2938575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14595640" }, "bbox": [ -0.3570692, 51.3220977, -0.3570692, 51.3220977 ], "geometry": { "type": "Point", "coordinates": [ -0.3570692, 51.3220977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19420872" }, "bbox": [ -0.298182, 51.1713339, -0.298182, 51.1713339 ], "geometry": { "type": "Point", "coordinates": [ -0.298182, 51.1713339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10564049" }, "bbox": [ -0.4179509, 51.2967232, -0.4179509, 51.2967232 ], "geometry": { "type": "Point", "coordinates": [ -0.4179509, 51.2967232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36464198" }, "bbox": [ -0.0480652, 51.2056388, -0.0480652, 51.2056388 ], "geometry": { "type": "Point", "coordinates": [ -0.0480652, 51.2056388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12429904" }, "bbox": [ -0.3854322, 51.1666663, -0.3854322, 51.1666663 ], "geometry": { "type": "Point", "coordinates": [ -0.3854322, 51.1666663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36520626" }, "bbox": [ -0.0527756, 51.2532866, -0.0527756, 51.2532866 ], "geometry": { "type": "Point", "coordinates": [ -0.0527756, 51.2532866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33489006" }, "bbox": [ -0.0844927, 51.2163844, -0.0844927, 51.2163844 ], "geometry": { "type": "Point", "coordinates": [ -0.0844927, 51.2163844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28523855" }, "bbox": [ -0.1615538, 51.2575426, -0.1615538, 51.2575426 ], "geometry": { "type": "Point", "coordinates": [ -0.1615538, 51.2575426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400522" }, "bbox": [ -0.3992177, 51.1503488, -0.3992177, 51.1503488 ], "geometry": { "type": "Point", "coordinates": [ -0.3992177, 51.1503488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15645407" }, "bbox": [ -0.3416928, 51.3640385, -0.3416928, 51.3640385 ], "geometry": { "type": "Point", "coordinates": [ -0.3416928, 51.3640385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25546905" }, "bbox": [ -0.1997296, 51.2717908, -0.1997296, 51.2717908 ], "geometry": { "type": "Point", "coordinates": [ -0.1997296, 51.2717908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06378925" }, "bbox": [ -0.4741113, 51.1246207, -0.4741113, 51.1246207 ], "geometry": { "type": "Point", "coordinates": [ -0.4741113, 51.1246207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43532323" }, "bbox": [ 0.0513465, 51.2601836, 0.0513465, 51.2601836 ], "geometry": { "type": "Point", "coordinates": [ 0.0513465, 51.2601836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09350973" }, "bbox": [ -0.4430801, 51.1103946, -0.4430801, 51.1103946 ], "geometry": { "type": "Point", "coordinates": [ -0.4430801, 51.1103946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29463557" }, "bbox": [ -0.1497331, 51.2037541, -0.1497331, 51.2037541 ], "geometry": { "type": "Point", "coordinates": [ -0.1497331, 51.2037541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05366736" }, "bbox": [ -0.4915558, 51.1169815, -0.4915558, 51.1169815 ], "geometry": { "type": "Point", "coordinates": [ -0.4915558, 51.1169815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30443171" }, "bbox": [ -0.1367964, 51.186741, -0.1367964, 51.186741 ], "geometry": { "type": "Point", "coordinates": [ -0.1367964, 51.186741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21502874" }, "bbox": [ -0.2639656, 51.2427702, -0.2639656, 51.2427702 ], "geometry": { "type": "Point", "coordinates": [ -0.2639656, 51.2427702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14392490" }, "bbox": [ -0.3682025, 51.1469497, -0.3682025, 51.1469497 ], "geometry": { "type": "Point", "coordinates": [ -0.3682025, 51.1469497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19542701" }, "bbox": [ -0.2922694, 51.2723735, -0.2922694, 51.2723735 ], "geometry": { "type": "Point", "coordinates": [ -0.2922694, 51.2723735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37506538" }, "bbox": [ -0.0299037, 51.235971, -0.0299037, 51.235971 ], "geometry": { "type": "Point", "coordinates": [ -0.0299037, 51.235971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00385702" }, "bbox": [ -0.5639803, 51.1326443, -0.5639803, 51.1326443 ], "geometry": { "type": "Point", "coordinates": [ -0.5639803, 51.1326443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01548877" }, "bbox": [ -0.5405499, 51.2830198, -0.5405499, 51.2830198 ], "geometry": { "type": "Point", "coordinates": [ -0.5405499, 51.2830198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403974" }, "bbox": [ -0.3656941, 51.1545139, -0.3656941, 51.1545139 ], "geometry": { "type": "Point", "coordinates": [ -0.3656941, 51.1545139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549817" }, "bbox": [ -0.2813166, 51.2740861, -0.2813166, 51.2740861 ], "geometry": { "type": "Point", "coordinates": [ -0.2813166, 51.2740861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06566609" }, "bbox": [ -0.4714717, 51.2938674, -0.4714717, 51.2938674 ], "geometry": { "type": "Point", "coordinates": [ -0.4714717, 51.2938674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36418898" }, "bbox": [ -0.0438166, 51.1607091, -0.0438166, 51.1607091 ], "geometry": { "type": "Point", "coordinates": [ -0.0438166, 51.1607091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23451794" }, "bbox": [ -0.238438, 51.1994779, -0.238438, 51.1994779 ], "geometry": { "type": "Point", "coordinates": [ -0.238438, 51.1994779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03436687" }, "bbox": [ -0.5181855, 51.1847287, -0.5181855, 51.1847287 ], "geometry": { "type": "Point", "coordinates": [ -0.5181855, 51.1847287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13493872" }, "bbox": [ -0.3780128, 51.2352819, -0.3780128, 51.2352819 ], "geometry": { "type": "Point", "coordinates": [ -0.3780128, 51.2352819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36526772" }, "bbox": [ -0.0426581, 51.2573657, -0.0426581, 51.2573657 ], "geometry": { "type": "Point", "coordinates": [ -0.0426581, 51.2573657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07452032" }, "bbox": [ -0.4669533, 51.1970484, -0.4669533, 51.1970484 ], "geometry": { "type": "Point", "coordinates": [ -0.4669533, 51.1970484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21555393" }, "bbox": [ -0.2584875, 51.2896802, -0.2584875, 51.2896802 ], "geometry": { "type": "Point", "coordinates": [ -0.2584875, 51.2896802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38479441" }, "bbox": [ -0.0125893, 51.2090185, -0.0125893, 51.2090185 ], "geometry": { "type": "Point", "coordinates": [ -0.0125893, 51.2090185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10481021" }, "bbox": [ -0.4248396, 51.2225317, -0.4248396, 51.2225317 ], "geometry": { "type": "Point", "coordinates": [ -0.4248396, 51.2225317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22565005" }, "bbox": [ -0.2445309, 51.2904905, -0.2445309, 51.2904905 ], "geometry": { "type": "Point", "coordinates": [ -0.2445309, 51.2904905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03371901" }, "bbox": [ -0.5268703, 51.123021, -0.5268703, 51.123021 ], "geometry": { "type": "Point", "coordinates": [ -0.5268703, 51.123021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22478430" }, "bbox": [ -0.2428097, 51.2116888, -0.2428097, 51.2116888 ], "geometry": { "type": "Point", "coordinates": [ -0.2428097, 51.2116888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11628455" }, "bbox": [ -0.3952412, 51.3511137, -0.3952412, 51.3511137 ], "geometry": { "type": "Point", "coordinates": [ -0.3952412, 51.3511137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06645573" }, "bbox": [ -0.4706011, 51.3717109, -0.4706011, 51.3717109 ], "geometry": { "type": "Point", "coordinates": [ -0.4706011, 51.3717109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30488594" }, "bbox": [ -0.127438, 51.2246772, -0.127438, 51.2246772 ], "geometry": { "type": "Point", "coordinates": [ -0.127438, 51.2246772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18377050" }, "bbox": [ -0.305337, 51.1245215, -0.305337, 51.1245215 ], "geometry": { "type": "Point", "coordinates": [ -0.305337, 51.1245215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32397453" }, "bbox": [ -0.103866, 51.1397377, -0.103866, 51.1397377 ], "geometry": { "type": "Point", "coordinates": [ -0.103866, 51.1397377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22489573" }, "bbox": [ -0.2407522, 51.2245761, -0.2407522, 51.2245761 ], "geometry": { "type": "Point", "coordinates": [ -0.2407522, 51.2245761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08357316" }, "bbox": [ -0.448282, 51.1055068, -0.448282, 51.1055068 ], "geometry": { "type": "Point", "coordinates": [ -0.448282, 51.1055068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28538220" }, "bbox": [ -0.1551745, 51.2634209, -0.1551745, 51.2634209 ], "geometry": { "type": "Point", "coordinates": [ -0.1551745, 51.2634209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18413567" }, "bbox": [ -0.3088327, 51.1620051, -0.3088327, 51.1620051 ], "geometry": { "type": "Point", "coordinates": [ -0.3088327, 51.1620051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07474968" }, "bbox": [ -0.4621896, 51.2182204, -0.4621896, 51.2182204 ], "geometry": { "type": "Point", "coordinates": [ -0.4621896, 51.2182204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42493629" }, "bbox": [ 0.0374113, 51.2250186, 0.0374113, 51.2250186 ], "geometry": { "type": "Point", "coordinates": [ 0.0374113, 51.2250186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24448186" }, "bbox": [ -0.2151562, 51.1896211, -0.2151562, 51.1896211 ], "geometry": { "type": "Point", "coordinates": [ -0.2151562, 51.1896211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34492139" }, "bbox": [ -0.0793667, 51.2278234, -0.0793667, 51.2278234 ], "geometry": { "type": "Point", "coordinates": [ -0.0793667, 51.2278234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28572169" }, "bbox": [ -0.1625013, 51.3049402, -0.1625013, 51.3049402 ], "geometry": { "type": "Point", "coordinates": [ -0.1625013, 51.3049402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17375260" }, "bbox": [ -0.3219647, 51.1262672, -0.3219647, 51.1262672 ], "geometry": { "type": "Point", "coordinates": [ -0.3219647, 51.1262672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465308" }, "bbox": [ -0.5623269, 51.2051837, -0.5623269, 51.2051837 ], "geometry": { "type": "Point", "coordinates": [ -0.5623269, 51.2051837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21489850" }, "bbox": [ -0.2547423, 51.2228868, -0.2547423, 51.2228868 ], "geometry": { "type": "Point", "coordinates": [ -0.2547423, 51.2228868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42404677" }, "bbox": [ 0.0353754, 51.148524, 0.0353754, 51.148524 ], "geometry": { "type": "Point", "coordinates": [ 0.0353754, 51.148524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03472204" }, "bbox": [ -0.523062, 51.2134262, -0.523062, 51.2134262 ], "geometry": { "type": "Point", "coordinates": [ -0.523062, 51.2134262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22472693" }, "bbox": [ -0.2510732, 51.2180047, -0.2510732, 51.2180047 ], "geometry": { "type": "Point", "coordinates": [ -0.2510732, 51.2180047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39568496" }, "bbox": [ 0.0041697, 51.2946667, 0.0041697, 51.2946667 ], "geometry": { "type": "Point", "coordinates": [ 0.0041697, 51.2946667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01561538" }, "bbox": [ -0.5507331, 51.2974959, -0.5507331, 51.2974959 ], "geometry": { "type": "Point", "coordinates": [ -0.5507331, 51.2974959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07479122" }, "bbox": [ -0.4563475, 51.214049, -0.4563475, 51.214049 ], "geometry": { "type": "Point", "coordinates": [ -0.4563475, 51.214049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33448479" }, "bbox": [ -0.08635, 51.1865812, -0.08635, 51.1865812 ], "geometry": { "type": "Point", "coordinates": [ -0.08635, 51.1865812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08503946" }, "bbox": [ -0.4485933, 51.2431001, -0.4485933, 51.2431001 ], "geometry": { "type": "Point", "coordinates": [ -0.4485933, 51.2431001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24467990" }, "bbox": [ -0.215015, 51.2077444, -0.215015, 51.2077444 ], "geometry": { "type": "Point", "coordinates": [ -0.215015, 51.2077444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01357814" }, "bbox": [ -0.5474558, 51.1065812, -0.5474558, 51.1065812 ], "geometry": { "type": "Point", "coordinates": [ -0.5474558, 51.1065812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36417999" }, "bbox": [ -0.0449584, 51.1609115, -0.0449584, 51.1609115 ], "geometry": { "type": "Point", "coordinates": [ -0.0449584, 51.1609115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20487864" }, "bbox": [ -0.2719431, 51.2242487, -0.2719431, 51.2242487 ], "geometry": { "type": "Point", "coordinates": [ -0.2719431, 51.2242487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08416612" }, "bbox": [ -0.4474072, 51.1591438, -0.4474072, 51.1591438 ], "geometry": { "type": "Point", "coordinates": [ -0.4474072, 51.1591438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10578313" }, "bbox": [ -0.4115858, 51.302464, -0.4115858, 51.302464 ], "geometry": { "type": "Point", "coordinates": [ -0.4115858, 51.302464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40441960" }, "bbox": [ 0.0044274, 51.1835774, 0.0044274, 51.1835774 ], "geometry": { "type": "Point", "coordinates": [ 0.0044274, 51.1835774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41505114" }, "bbox": [ 0.0255195, 51.2329956, 0.0255195, 51.2329956 ], "geometry": { "type": "Point", "coordinates": [ 0.0255195, 51.2329956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06367689" }, "bbox": [ -0.4759189, 51.1214097, -0.4759189, 51.1214097 ], "geometry": { "type": "Point", "coordinates": [ -0.4759189, 51.1214097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13398573" }, "bbox": [ -0.3738081, 51.1457494, -0.3738081, 51.1457494 ], "geometry": { "type": "Point", "coordinates": [ -0.3738081, 51.1457494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23467901" }, "bbox": [ -0.2293738, 51.1990732, -0.2293738, 51.1990732 ], "geometry": { "type": "Point", "coordinates": [ -0.2293738, 51.1990732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23462263" }, "bbox": [ -0.2374203, 51.2057205, -0.2374203, 51.2057205 ], "geometry": { "type": "Point", "coordinates": [ -0.2374203, 51.2057205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26534455" }, "bbox": [ -0.1890429, 51.2673494, -0.1890429, 51.2673494 ], "geometry": { "type": "Point", "coordinates": [ -0.1890429, 51.2673494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38448859" }, "bbox": [ -0.0144237, 51.1836195, -0.0144237, 51.1836195 ], "geometry": { "type": "Point", "coordinates": [ -0.0144237, 51.1836195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09471983" }, "bbox": [ -0.4381631, 51.2192252, -0.4381631, 51.2192252 ], "geometry": { "type": "Point", "coordinates": [ -0.4381631, 51.2192252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34527045" }, "bbox": [ -0.0703317, 51.2549486, -0.0703317, 51.2549486 ], "geometry": { "type": "Point", "coordinates": [ -0.0703317, 51.2549486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15452352" }, "bbox": [ -0.3521831, 51.1971391, -0.3521831, 51.1971391 ], "geometry": { "type": "Point", "coordinates": [ -0.3521831, 51.1971391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21442415" }, "bbox": [ -0.2666144, 51.1837711, -0.2666144, 51.1837711 ], "geometry": { "type": "Point", "coordinates": [ -0.2666144, 51.1837711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14583560" }, "bbox": [ -0.360518, 51.314964, -0.360518, 51.314964 ], "geometry": { "type": "Point", "coordinates": [ -0.360518, 51.314964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33454408" }, "bbox": [ -0.0919144, 51.1892233, -0.0919144, 51.1892233 ], "geometry": { "type": "Point", "coordinates": [ -0.0919144, 51.1892233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460887" }, "bbox": [ -0.3682487, 51.2097405, -0.3682487, 51.2097405 ], "geometry": { "type": "Point", "coordinates": [ -0.3682487, 51.2097405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35464147" }, "bbox": [ -0.0632053, 51.2014169, -0.0632053, 51.2014169 ], "geometry": { "type": "Point", "coordinates": [ -0.0632053, 51.2014169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01407230" }, "bbox": [ -0.5469256, 51.152915, -0.5469256, 51.152915 ], "geometry": { "type": "Point", "coordinates": [ -0.5469256, 51.152915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03380191" }, "bbox": [ -0.5288604, 51.1402717, -0.5288604, 51.1402717 ], "geometry": { "type": "Point", "coordinates": [ -0.5288604, 51.1402717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36601059" }, "bbox": [ -0.0480184, 51.3280947, -0.0480184, 51.3280947 ], "geometry": { "type": "Point", "coordinates": [ -0.0480184, 51.3280947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35515313" }, "bbox": [ -0.0593695, 51.2425504, -0.0593695, 51.2425504 ], "geometry": { "type": "Point", "coordinates": [ -0.0593695, 51.2425504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24576063" }, "bbox": [ -0.2138644, 51.3041749, -0.2138644, 51.3041749 ], "geometry": { "type": "Point", "coordinates": [ -0.2138644, 51.3041749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23499138" }, "bbox": [ -0.2267098, 51.2301651, -0.2267098, 51.2301651 ], "geometry": { "type": "Point", "coordinates": [ -0.2267098, 51.2301651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25529935" }, "bbox": [ -0.1957538, 51.256502, -0.1957538, 51.256502 ], "geometry": { "type": "Point", "coordinates": [ -0.1957538, 51.256502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40561661" }, "bbox": [ 0.0087256, 51.2914496, 0.0087256, 51.2914496 ], "geometry": { "type": "Point", "coordinates": [ 0.0087256, 51.2914496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37432418" }, "bbox": [ -0.0382861, 51.1714267, -0.0382861, 51.1714267 ], "geometry": { "type": "Point", "coordinates": [ -0.0382861, 51.1714267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14594608" }, "bbox": [ -0.35882, 51.319412, -0.35882, 51.319412 ], "geometry": { "type": "Point", "coordinates": [ -0.35882, 51.319412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42413074" }, "bbox": [ 0.0334628, 51.1572169, 0.0334628, 51.1572169 ], "geometry": { "type": "Point", "coordinates": [ 0.0334628, 51.1572169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20579418" }, "bbox": [ -0.2664971, 51.3009858, -0.2664971, 51.3009858 ], "geometry": { "type": "Point", "coordinates": [ -0.2664971, 51.3009858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600816" }, "bbox": [ -0.0050585, 51.3232188, -0.0050585, 51.3232188 ], "geometry": { "type": "Point", "coordinates": [ -0.0050585, 51.3232188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28456293" }, "bbox": [ -0.1603994, 51.1981257, -0.1603994, 51.1981257 ], "geometry": { "type": "Point", "coordinates": [ -0.1603994, 51.1981257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21548692" }, "bbox": [ -0.2541954, 51.2802098, -0.2541954, 51.2802098 ], "geometry": { "type": "Point", "coordinates": [ -0.2541954, 51.2802098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460976" }, "bbox": [ -0.3680396, 51.2086628, -0.3680396, 51.2086628 ], "geometry": { "type": "Point", "coordinates": [ -0.3680396, 51.2086628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24422426" }, "bbox": [ -0.2245541, 51.1660787, -0.2245541, 51.1660787 ], "geometry": { "type": "Point", "coordinates": [ -0.2245541, 51.1660787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23470743" }, "bbox": [ -0.2392961, 51.2127989, -0.2392961, 51.2127989 ], "geometry": { "type": "Point", "coordinates": [ -0.2392961, 51.2127989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00558464" }, "bbox": [ -0.5552659, 51.2910418, -0.5552659, 51.2910418 ], "geometry": { "type": "Point", "coordinates": [ -0.5552659, 51.2910418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35451456" }, "bbox": [ -0.0674328, 51.1932349, -0.0674328, 51.1932349 ], "geometry": { "type": "Point", "coordinates": [ -0.0674328, 51.1932349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14562381" }, "bbox": [ -0.3628536, 51.2989274, -0.3628536, 51.2989274 ], "geometry": { "type": "Point", "coordinates": [ -0.3628536, 51.2989274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42406631" }, "bbox": [ 0.037926, 51.1441175, 0.037926, 51.1441175 ], "geometry": { "type": "Point", "coordinates": [ 0.037926, 51.1441175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05524517" }, "bbox": [ -0.4900594, 51.2590306, -0.4900594, 51.2590306 ], "geometry": { "type": "Point", "coordinates": [ -0.4900594, 51.2590306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24430169" }, "bbox": [ -0.2275395, 51.1790466, -0.2275395, 51.1790466 ], "geometry": { "type": "Point", "coordinates": [ -0.2275395, 51.1790466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01550207" }, "bbox": [ -0.5528073, 51.2858324, -0.5528073, 51.2858324 ], "geometry": { "type": "Point", "coordinates": [ -0.5528073, 51.2858324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03523306" }, "bbox": [ -0.520618, 51.2583287, -0.520618, 51.2583287 ], "geometry": { "type": "Point", "coordinates": [ -0.520618, 51.2583287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00348301" }, "bbox": [ -0.5615873, 51.0965659, -0.5615873, 51.0965659 ], "geometry": { "type": "Point", "coordinates": [ -0.5615873, 51.0965659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596816" }, "bbox": [ -0.4130584, 51.3208362, -0.4130584, 51.3208362 ], "geometry": { "type": "Point", "coordinates": [ -0.4130584, 51.3208362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37394374" }, "bbox": [ -0.0367687, 51.1404929, -0.0367687, 51.1404929 ], "geometry": { "type": "Point", "coordinates": [ -0.0367687, 51.1404929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41570734" }, "bbox": [ 0.0220808, 51.2977193, 0.0220808, 51.2977193 ], "geometry": { "type": "Point", "coordinates": [ 0.0220808, 51.2977193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08478409" }, "bbox": [ -0.4432514, 51.2126615, -0.4432514, 51.2126615 ], "geometry": { "type": "Point", "coordinates": [ -0.4432514, 51.2126615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38559973" }, "bbox": [ -0.0081116, 51.2837307, -0.0081116, 51.2837307 ], "geometry": { "type": "Point", "coordinates": [ -0.0081116, 51.2837307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03475812" }, "bbox": [ -0.5183492, 51.2140095, -0.5183492, 51.2140095 ], "geometry": { "type": "Point", "coordinates": [ -0.5183492, 51.2140095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01334469" }, "bbox": [ -0.5526965, 51.0934167, -0.5526965, 51.0934167 ], "geometry": { "type": "Point", "coordinates": [ -0.5526965, 51.0934167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33463263" }, "bbox": [ -0.0930964, 51.2032488, -0.0930964, 51.2032488 ], "geometry": { "type": "Point", "coordinates": [ -0.0930964, 51.2032488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02353111" }, "bbox": [ -0.5406914, 51.1058164, -0.5406914, 51.1058164 ], "geometry": { "type": "Point", "coordinates": [ -0.5406914, 51.1058164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01561551" }, "bbox": [ -0.5506983, 51.2986955, -0.5506983, 51.2986955 ], "geometry": { "type": "Point", "coordinates": [ -0.5506983, 51.2986955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19417924" }, "bbox": [ -0.2884619, 51.1583105, -0.2884619, 51.1583105 ], "geometry": { "type": "Point", "coordinates": [ -0.2884619, 51.1583105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16444526" }, "bbox": [ -0.3350042, 51.1856315, -0.3350042, 51.1856315 ], "geometry": { "type": "Point", "coordinates": [ -0.3350042, 51.1856315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06369263" }, "bbox": [ -0.4737524, 51.1190318, -0.4737524, 51.1190318 ], "geometry": { "type": "Point", "coordinates": [ -0.4737524, 51.1190318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07419018" }, "bbox": [ -0.4583967, 51.1597201, -0.4583967, 51.1597201 ], "geometry": { "type": "Point", "coordinates": [ -0.4583967, 51.1597201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41428538" }, "bbox": [ 0.0273243, 51.1630898, 0.0273243, 51.1630898 ], "geometry": { "type": "Point", "coordinates": [ 0.0273243, 51.1630898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11578745" }, "bbox": [ -0.3969804, 51.3050964, -0.3969804, 51.3050964 ], "geometry": { "type": "Point", "coordinates": [ -0.3969804, 51.3050964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02320174" }, "bbox": [ -0.5450311, 51.0850518, -0.5450311, 51.0850518 ], "geometry": { "type": "Point", "coordinates": [ -0.5450311, 51.0850518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18575001" }, "bbox": [ -0.3015129, 51.3003856, -0.3015129, 51.3003856 ], "geometry": { "type": "Point", "coordinates": [ -0.3015129, 51.3003856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15366296" }, "bbox": [ -0.3492688, 51.1202778, -0.3492688, 51.1202778 ], "geometry": { "type": "Point", "coordinates": [ -0.3492688, 51.1202778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41458543" }, "bbox": [ 0.0285183, 51.1905864, 0.0285183, 51.1905864 ], "geometry": { "type": "Point", "coordinates": [ 0.0285183, 51.1905864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07483517" }, "bbox": [ -0.4641548, 51.2226694, -0.4641548, 51.2226694 ], "geometry": { "type": "Point", "coordinates": [ -0.4641548, 51.2226694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03372869" }, "bbox": [ -0.5253243, 51.129319, -0.5253243, 51.129319 ], "geometry": { "type": "Point", "coordinates": [ -0.5253243, 51.129319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06539925" }, "bbox": [ -0.4679122, 51.2683425, -0.4679122, 51.2683425 ], "geometry": { "type": "Point", "coordinates": [ -0.4679122, 51.2683425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36596708" }, "bbox": [ -0.040038, 51.3139316, -0.040038, 51.3139316 ], "geometry": { "type": "Point", "coordinates": [ -0.040038, 51.3139316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32396258" }, "bbox": [ -0.1057519, 51.1401434, -0.1057519, 51.1401434 ], "geometry": { "type": "Point", "coordinates": [ -0.1057519, 51.1401434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21488913" }, "bbox": [ -0.2564, 51.2194049, -0.2564, 51.2194049 ], "geometry": { "type": "Point", "coordinates": [ -0.2564, 51.2194049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24447487" }, "bbox": [ -0.2164778, 51.1894292, -0.2164778, 51.1894292 ], "geometry": { "type": "Point", "coordinates": [ -0.2164778, 51.1894292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12423549" }, "bbox": [ -0.394366, 51.1706301, -0.394366, 51.1706301 ], "geometry": { "type": "Point", "coordinates": [ -0.394366, 51.1706301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40466570" }, "bbox": [ 0.0117973, 51.2024211, 0.0117973, 51.2024211 ], "geometry": { "type": "Point", "coordinates": [ 0.0117973, 51.2024211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20478759" }, "bbox": [ -0.2708663, 51.2147967, -0.2708663, 51.2147967 ], "geometry": { "type": "Point", "coordinates": [ -0.2708663, 51.2147967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33423879" }, "bbox": [ -0.0934817, 51.1688226, -0.0934817, 51.1688226 ], "geometry": { "type": "Point", "coordinates": [ -0.0934817, 51.1688226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40541669" }, "bbox": [ 0.0079253, 51.2741816, 0.0079253, 51.2741816 ], "geometry": { "type": "Point", "coordinates": [ 0.0079253, 51.2741816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04333190" }, "bbox": [ -0.5116762, 51.0951929, -0.5116762, 51.0951929 ], "geometry": { "type": "Point", "coordinates": [ -0.5116762, 51.0951929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29562996" }, "bbox": [ -0.1467468, 51.2970334, -0.1467468, 51.2970334 ], "geometry": { "type": "Point", "coordinates": [ -0.1467468, 51.2970334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30499166" }, "bbox": [ -0.1264112, 51.2311456, -0.1264112, 51.2311456 ], "geometry": { "type": "Point", "coordinates": [ -0.1264112, 51.2311456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405606" }, "bbox": [ -0.2348142, 51.1465749, -0.2348142, 51.1465749 ], "geometry": { "type": "Point", "coordinates": [ -0.2348142, 51.1465749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34435858" }, "bbox": [ -0.0761455, 51.1755108, -0.0761455, 51.1755108 ], "geometry": { "type": "Point", "coordinates": [ -0.0761455, 51.1755108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07559695" }, "bbox": [ -0.4535785, 51.292549, -0.4535785, 51.292549 ], "geometry": { "type": "Point", "coordinates": [ -0.4535785, 51.292549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21427862" }, "bbox": [ -0.2593474, 51.1698215, -0.2593474, 51.1698215 ], "geometry": { "type": "Point", "coordinates": [ -0.2593474, 51.1698215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19546320" }, "bbox": [ -0.2863043, 51.2744532, -0.2863043, 51.2744532 ], "geometry": { "type": "Point", "coordinates": [ -0.2863043, 51.2744532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08549550" }, "bbox": [ -0.4393305, 51.279224, -0.4393305, 51.279224 ], "geometry": { "type": "Point", "coordinates": [ -0.4393305, 51.279224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512022" }, "bbox": [ -0.064393, 51.2441193, -0.064393, 51.2441193 ], "geometry": { "type": "Point", "coordinates": [ -0.064393, 51.2441193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22517587" }, "bbox": [ -0.2420899, 51.2527975, -0.2420899, 51.2527975 ], "geometry": { "type": "Point", "coordinates": [ -0.2420899, 51.2527975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13473011" }, "bbox": [ -0.3790098, 51.2119054, -0.3790098, 51.2119054 ], "geometry": { "type": "Point", "coordinates": [ -0.3790098, 51.2119054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40519246" }, "bbox": [ 0.0174123, 51.2450611, 0.0174123, 51.2450611 ], "geometry": { "type": "Point", "coordinates": [ 0.0174123, 51.2450611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446069" }, "bbox": [ -0.1326566, 51.1865167, -0.1326566, 51.1865167 ], "geometry": { "type": "Point", "coordinates": [ -0.1326566, 51.1865167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04626066" }, "bbox": [ -0.4992175, 51.3534089, -0.4992175, 51.3534089 ], "geometry": { "type": "Point", "coordinates": [ -0.4992175, 51.3534089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24419858" }, "bbox": [ -0.2145871, 51.1596903, -0.2145871, 51.1596903 ], "geometry": { "type": "Point", "coordinates": [ -0.2145871, 51.1596903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26471927" }, "bbox": [ -0.194748, 51.2110374, -0.194748, 51.2110374 ], "geometry": { "type": "Point", "coordinates": [ -0.194748, 51.2110374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00695043" }, "bbox": [ -0.5561646, 51.4148464, -0.5561646, 51.4148464 ], "geometry": { "type": "Point", "coordinates": [ -0.5561646, 51.4148464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08363471" }, "bbox": [ -0.453372, 51.1195328, -0.453372, 51.1195328 ], "geometry": { "type": "Point", "coordinates": [ -0.453372, 51.1195328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15451447" }, "bbox": [ -0.3532818, 51.1969669, -0.3532818, 51.1969669 ], "geometry": { "type": "Point", "coordinates": [ -0.3532818, 51.1969669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43403447" }, "bbox": [ 0.0477697, 51.1457045, 0.0477697, 51.1457045 ], "geometry": { "type": "Point", "coordinates": [ 0.0477697, 51.1457045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40451320" }, "bbox": [ 0.0038406, 51.1888565, 0.0038406, 51.1888565 ], "geometry": { "type": "Point", "coordinates": [ 0.0038406, 51.1888565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08429624" }, "bbox": [ -0.4430015, 51.1691543, -0.4430015, 51.1691543 ], "geometry": { "type": "Point", "coordinates": [ -0.4430015, 51.1691543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38391463" }, "bbox": [ -0.0267581, 51.1392932, -0.0267581, 51.1392932 ], "geometry": { "type": "Point", "coordinates": [ -0.0267581, 51.1392932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09585325" }, "bbox": [ -0.4298634, 51.3127981, -0.4298634, 51.3127981 ], "geometry": { "type": "Point", "coordinates": [ -0.4298634, 51.3127981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24452485" }, "bbox": [ -0.223085, 51.1983926, -0.223085, 51.1983926 ], "geometry": { "type": "Point", "coordinates": [ -0.223085, 51.1983926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34499404" }, "bbox": [ -0.0688208, 51.2246701, -0.0688208, 51.2246701 ], "geometry": { "type": "Point", "coordinates": [ -0.0688208, 51.2246701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41441928" }, "bbox": [ 0.0186121, 51.1802609, 0.0186121, 51.1802609 ], "geometry": { "type": "Point", "coordinates": [ 0.0186121, 51.1802609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05536312" }, "bbox": [ -0.4871953, 51.2673869, -0.4871953, 51.2673869 ], "geometry": { "type": "Point", "coordinates": [ -0.4871953, 51.2673869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14535592" }, "bbox": [ -0.3592933, 51.2728724, -0.3592933, 51.2728724 ], "geometry": { "type": "Point", "coordinates": [ -0.3592933, 51.2728724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03516059" }, "bbox": [ -0.5168787, 51.2540472, -0.5168787, 51.2540472 ], "geometry": { "type": "Point", "coordinates": [ -0.5168787, 51.2540472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28465382" }, "bbox": [ -0.1614839, 51.206153, -0.1614839, 51.206153 ], "geometry": { "type": "Point", "coordinates": [ -0.1614839, 51.206153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42414776" }, "bbox": [ 0.035931, 51.1573703, 0.035931, 51.1573703 ], "geometry": { "type": "Point", "coordinates": [ 0.035931, 51.1573703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40554832" }, "bbox": [ 0.0126097, 51.279796, 0.0126097, 51.279796 ], "geometry": { "type": "Point", "coordinates": [ 0.0126097, 51.279796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13415488" }, "bbox": [ -0.3775095, 51.1649191, -0.3775095, 51.1649191 ], "geometry": { "type": "Point", "coordinates": [ -0.3775095, 51.1649191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539510" }, "bbox": [ 0.0470269, 51.2592309, 0.0470269, 51.2592309 ], "geometry": { "type": "Point", "coordinates": [ 0.0470269, 51.2592309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34452877" }, "bbox": [ -0.0800678, 51.1954552, -0.0800678, 51.1954552 ], "geometry": { "type": "Point", "coordinates": [ -0.0800678, 51.1954552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18496105" }, "bbox": [ -0.302867, 51.2283092, -0.302867, 51.2283092 ], "geometry": { "type": "Point", "coordinates": [ -0.302867, 51.2283092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18380787" }, "bbox": [ -0.3138712, 51.1368318, -0.3138712, 51.1368318 ], "geometry": { "type": "Point", "coordinates": [ -0.3138712, 51.1368318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19393944" }, "bbox": [ -0.2945858, 51.1417985, -0.2945858, 51.1417985 ], "geometry": { "type": "Point", "coordinates": [ -0.2945858, 51.1417985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522370" }, "bbox": [ -0.3928119, 51.2624748, -0.3928119, 51.2624748 ], "geometry": { "type": "Point", "coordinates": [ -0.3928119, 51.2624748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15435673" }, "bbox": [ -0.3482376, 51.1809893, -0.3482376, 51.1809893 ], "geometry": { "type": "Point", "coordinates": [ -0.3482376, 51.1809893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14576139" }, "bbox": [ -0.3571066, 51.3041517, -0.3571066, 51.3041517 ], "geometry": { "type": "Point", "coordinates": [ -0.3571066, 51.3041517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14465338" }, "bbox": [ -0.3618655, 51.2051773, -0.3618655, 51.2051773 ], "geometry": { "type": "Point", "coordinates": [ -0.3618655, 51.2051773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16431974" }, "bbox": [ -0.3389207, 51.1810846, -0.3389207, 51.1810846 ], "geometry": { "type": "Point", "coordinates": [ -0.3389207, 51.1810846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02672938" }, "bbox": [ -0.530934, 51.396282, -0.530934, 51.396282 ], "geometry": { "type": "Point", "coordinates": [ -0.530934, 51.396282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522036" }, "bbox": [ -0.3932896, 51.2594259, -0.3932896, 51.2594259 ], "geometry": { "type": "Point", "coordinates": [ -0.3932896, 51.2594259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08488326" }, "bbox": [ -0.4425882, 51.2231627, -0.4425882, 51.2231627 ], "geometry": { "type": "Point", "coordinates": [ -0.4425882, 51.2231627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01465210" }, "bbox": [ -0.5484422, 51.2055565, -0.5484422, 51.2055565 ], "geometry": { "type": "Point", "coordinates": [ -0.5484422, 51.2055565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02567499" }, "bbox": [ -0.5273983, 51.3028117, -0.5273983, 51.3028117 ], "geometry": { "type": "Point", "coordinates": [ -0.5273983, 51.3028117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02426231" }, "bbox": [ -0.5335591, 51.1707951, -0.5335591, 51.1707951 ], "geometry": { "type": "Point", "coordinates": [ -0.5335591, 51.1707951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31470408" }, "bbox": [ -0.1253594, 51.2079855, -0.1253594, 51.2079855 ], "geometry": { "type": "Point", "coordinates": [ -0.1253594, 51.2079855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11529780" }, "bbox": [ -0.3965653, 51.2634455, -0.3965653, 51.2634455 ], "geometry": { "type": "Point", "coordinates": [ -0.3965653, 51.2634455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14467359" }, "bbox": [ -0.3597738, 51.2069802, -0.3597738, 51.2069802 ], "geometry": { "type": "Point", "coordinates": [ -0.3597738, 51.2069802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09584516" }, "bbox": [ -0.4309381, 51.3120783, -0.4309381, 51.3120783 ], "geometry": { "type": "Point", "coordinates": [ -0.4309381, 51.3120783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03623247" }, "bbox": [ -0.5176919, 51.351968, -0.5176919, 51.351968 ], "geometry": { "type": "Point", "coordinates": [ -0.5176919, 51.351968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33454595" }, "bbox": [ -0.0914003, 51.1970571, -0.0914003, 51.1970571 ], "geometry": { "type": "Point", "coordinates": [ -0.0914003, 51.1970571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32427339" }, "bbox": [ -0.1029357, 51.1652193, -0.1029357, 51.1652193 ], "geometry": { "type": "Point", "coordinates": [ -0.1029357, 51.1652193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440162" }, "bbox": [ 0.0160314, 51.1835742, 0.0160314, 51.1835742 ], "geometry": { "type": "Point", "coordinates": [ 0.0160314, 51.1835742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33459859" }, "bbox": [ -0.083904, 51.1938627, -0.083904, 51.1938627 ], "geometry": { "type": "Point", "coordinates": [ -0.083904, 51.1938627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35423903" }, "bbox": [ -0.0651545, 51.1615283, -0.0651545, 51.1615283 ], "geometry": { "type": "Point", "coordinates": [ -0.0651545, 51.1615283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18387599" }, "bbox": [ -0.3040109, 51.1379337, -0.3040109, 51.1379337 ], "geometry": { "type": "Point", "coordinates": [ -0.3040109, 51.1379337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01451079" }, "bbox": [ -0.5542296, 51.2026404, -0.5542296, 51.2026404 ], "geometry": { "type": "Point", "coordinates": [ -0.5542296, 51.2026404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09427341" }, "bbox": [ -0.4318592, 51.1703128, -0.4318592, 51.1703128 ], "geometry": { "type": "Point", "coordinates": [ -0.4318592, 51.1703128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29561684" }, "bbox": [ -0.1488435, 51.2960383, -0.1488435, 51.2960383 ], "geometry": { "type": "Point", "coordinates": [ -0.1488435, 51.2960383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16412301" }, "bbox": [ -0.3392902, 51.1566064, -0.3392902, 51.1566064 ], "geometry": { "type": "Point", "coordinates": [ -0.3392902, 51.1566064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06455319" }, "bbox": [ -0.4768145, 51.1960672, -0.4768145, 51.1960672 ], "geometry": { "type": "Point", "coordinates": [ -0.4768145, 51.1960672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32516287" }, "bbox": [ -0.1012039, 51.2508093, -0.1012039, 51.2508093 ], "geometry": { "type": "Point", "coordinates": [ -0.1012039, 51.2508093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453663" }, "bbox": [ -0.1357861, 51.1950141, -0.1357861, 51.1950141 ], "geometry": { "type": "Point", "coordinates": [ -0.1357861, 51.1950141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15504635" }, "bbox": [ -0.3456376, 51.2409567, -0.3456376, 51.2409567 ], "geometry": { "type": "Point", "coordinates": [ -0.3456376, 51.2409567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04471861" }, "bbox": [ -0.509229, 51.2183312, -0.509229, 51.2183312 ], "geometry": { "type": "Point", "coordinates": [ -0.509229, 51.2183312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37457191" }, "bbox": [ -0.030491, 51.195772, -0.030491, 51.195772 ], "geometry": { "type": "Point", "coordinates": [ -0.030491, 51.195772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04434343" }, "bbox": [ -0.5070935, 51.1805775, -0.5070935, 51.1805775 ], "geometry": { "type": "Point", "coordinates": [ -0.5070935, 51.1805775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24460703" }, "bbox": [ -0.2256084, 51.2001401, -0.2256084, 51.2001401 ], "geometry": { "type": "Point", "coordinates": [ -0.2256084, 51.2001401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05347242" }, "bbox": [ -0.4914439, 51.0993736, -0.4914439, 51.0993736 ], "geometry": { "type": "Point", "coordinates": [ -0.4914439, 51.0993736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12485392" }, "bbox": [ -0.3897401, 51.2282844, -0.3897401, 51.2282844 ], "geometry": { "type": "Point", "coordinates": [ -0.3897401, 51.2282844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07550494" }, "bbox": [ -0.4662852, 51.2923784, -0.4662852, 51.2923784 ], "geometry": { "type": "Point", "coordinates": [ -0.4662852, 51.2923784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13590116" }, "bbox": [ -0.3797094, 51.3203035, -0.3797094, 51.3203035 ], "geometry": { "type": "Point", "coordinates": [ -0.3797094, 51.3203035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32442837" }, "bbox": [ -0.10867, 51.1832238, -0.10867, 51.1832238 ], "geometry": { "type": "Point", "coordinates": [ -0.10867, 51.1832238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09433217" }, "bbox": [ -0.4373351, 51.1773911, -0.4373351, 51.1773911 ], "geometry": { "type": "Point", "coordinates": [ -0.4373351, 51.1773911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497201" }, "bbox": [ -0.2295155, 51.2268188, -0.2295155, 51.2268188 ], "geometry": { "type": "Point", "coordinates": [ -0.2295155, 51.2268188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36511233" }, "bbox": [ -0.0514107, 51.2444149, -0.0514107, 51.2444149 ], "geometry": { "type": "Point", "coordinates": [ -0.0514107, 51.2444149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20493284" }, "bbox": [ -0.2779315, 51.2350208, -0.2779315, 51.2350208 ], "geometry": { "type": "Point", "coordinates": [ -0.2779315, 51.2350208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13496995" }, "bbox": [ -0.3727312, 51.2374493, -0.3727312, 51.2374493 ], "geometry": { "type": "Point", "coordinates": [ -0.3727312, 51.2374493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21486533" }, "bbox": [ -0.2590914, 51.2214886, -0.2590914, 51.2214886 ], "geometry": { "type": "Point", "coordinates": [ -0.2590914, 51.2214886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23471550" }, "bbox": [ -0.2381787, 51.2134194, -0.2381787, 51.2134194 ], "geometry": { "type": "Point", "coordinates": [ -0.2381787, 51.2134194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35446011" }, "bbox": [ -0.0615424, 51.1801469, -0.0615424, 51.1801469 ], "geometry": { "type": "Point", "coordinates": [ -0.0615424, 51.1801469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20488313" }, "bbox": [ -0.2712809, 51.2198065, -0.2712809, 51.2198065 ], "geometry": { "type": "Point", "coordinates": [ -0.2712809, 51.2198065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01400682" }, "bbox": [ -0.5563092, 51.1577034, -0.5563092, 51.1577034 ], "geometry": { "type": "Point", "coordinates": [ -0.5563092, 51.1577034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43410910" }, "bbox": [ 0.0447888, 51.1510385, 0.0447888, 51.1510385 ], "geometry": { "type": "Point", "coordinates": [ 0.0447888, 51.1510385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15649059" }, "bbox": [ -0.3365521, 51.3685497, -0.3365521, 51.3685497 ], "geometry": { "type": "Point", "coordinates": [ -0.3365521, 51.3685497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00612226" }, "bbox": [ -0.5627466, 51.3415935, -0.5627466, 51.3415935 ], "geometry": { "type": "Point", "coordinates": [ -0.5627466, 51.3415935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24451152" }, "bbox": [ -0.2251087, 51.1951342, -0.2251087, 51.1951342 ], "geometry": { "type": "Point", "coordinates": [ -0.2251087, 51.1951342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32445740" }, "bbox": [ -0.1046328, 51.1834316, -0.1046328, 51.1834316 ], "geometry": { "type": "Point", "coordinates": [ -0.1046328, 51.1834316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12408983" }, "bbox": [ -0.387136, 51.1555734, -0.387136, 51.1555734 ], "geometry": { "type": "Point", "coordinates": [ -0.387136, 51.1555734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18404508" }, "bbox": [ -0.3079351, 51.1478232, -0.3079351, 51.1478232 ], "geometry": { "type": "Point", "coordinates": [ -0.3079351, 51.1478232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05363866" }, "bbox": [ -0.4957503, 51.119715, -0.4957503, 51.119715 ], "geometry": { "type": "Point", "coordinates": [ -0.4957503, 51.119715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41508545" }, "bbox": [ 0.0303865, 51.2355396, 0.0303865, 51.2355396 ], "geometry": { "type": "Point", "coordinates": [ 0.0303865, 51.2355396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20495467" }, "bbox": [ -0.2748733, 51.2335854, -0.2748733, 51.2335854 ], "geometry": { "type": "Point", "coordinates": [ -0.2748733, 51.2335854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36493918" }, "bbox": [ -0.0481769, 51.2255602, -0.0481769, 51.2255602 ], "geometry": { "type": "Point", "coordinates": [ -0.0481769, 51.2255602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31464596" }, "bbox": [ -0.1196559, 51.2065276, -0.1196559, 51.2065276 ], "geometry": { "type": "Point", "coordinates": [ -0.1196559, 51.2065276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41426713" }, "bbox": [ 0.024651, 51.1609218, 0.024651, 51.1609218 ], "geometry": { "type": "Point", "coordinates": [ 0.024651, 51.1609218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05465306" }, "bbox": [ -0.490766, 51.2040442, -0.490766, 51.2040442 ], "geometry": { "type": "Point", "coordinates": [ -0.490766, 51.2040442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23444484" }, "bbox": [ -0.2349248, 51.1893998, -0.2349248, 51.1893998 ], "geometry": { "type": "Point", "coordinates": [ -0.2349248, 51.1893998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05369506" }, "bbox": [ -0.4876825, 51.114086, -0.4876825, 51.114086 ], "geometry": { "type": "Point", "coordinates": [ -0.4876825, 51.114086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09598803" }, "bbox": [ -0.4248006, 51.3198197, -0.4248006, 51.3198197 ], "geometry": { "type": "Point", "coordinates": [ -0.4248006, 51.3198197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388924" }, "bbox": [ -0.5307695, 51.1345018, -0.5307695, 51.1345018 ], "geometry": { "type": "Point", "coordinates": [ -0.5307695, 51.1345018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29517732" }, "bbox": [ -0.1420989, 51.2463329, -0.1420989, 51.2463329 ], "geometry": { "type": "Point", "coordinates": [ -0.1420989, 51.2463329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08398750" }, "bbox": [ -0.4449571, 51.1443091, -0.4449571, 51.1443091 ], "geometry": { "type": "Point", "coordinates": [ -0.4449571, 51.1443091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40454981" }, "bbox": [ 0.0093278, 51.1942568, 0.0093278, 51.1942568 ], "geometry": { "type": "Point", "coordinates": [ 0.0093278, 51.1942568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16589217" }, "bbox": [ -0.3238705, 51.3106122, -0.3238705, 51.3106122 ], "geometry": { "type": "Point", "coordinates": [ -0.3238705, 51.3106122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519633" }, "bbox": [ -0.5116572, 51.2517071, -0.5116572, 51.2517071 ], "geometry": { "type": "Point", "coordinates": [ -0.5116572, 51.2517071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42546443" }, "bbox": [ 0.0432979, 51.2712573, 0.0432979, 51.2712573 ], "geometry": { "type": "Point", "coordinates": [ 0.0432979, 51.2712573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04352665" }, "bbox": [ -0.5119075, 51.1107339, -0.5119075, 51.1107339 ], "geometry": { "type": "Point", "coordinates": [ -0.5119075, 51.1107339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40573115" }, "bbox": [ 0.0109926, 51.2961128, 0.0109926, 51.2961128 ], "geometry": { "type": "Point", "coordinates": [ 0.0109926, 51.2961128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00721126" }, "bbox": [ -0.5604743, 51.4401668, -0.5604743, 51.4401668 ], "geometry": { "type": "Point", "coordinates": [ -0.5604743, 51.4401668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17498111" }, "bbox": [ -0.3141129, 51.2290985, -0.3141129, 51.2290985 ], "geometry": { "type": "Point", "coordinates": [ -0.3141129, 51.2290985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31441472" }, "bbox": [ -0.1247881, 51.1866909, -0.1247881, 51.1866909 ], "geometry": { "type": "Point", "coordinates": [ -0.1247881, 51.1866909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02466528" }, "bbox": [ -0.5321601, 51.2065569, -0.5321601, 51.2065569 ], "geometry": { "type": "Point", "coordinates": [ -0.5321601, 51.2065569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25416960" }, "bbox": [ -0.2037217, 51.1597717, -0.2037217, 51.1597717 ], "geometry": { "type": "Point", "coordinates": [ -0.2037217, 51.1597717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18464118" }, "bbox": [ -0.3063868, 51.2025672, -0.3063868, 51.2025672 ], "geometry": { "type": "Point", "coordinates": [ -0.3063868, 51.2025672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31441384" }, "bbox": [ -0.1249016, 51.1876225, -0.1249016, 51.1876225 ], "geometry": { "type": "Point", "coordinates": [ -0.1249016, 51.1876225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09422934" }, "bbox": [ -0.4380875, 51.1698624, -0.4380875, 51.1698624 ], "geometry": { "type": "Point", "coordinates": [ -0.4380875, 51.1698624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31443964" }, "bbox": [ -0.1214719, 51.1858468, -0.1214719, 51.1858468 ], "geometry": { "type": "Point", "coordinates": [ -0.1214719, 51.1858468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04651872" }, "bbox": [ -0.5044441, 51.3809351, -0.5044441, 51.3809351 ], "geometry": { "type": "Point", "coordinates": [ -0.5044441, 51.3809351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375682" }, "bbox": [ -0.3498057, 51.1278096, -0.3498057, 51.1278096 ], "geometry": { "type": "Point", "coordinates": [ -0.3498057, 51.1278096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38591974" }, "bbox": [ -0.0181838, 51.3200083, -0.0181838, 51.3200083 ], "geometry": { "type": "Point", "coordinates": [ -0.0181838, 51.3200083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418034" }, "bbox": [ -0.5168082, 51.1619254, -0.5168082, 51.1619254 ], "geometry": { "type": "Point", "coordinates": [ -0.5168082, 51.1619254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12405397" }, "bbox": [ -0.3923531, 51.1569866, -0.3923531, 51.1569866 ], "geometry": { "type": "Point", "coordinates": [ -0.3923531, 51.1569866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09432830" }, "bbox": [ -0.437906, 51.1785337, -0.437906, 51.1785337 ], "geometry": { "type": "Point", "coordinates": [ -0.437906, 51.1785337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20485037" }, "bbox": [ -0.2759112, 51.2218456, -0.2759112, 51.2218456 ], "geometry": { "type": "Point", "coordinates": [ -0.2759112, 51.2218456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42556554" }, "bbox": [ 0.0441594, 51.2809977, 0.0441594, 51.2809977 ], "geometry": { "type": "Point", "coordinates": [ 0.0441594, 51.2809977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15417883" }, "bbox": [ -0.3457083, 51.1639424, -0.3457083, 51.1639424 ], "geometry": { "type": "Point", "coordinates": [ -0.3457083, 51.1639424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06647172" }, "bbox": [ -0.4684063, 51.3714966, -0.4684063, 51.3714966 ], "geometry": { "type": "Point", "coordinates": [ -0.4684063, 51.3714966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12384280" }, "bbox": [ -0.3943735, 51.1374943, -0.3943735, 51.1374943 ], "geometry": { "type": "Point", "coordinates": [ -0.3943735, 51.1374943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11639804" }, "bbox": [ -0.3932622, 51.3554039, -0.3932622, 51.3554039 ], "geometry": { "type": "Point", "coordinates": [ -0.3932622, 51.3554039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22474877" }, "bbox": [ -0.2476208, 51.2158981, -0.2476208, 51.2158981 ], "geometry": { "type": "Point", "coordinates": [ -0.2476208, 51.2158981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06558342" }, "bbox": [ -0.4693902, 51.2879186, -0.4693902, 51.2879186 ], "geometry": { "type": "Point", "coordinates": [ -0.4693902, 51.2879186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10473798" }, "bbox": [ -0.42094, 51.2205055, -0.42094, 51.2205055 ], "geometry": { "type": "Point", "coordinates": [ -0.42094, 51.2205055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10362399" }, "bbox": [ -0.4265584, 51.121636, -0.4265584, 51.121636 ], "geometry": { "type": "Point", "coordinates": [ -0.4265584, 51.121636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22503035" }, "bbox": [ -0.2495168, 51.2393614, -0.2495168, 51.2393614 ], "geometry": { "type": "Point", "coordinates": [ -0.2495168, 51.2393614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15416313" }, "bbox": [ -0.3481559, 51.1571981, -0.3481559, 51.1571981 ], "geometry": { "type": "Point", "coordinates": [ -0.3481559, 51.1571981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27544075" }, "bbox": [ -0.1747283, 51.2778715, -0.1747283, 51.2778715 ], "geometry": { "type": "Point", "coordinates": [ -0.1747283, 51.2778715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11504033" }, "bbox": [ -0.4055279, 51.2415225, -0.4055279, 51.2415225 ], "geometry": { "type": "Point", "coordinates": [ -0.4055279, 51.2415225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27521024" }, "bbox": [ -0.1800096, 51.2552438, -0.1800096, 51.2552438 ], "geometry": { "type": "Point", "coordinates": [ -0.1800096, 51.2552438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09422087" }, "bbox": [ -0.4392416, 51.1746767, -0.4392416, 51.1746767 ], "geometry": { "type": "Point", "coordinates": [ -0.4392416, 51.1746767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02390352" }, "bbox": [ -0.5430016, 51.1463806, -0.5430016, 51.1463806 ], "geometry": { "type": "Point", "coordinates": [ -0.5430016, 51.1463806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03379160" }, "bbox": [ -0.5165608, 51.1282823, -0.5165608, 51.1282823 ], "geometry": { "type": "Point", "coordinates": [ -0.5165608, 51.1282823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09422548" }, "bbox": [ -0.4385161, 51.1712203, -0.4385161, 51.1712203 ], "geometry": { "type": "Point", "coordinates": [ -0.4385161, 51.1712203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39495782" }, "bbox": [ -0.0022155, 51.2305281, -0.0022155, 51.2305281 ], "geometry": { "type": "Point", "coordinates": [ -0.0022155, 51.2305281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26438828" }, "bbox": [ -0.1862459, 51.1746807, -0.1862459, 51.1746807 ], "geometry": { "type": "Point", "coordinates": [ -0.1862459, 51.1746807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09434108" }, "bbox": [ -0.4363023, 51.1764645, -0.4363023, 51.1764645 ], "geometry": { "type": "Point", "coordinates": [ -0.4363023, 51.1764645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21426196" }, "bbox": [ -0.2617766, 51.1730521, -0.2617766, 51.1730521 ], "geometry": { "type": "Point", "coordinates": [ -0.2617766, 51.1730521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28542897" }, "bbox": [ -0.1622262, 51.2793741, -0.1622262, 51.2793741 ], "geometry": { "type": "Point", "coordinates": [ -0.1622262, 51.2793741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15370586" }, "bbox": [ -0.3572123, 51.1285356, -0.3572123, 51.1285356 ], "geometry": { "type": "Point", "coordinates": [ -0.3572123, 51.1285356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15627541" }, "bbox": [ -0.3393056, 51.3489533, -0.3393056, 51.3489533 ], "geometry": { "type": "Point", "coordinates": [ -0.3393056, 51.3489533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16437180" }, "bbox": [ -0.3318362, 51.1815478, -0.3318362, 51.1815478 ], "geometry": { "type": "Point", "coordinates": [ -0.3318362, 51.1815478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469036" }, "bbox": [ -0.2280429, 51.2030534, -0.2280429, 51.2030534 ], "geometry": { "type": "Point", "coordinates": [ -0.2280429, 51.2030534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34480718" }, "bbox": [ -0.0816038, 51.2170118, -0.0816038, 51.2170118 ], "geometry": { "type": "Point", "coordinates": [ -0.0816038, 51.2170118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26594423" }, "bbox": [ -0.18712, 51.3181147, -0.18712, 51.3181147 ], "geometry": { "type": "Point", "coordinates": [ -0.18712, 51.3181147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09590670" }, "bbox": [ -0.436169, 51.3258389, -0.436169, 51.3258389 ], "geometry": { "type": "Point", "coordinates": [ -0.436169, 51.3258389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38448750" }, "bbox": [ -0.0147063, 51.1827766, -0.0147063, 51.1827766 ], "geometry": { "type": "Point", "coordinates": [ -0.0147063, 51.1827766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42414024" }, "bbox": [ 0.0347988, 51.1527359, 0.0347988, 51.1527359 ], "geometry": { "type": "Point", "coordinates": [ 0.0347988, 51.1527359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12421655" }, "bbox": [ -0.3970666, 51.1712019, -0.3970666, 51.1712019 ], "geometry": { "type": "Point", "coordinates": [ -0.3970666, 51.1712019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21482593" }, "bbox": [ -0.2648406, 51.2267682, -0.2648406, 51.2267682 ], "geometry": { "type": "Point", "coordinates": [ -0.2648406, 51.2267682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42547724" }, "bbox": [ 0.0456228, 51.2693904, 0.0456228, 51.2693904 ], "geometry": { "type": "Point", "coordinates": [ 0.0456228, 51.2693904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00400322" }, "bbox": [ -0.5710668, 51.1524711, -0.5710668, 51.1524711 ], "geometry": { "type": "Point", "coordinates": [ -0.5710668, 51.1524711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35436919" }, "bbox": [ -0.0603791, 51.1719004, -0.0603791, 51.1719004 ], "geometry": { "type": "Point", "coordinates": [ -0.0603791, 51.1719004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13469489" }, "bbox": [ -0.3701489, 51.2098976, -0.3701489, 51.2098976 ], "geometry": { "type": "Point", "coordinates": [ -0.3701489, 51.2098976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43400432" }, "bbox": [ 0.0438771, 51.1444649, 0.0438771, 51.1444649 ], "geometry": { "type": "Point", "coordinates": [ 0.0438771, 51.1444649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27454151" }, "bbox": [ -0.1778602, 51.1946438, -0.1778602, 51.1946438 ], "geometry": { "type": "Point", "coordinates": [ -0.1778602, 51.1946438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33485224" }, "bbox": [ -0.0895579, 51.2177612, -0.0895579, 51.2177612 ], "geometry": { "type": "Point", "coordinates": [ -0.0895579, 51.2177612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14461595" }, "bbox": [ -0.3671948, 51.2103404, -0.3671948, 51.2103404 ], "geometry": { "type": "Point", "coordinates": [ -0.3671948, 51.2103404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05545033" }, "bbox": [ -0.4888547, 51.2782607, -0.4888547, 51.2782607 ], "geometry": { "type": "Point", "coordinates": [ -0.4888547, 51.2782607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04479455" }, "bbox": [ -0.4986923, 51.2175743, -0.4986923, 51.2175743 ], "geometry": { "type": "Point", "coordinates": [ -0.4986923, 51.2175743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23460455" }, "bbox": [ -0.2401069, 51.2050281, -0.2401069, 51.2050281 ], "geometry": { "type": "Point", "coordinates": [ -0.2401069, 51.2050281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08464923" }, "bbox": [ -0.4483128, 51.2050348, -0.4483128, 51.2050348 ], "geometry": { "type": "Point", "coordinates": [ -0.4483128, 51.2050348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06646855" }, "bbox": [ -0.4690908, 51.3698545, -0.4690908, 51.3698545 ], "geometry": { "type": "Point", "coordinates": [ -0.4690908, 51.3698545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25463435" }, "bbox": [ -0.207273, 51.2027044, -0.207273, 51.2027044 ], "geometry": { "type": "Point", "coordinates": [ -0.207273, 51.2027044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447234" }, "bbox": [ -0.1314747, 51.1833747, -0.1314747, 51.1833747 ], "geometry": { "type": "Point", "coordinates": [ -0.1314747, 51.1833747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04462389" }, "bbox": [ -0.509147, 51.2118162, -0.509147, 51.2118162 ], "geometry": { "type": "Point", "coordinates": [ -0.509147, 51.2118162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05347066" }, "bbox": [ -0.4917524, 51.1014332, -0.4917524, 51.1014332 ], "geometry": { "type": "Point", "coordinates": [ -0.4917524, 51.1014332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40552911" }, "bbox": [ 0.0097113, 51.2778134, 0.0097113, 51.2778134 ], "geometry": { "type": "Point", "coordinates": [ 0.0097113, 51.2778134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39459450" }, "bbox": [ 0.001272, 51.1916071, 0.001272, 51.1916071 ], "geometry": { "type": "Point", "coordinates": [ 0.001272, 51.1916071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23482953" }, "bbox": [ -0.2358569, 51.2229588, -0.2358569, 51.2229588 ], "geometry": { "type": "Point", "coordinates": [ -0.2358569, 51.2229588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04520627" }, "bbox": [ -0.5099393, 51.260044, -0.5099393, 51.260044 ], "geometry": { "type": "Point", "coordinates": [ -0.5099393, 51.260044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14404908" }, "bbox": [ -0.3645857, 51.1485701, -0.3645857, 51.1485701 ], "geometry": { "type": "Point", "coordinates": [ -0.3645857, 51.1485701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09587510" }, "bbox": [ -0.4268189, 51.3114987, -0.4268189, 51.3114987 ], "geometry": { "type": "Point", "coordinates": [ -0.4268189, 51.3114987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04378788" }, "bbox": [ -0.5029828, 51.130638, -0.5029828, 51.130638 ], "geometry": { "type": "Point", "coordinates": [ -0.5029828, 51.130638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08358101" }, "bbox": [ -0.447194, 51.1041634, -0.447194, 51.1041634 ], "geometry": { "type": "Point", "coordinates": [ -0.447194, 51.1041634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04432428" }, "bbox": [ -0.5100379, 51.179345, -0.5100379, 51.179345 ], "geometry": { "type": "Point", "coordinates": [ -0.5100379, 51.179345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30535608" }, "bbox": [ -0.1303251, 51.2618788, -0.1303251, 51.2618788 ], "geometry": { "type": "Point", "coordinates": [ -0.1303251, 51.2618788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02375438" }, "bbox": [ -0.5362386, 51.1265644, -0.5362386, 51.1265644 ], "geometry": { "type": "Point", "coordinates": [ -0.5362386, 51.1265644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01679725" }, "bbox": [ -0.5357334, 51.3951304, -0.5357334, 51.3951304 ], "geometry": { "type": "Point", "coordinates": [ -0.5357334, 51.3951304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22496053" }, "bbox": [ -0.2454531, 51.2318172, -0.2454531, 51.2318172 ], "geometry": { "type": "Point", "coordinates": [ -0.2454531, 51.2318172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05364801" }, "bbox": [ -0.49438, 51.1137261, -0.49438, 51.1137261 ], "geometry": { "type": "Point", "coordinates": [ -0.49438, 51.1137261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41573465" }, "bbox": [ 0.026068, 51.3004722, 0.026068, 51.3004722 ], "geometry": { "type": "Point", "coordinates": [ 0.026068, 51.3004722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00365121" }, "bbox": [ -0.5654936, 51.1164031, -0.5654936, 51.1164031 ], "geometry": { "type": "Point", "coordinates": [ -0.5654936, 51.1164031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01358324" }, "bbox": [ -0.5467289, 51.107508, -0.5467289, 51.107508 ], "geometry": { "type": "Point", "coordinates": [ -0.5467289, 51.107508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21453426" }, "bbox": [ -0.2648116, 51.1937207, -0.2648116, 51.1937207 ], "geometry": { "type": "Point", "coordinates": [ -0.2648116, 51.1937207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31478330" }, "bbox": [ -0.1140412, 51.2097917, -0.1140412, 51.2097917 ], "geometry": { "type": "Point", "coordinates": [ -0.1140412, 51.2097917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12422762" }, "bbox": [ -0.3954218, 51.1718468, -0.3954218, 51.1718468 ], "geometry": { "type": "Point", "coordinates": [ -0.3954218, 51.1718468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20462773" }, "bbox": [ -0.2798325, 51.2070571, -0.2798325, 51.2070571 ], "geometry": { "type": "Point", "coordinates": [ -0.2798325, 51.2070571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23521040" }, "bbox": [ -0.2370348, 51.2574817, -0.2370348, 51.2574817 ], "geometry": { "type": "Point", "coordinates": [ -0.2370348, 51.2574817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02394986" }, "bbox": [ -0.536042, 51.148716, -0.536042, 51.148716 ], "geometry": { "type": "Point", "coordinates": [ -0.536042, 51.148716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34423865" }, "bbox": [ -0.0794213, 51.1673323, -0.0794213, 51.1673323 ], "geometry": { "type": "Point", "coordinates": [ -0.0794213, 51.1673323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38557731" }, "bbox": [ -0.0116589, 51.280096, -0.0116589, 51.280096 ], "geometry": { "type": "Point", "coordinates": [ -0.0116589, 51.280096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11551361" }, "bbox": [ -0.4076154, 51.2888358, -0.4076154, 51.2888358 ], "geometry": { "type": "Point", "coordinates": [ -0.4076154, 51.2888358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421886" }, "bbox": [ -0.3680669, 51.1736217, -0.3680669, 51.1736217 ], "geometry": { "type": "Point", "coordinates": [ -0.3680669, 51.1736217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455521" }, "bbox": [ -0.3047456, 51.1938829, -0.3047456, 51.1938829 ], "geometry": { "type": "Point", "coordinates": [ -0.3047456, 51.1938829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440402" }, "bbox": [ -0.2124282, 51.1818013, -0.2124282, 51.1818013 ], "geometry": { "type": "Point", "coordinates": [ -0.2124282, 51.1818013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29445289" }, "bbox": [ -0.1480941, 51.1884421, -0.1480941, 51.1884421 ], "geometry": { "type": "Point", "coordinates": [ -0.1480941, 51.1884421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18478823" }, "bbox": [ -0.2993734, 51.2119061, -0.2993734, 51.2119061 ], "geometry": { "type": "Point", "coordinates": [ -0.2993734, 51.2119061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06521789" }, "bbox": [ -0.4794921, 51.264904, -0.4794921, 51.264904 ], "geometry": { "type": "Point", "coordinates": [ -0.4794921, 51.264904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16423831" }, "bbox": [ -0.3367512, 51.168198, -0.3367512, 51.168198 ], "geometry": { "type": "Point", "coordinates": [ -0.3367512, 51.168198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18536455" }, "bbox": [ -0.3005619, 51.2687827, -0.3005619, 51.2687827 ], "geometry": { "type": "Point", "coordinates": [ -0.3005619, 51.2687827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35543870" }, "bbox": [ -0.0614604, 51.275258, -0.0614604, 51.275258 ], "geometry": { "type": "Point", "coordinates": [ -0.0614604, 51.275258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10587852" }, "bbox": [ -0.4118419, 51.3148363, -0.4118419, 51.3148363 ], "geometry": { "type": "Point", "coordinates": [ -0.4118419, 51.3148363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14406708" }, "bbox": [ -0.3621331, 51.1484089, -0.3621331, 51.1484089 ], "geometry": { "type": "Point", "coordinates": [ -0.3621331, 51.1484089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22502871" }, "bbox": [ -0.249594, 51.2418146, -0.249594, 51.2418146 ], "geometry": { "type": "Point", "coordinates": [ -0.249594, 51.2418146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02448558" }, "bbox": [ -0.5296538, 51.1911881, -0.5296538, 51.1911881 ], "geometry": { "type": "Point", "coordinates": [ -0.5296538, 51.1911881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33496042" }, "bbox": [ -0.0880849, 51.228381, -0.0880849, 51.228381 ], "geometry": { "type": "Point", "coordinates": [ -0.0880849, 51.228381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01394254" }, "bbox": [ -0.5514161, 51.1461152, -0.5514161, 51.1461152 ], "geometry": { "type": "Point", "coordinates": [ -0.5514161, 51.1461152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43420962" }, "bbox": [ 0.0450654, 51.164888, 0.0450654, 51.164888 ], "geometry": { "type": "Point", "coordinates": [ 0.0450654, 51.164888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32394968" }, "bbox": [ -0.107449, 51.1410792, -0.107449, 51.1410792 ], "geometry": { "type": "Point", "coordinates": [ -0.107449, 51.1410792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30464370" }, "bbox": [ -0.1343824, 51.2046271, -0.1343824, 51.2046271 ], "geometry": { "type": "Point", "coordinates": [ -0.1343824, 51.2046271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39565490" }, "bbox": [ -0.0001127, 51.2940702, -0.0001127, 51.2940702 ], "geometry": { "type": "Point", "coordinates": [ -0.0001127, 51.2940702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22471529" }, "bbox": [ -0.2524992, 51.2119173, -0.2524992, 51.2119173 ], "geometry": { "type": "Point", "coordinates": [ -0.2524992, 51.2119173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10423119" }, "bbox": [ -0.4230535, 51.1686109, -0.4230535, 51.1686109 ], "geometry": { "type": "Point", "coordinates": [ -0.4230535, 51.1686109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19464914" }, "bbox": [ -0.2910958, 51.2019459, -0.2910958, 51.2019459 ], "geometry": { "type": "Point", "coordinates": [ -0.2910958, 51.2019459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39462697" }, "bbox": [ -0.0078333, 51.2046822, -0.0078333, 51.2046822 ], "geometry": { "type": "Point", "coordinates": [ -0.0078333, 51.2046822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02756797" }, "bbox": [ -0.5230105, 51.4734613, -0.5230105, 51.4734613 ], "geometry": { "type": "Point", "coordinates": [ -0.5230105, 51.4734613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41443847" }, "bbox": [ 0.0213752, 51.1820262, 0.0213752, 51.1820262 ], "geometry": { "type": "Point", "coordinates": [ 0.0213752, 51.1820262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06419619" }, "bbox": [ -0.4717026, 51.1600212, -0.4717026, 51.1600212 ], "geometry": { "type": "Point", "coordinates": [ -0.4717026, 51.1600212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10565347" }, "bbox": [ -0.4160398, 51.2966661, -0.4160398, 51.2966661 ], "geometry": { "type": "Point", "coordinates": [ -0.4160398, 51.2966661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26602779" }, "bbox": [ -0.1889543, 51.3322915, -0.1889543, 51.3322915 ], "geometry": { "type": "Point", "coordinates": [ -0.1889543, 51.3322915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35479650" }, "bbox": [ -0.0552002, 51.2105367, -0.0552002, 51.2105367 ], "geometry": { "type": "Point", "coordinates": [ -0.0552002, 51.2105367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34461249" }, "bbox": [ -0.081891, 51.2017156, -0.081891, 51.2017156 ], "geometry": { "type": "Point", "coordinates": [ -0.081891, 51.2017156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32491207" }, "bbox": [ -0.1092961, 51.2255198, -0.1092961, 51.2255198 ], "geometry": { "type": "Point", "coordinates": [ -0.1092961, 51.2255198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39508675" }, "bbox": [ 0.0020856, 51.2388214, 0.0020856, 51.2388214 ], "geometry": { "type": "Point", "coordinates": [ 0.0020856, 51.2388214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404433" }, "bbox": [ -0.4218936, 51.1515152, -0.4218936, 51.1515152 ], "geometry": { "type": "Point", "coordinates": [ -0.4218936, 51.1515152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17379161" }, "bbox": [ -0.3160617, 51.1260153, -0.3160617, 51.1260153 ], "geometry": { "type": "Point", "coordinates": [ -0.3160617, 51.1260153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15452073" }, "bbox": [ -0.3527909, 51.199102, -0.3527909, 51.199102 ], "geometry": { "type": "Point", "coordinates": [ -0.3527909, 51.199102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15475330" }, "bbox": [ -0.3474467, 51.2131611, -0.3474467, 51.2131611 ], "geometry": { "type": "Point", "coordinates": [ -0.3474467, 51.2131611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27544366" }, "bbox": [ -0.1743839, 51.2768912, -0.1743839, 51.2768912 ], "geometry": { "type": "Point", "coordinates": [ -0.1743839, 51.2768912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39458028" }, "bbox": [ -0.0008063, 51.189699, -0.0008063, 51.189699 ], "geometry": { "type": "Point", "coordinates": [ -0.0008063, 51.189699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40581121" }, "bbox": [ 0.0086406, 51.3058984, 0.0086406, 51.3058984 ], "geometry": { "type": "Point", "coordinates": [ 0.0086406, 51.3058984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05389231" }, "bbox": [ -0.4873101, 51.1342805, -0.4873101, 51.1342805 ], "geometry": { "type": "Point", "coordinates": [ -0.4873101, 51.1342805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11435231" }, "bbox": [ -0.4060107, 51.1780827, -0.4060107, 51.1780827 ], "geometry": { "type": "Point", "coordinates": [ -0.4060107, 51.1780827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11377278" }, "bbox": [ -0.4051435, 51.128735, -0.4051435, 51.128735 ], "geometry": { "type": "Point", "coordinates": [ -0.4051435, 51.128735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01369719" }, "bbox": [ -0.5445077, 51.1158618, -0.5445077, 51.1158618 ], "geometry": { "type": "Point", "coordinates": [ -0.5445077, 51.1158618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43413501" }, "bbox": [ 0.0483084, 51.1503997, 0.0483084, 51.1503997 ], "geometry": { "type": "Point", "coordinates": [ 0.0483084, 51.1503997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18423691" }, "bbox": [ -0.3082346, 51.1732289, -0.3082346, 51.1732289 ], "geometry": { "type": "Point", "coordinates": [ -0.3082346, 51.1732289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33409990" }, "bbox": [ -0.085481, 51.1516938, -0.085481, 51.1516938 ], "geometry": { "type": "Point", "coordinates": [ -0.085481, 51.1516938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03390811" }, "bbox": [ -0.5288423, 51.1423416, -0.5288423, 51.1423416 ], "geometry": { "type": "Point", "coordinates": [ -0.5288423, 51.1423416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32464904" }, "bbox": [ -0.1048289, 51.1983, -0.1048289, 51.1983 ], "geometry": { "type": "Point", "coordinates": [ -0.1048289, 51.1983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21509950" }, "bbox": [ -0.2537066, 51.2404125, -0.2537066, 51.2404125 ], "geometry": { "type": "Point", "coordinates": [ -0.2537066, 51.2404125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33445901" }, "bbox": [ -0.0895518, 51.1805621, -0.0895518, 51.1805621 ], "geometry": { "type": "Point", "coordinates": [ -0.0895518, 51.1805621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449350" }, "bbox": [ -0.3280272, 51.1878211, -0.3280272, 51.1878211 ], "geometry": { "type": "Point", "coordinates": [ -0.3280272, 51.1878211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34423236" }, "bbox": [ -0.0804069, 51.164689, -0.0804069, 51.164689 ], "geometry": { "type": "Point", "coordinates": [ -0.0804069, 51.164689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14504002" }, "bbox": [ -0.3625683, 51.237917, -0.3625683, 51.237917 ], "geometry": { "type": "Point", "coordinates": [ -0.3625683, 51.237917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29493823" }, "bbox": [ -0.1495106, 51.2276818, -0.1495106, 51.2276818 ], "geometry": { "type": "Point", "coordinates": [ -0.1495106, 51.2276818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20419830" }, "bbox": [ -0.2711106, 51.1582786, -0.2711106, 51.1582786 ], "geometry": { "type": "Point", "coordinates": [ -0.2711106, 51.1582786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30552867" }, "bbox": [ -0.1332309, 51.285225, -0.1332309, 51.285225 ], "geometry": { "type": "Point", "coordinates": [ -0.1332309, 51.285225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11500522" }, "bbox": [ -0.4104654, 51.24037, -0.4104654, 51.24037 ], "geometry": { "type": "Point", "coordinates": [ -0.4104654, 51.24037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33461038" }, "bbox": [ -0.0962244, 51.2011837, -0.0962244, 51.2011837 ], "geometry": { "type": "Point", "coordinates": [ -0.0962244, 51.2011837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39605261" }, "bbox": [ 0.0011041, 51.3274488, 0.0011041, 51.3274488 ], "geometry": { "type": "Point", "coordinates": [ 0.0011041, 51.3274488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16470824" }, "bbox": [ -0.3394847, 51.2125928, -0.3394847, 51.2125928 ], "geometry": { "type": "Point", "coordinates": [ -0.3394847, 51.2125928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07560789" }, "bbox": [ -0.4657718, 51.3010289, -0.4657718, 51.3010289 ], "geometry": { "type": "Point", "coordinates": [ -0.4657718, 51.3010289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596173" }, "bbox": [ -0.4139287, 51.3259258, -0.4139287, 51.3259258 ], "geometry": { "type": "Point", "coordinates": [ -0.4139287, 51.3259258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20462584" }, "bbox": [ -0.2798897, 51.2080196, -0.2798897, 51.2080196 ], "geometry": { "type": "Point", "coordinates": [ -0.2798897, 51.2080196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530430" }, "bbox": [ 0.0487745, 51.260959, 0.0487745, 51.260959 ], "geometry": { "type": "Point", "coordinates": [ 0.0487745, 51.260959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26591562" }, "bbox": [ -0.190961, 51.3214252, -0.190961, 51.3214252 ], "geometry": { "type": "Point", "coordinates": [ -0.190961, 51.3214252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438143" }, "bbox": [ -0.5591682, 51.181243, -0.5591682, 51.181243 ], "geometry": { "type": "Point", "coordinates": [ -0.5591682, 51.181243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38453884" }, "bbox": [ -0.0209408, 51.1953053, -0.0209408, 51.1953053 ], "geometry": { "type": "Point", "coordinates": [ -0.0209408, 51.1953053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00682969" }, "bbox": [ -0.5595699, 51.4083781, -0.5595699, 51.4083781 ], "geometry": { "type": "Point", "coordinates": [ -0.5595699, 51.4083781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522437" }, "bbox": [ -0.3925131, 51.2595301, -0.3925131, 51.2595301 ], "geometry": { "type": "Point", "coordinates": [ -0.3925131, 51.2595301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42443202" }, "bbox": [ 0.0347912, 51.1778401, 0.0347912, 51.1778401 ], "geometry": { "type": "Point", "coordinates": [ 0.0347912, 51.1778401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04478298" }, "bbox": [ -0.5003315, 51.2213685, -0.5003315, 51.2213685 ], "geometry": { "type": "Point", "coordinates": [ -0.5003315, 51.2213685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03630109" }, "bbox": [ -0.5221299, 51.3578836, -0.5221299, 51.3578836 ], "geometry": { "type": "Point", "coordinates": [ -0.5221299, 51.3578836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28452764" }, "bbox": [ -0.1656563, 51.1954362, -0.1656563, 51.1954362 ], "geometry": { "type": "Point", "coordinates": [ -0.1656563, 51.1954362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08356728" }, "bbox": [ -0.4490302, 51.1065992, -0.4490302, 51.1065992 ], "geometry": { "type": "Point", "coordinates": [ -0.4490302, 51.1065992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16437505" }, "bbox": [ -0.3320473, 51.1751867, -0.3320473, 51.1751867 ], "geometry": { "type": "Point", "coordinates": [ -0.3320473, 51.1751867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21476530" }, "bbox": [ -0.2596984, 51.2120985, -0.2596984, 51.2120985 ], "geometry": { "type": "Point", "coordinates": [ -0.2596984, 51.2120985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452483" }, "bbox": [ -0.0231027, 51.1948658, -0.0231027, 51.1948658 ], "geometry": { "type": "Point", "coordinates": [ -0.0231027, 51.1948658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13412703" }, "bbox": [ -0.3817255, 51.1572586, -0.3817255, 51.1572586 ], "geometry": { "type": "Point", "coordinates": [ -0.3817255, 51.1572586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19579546" }, "bbox": [ -0.2806705, 51.3036963, -0.2806705, 51.3036963 ], "geometry": { "type": "Point", "coordinates": [ -0.2806705, 51.3036963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03355414" }, "bbox": [ -0.5223416, 51.1062816, -0.5223416, 51.1062816 ], "geometry": { "type": "Point", "coordinates": [ -0.5223416, 51.1062816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34436762" }, "bbox": [ -0.0748555, 51.1760334, -0.0748555, 51.1760334 ], "geometry": { "type": "Point", "coordinates": [ -0.0748555, 51.1760334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29573216" }, "bbox": [ -0.1463089, 51.298885, -0.1463089, 51.298885 ], "geometry": { "type": "Point", "coordinates": [ -0.1463089, 51.298885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27458845" }, "bbox": [ -0.1712392, 51.1939411, -0.1712392, 51.1939411 ], "geometry": { "type": "Point", "coordinates": [ -0.1712392, 51.1939411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13491112" }, "bbox": [ -0.3814103, 51.2301324, -0.3814103, 51.2301324 ], "geometry": { "type": "Point", "coordinates": [ -0.3814103, 51.2301324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08348689" }, "bbox": [ -0.4464494, 51.103067, -0.4464494, 51.103067 ], "geometry": { "type": "Point", "coordinates": [ -0.4464494, 51.103067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26595219" }, "bbox": [ -0.185921, 51.3177778, -0.185921, 51.3177778 ], "geometry": { "type": "Point", "coordinates": [ -0.185921, 51.3177778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17506695" }, "bbox": [ -0.3157526, 51.2456222, -0.3157526, 51.2456222 ], "geometry": { "type": "Point", "coordinates": [ -0.3157526, 51.2456222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08571181" }, "bbox": [ -0.4502417, 51.3091678, -0.4502417, 51.3091678 ], "geometry": { "type": "Point", "coordinates": [ -0.4502417, 51.3091678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403809" }, "bbox": [ -0.4231108, 51.1495381, -0.4231108, 51.1495381 ], "geometry": { "type": "Point", "coordinates": [ -0.4231108, 51.1495381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34529772" }, "bbox": [ -0.0672337, 51.2575572, -0.0672337, 51.2575572 ], "geometry": { "type": "Point", "coordinates": [ -0.0672337, 51.2575572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465002" }, "bbox": [ -0.5627108, 51.2045798, -0.5627108, 51.2045798 ], "geometry": { "type": "Point", "coordinates": [ -0.5627108, 51.2045798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32461593" }, "bbox": [ -0.1098686, 51.2063191, -0.1098686, 51.2063191 ], "geometry": { "type": "Point", "coordinates": [ -0.1098686, 51.2063191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39564354" }, "bbox": [ -0.0017335, 51.2909813, -0.0017335, 51.2909813 ], "geometry": { "type": "Point", "coordinates": [ -0.0017335, 51.2909813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19402825" }, "bbox": [ -0.2960053, 51.1492788, -0.2960053, 51.1492788 ], "geometry": { "type": "Point", "coordinates": [ -0.2960053, 51.1492788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35454647" }, "bbox": [ -0.0628265, 51.1923705, -0.0628265, 51.1923705 ], "geometry": { "type": "Point", "coordinates": [ -0.0628265, 51.1923705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30562192" }, "bbox": [ -0.1339433, 51.2966164, -0.1339433, 51.2966164 ], "geometry": { "type": "Point", "coordinates": [ -0.1339433, 51.2966164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11570276" }, "bbox": [ -0.4085462, 51.3083715, -0.4085462, 51.3083715 ], "geometry": { "type": "Point", "coordinates": [ -0.4085462, 51.3083715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414724" }, "bbox": [ -0.2214155, 51.1569186, -0.2214155, 51.1569186 ], "geometry": { "type": "Point", "coordinates": [ -0.2214155, 51.1569186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38606032" }, "bbox": [ -0.0123569, 51.3250569, -0.0123569, 51.3250569 ], "geometry": { "type": "Point", "coordinates": [ -0.0123569, 51.3250569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23517530" }, "bbox": [ -0.2285933, 51.2475437, -0.2285933, 51.2475437 ], "geometry": { "type": "Point", "coordinates": [ -0.2285933, 51.2475437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33440913" }, "bbox": [ -0.0971069, 51.180882, -0.0971069, 51.180882 ], "geometry": { "type": "Point", "coordinates": [ -0.0971069, 51.180882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20486642" }, "bbox": [ -0.2734369, 51.2222643, -0.2734369, 51.2222643 ], "geometry": { "type": "Point", "coordinates": [ -0.2734369, 51.2222643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33445128" }, "bbox": [ -0.0912974, 51.1821891, -0.0912974, 51.1821891 ], "geometry": { "type": "Point", "coordinates": [ -0.0912974, 51.1821891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13387418" }, "bbox": [ -0.3754676, 51.1314423, -0.3754676, 51.1314423 ], "geometry": { "type": "Point", "coordinates": [ -0.3754676, 51.1314423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09433920" }, "bbox": [ -0.4363808, 51.1776345, -0.4363808, 51.1776345 ], "geometry": { "type": "Point", "coordinates": [ -0.4363808, 51.1776345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05366794" }, "bbox": [ -0.4914073, 51.1219255, -0.4914073, 51.1219255 ], "geometry": { "type": "Point", "coordinates": [ -0.4914073, 51.1219255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13471187" }, "bbox": [ -0.3817693, 51.2186112, -0.3817693, 51.2186112 ], "geometry": { "type": "Point", "coordinates": [ -0.3817693, 51.2186112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23436864" }, "bbox": [ -0.2320993, 51.1785736, -0.2320993, 51.1785736 ], "geometry": { "type": "Point", "coordinates": [ -0.2320993, 51.1785736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41438279" }, "bbox": [ 0.0275572, 51.1756171, 0.0275572, 51.1756171 ], "geometry": { "type": "Point", "coordinates": [ 0.0275572, 51.1756171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02393486" }, "bbox": [ -0.5381819, 51.1487975, -0.5381819, 51.1487975 ], "geometry": { "type": "Point", "coordinates": [ -0.5381819, 51.1487975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39508740" }, "bbox": [ 0.0023826, 51.2357058, 0.0023826, 51.2357058 ], "geometry": { "type": "Point", "coordinates": [ 0.0023826, 51.2357058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549944" }, "bbox": [ -0.2809388, 51.2763127, -0.2809388, 51.2763127 ], "geometry": { "type": "Point", "coordinates": [ -0.2809388, 51.2763127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06349967" }, "bbox": [ -0.4734129, 51.1012922, -0.4734129, 51.1012922 ], "geometry": { "type": "Point", "coordinates": [ -0.4734129, 51.1012922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18395547" }, "bbox": [ -0.3065634, 51.1422185, -0.3065634, 51.1422185 ], "geometry": { "type": "Point", "coordinates": [ -0.3065634, 51.1422185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16437267" }, "bbox": [ -0.3317101, 51.1801192, -0.3317101, 51.1801192 ], "geometry": { "type": "Point", "coordinates": [ -0.3317101, 51.1801192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33440847" }, "bbox": [ -0.0972322, 51.1839947, -0.0972322, 51.1839947 ], "geometry": { "type": "Point", "coordinates": [ -0.0972322, 51.1839947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09476097" }, "bbox": [ -0.4320874, 51.220387, -0.4320874, 51.220387 ], "geometry": { "type": "Point", "coordinates": [ -0.4320874, 51.220387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521466" }, "bbox": [ -0.3941439, 51.2621022, -0.3941439, 51.2621022 ], "geometry": { "type": "Point", "coordinates": [ -0.3941439, 51.2621022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05366777" }, "bbox": [ -0.4916668, 51.1204124, -0.4916668, 51.1204124 ], "geometry": { "type": "Point", "coordinates": [ -0.4916668, 51.1204124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405209" }, "bbox": [ -0.4641264, 51.1499807, -0.4641264, 51.1499807 ], "geometry": { "type": "Point", "coordinates": [ -0.4641264, 51.1499807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11549970" }, "bbox": [ -0.3958422, 51.2806446, -0.3958422, 51.2806446 ], "geometry": { "type": "Point", "coordinates": [ -0.3958422, 51.2806446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18477208" }, "bbox": [ -0.3018765, 51.2106827, -0.3018765, 51.2106827 ], "geometry": { "type": "Point", "coordinates": [ -0.3018765, 51.2106827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26436347" }, "bbox": [ -0.1894768, 51.1768258, -0.1894768, 51.1768258 ], "geometry": { "type": "Point", "coordinates": [ -0.1894768, 51.1768258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29446581" }, "bbox": [ -0.1460765, 51.1879006, -0.1460765, 51.1879006 ], "geometry": { "type": "Point", "coordinates": [ -0.1460765, 51.1879006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404372" }, "bbox": [ -0.4222967, 51.1551393, -0.4222967, 51.1551393 ], "geometry": { "type": "Point", "coordinates": [ -0.4222967, 51.1551393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42413061" }, "bbox": [ 0.0334752, 51.1560758, 0.0334752, 51.1560758 ], "geometry": { "type": "Point", "coordinates": [ 0.0334752, 51.1560758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36430501" }, "bbox": [ -0.055417, 51.170185, -0.055417, 51.170185 ], "geometry": { "type": "Point", "coordinates": [ -0.055417, 51.170185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26608834" }, "bbox": [ -0.1802875, 51.3279866, -0.1802875, 51.3279866 ], "geometry": { "type": "Point", "coordinates": [ -0.1802875, 51.3279866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29442685" }, "bbox": [ -0.1517143, 51.188253, -0.1517143, 51.188253 ], "geometry": { "type": "Point", "coordinates": [ -0.1517143, 51.188253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23517931" }, "bbox": [ -0.2278831, 51.2475713, -0.2278831, 51.2475713 ], "geometry": { "type": "Point", "coordinates": [ -0.2278831, 51.2475713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30444942" }, "bbox": [ -0.1342601, 51.1841353, -0.1342601, 51.1841353 ], "geometry": { "type": "Point", "coordinates": [ -0.1342601, 51.1841353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607804" }, "bbox": [ -0.0098733, 51.3225316, -0.0098733, 51.3225316 ], "geometry": { "type": "Point", "coordinates": [ -0.0098733, 51.3225316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42466119" }, "bbox": [ 0.0398059, 51.1972138, 0.0398059, 51.1972138 ], "geometry": { "type": "Point", "coordinates": [ 0.0398059, 51.1972138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12417703" }, "bbox": [ -0.3891138, 51.1572587, -0.3891138, 51.1572587 ], "geometry": { "type": "Point", "coordinates": [ -0.3891138, 51.1572587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17402371" }, "bbox": [ -0.3250813, 51.1537523, -0.3250813, 51.1537523 ], "geometry": { "type": "Point", "coordinates": [ -0.3250813, 51.1537523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08416993" }, "bbox": [ -0.4467677, 51.1663021, -0.4467677, 51.1663021 ], "geometry": { "type": "Point", "coordinates": [ -0.4467677, 51.1663021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33421903" }, "bbox": [ -0.0965799, 51.1620457, -0.0965799, 51.1620457 ], "geometry": { "type": "Point", "coordinates": [ -0.0965799, 51.1620457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24437913" }, "bbox": [ -0.2165691, 51.1738227, -0.2165691, 51.1738227 ], "geometry": { "type": "Point", "coordinates": [ -0.2165691, 51.1738227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01463728" }, "bbox": [ -0.5502066, 51.2067136, -0.5502066, 51.2067136 ], "geometry": { "type": "Point", "coordinates": [ -0.5502066, 51.2067136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09450922" }, "bbox": [ -0.4401182, 51.1959667, -0.4401182, 51.1959667 ], "geometry": { "type": "Point", "coordinates": [ -0.4401182, 51.1959667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00351888" }, "bbox": [ -0.5702531, 51.1134825, -0.5702531, 51.1134825 ], "geometry": { "type": "Point", "coordinates": [ -0.5702531, 51.1134825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10574123" }, "bbox": [ -0.4174653, 51.3033153, -0.4174653, 51.3033153 ], "geometry": { "type": "Point", "coordinates": [ -0.4174653, 51.3033153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16437391" }, "bbox": [ -0.3311485, 51.1825354, -0.3311485, 51.1825354 ], "geometry": { "type": "Point", "coordinates": [ -0.3311485, 51.1825354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499891" }, "bbox": [ -0.3685904, 51.2370773, -0.3685904, 51.2370773 ], "geometry": { "type": "Point", "coordinates": [ -0.3685904, 51.2370773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23486128" }, "bbox": [ -0.2314477, 51.2203353, -0.2314477, 51.2203353 ], "geometry": { "type": "Point", "coordinates": [ -0.2314477, 51.2203353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13378875" }, "bbox": [ -0.3746096, 51.1279316, -0.3746096, 51.1279316 ], "geometry": { "type": "Point", "coordinates": [ -0.3746096, 51.1279316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21407422" }, "bbox": [ -0.2611187, 51.1483856, -0.2611187, 51.1483856 ], "geometry": { "type": "Point", "coordinates": [ -0.2611187, 51.1483856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01425648" }, "bbox": [ -0.5485359, 51.1726383, -0.5485359, 51.1726383 ], "geometry": { "type": "Point", "coordinates": [ -0.5485359, 51.1726383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01354261" }, "bbox": [ -0.552713, 51.1110306, -0.552713, 51.1110306 ], "geometry": { "type": "Point", "coordinates": [ -0.552713, 51.1110306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42509838" }, "bbox": [ 0.0467567, 51.2347633, 0.0467567, 51.2347633 ], "geometry": { "type": "Point", "coordinates": [ 0.0467567, 51.2347633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03528484" }, "bbox": [ -0.5131635, 51.2651944, -0.5131635, 51.2651944 ], "geometry": { "type": "Point", "coordinates": [ -0.5131635, 51.2651944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21509322" }, "bbox": [ -0.2545726, 51.2380573, -0.2545726, 51.2380573 ], "geometry": { "type": "Point", "coordinates": [ -0.2545726, 51.2380573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06525552" }, "bbox": [ -0.4740013, 51.2617374, -0.4740013, 51.2617374 ], "geometry": { "type": "Point", "coordinates": [ -0.4740013, 51.2617374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02414564" }, "bbox": [ -0.5360848, 51.1647143, -0.5360848, 51.1647143 ], "geometry": { "type": "Point", "coordinates": [ -0.5360848, 51.1647143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03409660" }, "bbox": [ -0.5147875, 51.1552772, -0.5147875, 51.1552772 ], "geometry": { "type": "Point", "coordinates": [ -0.5147875, 51.1552772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31471315" }, "bbox": [ -0.1240986, 51.2085832, -0.1240986, 51.2085832 ], "geometry": { "type": "Point", "coordinates": [ -0.1240986, 51.2085832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13427990" }, "bbox": [ -0.3735238, 51.1739257, -0.3735238, 51.1739257 ], "geometry": { "type": "Point", "coordinates": [ -0.3735238, 51.1739257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36546247" }, "bbox": [ -0.0428133, 51.2730598, -0.0428133, 51.2730598 ], "geometry": { "type": "Point", "coordinates": [ -0.0428133, 51.2730598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19545541" }, "bbox": [ -0.2873883, 51.2763714, -0.2873883, 51.2763714 ], "geometry": { "type": "Point", "coordinates": [ -0.2873883, 51.2763714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03398286" }, "bbox": [ -0.5170792, 51.148586, -0.5170792, 51.148586 ], "geometry": { "type": "Point", "coordinates": [ -0.5170792, 51.148586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04363314" }, "bbox": [ -0.5108192, 51.1153553, -0.5108192, 51.1153553 ], "geometry": { "type": "Point", "coordinates": [ -0.5108192, 51.1153553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15417405" }, "bbox": [ -0.3464359, 51.1570958, -0.3464359, 51.1570958 ], "geometry": { "type": "Point", "coordinates": [ -0.3464359, 51.1570958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32393973" }, "bbox": [ -0.108807, 51.141576, -0.108807, 51.141576 ], "geometry": { "type": "Point", "coordinates": [ -0.108807, 51.141576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33457943" }, "bbox": [ -0.0866973, 51.192205, -0.0866973, 51.192205 ], "geometry": { "type": "Point", "coordinates": [ -0.0866973, 51.192205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43532208" }, "bbox": [ 0.0510651, 51.2588528, 0.0510651, 51.2588528 ], "geometry": { "type": "Point", "coordinates": [ 0.0510651, 51.2588528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02652069" }, "bbox": [ -0.532828, 51.3810936, -0.532828, 51.3810936 ], "geometry": { "type": "Point", "coordinates": [ -0.532828, 51.3810936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37467290" }, "bbox": [ -0.0300994, 51.2047795, -0.0300994, 51.2047795 ], "geometry": { "type": "Point", "coordinates": [ -0.0300994, 51.2047795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427847" }, "bbox": [ -0.517037, 51.1721784, -0.517037, 51.1721784 ], "geometry": { "type": "Point", "coordinates": [ -0.517037, 51.1721784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12394698" }, "bbox": [ -0.3936024, 51.1480397, -0.3936024, 51.1480397 ], "geometry": { "type": "Point", "coordinates": [ -0.3936024, 51.1480397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05427386" }, "bbox": [ -0.4888798, 51.1752487, -0.4888798, 51.1752487 ], "geometry": { "type": "Point", "coordinates": [ -0.4888798, 51.1752487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22491338" }, "bbox": [ -0.2523309, 51.2305541, -0.2523309, 51.2305541 ], "geometry": { "type": "Point", "coordinates": [ -0.2523309, 51.2305541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13577821" }, "bbox": [ -0.3692387, 51.302641, -0.3692387, 51.302641 ], "geometry": { "type": "Point", "coordinates": [ -0.3692387, 51.302641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37574633" }, "bbox": [ -0.0298536, 51.298546, -0.0298536, 51.298546 ], "geometry": { "type": "Point", "coordinates": [ -0.0298536, 51.298546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41408777" }, "bbox": [ 0.0267964, 51.1486356, 0.0267964, 51.1486356 ], "geometry": { "type": "Point", "coordinates": [ 0.0267964, 51.1486356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39567407" }, "bbox": [ 0.0032091, 51.286404, 0.0032091, 51.286404 ], "geometry": { "type": "Point", "coordinates": [ 0.0032091, 51.286404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19452783" }, "bbox": [ -0.294338, 51.1993509, -0.294338, 51.1993509 ], "geometry": { "type": "Point", "coordinates": [ -0.294338, 51.1993509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25589273" }, "bbox": [ -0.1940509, 51.3139196, -0.1940509, 51.3139196 ], "geometry": { "type": "Point", "coordinates": [ -0.1940509, 51.3139196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05363473" }, "bbox": [ -0.4960939, 51.1201944, -0.4960939, 51.1201944 ], "geometry": { "type": "Point", "coordinates": [ -0.4960939, 51.1201944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02409284" }, "bbox": [ -0.5297038, 51.1571728, -0.5297038, 51.1571728 ], "geometry": { "type": "Point", "coordinates": [ -0.5297038, 51.1571728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24442222" }, "bbox": [ -0.2241253, 51.183729, -0.2241253, 51.183729 ], "geometry": { "type": "Point", "coordinates": [ -0.2241253, 51.183729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15626630" }, "bbox": [ -0.3407069, 51.3480201, -0.3407069, 51.3480201 ], "geometry": { "type": "Point", "coordinates": [ -0.3407069, 51.3480201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42458409" }, "bbox": [ 0.0428667, 51.1868052, 0.0428667, 51.1868052 ], "geometry": { "type": "Point", "coordinates": [ 0.0428667, 51.1868052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07387849" }, "bbox": [ -0.4607951, 51.1356094, -0.4607951, 51.1356094 ], "geometry": { "type": "Point", "coordinates": [ -0.4607951, 51.1356094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42429380" }, "bbox": [ 0.0429133, 51.1665883, 0.0429133, 51.1665883 ], "geometry": { "type": "Point", "coordinates": [ 0.0429133, 51.1665883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02768203" }, "bbox": [ -0.5208602, 51.4739434, -0.5208602, 51.4739434 ], "geometry": { "type": "Point", "coordinates": [ -0.5208602, 51.4739434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18380608" }, "bbox": [ -0.3140807, 51.129864, -0.3140807, 51.129864 ], "geometry": { "type": "Point", "coordinates": [ -0.3140807, 51.129864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15477230" }, "bbox": [ -0.3445127, 51.2132005, -0.3445127, 51.2132005 ], "geometry": { "type": "Point", "coordinates": [ -0.3445127, 51.2132005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34422449" }, "bbox": [ -0.0822142, 51.1668356, -0.0822142, 51.1668356 ], "geometry": { "type": "Point", "coordinates": [ -0.0822142, 51.1668356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19472881" }, "bbox": [ -0.2938736, 51.2172608, -0.2938736, 51.2172608 ], "geometry": { "type": "Point", "coordinates": [ -0.2938736, 51.2172608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09587826" }, "bbox": [ -0.4252681, 51.3128168, -0.4252681, 51.3128168 ], "geometry": { "type": "Point", "coordinates": [ -0.4252681, 51.3128168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35423104" }, "bbox": [ -0.0664055, 51.1616003, -0.0664055, 51.1616003 ], "geometry": { "type": "Point", "coordinates": [ -0.0664055, 51.1616003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14509315" }, "bbox": [ -0.3549155, 51.2389743, -0.3549155, 51.2389743 ], "geometry": { "type": "Point", "coordinates": [ -0.3549155, 51.2389743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08364878" }, "bbox": [ -0.4513899, 51.1198836, -0.4513899, 51.1198836 ], "geometry": { "type": "Point", "coordinates": [ -0.4513899, 51.1198836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583513" }, "bbox": [ -0.4324788, 51.3118101, -0.4324788, 51.3118101 ], "geometry": { "type": "Point", "coordinates": [ -0.4324788, 51.3118101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20503267" }, "bbox": [ -0.2778421, 51.2425775, -0.2778421, 51.2425775 ], "geometry": { "type": "Point", "coordinates": [ -0.2778421, 51.2425775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41448003" }, "bbox": [ 0.0273555, 51.1780133, 0.0273555, 51.1780133 ], "geometry": { "type": "Point", "coordinates": [ 0.0273555, 51.1780133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08566758" }, "bbox": [ -0.4426683, 51.2979792, -0.4426683, 51.2979792 ], "geometry": { "type": "Point", "coordinates": [ -0.4426683, 51.2979792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525461" }, "bbox": [ -0.0732905, 51.2568213, -0.0732905, 51.2568213 ], "geometry": { "type": "Point", "coordinates": [ -0.0732905, 51.2568213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491508" }, "bbox": [ -0.3665105, 51.2295408, -0.3665105, 51.2295408 ], "geometry": { "type": "Point", "coordinates": [ -0.3665105, 51.2295408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33505990" }, "bbox": [ -0.0876332, 51.2416325, -0.0876332, 51.2416325 ], "geometry": { "type": "Point", "coordinates": [ -0.0876332, 51.2416325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15395546" }, "bbox": [ -0.3498943, 51.1423174, -0.3498943, 51.1423174 ], "geometry": { "type": "Point", "coordinates": [ -0.3498943, 51.1423174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30476815" }, "bbox": [ -0.1306162, 51.2085972, -0.1306162, 51.2085972 ], "geometry": { "type": "Point", "coordinates": [ -0.1306162, 51.2085972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22431711" }, "bbox": [ -0.2536152, 51.1742294, -0.2536152, 51.1742294 ], "geometry": { "type": "Point", "coordinates": [ -0.2536152, 51.1742294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42461829" }, "bbox": [ 0.0335836, 51.1981396, 0.0335836, 51.1981396 ], "geometry": { "type": "Point", "coordinates": [ 0.0335836, 51.1981396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34475712" }, "bbox": [ -0.0748879, 51.2074738, -0.0748879, 51.2074738 ], "geometry": { "type": "Point", "coordinates": [ -0.0748879, 51.2074738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23437744" }, "bbox": [ -0.2310024, 51.1768104, -0.2310024, 51.1768104 ], "geometry": { "type": "Point", "coordinates": [ -0.2310024, 51.1768104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08406441" }, "bbox": [ -0.4479222, 51.1527462, -0.4479222, 51.1527462 ], "geometry": { "type": "Point", "coordinates": [ -0.4479222, 51.1527462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455153" }, "bbox": [ -0.3052727, 51.1966016, -0.3052727, 51.1966016 ], "geometry": { "type": "Point", "coordinates": [ -0.3052727, 51.1966016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41437942" }, "bbox": [ 0.0267708, 51.1723309, 0.0267708, 51.1723309 ], "geometry": { "type": "Point", "coordinates": [ 0.0267708, 51.1723309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459569" }, "bbox": [ -0.0268527, 51.1937758, -0.0268527, 51.1937758 ], "geometry": { "type": "Point", "coordinates": [ -0.0268527, 51.1937758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16459451" }, "bbox": [ -0.3276874, 51.1968923, -0.3276874, 51.1968923 ], "geometry": { "type": "Point", "coordinates": [ -0.3276874, 51.1968923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12487070" }, "bbox": [ -0.3874989, 51.2262245, -0.3874989, 51.2262245 ], "geometry": { "type": "Point", "coordinates": [ -0.3874989, 51.2262245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21494201" }, "bbox": [ -0.2624513, 51.2274174, -0.2624513, 51.2274174 ], "geometry": { "type": "Point", "coordinates": [ -0.2624513, 51.2274174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17424390" }, "bbox": [ -0.3210408, 51.1732431, -0.3210408, 51.1732431 ], "geometry": { "type": "Point", "coordinates": [ -0.3210408, 51.1732431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16534153" }, "bbox": [ -0.3326803, 51.2689673, -0.3326803, 51.2689673 ], "geometry": { "type": "Point", "coordinates": [ -0.3326803, 51.2689673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37571389" }, "bbox": [ -0.0341428, 51.3036611, -0.0341428, 51.3036611 ], "geometry": { "type": "Point", "coordinates": [ -0.0341428, 51.3036611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08417601" }, "bbox": [ -0.4464974, 51.1580922, -0.4464974, 51.1580922 ], "geometry": { "type": "Point", "coordinates": [ -0.4464974, 51.1580922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369273" }, "bbox": [ -0.5594524, 51.1210581, -0.5594524, 51.1210581 ], "geometry": { "type": "Point", "coordinates": [ -0.5594524, 51.1210581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25415246" }, "bbox": [ -0.2066646, 51.1585753, -0.2066646, 51.1585753 ], "geometry": { "type": "Point", "coordinates": [ -0.2066646, 51.1585753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03626457" }, "bbox": [ -0.5130458, 51.3528536, -0.5130458, 51.3528536 ], "geometry": { "type": "Point", "coordinates": [ -0.5130458, 51.3528536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06342831" }, "bbox": [ -0.4834768, 51.098255, -0.4834768, 51.098255 ], "geometry": { "type": "Point", "coordinates": [ -0.4834768, 51.098255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30450195" }, "bbox": [ -0.1405533, 51.1980817, -0.1405533, 51.1980817 ], "geometry": { "type": "Point", "coordinates": [ -0.1405533, 51.1980817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14629336" }, "bbox": [ -0.3512146, 51.3487118, -0.3512146, 51.3487118 ], "geometry": { "type": "Point", "coordinates": [ -0.3512146, 51.3487118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30544198" }, "bbox": [ -0.1318341, 51.2789318, -0.1318341, 51.2789318 ], "geometry": { "type": "Point", "coordinates": [ -0.1318341, 51.2789318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417746" }, "bbox": [ -0.5173049, 51.1630389, -0.5173049, 51.1630389 ], "geometry": { "type": "Point", "coordinates": [ -0.5173049, 51.1630389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02672339" }, "bbox": [ -0.5320196, 51.3963566, -0.5320196, 51.3963566 ], "geometry": { "type": "Point", "coordinates": [ -0.5320196, 51.3963566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33423756" }, "bbox": [ -0.0938631, 51.1666182, -0.0938631, 51.1666182 ], "geometry": { "type": "Point", "coordinates": [ -0.0938631, 51.1666182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33444801" }, "bbox": [ -0.0915539, 51.1802648, -0.0915539, 51.1802648 ], "geometry": { "type": "Point", "coordinates": [ -0.0915539, 51.1802648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39566992" }, "bbox": [ 0.0021626, 51.2944419, 0.0021626, 51.2944419 ], "geometry": { "type": "Point", "coordinates": [ 0.0021626, 51.2944419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15391377" }, "bbox": [ -0.3552173, 51.1456639, -0.3552173, 51.1456639 ], "geometry": { "type": "Point", "coordinates": [ -0.3552173, 51.1456639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10406233" }, "bbox": [ -0.4197532, 51.1515756, -0.4197532, 51.1515756 ], "geometry": { "type": "Point", "coordinates": [ -0.4197532, 51.1515756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404876" }, "bbox": [ -0.2929887, 51.153687, -0.2929887, 51.153687 ], "geometry": { "type": "Point", "coordinates": [ -0.2929887, 51.153687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16519303" }, "bbox": [ -0.3256284, 51.2450056, -0.3256284, 51.2450056 ], "geometry": { "type": "Point", "coordinates": [ -0.3256284, 51.2450056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00368954" }, "bbox": [ -0.5597925, 51.1192658, -0.5597925, 51.1192658 ], "geometry": { "type": "Point", "coordinates": [ -0.5597925, 51.1192658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19385740" }, "bbox": [ -0.2924549, 51.1324637, -0.2924549, 51.1324637 ], "geometry": { "type": "Point", "coordinates": [ -0.2924549, 51.1324637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32417790" }, "bbox": [ -0.1024875, 51.1608899, -0.1024875, 51.1608899 ], "geometry": { "type": "Point", "coordinates": [ -0.1024875, 51.1608899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14563878" }, "bbox": [ -0.3607659, 51.2987002, -0.3607659, 51.2987002 ], "geometry": { "type": "Point", "coordinates": [ -0.3607659, 51.2987002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10463938" }, "bbox": [ -0.4198511, 51.2058444, -0.4198511, 51.2058444 ], "geometry": { "type": "Point", "coordinates": [ -0.4198511, 51.2058444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07462545" }, "bbox": [ -0.4662731, 51.2071492, -0.4662731, 51.2071492 ], "geometry": { "type": "Point", "coordinates": [ -0.4662731, 51.2071492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12396087" }, "bbox": [ -0.391583, 51.1470688, -0.391583, 51.1470688 ], "geometry": { "type": "Point", "coordinates": [ -0.391583, 51.1470688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11442818" }, "bbox": [ -0.4090832, 51.1860444, -0.4090832, 51.1860444 ], "geometry": { "type": "Point", "coordinates": [ -0.4090832, 51.1860444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13592130" }, "bbox": [ -0.3767478, 51.3215874, -0.3767478, 51.3215874 ], "geometry": { "type": "Point", "coordinates": [ -0.3767478, 51.3215874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21439577" }, "bbox": [ -0.2566298, 51.1801891, -0.2566298, 51.1801891 ], "geometry": { "type": "Point", "coordinates": [ -0.2566298, 51.1801891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05374937" }, "bbox": [ -0.4939911, 51.1259105, -0.4939911, 51.1259105 ], "geometry": { "type": "Point", "coordinates": [ -0.4939911, 51.1259105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448160" }, "bbox": [ -0.1438981, 51.1859942, -0.1438981, 51.1859942 ], "geometry": { "type": "Point", "coordinates": [ -0.1438981, 51.1859942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14408921" }, "bbox": [ -0.358675, 51.1495757, -0.358675, 51.1495757 ], "geometry": { "type": "Point", "coordinates": [ -0.358675, 51.1495757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27522538" }, "bbox": [ -0.1777161, 51.2564617, -0.1777161, 51.2564617 ], "geometry": { "type": "Point", "coordinates": [ -0.1777161, 51.2564617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29516440" }, "bbox": [ -0.1438475, 51.2470534, -0.1438475, 51.2470534 ], "geometry": { "type": "Point", "coordinates": [ -0.1438475, 51.2470534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37572694" }, "bbox": [ -0.0322195, 51.3040295, -0.0322195, 51.3040295 ], "geometry": { "type": "Point", "coordinates": [ -0.0322195, 51.3040295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39594823" }, "bbox": [ 0.0000345, 51.3150863, 0.0000345, 51.3150863 ], "geometry": { "type": "Point", "coordinates": [ 0.0000345, 51.3150863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19534388" }, "bbox": [ -0.2893103, 51.2716088, -0.2893103, 51.2716088 ], "geometry": { "type": "Point", "coordinates": [ -0.2893103, 51.2716088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39550753" }, "bbox": [ -0.0066595, 51.2819236, -0.0066595, 51.2819236 ], "geometry": { "type": "Point", "coordinates": [ -0.0066595, 51.2819236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06496906" }, "bbox": [ -0.4740136, 51.2303029, -0.4740136, 51.2303029 ], "geometry": { "type": "Point", "coordinates": [ -0.4740136, 51.2303029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13440150" }, "bbox": [ -0.3840032, 51.1886355, -0.3840032, 51.1886355 ], "geometry": { "type": "Point", "coordinates": [ -0.3840032, 51.1886355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40558241" }, "bbox": [ 0.0173302, 51.2804796, 0.0173302, 51.2804796 ], "geometry": { "type": "Point", "coordinates": [ 0.0173302, 51.2804796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27443590" }, "bbox": [ -0.1789685, 51.1892193, -0.1789685, 51.1892193 ], "geometry": { "type": "Point", "coordinates": [ -0.1789685, 51.1892193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416072" }, "bbox": [ -0.5197751, 51.1653288, -0.5197751, 51.1653288 ], "geometry": { "type": "Point", "coordinates": [ -0.5197751, 51.1653288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00455595" }, "bbox": [ -0.5620932, 51.2040037, -0.5620932, 51.2040037 ], "geometry": { "type": "Point", "coordinates": [ -0.5620932, 51.2040037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43404933" }, "bbox": [ 0.0501159, 51.1442152, 0.0501159, 51.1442152 ], "geometry": { "type": "Point", "coordinates": [ 0.0501159, 51.1442152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29508795" }, "bbox": [ -0.141412, 51.2431199, -0.141412, 51.2431199 ], "geometry": { "type": "Point", "coordinates": [ -0.141412, 51.2431199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05527493" }, "bbox": [ -0.4856897, 51.2657596, -0.4856897, 51.2657596 ], "geometry": { "type": "Point", "coordinates": [ -0.4856897, 51.2657596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08535284" }, "bbox": [ -0.4456203, 51.2732754, -0.4456203, 51.2732754 ], "geometry": { "type": "Point", "coordinates": [ -0.4456203, 51.2732754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04573040" }, "bbox": [ -0.5047633, 51.3061953, -0.5047633, 51.3061953 ], "geometry": { "type": "Point", "coordinates": [ -0.5047633, 51.3061953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23438490" }, "bbox": [ -0.2295249, 51.1809855, -0.2295249, 51.1809855 ], "geometry": { "type": "Point", "coordinates": [ -0.2295249, 51.1809855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10469303" }, "bbox": [ -0.4135386, 51.2026781, -0.4135386, 51.2026781 ], "geometry": { "type": "Point", "coordinates": [ -0.4135386, 51.2026781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01454530" }, "bbox": [ -0.5492976, 51.1979337, -0.5492976, 51.1979337 ], "geometry": { "type": "Point", "coordinates": [ -0.5492976, 51.1979337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11376038" }, "bbox": [ -0.4066153, 51.1248689, -0.4066153, 51.1248689 ], "geometry": { "type": "Point", "coordinates": [ -0.4066153, 51.1248689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30444059" }, "bbox": [ -0.1356148, 51.185663, -0.1356148, 51.185663 ], "geometry": { "type": "Point", "coordinates": [ -0.1356148, 51.185663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29492703" }, "bbox": [ -0.1501806, 51.2251475, -0.1501806, 51.2251475 ], "geometry": { "type": "Point", "coordinates": [ -0.1501806, 51.2251475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28488118" }, "bbox": [ -0.1570078, 51.2182469, -0.1570078, 51.2182469 ], "geometry": { "type": "Point", "coordinates": [ -0.1570078, 51.2182469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20462496" }, "bbox": [ -0.2801798, 51.2092321, -0.2801798, 51.2092321 ], "geometry": { "type": "Point", "coordinates": [ -0.2801798, 51.2092321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01370576" }, "bbox": [ -0.5569251, 51.1300745, -0.5569251, 51.1300745 ], "geometry": { "type": "Point", "coordinates": [ -0.5569251, 51.1300745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14461377" }, "bbox": [ -0.3674601, 51.2087687, -0.3674601, 51.2087687 ], "geometry": { "type": "Point", "coordinates": [ -0.3674601, 51.2087687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11407513" }, "bbox": [ -0.4036277, 51.1496066, -0.4036277, 51.1496066 ], "geometry": { "type": "Point", "coordinates": [ -0.4036277, 51.1496066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32475303" }, "bbox": [ -0.1042329, 51.2070175, -0.1042329, 51.2070175 ], "geometry": { "type": "Point", "coordinates": [ -0.1042329, 51.2070175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31526717" }, "bbox": [ -0.1140955, 51.2535307, -0.1140955, 51.2535307 ], "geometry": { "type": "Point", "coordinates": [ -0.1140955, 51.2535307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570240" }, "bbox": [ -0.3799652, 51.3045942, -0.3799652, 51.3045942 ], "geometry": { "type": "Point", "coordinates": [ -0.3799652, 51.3045942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09574187" }, "bbox": [ -0.4315061, 51.3093926, -0.4315061, 51.3093926 ], "geometry": { "type": "Point", "coordinates": [ -0.4315061, 51.3093926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36549132" }, "bbox": [ -0.0388272, 51.2718386, -0.0388272, 51.2718386 ], "geometry": { "type": "Point", "coordinates": [ -0.0388272, 51.2718386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11418309" }, "bbox": [ -0.4027522, 51.1580645, -0.4027522, 51.1580645 ], "geometry": { "type": "Point", "coordinates": [ -0.4027522, 51.1580645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34494565" }, "bbox": [ -0.0758432, 51.230061, -0.0758432, 51.230061 ], "geometry": { "type": "Point", "coordinates": [ -0.0758432, 51.230061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33410189" }, "bbox": [ -0.099297, 51.1608141, -0.099297, 51.1608141 ], "geometry": { "type": "Point", "coordinates": [ -0.099297, 51.1608141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27442438" }, "bbox": [ -0.1809338, 51.1847636, -0.1809338, 51.1847636 ], "geometry": { "type": "Point", "coordinates": [ -0.1809338, 51.1847636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23455349" }, "bbox": [ -0.2334746, 51.1952414, -0.2334746, 51.1952414 ], "geometry": { "type": "Point", "coordinates": [ -0.2334746, 51.1952414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22411360" }, "bbox": [ -0.2548166, 51.1606407, -0.2548166, 51.1606407 ], "geometry": { "type": "Point", "coordinates": [ -0.2548166, 51.1606407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35472476" }, "bbox": [ -0.0654132, 51.2130779, -0.0654132, 51.2130779 ], "geometry": { "type": "Point", "coordinates": [ -0.0654132, 51.2130779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08440786" }, "bbox": [ -0.454694, 51.1929274, -0.454694, 51.1929274 ], "geometry": { "type": "Point", "coordinates": [ -0.454694, 51.1929274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32477421" }, "bbox": [ -0.1010905, 51.2086288, -0.1010905, 51.2086288 ], "geometry": { "type": "Point", "coordinates": [ -0.1010905, 51.2086288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08411726" }, "bbox": [ -0.4542535, 51.1603797, -0.4542535, 51.1603797 ], "geometry": { "type": "Point", "coordinates": [ -0.4542535, 51.1603797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22524601" }, "bbox": [ -0.2467931, 51.2541573, -0.2467931, 51.2541573 ], "geometry": { "type": "Point", "coordinates": [ -0.2467931, 51.2541573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24478308" }, "bbox": [ -0.2107995, 51.2092468, -0.2107995, 51.2092468 ], "geometry": { "type": "Point", "coordinates": [ -0.2107995, 51.2092468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36500130" }, "bbox": [ -0.0534643, 51.2356316, -0.0534643, 51.2356316 ], "geometry": { "type": "Point", "coordinates": [ -0.0534643, 51.2356316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04507637" }, "bbox": [ -0.500585, 51.2429046, -0.500585, 51.2429046 ], "geometry": { "type": "Point", "coordinates": [ -0.500585, 51.2429046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38488555" }, "bbox": [ -0.0132393, 51.219312, -0.0132393, 51.219312 ], "geometry": { "type": "Point", "coordinates": [ -0.0132393, 51.219312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39444288" }, "bbox": [ -0.0063626, 51.1861137, -0.0063626, 51.1861137 ], "geometry": { "type": "Point", "coordinates": [ -0.0063626, 51.1861137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31421649" }, "bbox": [ -0.1253986, 51.1666696, -0.1253986, 51.1666696 ], "geometry": { "type": "Point", "coordinates": [ -0.1253986, 51.1666696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446356" }, "bbox": [ -0.0893127, 51.1847279, -0.0893127, 51.1847279 ], "geometry": { "type": "Point", "coordinates": [ -0.0893127, 51.1847279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23446589" }, "bbox": [ -0.2319359, 51.189874, -0.2319359, 51.189874 ], "geometry": { "type": "Point", "coordinates": [ -0.2319359, 51.189874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06353142" }, "bbox": [ -0.4827884, 51.1082212, -0.4827884, 51.1082212 ], "geometry": { "type": "Point", "coordinates": [ -0.4827884, 51.1082212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36428706" }, "bbox": [ -0.0439492, 51.1614368, -0.0439492, 51.1614368 ], "geometry": { "type": "Point", "coordinates": [ -0.0439492, 51.1614368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01361668" }, "bbox": [ -0.5558313, 51.1204235, -0.5558313, 51.1204235 ], "geometry": { "type": "Point", "coordinates": [ -0.5558313, 51.1204235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22479683" }, "bbox": [ -0.2408597, 51.2164029, -0.2408597, 51.2164029 ], "geometry": { "type": "Point", "coordinates": [ -0.2408597, 51.2164029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34559538" }, "bbox": [ -0.066373, 51.2812484, -0.066373, 51.2812484 ], "geometry": { "type": "Point", "coordinates": [ -0.066373, 51.2812484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02360950" }, "bbox": [ -0.5426581, 51.1187063, -0.5426581, 51.1187063 ], "geometry": { "type": "Point", "coordinates": [ -0.5426581, 51.1187063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14410529" }, "bbox": [ -0.3706299, 51.1592796, -0.3706299, 51.1592796 ], "geometry": { "type": "Point", "coordinates": [ -0.3706299, 51.1592796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06661655" }, "bbox": [ -0.4759212, 51.3882371, -0.4759212, 51.3882371 ], "geometry": { "type": "Point", "coordinates": [ -0.4759212, 51.3882371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10466603" }, "bbox": [ -0.4174391, 51.2027791, -0.4174391, 51.2027791 ], "geometry": { "type": "Point", "coordinates": [ -0.4174391, 51.2027791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38555253" }, "bbox": [ -0.015275, 51.282085, -0.015275, 51.282085 ], "geometry": { "type": "Point", "coordinates": [ -0.015275, 51.282085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33496715" }, "bbox": [ -0.0869105, 51.2257259, -0.0869105, 51.2257259 ], "geometry": { "type": "Point", "coordinates": [ -0.0869105, 51.2257259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26469849" }, "bbox": [ -0.1838586, 51.2035847, -0.1838586, 51.2035847 ], "geometry": { "type": "Point", "coordinates": [ -0.1838586, 51.2035847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01405578" }, "bbox": [ -0.5492831, 51.1572719, -0.5492831, 51.1572719 ], "geometry": { "type": "Point", "coordinates": [ -0.5492831, 51.1572719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05474458" }, "bbox": [ -0.4917177, 51.2177008, -0.4917177, 51.2177008 ], "geometry": { "type": "Point", "coordinates": [ -0.4917177, 51.2177008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02358477" }, "bbox": [ -0.5321974, 51.1120275, -0.5321974, 51.1120275 ], "geometry": { "type": "Point", "coordinates": [ -0.5321974, 51.1120275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21514305" }, "bbox": [ -0.261466, 51.2456663, -0.261466, 51.2456663 ], "geometry": { "type": "Point", "coordinates": [ -0.261466, 51.2456663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09423771" }, "bbox": [ -0.4369222, 51.1733122, -0.4369222, 51.1733122 ], "geometry": { "type": "Point", "coordinates": [ -0.4369222, 51.1733122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03405190" }, "bbox": [ -0.5213799, 51.1578455, -0.5213799, 51.1578455 ], "geometry": { "type": "Point", "coordinates": [ -0.5213799, 51.1578455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04553050" }, "bbox": [ -0.5056501, 51.2891368, -0.5056501, 51.2891368 ], "geometry": { "type": "Point", "coordinates": [ -0.5056501, 51.2891368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412081" }, "bbox": [ 0.032133, 51.1579287, 0.032133, 51.1579287 ], "geometry": { "type": "Point", "coordinates": [ 0.032133, 51.1579287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368206" }, "bbox": [ -0.5182088, 51.1144851, -0.5182088, 51.1144851 ], "geometry": { "type": "Point", "coordinates": [ -0.5182088, 51.1144851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31517551" }, "bbox": [ -0.1137008, 51.2473986, -0.1137008, 51.2473986 ], "geometry": { "type": "Point", "coordinates": [ -0.1137008, 51.2473986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22471287" }, "bbox": [ -0.2529452, 51.2170619, -0.2529452, 51.2170619 ], "geometry": { "type": "Point", "coordinates": [ -0.2529452, 51.2170619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34470117" }, "bbox": [ -0.0830657, 51.2079717, -0.0830657, 51.2079717 ], "geometry": { "type": "Point", "coordinates": [ -0.0830657, 51.2079717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30475608" }, "bbox": [ -0.1323133, 51.2080173, -0.1323133, 51.2080173 ], "geometry": { "type": "Point", "coordinates": [ -0.1323133, 51.2080173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36424274" }, "bbox": [ -0.050213, 51.1679384, -0.050213, 51.1679384 ], "geometry": { "type": "Point", "coordinates": [ -0.050213, 51.1679384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38597876" }, "bbox": [ -0.0101317, 51.3197037, -0.0101317, 51.3197037 ], "geometry": { "type": "Point", "coordinates": [ -0.0101317, 51.3197037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14372553" }, "bbox": [ -0.3687333, 51.1257456, -0.3687333, 51.1257456 ], "geometry": { "type": "Point", "coordinates": [ -0.3687333, 51.1257456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11547395" }, "bbox": [ -0.3992402, 51.2824609, -0.3992402, 51.2824609 ], "geometry": { "type": "Point", "coordinates": [ -0.3992402, 51.2824609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10476295" }, "bbox": [ -0.4166569, 51.2203335, -0.4166569, 51.2203335 ], "geometry": { "type": "Point", "coordinates": [ -0.4166569, 51.2203335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365291" }, "bbox": [ -0.4937931, 51.1216718, -0.4937931, 51.1216718 ], "geometry": { "type": "Point", "coordinates": [ -0.4937931, 51.1216718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04551082" }, "bbox": [ -0.5084641, 51.2919832, -0.5084641, 51.2919832 ], "geometry": { "type": "Point", "coordinates": [ -0.5084641, 51.2919832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24451484" }, "bbox": [ -0.2246115, 51.1983758, -0.2246115, 51.1983758 ], "geometry": { "type": "Point", "coordinates": [ -0.2246115, 51.1983758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32450744" }, "bbox": [ -0.1113365, 51.1929087, -0.1113365, 51.1929087 ], "geometry": { "type": "Point", "coordinates": [ -0.1113365, 51.1929087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06445073" }, "bbox": [ -0.4772108, 51.1919129, -0.4772108, 51.1919129 ], "geometry": { "type": "Point", "coordinates": [ -0.4772108, 51.1919129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25463984" }, "bbox": [ -0.2076707, 51.2065312, -0.2076707, 51.2065312 ], "geometry": { "type": "Point", "coordinates": [ -0.2076707, 51.2065312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30532996" }, "bbox": [ -0.1335745, 51.2699085, -0.1335745, 51.2699085 ], "geometry": { "type": "Point", "coordinates": [ -0.1335745, 51.2699085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17413206" }, "bbox": [ -0.3236523, 51.1567218, -0.3236523, 51.1567218 ], "geometry": { "type": "Point", "coordinates": [ -0.3236523, 51.1567218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16413489" }, "bbox": [ -0.3378303, 51.1643874, -0.3378303, 51.1643874 ], "geometry": { "type": "Point", "coordinates": [ -0.3378303, 51.1643874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04638108" }, "bbox": [ -0.4960334, 51.3571683, -0.4960334, 51.3571683 ], "geometry": { "type": "Point", "coordinates": [ -0.4960334, 51.3571683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05693841" }, "bbox": [ -0.4861929, 51.4139105, -0.4861929, 51.4139105 ], "geometry": { "type": "Point", "coordinates": [ -0.4861929, 51.4139105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01397501" }, "bbox": [ -0.5467199, 51.1410994, -0.5467199, 51.1410994 ], "geometry": { "type": "Point", "coordinates": [ -0.5467199, 51.1410994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11531509" }, "bbox": [ -0.4084609, 51.2662756, -0.4084609, 51.2662756 ], "geometry": { "type": "Point", "coordinates": [ -0.4084609, 51.2662756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39556763" }, "bbox": [ 0.0013824, 51.2827316, 0.0013824, 51.2827316 ], "geometry": { "type": "Point", "coordinates": [ 0.0013824, 51.2827316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30488886" }, "bbox": [ -0.1270892, 51.2239478, -0.1270892, 51.2239478 ], "geometry": { "type": "Point", "coordinates": [ -0.1270892, 51.2239478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33445699" }, "bbox": [ -0.0903597, 51.1885877, -0.0903597, 51.1885877 ], "geometry": { "type": "Point", "coordinates": [ -0.0903597, 51.1885877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42536921" }, "bbox": [ 0.0436859, 51.2602027, 0.0436859, 51.2602027 ], "geometry": { "type": "Point", "coordinates": [ 0.0436859, 51.2602027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08405868" }, "bbox": [ -0.4487596, 51.1551764, -0.4487596, 51.1551764 ], "geometry": { "type": "Point", "coordinates": [ -0.4487596, 51.1551764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12408966" }, "bbox": [ -0.3871758, 51.1540896, -0.3871758, 51.1540896 ], "geometry": { "type": "Point", "coordinates": [ -0.3871758, 51.1540896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427347" }, "bbox": [ -0.0886824, 51.1659592, -0.0886824, 51.1659592 ], "geometry": { "type": "Point", "coordinates": [ -0.0886824, 51.1659592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13398389" }, "bbox": [ -0.3740011, 51.147006, -0.3740011, 51.147006 ], "geometry": { "type": "Point", "coordinates": [ -0.3740011, 51.147006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13510166" }, "bbox": [ -0.3819881, 51.2530841, -0.3819881, 51.2530841 ], "geometry": { "type": "Point", "coordinates": [ -0.3819881, 51.2530841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31416801" }, "bbox": [ -0.118246, 51.1532568, -0.118246, 51.1532568 ], "geometry": { "type": "Point", "coordinates": [ -0.118246, 51.1532568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09584231" }, "bbox": [ -0.4314622, 51.3134146, -0.4314622, 51.3134146 ], "geometry": { "type": "Point", "coordinates": [ -0.4314622, 51.3134146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12401126" }, "bbox": [ -0.3984207, 51.1506584, -0.3984207, 51.1506584 ], "geometry": { "type": "Point", "coordinates": [ -0.3984207, 51.1506584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18412734" }, "bbox": [ -0.3100212, 51.15908, -0.3100212, 51.15908 ], "geometry": { "type": "Point", "coordinates": [ -0.3100212, 51.15908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02680815" }, "bbox": [ -0.5338235, 51.4032255, -0.5338235, 51.4032255 ], "geometry": { "type": "Point", "coordinates": [ -0.5338235, 51.4032255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14395320" }, "bbox": [ -0.3646141, 51.1408996, -0.3646141, 51.1408996 ], "geometry": { "type": "Point", "coordinates": [ -0.3646141, 51.1408996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11397677" }, "bbox": [ -0.403551, 51.1463158, -0.403551, 51.1463158 ], "geometry": { "type": "Point", "coordinates": [ -0.403551, 51.1463158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470923" }, "bbox": [ -0.1962423, 51.2103852, -0.1962423, 51.2103852 ], "geometry": { "type": "Point", "coordinates": [ -0.1962423, 51.2103852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14458675" }, "bbox": [ -0.3573647, 51.1995022, -0.3573647, 51.1995022 ], "geometry": { "type": "Point", "coordinates": [ -0.3573647, 51.1995022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06414312" }, "bbox": [ -0.4793748, 51.1592256, -0.4793748, 51.1592256 ], "geometry": { "type": "Point", "coordinates": [ -0.4793748, 51.1592256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02430126" }, "bbox": [ -0.5421193, 51.1795131, -0.5421193, 51.1795131 ], "geometry": { "type": "Point", "coordinates": [ -0.5421193, 51.1795131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16456313" }, "bbox": [ -0.3323184, 51.1935124, -0.3323184, 51.1935124 ], "geometry": { "type": "Point", "coordinates": [ -0.3323184, 51.1935124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09423188" }, "bbox": [ -0.4375739, 51.1747371, -0.4375739, 51.1747371 ], "geometry": { "type": "Point", "coordinates": [ -0.4375739, 51.1747371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29455183" }, "bbox": [ -0.1477164, 51.1970115, -0.1477164, 51.1970115 ], "geometry": { "type": "Point", "coordinates": [ -0.1477164, 51.1970115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26462396" }, "bbox": [ -0.1947553, 51.2083655, -0.1947553, 51.2083655 ], "geometry": { "type": "Point", "coordinates": [ -0.1947553, 51.2083655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34423798" }, "bbox": [ -0.0795857, 51.1701712, -0.0795857, 51.1701712 ], "geometry": { "type": "Point", "coordinates": [ -0.0795857, 51.1701712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06484594" }, "bbox": [ -0.4768921, 51.2297825, -0.4768921, 51.2297825 ], "geometry": { "type": "Point", "coordinates": [ -0.4768921, 51.2297825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19485585" }, "bbox": [ -0.2888966, 51.2261176, -0.2888966, 51.2261176 ], "geometry": { "type": "Point", "coordinates": [ -0.2888966, 51.2261176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14419670" }, "bbox": [ -0.3574509, 51.1629053, -0.3574509, 51.1629053 ], "geometry": { "type": "Point", "coordinates": [ -0.3574509, 51.1629053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16525290" }, "bbox": [ -0.3313015, 51.2635845, -0.3313015, 51.2635845 ], "geometry": { "type": "Point", "coordinates": [ -0.3313015, 51.2635845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03570829" }, "bbox": [ -0.5225542, 51.3053511, -0.5225542, 51.3053511 ], "geometry": { "type": "Point", "coordinates": [ -0.5225542, 51.3053511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19564133" }, "bbox": [ -0.2885055, 51.2935481, -0.2885055, 51.2935481 ], "geometry": { "type": "Point", "coordinates": [ -0.2885055, 51.2935481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41434281" }, "bbox": [ 0.0218457, 51.1760465, 0.0218457, 51.1760465 ], "geometry": { "type": "Point", "coordinates": [ 0.0218457, 51.1760465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07366837" }, "bbox": [ -0.4628677, 51.1165519, -0.4628677, 51.1165519 ], "geometry": { "type": "Point", "coordinates": [ -0.4628677, 51.1165519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455474" }, "bbox": [ -0.1760152, 51.196647, -0.1760152, 51.196647 ], "geometry": { "type": "Point", "coordinates": [ -0.1760152, 51.196647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07393915" }, "bbox": [ -0.4663223, 51.1416371, -0.4663223, 51.1416371 ], "geometry": { "type": "Point", "coordinates": [ -0.4663223, 51.1416371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14399571" }, "bbox": [ -0.3579733, 51.1451938, -0.3579733, 51.1451938 ], "geometry": { "type": "Point", "coordinates": [ -0.3579733, 51.1451938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03413954" }, "bbox": [ -0.5226652, 51.1636501, -0.5226652, 51.1636501 ], "geometry": { "type": "Point", "coordinates": [ -0.5226652, 51.1636501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28469939" }, "bbox": [ -0.1551613, 51.2022585, -0.1551613, 51.2022585 ], "geometry": { "type": "Point", "coordinates": [ -0.1551613, 51.2022585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20419070" }, "bbox": [ -0.2723756, 51.1618367, -0.2723756, 51.1618367 ], "geometry": { "type": "Point", "coordinates": [ -0.2723756, 51.1618367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12612892" }, "bbox": [ -0.389165, 51.3453013, -0.389165, 51.3453013 ], "geometry": { "type": "Point", "coordinates": [ -0.389165, 51.3453013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19443856" }, "bbox": [ -0.293417, 51.1877506, -0.293417, 51.1877506 ], "geometry": { "type": "Point", "coordinates": [ -0.293417, 51.1877506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30499283" }, "bbox": [ -0.1259296, 51.232854, -0.1259296, 51.232854 ], "geometry": { "type": "Point", "coordinates": [ -0.1259296, 51.232854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18436071" }, "bbox": [ -0.3044769, 51.1801795, -0.3044769, 51.1801795 ], "geometry": { "type": "Point", "coordinates": [ -0.3044769, 51.1801795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42491633" }, "bbox": [ 0.0343903, 51.2254375, 0.0343903, 51.2254375 ], "geometry": { "type": "Point", "coordinates": [ 0.0343903, 51.2254375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466371" }, "bbox": [ -0.4605214, 51.2095475, -0.4605214, 51.2095475 ], "geometry": { "type": "Point", "coordinates": [ -0.4605214, 51.2095475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36400115" }, "bbox": [ -0.0572312, 51.1444395, -0.0572312, 51.1444395 ], "geometry": { "type": "Point", "coordinates": [ -0.0572312, 51.1444395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32536497" }, "bbox": [ -0.1001626, 51.2695267, -0.1001626, 51.2695267 ], "geometry": { "type": "Point", "coordinates": [ -0.1001626, 51.2695267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02564175" }, "bbox": [ -0.532453, 51.3004266, -0.532453, 51.3004266 ], "geometry": { "type": "Point", "coordinates": [ -0.532453, 51.3004266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522476" }, "bbox": [ -0.3927095, 51.2630261, -0.3927095, 51.2630261 ], "geometry": { "type": "Point", "coordinates": [ -0.3927095, 51.2630261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30448116" }, "bbox": [ -0.1299262, 51.1816042, -0.1299262, 51.1816042 ], "geometry": { "type": "Point", "coordinates": [ -0.1299262, 51.1816042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479032" }, "bbox": [ -0.313453, 51.2129738, -0.313453, 51.2129738 ], "geometry": { "type": "Point", "coordinates": [ -0.313453, 51.2129738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04433085" }, "bbox": [ -0.5098331, 51.1844282, -0.5098331, 51.1844282 ], "geometry": { "type": "Point", "coordinates": [ -0.5098331, 51.1844282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37448927" }, "bbox": [ -0.0287312, 51.1809322, -0.0287312, 51.1809322 ], "geometry": { "type": "Point", "coordinates": [ -0.0287312, 51.1809322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511226" }, "bbox": [ -0.3947384, 51.2494854, -0.3947384, 51.2494854 ], "geometry": { "type": "Point", "coordinates": [ -0.3947384, 51.2494854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484599" }, "bbox": [ -0.2189529, 51.2267058, -0.2189529, 51.2267058 ], "geometry": { "type": "Point", "coordinates": [ -0.2189529, 51.2267058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33523278" }, "bbox": [ -0.0907732, 51.2586581, -0.0907732, 51.2586581 ], "geometry": { "type": "Point", "coordinates": [ -0.0907732, 51.2586581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06450537" }, "bbox": [ -0.4835575, 51.1977514, -0.4835575, 51.1977514 ], "geometry": { "type": "Point", "coordinates": [ -0.4835575, 51.1977514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519968" }, "bbox": [ -0.5112118, 51.2547737, -0.5112118, 51.2547737 ], "geometry": { "type": "Point", "coordinates": [ -0.5112118, 51.2547737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21568817" }, "bbox": [ -0.2534292, 51.2915816, -0.2534292, 51.2915816 ], "geometry": { "type": "Point", "coordinates": [ -0.2534292, 51.2915816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35421417" }, "bbox": [ -0.0687033, 51.1628621, -0.0687033, 51.1628621 ], "geometry": { "type": "Point", "coordinates": [ -0.0687033, 51.1628621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14465657" }, "bbox": [ -0.361376, 51.2068977, -0.361376, 51.2068977 ], "geometry": { "type": "Point", "coordinates": [ -0.361376, 51.2068977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38449779" }, "bbox": [ -0.012834, 51.1855094, -0.012834, 51.1855094 ], "geometry": { "type": "Point", "coordinates": [ -0.012834, 51.1855094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02332646" }, "bbox": [ -0.5411182, 51.0913997, -0.5411182, 51.0913997 ], "geometry": { "type": "Point", "coordinates": [ -0.5411182, 51.0913997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41551464" }, "bbox": [ 0.0222364, 51.2823897, 0.0222364, 51.2823897 ], "geometry": { "type": "Point", "coordinates": [ 0.0222364, 51.2823897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36430715" }, "bbox": [ -0.0551313, 51.1713864, -0.0551313, 51.1713864 ], "geometry": { "type": "Point", "coordinates": [ -0.0551313, 51.1713864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10468003" }, "bbox": [ -0.4153135, 51.2027615, -0.4153135, 51.2027615 ], "geometry": { "type": "Point", "coordinates": [ -0.4153135, 51.2027615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31478018" }, "bbox": [ -0.1146943, 51.2085463, -0.1146943, 51.2085463 ], "geometry": { "type": "Point", "coordinates": [ -0.1146943, 51.2085463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13540301" }, "bbox": [ -0.380755, 51.2742007, -0.380755, 51.2742007 ], "geometry": { "type": "Point", "coordinates": [ -0.380755, 51.2742007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25479708" }, "bbox": [ -0.1982034, 51.2090633, -0.1982034, 51.2090633 ], "geometry": { "type": "Point", "coordinates": [ -0.1982034, 51.2090633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08545101" }, "bbox": [ -0.4460102, 51.2749976, -0.4460102, 51.2749976 ], "geometry": { "type": "Point", "coordinates": [ -0.4460102, 51.2749976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40450464" }, "bbox": [ 0.0027298, 51.1928743, 0.0027298, 51.1928743 ], "geometry": { "type": "Point", "coordinates": [ 0.0027298, 51.1928743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37505169" }, "bbox": [ -0.0314139, 51.2389016, -0.0314139, 51.2389016 ], "geometry": { "type": "Point", "coordinates": [ -0.0314139, 51.2389016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13420603" }, "bbox": [ -0.3843355, 51.1663801, -0.3843355, 51.1663801 ], "geometry": { "type": "Point", "coordinates": [ -0.3843355, 51.1663801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13410687" }, "bbox": [ -0.3841514, 51.165012, -0.3841514, 51.165012 ], "geometry": { "type": "Point", "coordinates": [ -0.3841514, 51.165012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11552471" }, "bbox": [ -0.4063115, 51.2896884, -0.4063115, 51.2896884 ], "geometry": { "type": "Point", "coordinates": [ -0.4063115, 51.2896884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32417485" }, "bbox": [ -0.1030591, 51.1605167, -0.1030591, 51.1605167 ], "geometry": { "type": "Point", "coordinates": [ -0.1030591, 51.1605167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11480503" }, "bbox": [ -0.4110388, 51.2207027, -0.4110388, 51.2207027 ], "geometry": { "type": "Point", "coordinates": [ -0.4110388, 51.2207027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24448727" }, "bbox": [ -0.2147134, 51.1840969, -0.2147134, 51.1840969 ], "geometry": { "type": "Point", "coordinates": [ -0.2147134, 51.1840969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35490989" }, "bbox": [ -0.0665564, 51.2322656, -0.0665564, 51.2322656 ], "geometry": { "type": "Point", "coordinates": [ -0.0665564, 51.2322656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30543403" }, "bbox": [ -0.1330576, 51.2705691, -0.1330576, 51.2705691 ], "geometry": { "type": "Point", "coordinates": [ -0.1330576, 51.2705691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35596081" }, "bbox": [ -0.055625, 51.3213442, -0.055625, 51.3213442 ], "geometry": { "type": "Point", "coordinates": [ -0.055625, 51.3213442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04512782" }, "bbox": [ -0.5072158, 51.2565222, -0.5072158, 51.2565222 ], "geometry": { "type": "Point", "coordinates": [ -0.5072158, 51.2565222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36564465" }, "bbox": [ -0.044568, 51.2927068, -0.044568, 51.2927068 ], "geometry": { "type": "Point", "coordinates": [ -0.044568, 51.2927068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05569834" }, "bbox": [ -0.4810009, 51.2961247, -0.4810009, 51.2961247 ], "geometry": { "type": "Point", "coordinates": [ -0.4810009, 51.2961247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463031" }, "bbox": [ -0.193525, 51.2020695, -0.193525, 51.2020695 ], "geometry": { "type": "Point", "coordinates": [ -0.193525, 51.2020695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37585030" }, "bbox": [ -0.0287256, 51.3071884, -0.0287256, 51.3071884 ], "geometry": { "type": "Point", "coordinates": [ -0.0287256, 51.3071884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42447265" }, "bbox": [ 0.0408244, 51.1825463, 0.0408244, 51.1825463 ], "geometry": { "type": "Point", "coordinates": [ 0.0408244, 51.1825463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02450318" }, "bbox": [ -0.5412166, 51.1968389, -0.5412166, 51.1968389 ], "geometry": { "type": "Point", "coordinates": [ -0.5412166, 51.1968389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00328791" }, "bbox": [ -0.5608568, 51.0866616, -0.5608568, 51.0866616 ], "geometry": { "type": "Point", "coordinates": [ -0.5608568, 51.0866616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19473099" }, "bbox": [ -0.2930611, 51.2187241, -0.2930611, 51.2187241 ], "geometry": { "type": "Point", "coordinates": [ -0.2930611, 51.2187241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490406" }, "bbox": [ -0.368111, 51.229351, -0.368111, 51.229351 ], "geometry": { "type": "Point", "coordinates": [ -0.368111, 51.229351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01388533" }, "bbox": [ -0.54568, 51.1353279, -0.54568, 51.1353279 ], "geometry": { "type": "Point", "coordinates": [ -0.54568, 51.1353279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37480397" }, "bbox": [ -0.0388688, 51.2234299, -0.0388688, 51.2234299 ], "geometry": { "type": "Point", "coordinates": [ -0.0388688, 51.2234299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405225" }, "bbox": [ -0.5356897, 51.1523911, -0.5356897, 51.1523911 ], "geometry": { "type": "Point", "coordinates": [ -0.5356897, 51.1523911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42495867" }, "bbox": [ 0.0406883, 51.2282684, 0.0406883, 51.2282684 ], "geometry": { "type": "Point", "coordinates": [ 0.0406883, 51.2282684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14493893" }, "bbox": [ -0.3629032, 51.2371456, -0.3629032, 51.2371456 ], "geometry": { "type": "Point", "coordinates": [ -0.3629032, 51.2371456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13428505" }, "bbox": [ -0.3731649, 51.1661747, -0.3731649, 51.1661747 ], "geometry": { "type": "Point", "coordinates": [ -0.3731649, 51.1661747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19384884" }, "bbox": [ -0.2937513, 51.1363441, -0.2937513, 51.1363441 ], "geometry": { "type": "Point", "coordinates": [ -0.2937513, 51.1363441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01545665" }, "bbox": [ -0.5451131, 51.2820272, -0.5451131, 51.2820272 ], "geometry": { "type": "Point", "coordinates": [ -0.5451131, 51.2820272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22517968" }, "bbox": [ -0.2418456, 51.2509715, -0.2418456, 51.2509715 ], "geometry": { "type": "Point", "coordinates": [ -0.2418456, 51.2509715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576892" }, "bbox": [ -0.4277334, 51.3099524, -0.4277334, 51.3099524 ], "geometry": { "type": "Point", "coordinates": [ -0.4277334, 51.3099524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14458327" }, "bbox": [ -0.3579854, 51.195153, -0.3579854, 51.195153 ], "geometry": { "type": "Point", "coordinates": [ -0.3579854, 51.195153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36575799" }, "bbox": [ -0.0418648, 51.3047453, -0.0418648, 51.3047453 ], "geometry": { "type": "Point", "coordinates": [ -0.0418648, 51.3047453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21441991" }, "bbox": [ -0.2670413, 51.1906452, -0.2670413, 51.1906452 ], "geometry": { "type": "Point", "coordinates": [ -0.2670413, 51.1906452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446746" }, "bbox": [ -0.0888064, 51.1837698, -0.0888064, 51.1837698 ], "geometry": { "type": "Point", "coordinates": [ -0.0888064, 51.1837698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06369169" }, "bbox": [ -0.4737676, 51.1196177, -0.4737676, 51.1196177 ], "geometry": { "type": "Point", "coordinates": [ -0.4737676, 51.1196177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407886" }, "bbox": [ -0.445787, 51.1567102, -0.445787, 51.1567102 ], "geometry": { "type": "Point", "coordinates": [ -0.445787, 51.1567102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30455501" }, "bbox": [ -0.1333517, 51.1893302, -0.1333517, 51.1893302 ], "geometry": { "type": "Point", "coordinates": [ -0.1333517, 51.1893302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38594875" }, "bbox": [ -0.0144038, 51.3198857, -0.0144038, 51.3198857 ], "geometry": { "type": "Point", "coordinates": [ -0.0144038, 51.3198857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373108" }, "bbox": [ -0.5536346, 51.1240777, -0.5536346, 51.1240777 ], "geometry": { "type": "Point", "coordinates": [ -0.5536346, 51.1240777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32418381" }, "bbox": [ -0.1016576, 51.1602294, -0.1016576, 51.1602294 ], "geometry": { "type": "Point", "coordinates": [ -0.1016576, 51.1602294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14573949" }, "bbox": [ -0.3603778, 51.3050674, -0.3603778, 51.3050674 ], "geometry": { "type": "Point", "coordinates": [ -0.3603778, 51.3050674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42443927" }, "bbox": [ 0.0353389, 51.1802292, 0.0353389, 51.1802292 ], "geometry": { "type": "Point", "coordinates": [ 0.0353389, 51.1802292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33453129" }, "bbox": [ -0.0945256, 51.1909122, -0.0945256, 51.1909122 ], "geometry": { "type": "Point", "coordinates": [ -0.0945256, 51.1909122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04350898" }, "bbox": [ -0.5137803, 51.1134273, -0.5137803, 51.1134273 ], "geometry": { "type": "Point", "coordinates": [ -0.5137803, 51.1134273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21426974" }, "bbox": [ -0.2607435, 51.1709671, -0.2607435, 51.1709671 ], "geometry": { "type": "Point", "coordinates": [ -0.2607435, 51.1709671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18405887" }, "bbox": [ -0.3059144, 51.1547019, -0.3059144, 51.1547019 ], "geometry": { "type": "Point", "coordinates": [ -0.3059144, 51.1547019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07552168" }, "bbox": [ -0.4637979, 51.2901285, -0.4637979, 51.2901285 ], "geometry": { "type": "Point", "coordinates": [ -0.4637979, 51.2901285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11502770" }, "bbox": [ -0.4075316, 51.2445861, -0.4075316, 51.2445861 ], "geometry": { "type": "Point", "coordinates": [ -0.4075316, 51.2445861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00408767" }, "bbox": [ -0.5590333, 51.1563791, -0.5590333, 51.1563791 ], "geometry": { "type": "Point", "coordinates": [ -0.5590333, 51.1563791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11558710" }, "bbox": [ -0.3973488, 51.284033, -0.3973488, 51.284033 ], "geometry": { "type": "Point", "coordinates": [ -0.3973488, 51.284033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02479303" }, "bbox": [ -0.5278447, 51.2132529, -0.5278447, 51.2132529 ], "geometry": { "type": "Point", "coordinates": [ -0.5278447, 51.2132529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411048" }, "bbox": [ -0.5695975, 51.1637742, -0.5695975, 51.1637742 ], "geometry": { "type": "Point", "coordinates": [ -0.5695975, 51.1637742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32440837" }, "bbox": [ -0.111197, 51.1831082, -0.111197, 51.1831082 ], "geometry": { "type": "Point", "coordinates": [ -0.111197, 51.1831082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33425703" }, "bbox": [ -0.0912863, 51.161814, -0.0912863, 51.161814 ], "geometry": { "type": "Point", "coordinates": [ -0.0912863, 51.161814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596679" }, "bbox": [ -0.4131509, 51.3264641, -0.4131509, 51.3264641 ], "geometry": { "type": "Point", "coordinates": [ -0.4131509, 51.3264641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16446346" }, "bbox": [ -0.3335996, 51.1876029, -0.3335996, 51.1876029 ], "geometry": { "type": "Point", "coordinates": [ -0.3335996, 51.1876029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12515635" }, "bbox": [ -0.388495, 51.2501358, -0.388495, 51.2501358 ], "geometry": { "type": "Point", "coordinates": [ -0.388495, 51.2501358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14591004" }, "bbox": [ -0.3638642, 51.3190531, -0.3638642, 51.3190531 ], "geometry": { "type": "Point", "coordinates": [ -0.3638642, 51.3190531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35472807" }, "bbox": [ -0.0646863, 51.2068859, -0.0646863, 51.2068859 ], "geometry": { "type": "Point", "coordinates": [ -0.0646863, 51.2068859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42442960" }, "bbox": [ 0.0343884, 51.1829732, 0.0343884, 51.1829732 ], "geometry": { "type": "Point", "coordinates": [ 0.0343884, 51.1829732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25553211" }, "bbox": [ -0.2044912, 51.2813658, -0.2044912, 51.2813658 ], "geometry": { "type": "Point", "coordinates": [ -0.2044912, 51.2813658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08526620" }, "bbox": [ -0.4440173, 51.2584759, -0.4440173, 51.2584759 ], "geometry": { "type": "Point", "coordinates": [ -0.4440173, 51.2584759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16445194" }, "bbox": [ -0.3342054, 51.1918127, -0.3342054, 51.1918127 ], "geometry": { "type": "Point", "coordinates": [ -0.3342054, 51.1918127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03343115" }, "bbox": [ -0.5257587, 51.0974802, -0.5257587, 51.0974802 ], "geometry": { "type": "Point", "coordinates": [ -0.5257587, 51.0974802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35482637" }, "bbox": [ -0.0646953, 51.2185901, -0.0646953, 51.2185901 ], "geometry": { "type": "Point", "coordinates": [ -0.0646953, 51.2185901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13412827" }, "bbox": [ -0.3815246, 51.1594585, -0.3815246, 51.1594585 ], "geometry": { "type": "Point", "coordinates": [ -0.3815246, 51.1594585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33493999" }, "bbox": [ -0.0908577, 51.2336247, -0.0908577, 51.2336247 ], "geometry": { "type": "Point", "coordinates": [ -0.0908577, 51.2336247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13390988" }, "bbox": [ -0.3846106, 51.1469682, -0.3846106, 51.1469682 ], "geometry": { "type": "Point", "coordinates": [ -0.3846106, 51.1469682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05691436" }, "bbox": [ -0.4895782, 51.413519, -0.4895782, 51.413519 ], "geometry": { "type": "Point", "coordinates": [ -0.4895782, 51.413519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04473261" }, "bbox": [ -0.5074761, 51.218222, -0.5074761, 51.218222 ], "geometry": { "type": "Point", "coordinates": [ -0.5074761, 51.218222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41525981" }, "bbox": [ 0.02742, 51.2570879, 0.02742, 51.2570879 ], "geometry": { "type": "Point", "coordinates": [ 0.02742, 51.2570879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02392664" }, "bbox": [ -0.5394386, 51.1469482, -0.5394386, 51.1469482 ], "geometry": { "type": "Point", "coordinates": [ -0.5394386, 51.1469482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15374951" }, "bbox": [ -0.351408, 51.1252361, -0.351408, 51.1252361 ], "geometry": { "type": "Point", "coordinates": [ -0.351408, 51.1252361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21460718" }, "bbox": [ -0.2685399, 51.2018592, -0.2685399, 51.2018592 ], "geometry": { "type": "Point", "coordinates": [ -0.2685399, 51.2018592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35482222" }, "bbox": [ -0.0651242, 51.2171656, -0.0651242, 51.2171656 ], "geometry": { "type": "Point", "coordinates": [ -0.0651242, 51.2171656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03357601" }, "bbox": [ -0.5193002, 51.1050903, -0.5193002, 51.1050903 ], "geometry": { "type": "Point", "coordinates": [ -0.5193002, 51.1050903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19567173" }, "bbox": [ -0.2842982, 51.297126, -0.2842982, 51.297126 ], "geometry": { "type": "Point", "coordinates": [ -0.2842982, 51.297126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14386025" }, "bbox": [ -0.3635395, 51.1321843, -0.3635395, 51.1321843 ], "geometry": { "type": "Point", "coordinates": [ -0.3635395, 51.1321843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01483099" }, "bbox": [ -0.5506784, 51.2311275, -0.5506784, 51.2311275 ], "geometry": { "type": "Point", "coordinates": [ -0.5506784, 51.2311275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33420157" }, "bbox": [ -0.0989899, 51.1670342, -0.0989899, 51.1670342 ], "geometry": { "type": "Point", "coordinates": [ -0.0989899, 51.1670342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14408143" }, "bbox": [ -0.359738, 51.1516915, -0.359738, 51.1516915 ], "geometry": { "type": "Point", "coordinates": [ -0.359738, 51.1516915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13482582" }, "bbox": [ -0.3794338, 51.2273675, -0.3794338, 51.2273675 ], "geometry": { "type": "Point", "coordinates": [ -0.3794338, 51.2273675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04353890" }, "bbox": [ -0.5101203, 51.1129304, -0.5101203, 51.1129304 ], "geometry": { "type": "Point", "coordinates": [ -0.5101203, 51.1129304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38596145" }, "bbox": [ -0.0123604, 51.3172193, -0.0123604, 51.3172193 ], "geometry": { "type": "Point", "coordinates": [ -0.0123604, 51.3172193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16538217" }, "bbox": [ -0.327046, 51.265686, -0.327046, 51.265686 ], "geometry": { "type": "Point", "coordinates": [ -0.327046, 51.265686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35437033" }, "bbox": [ -0.0602748, 51.1729781, -0.0602748, 51.1729781 ], "geometry": { "type": "Point", "coordinates": [ -0.0602748, 51.1729781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378697" }, "bbox": [ -0.3598274, 51.1295703, -0.3598274, 51.1295703 ], "geometry": { "type": "Point", "coordinates": [ -0.3598274, 51.1295703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36562510" }, "bbox": [ -0.0474238, 51.287808, -0.0474238, 51.287808 ], "geometry": { "type": "Point", "coordinates": [ -0.0474238, 51.287808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356952" }, "bbox": [ -0.5345773, 51.1098729, -0.5345773, 51.1098729 ], "geometry": { "type": "Point", "coordinates": [ -0.5345773, 51.1098729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26534892" }, "bbox": [ -0.1872513, 51.2706185, -0.1872513, 51.2706185 ], "geometry": { "type": "Point", "coordinates": [ -0.1872513, 51.2706185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06513521" }, "bbox": [ -0.4776038, 51.2502748, -0.4776038, 51.2502748 ], "geometry": { "type": "Point", "coordinates": [ -0.4776038, 51.2502748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00549096" }, "bbox": [ -0.5544941, 51.2849097, -0.5544941, 51.2849097 ], "geometry": { "type": "Point", "coordinates": [ -0.5544941, 51.2849097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37558100" }, "bbox": [ -0.0246618, 51.2774199, -0.0246618, 51.2774199 ], "geometry": { "type": "Point", "coordinates": [ -0.0246618, 51.2774199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467605" }, "bbox": [ -0.4588858, 51.2035525, -0.4588858, 51.2035525 ], "geometry": { "type": "Point", "coordinates": [ -0.4588858, 51.2035525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39480747" }, "bbox": [ -0.0098261, 51.2182861, -0.0098261, 51.2182861 ], "geometry": { "type": "Point", "coordinates": [ -0.0098261, 51.2182861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39554485" }, "bbox": [ -0.0007828, 51.2848264, -0.0007828, 51.2848264 ], "geometry": { "type": "Point", "coordinates": [ -0.0007828, 51.2848264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38425666" }, "bbox": [ -0.0199042, 51.1666871, -0.0199042, 51.1666871 ], "geometry": { "type": "Point", "coordinates": [ -0.0199042, 51.1666871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30496677" }, "bbox": [ -0.1298708, 51.2322334, -0.1298708, 51.2322334 ], "geometry": { "type": "Point", "coordinates": [ -0.1298708, 51.2322334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06558657" }, "bbox": [ -0.4692627, 51.2892013, -0.4692627, 51.2892013 ], "geometry": { "type": "Point", "coordinates": [ -0.4692627, 51.2892013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28539020" }, "bbox": [ -0.1539915, 51.2634082, -0.1539915, 51.2634082 ], "geometry": { "type": "Point", "coordinates": [ -0.1539915, 51.2634082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26530473" }, "bbox": [ -0.1947536, 51.2685586, -0.1947536, 51.2685586 ], "geometry": { "type": "Point", "coordinates": [ -0.1947536, 51.2685586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16459236" }, "bbox": [ -0.3281493, 51.1956328, -0.3281493, 51.1956328 ], "geometry": { "type": "Point", "coordinates": [ -0.3281493, 51.1956328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02537904" }, "bbox": [ -0.5284682, 51.2669496, -0.5284682, 51.2669496 ], "geometry": { "type": "Point", "coordinates": [ -0.5284682, 51.2669496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14599261" }, "bbox": [ -0.3520182, 51.3241045, -0.3520182, 51.3241045 ], "geometry": { "type": "Point", "coordinates": [ -0.3520182, 51.3241045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36443331" }, "bbox": [ -0.050966, 51.1819007, -0.050966, 51.1819007 ], "geometry": { "type": "Point", "coordinates": [ -0.050966, 51.1819007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23436789" }, "bbox": [ -0.2322726, 51.1808745, -0.2322726, 51.1808745 ], "geometry": { "type": "Point", "coordinates": [ -0.2322726, 51.1808745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39464480" }, "bbox": [ -0.0054009, 51.20339, -0.0054009, 51.20339 ], "geometry": { "type": "Point", "coordinates": [ -0.0054009, 51.20339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12571186" }, "bbox": [ -0.3928258, 51.3085984, -0.3928258, 51.3085984 ], "geometry": { "type": "Point", "coordinates": [ -0.3928258, 51.3085984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410443" }, "bbox": [ -0.4562102, 51.1617294, -0.4562102, 51.1617294 ], "geometry": { "type": "Point", "coordinates": [ -0.4562102, 51.1617294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29454414" }, "bbox": [ -0.1488749, 51.1908634, -0.1488749, 51.1908634 ], "geometry": { "type": "Point", "coordinates": [ -0.1488749, 51.1908634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11551075" }, "bbox": [ -0.4081492, 51.2901091, -0.4081492, 51.2901091 ], "geometry": { "type": "Point", "coordinates": [ -0.4081492, 51.2901091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00433774" }, "bbox": [ -0.5654935, 51.1839989, -0.5654935, 51.1839989 ], "geometry": { "type": "Point", "coordinates": [ -0.5654935, 51.1839989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19473151" }, "bbox": [ -0.2930367, 51.2143767, -0.2930367, 51.2143767 ], "geometry": { "type": "Point", "coordinates": [ -0.2930367, 51.2143767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11529687" }, "bbox": [ -0.3966444, 51.2640269, -0.3966444, 51.2640269 ], "geometry": { "type": "Point", "coordinates": [ -0.3966444, 51.2640269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10594561" }, "bbox": [ -0.416218, 51.3248554, -0.416218, 51.3248554 ], "geometry": { "type": "Point", "coordinates": [ -0.416218, 51.3248554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407094" }, "bbox": [ -0.4614553, 51.1574334, -0.4614553, 51.1574334 ], "geometry": { "type": "Point", "coordinates": [ -0.4614553, 51.1574334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21526725" }, "bbox": [ -0.2578856, 51.2565434, -0.2578856, 51.2565434 ], "geometry": { "type": "Point", "coordinates": [ -0.2578856, 51.2565434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07574703" }, "bbox": [ -0.4597542, 51.3022577, -0.4597542, 51.3022577 ], "geometry": { "type": "Point", "coordinates": [ -0.4597542, 51.3022577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40554528" }, "bbox": [ 0.0120777, 51.2793757, 0.0120777, 51.2793757 ], "geometry": { "type": "Point", "coordinates": [ 0.0120777, 51.2793757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14564290" }, "bbox": [ -0.360066, 51.2996945, -0.360066, 51.2996945 ], "geometry": { "type": "Point", "coordinates": [ -0.360066, 51.2996945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417452" }, "bbox": [ -0.5177308, 51.1635864, -0.5177308, 51.1635864 ], "geometry": { "type": "Point", "coordinates": [ -0.5177308, 51.1635864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06514727" }, "bbox": [ -0.4763454, 51.2508209, -0.4763454, 51.2508209 ], "geometry": { "type": "Point", "coordinates": [ -0.4763454, 51.2508209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479792" }, "bbox": [ -0.3125616, 51.2182967, -0.3125616, 51.2182967 ], "geometry": { "type": "Point", "coordinates": [ -0.3125616, 51.2182967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23461194" }, "bbox": [ -0.2391181, 51.2084638, -0.2391181, 51.2084638 ], "geometry": { "type": "Point", "coordinates": [ -0.2391181, 51.2084638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26434251" }, "bbox": [ -0.1930633, 51.1767937, -0.1930633, 51.1767937 ], "geometry": { "type": "Point", "coordinates": [ -0.1930633, 51.1767937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10400942" }, "bbox": [ -0.4270903, 51.1525522, -0.4270903, 51.1525522 ], "geometry": { "type": "Point", "coordinates": [ -0.4270903, 51.1525522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02635829" }, "bbox": [ -0.5278717, 51.3594207, -0.5278717, 51.3594207 ], "geometry": { "type": "Point", "coordinates": [ -0.5278717, 51.3594207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26525049" }, "bbox": [ -0.188548, 51.2571989, -0.188548, 51.2571989 ], "geometry": { "type": "Point", "coordinates": [ -0.188548, 51.2571989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09586204" }, "bbox": [ -0.428684, 51.3109022, -0.428684, 51.3109022 ], "geometry": { "type": "Point", "coordinates": [ -0.428684, 51.3109022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406476" }, "bbox": [ -0.233429, 51.1527295, -0.233429, 51.1527295 ], "geometry": { "type": "Point", "coordinates": [ -0.233429, 51.1527295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02352754" }, "bbox": [ -0.5403781, 51.1100508, -0.5403781, 51.1100508 ], "geometry": { "type": "Point", "coordinates": [ -0.5403781, 51.1100508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13392769" }, "bbox": [ -0.3820332, 51.145332, -0.3820332, 51.145332 ], "geometry": { "type": "Point", "coordinates": [ -0.3820332, 51.145332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34427093" }, "bbox": [ -0.074828, 51.1697369, -0.074828, 51.1697369 ], "geometry": { "type": "Point", "coordinates": [ -0.074828, 51.1697369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24422581" }, "bbox": [ -0.2241347, 51.1710315, -0.2241347, 51.1710315 ], "geometry": { "type": "Point", "coordinates": [ -0.2241347, 51.1710315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15624455" }, "bbox": [ -0.3439637, 51.3501815, -0.3439637, 51.3501815 ], "geometry": { "type": "Point", "coordinates": [ -0.3439637, 51.3501815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27520870" }, "bbox": [ -0.1801284, 51.2595141, -0.1801284, 51.2595141 ], "geometry": { "type": "Point", "coordinates": [ -0.1801284, 51.2595141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05482171" }, "bbox": [ -0.4946962, 51.2278108, -0.4946962, 51.2278108 ], "geometry": { "type": "Point", "coordinates": [ -0.4946962, 51.2278108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30409251" }, "bbox": [ -0.1294468, 51.1489515, -0.1294468, 51.1489515 ], "geometry": { "type": "Point", "coordinates": [ -0.1294468, 51.1489515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361897" }, "bbox": [ -0.4841244, 51.1222165, -0.4841244, 51.1222165 ], "geometry": { "type": "Point", "coordinates": [ -0.4841244, 51.1222165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07363486" }, "bbox": [ -0.4676696, 51.1210793, -0.4676696, 51.1210793 ], "geometry": { "type": "Point", "coordinates": [ -0.4676696, 51.1210793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607525" }, "bbox": [ -0.010157, 51.3242986, -0.010157, 51.3242986 ], "geometry": { "type": "Point", "coordinates": [ -0.010157, 51.3242986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24585801" }, "bbox": [ -0.2138907, 51.3074663, -0.2138907, 51.3074663 ], "geometry": { "type": "Point", "coordinates": [ -0.2138907, 51.3074663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11399999" }, "bbox": [ -0.4002175, 51.1482808, -0.4002175, 51.1482808 ], "geometry": { "type": "Point", "coordinates": [ -0.4002175, 51.1482808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27532130" }, "bbox": [ -0.1781108, 51.2646859, -0.1781108, 51.2646859 ], "geometry": { "type": "Point", "coordinates": [ -0.1781108, 51.2646859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05691120" }, "bbox": [ -0.4901114, 51.4120714, -0.4901114, 51.4120714 ], "geometry": { "type": "Point", "coordinates": [ -0.4901114, 51.4120714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29572007" }, "bbox": [ -0.148091, 51.2979743, -0.148091, 51.2979743 ], "geometry": { "type": "Point", "coordinates": [ -0.148091, 51.2979743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00336763" }, "bbox": [ -0.5638082, 51.0931283, -0.5638082, 51.0931283 ], "geometry": { "type": "Point", "coordinates": [ -0.5638082, 51.0931283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42433868" }, "bbox": [ 0.0354616, 51.1747284, 0.0354616, 51.1747284 ], "geometry": { "type": "Point", "coordinates": [ 0.0354616, 51.1747284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07540181" }, "bbox": [ -0.4668815, 51.2822139, -0.4668815, 51.2822139 ], "geometry": { "type": "Point", "coordinates": [ -0.4668815, 51.2822139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16539301" }, "bbox": [ -0.32515, 51.2641794, -0.32515, 51.2641794 ], "geometry": { "type": "Point", "coordinates": [ -0.32515, 51.2641794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21489380" }, "bbox": [ -0.2553818, 51.2252958, -0.2553818, 51.2252958 ], "geometry": { "type": "Point", "coordinates": [ -0.2553818, 51.2252958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32392870" }, "bbox": [ -0.1104332, 51.1413134, -0.1104332, 51.1413134 ], "geometry": { "type": "Point", "coordinates": [ -0.1104332, 51.1413134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18489031" }, "bbox": [ -0.2988626, 51.2218623, -0.2988626, 51.2218623 ], "geometry": { "type": "Point", "coordinates": [ -0.2988626, 51.2218623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35450744" }, "bbox": [ -0.0684193, 51.19218, -0.0684193, 51.19218 ], "geometry": { "type": "Point", "coordinates": [ -0.0684193, 51.19218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07387454" }, "bbox": [ -0.4613588, 51.136049, -0.4613588, 51.136049 ], "geometry": { "type": "Point", "coordinates": [ -0.4613588, 51.136049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18539687" }, "bbox": [ -0.2960654, 51.2716496, -0.2960654, 51.2716496 ], "geometry": { "type": "Point", "coordinates": [ -0.2960654, 51.2716496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09424202" }, "bbox": [ -0.4361992, 51.1671382, -0.4361992, 51.1671382 ], "geometry": { "type": "Point", "coordinates": [ -0.4361992, 51.1671382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37575318" }, "bbox": [ -0.0286443, 51.2970488, -0.0286443, 51.2970488 ], "geometry": { "type": "Point", "coordinates": [ -0.0286443, 51.2970488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14376451" }, "bbox": [ -0.3632331, 51.1253859, -0.3632331, 51.1253859 ], "geometry": { "type": "Point", "coordinates": [ -0.3632331, 51.1253859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39538584" }, "bbox": [ 0.0028713, 51.2668433, 0.0028713, 51.2668433 ], "geometry": { "type": "Point", "coordinates": [ 0.0028713, 51.2668433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10576445" }, "bbox": [ -0.4141408, 51.3054495, -0.4141408, 51.3054495 ], "geometry": { "type": "Point", "coordinates": [ -0.4141408, 51.3054495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41497633" }, "bbox": [ 0.0284412, 51.2256591, 0.0284412, 51.2256591 ], "geometry": { "type": "Point", "coordinates": [ 0.0284412, 51.2256591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04565268" }, "bbox": [ -0.5022414, 51.2997612, -0.5022414, 51.2997612 ], "geometry": { "type": "Point", "coordinates": [ -0.5022414, 51.2997612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06574419" }, "bbox": [ -0.4745096, 51.3039032, -0.4745096, 51.3039032 ], "geometry": { "type": "Point", "coordinates": [ -0.4745096, 51.3039032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00714585" }, "bbox": [ -0.5556683, 51.4365847, -0.5556683, 51.4365847 ], "geometry": { "type": "Point", "coordinates": [ -0.5556683, 51.4365847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17387610" }, "bbox": [ -0.3185461, 51.1299524, -0.3185461, 51.1299524 ], "geometry": { "type": "Point", "coordinates": [ -0.3185461, 51.1299524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26469911" }, "bbox": [ -0.1838491, 51.200195, -0.1838491, 51.200195 ], "geometry": { "type": "Point", "coordinates": [ -0.1838491, 51.200195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02383925" }, "bbox": [ -0.5378543, 51.1343364, -0.5378543, 51.1343364 ], "geometry": { "type": "Point", "coordinates": [ -0.5378543, 51.1343364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19572205" }, "bbox": [ -0.2911892, 51.3002708, -0.2911892, 51.3002708 ], "geometry": { "type": "Point", "coordinates": [ -0.2911892, 51.3002708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09361088" }, "bbox": [ -0.4428336, 51.12062, -0.4428336, 51.12062 ], "geometry": { "type": "Point", "coordinates": [ -0.4428336, 51.12062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30525475" }, "bbox": [ -0.1305663, 51.2590541, -0.1305663, 51.2590541 ], "geometry": { "type": "Point", "coordinates": [ -0.1305663, 51.2590541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16436541" }, "bbox": [ -0.3325015, 51.178034, -0.3325015, 51.178034 ], "geometry": { "type": "Point", "coordinates": [ -0.3325015, 51.178034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13418221" }, "bbox": [ -0.3737688, 51.1588988, -0.3737688, 51.1588988 ], "geometry": { "type": "Point", "coordinates": [ -0.3737688, 51.1588988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21486860" }, "bbox": [ -0.2589242, 51.2235655, -0.2589242, 51.2235655 ], "geometry": { "type": "Point", "coordinates": [ -0.2589242, 51.2235655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10549578" }, "bbox": [ -0.4103511, 51.2814306, -0.4103511, 51.2814306 ], "geometry": { "type": "Point", "coordinates": [ -0.4103511, 51.2814306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33421579" }, "bbox": [ -0.0967798, 51.1689992, -0.0967798, 51.1689992 ], "geometry": { "type": "Point", "coordinates": [ -0.0967798, 51.1689992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11408286" }, "bbox": [ -0.4026207, 51.1561079, -0.4026207, 51.1561079 ], "geometry": { "type": "Point", "coordinates": [ -0.4026207, 51.1561079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17404176" }, "bbox": [ -0.322454, 51.1540813, -0.322454, 51.1540813 ], "geometry": { "type": "Point", "coordinates": [ -0.322454, 51.1540813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549835" }, "bbox": [ -0.2812978, 51.2756747, -0.2812978, 51.2756747 ], "geometry": { "type": "Point", "coordinates": [ -0.2812978, 51.2756747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13476339" }, "bbox": [ -0.3748282, 51.2144095, -0.3748282, 51.2144095 ], "geometry": { "type": "Point", "coordinates": [ -0.3748282, 51.2144095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34506062" }, "bbox": [ -0.0733525, 51.2389229, -0.0733525, 51.2389229 ], "geometry": { "type": "Point", "coordinates": [ -0.0733525, 51.2389229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35572820" }, "bbox": [ -0.0603011, 51.2980895, -0.0603011, 51.2980895 ], "geometry": { "type": "Point", "coordinates": [ -0.0603011, 51.2980895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39432144" }, "bbox": [ -0.0099418, 51.1732657, -0.0099418, 51.1732657 ], "geometry": { "type": "Point", "coordinates": [ -0.0099418, 51.1732657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27421588" }, "bbox": [ -0.1825875, 51.1711742, -0.1825875, 51.1711742 ], "geometry": { "type": "Point", "coordinates": [ -0.1825875, 51.1711742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36493627" }, "bbox": [ -0.0485127, 51.2264137, -0.0485127, 51.2264137 ], "geometry": { "type": "Point", "coordinates": [ -0.0485127, 51.2264137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26462823" }, "bbox": [ -0.1938922, 51.2013632, -0.1938922, 51.2013632 ], "geometry": { "type": "Point", "coordinates": [ -0.1938922, 51.2013632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03575742" }, "bbox": [ -0.5156242, 51.3064931, -0.5156242, 51.3064931 ], "geometry": { "type": "Point", "coordinates": [ -0.5156242, 51.3064931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38455724" }, "bbox": [ -0.0185258, 51.1895841, -0.0185258, 51.1895841 ], "geometry": { "type": "Point", "coordinates": [ -0.0185258, 51.1895841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16458507" }, "bbox": [ -0.3289065, 51.1930772, -0.3289065, 51.1930772 ], "geometry": { "type": "Point", "coordinates": [ -0.3289065, 51.1930772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19542905" }, "bbox": [ -0.2912091, 51.273161, -0.2912091, 51.273161 ], "geometry": { "type": "Point", "coordinates": [ -0.2912091, 51.273161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607338" }, "bbox": [ -0.0102277, 51.3255009, -0.0102277, 51.3255009 ], "geometry": { "type": "Point", "coordinates": [ -0.0102277, 51.3255009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08364857" }, "bbox": [ -0.4515084, 51.1180208, -0.4515084, 51.1180208 ], "geometry": { "type": "Point", "coordinates": [ -0.4515084, 51.1180208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01560912" }, "bbox": [ -0.5514371, 51.2953322, -0.5514371, 51.2953322 ], "geometry": { "type": "Point", "coordinates": [ -0.5514371, 51.2953322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24413953" }, "bbox": [ -0.2224019, 51.1594146, -0.2224019, 51.1594146 ], "geometry": { "type": "Point", "coordinates": [ -0.2224019, 51.1594146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14410339" }, "bbox": [ -0.3706086, 51.1604702, -0.3706086, 51.1604702 ], "geometry": { "type": "Point", "coordinates": [ -0.3706086, 51.1604702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03332937" }, "bbox": [ -0.5264797, 51.0904132, -0.5264797, 51.0904132 ], "geometry": { "type": "Point", "coordinates": [ -0.5264797, 51.0904132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412883" }, "bbox": [ 0.0333569, 51.1581147, 0.0333569, 51.1581147 ], "geometry": { "type": "Point", "coordinates": [ 0.0333569, 51.1581147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01629727" }, "bbox": [ -0.5370429, 51.3503844, -0.5370429, 51.3503844 ], "geometry": { "type": "Point", "coordinates": [ -0.5370429, 51.3503844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36553892" }, "bbox": [ -0.0456613, 51.2861158, -0.0456613, 51.2861158 ], "geometry": { "type": "Point", "coordinates": [ -0.0456613, 51.2861158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34505531" }, "bbox": [ -0.0734886, 51.2359615, -0.0734886, 51.2359615 ], "geometry": { "type": "Point", "coordinates": [ -0.0734886, 51.2359615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27458037" }, "bbox": [ -0.1724891, 51.1932805, -0.1724891, 51.1932805 ], "geometry": { "type": "Point", "coordinates": [ -0.1724891, 51.1932805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22460809" }, "bbox": [ -0.2541281, 51.2010221, -0.2541281, 51.2010221 ], "geometry": { "type": "Point", "coordinates": [ -0.2541281, 51.2010221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21473008" }, "bbox": [ -0.2648514, 51.2100268, -0.2648514, 51.2100268 ], "geometry": { "type": "Point", "coordinates": [ -0.2648514, 51.2100268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38552025" }, "bbox": [ -0.0201094, 51.2794218, -0.0201094, 51.2794218 ], "geometry": { "type": "Point", "coordinates": [ -0.0201094, 51.2794218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19456390" }, "bbox": [ -0.2891608, 51.1998459, -0.2891608, 51.1998459 ], "geometry": { "type": "Point", "coordinates": [ -0.2891608, 51.1998459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33469072" }, "bbox": [ -0.0838705, 51.2038973, -0.0838705, 51.2038973 ], "geometry": { "type": "Point", "coordinates": [ -0.0838705, 51.2038973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21565339" }, "bbox": [ -0.2582804, 51.293679, -0.2582804, 51.293679 ], "geometry": { "type": "Point", "coordinates": [ -0.2582804, 51.293679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458122" }, "bbox": [ -0.2152308, 51.1926156, -0.2152308, 51.1926156 ], "geometry": { "type": "Point", "coordinates": [ -0.2152308, 51.1926156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17431881" }, "bbox": [ -0.3249764, 51.1814569, -0.3249764, 51.1814569 ], "geometry": { "type": "Point", "coordinates": [ -0.3249764, 51.1814569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40562625" }, "bbox": [ 0.0099336, 51.2882703, 0.0099336, 51.2882703 ], "geometry": { "type": "Point", "coordinates": [ 0.0099336, 51.2882703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08374121" }, "bbox": [ -0.452114, 51.1239792, -0.452114, 51.1239792 ], "geometry": { "type": "Point", "coordinates": [ -0.452114, 51.1239792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13452013" }, "bbox": [ -0.3814407, 51.1941899, -0.3814407, 51.1941899 ], "geometry": { "type": "Point", "coordinates": [ -0.3814407, 51.1941899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23403823" }, "bbox": [ -0.2374185, 51.1479927, -0.2374185, 51.1479927 ], "geometry": { "type": "Point", "coordinates": [ -0.2374185, 51.1479927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24480340" }, "bbox": [ -0.2253613, 51.2214129, -0.2253613, 51.2214129 ], "geometry": { "type": "Point", "coordinates": [ -0.2253613, 51.2214129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25413033" }, "bbox": [ -0.2095957, 51.1574896, -0.2095957, 51.1574896 ], "geometry": { "type": "Point", "coordinates": [ -0.2095957, 51.1574896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13571945" }, "bbox": [ -0.3775288, 51.3049824, -0.3775288, 51.3049824 ], "geometry": { "type": "Point", "coordinates": [ -0.3775288, 51.3049824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16428889" }, "bbox": [ -0.3294305, 51.1733257, -0.3294305, 51.1733257 ], "geometry": { "type": "Point", "coordinates": [ -0.3294305, 51.1733257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06404027" }, "bbox": [ -0.4801701, 51.1518199, -0.4801701, 51.1518199 ], "geometry": { "type": "Point", "coordinates": [ -0.4801701, 51.1518199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13413917" }, "bbox": [ -0.3799442, 51.1585565, -0.3799442, 51.1585565 ], "geometry": { "type": "Point", "coordinates": [ -0.3799442, 51.1585565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08380669" }, "bbox": [ -0.4567164, 51.1373161, -0.4567164, 51.1373161 ], "geometry": { "type": "Point", "coordinates": [ -0.4567164, 51.1373161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26547867" }, "bbox": [ -0.1837453, 51.2771128, -0.1837453, 51.2771128 ], "geometry": { "type": "Point", "coordinates": [ -0.1837453, 51.2771128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22480538" }, "bbox": [ -0.2542831, 51.2215385, -0.2542831, 51.2215385 ], "geometry": { "type": "Point", "coordinates": [ -0.2542831, 51.2215385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16446699" }, "bbox": [ -0.3320025, 51.1921563, -0.3320025, 51.1921563 ], "geometry": { "type": "Point", "coordinates": [ -0.3320025, 51.1921563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25580960" }, "bbox": [ -0.2065802, 51.3128729, -0.2065802, 51.3128729 ], "geometry": { "type": "Point", "coordinates": [ -0.2065802, 51.3128729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36466394" }, "bbox": [ -0.0454946, 51.2053519, -0.0454946, 51.2053519 ], "geometry": { "type": "Point", "coordinates": [ -0.0454946, 51.2053519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04528752" }, "bbox": [ -0.4982334, 51.2623939, -0.4982334, 51.2623939 ], "geometry": { "type": "Point", "coordinates": [ -0.4982334, 51.2623939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06419481" }, "bbox": [ -0.4719116, 51.165626, -0.4719116, 51.165626 ], "geometry": { "type": "Point", "coordinates": [ -0.4719116, 51.165626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33443801" }, "bbox": [ -0.0936376, 51.1786859, -0.0936376, 51.1786859 ], "geometry": { "type": "Point", "coordinates": [ -0.0936376, 51.1786859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35416793" }, "bbox": [ -0.0610007, 51.1606803, -0.0610007, 51.1606803 ], "geometry": { "type": "Point", "coordinates": [ -0.0610007, 51.1606803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02481439" }, "bbox": [ -0.5388855, 51.2255851, -0.5388855, 51.2255851 ], "geometry": { "type": "Point", "coordinates": [ -0.5388855, 51.2255851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09357336" }, "bbox": [ -0.4340982, 51.1069087, -0.4340982, 51.1069087 ], "geometry": { "type": "Point", "coordinates": [ -0.4340982, 51.1069087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11628162" }, "bbox": [ -0.3957218, 51.3517144, -0.3957218, 51.3517144 ], "geometry": { "type": "Point", "coordinates": [ -0.3957218, 51.3517144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04510632" }, "bbox": [ -0.5103096, 51.2515677, -0.5103096, 51.2515677 ], "geometry": { "type": "Point", "coordinates": [ -0.5103096, 51.2515677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08417282" }, "bbox": [ -0.4464214, 51.165479, -0.4464214, 51.165479 ], "geometry": { "type": "Point", "coordinates": [ -0.4464214, 51.165479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39597378" }, "bbox": [ 0.0033487, 51.3199708, 0.0033487, 51.3199708 ], "geometry": { "type": "Point", "coordinates": [ 0.0033487, 51.3199708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16457927" }, "bbox": [ -0.3299056, 51.1947529, -0.3299056, 51.1947529 ], "geometry": { "type": "Point", "coordinates": [ -0.3299056, 51.1947529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04699450" }, "bbox": [ -0.4922589, 51.4148694, -0.4922589, 51.4148694 ], "geometry": { "type": "Point", "coordinates": [ -0.4922589, 51.4148694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06418205" }, "bbox": [ -0.4737932, 51.1587207, -0.4737932, 51.1587207 ], "geometry": { "type": "Point", "coordinates": [ -0.4737932, 51.1587207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41553929" }, "bbox": [ 0.0258966, 51.2792913, 0.0258966, 51.2792913 ], "geometry": { "type": "Point", "coordinates": [ 0.0258966, 51.2792913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42403943" }, "bbox": [ 0.0342776, 51.145436, 0.0342776, 51.145436 ], "geometry": { "type": "Point", "coordinates": [ 0.0342776, 51.145436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05347631" }, "bbox": [ -0.4910035, 51.0983413, -0.4910035, 51.0983413 ], "geometry": { "type": "Point", "coordinates": [ -0.4910035, 51.0983413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23466550" }, "bbox": [ -0.2315043, 51.2043108, -0.2315043, 51.2043108 ], "geometry": { "type": "Point", "coordinates": [ -0.2315043, 51.2043108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19579658" }, "bbox": [ -0.2803639, 51.3047674, -0.2803639, 51.3047674 ], "geometry": { "type": "Point", "coordinates": [ -0.2803639, 51.3047674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30469544" }, "bbox": [ -0.1269793, 51.2021819, -0.1269793, 51.2021819 ], "geometry": { "type": "Point", "coordinates": [ -0.1269793, 51.2021819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24427331" }, "bbox": [ -0.2172933, 51.1665315, -0.2172933, 51.1665315 ], "geometry": { "type": "Point", "coordinates": [ -0.2172933, 51.1665315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19483396" }, "bbox": [ -0.2924444, 51.2274321, -0.2924444, 51.2274321 ], "geometry": { "type": "Point", "coordinates": [ -0.2924444, 51.2274321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27545965" }, "bbox": [ -0.1721873, 51.2767725, -0.1721873, 51.2767725 ], "geometry": { "type": "Point", "coordinates": [ -0.1721873, 51.2767725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10398669" }, "bbox": [ -0.4167711, 51.1459458, -0.4167711, 51.1459458 ], "geometry": { "type": "Point", "coordinates": [ -0.4167711, 51.1459458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35515462" }, "bbox": [ -0.0583233, 51.247898, -0.0583233, 51.247898 ], "geometry": { "type": "Point", "coordinates": [ -0.0583233, 51.247898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10429540" }, "bbox": [ -0.4141752, 51.1701102, -0.4141752, 51.1701102 ], "geometry": { "type": "Point", "coordinates": [ -0.4141752, 51.1701102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10535294" }, "bbox": [ -0.4169616, 51.2739185, -0.4169616, 51.2739185 ], "geometry": { "type": "Point", "coordinates": [ -0.4169616, 51.2739185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33444752" }, "bbox": [ -0.0916402, 51.184249, -0.0916402, 51.184249 ], "geometry": { "type": "Point", "coordinates": [ -0.0916402, 51.184249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24435917" }, "bbox": [ -0.2190678, 51.1742113, -0.2190678, 51.1742113 ], "geometry": { "type": "Point", "coordinates": [ -0.2190678, 51.1742113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41540490" }, "bbox": [ 0.0207146, 51.2757402, 0.0207146, 51.2757402 ], "geometry": { "type": "Point", "coordinates": [ 0.0207146, 51.2757402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38571210" }, "bbox": [ -0.0210521, 51.2960384, -0.0210521, 51.2960384 ], "geometry": { "type": "Point", "coordinates": [ -0.0210521, 51.2960384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19547748" }, "bbox": [ -0.2842545, 51.2769413, -0.2842545, 51.2769413 ], "geometry": { "type": "Point", "coordinates": [ -0.2842545, 51.2769413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26472630" }, "bbox": [ -0.193756, 51.2109905, -0.193756, 51.2109905 ], "geometry": { "type": "Point", "coordinates": [ -0.193756, 51.2109905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35494403" }, "bbox": [ -0.0616513, 51.2244204, -0.0616513, 51.2244204 ], "geometry": { "type": "Point", "coordinates": [ -0.0616513, 51.2244204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18428778" }, "bbox": [ -0.3010693, 51.1720321, -0.3010693, 51.1720321 ], "geometry": { "type": "Point", "coordinates": [ -0.3010693, 51.1720321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06556937" }, "bbox": [ -0.471582, 51.287426, -0.471582, 51.287426 ], "geometry": { "type": "Point", "coordinates": [ -0.471582, 51.287426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02450798" }, "bbox": [ -0.540251, 51.203923, -0.540251, 51.203923 ], "geometry": { "type": "Point", "coordinates": [ -0.540251, 51.203923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04433532" }, "bbox": [ -0.5085706, 51.1796204, -0.5085706, 51.1796204 ], "geometry": { "type": "Point", "coordinates": [ -0.5085706, 51.1796204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39431747" }, "bbox": [ -0.010442, 51.1736269, -0.010442, 51.1736269 ], "geometry": { "type": "Point", "coordinates": [ -0.010442, 51.1736269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12395182" }, "bbox": [ -0.3928309, 51.1466176, -0.3928309, 51.1466176 ], "geometry": { "type": "Point", "coordinates": [ -0.3928309, 51.1466176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21459480" }, "bbox": [ -0.256173, 51.1983803, -0.256173, 51.1983803 ], "geometry": { "type": "Point", "coordinates": [ -0.256173, 51.1983803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01360282" }, "bbox": [ -0.5578833, 51.1217722, -0.5578833, 51.1217722 ], "geometry": { "type": "Point", "coordinates": [ -0.5578833, 51.1217722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22483697" }, "bbox": [ -0.2489688, 51.2267953, -0.2489688, 51.2267953 ], "geometry": { "type": "Point", "coordinates": [ -0.2489688, 51.2267953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10368775" }, "bbox": [ -0.4171504, 51.1193957, -0.4171504, 51.1193957 ], "geometry": { "type": "Point", "coordinates": [ -0.4171504, 51.1193957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40542848" }, "bbox": [ 0.0094573, 51.2722532, 0.0094573, 51.2722532 ], "geometry": { "type": "Point", "coordinates": [ 0.0094573, 51.2722532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41483354" }, "bbox": [ 0.0225452, 51.2185385, 0.0225452, 51.2185385 ], "geometry": { "type": "Point", "coordinates": [ 0.0225452, 51.2185385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469322" }, "bbox": [ -0.2272396, 51.2018189, -0.2272396, 51.2018189 ], "geometry": { "type": "Point", "coordinates": [ -0.2272396, 51.2018189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42538615" }, "bbox": [ 0.0461283, 51.2596272, 0.0461283, 51.2596272 ], "geometry": { "type": "Point", "coordinates": [ 0.0461283, 51.2596272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431414" }, "bbox": [ -0.5402325, 51.1784409, -0.5402325, 51.1784409 ], "geometry": { "type": "Point", "coordinates": [ -0.5402325, 51.1784409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06557636" }, "bbox": [ -0.4707978, 51.2879026, -0.4707978, 51.2879026 ], "geometry": { "type": "Point", "coordinates": [ -0.4707978, 51.2879026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37467921" }, "bbox": [ -0.0293598, 51.1984871, -0.0293598, 51.1984871 ], "geometry": { "type": "Point", "coordinates": [ -0.0293598, 51.1984871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16379166" }, "bbox": [ -0.3308822, 51.1261556, -0.3308822, 51.1261556 ], "geometry": { "type": "Point", "coordinates": [ -0.3308822, 51.1261556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09425199" }, "bbox": [ -0.4348963, 51.1755874, -0.4348963, 51.1755874 ], "geometry": { "type": "Point", "coordinates": [ -0.4348963, 51.1755874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24431755" }, "bbox": [ -0.2250785, 51.1776832, -0.2250785, 51.1776832 ], "geometry": { "type": "Point", "coordinates": [ -0.2250785, 51.1776832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36603357" }, "bbox": [ -0.0447682, 51.3279904, -0.0447682, 51.3279904 ], "geometry": { "type": "Point", "coordinates": [ -0.0447682, 51.3279904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448720" }, "bbox": [ -0.3281353, 51.1849439, -0.3281353, 51.1849439 ], "geometry": { "type": "Point", "coordinates": [ -0.3281353, 51.1849439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14584150" }, "bbox": [ -0.3592475, 51.3140049, -0.3592475, 51.3140049 ], "geometry": { "type": "Point", "coordinates": [ -0.3592475, 51.3140049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40428728" }, "bbox": [ 0.0132784, 51.1624873, 0.0132784, 51.1624873 ], "geometry": { "type": "Point", "coordinates": [ 0.0132784, 51.1624873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12498357" }, "bbox": [ -0.3852091, 51.2342968, -0.3852091, 51.2342968 ], "geometry": { "type": "Point", "coordinates": [ -0.3852091, 51.2342968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30466696" }, "bbox": [ -0.1310095, 51.206989, -0.1310095, 51.206989 ], "geometry": { "type": "Point", "coordinates": [ -0.1310095, 51.206989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35425809" }, "bbox": [ -0.062281, 51.1619919, -0.062281, 51.1619919 ], "geometry": { "type": "Point", "coordinates": [ -0.062281, 51.1619919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16527502" }, "bbox": [ -0.3285168, 51.2553605, -0.3285168, 51.2553605 ], "geometry": { "type": "Point", "coordinates": [ -0.3285168, 51.2553605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35483361" }, "bbox": [ -0.0633854, 51.2208214, -0.0633854, 51.2208214 ], "geometry": { "type": "Point", "coordinates": [ -0.0633854, 51.2208214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11561266" }, "bbox": [ -0.4073344, 51.2982531, -0.4073344, 51.2982531 ], "geometry": { "type": "Point", "coordinates": [ -0.4073344, 51.2982531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26466464" }, "bbox": [ -0.1885017, 51.2049969, -0.1885017, 51.2049969 ], "geometry": { "type": "Point", "coordinates": [ -0.1885017, 51.2049969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00439085" }, "bbox": [ -0.557649, 51.1850641, -0.557649, 51.1850641 ], "geometry": { "type": "Point", "coordinates": [ -0.557649, 51.1850641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05695069" }, "bbox": [ -0.4842119, 51.4164046, -0.4842119, 51.4164046 ], "geometry": { "type": "Point", "coordinates": [ -0.4842119, 51.4164046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17373669" }, "bbox": [ -0.3244358, 51.126382, -0.3244358, 51.126382 ], "geometry": { "type": "Point", "coordinates": [ -0.3244358, 51.126382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18396495" }, "bbox": [ -0.3054597, 51.1465493, -0.3054597, 51.1465493 ], "geometry": { "type": "Point", "coordinates": [ -0.3054597, 51.1465493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14564274" }, "bbox": [ -0.3601315, 51.2983214, -0.3601315, 51.2983214 ], "geometry": { "type": "Point", "coordinates": [ -0.3601315, 51.2983214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19393420" }, "bbox": [ -0.2969935, 51.1392068, -0.2969935, 51.1392068 ], "geometry": { "type": "Point", "coordinates": [ -0.2969935, 51.1392068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00600972" }, "bbox": [ -0.5647734, 51.3369499, -0.5647734, 51.3369499 ], "geometry": { "type": "Point", "coordinates": [ -0.5647734, 51.3369499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10396175" }, "bbox": [ -0.4201692, 51.146527, -0.4201692, 51.146527 ], "geometry": { "type": "Point", "coordinates": [ -0.4201692, 51.146527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05489818" }, "bbox": [ -0.4837352, 51.2230027, -0.4837352, 51.2230027 ], "geometry": { "type": "Point", "coordinates": [ -0.4837352, 51.2230027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03534842" }, "bbox": [ -0.5181328, 51.2704674, -0.5181328, 51.2704674 ], "geometry": { "type": "Point", "coordinates": [ -0.5181328, 51.2704674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02681109" }, "bbox": [ -0.5332281, 51.4026626, -0.5332281, 51.4026626 ], "geometry": { "type": "Point", "coordinates": [ -0.5332281, 51.4026626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29517156" }, "bbox": [ -0.1427283, 51.2484765, -0.1427283, 51.2484765 ], "geometry": { "type": "Point", "coordinates": [ -0.1427283, 51.2484765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14428938" }, "bbox": [ -0.3579988, 51.1691386, -0.3579988, 51.1691386 ], "geometry": { "type": "Point", "coordinates": [ -0.3579988, 51.1691386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31443579" }, "bbox": [ -0.1220095, 51.1872463, -0.1220095, 51.1872463 ], "geometry": { "type": "Point", "coordinates": [ -0.1220095, 51.1872463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19470494" }, "bbox": [ -0.2968938, 51.2181499, -0.2968938, 51.2181499 ], "geometry": { "type": "Point", "coordinates": [ -0.2968938, 51.2181499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10355085" }, "bbox": [ -0.4228255, 51.1113449, -0.4228255, 51.1113449 ], "geometry": { "type": "Point", "coordinates": [ -0.4228255, 51.1113449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19547110" }, "bbox": [ -0.2852328, 51.2735239, -0.2852328, 51.2735239 ], "geometry": { "type": "Point", "coordinates": [ -0.2852328, 51.2735239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34559550" }, "bbox": [ -0.0661633, 51.2826649, -0.0661633, 51.2826649 ], "geometry": { "type": "Point", "coordinates": [ -0.0661633, 51.2826649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39564165" }, "bbox": [ -0.0019992, 51.2919684, -0.0019992, 51.2919684 ], "geometry": { "type": "Point", "coordinates": [ -0.0019992, 51.2919684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34470874" }, "bbox": [ -0.081789, 51.213213, -0.081789, 51.213213 ], "geometry": { "type": "Point", "coordinates": [ -0.081789, 51.213213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37450676" }, "bbox": [ -0.0396295, 51.1947234, -0.0396295, 51.1947234 ], "geometry": { "type": "Point", "coordinates": [ -0.0396295, 51.1947234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23462220" }, "bbox": [ -0.2375436, 51.2017991, -0.2375436, 51.2017991 ], "geometry": { "type": "Point", "coordinates": [ -0.2375436, 51.2017991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34493840" }, "bbox": [ -0.0769048, 51.2280272, -0.0769048, 51.2280272 ], "geometry": { "type": "Point", "coordinates": [ -0.0769048, 51.2280272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472451" }, "bbox": [ 0.0207272, 51.2093697, 0.0207272, 51.2093697 ], "geometry": { "type": "Point", "coordinates": [ 0.0207272, 51.2093697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21401739" }, "bbox": [ -0.2684028, 51.1491602, -0.2684028, 51.1491602 ], "geometry": { "type": "Point", "coordinates": [ -0.2684028, 51.1491602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33464967" }, "bbox": [ -0.0903697, 51.2036775, -0.0903697, 51.2036775 ], "geometry": { "type": "Point", "coordinates": [ -0.0903697, 51.2036775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07562852" }, "bbox": [ -0.462523, 51.2977348, -0.462523, 51.2977348 ], "geometry": { "type": "Point", "coordinates": [ -0.462523, 51.2977348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13571047" }, "bbox": [ -0.3787704, 51.3051502, -0.3787704, 51.3051502 ], "geometry": { "type": "Point", "coordinates": [ -0.3787704, 51.3051502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14597731" }, "bbox": [ -0.3542334, 51.321271, -0.3542334, 51.321271 ], "geometry": { "type": "Point", "coordinates": [ -0.3542334, 51.321271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06459499" }, "bbox": [ -0.4710325, 51.2031638, -0.4710325, 51.2031638 ], "geometry": { "type": "Point", "coordinates": [ -0.4710325, 51.2031638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36449833" }, "bbox": [ -0.0414217, 51.1818171, -0.0414217, 51.1818171 ], "geometry": { "type": "Point", "coordinates": [ -0.0414217, 51.1818171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455829" }, "bbox": [ -0.1755093, 51.1926224, -0.1755093, 51.1926224 ], "geometry": { "type": "Point", "coordinates": [ -0.1755093, 51.1926224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09478584" }, "bbox": [ -0.4285168, 51.2196436, -0.4285168, 51.2196436 ], "geometry": { "type": "Point", "coordinates": [ -0.4285168, 51.2196436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06654272" }, "bbox": [ -0.4722877, 51.380473, -0.4722877, 51.380473 ], "geometry": { "type": "Point", "coordinates": [ -0.4722877, 51.380473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06523040" }, "bbox": [ -0.4780077, 51.2607917, -0.4780077, 51.2607917 ], "geometry": { "type": "Point", "coordinates": [ -0.4780077, 51.2607917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14507415" }, "bbox": [ -0.357613, 51.2390163, -0.357613, 51.2390163 ], "geometry": { "type": "Point", "coordinates": [ -0.357613, 51.2390163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00695755" }, "bbox": [ -0.5552585, 51.4160541, -0.5552585, 51.4160541 ], "geometry": { "type": "Point", "coordinates": [ -0.5552585, 51.4160541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27454291" }, "bbox": [ -0.1775437, 51.1981197, -0.1775437, 51.1981197 ], "geometry": { "type": "Point", "coordinates": [ -0.1775437, 51.1981197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23439706" }, "bbox": [ -0.2279534, 51.1732756, -0.2279534, 51.1732756 ], "geometry": { "type": "Point", "coordinates": [ -0.2279534, 51.1732756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04488972" }, "bbox": [ -0.499244, 51.2280826, -0.499244, 51.2280826 ], "geometry": { "type": "Point", "coordinates": [ -0.499244, 51.2280826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14574461" }, "bbox": [ -0.3599349, 51.3064897, -0.3599349, 51.3064897 ], "geometry": { "type": "Point", "coordinates": [ -0.3599349, 51.3064897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16433594" }, "bbox": [ -0.3370949, 51.1828747, -0.3370949, 51.1828747 ], "geometry": { "type": "Point", "coordinates": [ -0.3370949, 51.1828747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596074" }, "bbox": [ -0.414058, 51.3260873, -0.414058, 51.3260873 ], "geometry": { "type": "Point", "coordinates": [ -0.414058, 51.3260873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23499435" }, "bbox": [ -0.2262742, 51.229819, -0.2262742, 51.229819 ], "geometry": { "type": "Point", "coordinates": [ -0.2262742, 51.229819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04346561" }, "bbox": [ -0.5067337, 51.1012872, -0.5067337, 51.1012872 ], "geometry": { "type": "Point", "coordinates": [ -0.5067337, 51.1012872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40549312" }, "bbox": [ 0.018489, 51.2687923, 0.018489, 51.2687923 ], "geometry": { "type": "Point", "coordinates": [ 0.018489, 51.2687923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22564716" }, "bbox": [ -0.2449413, 51.2914578, -0.2449413, 51.2914578 ], "geometry": { "type": "Point", "coordinates": [ -0.2449413, 51.2914578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15492498" }, "bbox": [ -0.3504998, 51.237337, -0.3504998, 51.237337 ], "geometry": { "type": "Point", "coordinates": [ -0.3504998, 51.237337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10366708" }, "bbox": [ -0.4203963, 51.1134132, -0.4203963, 51.1134132 ], "geometry": { "type": "Point", "coordinates": [ -0.4203963, 51.1134132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22409704" }, "bbox": [ -0.2435472, 51.1465965, -0.2435472, 51.1465965 ], "geometry": { "type": "Point", "coordinates": [ -0.2435472, 51.1465965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24421451" }, "bbox": [ -0.2257372, 51.1684253, -0.2257372, 51.1684253 ], "geometry": { "type": "Point", "coordinates": [ -0.2257372, 51.1684253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24450902" }, "bbox": [ -0.2256497, 51.1908899, -0.2256497, 51.1908899 ], "geometry": { "type": "Point", "coordinates": [ -0.2256497, 51.1908899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10400324" }, "bbox": [ -0.4277586, 51.1506846, -0.4277586, 51.1506846 ], "geometry": { "type": "Point", "coordinates": [ -0.4277586, 51.1506846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08473918" }, "bbox": [ -0.4496916, 51.21344, -0.4496916, 51.21344 ], "geometry": { "type": "Point", "coordinates": [ -0.4496916, 51.21344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32546607" }, "bbox": [ -0.0997811, 51.2703511, -0.0997811, 51.2703511 ], "geometry": { "type": "Point", "coordinates": [ -0.0997811, 51.2703511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35524923" }, "bbox": [ -0.0602864, 51.2529913, -0.0602864, 51.2529913 ], "geometry": { "type": "Point", "coordinates": [ -0.0602864, 51.2529913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23437895" }, "bbox": [ -0.2304284, 51.1814149, -0.2304284, 51.1814149 ], "geometry": { "type": "Point", "coordinates": [ -0.2304284, 51.1814149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14408449" }, "bbox": [ -0.3593256, 51.1522099, -0.3593256, 51.1522099 ], "geometry": { "type": "Point", "coordinates": [ -0.3593256, 51.1522099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33527107" }, "bbox": [ -0.0853331, 51.2521869, -0.0853331, 51.2521869 ], "geometry": { "type": "Point", "coordinates": [ -0.0853331, 51.2521869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04621291" }, "bbox": [ -0.5060173, 51.3557479, -0.5060173, 51.3557479 ], "geometry": { "type": "Point", "coordinates": [ -0.5060173, 51.3557479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35478733" }, "bbox": [ -0.0563983, 51.2090298, -0.0563983, 51.2090298 ], "geometry": { "type": "Point", "coordinates": [ -0.0563983, 51.2090298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559702" }, "bbox": [ -0.5534975, 51.2854256, -0.5534975, 51.2854256 ], "geometry": { "type": "Point", "coordinates": [ -0.5534975, 51.2854256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03333856" }, "bbox": [ -0.5251047, 51.0921116, -0.5251047, 51.0921116 ], "geometry": { "type": "Point", "coordinates": [ -0.5251047, 51.0921116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04339560" }, "bbox": [ -0.5026713, 51.0920509, -0.5026713, 51.0920509 ], "geometry": { "type": "Point", "coordinates": [ -0.5026713, 51.0920509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20413242" }, "bbox": [ -0.2808152, 51.1596319, -0.2808152, 51.1596319 ], "geometry": { "type": "Point", "coordinates": [ -0.2808152, 51.1596319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07476212" }, "bbox": [ -0.4605974, 51.2132421, -0.4605974, 51.2132421 ], "geometry": { "type": "Point", "coordinates": [ -0.4605974, 51.2132421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35444764" }, "bbox": [ -0.0631118, 51.1849373, -0.0631118, 51.1849373 ], "geometry": { "type": "Point", "coordinates": [ -0.0631118, 51.1849373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04344304" }, "bbox": [ -0.5101416, 51.0962995, -0.5101416, 51.0962995 ], "geometry": { "type": "Point", "coordinates": [ -0.5101416, 51.0962995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30512409" }, "bbox": [ -0.1352349, 51.2441722, -0.1352349, 51.2441722 ], "geometry": { "type": "Point", "coordinates": [ -0.1352349, 51.2441722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22554794" }, "bbox": [ -0.2451634, 51.2895028, -0.2451634, 51.2895028 ], "geometry": { "type": "Point", "coordinates": [ -0.2451634, 51.2895028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29444669" }, "bbox": [ -0.1490066, 51.1866917, -0.1490066, 51.1866917 ], "geometry": { "type": "Point", "coordinates": [ -0.1490066, 51.1866917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12668287" }, "bbox": [ -0.3799934, 51.3896504, -0.3799934, 51.3896504 ], "geometry": { "type": "Point", "coordinates": [ -0.3799934, 51.3896504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29455135" }, "bbox": [ -0.1478866, 51.1927382, -0.1478866, 51.1927382 ], "geometry": { "type": "Point", "coordinates": [ -0.1478866, 51.1927382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12408843" }, "bbox": [ -0.3876325, 51.1519174, -0.3876325, 51.1519174 ], "geometry": { "type": "Point", "coordinates": [ -0.3876325, 51.1519174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02576010" }, "bbox": [ -0.529774, 51.3035616, -0.529774, 51.3035616 ], "geometry": { "type": "Point", "coordinates": [ -0.529774, 51.3035616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32453330" }, "bbox": [ -0.1077766, 51.1916159, -0.1077766, 51.1916159 ], "geometry": { "type": "Point", "coordinates": [ -0.1077766, 51.1916159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10559405" }, "bbox": [ -0.4105797, 51.2838359, -0.4105797, 51.2838359 ], "geometry": { "type": "Point", "coordinates": [ -0.4105797, 51.2838359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33479438" }, "bbox": [ -0.0842961, 51.209912, -0.0842961, 51.209912 ], "geometry": { "type": "Point", "coordinates": [ -0.0842961, 51.209912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39586635" }, "bbox": [ 0.0024065, 51.3069377, 0.0024065, 51.3069377 ], "geometry": { "type": "Point", "coordinates": [ 0.0024065, 51.3069377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39441073" }, "bbox": [ -0.0112335, 51.1849428, -0.0112335, 51.1849428 ], "geometry": { "type": "Point", "coordinates": [ -0.0112335, 51.1849428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15425651" }, "bbox": [ -0.3483092, 51.1700394, -0.3483092, 51.1700394 ], "geometry": { "type": "Point", "coordinates": [ -0.3483092, 51.1700394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32486210" }, "bbox": [ -0.1023513, 51.2167211, -0.1023513, 51.2167211 ], "geometry": { "type": "Point", "coordinates": [ -0.1023513, 51.2167211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39587701" }, "bbox": [ 0.0038509, 51.304231, 0.0038509, 51.304231 ], "geometry": { "type": "Point", "coordinates": [ 0.0038509, 51.304231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15514793" }, "bbox": [ -0.3467166, 51.2550149, -0.3467166, 51.2550149 ], "geometry": { "type": "Point", "coordinates": [ -0.3467166, 51.2550149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27551404" }, "bbox": [ -0.178391, 51.2802843, -0.178391, 51.2802843 ], "geometry": { "type": "Point", "coordinates": [ -0.178391, 51.2802843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30441969" }, "bbox": [ -0.1385881, 51.1865688, -0.1385881, 51.1865688 ], "geometry": { "type": "Point", "coordinates": [ -0.1385881, 51.1865688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06419377" }, "bbox": [ -0.4720287, 51.1652002, -0.4720287, 51.1652002 ], "geometry": { "type": "Point", "coordinates": [ -0.4720287, 51.1652002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19391277" }, "bbox": [ -0.2983936, 51.1447162, -0.2983936, 51.1447162 ], "geometry": { "type": "Point", "coordinates": [ -0.2983936, 51.1447162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12616533" }, "bbox": [ -0.3842083, 51.3397332, -0.3842083, 51.3397332 ], "geometry": { "type": "Point", "coordinates": [ -0.3842083, 51.3397332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06354155" }, "bbox": [ -0.4813765, 51.1093934, -0.4813765, 51.1093934 ], "geometry": { "type": "Point", "coordinates": [ -0.4813765, 51.1093934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571052" }, "bbox": [ -0.4221472, 51.3062842, -0.4221472, 51.3062842 ], "geometry": { "type": "Point", "coordinates": [ -0.4221472, 51.3062842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24433161" }, "bbox": [ -0.2229415, 51.1782644, -0.2229415, 51.1782644 ], "geometry": { "type": "Point", "coordinates": [ -0.2229415, 51.1782644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00541960" }, "bbox": [ -0.5648883, 51.2817564, -0.5648883, 51.2817564 ], "geometry": { "type": "Point", "coordinates": [ -0.5648883, 51.2817564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21428998" }, "bbox": [ -0.2577023, 51.1730391, -0.2577023, 51.1730391 ], "geometry": { "type": "Point", "coordinates": [ -0.2577023, 51.1730391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14534895" }, "bbox": [ -0.3601291, 51.2732905, -0.3601291, 51.2732905 ], "geometry": { "type": "Point", "coordinates": [ -0.3601291, 51.2732905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04405348" }, "bbox": [ -0.5074399, 51.1540779, -0.5074399, 51.1540779 ], "geometry": { "type": "Point", "coordinates": [ -0.5074399, 51.1540779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23408925" }, "bbox": [ -0.2301045, 51.1481285, -0.2301045, 51.1481285 ], "geometry": { "type": "Point", "coordinates": [ -0.2301045, 51.1481285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41574057" }, "bbox": [ 0.0269618, 51.2995609, 0.0269618, 51.2995609 ], "geometry": { "type": "Point", "coordinates": [ 0.0269618, 51.2995609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39577299" }, "bbox": [ 0.0030318, 51.303842, 0.0030318, 51.303842 ], "geometry": { "type": "Point", "coordinates": [ 0.0030318, 51.303842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38596298" }, "bbox": [ -0.0121959, 51.3221537, -0.0121959, 51.3221537 ], "geometry": { "type": "Point", "coordinates": [ -0.0121959, 51.3221537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25438568" }, "bbox": [ -0.2008526, 51.1786077, -0.2008526, 51.1786077 ], "geometry": { "type": "Point", "coordinates": [ -0.2008526, 51.1786077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30452148" }, "bbox": [ -0.1379477, 51.1938069, -0.1379477, 51.1938069 ], "geometry": { "type": "Point", "coordinates": [ -0.1379477, 51.1938069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466759" }, "bbox": [ -0.4600213, 51.2084314, -0.4600213, 51.2084314 ], "geometry": { "type": "Point", "coordinates": [ -0.4600213, 51.2084314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05692428" }, "bbox": [ -0.4881409, 51.4128403, -0.4881409, 51.4128403 ], "geometry": { "type": "Point", "coordinates": [ -0.4881409, 51.4128403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18465117" }, "bbox": [ -0.3050652, 51.2025524, -0.3050652, 51.2025524 ], "geometry": { "type": "Point", "coordinates": [ -0.3050652, 51.2025524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19551467" }, "bbox": [ -0.2926728, 51.2877497, -0.2926728, 51.2877497 ], "geometry": { "type": "Point", "coordinates": [ -0.2926728, 51.2877497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21405301" }, "bbox": [ -0.2640938, 51.1464898, -0.2640938, 51.1464898 ], "geometry": { "type": "Point", "coordinates": [ -0.2640938, 51.1464898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25423717" }, "bbox": [ -0.2071485, 51.1653364, -0.2071485, 51.1653364 ], "geometry": { "type": "Point", "coordinates": [ -0.2071485, 51.1653364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19534998" }, "bbox": [ -0.2884126, 51.2725213, -0.2884126, 51.2725213 ], "geometry": { "type": "Point", "coordinates": [ -0.2884126, 51.2725213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28520856" }, "bbox": [ -0.1657307, 51.2574274, -0.1657307, 51.2574274 ], "geometry": { "type": "Point", "coordinates": [ -0.1657307, 51.2574274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30434492" }, "bbox": [ -0.1351493, 51.1796629, -0.1351493, 51.1796629 ], "geometry": { "type": "Point", "coordinates": [ -0.1351493, 51.1796629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19412057" }, "bbox": [ -0.2967542, 51.1610053, -0.2967542, 51.1610053 ], "geometry": { "type": "Point", "coordinates": [ -0.2967542, 51.1610053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20411957" }, "bbox": [ -0.2823657, 51.1606287, -0.2823657, 51.1606287 ], "geometry": { "type": "Point", "coordinates": [ -0.2823657, 51.1606287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365374" }, "bbox": [ -0.4933928, 51.1202714, -0.4933928, 51.1202714 ], "geometry": { "type": "Point", "coordinates": [ -0.4933928, 51.1202714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23486807" }, "bbox": [ -0.2300845, 51.2185157, -0.2300845, 51.2185157 ], "geometry": { "type": "Point", "coordinates": [ -0.2300845, 51.2185157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07572115" }, "bbox": [ -0.4633701, 51.3034509, -0.4633701, 51.3034509 ], "geometry": { "type": "Point", "coordinates": [ -0.4633701, 51.3034509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12499146" }, "bbox": [ -0.3844121, 51.2331352, -0.3844121, 51.2331352 ], "geometry": { "type": "Point", "coordinates": [ -0.3844121, 51.2331352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02386243" }, "bbox": [ -0.5346699, 51.1359547, -0.5346699, 51.1359547 ], "geometry": { "type": "Point", "coordinates": [ -0.5346699, 51.1359547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24563132" }, "bbox": [ -0.2180709, 51.2928311, -0.2180709, 51.2928311 ], "geometry": { "type": "Point", "coordinates": [ -0.2180709, 51.2928311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02403453" }, "bbox": [ -0.5379365, 51.1549666, -0.5379365, 51.1549666 ], "geometry": { "type": "Point", "coordinates": [ -0.5379365, 51.1549666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17443423" }, "bbox": [ -0.3223321, 51.1853964, -0.3223321, 51.1853964 ], "geometry": { "type": "Point", "coordinates": [ -0.3223321, 51.1853964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34444219" }, "bbox": [ -0.0782281, 51.1810804, -0.0782281, 51.1810804 ], "geometry": { "type": "Point", "coordinates": [ -0.0782281, 51.1810804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412942" }, "bbox": [ 0.0333887, 51.154257, 0.0333887, 51.154257 ], "geometry": { "type": "Point", "coordinates": [ 0.0333887, 51.154257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24435342" }, "bbox": [ -0.2198206, 51.1766189, -0.2198206, 51.1766189 ], "geometry": { "type": "Point", "coordinates": [ -0.2198206, 51.1766189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571243" }, "bbox": [ -0.4215991, 51.305375, -0.4215991, 51.305375 ], "geometry": { "type": "Point", "coordinates": [ -0.4215991, 51.305375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34491677" }, "bbox": [ -0.0798686, 51.2313996, -0.0798686, 51.2313996 ], "geometry": { "type": "Point", "coordinates": [ -0.0798686, 51.2313996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39598122" }, "bbox": [ 0.0031488, 51.3147855, 0.0031488, 51.3147855 ], "geometry": { "type": "Point", "coordinates": [ 0.0031488, 51.3147855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27465303" }, "bbox": [ -0.1759544, 51.1992945, -0.1759544, 51.1992945 ], "geometry": { "type": "Point", "coordinates": [ -0.1759544, 51.1992945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09555020" }, "bbox": [ -0.4313461, 51.2855009, -0.4313461, 51.2855009 ], "geometry": { "type": "Point", "coordinates": [ -0.4313461, 51.2855009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37600217" }, "bbox": [ -0.0349809, 51.3237494, -0.0349809, 51.3237494 ], "geometry": { "type": "Point", "coordinates": [ -0.0349809, 51.3237494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33421251" }, "bbox": [ -0.0974568, 51.1662974, -0.0974568, 51.1662974 ], "geometry": { "type": "Point", "coordinates": [ -0.0974568, 51.1662974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05553241" }, "bbox": [ -0.4909298, 51.2881067, -0.4909298, 51.2881067 ], "geometry": { "type": "Point", "coordinates": [ -0.4909298, 51.2881067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34559248" }, "bbox": [ -0.0667026, 51.2825626, -0.0667026, 51.2825626 ], "geometry": { "type": "Point", "coordinates": [ -0.0667026, 51.2825626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33464269" }, "bbox": [ -0.0919491, 51.2036302, -0.0919491, 51.2036302 ], "geometry": { "type": "Point", "coordinates": [ -0.0919491, 51.2036302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08361108" }, "bbox": [ -0.4567532, 51.1139668, -0.4567532, 51.1139668 ], "geometry": { "type": "Point", "coordinates": [ -0.4567532, 51.1139668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19430916" }, "bbox": [ -0.2978185, 51.1753242, -0.2978185, 51.1753242 ], "geometry": { "type": "Point", "coordinates": [ -0.2978185, 51.1753242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14395006" }, "bbox": [ -0.3652443, 51.1395529, -0.3652443, 51.1395529 ], "geometry": { "type": "Point", "coordinates": [ -0.3652443, 51.1395529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12396075" }, "bbox": [ -0.3915483, 51.1459902, -0.3915483, 51.1459902 ], "geometry": { "type": "Point", "coordinates": [ -0.3915483, 51.1459902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477449" }, "bbox": [ -0.2726735, 51.2138847, -0.2726735, 51.2138847 ], "geometry": { "type": "Point", "coordinates": [ -0.2726735, 51.2138847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37503831" }, "bbox": [ -0.0335624, 51.235572, -0.0335624, 51.235572 ], "geometry": { "type": "Point", "coordinates": [ -0.0335624, 51.235572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12485727" }, "bbox": [ -0.3893089, 51.2225215, -0.3893089, 51.2225215 ], "geometry": { "type": "Point", "coordinates": [ -0.3893089, 51.2225215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20578427" }, "bbox": [ -0.2677262, 51.3017152, -0.2677262, 51.3017152 ], "geometry": { "type": "Point", "coordinates": [ -0.2677262, 51.3017152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01549091" }, "bbox": [ -0.5402508, 51.2842299, -0.5402508, 51.2842299 ], "geometry": { "type": "Point", "coordinates": [ -0.5402508, 51.2842299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32444440" }, "bbox": [ -0.1064782, 51.1835317, -0.1064782, 51.1835317 ], "geometry": { "type": "Point", "coordinates": [ -0.1064782, 51.1835317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00337852" }, "bbox": [ -0.5625876, 51.0920803, -0.5625876, 51.0920803 ], "geometry": { "type": "Point", "coordinates": [ -0.5625876, 51.0920803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530880" }, "bbox": [ -0.3659944, 51.2720139, -0.3659944, 51.2720139 ], "geometry": { "type": "Point", "coordinates": [ -0.3659944, 51.2720139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16429073" }, "bbox": [ -0.3291418, 51.1718811, -0.3291418, 51.1718811 ], "geometry": { "type": "Point", "coordinates": [ -0.3291418, 51.1718811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03400898" }, "bbox": [ -0.5272519, 51.158753, -0.5272519, 51.158753 ], "geometry": { "type": "Point", "coordinates": [ -0.5272519, 51.158753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19457205" }, "bbox": [ -0.2880906, 51.1922238, -0.2880906, 51.1922238 ], "geometry": { "type": "Point", "coordinates": [ -0.2880906, 51.1922238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15415207" }, "bbox": [ -0.349437, 51.1573936, -0.349437, 51.1573936 ], "geometry": { "type": "Point", "coordinates": [ -0.349437, 51.1573936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23468666" }, "bbox": [ -0.228409, 51.2059169, -0.228409, 51.2059169 ], "geometry": { "type": "Point", "coordinates": [ -0.228409, 51.2059169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32463597" }, "bbox": [ -0.1066892, 51.2067929, -0.1066892, 51.2067929 ], "geometry": { "type": "Point", "coordinates": [ -0.1066892, 51.2067929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36544607" }, "bbox": [ -0.0453785, 51.2694025, -0.0453785, 51.2694025 ], "geometry": { "type": "Point", "coordinates": [ -0.0453785, 51.2694025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42494372" }, "bbox": [ 0.0384822, 51.2289954, 0.0384822, 51.2289954 ], "geometry": { "type": "Point", "coordinates": [ 0.0384822, 51.2289954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06458894" }, "bbox": [ -0.471455, 51.2026472, -0.471455, 51.2026472 ], "geometry": { "type": "Point", "coordinates": [ -0.471455, 51.2026472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07488081" }, "bbox": [ -0.4573772, 51.2283633, -0.4573772, 51.2283633 ], "geometry": { "type": "Point", "coordinates": [ -0.4573772, 51.2283633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36426286" }, "bbox": [ -0.0472243, 51.1687515, -0.0472243, 51.1687515 ], "geometry": { "type": "Point", "coordinates": [ -0.0472243, 51.1687515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06464720" }, "bbox": [ -0.4773712, 51.2050715, -0.4773712, 51.2050715 ], "geometry": { "type": "Point", "coordinates": [ -0.4773712, 51.2050715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18466790" }, "bbox": [ -0.3026729, 51.2088772, -0.3026729, 51.2088772 ], "geometry": { "type": "Point", "coordinates": [ -0.3026729, 51.2088772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13494027" }, "bbox": [ -0.3772826, 51.2315298, -0.3772826, 51.2315298 ], "geometry": { "type": "Point", "coordinates": [ -0.3772826, 51.2315298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08406295" }, "bbox": [ -0.4483687, 51.157475, -0.4483687, 51.157475 ], "geometry": { "type": "Point", "coordinates": [ -0.4483687, 51.157475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32481182" }, "bbox": [ -0.1093507, 51.2232322, -0.1093507, 51.2232322 ], "geometry": { "type": "Point", "coordinates": [ -0.1093507, 51.2232322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377019" }, "bbox": [ -0.3625051, 51.1225054, -0.3625051, 51.1225054 ], "geometry": { "type": "Point", "coordinates": [ -0.3625051, 51.1225054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23484119" }, "bbox": [ -0.2343865, 51.2196095, -0.2343865, 51.2196095 ], "geometry": { "type": "Point", "coordinates": [ -0.2343865, 51.2196095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35514028" }, "bbox": [ -0.0615449, 51.2446201, -0.0615449, 51.2446201 ], "geometry": { "type": "Point", "coordinates": [ -0.0615449, 51.2446201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23488298" }, "bbox": [ -0.228363, 51.2258485, -0.228363, 51.2258485 ], "geometry": { "type": "Point", "coordinates": [ -0.228363, 51.2258485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02653278" }, "bbox": [ -0.5309004, 51.3819188, -0.5309004, 51.3819188 ], "geometry": { "type": "Point", "coordinates": [ -0.5309004, 51.3819188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16406178" }, "bbox": [ -0.3339861, 51.1544227, -0.3339861, 51.1544227 ], "geometry": { "type": "Point", "coordinates": [ -0.3339861, 51.1544227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03370506" }, "bbox": [ -0.5287598, 51.123565, -0.5287598, 51.123565 ], "geometry": { "type": "Point", "coordinates": [ -0.5287598, 51.123565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479644" }, "bbox": [ -0.3124175, 51.2139816, -0.3124175, 51.2139816 ], "geometry": { "type": "Point", "coordinates": [ -0.3124175, 51.2139816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35435459" }, "bbox": [ -0.0623728, 51.1754585, -0.0623728, 51.1754585 ], "geometry": { "type": "Point", "coordinates": [ -0.0623728, 51.1754585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36421964" }, "bbox": [ -0.0535321, 51.1668181, -0.0535321, 51.1668181 ], "geometry": { "type": "Point", "coordinates": [ -0.0535321, 51.1668181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21465510" }, "bbox": [ -0.2615857, 51.2011297, -0.2615857, 51.2011297 ], "geometry": { "type": "Point", "coordinates": [ -0.2615857, 51.2011297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03336574" }, "bbox": [ -0.5212352, 51.093479, -0.5212352, 51.093479 ], "geometry": { "type": "Point", "coordinates": [ -0.5212352, 51.093479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00402993" }, "bbox": [ -0.5671267, 51.1588851, -0.5671267, 51.1588851 ], "geometry": { "type": "Point", "coordinates": [ -0.5671267, 51.1588851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17419921" }, "bbox": [ -0.3141838, 51.1577818, -0.3141838, 51.1577818 ], "geometry": { "type": "Point", "coordinates": [ -0.3141838, 51.1577818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18556296" }, "bbox": [ -0.3003007, 51.2904069, -0.3003007, 51.2904069 ], "geometry": { "type": "Point", "coordinates": [ -0.3003007, 51.2904069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38444088" }, "bbox": [ -0.0210791, 51.1864243, -0.0210791, 51.1864243 ], "geometry": { "type": "Point", "coordinates": [ -0.0210791, 51.1864243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41478293" }, "bbox": [ 0.0290878, 51.212895, 0.0290878, 51.212895 ], "geometry": { "type": "Point", "coordinates": [ 0.0290878, 51.212895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20414279" }, "bbox": [ -0.2792007, 51.1627569, -0.2792007, 51.1627569 ], "geometry": { "type": "Point", "coordinates": [ -0.2792007, 51.1627569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41544438" }, "bbox": [ 0.026338, 51.2710324, 0.026338, 51.2710324 ], "geometry": { "type": "Point", "coordinates": [ 0.026338, 51.2710324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10615928" }, "bbox": [ -0.4136439, 51.3400993, -0.4136439, 51.3400993 ], "geometry": { "type": "Point", "coordinates": [ -0.4136439, 51.3400993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13578083" }, "bbox": [ -0.3686748, 51.3082087, -0.3686748, 51.3082087 ], "geometry": { "type": "Point", "coordinates": [ -0.3686748, 51.3082087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15407296" }, "bbox": [ -0.3467756, 51.1561876, -0.3467756, 51.1561876 ], "geometry": { "type": "Point", "coordinates": [ -0.3467756, 51.1561876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25410780" }, "bbox": [ -0.2128658, 51.1614183, -0.2128658, 51.1614183 ], "geometry": { "type": "Point", "coordinates": [ -0.2128658, 51.1614183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01498929" }, "bbox": [ -0.5420361, 51.2337448, -0.5420361, 51.2337448 ], "geometry": { "type": "Point", "coordinates": [ -0.5420361, 51.2337448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22474599" }, "bbox": [ -0.2484591, 51.2179951, -0.2484591, 51.2179951 ], "geometry": { "type": "Point", "coordinates": [ -0.2484591, 51.2179951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17402054" }, "bbox": [ -0.3251976, 51.1521471, -0.3251976, 51.1521471 ], "geometry": { "type": "Point", "coordinates": [ -0.3251976, 51.1521471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434065" }, "bbox": [ -0.0643484, 51.1760385, -0.0643484, 51.1760385 ], "geometry": { "type": "Point", "coordinates": [ -0.0643484, 51.1760385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41574287" }, "bbox": [ 0.0270567, 51.3023345, 0.0270567, 51.3023345 ], "geometry": { "type": "Point", "coordinates": [ 0.0270567, 51.3023345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529524" }, "bbox": [ -0.4115976, 51.2583101, -0.4115976, 51.2583101 ], "geometry": { "type": "Point", "coordinates": [ -0.4115976, 51.2583101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41452928" }, "bbox": [ 0.0204468, 51.1893595, 0.0204468, 51.1893595 ], "geometry": { "type": "Point", "coordinates": [ 0.0204468, 51.1893595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25599636" }, "bbox": [ -0.1939984, 51.3194268, -0.1939984, 51.3194268 ], "geometry": { "type": "Point", "coordinates": [ -0.1939984, 51.3194268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40471438" }, "bbox": [ 0.0048108, 51.2084135, 0.0048108, 51.2084135 ], "geometry": { "type": "Point", "coordinates": [ 0.0048108, 51.2084135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15390850" }, "bbox": [ -0.3567972, 51.1429436, -0.3567972, 51.1429436 ], "geometry": { "type": "Point", "coordinates": [ -0.3567972, 51.1429436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38461443" }, "bbox": [ -0.0242476, 51.2004265, -0.0242476, 51.2004265 ], "geometry": { "type": "Point", "coordinates": [ -0.0242476, 51.2004265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21405015" }, "bbox": [ -0.2643654, 51.1477752, -0.2643654, 51.1477752 ], "geometry": { "type": "Point", "coordinates": [ -0.2643654, 51.1477752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36476591" }, "bbox": [ -0.0448652, 51.2140332, -0.0448652, 51.2140332 ], "geometry": { "type": "Point", "coordinates": [ -0.0448652, 51.2140332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02401560" }, "bbox": [ -0.5409333, 51.1554451, -0.5409333, 51.1554451 ], "geometry": { "type": "Point", "coordinates": [ -0.5409333, 51.1554451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11481215" }, "bbox": [ -0.4100187, 51.2218191, -0.4100187, 51.2218191 ], "geometry": { "type": "Point", "coordinates": [ -0.4100187, 51.2218191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02359213" }, "bbox": [ -0.5312446, 51.1063344, -0.5312446, 51.1063344 ], "geometry": { "type": "Point", "coordinates": [ -0.5312446, 51.1063344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03510577" }, "bbox": [ -0.5244834, 51.2558189, -0.5244834, 51.2558189 ], "geometry": { "type": "Point", "coordinates": [ -0.5244834, 51.2558189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25510692" }, "bbox": [ -0.2070037, 51.2530458, -0.2070037, 51.2530458 ], "geometry": { "type": "Point", "coordinates": [ -0.2070037, 51.2530458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07570703" }, "bbox": [ -0.4656402, 51.3022971, -0.4656402, 51.3022971 ], "geometry": { "type": "Point", "coordinates": [ -0.4656402, 51.3022971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01363382" }, "bbox": [ -0.5536913, 51.1216951, -0.5536913, 51.1216951 ], "geometry": { "type": "Point", "coordinates": [ -0.5536913, 51.1216951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07346949" }, "bbox": [ -0.4634271, 51.099684, -0.4634271, 51.099684 ], "geometry": { "type": "Point", "coordinates": [ -0.4634271, 51.099684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20468576" }, "bbox": [ -0.2711346, 51.2073286, -0.2711346, 51.2073286 ], "geometry": { "type": "Point", "coordinates": [ -0.2711346, 51.2073286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431265" }, "bbox": [ -0.5406792, 51.1831572, -0.5406792, 51.1831572 ], "geometry": { "type": "Point", "coordinates": [ -0.5406792, 51.1831572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08399012" }, "bbox": [ -0.444672, 51.1410164, -0.444672, 51.1410164 ], "geometry": { "type": "Point", "coordinates": [ -0.444672, 51.1410164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00403827" }, "bbox": [ -0.5661203, 51.1529492, -0.5661203, 51.1529492 ], "geometry": { "type": "Point", "coordinates": [ -0.5661203, 51.1529492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08406025" }, "bbox": [ -0.4485582, 51.1511754, -0.4485582, 51.1511754 ], "geometry": { "type": "Point", "coordinates": [ -0.4485582, 51.1511754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19444437" }, "bbox": [ -0.2924084, 51.1859861, -0.2924084, 51.1859861 ], "geometry": { "type": "Point", "coordinates": [ -0.2924084, 51.1859861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16523189" }, "bbox": [ -0.3339875, 51.263413, -0.3339875, 51.263413 ], "geometry": { "type": "Point", "coordinates": [ -0.3339875, 51.263413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19444393" }, "bbox": [ -0.292396, 51.1911472, -0.292396, 51.1911472 ], "geometry": { "type": "Point", "coordinates": [ -0.292396, 51.1911472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15383539" }, "bbox": [ -0.3528791, 51.1331309, -0.3528791, 51.1331309 ], "geometry": { "type": "Point", "coordinates": [ -0.3528791, 51.1331309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424934" }, "bbox": [ -0.5209418, 51.1710256, -0.5209418, 51.1710256 ], "geometry": { "type": "Point", "coordinates": [ -0.5209418, 51.1710256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16423750" }, "bbox": [ -0.3368561, 51.1703803, -0.3368561, 51.1703803 ], "geometry": { "type": "Point", "coordinates": [ -0.3368561, 51.1703803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09586047" }, "bbox": [ -0.4287672, 51.3147834, -0.4287672, 51.3147834 ], "geometry": { "type": "Point", "coordinates": [ -0.4287672, 51.3147834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25527827" }, "bbox": [ -0.1989401, 51.2557301, -0.1989401, 51.2557301 ], "geometry": { "type": "Point", "coordinates": [ -0.1989401, 51.2557301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01433088" }, "bbox": [ -0.5519547, 51.1851449, -0.5519547, 51.1851449 ], "geometry": { "type": "Point", "coordinates": [ -0.5519547, 51.1851449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10572555" }, "bbox": [ -0.4196731, 51.3064826, -0.4196731, 51.3064826 ], "geometry": { "type": "Point", "coordinates": [ -0.4196731, 51.3064826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35478086" }, "bbox": [ -0.0570659, 51.2137728, -0.0570659, 51.2137728 ], "geometry": { "type": "Point", "coordinates": [ -0.0570659, 51.2137728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395647" }, "bbox": [ -0.2921939, 51.1419744, -0.2921939, 51.1419744 ], "geometry": { "type": "Point", "coordinates": [ -0.2921939, 51.1419744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34569759" }, "bbox": [ -0.0655964, 51.2925106, -0.0655964, 51.2925106 ], "geometry": { "type": "Point", "coordinates": [ -0.0655964, 51.2925106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26539911" }, "bbox": [ -0.1814556, 51.2630627, -0.1814556, 51.2630627 ], "geometry": { "type": "Point", "coordinates": [ -0.1814556, 51.2630627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19485437" }, "bbox": [ -0.2888528, 51.2221378, -0.2888528, 51.2221378 ], "geometry": { "type": "Point", "coordinates": [ -0.2888528, 51.2221378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39448275" }, "bbox": [ -0.0023579, 51.1843538, -0.0023579, 51.1843538 ], "geometry": { "type": "Point", "coordinates": [ -0.0023579, 51.1843538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15371395" }, "bbox": [ -0.3557084, 51.1293949, -0.3557084, 51.1293949 ], "geometry": { "type": "Point", "coordinates": [ -0.3557084, 51.1293949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28546536" }, "bbox": [ -0.156995, 51.2739206, -0.156995, 51.2739206 ], "geometry": { "type": "Point", "coordinates": [ -0.156995, 51.2739206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31449280" }, "bbox": [ -0.1138328, 51.1871688, -0.1138328, 51.1871688 ], "geometry": { "type": "Point", "coordinates": [ -0.1138328, 51.1871688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19440475" }, "bbox": [ -0.2979812, 51.1896597, -0.2979812, 51.1896597 ], "geometry": { "type": "Point", "coordinates": [ -0.2979812, 51.1896597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37508627" }, "bbox": [ -0.0266923, 51.2349227, -0.0266923, 51.2349227 ], "geometry": { "type": "Point", "coordinates": [ -0.0266923, 51.2349227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09347479" }, "bbox": [ -0.4338839, 51.1019219, -0.4338839, 51.1019219 ], "geometry": { "type": "Point", "coordinates": [ -0.4338839, 51.1019219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03522977" }, "bbox": [ -0.5208556, 51.2646971, -0.5208556, 51.2646971 ], "geometry": { "type": "Point", "coordinates": [ -0.5208556, 51.2646971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566968" }, "bbox": [ -0.2845505, 51.2965811, -0.2845505, 51.2965811 ], "geometry": { "type": "Point", "coordinates": [ -0.2845505, 51.2965811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39442947" }, "bbox": [ -0.0085628, 51.1825216, -0.0085628, 51.1825216 ], "geometry": { "type": "Point", "coordinates": [ -0.0085628, 51.1825216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33459539" }, "bbox": [ -0.0845669, 51.192066, -0.0845669, 51.192066 ], "geometry": { "type": "Point", "coordinates": [ -0.0845669, 51.192066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32395451" }, "bbox": [ -0.1067289, 51.1394984, -0.1067289, 51.1394984 ], "geometry": { "type": "Point", "coordinates": [ -0.1067289, 51.1394984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33434947" }, "bbox": [ -0.0918083, 51.1748503, -0.0918083, 51.1748503 ], "geometry": { "type": "Point", "coordinates": [ -0.0918083, 51.1748503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22483519" }, "bbox": [ -0.2493979, 51.2199434, -0.2493979, 51.2199434 ], "geometry": { "type": "Point", "coordinates": [ -0.2493979, 51.2199434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17508385" }, "bbox": [ -0.3131567, 51.2446277, -0.3131567, 51.2446277 ], "geometry": { "type": "Point", "coordinates": [ -0.3131567, 51.2446277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27449098" }, "bbox": [ -0.1711279, 51.1897695, -0.1711279, 51.1897695 ], "geometry": { "type": "Point", "coordinates": [ -0.1711279, 51.1897695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24452522" }, "bbox": [ -0.2232734, 51.1927062, -0.2232734, 51.1927062 ], "geometry": { "type": "Point", "coordinates": [ -0.2232734, 51.1927062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30431705" }, "bbox": [ -0.1389169, 51.1719174, -0.1389169, 51.1719174 ], "geometry": { "type": "Point", "coordinates": [ -0.1389169, 51.1719174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09575490" }, "bbox": [ -0.4298315, 51.3097072, -0.4298315, 51.3097072 ], "geometry": { "type": "Point", "coordinates": [ -0.4298315, 51.3097072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19390987" }, "bbox": [ -0.2987261, 51.1457317, -0.2987261, 51.1457317 ], "geometry": { "type": "Point", "coordinates": [ -0.2987261, 51.1457317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34425480" }, "bbox": [ -0.0771593, 51.1686297, -0.0771593, 51.1686297 ], "geometry": { "type": "Point", "coordinates": [ -0.0771593, 51.1686297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12449260" }, "bbox": [ -0.3855085, 51.1895452, -0.3855085, 51.1895452 ], "geometry": { "type": "Point", "coordinates": [ -0.3855085, 51.1895452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495781" }, "bbox": [ -0.0595688, 51.231397, -0.0595688, 51.231397 ], "geometry": { "type": "Point", "coordinates": [ -0.0595688, 51.231397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43414333" }, "bbox": [ 0.0494597, 51.1532815, 0.0494597, 51.1532815 ], "geometry": { "type": "Point", "coordinates": [ 0.0494597, 51.1532815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42466301" }, "bbox": [ 0.039744, 51.1954787, 0.039744, 51.1954787 ], "geometry": { "type": "Point", "coordinates": [ 0.039744, 51.1954787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31458812" }, "bbox": [ -0.1142444, 51.1900541, -0.1142444, 51.1900541 ], "geometry": { "type": "Point", "coordinates": [ -0.1142444, 51.1900541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03353831" }, "bbox": [ -0.5245868, 51.1077828, -0.5245868, 51.1077828 ], "geometry": { "type": "Point", "coordinates": [ -0.5245868, 51.1077828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413564" }, "bbox": [ -0.2946083, 51.161495, -0.2946083, 51.161495 ], "geometry": { "type": "Point", "coordinates": [ -0.2946083, 51.161495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14408034" }, "bbox": [ -0.3599225, 51.1508453, -0.3599225, 51.1508453 ], "geometry": { "type": "Point", "coordinates": [ -0.3599225, 51.1508453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27454542" }, "bbox": [ -0.177372, 51.1936869, -0.177372, 51.1936869 ], "geometry": { "type": "Point", "coordinates": [ -0.177372, 51.1936869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08388897" }, "bbox": [ -0.4449112, 51.139677, -0.4449112, 51.139677 ], "geometry": { "type": "Point", "coordinates": [ -0.4449112, 51.139677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38410693" }, "bbox": [ -0.0269863, 51.1600145, -0.0269863, 51.1600145 ], "geometry": { "type": "Point", "coordinates": [ -0.0269863, 51.1600145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25477377" }, "bbox": [ -0.2011873, 51.2153637, -0.2011873, 51.2153637 ], "geometry": { "type": "Point", "coordinates": [ -0.2011873, 51.2153637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37504165" }, "bbox": [ -0.0329046, 51.2384442, -0.0329046, 51.2384442 ], "geometry": { "type": "Point", "coordinates": [ -0.0329046, 51.2384442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08398405" }, "bbox": [ -0.4455313, 51.1404473, -0.4455313, 51.1404473 ], "geometry": { "type": "Point", "coordinates": [ -0.4455313, 51.1404473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32490853" }, "bbox": [ -0.1096706, 51.229582, -0.1096706, 51.229582 ], "geometry": { "type": "Point", "coordinates": [ -0.1096706, 51.229582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06558568" }, "bbox": [ -0.4687961, 51.2902766, -0.4687961, 51.2902766 ], "geometry": { "type": "Point", "coordinates": [ -0.4687961, 51.2902766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07418373" }, "bbox": [ -0.4592935, 51.1646936, -0.4592935, 51.1646936 ], "geometry": { "type": "Point", "coordinates": [ -0.4592935, 51.1646936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18414921" }, "bbox": [ -0.3068948, 51.1579343, -0.3068948, 51.1579343 ], "geometry": { "type": "Point", "coordinates": [ -0.3068948, 51.1579343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588390" }, "bbox": [ -0.4250895, 51.3186456, -0.4250895, 51.3186456 ], "geometry": { "type": "Point", "coordinates": [ -0.4250895, 51.3186456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23471392" }, "bbox": [ -0.2382403, 51.217275, -0.2382403, 51.217275 ], "geometry": { "type": "Point", "coordinates": [ -0.2382403, 51.217275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31400260" }, "bbox": [ -0.1281035, 51.1497245, -0.1281035, 51.1497245 ], "geometry": { "type": "Point", "coordinates": [ -0.1281035, 51.1497245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21451917" }, "bbox": [ -0.26693, 51.192978, -0.26693, 51.192978 ], "geometry": { "type": "Point", "coordinates": [ -0.26693, 51.192978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19505056" }, "bbox": [ -0.2892148, 51.2417362, -0.2892148, 51.2417362 ], "geometry": { "type": "Point", "coordinates": [ -0.2892148, 51.2417362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02537928" }, "bbox": [ -0.5280197, 51.269081, -0.5280197, 51.269081 ], "geometry": { "type": "Point", "coordinates": [ -0.5280197, 51.269081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04638807" }, "bbox": [ -0.495138, 51.3570827, -0.495138, 51.3570827 ], "geometry": { "type": "Point", "coordinates": [ -0.495138, 51.3570827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00371711" }, "bbox": [ -0.5698865, 51.1245767, -0.5698865, 51.1245767 ], "geometry": { "type": "Point", "coordinates": [ -0.5698865, 51.1245767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06542115" }, "bbox": [ -0.4785728, 51.2765436, -0.4785728, 51.2765436 ], "geometry": { "type": "Point", "coordinates": [ -0.4785728, 51.2765436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13579028" }, "bbox": [ -0.3674075, 51.3031946, -0.3674075, 51.3031946 ], "geometry": { "type": "Point", "coordinates": [ -0.3674075, 51.3031946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40447966" }, "bbox": [ 0.0130494, 51.1838277, 0.0130494, 51.1838277 ], "geometry": { "type": "Point", "coordinates": [ 0.0130494, 51.1838277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19477385" }, "bbox": [ -0.2871864, 51.21732, -0.2871864, 51.21732 ], "geometry": { "type": "Point", "coordinates": [ -0.2871864, 51.21732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463629" }, "bbox": [ -0.1927215, 51.2020595, -0.1927215, 51.2020595 ], "geometry": { "type": "Point", "coordinates": [ -0.1927215, 51.2020595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12406932" }, "bbox": [ -0.3901288, 51.15099, -0.3901288, 51.15099 ], "geometry": { "type": "Point", "coordinates": [ -0.3901288, 51.15099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07579207" }, "bbox": [ -0.4533069, 51.302607, -0.4533069, 51.302607 ], "geometry": { "type": "Point", "coordinates": [ -0.4533069, 51.302607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33458090" }, "bbox": [ -0.0863292, 51.1967093, -0.0863292, 51.1967093 ], "geometry": { "type": "Point", "coordinates": [ -0.0863292, 51.1967093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37394278" }, "bbox": [ -0.0370093, 51.1408567, -0.0370093, 51.1408567 ], "geometry": { "type": "Point", "coordinates": [ -0.0370093, 51.1408567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05692874" }, "bbox": [ -0.4874636, 51.4169663, -0.4874636, 51.4169663 ], "geometry": { "type": "Point", "coordinates": [ -0.4874636, 51.4169663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434554" }, "bbox": [ -0.0637386, 51.1750904, -0.0637386, 51.1750904 ], "geometry": { "type": "Point", "coordinates": [ -0.0637386, 51.1750904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13393673" }, "bbox": [ -0.38081, 51.1455847, -0.38081, 51.1455847 ], "geometry": { "type": "Point", "coordinates": [ -0.38081, 51.1455847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521358" }, "bbox": [ -0.3942226, 51.2613896, -0.3942226, 51.2613896 ], "geometry": { "type": "Point", "coordinates": [ -0.3942226, 51.2613896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42504991" }, "bbox": [ 0.0400131, 51.2396135, 0.0400131, 51.2396135 ], "geometry": { "type": "Point", "coordinates": [ 0.0400131, 51.2396135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35531807" }, "bbox": [ -0.0638517, 51.2605364, -0.0638517, 51.2605364 ], "geometry": { "type": "Point", "coordinates": [ -0.0638517, 51.2605364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18395881" }, "bbox": [ -0.3061859, 51.1452621, -0.3061859, 51.1452621 ], "geometry": { "type": "Point", "coordinates": [ -0.3061859, 51.1452621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09409428" }, "bbox": [ -0.4293092, 51.1512849, -0.4293092, 51.1512849 ], "geometry": { "type": "Point", "coordinates": [ -0.4293092, 51.1512849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04432346" }, "bbox": [ -0.5103011, 51.180878, -0.5103011, 51.180878 ], "geometry": { "type": "Point", "coordinates": [ -0.5103011, 51.180878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06349926" }, "bbox": [ -0.4734071, 51.0976754, -0.4734071, 51.0976754 ], "geometry": { "type": "Point", "coordinates": [ -0.4734071, 51.0976754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18402662" }, "bbox": [ -0.3104659, 51.1525845, -0.3104659, 51.1525845 ], "geometry": { "type": "Point", "coordinates": [ -0.3104659, 51.1525845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01554784" }, "bbox": [ -0.5461029, 51.2926328, -0.5461029, 51.2926328 ], "geometry": { "type": "Point", "coordinates": [ -0.5461029, 51.2926328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40420104" }, "bbox": [ 0.0007251, 51.1605242, 0.0007251, 51.1605242 ], "geometry": { "type": "Point", "coordinates": [ 0.0007251, 51.1605242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06551183" }, "bbox": [ -0.4798212, 51.2916922, -0.4798212, 51.2916922 ], "geometry": { "type": "Point", "coordinates": [ -0.4798212, 51.2916922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05600695" }, "bbox": [ -0.4933762, 51.3378169, -0.4933762, 51.3378169 ], "geometry": { "type": "Point", "coordinates": [ -0.4933762, 51.3378169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15405124" }, "bbox": [ -0.3498465, 51.1497861, -0.3498465, 51.1497861 ], "geometry": { "type": "Point", "coordinates": [ -0.3498465, 51.1497861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20418679" }, "bbox": [ -0.2728324, 51.1626435, -0.2728324, 51.1626435 ], "geometry": { "type": "Point", "coordinates": [ -0.2728324, 51.1626435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24413435" }, "bbox": [ -0.223318, 51.1578725, -0.223318, 51.1578725 ], "geometry": { "type": "Point", "coordinates": [ -0.223318, 51.1578725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06499026" }, "bbox": [ -0.4704834, 51.232515, -0.4704834, 51.232515 ], "geometry": { "type": "Point", "coordinates": [ -0.4704834, 51.232515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02464978" }, "bbox": [ -0.5340761, 51.2110688, -0.5340761, 51.2110688 ], "geometry": { "type": "Point", "coordinates": [ -0.5340761, 51.2110688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34493002" }, "bbox": [ -0.078264, 51.2245466, -0.078264, 51.2245466 ], "geometry": { "type": "Point", "coordinates": [ -0.078264, 51.2245466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05475857" }, "bbox": [ -0.4896859, 51.2179932, -0.4896859, 51.2179932 ], "geometry": { "type": "Point", "coordinates": [ -0.4896859, 51.2179932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26468460" }, "bbox": [ -0.1855007, 51.2045038, -0.1855007, 51.2045038 ], "geometry": { "type": "Point", "coordinates": [ -0.1855007, 51.2045038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14596623" }, "bbox": [ -0.3559982, 51.3205182, -0.3559982, 51.3205182 ], "geometry": { "type": "Point", "coordinates": [ -0.3559982, 51.3205182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36607221" }, "bbox": [ -0.0394011, 51.3245658, -0.0394011, 51.3245658 ], "geometry": { "type": "Point", "coordinates": [ -0.0394011, 51.3245658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02573230" }, "bbox": [ -0.5334445, 51.3056446, -0.5334445, 51.3056446 ], "geometry": { "type": "Point", "coordinates": [ -0.5334445, 51.3056446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20468466" }, "bbox": [ -0.2714561, 51.2063967, -0.2714561, 51.2063967 ], "geometry": { "type": "Point", "coordinates": [ -0.2714561, 51.2063967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37509536" }, "bbox": [ -0.0254326, 51.2357308, -0.0254326, 51.2357308 ], "geometry": { "type": "Point", "coordinates": [ -0.0254326, 51.2357308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570131" }, "bbox": [ -0.4376647, 51.3044253, -0.4376647, 51.3044253 ], "geometry": { "type": "Point", "coordinates": [ -0.4376647, 51.3044253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31412190" }, "bbox": [ -0.1249286, 51.1613987, -0.1249286, 51.1613987 ], "geometry": { "type": "Point", "coordinates": [ -0.1249286, 51.1613987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13379640" }, "bbox": [ -0.3732566, 51.1244257, -0.3732566, 51.1244257 ], "geometry": { "type": "Point", "coordinates": [ -0.3732566, 51.1244257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15422883" }, "bbox": [ -0.3522497, 51.1730189, -0.3522497, 51.1730189 ], "geometry": { "type": "Point", "coordinates": [ -0.3522497, 51.1730189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04620467" }, "bbox": [ -0.5072366, 51.3535949, -0.5072366, 51.3535949 ], "geometry": { "type": "Point", "coordinates": [ -0.5072366, 51.3535949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32493543" }, "bbox": [ -0.1059142, 51.2287071, -0.1059142, 51.2287071 ], "geometry": { "type": "Point", "coordinates": [ -0.1059142, 51.2287071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24427124" }, "bbox": [ -0.2177002, 51.1658196, -0.2177002, 51.1658196 ], "geometry": { "type": "Point", "coordinates": [ -0.2177002, 51.1658196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416152" }, "bbox": [ -0.519865, 51.163529, -0.519865, 51.163529 ], "geometry": { "type": "Point", "coordinates": [ -0.519865, 51.163529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15397505" }, "bbox": [ -0.3469049, 51.139055, -0.3469049, 51.139055 ], "geometry": { "type": "Point", "coordinates": [ -0.3469049, 51.139055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34437701" }, "bbox": [ -0.0735676, 51.1705479, -0.0735676, 51.1705479 ], "geometry": { "type": "Point", "coordinates": [ -0.0735676, 51.1705479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39549707" }, "bbox": [ 0.0053001, 51.2685409, 0.0053001, 51.2685409 ], "geometry": { "type": "Point", "coordinates": [ 0.0053001, 51.2685409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17468270" }, "bbox": [ -0.314709, 51.207216, -0.314709, 51.207216 ], "geometry": { "type": "Point", "coordinates": [ -0.314709, 51.207216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02360184" }, "bbox": [ -0.5438233, 51.1217866, -0.5438233, 51.1217866 ], "geometry": { "type": "Point", "coordinates": [ -0.5438233, 51.1217866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15649318" }, "bbox": [ -0.3361646, 51.3648464, -0.3361646, 51.3648464 ], "geometry": { "type": "Point", "coordinates": [ -0.3361646, 51.3648464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05544956" }, "bbox": [ -0.488909, 51.2805005, -0.488909, 51.2805005 ], "geometry": { "type": "Point", "coordinates": [ -0.488909, 51.2805005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25545004" }, "bbox": [ -0.202369, 51.2715258, -0.202369, 51.2715258 ], "geometry": { "type": "Point", "coordinates": [ -0.202369, 51.2715258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38447645" }, "bbox": [ -0.0160367, 51.1824741, -0.0160367, 51.1824741 ], "geometry": { "type": "Point", "coordinates": [ -0.0160367, 51.1824741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22489756" }, "bbox": [ -0.2400883, 51.2229882, -0.2400883, 51.2229882 ], "geometry": { "type": "Point", "coordinates": [ -0.2400883, 51.2229882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510874" }, "bbox": [ -0.467817, 51.2547483, -0.467817, 51.2547483 ], "geometry": { "type": "Point", "coordinates": [ -0.467817, 51.2547483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08538507" }, "bbox": [ -0.4410384, 51.2664546, -0.4410384, 51.2664546 ], "geometry": { "type": "Point", "coordinates": [ -0.4410384, 51.2664546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415812" }, "bbox": [ -0.4629261, 51.1593155, -0.4629261, 51.1593155 ], "geometry": { "type": "Point", "coordinates": [ -0.4629261, 51.1593155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23457161" }, "bbox": [ -0.2308212, 51.1965201, -0.2308212, 51.1965201 ], "geometry": { "type": "Point", "coordinates": [ -0.2308212, 51.1965201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23412451" }, "bbox": [ -0.2389917, 51.159687, -0.2389917, 51.159687 ], "geometry": { "type": "Point", "coordinates": [ -0.2389917, 51.159687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22426498" }, "bbox": [ -0.2470855, 51.1728044, -0.2470855, 51.1728044 ], "geometry": { "type": "Point", "coordinates": [ -0.2470855, 51.1728044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29456823" }, "bbox": [ -0.1458251, 51.1914679, -0.1458251, 51.1914679 ], "geometry": { "type": "Point", "coordinates": [ -0.1458251, 51.1914679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08399509" }, "bbox": [ -0.4439262, 51.1407925, -0.4439262, 51.1407925 ], "geometry": { "type": "Point", "coordinates": [ -0.4439262, 51.1407925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10351410" }, "bbox": [ -0.4280969, 51.1046588, -0.4280969, 51.1046588 ], "geometry": { "type": "Point", "coordinates": [ -0.4280969, 51.1046588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570245" }, "bbox": [ -0.4374005, 51.3057288, -0.4374005, 51.3057288 ], "geometry": { "type": "Point", "coordinates": [ -0.4374005, 51.3057288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16522375" }, "bbox": [ -0.3353481, 51.2621501, -0.3353481, 51.2621501 ], "geometry": { "type": "Point", "coordinates": [ -0.3353481, 51.2621501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18393520" }, "bbox": [ -0.3095688, 51.1398764, -0.3095688, 51.1398764 ], "geometry": { "type": "Point", "coordinates": [ -0.3095688, 51.1398764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35416498" }, "bbox": [ -0.0616098, 51.1609808, -0.0616098, 51.1609808 ], "geometry": { "type": "Point", "coordinates": [ -0.0616098, 51.1609808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400475" }, "bbox": [ -0.3993354, 51.1550177, -0.3993354, 51.1550177 ], "geometry": { "type": "Point", "coordinates": [ -0.3993354, 51.1550177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08341471" }, "bbox": [ -0.4568174, 51.1010764, -0.4568174, 51.1010764 ], "geometry": { "type": "Point", "coordinates": [ -0.4568174, 51.1010764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36579294" }, "bbox": [ -0.0379971, 51.3042248, -0.0379971, 51.3042248 ], "geometry": { "type": "Point", "coordinates": [ -0.0379971, 51.3042248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404242" }, "bbox": [ -0.4225565, 51.1524287, -0.4225565, 51.1524287 ], "geometry": { "type": "Point", "coordinates": [ -0.4225565, 51.1524287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35455103" }, "bbox": [ -0.0623838, 51.1882496, -0.0623838, 51.1882496 ], "geometry": { "type": "Point", "coordinates": [ -0.0623838, 51.1882496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19569922" }, "bbox": [ -0.2806364, 51.2924766, -0.2806364, 51.2924766 ], "geometry": { "type": "Point", "coordinates": [ -0.2806364, 51.2924766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27521375" }, "bbox": [ -0.179395, 51.2599844, -0.179395, 51.2599844 ], "geometry": { "type": "Point", "coordinates": [ -0.179395, 51.2599844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13419757" }, "bbox": [ -0.3711516, 51.1621208, -0.3711516, 51.1621208 ], "geometry": { "type": "Point", "coordinates": [ -0.3711516, 51.1621208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06374943" }, "bbox": [ -0.4784298, 51.1269495, -0.4784298, 51.1269495 ], "geometry": { "type": "Point", "coordinates": [ -0.4784298, 51.1269495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543867" }, "bbox": [ -0.5620948, 51.2823284, -0.5620948, 51.2823284 ], "geometry": { "type": "Point", "coordinates": [ -0.5620948, 51.2823284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31498333" }, "bbox": [ -0.1133168, 51.2279005, -0.1133168, 51.2279005 ], "geometry": { "type": "Point", "coordinates": [ -0.1133168, 51.2279005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05446903" }, "bbox": [ -0.4889586, 51.1859696, -0.4889586, 51.1859696 ], "geometry": { "type": "Point", "coordinates": [ -0.4889586, 51.1859696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36501446" }, "bbox": [ -0.0513345, 51.2371199, -0.0513345, 51.2371199 ], "geometry": { "type": "Point", "coordinates": [ -0.0513345, 51.2371199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36442246" }, "bbox": [ -0.0523004, 51.1831998, -0.0523004, 51.1831998 ], "geometry": { "type": "Point", "coordinates": [ -0.0523004, 51.1831998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11408515" }, "bbox": [ -0.4021539, 51.1497184, -0.4021539, 51.1497184 ], "geometry": { "type": "Point", "coordinates": [ -0.4021539, 51.1497184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05544550" }, "bbox": [ -0.4894514, 51.279845, -0.4894514, 51.279845 ], "geometry": { "type": "Point", "coordinates": [ -0.4894514, 51.279845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41510450" }, "bbox": [ 0.0192494, 51.2452111, 0.0192494, 51.2452111 ], "geometry": { "type": "Point", "coordinates": [ 0.0192494, 51.2452111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587593" }, "bbox": [ -0.5124513, 51.3200646, -0.5124513, 51.3200646 ], "geometry": { "type": "Point", "coordinates": [ -0.5124513, 51.3200646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37557473" }, "bbox": [ -0.0262595, 51.2840822, -0.0262595, 51.2840822 ], "geometry": { "type": "Point", "coordinates": [ -0.0262595, 51.2840822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16513249" }, "bbox": [ -0.3346597, 51.250708, -0.3346597, 51.250708 ], "geometry": { "type": "Point", "coordinates": [ -0.3346597, 51.250708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05525590" }, "bbox": [ -0.488528, 51.2655257, -0.488528, 51.2655257 ], "geometry": { "type": "Point", "coordinates": [ -0.488528, 51.2655257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11529873" }, "bbox": [ -0.3963441, 51.2628131, -0.3963441, 51.2628131 ], "geometry": { "type": "Point", "coordinates": [ -0.3963441, 51.2628131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11443135" }, "bbox": [ -0.4086975, 51.1875369, -0.4086975, 51.1875369 ], "geometry": { "type": "Point", "coordinates": [ -0.4086975, 51.1875369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412196" }, "bbox": [ 0.0323983, 51.1592294, 0.0323983, 51.1592294 ], "geometry": { "type": "Point", "coordinates": [ 0.0323983, 51.1592294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523739" }, "bbox": [ -0.3911456, 51.2596863, -0.3911456, 51.2596863 ], "geometry": { "type": "Point", "coordinates": [ -0.3911456, 51.2596863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41550275" }, "bbox": [ 0.020466, 51.2834959, 0.020466, 51.2834959 ], "geometry": { "type": "Point", "coordinates": [ 0.020466, 51.2834959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15463640" }, "bbox": [ -0.3502289, 51.2051618, -0.3502289, 51.2051618 ], "geometry": { "type": "Point", "coordinates": [ -0.3502289, 51.2051618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38599904" }, "bbox": [ -0.0069902, 51.3135196, -0.0069902, 51.3135196 ], "geometry": { "type": "Point", "coordinates": [ -0.0069902, 51.3135196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22468616" }, "bbox": [ -0.2428096, 51.2014472, -0.2428096, 51.2014472 ], "geometry": { "type": "Point", "coordinates": [ -0.2428096, 51.2014472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21465501" }, "bbox": [ -0.2615058, 51.2003115, -0.2615058, 51.2003115 ], "geometry": { "type": "Point", "coordinates": [ -0.2615058, 51.2003115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24493312" }, "bbox": [ -0.220753, 51.2276997, -0.220753, 51.2276997 ], "geometry": { "type": "Point", "coordinates": [ -0.220753, 51.2276997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22488258" }, "bbox": [ -0.242832, 51.2232647, -0.242832, 51.2232647 ], "geometry": { "type": "Point", "coordinates": [ -0.242832, 51.2232647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39535483" }, "bbox": [ -0.00163, 51.2665308, -0.00163, 51.2665308 ], "geometry": { "type": "Point", "coordinates": [ -0.00163, 51.2665308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15373998" }, "bbox": [ -0.3525101, 51.1296457, -0.3525101, 51.1296457 ], "geometry": { "type": "Point", "coordinates": [ -0.3525101, 51.1296457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01463445" }, "bbox": [ -0.5507541, 51.2082179, -0.5507541, 51.2082179 ], "geometry": { "type": "Point", "coordinates": [ -0.5507541, 51.2082179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18393659" }, "bbox": [ -0.3094798, 51.1434316, -0.3094798, 51.1434316 ], "geometry": { "type": "Point", "coordinates": [ -0.3094798, 51.1434316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27459664" }, "bbox": [ -0.1698532, 51.1957696, -0.1698532, 51.1957696 ], "geometry": { "type": "Point", "coordinates": [ -0.1698532, 51.1957696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02403840" }, "bbox": [ -0.537381, 51.1537575, -0.537381, 51.1537575 ], "geometry": { "type": "Point", "coordinates": [ -0.537381, 51.1537575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18498036" }, "bbox": [ -0.2999244, 51.2309273, -0.2999244, 51.2309273 ], "geometry": { "type": "Point", "coordinates": [ -0.2999244, 51.2309273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32496204" }, "bbox": [ -0.1021148, 51.225111, -0.1021148, 51.225111 ], "geometry": { "type": "Point", "coordinates": [ -0.1021148, 51.225111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42431431" }, "bbox": [ 0.0318557, 51.1713627, 0.0318557, 51.1713627 ], "geometry": { "type": "Point", "coordinates": [ 0.0318557, 51.1713627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15473540" }, "bbox": [ -0.3499921, 51.214283, -0.3499921, 51.214283 ], "geometry": { "type": "Point", "coordinates": [ -0.3499921, 51.214283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15414099" }, "bbox": [ -0.3505489, 51.1655994, -0.3505489, 51.1655994 ], "geometry": { "type": "Point", "coordinates": [ -0.3505489, 51.1655994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25410766" }, "bbox": [ -0.2127023, 51.1607537, -0.2127023, 51.1607537 ], "geometry": { "type": "Point", "coordinates": [ -0.2127023, 51.1607537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10474143" }, "bbox": [ -0.4207637, 51.2153627, -0.4207637, 51.2153627 ], "geometry": { "type": "Point", "coordinates": [ -0.4207637, 51.2153627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18449510" }, "bbox": [ -0.299622, 51.1837845, -0.299622, 51.1837845 ], "geometry": { "type": "Point", "coordinates": [ -0.299622, 51.1837845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04528833" }, "bbox": [ -0.4980156, 51.260457, -0.4980156, 51.260457 ], "geometry": { "type": "Point", "coordinates": [ -0.4980156, 51.260457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32486036" }, "bbox": [ -0.1019256, 51.2191331, -0.1019256, 51.2191331 ], "geometry": { "type": "Point", "coordinates": [ -0.1019256, 51.2191331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27522356" }, "bbox": [ -0.1779301, 51.2581082, -0.1779301, 51.2581082 ], "geometry": { "type": "Point", "coordinates": [ -0.1779301, 51.2581082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26444918" }, "bbox": [ -0.1910083, 51.1837043, -0.1910083, 51.1837043 ], "geometry": { "type": "Point", "coordinates": [ -0.1910083, 51.1837043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07447795" }, "bbox": [ -0.459076, 51.1936611, -0.459076, 51.1936611 ], "geometry": { "type": "Point", "coordinates": [ -0.459076, 51.1936611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23519645" }, "bbox": [ -0.2251061, 51.2486116, -0.2251061, 51.2486116 ], "geometry": { "type": "Point", "coordinates": [ -0.2251061, 51.2486116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01333490" }, "bbox": [ -0.5540415, 51.0954791, -0.5540415, 51.0954791 ], "geometry": { "type": "Point", "coordinates": [ -0.5540415, 51.0954791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11396476" }, "bbox": [ -0.4051629, 51.1463128, -0.4051629, 51.1463128 ], "geometry": { "type": "Point", "coordinates": [ -0.4051629, 51.1463128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16454220" }, "bbox": [ -0.3353938, 51.1942144, -0.3353938, 51.1942144 ], "geometry": { "type": "Point", "coordinates": [ -0.3353938, 51.1942144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33450306" }, "bbox": [ -0.0975664, 51.1893354, -0.0975664, 51.1893354 ], "geometry": { "type": "Point", "coordinates": [ -0.0975664, 51.1893354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33490846" }, "bbox": [ -0.0959144, 51.2290988, -0.0959144, 51.2290988 ], "geometry": { "type": "Point", "coordinates": [ -0.0959144, 51.2290988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02419381" }, "bbox": [ -0.5292479, 51.1663158, -0.5292479, 51.1663158 ], "geometry": { "type": "Point", "coordinates": [ -0.5292479, 51.1663158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440039" }, "bbox": [ -0.3270352, 51.1869629, -0.3270352, 51.1869629 ], "geometry": { "type": "Point", "coordinates": [ -0.3270352, 51.1869629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35524872" }, "bbox": [ -0.059854, 51.2575161, -0.059854, 51.2575161 ], "geometry": { "type": "Point", "coordinates": [ -0.059854, 51.2575161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12420865" }, "bbox": [ -0.3982519, 51.1719941, -0.3982519, 51.1719941 ], "geometry": { "type": "Point", "coordinates": [ -0.3982519, 51.1719941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01405465" }, "bbox": [ -0.5494638, 51.1563055, -0.5494638, 51.1563055 ], "geometry": { "type": "Point", "coordinates": [ -0.5494638, 51.1563055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24522373" }, "bbox": [ -0.2209072, 51.2602065, -0.2209072, 51.2602065 ], "geometry": { "type": "Point", "coordinates": [ -0.2209072, 51.2602065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40448030" }, "bbox": [ 0.0130505, 51.1806688, 0.0130505, 51.1806688 ], "geometry": { "type": "Point", "coordinates": [ 0.0130505, 51.1806688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13373383" }, "bbox": [ -0.3814361, 51.1285317, -0.3814361, 51.1285317 ], "geometry": { "type": "Point", "coordinates": [ -0.3814361, 51.1285317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23628908" }, "bbox": [ -0.2225085, 51.3443359, -0.2225085, 51.3443359 ], "geometry": { "type": "Point", "coordinates": [ -0.2225085, 51.3443359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15396235" }, "bbox": [ -0.3485322, 51.1417143, -0.3485322, 51.1417143 ], "geometry": { "type": "Point", "coordinates": [ -0.3485322, 51.1417143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41470181" }, "bbox": [ 0.0169511, 51.2120734, 0.0169511, 51.2120734 ], "geometry": { "type": "Point", "coordinates": [ 0.0169511, 51.2120734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06560905" }, "bbox": [ -0.4798028, 51.2937519, -0.4798028, 51.2937519 ], "geometry": { "type": "Point", "coordinates": [ -0.4798028, 51.2937519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40517865" }, "bbox": [ 0.0156715, 51.2464274, 0.0156715, 51.2464274 ], "geometry": { "type": "Point", "coordinates": [ 0.0156715, 51.2464274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19381737" }, "bbox": [ -0.2989291, 51.1314473, -0.2989291, 51.1314473 ], "geometry": { "type": "Point", "coordinates": [ -0.2989291, 51.1314473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22436021" }, "bbox": [ -0.2475305, 51.1749897, -0.2475305, 51.1749897 ], "geometry": { "type": "Point", "coordinates": [ -0.2475305, 51.1749897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25438407" }, "bbox": [ -0.2011483, 51.1730067, -0.2011483, 51.1730067 ], "geometry": { "type": "Point", "coordinates": [ -0.2011483, 51.1730067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498285" }, "bbox": [ -0.0707657, 51.2319394, -0.0707657, 51.2319394 ], "geometry": { "type": "Point", "coordinates": [ -0.0707657, 51.2319394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31472380" }, "bbox": [ -0.1226213, 51.2147683, -0.1226213, 51.2147683 ], "geometry": { "type": "Point", "coordinates": [ -0.1226213, 51.2147683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20506977" }, "bbox": [ -0.2722237, 51.2433929, -0.2722237, 51.2433929 ], "geometry": { "type": "Point", "coordinates": [ -0.2722237, 51.2433929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39569249" }, "bbox": [ 0.0053624, 51.290577, 0.0053624, 51.290577 ], "geometry": { "type": "Point", "coordinates": [ 0.0053624, 51.290577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21425782" }, "bbox": [ -0.2623098, 51.1717824, -0.2623098, 51.1717824 ], "geometry": { "type": "Point", "coordinates": [ -0.2623098, 51.1717824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19385858" }, "bbox": [ -0.2923656, 51.1341015, -0.2923656, 51.1341015 ], "geometry": { "type": "Point", "coordinates": [ -0.2923656, 51.1341015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13480586" }, "bbox": [ -0.3827711, 51.2278181, -0.3827711, 51.2278181 ], "geometry": { "type": "Point", "coordinates": [ -0.3827711, 51.2278181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19578740" }, "bbox": [ -0.2816855, 51.304163, -0.2816855, 51.304163 ], "geometry": { "type": "Point", "coordinates": [ -0.2816855, 51.304163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35443505" }, "bbox": [ -0.0650029, 51.1797841, -0.0650029, 51.1797841 ], "geometry": { "type": "Point", "coordinates": [ -0.0650029, 51.1797841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17475709" }, "bbox": [ -0.3180887, 51.2110079, -0.3180887, 51.2110079 ], "geometry": { "type": "Point", "coordinates": [ -0.3180887, 51.2110079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05364258" }, "bbox": [ -0.4953127, 51.1186845, -0.4953127, 51.1186845 ], "geometry": { "type": "Point", "coordinates": [ -0.4953127, 51.1186845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08411899" }, "bbox": [ -0.4540913, 51.1669739, -0.4540913, 51.1669739 ], "geometry": { "type": "Point", "coordinates": [ -0.4540913, 51.1669739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35432418" }, "bbox": [ -0.0670159, 51.1720587, -0.0670159, 51.1720587 ], "geometry": { "type": "Point", "coordinates": [ -0.0670159, 51.1720587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28550141" }, "bbox": [ -0.1660382, 51.2836296, -0.1660382, 51.2836296 ], "geometry": { "type": "Point", "coordinates": [ -0.1660382, 51.2836296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08533671" }, "bbox": [ -0.4480098, 51.2720859, -0.4480098, 51.2720859 ], "geometry": { "type": "Point", "coordinates": [ -0.4480098, 51.2720859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566267" }, "bbox": [ -0.2855471, 51.2966169, -0.2855471, 51.2966169 ], "geometry": { "type": "Point", "coordinates": [ -0.2855471, 51.2966169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10461997" }, "bbox": [ -0.4244504, 51.210182, -0.4244504, 51.210182 ], "geometry": { "type": "Point", "coordinates": [ -0.4244504, 51.210182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09461860" }, "bbox": [ -0.4383325, 51.2081921, -0.4383325, 51.2081921 ], "geometry": { "type": "Point", "coordinates": [ -0.4383325, 51.2081921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08532939" }, "bbox": [ -0.4490022, 51.2693925, -0.4490022, 51.2693925 ], "geometry": { "type": "Point", "coordinates": [ -0.4490022, 51.2693925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38441188" }, "bbox": [ -0.0256979, 51.1862166, -0.0256979, 51.1862166 ], "geometry": { "type": "Point", "coordinates": [ -0.0256979, 51.1862166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30509617" }, "bbox": [ -0.1255544, 51.2357009, -0.1255544, 51.2357009 ], "geometry": { "type": "Point", "coordinates": [ -0.1255544, 51.2357009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02749107" }, "bbox": [ -0.519158, 51.4615549, -0.519158, 51.4615549 ], "geometry": { "type": "Point", "coordinates": [ -0.519158, 51.4615549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31421211" }, "bbox": [ -0.1261403, 51.1632553, -0.1261403, 51.1632553 ], "geometry": { "type": "Point", "coordinates": [ -0.1261403, 51.1632553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31425006" }, "bbox": [ -0.1206702, 51.162742, -0.1206702, 51.162742 ], "geometry": { "type": "Point", "coordinates": [ -0.1206702, 51.162742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18404985" }, "bbox": [ -0.3071311, 51.1548266, -0.3071311, 51.1548266 ], "geometry": { "type": "Point", "coordinates": [ -0.3071311, 51.1548266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42522445" }, "bbox": [ 0.0368163, 51.2534639, 0.0368163, 51.2534639 ], "geometry": { "type": "Point", "coordinates": [ 0.0368163, 51.2534639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21457968" }, "bbox": [ -0.2582248, 51.1974522, -0.2582248, 51.1974522 ], "geometry": { "type": "Point", "coordinates": [ -0.2582248, 51.1974522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03640956" }, "bbox": [ -0.5206374, 51.3709453, -0.5206374, 51.3709453 ], "geometry": { "type": "Point", "coordinates": [ -0.5206374, 51.3709453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36579277" }, "bbox": [ -0.0369472, 51.3024447, -0.0369472, 51.3024447 ], "geometry": { "type": "Point", "coordinates": [ -0.0369472, 51.3024447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02669205" }, "bbox": [ -0.5225433, 51.3840563, -0.5225433, 51.3840563 ], "geometry": { "type": "Point", "coordinates": [ -0.5225433, 51.3840563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04476251" }, "bbox": [ -0.5034093, 51.2173037, -0.5034093, 51.2173037 ], "geometry": { "type": "Point", "coordinates": [ -0.5034093, 51.2173037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01433971" }, "bbox": [ -0.5507883, 51.1836158, -0.5507883, 51.1836158 ], "geometry": { "type": "Point", "coordinates": [ -0.5507883, 51.1836158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39443614" }, "bbox": [ -0.0075809, 51.1795507, -0.0075809, 51.1795507 ], "geometry": { "type": "Point", "coordinates": [ -0.0075809, 51.1795507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05567978" }, "bbox": [ -0.4835197, 51.3008542, -0.4835197, 51.3008542 ], "geometry": { "type": "Point", "coordinates": [ -0.4835197, 51.3008542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26437377" }, "bbox": [ -0.1883458, 51.1793999, -0.1883458, 51.1793999 ], "geometry": { "type": "Point", "coordinates": [ -0.1883458, 51.1793999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39579844" }, "bbox": [ 0.006585, 51.2990364, 0.006585, 51.2990364 ], "geometry": { "type": "Point", "coordinates": [ 0.006585, 51.2990364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09573198" }, "bbox": [ -0.4329974, 51.3104687, -0.4329974, 51.3104687 ], "geometry": { "type": "Point", "coordinates": [ -0.4329974, 51.3104687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11532029" }, "bbox": [ -0.4074385, 51.2684001, -0.4074385, 51.2684001 ], "geometry": { "type": "Point", "coordinates": [ -0.4074385, 51.2684001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42490953" }, "bbox": [ 0.0334619, 51.2271811, 0.0334619, 51.2271811 ], "geometry": { "type": "Point", "coordinates": [ 0.0334619, 51.2271811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29492446" }, "bbox": [ -0.150335, 51.2297371, -0.150335, 51.2297371 ], "geometry": { "type": "Point", "coordinates": [ -0.150335, 51.2297371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03342299" }, "bbox": [ -0.5268553, 51.1048967, -0.5268553, 51.1048967 ], "geometry": { "type": "Point", "coordinates": [ -0.5268553, 51.1048967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08402462" }, "bbox": [ -0.4535528, 51.1545158, -0.4535528, 51.1545158 ], "geometry": { "type": "Point", "coordinates": [ -0.4535528, 51.1545158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15436405" }, "bbox": [ -0.3473534, 51.175045, -0.3473534, 51.175045 ], "geometry": { "type": "Point", "coordinates": [ -0.3473534, 51.175045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14468254" }, "bbox": [ -0.3577066, 51.2065843, -0.3577066, 51.2065843 ], "geometry": { "type": "Point", "coordinates": [ -0.3577066, 51.2065843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524338" }, "bbox": [ -0.2324884, 51.2572326, -0.2324884, 51.2572326 ], "geometry": { "type": "Point", "coordinates": [ -0.2324884, 51.2572326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37602520" }, "bbox": [ -0.0316376, 51.3243922, -0.0316376, 51.3243922 ], "geometry": { "type": "Point", "coordinates": [ -0.0316376, 51.3243922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30437291" }, "bbox": [ -0.1314132, 51.1794998, -0.1314132, 51.1794998 ], "geometry": { "type": "Point", "coordinates": [ -0.1314132, 51.1794998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19560416" }, "bbox": [ -0.2943935, 51.2922032, -0.2943935, 51.2922032 ], "geometry": { "type": "Point", "coordinates": [ -0.2943935, 51.2922032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02709604" }, "bbox": [ -0.5204694, 51.4200836, -0.5204694, 51.4200836 ], "geometry": { "type": "Point", "coordinates": [ -0.5204694, 51.4200836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38462403" }, "bbox": [ -0.0227075, 51.1966565, -0.0227075, 51.1966565 ], "geometry": { "type": "Point", "coordinates": [ -0.0227075, 51.1966565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12481288" }, "bbox": [ -0.3954624, 51.2282711, -0.3954624, 51.2282711 ], "geometry": { "type": "Point", "coordinates": [ -0.3954624, 51.2282711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24465428" }, "bbox": [ -0.218817, 51.2021999, -0.218817, 51.2021999 ], "geometry": { "type": "Point", "coordinates": [ -0.218817, 51.2021999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36440174" }, "bbox": [ -0.0552561, 51.1857228, -0.0552561, 51.1857228 ], "geometry": { "type": "Point", "coordinates": [ -0.0552561, 51.1857228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30444707" }, "bbox": [ -0.1347436, 51.1808851, -0.1347436, 51.1808851 ], "geometry": { "type": "Point", "coordinates": [ -0.1347436, 51.1808851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36441169" }, "bbox": [ -0.0537862, 51.1853107, -0.0537862, 51.1853107 ], "geometry": { "type": "Point", "coordinates": [ -0.0537862, 51.1853107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09431848" }, "bbox": [ -0.4389621, 51.1798964, -0.4389621, 51.1798964 ], "geometry": { "type": "Point", "coordinates": [ -0.4389621, 51.1798964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17370162" }, "bbox": [ -0.3294256, 51.1256428, -0.3294256, 51.1256428 ], "geometry": { "type": "Point", "coordinates": [ -0.3294256, 51.1256428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06647065" }, "bbox": [ -0.4685958, 51.3709216, -0.4685958, 51.3709216 ], "geometry": { "type": "Point", "coordinates": [ -0.4685958, 51.3709216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42500506" }, "bbox": [ 0.0331906, 51.2321183, 0.0331906, 51.2321183 ], "geometry": { "type": "Point", "coordinates": [ 0.0331906, 51.2321183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32427919" }, "bbox": [ -0.1023366, 51.1632193, -0.1023366, 51.1632193 ], "geometry": { "type": "Point", "coordinates": [ -0.1023366, 51.1632193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34425970" }, "bbox": [ -0.0763724, 51.1676871, -0.0763724, 51.1676871 ], "geometry": { "type": "Point", "coordinates": [ -0.0763724, 51.1676871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22462939" }, "bbox": [ -0.2508625, 51.2036991, -0.2508625, 51.2036991 ], "geometry": { "type": "Point", "coordinates": [ -0.2508625, 51.2036991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450291" }, "bbox": [ -0.0261296, 51.1957633, -0.0261296, 51.1957633 ], "geometry": { "type": "Point", "coordinates": [ -0.0261296, 51.1957633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24480179" }, "bbox": [ -0.225072, 51.2244053, -0.225072, 51.2244053 ], "geometry": { "type": "Point", "coordinates": [ -0.225072, 51.2244053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567901" }, "bbox": [ -0.2976857, 51.2908938, -0.2976857, 51.2908938 ], "geometry": { "type": "Point", "coordinates": [ -0.2976857, 51.2908938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412171" }, "bbox": [ 0.032187, 51.1570246, 0.032187, 51.1570246 ], "geometry": { "type": "Point", "coordinates": [ 0.032187, 51.1570246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38448678" }, "bbox": [ -0.0145255, 51.1853042, -0.0145255, 51.1853042 ], "geometry": { "type": "Point", "coordinates": [ -0.0145255, 51.1853042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14381652" }, "bbox": [ -0.3698768, 51.1345241, -0.3698768, 51.1345241 ], "geometry": { "type": "Point", "coordinates": [ -0.3698768, 51.1345241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10409116" }, "bbox": [ -0.4156369, 51.149992, -0.4156369, 51.149992 ], "geometry": { "type": "Point", "coordinates": [ -0.4156369, 51.149992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15409640" }, "bbox": [ -0.3429846, 51.1510948, -0.3429846, 51.1510948 ], "geometry": { "type": "Point", "coordinates": [ -0.3429846, 51.1510948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18481074" }, "bbox": [ -0.3099834, 51.2255332, -0.3099834, 51.2255332 ], "geometry": { "type": "Point", "coordinates": [ -0.3099834, 51.2255332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34437040" }, "bbox": [ -0.0737649, 51.1737989, -0.0737649, 51.1737989 ], "geometry": { "type": "Point", "coordinates": [ -0.0737649, 51.1737989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07388434" }, "bbox": [ -0.4600783, 51.1341787, -0.4600783, 51.1341787 ], "geometry": { "type": "Point", "coordinates": [ -0.4600783, 51.1341787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34492024" }, "bbox": [ -0.0794691, 51.2264813, -0.0794691, 51.2264813 ], "geometry": { "type": "Point", "coordinates": [ -0.0794691, 51.2264813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35472957" }, "bbox": [ -0.0641374, 51.2113373, -0.0641374, 51.2113373 ], "geometry": { "type": "Point", "coordinates": [ -0.0641374, 51.2113373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36481926" }, "bbox": [ -0.051669, 51.2173731, -0.051669, 51.2173731 ], "geometry": { "type": "Point", "coordinates": [ -0.051669, 51.2173731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22412220" }, "bbox": [ -0.2535955, 51.1569834, -0.2535955, 51.1569834 ], "geometry": { "type": "Point", "coordinates": [ -0.2535955, 51.1569834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42536053" }, "bbox": [ 0.0425279, 51.2628396, 0.0425279, 51.2628396 ], "geometry": { "type": "Point", "coordinates": [ 0.0425279, 51.2628396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33434424" }, "bbox": [ -0.0925411, 51.1729094, -0.0925411, 51.1729094 ], "geometry": { "type": "Point", "coordinates": [ -0.0925411, 51.1729094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08524866" }, "bbox": [ -0.4457805, 51.2628119, -0.4457805, 51.2628119 ], "geometry": { "type": "Point", "coordinates": [ -0.4457805, 51.2628119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29499551" }, "bbox": [ -0.1400692, 51.2299974, -0.1400692, 51.2299974 ], "geometry": { "type": "Point", "coordinates": [ -0.1400692, 51.2299974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33476062" }, "bbox": [ -0.0888988, 51.2121032, -0.0888988, 51.2121032 ], "geometry": { "type": "Point", "coordinates": [ -0.0888988, 51.2121032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04410110" }, "bbox": [ -0.5145603, 51.1597676, -0.5145603, 51.1597676 ], "geometry": { "type": "Point", "coordinates": [ -0.5145603, 51.1597676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14639887" }, "bbox": [ -0.349758, 51.3622761, -0.349758, 51.3622761 ], "geometry": { "type": "Point", "coordinates": [ -0.349758, 51.3622761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31447485" }, "bbox": [ -0.1163735, 51.1872928, -0.1163735, 51.1872928 ], "geometry": { "type": "Point", "coordinates": [ -0.1163735, 51.1872928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21484848" }, "bbox": [ -0.2618642, 51.2225883, -0.2618642, 51.2225883 ], "geometry": { "type": "Point", "coordinates": [ -0.2618642, 51.2225883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34495036" }, "bbox": [ -0.074721, 51.2278252, -0.074721, 51.2278252 ], "geometry": { "type": "Point", "coordinates": [ -0.074721, 51.2278252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428901" }, "bbox": [ -0.0866359, 51.161689, -0.0866359, 51.161689 ], "geometry": { "type": "Point", "coordinates": [ -0.0866359, 51.161689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37570296" }, "bbox": [ -0.035673, 51.3042996, -0.035673, 51.3042996 ], "geometry": { "type": "Point", "coordinates": [ -0.035673, 51.3042996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33429314" }, "bbox": [ -0.0860901, 51.1629227, -0.0860901, 51.1629227 ], "geometry": { "type": "Point", "coordinates": [ -0.0860901, 51.1629227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40518905" }, "bbox": [ 0.0169153, 51.2413707, 0.0169153, 51.2413707 ], "geometry": { "type": "Point", "coordinates": [ 0.0169153, 51.2413707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14425963" }, "bbox": [ -0.3622364, 51.1714867, -0.3622364, 51.1714867 ], "geometry": { "type": "Point", "coordinates": [ -0.3622364, 51.1714867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30408993" }, "bbox": [ -0.1298428, 51.1526682, -0.1298428, 51.1526682 ], "geometry": { "type": "Point", "coordinates": [ -0.1298428, 51.1526682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24490307" }, "bbox": [ -0.2253879, 51.2268158, -0.2253879, 51.2268158 ], "geometry": { "type": "Point", "coordinates": [ -0.2253879, 51.2268158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02430198" }, "bbox": [ -0.5417616, 51.1858452, -0.5417616, 51.1858452 ], "geometry": { "type": "Point", "coordinates": [ -0.5417616, 51.1858452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19429963" }, "bbox": [ -0.2850842, 51.1703842, -0.2850842, 51.1703842 ], "geometry": { "type": "Point", "coordinates": [ -0.2850842, 51.1703842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16615387" }, "bbox": [ -0.3299885, 51.3456973, -0.3299885, 51.3456973 ], "geometry": { "type": "Point", "coordinates": [ -0.3299885, 51.3456973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38491299" }, "bbox": [ -0.0231716, 51.2314076, -0.0231716, 51.2314076 ], "geometry": { "type": "Point", "coordinates": [ -0.0231716, 51.2314076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21415740" }, "bbox": [ -0.263587, 51.1585952, -0.263587, 51.1585952 ], "geometry": { "type": "Point", "coordinates": [ -0.263587, 51.1585952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07443077" }, "bbox": [ -0.4657994, 51.1921264, -0.4657994, 51.1921264 ], "geometry": { "type": "Point", "coordinates": [ -0.4657994, 51.1921264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33464315" }, "bbox": [ -0.0919726, 51.1989191, -0.0919726, 51.1989191 ], "geometry": { "type": "Point", "coordinates": [ -0.0919726, 51.1989191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38555548" }, "bbox": [ -0.014793, 51.2816031, -0.014793, 51.2816031 ], "geometry": { "type": "Point", "coordinates": [ -0.014793, 51.2816031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29443498" }, "bbox": [ -0.1505361, 51.1897931, -0.1505361, 51.1897931 ], "geometry": { "type": "Point", "coordinates": [ -0.1505361, 51.1897931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09383091" }, "bbox": [ -0.43902, 51.1391031, -0.43902, 51.1391031 ], "geometry": { "type": "Point", "coordinates": [ -0.43902, 51.1391031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27552418" }, "bbox": [ -0.1769521, 51.2816767, -0.1769521, 51.2816767 ], "geometry": { "type": "Point", "coordinates": [ -0.1769521, 51.2816767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31465612" }, "bbox": [ -0.118239, 51.1991714, -0.118239, 51.1991714 ], "geometry": { "type": "Point", "coordinates": [ -0.118239, 51.1991714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06541329" }, "bbox": [ -0.47999, 51.2774373, -0.47999, 51.2774373 ], "geometry": { "type": "Point", "coordinates": [ -0.47999, 51.2774373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12538473" }, "bbox": [ -0.3838872, 51.2715654, -0.3838872, 51.2715654 ], "geometry": { "type": "Point", "coordinates": [ -0.3838872, 51.2715654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31479708" }, "bbox": [ -0.1122191, 51.2077674, -0.1122191, 51.2077674 ], "geometry": { "type": "Point", "coordinates": [ -0.1122191, 51.2077674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24482685" }, "bbox": [ -0.2219839, 51.2254153, -0.2219839, 51.2254153 ], "geometry": { "type": "Point", "coordinates": [ -0.2219839, 51.2254153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20483416" }, "bbox": [ -0.2781535, 51.2199929, -0.2781535, 51.2199929 ], "geometry": { "type": "Point", "coordinates": [ -0.2781535, 51.2199929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02379511" }, "bbox": [ -0.5302156, 51.1239602, -0.5302156, 51.1239602 ], "geometry": { "type": "Point", "coordinates": [ -0.5302156, 51.1239602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08396613" }, "bbox": [ -0.448052, 51.1411716, -0.448052, 51.1411716 ], "geometry": { "type": "Point", "coordinates": [ -0.448052, 51.1411716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12441518" }, "bbox": [ -0.3965273, 51.1855764, -0.3965273, 51.1855764 ], "geometry": { "type": "Point", "coordinates": [ -0.3965273, 51.1855764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21492810" }, "bbox": [ -0.2644632, 51.2283628, -0.2644632, 51.2283628 ], "geometry": { "type": "Point", "coordinates": [ -0.2644632, 51.2283628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19482959" }, "bbox": [ -0.2932557, 51.224152, -0.2932557, 51.224152 ], "geometry": { "type": "Point", "coordinates": [ -0.2932557, 51.224152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02522786" }, "bbox": [ -0.5355948, 51.2656086, -0.5355948, 51.2656086 ], "geometry": { "type": "Point", "coordinates": [ -0.5355948, 51.2656086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01456197" }, "bbox": [ -0.5466724, 51.2037847, -0.5466724, 51.2037847 ], "geometry": { "type": "Point", "coordinates": [ -0.5466724, 51.2037847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38599202" }, "bbox": [ -0.0080777, 51.3133741, -0.0080777, 51.3133741 ], "geometry": { "type": "Point", "coordinates": [ -0.0080777, 51.3133741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594616" }, "bbox": [ -0.4306861, 51.3210518, -0.4306861, 51.3210518 ], "geometry": { "type": "Point", "coordinates": [ -0.4306861, 51.3210518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36475020" }, "bbox": [ -0.0476558, 51.2077357, -0.0476558, 51.2077357 ], "geometry": { "type": "Point", "coordinates": [ -0.0476558, 51.2077357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09598561" }, "bbox": [ -0.4248758, 51.3249623, -0.4248758, 51.3249623 ], "geometry": { "type": "Point", "coordinates": [ -0.4248758, 51.3249623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08429237" }, "bbox": [ -0.4433335, 51.1703183, -0.4433335, 51.1703183 ], "geometry": { "type": "Point", "coordinates": [ -0.4433335, 51.1703183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14594825" }, "bbox": [ -0.3584505, 51.3209319, -0.3584505, 51.3209319 ], "geometry": { "type": "Point", "coordinates": [ -0.3584505, 51.3209319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06367579" }, "bbox": [ -0.4760666, 51.120518, -0.4760666, 51.120518 ], "geometry": { "type": "Point", "coordinates": [ -0.4760666, 51.120518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12516080" }, "bbox": [ -0.3878652, 51.2542039, -0.3878652, 51.2542039 ], "geometry": { "type": "Point", "coordinates": [ -0.3878652, 51.2542039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06371809" }, "bbox": [ -0.4841413, 51.1233663, -0.4841413, 51.1233663 ], "geometry": { "type": "Point", "coordinates": [ -0.4841413, 51.1233663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14407548" }, "bbox": [ -0.3606501, 51.1520261, -0.3606501, 51.1520261 ], "geometry": { "type": "Point", "coordinates": [ -0.3606501, 51.1520261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33441501" }, "bbox": [ -0.0964743, 51.1796454, -0.0964743, 51.1796454 ], "geometry": { "type": "Point", "coordinates": [ -0.0964743, 51.1796454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38454583" }, "bbox": [ -0.0199153, 51.1949912, -0.0199153, 51.1949912 ], "geometry": { "type": "Point", "coordinates": [ -0.0199153, 51.1949912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18474187" }, "bbox": [ -0.3061332, 51.2178077, -0.3061332, 51.2178077 ], "geometry": { "type": "Point", "coordinates": [ -0.3061332, 51.2178077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32442318" }, "bbox": [ -0.1093959, 51.1816506, -0.1093959, 51.1816506 ], "geometry": { "type": "Point", "coordinates": [ -0.1093959, 51.1816506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27535149" }, "bbox": [ -0.1738364, 51.2662236, -0.1738364, 51.2662236 ], "geometry": { "type": "Point", "coordinates": [ -0.1738364, 51.2662236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28495301" }, "bbox": [ -0.1610213, 51.2257079, -0.1610213, 51.2257079 ], "geometry": { "type": "Point", "coordinates": [ -0.1610213, 51.2257079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19394032" }, "bbox": [ -0.2941371, 51.1408725, -0.2941371, 51.1408725 ], "geometry": { "type": "Point", "coordinates": [ -0.2941371, 51.1408725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18493253" }, "bbox": [ -0.3066271, 51.2327693, -0.3066271, 51.2327693 ], "geometry": { "type": "Point", "coordinates": [ -0.3066271, 51.2327693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11406349" }, "bbox": [ -0.4053033, 51.1527957, -0.4053033, 51.1527957 ], "geometry": { "type": "Point", "coordinates": [ -0.4053033, 51.1527957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17437486" }, "bbox": [ -0.3168005, 51.1818683, -0.3168005, 51.1818683 ], "geometry": { "type": "Point", "coordinates": [ -0.3168005, 51.1818683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13395296" }, "bbox": [ -0.3786667, 51.147781, -0.3786667, 51.147781 ], "geometry": { "type": "Point", "coordinates": [ -0.3786667, 51.147781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33438694" }, "bbox": [ -0.0861619, 51.1789569, -0.0861619, 51.1789569 ], "geometry": { "type": "Point", "coordinates": [ -0.0861619, 51.1789569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42490521" }, "bbox": [ 0.0328298, 51.2244476, 0.0328298, 51.2244476 ], "geometry": { "type": "Point", "coordinates": [ 0.0328298, 51.2244476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15385867" }, "bbox": [ -0.3493689, 51.1357381, -0.3493689, 51.1357381 ], "geometry": { "type": "Point", "coordinates": [ -0.3493689, 51.1357381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25466857" }, "bbox": [ -0.2023166, 51.2045418, -0.2023166, 51.2045418 ], "geometry": { "type": "Point", "coordinates": [ -0.2023166, 51.2045418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27545581" }, "bbox": [ -0.1726132, 51.2781387, -0.1726132, 51.2781387 ], "geometry": { "type": "Point", "coordinates": [ -0.1726132, 51.2781387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06557519" }, "bbox": [ -0.4707029, 51.2857955, -0.4707029, 51.2857955 ], "geometry": { "type": "Point", "coordinates": [ -0.4707029, 51.2857955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37431579" }, "bbox": [ -0.0392858, 51.176915, -0.0392858, 51.176915 ], "geometry": { "type": "Point", "coordinates": [ -0.0392858, 51.176915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38603241" }, "bbox": [ -0.0163686, 51.3259365, -0.0163686, 51.3259365 ], "geometry": { "type": "Point", "coordinates": [ -0.0163686, 51.3259365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607940" }, "bbox": [ -0.0094085, 51.3258143, -0.0094085, 51.3258143 ], "geometry": { "type": "Point", "coordinates": [ -0.0094085, 51.3258143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495311" }, "bbox": [ -0.0604301, 51.2251315, -0.0604301, 51.2251315 ], "geometry": { "type": "Point", "coordinates": [ -0.0604301, 51.2251315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13484710" }, "bbox": [ -0.3765029, 51.2207542, -0.3765029, 51.2207542 ], "geometry": { "type": "Point", "coordinates": [ -0.3765029, 51.2207542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36589304" }, "bbox": [ -0.0379743, 51.3052709, -0.0379743, 51.3052709 ], "geometry": { "type": "Point", "coordinates": [ -0.0379743, 51.3052709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16641023" }, "bbox": [ -0.3335794, 51.3653388, -0.3335794, 51.3653388 ], "geometry": { "type": "Point", "coordinates": [ -0.3335794, 51.3653388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14389421" }, "bbox": [ -0.3587799, 51.1317153, -0.3587799, 51.1317153 ], "geometry": { "type": "Point", "coordinates": [ -0.3587799, 51.1317153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439255" }, "bbox": [ -0.5431203, 51.1821705, -0.5431203, 51.1821705 ], "geometry": { "type": "Point", "coordinates": [ -0.5431203, 51.1821705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12421226" }, "bbox": [ -0.3976883, 51.1685749, -0.3976883, 51.1685749 ], "geometry": { "type": "Point", "coordinates": [ -0.3976883, 51.1685749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04475932" }, "bbox": [ -0.503888, 51.2155702, -0.503888, 51.2155702 ], "geometry": { "type": "Point", "coordinates": [ -0.503888, 51.2155702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02424702" }, "bbox": [ -0.5356032, 51.1681373, -0.5356032, 51.1681373 ], "geometry": { "type": "Point", "coordinates": [ -0.5356032, 51.1681373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34440682" }, "bbox": [ -0.0830468, 51.1868966, -0.0830468, 51.1868966 ], "geometry": { "type": "Point", "coordinates": [ -0.0830468, 51.1868966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00368729" }, "bbox": [ -0.560169, 51.117022, -0.560169, 51.117022 ], "geometry": { "type": "Point", "coordinates": [ -0.560169, 51.117022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32442490" }, "bbox": [ -0.1089814, 51.1880462, -0.1089814, 51.1880462 ], "geometry": { "type": "Point", "coordinates": [ -0.1089814, 51.1880462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378541" }, "bbox": [ -0.3314588, 51.1240824, -0.3314588, 51.1240824 ], "geometry": { "type": "Point", "coordinates": [ -0.3314588, 51.1240824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377235" }, "bbox": [ -0.3620644, 51.1239189, -0.3620644, 51.1239189 ], "geometry": { "type": "Point", "coordinates": [ -0.3620644, 51.1239189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28443186" }, "bbox": [ -0.1655215, 51.1884543, -0.1655215, 51.1884543 ], "geometry": { "type": "Point", "coordinates": [ -0.1655215, 51.1884543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20464463" }, "bbox": [ -0.2773052, 51.2061347, -0.2773052, 51.2061347 ], "geometry": { "type": "Point", "coordinates": [ -0.2773052, 51.2061347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39606111" }, "bbox": [ 0.002097, 51.3224323, 0.002097, 51.3224323 ], "geometry": { "type": "Point", "coordinates": [ 0.002097, 51.3224323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02439840" }, "bbox": [ -0.5279713, 51.180532, -0.5279713, 51.180532 ], "geometry": { "type": "Point", "coordinates": [ -0.5279713, 51.180532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21431138" }, "bbox": [ -0.2688485, 51.1768152, -0.2688485, 51.1768152 ], "geometry": { "type": "Point", "coordinates": [ -0.2688485, 51.1768152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465213" }, "bbox": [ -0.4622745, 51.2043599, -0.4622745, 51.2043599 ], "geometry": { "type": "Point", "coordinates": [ -0.4622745, 51.2043599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13571040" }, "bbox": [ -0.3788529, 51.3045235, -0.3788529, 51.3045235 ], "geometry": { "type": "Point", "coordinates": [ -0.3788529, 51.3045235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04338430" }, "bbox": [ -0.5043731, 51.0895123, -0.5043731, 51.0895123 ], "geometry": { "type": "Point", "coordinates": [ -0.5043731, 51.0895123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460462" }, "bbox": [ -0.3687566, 51.2074769, -0.3687566, 51.2074769 ], "geometry": { "type": "Point", "coordinates": [ -0.3687566, 51.2074769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02375703" }, "bbox": [ -0.5360883, 51.1232919, -0.5360883, 51.1232919 ], "geometry": { "type": "Point", "coordinates": [ -0.5360883, 51.1232919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06566883" }, "bbox": [ -0.4710697, 51.3006291, -0.4710697, 51.3006291 ], "geometry": { "type": "Point", "coordinates": [ -0.4710697, 51.3006291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493510" }, "bbox": [ -0.0629596, 51.2251134, -0.0629596, 51.2251134 ], "geometry": { "type": "Point", "coordinates": [ -0.0629596, 51.2251134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35507618" }, "bbox": [ -0.056666, 51.2346772, -0.056666, 51.2346772 ], "geometry": { "type": "Point", "coordinates": [ -0.056666, 51.2346772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522364" }, "bbox": [ -0.3928934, 51.2619384, -0.3928934, 51.2619384 ], "geometry": { "type": "Point", "coordinates": [ -0.3928934, 51.2619384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29450194" }, "bbox": [ -0.1550053, 51.1980605, -0.1550053, 51.1980605 ], "geometry": { "type": "Point", "coordinates": [ -0.1550053, 51.1980605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17489576" }, "bbox": [ -0.3121975, 51.2257859, -0.3121975, 51.2257859 ], "geometry": { "type": "Point", "coordinates": [ -0.3121975, 51.2257859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08484786" }, "bbox": [ -0.4476393, 51.228678, -0.4476393, 51.228678 ], "geometry": { "type": "Point", "coordinates": [ -0.4476393, 51.228678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00354075" }, "bbox": [ -0.5669516, 51.1122744, -0.5669516, 51.1122744 ], "geometry": { "type": "Point", "coordinates": [ -0.5669516, 51.1122744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06544344" }, "bbox": [ -0.4754193, 51.2791438, -0.4754193, 51.2791438 ], "geometry": { "type": "Point", "coordinates": [ -0.4754193, 51.2791438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35494126" }, "bbox": [ -0.0620992, 51.2265154, -0.0620992, 51.2265154 ], "geometry": { "type": "Point", "coordinates": [ -0.0620992, 51.2265154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12424508" }, "bbox": [ -0.3929475, 51.1668284, -0.3929475, 51.1668284 ], "geometry": { "type": "Point", "coordinates": [ -0.3929475, 51.1668284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24482127" }, "bbox": [ -0.2228798, 51.2200956, -0.2228798, 51.2200956 ], "geometry": { "type": "Point", "coordinates": [ -0.2228798, 51.2200956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16427170" }, "bbox": [ -0.3319955, 51.1716049, -0.3319955, 51.1716049 ], "geometry": { "type": "Point", "coordinates": [ -0.3319955, 51.1716049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27466501" }, "bbox": [ -0.1742708, 51.199111, -0.1742708, 51.199111 ], "geometry": { "type": "Point", "coordinates": [ -0.1742708, 51.199111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42439530" }, "bbox": [ 0.043467, 51.171138, 0.043467, 51.171138 ], "geometry": { "type": "Point", "coordinates": [ 0.043467, 51.171138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36437202" }, "bbox": [ -0.0456895, 51.1701844, -0.0456895, 51.1701844 ], "geometry": { "type": "Point", "coordinates": [ -0.0456895, 51.1701844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04435752" }, "bbox": [ -0.5052029, 51.181385, -0.5052029, 51.181385 ], "geometry": { "type": "Point", "coordinates": [ -0.5052029, 51.181385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40453360" }, "bbox": [ 0.0073191, 51.1923382, 0.0073191, 51.1923382 ], "geometry": { "type": "Point", "coordinates": [ 0.0073191, 51.1923382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36468366" }, "bbox": [ -0.0426918, 51.2028524, -0.0426918, 51.2028524 ], "geometry": { "type": "Point", "coordinates": [ -0.0426918, 51.2028524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448375" }, "bbox": [ -0.1434385, 51.1872874, -0.1434385, 51.1872874 ], "geometry": { "type": "Point", "coordinates": [ -0.1434385, 51.1872874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22414031" }, "bbox": [ -0.2510895, 51.1579797, -0.2510895, 51.1579797 ], "geometry": { "type": "Point", "coordinates": [ -0.2510895, 51.1579797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37583016" }, "bbox": [ -0.0316926, 51.3059421, -0.0316926, 51.3059421 ], "geometry": { "type": "Point", "coordinates": [ -0.0316926, 51.3059421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39595320" }, "bbox": [ 0.0008124, 51.3148195, 0.0008124, 51.3148195 ], "geometry": { "type": "Point", "coordinates": [ 0.0008124, 51.3148195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13405569" }, "bbox": [ -0.3778086, 51.1542452, -0.3778086, 51.1542452 ], "geometry": { "type": "Point", "coordinates": [ -0.3778086, 51.1542452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30426871" }, "bbox": [ -0.1321388, 51.1687659, -0.1321388, 51.1687659 ], "geometry": { "type": "Point", "coordinates": [ -0.1321388, 51.1687659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37506669" }, "bbox": [ -0.0292717, 51.2388656, -0.0292717, 51.2388656 ], "geometry": { "type": "Point", "coordinates": [ -0.0292717, 51.2388656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11590973" }, "bbox": [ -0.4069156, 51.3258095, -0.4069156, 51.3258095 ], "geometry": { "type": "Point", "coordinates": [ -0.4069156, 51.3258095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03398981" }, "bbox": [ -0.5159704, 51.1482038, -0.5159704, 51.1482038 ], "geometry": { "type": "Point", "coordinates": [ -0.5159704, 51.1482038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23480804" }, "bbox": [ -0.239049, 51.2183028, -0.239049, 51.2183028 ], "geometry": { "type": "Point", "coordinates": [ -0.239049, 51.2183028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34475295" }, "bbox": [ -0.0752498, 51.2148424, -0.0752498, 51.2148424 ], "geometry": { "type": "Point", "coordinates": [ -0.0752498, 51.2148424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35542673" }, "bbox": [ -0.0621703, 51.2756876, -0.0621703, 51.2756876 ], "geometry": { "type": "Point", "coordinates": [ -0.0621703, 51.2756876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22521643" }, "bbox": [ -0.2506241, 51.2580415, -0.2506241, 51.2580415 ], "geometry": { "type": "Point", "coordinates": [ -0.2506241, 51.2580415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39558877" }, "bbox": [ 0.0046547, 51.2839349, 0.0046547, 51.2839349 ], "geometry": { "type": "Point", "coordinates": [ 0.0046547, 51.2839349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13404181" }, "bbox": [ -0.3796919, 51.1553547, -0.3796919, 51.1553547 ], "geometry": { "type": "Point", "coordinates": [ -0.3796919, 51.1553547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04469165" }, "bbox": [ -0.4994096, 51.2094909, -0.4994096, 51.2094909 ], "geometry": { "type": "Point", "coordinates": [ -0.4994096, 51.2094909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13398647" }, "bbox": [ -0.373807, 51.1431649, -0.373807, 51.1431649 ], "geometry": { "type": "Point", "coordinates": [ -0.373807, 51.1431649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411275" }, "bbox": [ 0.0309011, 51.1578376, 0.0309011, 51.1578376 ], "geometry": { "type": "Point", "coordinates": [ 0.0309011, 51.1578376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25582015" }, "bbox": [ -0.2048622, 51.3091843, -0.2048622, 51.3091843 ], "geometry": { "type": "Point", "coordinates": [ -0.2048622, 51.3091843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01462713" }, "bbox": [ -0.5518499, 51.2054389, -0.5518499, 51.2054389 ], "geometry": { "type": "Point", "coordinates": [ -0.5518499, 51.2054389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18554494" }, "bbox": [ -0.3027819, 51.2903053, -0.3027819, 51.2903053 ], "geometry": { "type": "Point", "coordinates": [ -0.3027819, 51.2903053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36530488" }, "bbox": [ -0.0512829, 51.267879, -0.0512829, 51.267879 ], "geometry": { "type": "Point", "coordinates": [ -0.0512829, 51.267879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17443344" }, "bbox": [ -0.3224186, 51.18724, -0.3224186, 51.18724 ], "geometry": { "type": "Point", "coordinates": [ -0.3224186, 51.18724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12398372" }, "bbox": [ -0.3883884, 51.1456571, -0.3883884, 51.1456571 ], "geometry": { "type": "Point", "coordinates": [ -0.3883884, 51.1456571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470829" }, "bbox": [ -0.1963537, 51.2109861, -0.1963537, 51.2109861 ], "geometry": { "type": "Point", "coordinates": [ -0.1963537, 51.2109861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42495892" }, "bbox": [ 0.0408759, 51.2305858, 0.0408759, 51.2305858 ], "geometry": { "type": "Point", "coordinates": [ 0.0408759, 51.2305858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21516133" }, "bbox": [ -0.2595105, 51.248238, -0.2595105, 51.248238 ], "geometry": { "type": "Point", "coordinates": [ -0.2595105, 51.248238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18478352" }, "bbox": [ -0.2999975, 51.2146563, -0.2999975, 51.2146563 ], "geometry": { "type": "Point", "coordinates": [ -0.2999975, 51.2146563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31473696" }, "bbox": [ -0.1206559, 51.2158175, -0.1206559, 51.2158175 ], "geometry": { "type": "Point", "coordinates": [ -0.1206559, 51.2158175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09366604" }, "bbox": [ -0.4347313, 51.1131948, -0.4347313, 51.1131948 ], "geometry": { "type": "Point", "coordinates": [ -0.4347313, 51.1131948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05379912" }, "bbox": [ -0.486852, 51.1235824, -0.486852, 51.1235824 ], "geometry": { "type": "Point", "coordinates": [ -0.486852, 51.1235824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14401148" }, "bbox": [ -0.3698229, 51.1522493, -0.3698229, 51.1522493 ], "geometry": { "type": "Point", "coordinates": [ -0.3698229, 51.1522493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32479898" }, "bbox": [ -0.0973679, 51.2155241, -0.0973679, 51.2155241 ], "geometry": { "type": "Point", "coordinates": [ -0.0973679, 51.2155241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27572506" }, "bbox": [ -0.1760421, 51.2982029, -0.1760421, 51.2982029 ], "geometry": { "type": "Point", "coordinates": [ -0.1760421, 51.2982029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00364133" }, "bbox": [ -0.5668284, 51.1175402, -0.5668284, 51.1175402 ], "geometry": { "type": "Point", "coordinates": [ -0.5668284, 51.1175402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24434153" }, "bbox": [ -0.2215759, 51.1775038, -0.2215759, 51.1775038 ], "geometry": { "type": "Point", "coordinates": [ -0.2215759, 51.1775038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05352489" }, "bbox": [ -0.4978322, 51.1127153, -0.4978322, 51.1127153 ], "geometry": { "type": "Point", "coordinates": [ -0.4978322, 51.1127153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24578662" }, "bbox": [ -0.2102903, 51.3041401, -0.2102903, 51.3041401 ], "geometry": { "type": "Point", "coordinates": [ -0.2102903, 51.3041401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36601745" }, "bbox": [ -0.0470647, 51.3268363, -0.0470647, 51.3268363 ], "geometry": { "type": "Point", "coordinates": [ -0.0470647, 51.3268363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24472476" }, "bbox": [ -0.222657, 51.2154526, -0.222657, 51.2154526 ], "geometry": { "type": "Point", "coordinates": [ -0.222657, 51.2154526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19393415" }, "bbox": [ -0.2955465, 51.1393287, -0.2955465, 51.1393287 ], "geometry": { "type": "Point", "coordinates": [ -0.2955465, 51.1393287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03526232" }, "bbox": [ -0.5153782, 51.2609193, -0.5153782, 51.2609193 ], "geometry": { "type": "Point", "coordinates": [ -0.5153782, 51.2609193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14465869" }, "bbox": [ -0.3611341, 51.2079793, -0.3611341, 51.2079793 ], "geometry": { "type": "Point", "coordinates": [ -0.3611341, 51.2079793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09489634" }, "bbox": [ -0.4266545, 51.2237473, -0.4266545, 51.2237473 ], "geometry": { "type": "Point", "coordinates": [ -0.4266545, 51.2237473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40552080" }, "bbox": [ 0.0084079, 51.2837762, 0.0084079, 51.2837762 ], "geometry": { "type": "Point", "coordinates": [ 0.0084079, 51.2837762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32438201" }, "bbox": [ -0.1013604, 51.1707819, -0.1013604, 51.1707819 ], "geometry": { "type": "Point", "coordinates": [ -0.1013604, 51.1707819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31460280" }, "bbox": [ -0.1257653, 51.2054034, -0.1257653, 51.2054034 ], "geometry": { "type": "Point", "coordinates": [ -0.1257653, 51.2054034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33430801" }, "bbox": [ -0.0978243, 51.1708738, -0.0978243, 51.1708738 ], "geometry": { "type": "Point", "coordinates": [ -0.0978243, 51.1708738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01550608" }, "bbox": [ -0.5521884, 51.2859659, -0.5521884, 51.2859659 ], "geometry": { "type": "Point", "coordinates": [ -0.5521884, 51.2859659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08552473" }, "bbox": [ -0.4492687, 51.2905046, -0.4492687, 51.2905046 ], "geometry": { "type": "Point", "coordinates": [ -0.4492687, 51.2905046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15381168" }, "bbox": [ -0.3560278, 51.1358646, -0.3560278, 51.1358646 ], "geometry": { "type": "Point", "coordinates": [ -0.3560278, 51.1358646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500158" }, "bbox": [ -0.3965962, 51.2434302, -0.3965962, 51.2434302 ], "geometry": { "type": "Point", "coordinates": [ -0.3965962, 51.2434302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35548302" }, "bbox": [ -0.0541709, 51.2691001, -0.0541709, 51.2691001 ], "geometry": { "type": "Point", "coordinates": [ -0.0541709, 51.2691001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39591845" }, "bbox": [ -0.0041824, 51.3171246, -0.0041824, 51.3171246 ], "geometry": { "type": "Point", "coordinates": [ -0.0041824, 51.3171246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39603415" }, "bbox": [ -0.0017179, 51.3235099, -0.0017179, 51.3235099 ], "geometry": { "type": "Point", "coordinates": [ -0.0017179, 51.3235099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15436829" }, "bbox": [ -0.3463537, 51.1772384, -0.3463537, 51.1772384 ], "geometry": { "type": "Point", "coordinates": [ -0.3463537, 51.1772384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30408472" }, "bbox": [ -0.130598, 51.1508486, -0.130598, 51.1508486 ], "geometry": { "type": "Point", "coordinates": [ -0.130598, 51.1508486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10559989" }, "bbox": [ -0.4097015, 51.291375, -0.4097015, 51.291375 ], "geometry": { "type": "Point", "coordinates": [ -0.4097015, 51.291375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559813" }, "bbox": [ -0.5533188, 51.2864119, -0.5533188, 51.2864119 ], "geometry": { "type": "Point", "coordinates": [ -0.5533188, 51.2864119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32498318" }, "bbox": [ -0.0990764, 51.2263115, -0.0990764, 51.2263115 ], "geometry": { "type": "Point", "coordinates": [ -0.0990764, 51.2263115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09413473" }, "bbox": [ -0.437729, 51.164434, -0.437729, 51.164434 ], "geometry": { "type": "Point", "coordinates": [ -0.437729, 51.164434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32411182" }, "bbox": [ -0.1102504, 51.1605447, -0.1102504, 51.1605447 ], "geometry": { "type": "Point", "coordinates": [ -0.1102504, 51.1605447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38515404" }, "bbox": [ -0.0163653, 51.2417739, -0.0163653, 51.2417739 ], "geometry": { "type": "Point", "coordinates": [ -0.0163653, 51.2417739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19535499" }, "bbox": [ -0.2877192, 51.2729858, -0.2877192, 51.2729858 ], "geometry": { "type": "Point", "coordinates": [ -0.2877192, 51.2729858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22479207" }, "bbox": [ -0.2416478, 51.2095628, -0.2416478, 51.2095628 ], "geometry": { "type": "Point", "coordinates": [ -0.2416478, 51.2095628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26570908" }, "bbox": [ -0.1926268, 51.2987998, -0.1926268, 51.2987998 ], "geometry": { "type": "Point", "coordinates": [ -0.1926268, 51.2987998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36419704" }, "bbox": [ -0.0428958, 51.1522555, -0.0428958, 51.1522555 ], "geometry": { "type": "Point", "coordinates": [ -0.0428958, 51.1522555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21528267" }, "bbox": [ -0.2556042, 51.2602211, -0.2556042, 51.2602211 ], "geometry": { "type": "Point", "coordinates": [ -0.2556042, 51.2602211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42535307" }, "bbox": [ 0.0411711, 51.2590128, 0.0411711, 51.2590128 ], "geometry": { "type": "Point", "coordinates": [ 0.0411711, 51.2590128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40440326" }, "bbox": [ 0.0019958, 51.1804272, 0.0019958, 51.1804272 ], "geometry": { "type": "Point", "coordinates": [ 0.0019958, 51.1804272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23475265" }, "bbox": [ -0.2326583, 51.2146439, -0.2326583, 51.2146439 ], "geometry": { "type": "Point", "coordinates": [ -0.2326583, 51.2146439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25553518" }, "bbox": [ -0.2039203, 51.2819605, -0.2039203, 51.2819605 ], "geometry": { "type": "Point", "coordinates": [ -0.2039203, 51.2819605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19469569" }, "bbox": [ -0.2844123, 51.2067449, -0.2844123, 51.2067449 ], "geometry": { "type": "Point", "coordinates": [ -0.2844123, 51.2067449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05524784" }, "bbox": [ -0.4911497, 51.2647208, -0.4911497, 51.2647208 ], "geometry": { "type": "Point", "coordinates": [ -0.4911497, 51.2647208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28582594" }, "bbox": [ -0.1610865, 51.3151742, -0.1610865, 51.3151742 ], "geometry": { "type": "Point", "coordinates": [ -0.1610865, 51.3151742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01367186" }, "bbox": [ -0.548005, 51.1220325, -0.548005, 51.1220325 ], "geometry": { "type": "Point", "coordinates": [ -0.548005, 51.1220325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22487908" }, "bbox": [ -0.2430761, 51.2187476, -0.2430761, 51.2187476 ], "geometry": { "type": "Point", "coordinates": [ -0.2430761, 51.2187476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479444" }, "bbox": [ -0.0410245, 51.2096991, -0.0410245, 51.2096991 ], "geometry": { "type": "Point", "coordinates": [ -0.0410245, 51.2096991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15384321" }, "bbox": [ -0.3509664, 51.1322363, -0.3509664, 51.1322363 ], "geometry": { "type": "Point", "coordinates": [ -0.3509664, 51.1322363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461844" }, "bbox": [ -0.1236165, 51.2021879, -0.1236165, 51.2021879 ], "geometry": { "type": "Point", "coordinates": [ -0.1236165, 51.2021879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549247" }, "bbox": [ -0.2821375, 51.2765801, -0.2821375, 51.2765801 ], "geometry": { "type": "Point", "coordinates": [ -0.2821375, 51.2765801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01485037" }, "bbox": [ -0.5478598, 51.2255898, -0.5478598, 51.2255898 ], "geometry": { "type": "Point", "coordinates": [ -0.5478598, 51.2255898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09433132" }, "bbox": [ -0.4374683, 51.1786824, -0.4374683, 51.1786824 ], "geometry": { "type": "Point", "coordinates": [ -0.4374683, 51.1786824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09565834" }, "bbox": [ -0.429708, 51.2955742, -0.429708, 51.2955742 ], "geometry": { "type": "Point", "coordinates": [ -0.429708, 51.2955742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36605644" }, "bbox": [ -0.041427, 51.3266604, -0.041427, 51.3266604 ], "geometry": { "type": "Point", "coordinates": [ -0.041427, 51.3266604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00346111" }, "bbox": [ -0.5644764, 51.0972747, -0.5644764, 51.0972747 ], "geometry": { "type": "Point", "coordinates": [ -0.5644764, 51.0972747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40536764" }, "bbox": [ 0.0145836, 51.2643909, 0.0145836, 51.2643909 ], "geometry": { "type": "Point", "coordinates": [ 0.0145836, 51.2643909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00348881" }, "bbox": [ -0.5604414, 51.1037689, -0.5604414, 51.1037689 ], "geometry": { "type": "Point", "coordinates": [ -0.5604414, 51.1037689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42490536" }, "bbox": [ 0.0328925, 51.2257552, 0.0328925, 51.2257552 ], "geometry": { "type": "Point", "coordinates": [ 0.0328925, 51.2257552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25571841" }, "bbox": [ -0.2056225, 51.3020641, -0.2056225, 51.3020641 ], "geometry": { "type": "Point", "coordinates": [ -0.2056225, 51.3020641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13410170" }, "bbox": [ -0.3852613, 51.1633901, -0.3852613, 51.1633901 ], "geometry": { "type": "Point", "coordinates": [ -0.3852613, 51.1633901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23475303" }, "bbox": [ -0.2330767, 51.2090753, -0.2330767, 51.2090753 ], "geometry": { "type": "Point", "coordinates": [ -0.2330767, 51.2090753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04522460" }, "bbox": [ -0.5070721, 51.2630964, -0.5070721, 51.2630964 ], "geometry": { "type": "Point", "coordinates": [ -0.5070721, 51.2630964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31442264" }, "bbox": [ -0.1238786, 51.1859404, -0.1238786, 51.1859404 ], "geometry": { "type": "Point", "coordinates": [ -0.1238786, 51.1859404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13531415" }, "bbox": [ -0.3799199, 51.2662324, -0.3799199, 51.2662324 ], "geometry": { "type": "Point", "coordinates": [ -0.3799199, 51.2662324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19462014" }, "bbox": [ -0.2951165, 51.2020648, -0.2951165, 51.2020648 ], "geometry": { "type": "Point", "coordinates": [ -0.2951165, 51.2020648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12512072" }, "bbox": [ -0.3934381, 51.2537389, -0.3934381, 51.2537389 ], "geometry": { "type": "Point", "coordinates": [ -0.3934381, 51.2537389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25481703" }, "bbox": [ -0.209573, 51.2176849, -0.209573, 51.2176849 ], "geometry": { "type": "Point", "coordinates": [ -0.209573, 51.2176849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38425837" }, "bbox": [ -0.0194279, 51.1636966, -0.0194279, 51.1636966 ], "geometry": { "type": "Point", "coordinates": [ -0.0194279, 51.1636966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522258" }, "bbox": [ -0.3929974, 51.2614252, -0.3929974, 51.2614252 ], "geometry": { "type": "Point", "coordinates": [ -0.3929974, 51.2614252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17373160" }, "bbox": [ -0.3244909, 51.1259384, -0.3244909, 51.1259384 ], "geometry": { "type": "Point", "coordinates": [ -0.3244909, 51.1259384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00352576" }, "bbox": [ -0.5692131, 51.1124185, -0.5692131, 51.1124185 ], "geometry": { "type": "Point", "coordinates": [ -0.5692131, 51.1124185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04583065" }, "bbox": [ -0.5057474, 51.3175275, -0.5057474, 51.3175275 ], "geometry": { "type": "Point", "coordinates": [ -0.5057474, 51.3175275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25460515" }, "bbox": [ -0.2116237, 51.2008573, -0.2116237, 51.2008573 ], "geometry": { "type": "Point", "coordinates": [ -0.2116237, 51.2008573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03526759" }, "bbox": [ -0.5155239, 51.2630699, -0.5155239, 51.2630699 ], "geometry": { "type": "Point", "coordinates": [ -0.5155239, 51.2630699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35477350" }, "bbox": [ -0.0581288, 51.2100965, -0.0581288, 51.2100965 ], "geometry": { "type": "Point", "coordinates": [ -0.0581288, 51.2100965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03423226" }, "bbox": [ -0.5234415, 51.1701979, -0.5234415, 51.1701979 ], "geometry": { "type": "Point", "coordinates": [ -0.5234415, 51.1701979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14427343" }, "bbox": [ -0.3595877, 51.1697653, -0.3595877, 51.1697653 ], "geometry": { "type": "Point", "coordinates": [ -0.3595877, 51.1697653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19536095" }, "bbox": [ -0.2868697, 51.2721872, -0.2868697, 51.2721872 ], "geometry": { "type": "Point", "coordinates": [ -0.2868697, 51.2721872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38592195" }, "bbox": [ -0.0178749, 51.3218983, -0.0178749, 51.3218983 ], "geometry": { "type": "Point", "coordinates": [ -0.0178749, 51.3218983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35431248" }, "bbox": [ -0.0686194, 51.1746304, -0.0686194, 51.1746304 ], "geometry": { "type": "Point", "coordinates": [ -0.0686194, 51.1746304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36424155" }, "bbox": [ -0.0504258, 51.1658522, -0.0504258, 51.1658522 ], "geometry": { "type": "Point", "coordinates": [ -0.0504258, 51.1658522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04489143" }, "bbox": [ -0.4985895, 51.2254992, -0.4985895, 51.2254992 ], "geometry": { "type": "Point", "coordinates": [ -0.4985895, 51.2254992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35557054" }, "bbox": [ -0.0548162, 51.2823003, -0.0548162, 51.2823003 ], "geometry": { "type": "Point", "coordinates": [ -0.0548162, 51.2823003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23518324" }, "bbox": [ -0.2272196, 51.2468543, -0.2272196, 51.2468543 ], "geometry": { "type": "Point", "coordinates": [ -0.2272196, 51.2468543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12383591" }, "bbox": [ -0.3954703, 51.1384953, -0.3954703, 51.1384953 ], "geometry": { "type": "Point", "coordinates": [ -0.3954703, 51.1384953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10340194" }, "bbox": [ -0.4296861, 51.1034268, -0.4296861, 51.1034268 ], "geometry": { "type": "Point", "coordinates": [ -0.4296861, 51.1034268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02461028" }, "bbox": [ -0.5397719, 51.2067533, -0.5397719, 51.2067533 ], "geometry": { "type": "Point", "coordinates": [ -0.5397719, 51.2067533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36485826" }, "bbox": [ -0.0457897, 51.217259, -0.0457897, 51.217259 ], "geometry": { "type": "Point", "coordinates": [ -0.0457897, 51.217259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05579711" }, "bbox": [ -0.481123, 51.3032869, -0.481123, 51.3032869 ], "geometry": { "type": "Point", "coordinates": [ -0.481123, 51.3032869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42402877" }, "bbox": [ 0.0328434, 51.1485848, 0.0328434, 51.1485848 ], "geometry": { "type": "Point", "coordinates": [ 0.0328434, 51.1485848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37448330" }, "bbox": [ -0.0293784, 51.1812612, -0.0293784, 51.1812612 ], "geometry": { "type": "Point", "coordinates": [ -0.0293784, 51.1812612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521474" }, "bbox": [ -0.3940622, 51.2628534, -0.3940622, 51.2628534 ], "geometry": { "type": "Point", "coordinates": [ -0.3940622, 51.2628534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17396030" }, "bbox": [ -0.3203684, 51.140928, -0.3203684, 51.140928 ], "geometry": { "type": "Point", "coordinates": [ -0.3203684, 51.140928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15429198" }, "bbox": [ -0.3431959, 51.1743648, -0.3431959, 51.1743648 ], "geometry": { "type": "Point", "coordinates": [ -0.3431959, 51.1743648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368605" }, "bbox": [ -0.5175709, 51.1143115, -0.5175709, 51.1143115 ], "geometry": { "type": "Point", "coordinates": [ -0.5175709, 51.1143115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12578790" }, "bbox": [ -0.3820482, 51.3090734, -0.3820482, 51.3090734 ], "geometry": { "type": "Point", "coordinates": [ -0.3820482, 51.3090734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03383233" }, "bbox": [ -0.5243476, 51.1351731, -0.5243476, 51.1351731 ], "geometry": { "type": "Point", "coordinates": [ -0.5243476, 51.1351731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42442306" }, "bbox": [ 0.0334413, 51.1781034, 0.0334413, 51.1781034 ], "geometry": { "type": "Point", "coordinates": [ 0.0334413, 51.1781034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13571740" }, "bbox": [ -0.377794, 51.3044818, -0.377794, 51.3044818 ], "geometry": { "type": "Point", "coordinates": [ -0.377794, 51.3044818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16641581" }, "bbox": [ -0.3331479, 51.3706097, -0.3331479, 51.3706097 ], "geometry": { "type": "Point", "coordinates": [ -0.3331479, 51.3706097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38557745" }, "bbox": [ -0.0116033, 51.2813606, -0.0116033, 51.2813606 ], "geometry": { "type": "Point", "coordinates": [ -0.0116033, 51.2813606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424130" }, "bbox": [ -0.5222754, 51.1705691, -0.5222754, 51.1705691 ], "geometry": { "type": "Point", "coordinates": [ -0.5222754, 51.1705691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03565469" }, "bbox": [ -0.5161304, 51.2998705, -0.5161304, 51.2998705 ], "geometry": { "type": "Point", "coordinates": [ -0.5161304, 51.2998705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23463453" }, "bbox": [ -0.2357338, 51.2047379, -0.2357338, 51.2047379 ], "geometry": { "type": "Point", "coordinates": [ -0.2357338, 51.2047379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25421623" }, "bbox": [ -0.2112391, 51.1656545, -0.2112391, 51.1656545 ], "geometry": { "type": "Point", "coordinates": [ -0.2112391, 51.1656545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15385183" }, "bbox": [ -0.3504053, 51.1371808, -0.3504053, 51.1371808 ], "geometry": { "type": "Point", "coordinates": [ -0.3504053, 51.1371808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33494386" }, "bbox": [ -0.0903108, 51.2324065, -0.0903108, 51.2324065 ], "geometry": { "type": "Point", "coordinates": [ -0.0903108, 51.2324065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32505109" }, "bbox": [ -0.1033257, 51.2347168, -0.1033257, 51.2347168 ], "geometry": { "type": "Point", "coordinates": [ -0.1033257, 51.2347168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18478788" }, "bbox": [ -0.2994178, 51.2178438, -0.2994178, 51.2178438 ], "geometry": { "type": "Point", "coordinates": [ -0.2994178, 51.2178438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08413153" }, "bbox": [ -0.4522073, 51.1629947, -0.4522073, 51.1629947 ], "geometry": { "type": "Point", "coordinates": [ -0.4522073, 51.1629947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27461374" }, "bbox": [ -0.1815318, 51.2054438, -0.1815318, 51.2054438 ], "geometry": { "type": "Point", "coordinates": [ -0.1815318, 51.2054438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31424928" }, "bbox": [ -0.1207479, 51.1647272, -0.1207479, 51.1647272 ], "geometry": { "type": "Point", "coordinates": [ -0.1207479, 51.1647272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19407278" }, "bbox": [ -0.2894357, 51.1537762, -0.2894357, 51.1537762 ], "geometry": { "type": "Point", "coordinates": [ -0.2894357, 51.1537762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31493425" }, "bbox": [ -0.1208588, 51.2272193, -0.1208588, 51.2272193 ], "geometry": { "type": "Point", "coordinates": [ -0.1208588, 51.2272193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08582610" }, "bbox": [ -0.447463, 51.3117627, -0.447463, 51.3117627 ], "geometry": { "type": "Point", "coordinates": [ -0.447463, 51.3117627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11557467" }, "bbox": [ -0.3988994, 51.2892649, -0.3988994, 51.2892649 ], "geometry": { "type": "Point", "coordinates": [ -0.3988994, 51.2892649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35494811" }, "bbox": [ -0.0610634, 51.2251293, -0.0610634, 51.2251293 ], "geometry": { "type": "Point", "coordinates": [ -0.0610634, 51.2251293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35430873" }, "bbox": [ -0.0688749, 51.1767505, -0.0688749, 51.1767505 ], "geometry": { "type": "Point", "coordinates": [ -0.0688749, 51.1767505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26439201" }, "bbox": [ -0.1860947, 51.1721167, -0.1860947, 51.1721167 ], "geometry": { "type": "Point", "coordinates": [ -0.1860947, 51.1721167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00694081" }, "bbox": [ -0.5575211, 51.4183945, -0.5575211, 51.4183945 ], "geometry": { "type": "Point", "coordinates": [ -0.5575211, 51.4183945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26570325" }, "bbox": [ -0.1935798, 51.3004274, -0.1935798, 51.3004274 ], "geometry": { "type": "Point", "coordinates": [ -0.1935798, 51.3004274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31457312" }, "bbox": [ -0.1163649, 51.1901794, -0.1163649, 51.1901794 ], "geometry": { "type": "Point", "coordinates": [ -0.1163649, 51.1901794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02362998" }, "bbox": [ -0.5401882, 51.1230899, -0.5401882, 51.1230899 ], "geometry": { "type": "Point", "coordinates": [ -0.5401882, 51.1230899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00544641" }, "bbox": [ -0.5609013, 51.2799975, -0.5609013, 51.2799975 ], "geometry": { "type": "Point", "coordinates": [ -0.5609013, 51.2799975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27462901" }, "bbox": [ -0.1794753, 51.1990474, -0.1794753, 51.1990474 ], "geometry": { "type": "Point", "coordinates": [ -0.1794753, 51.1990474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42408279" }, "bbox": [ 0.0404479, 51.1484916, 0.0404479, 51.1484916 ], "geometry": { "type": "Point", "coordinates": [ 0.0404479, 51.1484916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11428646" }, "bbox": [ -0.4013903, 51.1703971, -0.4013903, 51.1703971 ], "geometry": { "type": "Point", "coordinates": [ -0.4013903, 51.1703971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08562610" }, "bbox": [ -0.4487391, 51.2937798, -0.4487391, 51.2937798 ], "geometry": { "type": "Point", "coordinates": [ -0.4487391, 51.2937798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00374657" }, "bbox": [ -0.5653982, 51.12877, -0.5653982, 51.12877 ], "geometry": { "type": "Point", "coordinates": [ -0.5653982, 51.12877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07371149" }, "bbox": [ -0.4710016, 51.1266571, -0.4710016, 51.1266571 ], "geometry": { "type": "Point", "coordinates": [ -0.4710016, 51.1266571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548144" }, "bbox": [ -0.2835696, 51.2766033, -0.2835696, 51.2766033 ], "geometry": { "type": "Point", "coordinates": [ -0.2835696, 51.2766033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14599442" }, "bbox": [ -0.3515909, 51.3223441, -0.3515909, 51.3223441 ], "geometry": { "type": "Point", "coordinates": [ -0.3515909, 51.3223441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36444247" }, "bbox": [ -0.0494868, 51.1832597, -0.0494868, 51.1832597 ], "geometry": { "type": "Point", "coordinates": [ -0.0494868, 51.1832597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19417661" }, "bbox": [ -0.2888116, 51.1612026, -0.2888116, 51.1612026 ], "geometry": { "type": "Point", "coordinates": [ -0.2888116, 51.1612026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14591809" }, "bbox": [ -0.3628989, 51.3194387, -0.3628989, 51.3194387 ], "geometry": { "type": "Point", "coordinates": [ -0.3628989, 51.3194387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38604408" }, "bbox": [ -0.0146407, 51.3229355, -0.0146407, 51.3229355 ], "geometry": { "type": "Point", "coordinates": [ -0.0146407, 51.3229355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03536729" }, "bbox": [ -0.5153559, 51.2693965, -0.5153559, 51.2693965 ], "geometry": { "type": "Point", "coordinates": [ -0.5153559, 51.2693965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11556468" }, "bbox": [ -0.4004535, 51.2894004, -0.4004535, 51.2894004 ], "geometry": { "type": "Point", "coordinates": [ -0.4004535, 51.2894004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17401494" }, "bbox": [ -0.3264039, 51.1556337, -0.3264039, 51.1556337 ], "geometry": { "type": "Point", "coordinates": [ -0.3264039, 51.1556337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01361588" }, "bbox": [ -0.556053, 51.1222834, -0.556053, 51.1222834 ], "geometry": { "type": "Point", "coordinates": [ -0.556053, 51.1222834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04621354" }, "bbox": [ -0.5059168, 51.3524244, -0.5059168, 51.3524244 ], "geometry": { "type": "Point", "coordinates": [ -0.5059168, 51.3524244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23470307" }, "bbox": [ -0.2375002, 51.2104971, -0.2375002, 51.2104971 ], "geometry": { "type": "Point", "coordinates": [ -0.2375002, 51.2104971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35455635" }, "bbox": [ -0.0614688, 51.1912844, -0.0614688, 51.1912844 ], "geometry": { "type": "Point", "coordinates": [ -0.0614688, 51.1912844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29518818" }, "bbox": [ -0.1403052, 51.2448546, -0.1403052, 51.2448546 ], "geometry": { "type": "Point", "coordinates": [ -0.1403052, 51.2448546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33424966" }, "bbox": [ -0.0921498, 51.1676311, -0.0921498, 51.1676311 ], "geometry": { "type": "Point", "coordinates": [ -0.0921498, 51.1676311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14565685" }, "bbox": [ -0.3581386, 51.2992726, -0.3581386, 51.2992726 ], "geometry": { "type": "Point", "coordinates": [ -0.3581386, 51.2992726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32545725" }, "bbox": [ -0.1008024, 51.2719641, -0.1008024, 51.2719641 ], "geometry": { "type": "Point", "coordinates": [ -0.1008024, 51.2719641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04513608" }, "bbox": [ -0.5069376, 51.2492789, -0.5069376, 51.2492789 ], "geometry": { "type": "Point", "coordinates": [ -0.5069376, 51.2492789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14387360" }, "bbox": [ -0.361542, 51.1352062, -0.361542, 51.1352062 ], "geometry": { "type": "Point", "coordinates": [ -0.361542, 51.1352062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02444824" }, "bbox": [ -0.5348118, 51.1879339, -0.5348118, 51.1879339 ], "geometry": { "type": "Point", "coordinates": [ -0.5348118, 51.1879339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23511867" }, "bbox": [ -0.2363469, 51.2511684, -0.2363469, 51.2511684 ], "geometry": { "type": "Point", "coordinates": [ -0.2363469, 51.2511684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37572864" }, "bbox": [ -0.0321993, 51.3013908, -0.0321993, 51.3013908 ], "geometry": { "type": "Point", "coordinates": [ -0.0321993, 51.3013908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21568128" }, "bbox": [ -0.2544876, 51.292672, -0.2544876, 51.292672 ], "geometry": { "type": "Point", "coordinates": [ -0.2544876, 51.292672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43401544" }, "bbox": [ 0.0449852, 51.1452934, 0.0449852, 51.1452934 ], "geometry": { "type": "Point", "coordinates": [ 0.0449852, 51.1452934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17405901" }, "bbox": [ -0.3202029, 51.1471846, -0.3202029, 51.1471846 ], "geometry": { "type": "Point", "coordinates": [ -0.3202029, 51.1471846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06454803" }, "bbox": [ -0.4775461, 51.1944431, -0.4775461, 51.1944431 ], "geometry": { "type": "Point", "coordinates": [ -0.4775461, 51.1944431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25442932" }, "bbox": [ -0.2086513, 51.1844401, -0.2086513, 51.1844401 ], "geometry": { "type": "Point", "coordinates": [ -0.2086513, 51.1844401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03573545" }, "bbox": [ -0.5187909, 51.3068556, -0.5187909, 51.3068556 ], "geometry": { "type": "Point", "coordinates": [ -0.5187909, 51.3068556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26594515" }, "bbox": [ -0.1869971, 51.3173833, -0.1869971, 51.3173833 ], "geometry": { "type": "Point", "coordinates": [ -0.1869971, 51.3173833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41456374" }, "bbox": [ 0.0259153, 51.193125, 0.0259153, 51.193125 ], "geometry": { "type": "Point", "coordinates": [ 0.0259153, 51.193125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466873" }, "bbox": [ -0.4597715, 51.2097149, -0.4597715, 51.2097149 ], "geometry": { "type": "Point", "coordinates": [ -0.4597715, 51.2097149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13400662" }, "bbox": [ -0.384869, 51.1537261, -0.384869, 51.1537261 ], "geometry": { "type": "Point", "coordinates": [ -0.384869, 51.1537261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05437303" }, "bbox": [ -0.4888334, 51.1768279, -0.4888334, 51.1768279 ], "geometry": { "type": "Point", "coordinates": [ -0.4888334, 51.1768279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14439104" }, "bbox": [ -0.3572663, 51.1751632, -0.3572663, 51.1751632 ], "geometry": { "type": "Point", "coordinates": [ -0.3572663, 51.1751632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01689317" }, "bbox": [ -0.5359289, 51.4034511, -0.5359289, 51.4034511 ], "geometry": { "type": "Point", "coordinates": [ -0.5359289, 51.4034511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22445941" }, "bbox": [ -0.2472922, 51.1856527, -0.2472922, 51.1856527 ], "geometry": { "type": "Point", "coordinates": [ -0.2472922, 51.1856527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06523312" }, "bbox": [ -0.4775368, 51.2583761, -0.4775368, 51.2583761 ], "geometry": { "type": "Point", "coordinates": [ -0.4775368, 51.2583761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13391863" }, "bbox": [ -0.3832682, 51.1448099, -0.3832682, 51.1448099 ], "geometry": { "type": "Point", "coordinates": [ -0.3832682, 51.1448099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26464875" }, "bbox": [ -0.1907731, 51.2059768, -0.1907731, 51.2059768 ], "geometry": { "type": "Point", "coordinates": [ -0.1907731, 51.2059768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35474016" }, "bbox": [ -0.0632878, 51.2075614, -0.0632878, 51.2075614 ], "geometry": { "type": "Point", "coordinates": [ -0.0632878, 51.2075614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27563270" }, "bbox": [ -0.1749051, 51.2949901, -0.1749051, 51.2949901 ], "geometry": { "type": "Point", "coordinates": [ -0.1749051, 51.2949901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08398661" }, "bbox": [ -0.4450322, 51.1453149, -0.4450322, 51.1453149 ], "geometry": { "type": "Point", "coordinates": [ -0.4450322, 51.1453149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408685" }, "bbox": [ -0.2873956, 51.1544324, -0.2873956, 51.1544324 ], "geometry": { "type": "Point", "coordinates": [ -0.2873956, 51.1544324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42418332" }, "bbox": [ 0.0409224, 51.1533407, 0.0409224, 51.1533407 ], "geometry": { "type": "Point", "coordinates": [ 0.0409224, 51.1533407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01364778" }, "bbox": [ -0.5515374, 51.121239, -0.5515374, 51.121239 ], "geometry": { "type": "Point", "coordinates": [ -0.5515374, 51.121239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05345577" }, "bbox": [ -0.4938191, 51.1025573, -0.4938191, 51.1025573 ], "geometry": { "type": "Point", "coordinates": [ -0.4938191, 51.1025573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500313" }, "bbox": [ -0.3965734, 51.2393349, -0.3965734, 51.2393349 ], "geometry": { "type": "Point", "coordinates": [ -0.3965734, 51.2393349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24424476" }, "bbox": [ -0.2214971, 51.1706268, -0.2214971, 51.1706268 ], "geometry": { "type": "Point", "coordinates": [ -0.2214971, 51.1706268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13595453" }, "bbox": [ -0.3719408, 51.3234681, -0.3719408, 51.3234681 ], "geometry": { "type": "Point", "coordinates": [ -0.3719408, 51.3234681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15504520" }, "bbox": [ -0.3475912, 51.239361, -0.3475912, 51.239361 ], "geometry": { "type": "Point", "coordinates": [ -0.3475912, 51.239361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32544809" }, "bbox": [ -0.1022072, 51.270506, -0.1022072, 51.270506 ], "geometry": { "type": "Point", "coordinates": [ -0.1022072, 51.270506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40571862" }, "bbox": [ 0.0094576, 51.3005284, 0.0094576, 51.3005284 ], "geometry": { "type": "Point", "coordinates": [ 0.0094576, 51.3005284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378970" }, "bbox": [ -0.330836, 51.126742, -0.330836, 51.126742 ], "geometry": { "type": "Point", "coordinates": [ -0.330836, 51.126742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570694" }, "bbox": [ -0.4365992, 51.3102401, -0.4365992, 51.3102401 ], "geometry": { "type": "Point", "coordinates": [ -0.4365992, 51.3102401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00694060" }, "bbox": [ -0.5575152, 51.4165483, -0.5575152, 51.4165483 ], "geometry": { "type": "Point", "coordinates": [ -0.5575152, 51.4165483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11482123" }, "bbox": [ -0.4087548, 51.2224889, -0.4087548, 51.2224889 ], "geometry": { "type": "Point", "coordinates": [ -0.4087548, 51.2224889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12393889" }, "bbox": [ -0.394704, 51.1472969, -0.394704, 51.1472969 ], "geometry": { "type": "Point", "coordinates": [ -0.394704, 51.1472969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06545747" }, "bbox": [ -0.473928, 51.2799503, -0.473928, 51.2799503 ], "geometry": { "type": "Point", "coordinates": [ -0.473928, 51.2799503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39602955" }, "bbox": [ -0.0020037, 51.3267542, -0.0020037, 51.3267542 ], "geometry": { "type": "Point", "coordinates": [ -0.0020037, 51.3267542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23464827" }, "bbox": [ -0.2339143, 51.2023256, -0.2339143, 51.2023256 ], "geometry": { "type": "Point", "coordinates": [ -0.2339143, 51.2023256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29563897" }, "bbox": [ -0.1456394, 51.2971703, -0.1456394, 51.2971703 ], "geometry": { "type": "Point", "coordinates": [ -0.1456394, 51.2971703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416862" }, "bbox": [ -0.5185419, 51.16451, -0.5185419, 51.16451 ], "geometry": { "type": "Point", "coordinates": [ -0.5185419, 51.16451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26434862" }, "bbox": [ -0.1922868, 51.178069, -0.1922868, 51.178069 ], "geometry": { "type": "Point", "coordinates": [ -0.1922868, 51.178069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18412543" }, "bbox": [ -0.310253, 51.1599269, -0.310253, 51.1599269 ], "geometry": { "type": "Point", "coordinates": [ -0.310253, 51.1599269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417726" }, "bbox": [ -0.5173398, 51.1612669, -0.5173398, 51.1612669 ], "geometry": { "type": "Point", "coordinates": [ -0.5173398, 51.1612669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458613" }, "bbox": [ -0.2145542, 51.1918448, -0.2145542, 51.1918448 ], "geometry": { "type": "Point", "coordinates": [ -0.2145542, 51.1918448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523350" }, "bbox": [ -0.3914109, 51.2606506, -0.3914109, 51.2606506 ], "geometry": { "type": "Point", "coordinates": [ -0.3914109, 51.2606506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27453964" }, "bbox": [ -0.1781627, 51.1957007, -0.1781627, 51.1957007 ], "geometry": { "type": "Point", "coordinates": [ -0.1781627, 51.1957007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39565636" }, "bbox": [ 0.0001051, 51.2892888, 0.0001051, 51.2892888 ], "geometry": { "type": "Point", "coordinates": [ 0.0001051, 51.2892888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13399385" }, "bbox": [ -0.3716886, 51.1462588, -0.3716886, 51.1462588 ], "geometry": { "type": "Point", "coordinates": [ -0.3716886, 51.1462588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39578644" }, "bbox": [ 0.0048839, 51.2990133, 0.0048839, 51.2990133 ], "geometry": { "type": "Point", "coordinates": [ 0.0048839, 51.2990133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18559196" }, "bbox": [ -0.2962479, 51.2901522, -0.2962479, 51.2901522 ], "geometry": { "type": "Point", "coordinates": [ -0.2962479, 51.2901522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12614096" }, "bbox": [ -0.3870984, 51.3455717, -0.3870984, 51.3455717 ], "geometry": { "type": "Point", "coordinates": [ -0.3870984, 51.3455717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21492208" }, "bbox": [ -0.2654713, 51.2280971, -0.2654713, 51.2280971 ], "geometry": { "type": "Point", "coordinates": [ -0.2654713, 51.2280971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00694597" }, "bbox": [ -0.5568605, 51.4198643, -0.5568605, 51.4198643 ], "geometry": { "type": "Point", "coordinates": [ -0.5568605, 51.4198643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00363510" }, "bbox": [ -0.5676392, 51.1154084, -0.5676392, 51.1154084 ], "geometry": { "type": "Point", "coordinates": [ -0.5676392, 51.1154084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11421645" }, "bbox": [ -0.4113659, 51.1704984, -0.4113659, 51.1704984 ], "geometry": { "type": "Point", "coordinates": [ -0.4113659, 51.1704984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14367099" }, "bbox": [ -0.3624094, 51.120732, -0.3624094, 51.120732 ], "geometry": { "type": "Point", "coordinates": [ -0.3624094, 51.120732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08574397" }, "bbox": [ -0.4456311, 51.3106063, -0.4456311, 51.3106063 ], "geometry": { "type": "Point", "coordinates": [ -0.4456311, 51.3106063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08396807" }, "bbox": [ -0.4477553, 51.1406489, -0.4477553, 51.1406489 ], "geometry": { "type": "Point", "coordinates": [ -0.4477553, 51.1406489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457908" }, "bbox": [ -0.1011977, 51.1895259, -0.1011977, 51.1895259 ], "geometry": { "type": "Point", "coordinates": [ -0.1011977, 51.1895259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16515949" }, "bbox": [ -0.3308529, 51.250575, -0.3308529, 51.250575 ], "geometry": { "type": "Point", "coordinates": [ -0.3308529, 51.250575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26607533" }, "bbox": [ -0.1822805, 51.327743, -0.1822805, 51.327743 ], "geometry": { "type": "Point", "coordinates": [ -0.1822805, 51.327743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06557062" }, "bbox": [ -0.4712506, 51.2897749, -0.4712506, 51.2897749 ], "geometry": { "type": "Point", "coordinates": [ -0.4712506, 51.2897749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13420828" }, "bbox": [ -0.3838946, 51.1685825, -0.3838946, 51.1685825 ], "geometry": { "type": "Point", "coordinates": [ -0.3838946, 51.1685825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375016" }, "bbox": [ -0.3509179, 51.1221421, -0.3509179, 51.1221421 ], "geometry": { "type": "Point", "coordinates": [ -0.3509179, 51.1221421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02575018" }, "bbox": [ -0.5328083, 51.3039038, -0.5328083, 51.3039038 ], "geometry": { "type": "Point", "coordinates": [ -0.5328083, 51.3039038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08449193" }, "bbox": [ -0.4426622, 51.1932563, -0.4426622, 51.1932563 ], "geometry": { "type": "Point", "coordinates": [ -0.4426622, 51.1932563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32488202" }, "bbox": [ -0.0995416, 51.215934, -0.0995416, 51.215934 ], "geometry": { "type": "Point", "coordinates": [ -0.0995416, 51.215934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440424" }, "bbox": [ 0.0166708, 51.1800703, 0.0166708, 51.1800703 ], "geometry": { "type": "Point", "coordinates": [ 0.0166708, 51.1800703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28584981" }, "bbox": [ -0.1576766, 51.3139473, -0.1576766, 51.3139473 ], "geometry": { "type": "Point", "coordinates": [ -0.1576766, 51.3139473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04479975" }, "bbox": [ -0.4979825, 51.21931, -0.4979825, 51.21931 ], "geometry": { "type": "Point", "coordinates": [ -0.4979825, 51.21931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22447510" }, "bbox": [ -0.2450687, 51.1829455, -0.2450687, 51.1829455 ], "geometry": { "type": "Point", "coordinates": [ -0.2450687, 51.1829455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00379212" }, "bbox": [ -0.5592728, 51.1245544, -0.5592728, 51.1245544 ], "geometry": { "type": "Point", "coordinates": [ -0.5592728, 51.1245544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20416501" }, "bbox": [ -0.2760507, 51.1554379, -0.2760507, 51.1554379 ], "geometry": { "type": "Point", "coordinates": [ -0.2760507, 51.1554379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22486863" }, "bbox": [ -0.244614, 51.2237772, -0.244614, 51.2237772 ], "geometry": { "type": "Point", "coordinates": [ -0.244614, 51.2237772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365488" }, "bbox": [ -0.4931147, 51.1215202, -0.4931147, 51.1215202 ], "geometry": { "type": "Point", "coordinates": [ -0.4931147, 51.1215202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446211" }, "bbox": [ -0.1326425, 51.1813819, -0.1326425, 51.1813819 ], "geometry": { "type": "Point", "coordinates": [ -0.1326425, 51.1813819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04650580" }, "bbox": [ -0.5059647, 51.3819518, -0.5059647, 51.3819518 ], "geometry": { "type": "Point", "coordinates": [ -0.5059647, 51.3819518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09479797" }, "bbox": [ -0.4264666, 51.2203639, -0.4264666, 51.2203639 ], "geometry": { "type": "Point", "coordinates": [ -0.4264666, 51.2203639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37555981" }, "bbox": [ -0.028307, 51.284832, -0.028307, 51.284832 ], "geometry": { "type": "Point", "coordinates": [ -0.028307, 51.284832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19545714" }, "bbox": [ -0.2875396, 51.2739383, -0.2875396, 51.2739383 ], "geometry": { "type": "Point", "coordinates": [ -0.2875396, 51.2739383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14468287" }, "bbox": [ -0.3576421, 51.2094607, -0.3576421, 51.2094607 ], "geometry": { "type": "Point", "coordinates": [ -0.3576421, 51.2094607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18465656" }, "bbox": [ -0.3040133, 51.2060092, -0.3040133, 51.2060092 ], "geometry": { "type": "Point", "coordinates": [ -0.3040133, 51.2060092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23460421" }, "bbox": [ -0.2401329, 51.2020401, -0.2401329, 51.2020401 ], "geometry": { "type": "Point", "coordinates": [ -0.2401329, 51.2020401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26461672" }, "bbox": [ -0.1954538, 51.2057606, -0.1954538, 51.2057606 ], "geometry": { "type": "Point", "coordinates": [ -0.1954538, 51.2057606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28459064" }, "bbox": [ -0.1568531, 51.1953063, -0.1568531, 51.1953063 ], "geometry": { "type": "Point", "coordinates": [ -0.1568531, 51.1953063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42416283" }, "bbox": [ 0.0385631, 51.1578333, 0.0385631, 51.1578333 ], "geometry": { "type": "Point", "coordinates": [ 0.0385631, 51.1578333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36595868" }, "bbox": [ -0.0414238, 51.319874, -0.0414238, 51.319874 ], "geometry": { "type": "Point", "coordinates": [ -0.0414238, 51.319874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25459753" }, "bbox": [ -0.1983776, 51.1950222, -0.1983776, 51.1950222 ], "geometry": { "type": "Point", "coordinates": [ -0.1983776, 51.1950222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25466814" }, "bbox": [ -0.2025844, 51.2008018, -0.2025844, 51.2008018 ], "geometry": { "type": "Point", "coordinates": [ -0.2025844, 51.2008018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24576435" }, "bbox": [ -0.2137366, 51.3016915, -0.2137366, 51.3016915 ], "geometry": { "type": "Point", "coordinates": [ -0.2137366, 51.3016915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15450847" }, "bbox": [ -0.3543806, 51.1967967, -0.3543806, 51.1967967 ], "geometry": { "type": "Point", "coordinates": [ -0.3543806, 51.1967967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38555333" }, "bbox": [ -0.0150611, 51.2804348, -0.0150611, 51.2804348 ], "geometry": { "type": "Point", "coordinates": [ -0.0150611, 51.2804348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12486379" }, "bbox": [ -0.3882751, 51.2272469, -0.3882751, 51.2272469 ], "geometry": { "type": "Point", "coordinates": [ -0.3882751, 51.2272469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42525287" }, "bbox": [ 0.0409919, 51.2574903, 0.0409919, 51.2574903 ], "geometry": { "type": "Point", "coordinates": [ 0.0409919, 51.2574903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22520527" }, "bbox": [ -0.2525954, 51.256784, -0.2525954, 51.256784 ], "geometry": { "type": "Point", "coordinates": [ -0.2525954, 51.256784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29554257" }, "bbox": [ -0.1461272, 51.2851086, -0.1461272, 51.2851086 ], "geometry": { "type": "Point", "coordinates": [ -0.1461272, 51.2851086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28474401" }, "bbox": [ -0.1625934, 51.2081122, -0.1625934, 51.2081122 ], "geometry": { "type": "Point", "coordinates": [ -0.1625934, 51.2081122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20512541" }, "bbox": [ -0.2780211, 51.2497392, -0.2780211, 51.2497392 ], "geometry": { "type": "Point", "coordinates": [ -0.2780211, 51.2497392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07572321" }, "bbox": [ -0.4631281, 51.3039553, -0.4631281, 51.3039553 ], "geometry": { "type": "Point", "coordinates": [ -0.4631281, 51.3039553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36548460" }, "bbox": [ -0.0395672, 51.274232, -0.0395672, 51.274232 ], "geometry": { "type": "Point", "coordinates": [ -0.0395672, 51.274232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35432343" }, "bbox": [ -0.0666328, 51.1739607, -0.0666328, 51.1739607 ], "geometry": { "type": "Point", "coordinates": [ -0.0666328, 51.1739607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25586503" }, "bbox": [ -0.1989418, 51.3074384, -0.1989418, 51.3074384 ], "geometry": { "type": "Point", "coordinates": [ -0.1989418, 51.3074384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23438894" }, "bbox": [ -0.2284836, 51.1809666, -0.2284836, 51.1809666 ], "geometry": { "type": "Point", "coordinates": [ -0.2284836, 51.1809666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39432155" }, "bbox": [ -0.0098207, 51.174292, -0.0098207, 51.174292 ], "geometry": { "type": "Point", "coordinates": [ -0.0098207, 51.174292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20467667" }, "bbox": [ -0.2727851, 51.2064742, -0.2727851, 51.2064742 ], "geometry": { "type": "Point", "coordinates": [ -0.2727851, 51.2064742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10477948" }, "bbox": [ -0.4152943, 51.2159242, -0.4152943, 51.2159242 ], "geometry": { "type": "Point", "coordinates": [ -0.4152943, 51.2159242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35422217" }, "bbox": [ -0.0676121, 51.1629187, -0.0676121, 51.1629187 ], "geometry": { "type": "Point", "coordinates": [ -0.0676121, 51.1629187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02464557" }, "bbox": [ -0.5346583, 51.2092485, -0.5346583, 51.2092485 ], "geometry": { "type": "Point", "coordinates": [ -0.5346583, 51.2092485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01360194" }, "bbox": [ -0.5580243, 51.1229528, -0.5580243, 51.1229528 ], "geometry": { "type": "Point", "coordinates": [ -0.5580243, 51.1229528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02464107" }, "bbox": [ -0.5353284, 51.2047055, -0.5353284, 51.2047055 ], "geometry": { "type": "Point", "coordinates": [ -0.5353284, 51.2047055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14416999" }, "bbox": [ -0.361102, 51.1657499, -0.361102, 51.1657499 ], "geometry": { "type": "Point", "coordinates": [ -0.361102, 51.1657499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36490230" }, "bbox": [ -0.0534462, 51.2266755, -0.0534462, 51.2266755 ], "geometry": { "type": "Point", "coordinates": [ -0.0534462, 51.2266755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33458071" }, "bbox": [ -0.0866048, 51.1948586, -0.0866048, 51.1948586 ], "geometry": { "type": "Point", "coordinates": [ -0.0866048, 51.1948586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41571943" }, "bbox": [ 0.0234578, 51.2982992, 0.0234578, 51.2982992 ], "geometry": { "type": "Point", "coordinates": [ 0.0234578, 51.2982992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06415508" }, "bbox": [ -0.4777623, 51.1590386, -0.4777623, 51.1590386 ], "geometry": { "type": "Point", "coordinates": [ -0.4777623, 51.1590386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22434945" }, "bbox": [ -0.2491779, 51.1771616, -0.2491779, 51.1771616 ], "geometry": { "type": "Point", "coordinates": [ -0.2491779, 51.1771616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23516836" }, "bbox": [ -0.229468, 51.2480927, -0.229468, 51.2480927 ], "geometry": { "type": "Point", "coordinates": [ -0.229468, 51.2480927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07484944" }, "bbox": [ -0.4619967, 51.2250983, -0.4619967, 51.2250983 ], "geometry": { "type": "Point", "coordinates": [ -0.4619967, 51.2250983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16399139" }, "bbox": [ -0.3303153, 51.1419312, -0.3303153, 51.1419312 ], "geometry": { "type": "Point", "coordinates": [ -0.3303153, 51.1419312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03415150" }, "bbox": [ -0.5207596, 51.1635025, -0.5207596, 51.1635025 ], "geometry": { "type": "Point", "coordinates": [ -0.5207596, 51.1635025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33426331" }, "bbox": [ -0.0901536, 51.164453, -0.0901536, 51.164453 ], "geometry": { "type": "Point", "coordinates": [ -0.0901536, 51.164453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40471541" }, "bbox": [ 0.0047496, 51.2087023, 0.0047496, 51.2087023 ], "geometry": { "type": "Point", "coordinates": [ 0.0047496, 51.2087023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05343121" }, "bbox": [ -0.4974217, 51.0975351, -0.4974217, 51.0975351 ], "geometry": { "type": "Point", "coordinates": [ -0.4974217, 51.0975351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35469199" }, "bbox": [ -0.0558428, 51.2058651, -0.0558428, 51.2058651 ], "geometry": { "type": "Point", "coordinates": [ -0.0558428, 51.2058651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23451561" }, "bbox": [ -0.2387915, 51.1966007, -0.2387915, 51.1966007 ], "geometry": { "type": "Point", "coordinates": [ -0.2387915, 51.1966007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35424610" }, "bbox": [ -0.0643533, 51.1621157, -0.0643533, 51.1621157 ], "geometry": { "type": "Point", "coordinates": [ -0.0643533, 51.1621157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29478907" }, "bbox": [ -0.1418406, 51.2081204, -0.1418406, 51.2081204 ], "geometry": { "type": "Point", "coordinates": [ -0.1418406, 51.2081204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39459533" }, "bbox": [ 0.0013563, 51.1901099, 0.0013563, 51.1901099 ], "geometry": { "type": "Point", "coordinates": [ 0.0013563, 51.1901099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16404358" }, "bbox": [ -0.3365715, 51.1526433, -0.3365715, 51.1526433 ], "geometry": { "type": "Point", "coordinates": [ -0.3365715, 51.1526433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22411756" }, "bbox": [ -0.2542103, 51.1602636, -0.2542103, 51.1602636 ], "geometry": { "type": "Point", "coordinates": [ -0.2542103, 51.1602636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20483431" }, "bbox": [ -0.278219, 51.2213177, -0.278219, 51.2213177 ], "geometry": { "type": "Point", "coordinates": [ -0.278219, 51.2213177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07565697" }, "bbox": [ -0.458509, 51.3017014, -0.458509, 51.3017014 ], "geometry": { "type": "Point", "coordinates": [ -0.458509, 51.3017014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42429255" }, "bbox": [ 0.0426631, 51.1643341, 0.0426631, 51.1643341 ], "geometry": { "type": "Point", "coordinates": [ 0.0426631, 51.1643341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14410176" }, "bbox": [ -0.3708639, 51.1637915, -0.3708639, 51.1637915 ], "geometry": { "type": "Point", "coordinates": [ -0.3708639, 51.1637915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36604706" }, "bbox": [ -0.043949, 51.3230481, -0.043949, 51.3230481 ], "geometry": { "type": "Point", "coordinates": [ -0.043949, 51.3230481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12620277" }, "bbox": [ -0.3927883, 51.3530354, -0.3927883, 51.3530354 ], "geometry": { "type": "Point", "coordinates": [ -0.3927883, 51.3530354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04466321" }, "bbox": [ -0.5045083, 51.2054243, -0.5045083, 51.2054243 ], "geometry": { "type": "Point", "coordinates": [ -0.5045083, 51.2054243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21475555" }, "bbox": [ -0.2608402, 51.2145182, -0.2608402, 51.2145182 ], "geometry": { "type": "Point", "coordinates": [ -0.2608402, 51.2145182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23485438" }, "bbox": [ -0.2322717, 51.2212993, -0.2322717, 51.2212993 ], "geometry": { "type": "Point", "coordinates": [ -0.2322717, 51.2212993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42430779" }, "bbox": [ 0.0309755, 51.1758306, 0.0309755, 51.1758306 ], "geometry": { "type": "Point", "coordinates": [ 0.0309755, 51.1758306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36483226" }, "bbox": [ -0.0495016, 51.2173355, -0.0495016, 51.2173355 ], "geometry": { "type": "Point", "coordinates": [ -0.0495016, 51.2173355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08404491" }, "bbox": [ -0.4505948, 51.1571943, -0.4505948, 51.1571943 ], "geometry": { "type": "Point", "coordinates": [ -0.4505948, 51.1571943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13593728" }, "bbox": [ -0.374573, 51.3214829, -0.374573, 51.3214829 ], "geometry": { "type": "Point", "coordinates": [ -0.374573, 51.3214829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04520352" }, "bbox": [ -0.5102963, 51.2623693, -0.5102963, 51.2623693 ], "geometry": { "type": "Point", "coordinates": [ -0.5102963, 51.2623693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33454532" }, "bbox": [ -0.0917853, 51.1914625, -0.0917853, 51.1914625 ], "geometry": { "type": "Point", "coordinates": [ -0.0917853, 51.1914625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21555579" }, "bbox": [ -0.2582841, 51.2883374, -0.2582841, 51.2883374 ], "geometry": { "type": "Point", "coordinates": [ -0.2582841, 51.2883374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42414742" }, "bbox": [ 0.0358586, 51.1542986, 0.0358586, 51.1542986 ], "geometry": { "type": "Point", "coordinates": [ 0.0358586, 51.1542986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522252" }, "bbox": [ -0.3930522, 51.2608913, -0.3930522, 51.2608913 ], "geometry": { "type": "Point", "coordinates": [ -0.3930522, 51.2608913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33464543" }, "bbox": [ -0.0911772, 51.2013548, -0.0911772, 51.2013548 ], "geometry": { "type": "Point", "coordinates": [ -0.0911772, 51.2013548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28440773" }, "bbox": [ -0.1685291, 51.1875317, -0.1685291, 51.1875317 ], "geometry": { "type": "Point", "coordinates": [ -0.1685291, 51.1875317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01489853" }, "bbox": [ -0.5408532, 51.2267449, -0.5408532, 51.2267449 ], "geometry": { "type": "Point", "coordinates": [ -0.5408532, 51.2267449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33416391" }, "bbox": [ -0.0904808, 51.1607737, -0.0904808, 51.1607737 ], "geometry": { "type": "Point", "coordinates": [ -0.0904808, 51.1607737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34499285" }, "bbox": [ -0.0688555, 51.2319444, -0.0688555, 51.2319444 ], "geometry": { "type": "Point", "coordinates": [ -0.0688555, 51.2319444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12578326" }, "bbox": [ -0.3827617, 51.3033399, -0.3827617, 51.3033399 ], "geometry": { "type": "Point", "coordinates": [ -0.3827617, 51.3033399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05448415" }, "bbox": [ -0.4865401, 51.186823, -0.4865401, 51.186823 ], "geometry": { "type": "Point", "coordinates": [ -0.4865401, 51.186823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06568095" }, "bbox": [ -0.4693911, 51.3017177, -0.4693911, 51.3017177 ], "geometry": { "type": "Point", "coordinates": [ -0.4693911, 51.3017177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26601868" }, "bbox": [ -0.1902313, 51.3313082, -0.1902313, 51.3313082 ], "geometry": { "type": "Point", "coordinates": [ -0.1902313, 51.3313082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01551470" }, "bbox": [ -0.5508691, 51.2915096, -0.5508691, 51.2915096 ], "geometry": { "type": "Point", "coordinates": [ -0.5508691, 51.2915096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28450551" }, "bbox": [ -0.168932, 51.1943873, -0.168932, 51.1943873 ], "geometry": { "type": "Point", "coordinates": [ -0.168932, 51.1943873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02427565" }, "bbox": [ -0.5314828, 51.1739013, -0.5314828, 51.1739013 ], "geometry": { "type": "Point", "coordinates": [ -0.5314828, 51.1739013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39589827" }, "bbox": [ 0.0074046, 51.3047383, 0.0074046, 51.3047383 ], "geometry": { "type": "Point", "coordinates": [ 0.0074046, 51.3047383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23466773" }, "bbox": [ -0.2310917, 51.2065017, -0.2310917, 51.2065017 ], "geometry": { "type": "Point", "coordinates": [ -0.2310917, 51.2065017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04623876" }, "bbox": [ -0.5023697, 51.3543553, -0.5023697, 51.3543553 ], "geometry": { "type": "Point", "coordinates": [ -0.5023697, 51.3543553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13412781" }, "bbox": [ -0.381535, 51.1642774, -0.381535, 51.1642774 ], "geometry": { "type": "Point", "coordinates": [ -0.381535, 51.1642774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33453291" }, "bbox": [ -0.0931941, 51.1967845, -0.0931941, 51.1967845 ], "geometry": { "type": "Point", "coordinates": [ -0.0931941, 51.1967845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13395784" }, "bbox": [ -0.3778337, 51.1467143, -0.3778337, 51.1467143 ], "geometry": { "type": "Point", "coordinates": [ -0.3778337, 51.1467143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06442882" }, "bbox": [ -0.4804825, 51.192836, -0.4804825, 51.192836 ], "geometry": { "type": "Point", "coordinates": [ -0.4804825, 51.192836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502129" }, "bbox": [ -0.4511692, 51.2416372, -0.4511692, 51.2416372 ], "geometry": { "type": "Point", "coordinates": [ -0.4511692, 51.2416372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22479972" }, "bbox": [ -0.2403232, 51.2155039, -0.2403232, 51.2155039 ], "geometry": { "type": "Point", "coordinates": [ -0.2403232, 51.2155039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18405914" }, "bbox": [ -0.3058865, 51.148228, -0.3058865, 51.148228 ], "geometry": { "type": "Point", "coordinates": [ -0.3058865, 51.148228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19383637" }, "bbox": [ -0.2953776, 51.132216, -0.2953776, 51.132216 ], "geometry": { "type": "Point", "coordinates": [ -0.2953776, 51.132216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37452774" }, "bbox": [ -0.0368453, 51.1944426, -0.0368453, 51.1944426 ], "geometry": { "type": "Point", "coordinates": [ -0.0368453, 51.1944426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13400536" }, "bbox": [ -0.3850944, 51.1513167, -0.3850944, 51.1513167 ], "geometry": { "type": "Point", "coordinates": [ -0.3850944, 51.1513167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14388864" }, "bbox": [ -0.3593312, 51.1356204, -0.3593312, 51.1356204 ], "geometry": { "type": "Point", "coordinates": [ -0.3593312, 51.1356204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04531822" }, "bbox": [ -0.5079585, 51.2686108, -0.5079585, 51.2686108 ], "geometry": { "type": "Point", "coordinates": [ -0.5079585, 51.2686108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32426220" }, "bbox": [ -0.104738, 51.1637147, -0.104738, 51.1637147 ], "geometry": { "type": "Point", "coordinates": [ -0.104738, 51.1637147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03335880" }, "bbox": [ -0.5223391, 51.0942437, -0.5223391, 51.0942437 ], "geometry": { "type": "Point", "coordinates": [ -0.5223391, 51.0942437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403309" }, "bbox": [ -0.3670738, 51.1484935, -0.3670738, 51.1484935 ], "geometry": { "type": "Point", "coordinates": [ -0.3670738, 51.1484935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37394088" }, "bbox": [ -0.0372399, 51.1417767, -0.0372399, 51.1417767 ], "geometry": { "type": "Point", "coordinates": [ -0.0372399, 51.1417767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19546634" }, "bbox": [ -0.2858136, 51.2756529, -0.2858136, 51.2756529 ], "geometry": { "type": "Point", "coordinates": [ -0.2858136, 51.2756529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06379386" }, "bbox": [ -0.4732925, 51.1300532, -0.4732925, 51.1300532 ], "geometry": { "type": "Point", "coordinates": [ -0.4732925, 51.1300532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30493531" }, "bbox": [ -0.1342164, 51.2280721, -0.1342164, 51.2280721 ], "geometry": { "type": "Point", "coordinates": [ -0.1342164, 51.2280721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24469970" }, "bbox": [ -0.2121877, 51.2056721, -0.2121877, 51.2056721 ], "geometry": { "type": "Point", "coordinates": [ -0.2121877, 51.2056721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14637657" }, "bbox": [ -0.3532673, 51.3594815, -0.3532673, 51.3594815 ], "geometry": { "type": "Point", "coordinates": [ -0.3532673, 51.3594815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12404420" }, "bbox": [ -0.3938294, 51.1499734, -0.3938294, 51.1499734 ], "geometry": { "type": "Point", "coordinates": [ -0.3938294, 51.1499734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34485383" }, "bbox": [ -0.0752038, 51.222746, -0.0752038, 51.222746 ], "geometry": { "type": "Point", "coordinates": [ -0.0752038, 51.222746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42554419" }, "bbox": [ 0.0408484, 51.2780864, 0.0408484, 51.2780864 ], "geometry": { "type": "Point", "coordinates": [ 0.0408484, 51.2780864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00376456" }, "bbox": [ -0.5632456, 51.1285715, -0.5632456, 51.1285715 ], "geometry": { "type": "Point", "coordinates": [ -0.5632456, 51.1285715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13495986" }, "bbox": [ -0.3730552, 51.2367257, -0.3730552, 51.2367257 ], "geometry": { "type": "Point", "coordinates": [ -0.3730552, 51.2367257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455730" }, "bbox": [ -0.3043861, 51.1946874, -0.3043861, 51.1946874 ], "geometry": { "type": "Point", "coordinates": [ -0.3043861, 51.1946874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41465698" }, "bbox": [ 0.0247558, 51.2042618, 0.0247558, 51.2042618 ], "geometry": { "type": "Point", "coordinates": [ 0.0247558, 51.2042618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18416727" }, "bbox": [ -0.3044406, 51.1584467, -0.3044406, 51.1584467 ], "geometry": { "type": "Point", "coordinates": [ -0.3044406, 51.1584467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30457639" }, "bbox": [ -0.1299813, 51.1928573, -0.1299813, 51.1928573 ], "geometry": { "type": "Point", "coordinates": [ -0.1299813, 51.1928573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40403581" }, "bbox": [ 0.0052745, 51.1493808, 0.0052745, 51.1493808 ], "geometry": { "type": "Point", "coordinates": [ 0.0052745, 51.1493808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25522806" }, "bbox": [ -0.2064327, 51.2539702, -0.2064327, 51.2539702 ], "geometry": { "type": "Point", "coordinates": [ -0.2064327, 51.2539702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42492706" }, "bbox": [ 0.0358094, 51.2229763, 0.0358094, 51.2229763 ], "geometry": { "type": "Point", "coordinates": [ 0.0358094, 51.2229763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02354448" }, "bbox": [ -0.5379726, 51.1095455, -0.5379726, 51.1095455 ], "geometry": { "type": "Point", "coordinates": [ -0.5379726, 51.1095455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24490129" }, "bbox": [ -0.2255623, 51.2290771, -0.2255623, 51.2290771 ], "geometry": { "type": "Point", "coordinates": [ -0.2255623, 51.2290771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25412109" }, "bbox": [ -0.2111508, 51.1553447, -0.2111508, 51.1553447 ], "geometry": { "type": "Point", "coordinates": [ -0.2111508, 51.1553447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22429479" }, "bbox": [ -0.2427744, 51.1711866, -0.2427744, 51.1711866 ], "geometry": { "type": "Point", "coordinates": [ -0.2427744, 51.1711866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01328064" }, "bbox": [ -0.5472874, 51.084019, -0.5472874, 51.084019 ], "geometry": { "type": "Point", "coordinates": [ -0.5472874, 51.084019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07455994" }, "bbox": [ -0.4616096, 51.2024023, -0.4616096, 51.2024023 ], "geometry": { "type": "Point", "coordinates": [ -0.4616096, 51.2024023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35539678" }, "bbox": [ -0.0528855, 51.2668973, -0.0528855, 51.2668973 ], "geometry": { "type": "Point", "coordinates": [ -0.0528855, 51.2668973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07419313" }, "bbox": [ -0.4578367, 51.1592937, -0.4578367, 51.1592937 ], "geometry": { "type": "Point", "coordinates": [ -0.4578367, 51.1592937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368711" }, "bbox": [ -0.51743, 51.1148772, -0.51743, 51.1148772 ], "geometry": { "type": "Point", "coordinates": [ -0.51743, 51.1148772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38397789" }, "bbox": [ -0.0177783, 51.141391, -0.0177783, 51.141391 ], "geometry": { "type": "Point", "coordinates": [ -0.0177783, 51.141391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18481980" }, "bbox": [ -0.3085604, 51.2262612, -0.3085604, 51.2262612 ], "geometry": { "type": "Point", "coordinates": [ -0.3085604, 51.2262612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20426834" }, "bbox": [ -0.2752697, 51.1675593, -0.2752697, 51.1675593 ], "geometry": { "type": "Point", "coordinates": [ -0.2752697, 51.1675593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41541829" }, "bbox": [ 0.0227776, 51.2703868, 0.0227776, 51.2703868 ], "geometry": { "type": "Point", "coordinates": [ 0.0227776, 51.2703868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08344364" }, "bbox": [ -0.4528664, 51.1007511, -0.4528664, 51.1007511 ], "geometry": { "type": "Point", "coordinates": [ -0.4528664, 51.1007511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11639506" }, "bbox": [ -0.3937219, 51.3556231, -0.3937219, 51.3556231 ], "geometry": { "type": "Point", "coordinates": [ -0.3937219, 51.3556231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27550479" }, "bbox": [ -0.1798141, 51.2866722, -0.1798141, 51.2866722 ], "geometry": { "type": "Point", "coordinates": [ -0.1798141, 51.2866722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24489113" }, "bbox": [ -0.2128789, 51.218701, -0.2128789, 51.218701 ], "geometry": { "type": "Point", "coordinates": [ -0.2128789, 51.218701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36577193" }, "bbox": [ -0.0401277, 51.3040632, -0.0401277, 51.3040632 ], "geometry": { "type": "Point", "coordinates": [ -0.0401277, 51.3040632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37531068" }, "bbox": [ -0.0361665, 51.265843, -0.0361665, 51.265843 ], "geometry": { "type": "Point", "coordinates": [ -0.0361665, 51.265843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15493369" }, "bbox": [ -0.3493499, 51.23485, -0.3493499, 51.23485 ], "geometry": { "type": "Point", "coordinates": [ -0.3493499, 51.23485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22519699" }, "bbox": [ -0.2393158, 51.2538692, -0.2393158, 51.2538692 ], "geometry": { "type": "Point", "coordinates": [ -0.2393158, 51.2538692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37560867" }, "bbox": [ -0.0353087, 51.2927262, -0.0353087, 51.2927262 ], "geometry": { "type": "Point", "coordinates": [ -0.0353087, 51.2927262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07414820" }, "bbox": [ -0.4642291, 51.1600363, -0.4642291, 51.1600363 ], "geometry": { "type": "Point", "coordinates": [ -0.4642291, 51.1600363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32458327" }, "bbox": [ -0.1010938, 51.1917234, -0.1010938, 51.1917234 ], "geometry": { "type": "Point", "coordinates": [ -0.1010938, 51.1917234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02524539" }, "bbox": [ -0.5329195, 51.261776, -0.5329195, 51.261776 ], "geometry": { "type": "Point", "coordinates": [ -0.5329195, 51.261776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36599685" }, "bbox": [ -0.0359065, 51.3212889, -0.0359065, 51.3212889 ], "geometry": { "type": "Point", "coordinates": [ -0.0359065, 51.3212889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00693924" }, "bbox": [ -0.5578012, 51.4133398, -0.5578012, 51.4133398 ], "geometry": { "type": "Point", "coordinates": [ -0.5578012, 51.4133398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06464839" }, "bbox": [ -0.4771314, 51.2068044, -0.4771314, 51.2068044 ], "geometry": { "type": "Point", "coordinates": [ -0.4771314, 51.2068044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16436784" }, "bbox": [ -0.3340509, 51.1819257, -0.3340509, 51.1819257 ], "geometry": { "type": "Point", "coordinates": [ -0.3340509, 51.1819257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10357330" }, "bbox": [ -0.4196588, 51.106367, -0.4196588, 51.106367 ], "geometry": { "type": "Point", "coordinates": [ -0.4196588, 51.106367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08466948" }, "bbox": [ -0.4454577, 51.2072473, -0.4454577, 51.2072473 ], "geometry": { "type": "Point", "coordinates": [ -0.4454577, 51.2072473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17398341" }, "bbox": [ -0.317037, 51.1418126, -0.317037, 51.1418126 ], "geometry": { "type": "Point", "coordinates": [ -0.317037, 51.1418126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20570065" }, "bbox": [ -0.2800411, 51.3054859, -0.2800411, 51.3054859 ], "geometry": { "type": "Point", "coordinates": [ -0.2800411, 51.3054859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21425963" }, "bbox": [ -0.2619667, 51.1701247, -0.2619667, 51.1701247 ], "geometry": { "type": "Point", "coordinates": [ -0.2619667, 51.1701247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37507898" }, "bbox": [ -0.0276914, 51.2415143, -0.0276914, 51.2415143 ], "geometry": { "type": "Point", "coordinates": [ -0.0276914, 51.2415143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34450761" }, "bbox": [ -0.0827127, 51.1940119, -0.0827127, 51.1940119 ], "geometry": { "type": "Point", "coordinates": [ -0.0827127, 51.1940119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14570270" }, "bbox": [ -0.3657501, 51.3069628, -0.3657501, 51.3069628 ], "geometry": { "type": "Point", "coordinates": [ -0.3657501, 51.3069628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14598638" }, "bbox": [ -0.3529271, 51.3220474, -0.3529271, 51.3220474 ], "geometry": { "type": "Point", "coordinates": [ -0.3529271, 51.3220474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15647636" }, "bbox": [ -0.338649, 51.3665377, -0.338649, 51.3665377 ], "geometry": { "type": "Point", "coordinates": [ -0.338649, 51.3665377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37449696" }, "bbox": [ -0.0272178, 51.1872928, -0.0272178, 51.1872928 ], "geometry": { "type": "Point", "coordinates": [ -0.0272178, 51.1872928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39583140" }, "bbox": [ -0.0014665, 51.3059746, -0.0014665, 51.3059746 ], "geometry": { "type": "Point", "coordinates": [ -0.0014665, 51.3059746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04507946" }, "bbox": [ -0.5000553, 51.2437576, -0.5000553, 51.2437576 ], "geometry": { "type": "Point", "coordinates": [ -0.5000553, 51.2437576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34493418" }, "bbox": [ -0.0775914, 51.2259448, -0.0775914, 51.2259448 ], "geometry": { "type": "Point", "coordinates": [ -0.0775914, 51.2259448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12407452" }, "bbox": [ -0.3894788, 51.1528352, -0.3894788, 51.1528352 ], "geometry": { "type": "Point", "coordinates": [ -0.3894788, 51.1528352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04479906" }, "bbox": [ -0.4983324, 51.213086, -0.4983324, 51.213086 ], "geometry": { "type": "Point", "coordinates": [ -0.4983324, 51.213086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07388962" }, "bbox": [ -0.4592265, 51.1366952, -0.4592265, 51.1366952 ], "geometry": { "type": "Point", "coordinates": [ -0.4592265, 51.1366952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461968" }, "bbox": [ -0.1233609, 51.204337, -0.1233609, 51.204337 ], "geometry": { "type": "Point", "coordinates": [ -0.1233609, 51.204337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22476948" }, "bbox": [ -0.244798, 51.2133113, -0.244798, 51.2133113 ], "geometry": { "type": "Point", "coordinates": [ -0.244798, 51.2133113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14397958" }, "bbox": [ -0.3602424, 51.1441834, -0.3602424, 51.1441834 ], "geometry": { "type": "Point", "coordinates": [ -0.3602424, 51.1441834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21487845" }, "bbox": [ -0.2574643, 51.2222443, -0.2574643, 51.2222443 ], "geometry": { "type": "Point", "coordinates": [ -0.2574643, 51.2222443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22475977" }, "bbox": [ -0.2461165, 51.2159969, -0.2461165, 51.2159969 ], "geometry": { "type": "Point", "coordinates": [ -0.2461165, 51.2159969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16447342" }, "bbox": [ -0.3309979, 51.1871567, -0.3309979, 51.1871567 ], "geometry": { "type": "Point", "coordinates": [ -0.3309979, 51.1871567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26596050" }, "bbox": [ -0.1845935, 51.3204718, -0.1845935, 51.3204718 ], "geometry": { "type": "Point", "coordinates": [ -0.1845935, 51.3204718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36488365" }, "bbox": [ -0.0419351, 51.220629, -0.0419351, 51.220629 ], "geometry": { "type": "Point", "coordinates": [ -0.0419351, 51.220629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41559562" }, "bbox": [ 0.0334764, 51.2821232, 0.0334764, 51.2821232 ], "geometry": { "type": "Point", "coordinates": [ 0.0334764, 51.2821232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12406397" }, "bbox": [ -0.3908224, 51.1569615, -0.3908224, 51.1569615 ], "geometry": { "type": "Point", "coordinates": [ -0.3908224, 51.1569615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02336269" }, "bbox": [ -0.5361055, 51.0933015, -0.5361055, 51.0933015 ], "geometry": { "type": "Point", "coordinates": [ -0.5361055, 51.0933015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05545671" }, "bbox": [ -0.4878879, 51.2817345, -0.4878879, 51.2817345 ], "geometry": { "type": "Point", "coordinates": [ -0.4878879, 51.2817345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23463229" }, "bbox": [ -0.2360744, 51.2025325, -0.2360744, 51.2025325 ], "geometry": { "type": "Point", "coordinates": [ -0.2360744, 51.2025325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15422749" }, "bbox": [ -0.3525983, 51.1700691, -0.3525983, 51.1700691 ], "geometry": { "type": "Point", "coordinates": [ -0.3525983, 51.1700691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31485680" }, "bbox": [ -0.1173807, 51.2233965, -0.1173807, 51.2233965 ], "geometry": { "type": "Point", "coordinates": [ -0.1173807, 51.2233965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07473643" }, "bbox": [ -0.4641354, 51.2159983, -0.4641354, 51.2159983 ], "geometry": { "type": "Point", "coordinates": [ -0.4641354, 51.2159983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19415777" }, "bbox": [ -0.2915717, 51.1625132, -0.2915717, 51.1625132 ], "geometry": { "type": "Point", "coordinates": [ -0.2915717, 51.1625132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576088" }, "bbox": [ -0.4289487, 51.309573, -0.4289487, 51.309573 ], "geometry": { "type": "Point", "coordinates": [ -0.4289487, 51.309573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22461934" }, "bbox": [ -0.2522487, 51.2033105, -0.2522487, 51.2033105 ], "geometry": { "type": "Point", "coordinates": [ -0.2522487, 51.2033105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31453864" }, "bbox": [ -0.1208769, 51.1947186, -0.1208769, 51.1947186 ], "geometry": { "type": "Point", "coordinates": [ -0.1208769, 51.1947186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16560272" }, "bbox": [ -0.3372119, 51.2978792, -0.3372119, 51.2978792 ], "geometry": { "type": "Point", "coordinates": [ -0.3372119, 51.2978792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39460613" }, "bbox": [ -0.0110774, 51.1975289, -0.0110774, 51.1975289 ], "geometry": { "type": "Point", "coordinates": [ -0.0110774, 51.1975289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03367911" }, "bbox": [ -0.5185823, 51.114873, -0.5185823, 51.114873 ], "geometry": { "type": "Point", "coordinates": [ -0.5185823, 51.114873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29492717" }, "bbox": [ -0.1499425, 51.2271013, -0.1499425, 51.2271013 ], "geometry": { "type": "Point", "coordinates": [ -0.1499425, 51.2271013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20420917" }, "bbox": [ -0.2838436, 51.1661043, -0.2838436, 51.1661043 ], "geometry": { "type": "Point", "coordinates": [ -0.2838436, 51.1661043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568516" }, "bbox": [ -0.2825316, 51.2920804, -0.2825316, 51.2920804 ], "geometry": { "type": "Point", "coordinates": [ -0.2825316, 51.2920804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42492151" }, "bbox": [ 0.0351568, 51.2270208, 0.0351568, 51.2270208 ], "geometry": { "type": "Point", "coordinates": [ 0.0351568, 51.2270208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39551032" }, "bbox": [ -0.0070936, 51.2799398, -0.0070936, 51.2799398 ], "geometry": { "type": "Point", "coordinates": [ -0.0070936, 51.2799398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16425991" }, "bbox": [ -0.3337791, 51.1734904, -0.3337791, 51.1734904 ], "geometry": { "type": "Point", "coordinates": [ -0.3337791, 51.1734904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35567377" }, "bbox": [ -0.0550061, 51.2937728, -0.0550061, 51.2937728 ], "geometry": { "type": "Point", "coordinates": [ -0.0550061, 51.2937728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04386120" }, "bbox": [ -0.5062775, 51.1335421, -0.5062775, 51.1335421 ], "geometry": { "type": "Point", "coordinates": [ -0.5062775, 51.1335421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09485425" }, "bbox": [ -0.4328836, 51.2230898, -0.4328836, 51.2230898 ], "geometry": { "type": "Point", "coordinates": [ -0.4328836, 51.2230898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15513297" }, "bbox": [ -0.3487302, 51.2554852, -0.3487302, 51.2554852 ], "geometry": { "type": "Point", "coordinates": [ -0.3487302, 51.2554852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33527025" }, "bbox": [ -0.0854351, 51.2538493, -0.0854351, 51.2538493 ], "geometry": { "type": "Point", "coordinates": [ -0.0854351, 51.2538493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31410704" }, "bbox": [ -0.1276477, 51.1543047, -0.1276477, 51.1543047 ], "geometry": { "type": "Point", "coordinates": [ -0.1276477, 51.1543047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14527975" }, "bbox": [ -0.3562044, 51.2624441, -0.3562044, 51.2624441 ], "geometry": { "type": "Point", "coordinates": [ -0.3562044, 51.2624441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14572567" }, "bbox": [ -0.3624363, 51.306691, -0.3624363, 51.306691 ], "geometry": { "type": "Point", "coordinates": [ -0.3624363, 51.306691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15433133" }, "bbox": [ -0.3517486, 51.1775392, -0.3517486, 51.1775392 ], "geometry": { "type": "Point", "coordinates": [ -0.3517486, 51.1775392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14585005" }, "bbox": [ -0.3585966, 51.3100719, -0.3585966, 51.3100719 ], "geometry": { "type": "Point", "coordinates": [ -0.3585966, 51.3100719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39552270" }, "bbox": [ -0.0052254, 51.2834695, -0.0052254, 51.2834695 ], "geometry": { "type": "Point", "coordinates": [ -0.0052254, 51.2834695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31488324" }, "bbox": [ -0.1138629, 51.2181476, -0.1138629, 51.2181476 ], "geometry": { "type": "Point", "coordinates": [ -0.1138629, 51.2181476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13402177" }, "bbox": [ -0.3826807, 51.1550433, -0.3826807, 51.1550433 ], "geometry": { "type": "Point", "coordinates": [ -0.3826807, 51.1550433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14582857" }, "bbox": [ -0.3614895, 51.314798, -0.3614895, 51.314798 ], "geometry": { "type": "Point", "coordinates": [ -0.3614895, 51.314798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13509909" }, "bbox": [ -0.3686634, 51.2386842, -0.3686634, 51.2386842 ], "geometry": { "type": "Point", "coordinates": [ -0.3686634, 51.2386842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20414130" }, "bbox": [ -0.2794453, 51.1583096, -0.2794453, 51.1583096 ], "geometry": { "type": "Point", "coordinates": [ -0.2794453, 51.1583096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40438395" }, "bbox": [ 0.0133289, 51.1774724, 0.0133289, 51.1774724 ], "geometry": { "type": "Point", "coordinates": [ 0.0133289, 51.1774724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14492724" }, "bbox": [ -0.3647957, 51.2309298, -0.3647957, 51.2309298 ], "geometry": { "type": "Point", "coordinates": [ -0.3647957, 51.2309298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41417716" }, "bbox": [ 0.0259619, 51.1519207, 0.0259619, 51.1519207 ], "geometry": { "type": "Point", "coordinates": [ 0.0259619, 51.1519207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12484572" }, "bbox": [ -0.3909982, 51.2265661, -0.3909982, 51.2265661 ], "geometry": { "type": "Point", "coordinates": [ -0.3909982, 51.2265661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35568837" }, "bbox": [ -0.0529151, 51.2903653, -0.0529151, 51.2903653 ], "geometry": { "type": "Point", "coordinates": [ -0.0529151, 51.2903653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38455601" }, "bbox": [ -0.0187892, 51.1874191, -0.0187892, 51.1874191 ], "geometry": { "type": "Point", "coordinates": [ -0.0187892, 51.1874191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38559062" }, "bbox": [ -0.0095294, 51.2827883, -0.0095294, 51.2827883 ], "geometry": { "type": "Point", "coordinates": [ -0.0095294, 51.2827883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455409" }, "bbox": [ -0.3049208, 51.1927601, -0.3049208, 51.1927601 ], "geometry": { "type": "Point", "coordinates": [ -0.3049208, 51.1927601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28542352" }, "bbox": [ -0.1630995, 51.2752455, -0.1630995, 51.2752455 ], "geometry": { "type": "Point", "coordinates": [ -0.1630995, 51.2752455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26527208" }, "bbox": [ -0.1855286, 51.2551832, -0.1855286, 51.2551832 ], "geometry": { "type": "Point", "coordinates": [ -0.1855286, 51.2551832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409524" }, "bbox": [ -0.4007534, 51.1505301, -0.4007534, 51.1505301 ], "geometry": { "type": "Point", "coordinates": [ -0.4007534, 51.1505301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12420051" }, "bbox": [ -0.4001535, 51.1711712, -0.4001535, 51.1711712 ], "geometry": { "type": "Point", "coordinates": [ -0.4001535, 51.1711712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20484530" }, "bbox": [ -0.2765427, 51.2212165, -0.2765427, 51.2212165 ], "geometry": { "type": "Point", "coordinates": [ -0.2765427, 51.2212165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04409426" }, "bbox": [ -0.5008863, 51.1521156, -0.5008863, 51.1521156 ], "geometry": { "type": "Point", "coordinates": [ -0.5008863, 51.1521156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492655" }, "bbox": [ -0.135675, 51.2303953, -0.135675, 51.2303953 ], "geometry": { "type": "Point", "coordinates": [ -0.135675, 51.2303953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30472102" }, "bbox": [ -0.137423, 51.2075762, -0.137423, 51.2075762 ], "geometry": { "type": "Point", "coordinates": [ -0.137423, 51.2075762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465567" }, "bbox": [ -0.4617863, 51.2091762, -0.4617863, 51.2091762 ], "geometry": { "type": "Point", "coordinates": [ -0.4617863, 51.2091762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42502762" }, "bbox": [ 0.0365662, 51.2369635, 0.0365662, 51.2369635 ], "geometry": { "type": "Point", "coordinates": [ 0.0365662, 51.2369635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22574817" }, "bbox": [ -0.2441639, 51.3009244, -0.2441639, 51.3009244 ], "geometry": { "type": "Point", "coordinates": [ -0.2441639, 51.3009244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31513337" }, "bbox": [ -0.1198711, 51.2462192, -0.1198711, 51.2462192 ], "geometry": { "type": "Point", "coordinates": [ -0.1198711, 51.2462192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37490670" }, "bbox": [ -0.0385624, 51.2300722, -0.0385624, 51.2300722 ], "geometry": { "type": "Point", "coordinates": [ -0.0385624, 51.2300722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35457820" }, "bbox": [ -0.058246, 51.1900125, -0.058246, 51.1900125 ], "geometry": { "type": "Point", "coordinates": [ -0.058246, 51.1900125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20508080" }, "bbox": [ -0.2708195, 51.2436267, -0.2708195, 51.2436267 ], "geometry": { "type": "Point", "coordinates": [ -0.2708195, 51.2436267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495102" }, "bbox": [ -0.060806, 51.2243696, -0.060806, 51.2243696 ], "geometry": { "type": "Point", "coordinates": [ -0.060806, 51.2243696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23407984" }, "bbox": [ -0.2313821, 51.1534002, -0.2313821, 51.1534002 ], "geometry": { "type": "Point", "coordinates": [ -0.2313821, 51.1534002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403674" }, "bbox": [ -0.3803369, 51.1547409, -0.3803369, 51.1547409 ], "geometry": { "type": "Point", "coordinates": [ -0.3803369, 51.1547409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08368375" }, "bbox": [ -0.4463144, 51.1198321, -0.4463144, 51.1198321 ], "geometry": { "type": "Point", "coordinates": [ -0.4463144, 51.1198321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13576184" }, "bbox": [ -0.371516, 51.3083973, -0.371516, 51.3083973 ], "geometry": { "type": "Point", "coordinates": [ -0.371516, 51.3083973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21437402" }, "bbox": [ -0.2598083, 51.1734247, -0.2598083, 51.1734247 ], "geometry": { "type": "Point", "coordinates": [ -0.2598083, 51.1734247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12537990" }, "bbox": [ -0.3844828, 51.2731272, -0.3844828, 51.2731272 ], "geometry": { "type": "Point", "coordinates": [ -0.3844828, 51.2731272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15465288" }, "bbox": [ -0.347506, 51.2094458, -0.347506, 51.2094458 ], "geometry": { "type": "Point", "coordinates": [ -0.347506, 51.2094458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24464994" }, "bbox": [ -0.219215, 51.2081553, -0.219215, 51.2081553 ], "geometry": { "type": "Point", "coordinates": [ -0.219215, 51.2081553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16435698" }, "bbox": [ -0.333651, 51.1831758, -0.333651, 51.1831758 ], "geometry": { "type": "Point", "coordinates": [ -0.333651, 51.1831758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35554103" }, "bbox": [ -0.060025, 51.2786362, -0.060025, 51.2786362 ], "geometry": { "type": "Point", "coordinates": [ -0.060025, 51.2786362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37400987" }, "bbox": [ -0.0412572, 51.1506904, -0.0412572, 51.1506904 ], "geometry": { "type": "Point", "coordinates": [ -0.0412572, 51.1506904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31490747" }, "bbox": [ -0.1241762, 51.2293641, -0.1241762, 51.2293641 ], "geometry": { "type": "Point", "coordinates": [ -0.1241762, 51.2293641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03406439" }, "bbox": [ -0.5194426, 51.1535006, -0.5194426, 51.1535006 ], "geometry": { "type": "Point", "coordinates": [ -0.5194426, 51.1535006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01552766" }, "bbox": [ -0.5493677, 51.2908452, -0.5493677, 51.2908452 ], "geometry": { "type": "Point", "coordinates": [ -0.5493677, 51.2908452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05612704" }, "bbox": [ -0.4902013, 51.3386568, -0.4902013, 51.3386568 ], "geometry": { "type": "Point", "coordinates": [ -0.4902013, 51.3386568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42514302" }, "bbox": [ 0.0394281, 51.2405501, 0.0394281, 51.2405501 ], "geometry": { "type": "Point", "coordinates": [ 0.0394281, 51.2405501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16426251" }, "bbox": [ -0.3332175, 51.1700273, -0.3332175, 51.1700273 ], "geometry": { "type": "Point", "coordinates": [ -0.3332175, 51.1700273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40468501" }, "bbox": [ 0.0147352, 51.1959376, 0.0147352, 51.1959376 ], "geometry": { "type": "Point", "coordinates": [ 0.0147352, 51.1959376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11548484" }, "bbox": [ -0.3978752, 51.2818018, -0.3978752, 51.2818018 ], "geometry": { "type": "Point", "coordinates": [ -0.3978752, 51.2818018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32490731" }, "bbox": [ -0.1100685, 51.227794, -0.1100685, 51.227794 ], "geometry": { "type": "Point", "coordinates": [ -0.1100685, 51.227794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12407143" }, "bbox": [ -0.3899055, 51.1520046, -0.3899055, 51.1520046 ], "geometry": { "type": "Point", "coordinates": [ -0.3899055, 51.1520046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12391855" }, "bbox": [ -0.3977017, 51.144315, -0.3977017, 51.144315 ], "geometry": { "type": "Point", "coordinates": [ -0.3977017, 51.144315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39440264" }, "bbox": [ -0.0124306, 51.1842605, -0.0124306, 51.1842605 ], "geometry": { "type": "Point", "coordinates": [ -0.0124306, 51.1842605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06535499" }, "bbox": [ -0.4738805, 51.2751394, -0.4738805, 51.2751394 ], "geometry": { "type": "Point", "coordinates": [ -0.4738805, 51.2751394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33448689" }, "bbox": [ -0.0859696, 51.1876101, -0.0859696, 51.1876101 ], "geometry": { "type": "Point", "coordinates": [ -0.0859696, 51.1876101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583029" }, "bbox": [ -0.4331146, 51.3132881, -0.4331146, 51.3132881 ], "geometry": { "type": "Point", "coordinates": [ -0.4331146, 51.3132881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38618418" }, "bbox": [ -0.0083125, 51.3328338, -0.0083125, 51.3328338 ], "geometry": { "type": "Point", "coordinates": [ -0.0083125, 51.3328338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25574802" }, "bbox": [ -0.2030026, 51.298266, -0.2030026, 51.298266 ], "geometry": { "type": "Point", "coordinates": [ -0.2030026, 51.298266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00489859" }, "bbox": [ -0.5553423, 51.2276698, -0.5553423, 51.2276698 ], "geometry": { "type": "Point", "coordinates": [ -0.5553423, 51.2276698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11478985" }, "bbox": [ -0.3992799, 51.2189319, -0.3992799, 51.2189319 ], "geometry": { "type": "Point", "coordinates": [ -0.3992799, 51.2189319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32497898" }, "bbox": [ -0.0997228, 51.2332556, -0.0997228, 51.2332556 ], "geometry": { "type": "Point", "coordinates": [ -0.0997228, 51.2332556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41514966" }, "bbox": [ 0.0258072, 51.2466136, 0.0258072, 51.2466136 ], "geometry": { "type": "Point", "coordinates": [ 0.0258072, 51.2466136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24437340" }, "bbox": [ -0.2169943, 51.1763277, -0.2169943, 51.1763277 ], "geometry": { "type": "Point", "coordinates": [ -0.2169943, 51.1763277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03598010" }, "bbox": [ -0.5117437, 51.3216028, -0.5117437, 51.3216028 ], "geometry": { "type": "Point", "coordinates": [ -0.5117437, 51.3216028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06345186" }, "bbox": [ -0.4800913, 51.1032034, -0.4800913, 51.1032034 ], "geometry": { "type": "Point", "coordinates": [ -0.4800913, 51.1032034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16405940" }, "bbox": [ -0.3341234, 51.1509309, -0.3341234, 51.1509309 ], "geometry": { "type": "Point", "coordinates": [ -0.3341234, 51.1509309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03336653" }, "bbox": [ -0.5211749, 51.0917505, -0.5211749, 51.0917505 ], "geometry": { "type": "Point", "coordinates": [ -0.5211749, 51.0917505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03459406" }, "bbox": [ -0.5136988, 51.1953581, -0.5136988, 51.1953581 ], "geometry": { "type": "Point", "coordinates": [ -0.5136988, 51.1953581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15649837" }, "bbox": [ -0.3353392, 51.3665386, -0.3353392, 51.3665386 ], "geometry": { "type": "Point", "coordinates": [ -0.3353392, 51.3665386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33492662" }, "bbox": [ -0.0929031, 51.2303664, -0.0929031, 51.2303664 ], "geometry": { "type": "Point", "coordinates": [ -0.0929031, 51.2303664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35551602" }, "bbox": [ -0.0634156, 51.2784401, -0.0634156, 51.2784401 ], "geometry": { "type": "Point", "coordinates": [ -0.0634156, 51.2784401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27546247" }, "bbox": [ -0.1719546, 51.2750668, -0.1719546, 51.2750668 ], "geometry": { "type": "Point", "coordinates": [ -0.1719546, 51.2750668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05612510" }, "bbox": [ -0.4904845, 51.3392134, -0.4904845, 51.3392134 ], "geometry": { "type": "Point", "coordinates": [ -0.4904845, 51.3392134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493516" }, "bbox": [ -0.0628937, 51.2256398, -0.0628937, 51.2256398 ], "geometry": { "type": "Point", "coordinates": [ -0.0628937, 51.2256398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19465031" }, "bbox": [ -0.2903708, 51.20382, -0.2903708, 51.20382 ], "geometry": { "type": "Point", "coordinates": [ -0.2903708, 51.20382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40450577" }, "bbox": [ 0.0027701, 51.1939727, 0.0027701, 51.1939727 ], "geometry": { "type": "Point", "coordinates": [ 0.0027701, 51.1939727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19555237" }, "bbox": [ -0.2874035, 51.2849721, -0.2874035, 51.2849721 ], "geometry": { "type": "Point", "coordinates": [ -0.2874035, 51.2849721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00374781" }, "bbox": [ -0.5657305, 51.130758, -0.5657305, 51.130758 ], "geometry": { "type": "Point", "coordinates": [ -0.5657305, 51.130758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07413716" }, "bbox": [ -0.4659531, 51.1596562, -0.4659531, 51.1596562 ], "geometry": { "type": "Point", "coordinates": [ -0.4659531, 51.1596562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09423684" }, "bbox": [ -0.4369772, 51.174381, -0.4369772, 51.174381 ], "geometry": { "type": "Point", "coordinates": [ -0.4369772, 51.174381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35492823" }, "bbox": [ -0.0640351, 51.2262914, -0.0640351, 51.2262914 ], "geometry": { "type": "Point", "coordinates": [ -0.0640351, 51.2262914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06546977" }, "bbox": [ -0.4717966, 51.2818659, -0.4717966, 51.2818659 ], "geometry": { "type": "Point", "coordinates": [ -0.4717966, 51.2818659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29493392" }, "bbox": [ -0.1485995, 51.233686, -0.1485995, 51.233686 ], "geometry": { "type": "Point", "coordinates": [ -0.1485995, 51.233686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40453669" }, "bbox": [ 0.0072071, 51.1931909, 0.0072071, 51.1931909 ], "geometry": { "type": "Point", "coordinates": [ 0.0072071, 51.1931909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41488634" }, "bbox": [ 0.0300024, 51.2168201, 0.0300024, 51.2168201 ], "geometry": { "type": "Point", "coordinates": [ 0.0300024, 51.2168201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41495892" }, "bbox": [ 0.0265811, 51.2311065, 0.0265811, 51.2311065 ], "geometry": { "type": "Point", "coordinates": [ 0.0265811, 51.2311065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14582557" }, "bbox": [ -0.3623757, 51.3148018, -0.3623757, 51.3148018 ], "geometry": { "type": "Point", "coordinates": [ -0.3623757, 51.3148018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02451338" }, "bbox": [ -0.5395581, 51.1986135, -0.5395581, 51.1986135 ], "geometry": { "type": "Point", "coordinates": [ -0.5395581, 51.1986135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14393639" }, "bbox": [ -0.3666154, 51.1424391, -0.3666154, 51.1424391 ], "geometry": { "type": "Point", "coordinates": [ -0.3666154, 51.1424391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03410164" }, "bbox": [ -0.5280835, 51.1647682, -0.5280835, 51.1647682 ], "geometry": { "type": "Point", "coordinates": [ -0.5280835, 51.1647682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40452627" }, "bbox": [ 0.0058072, 51.1894659, 0.0058072, 51.1894659 ], "geometry": { "type": "Point", "coordinates": [ 0.0058072, 51.1894659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24421297" }, "bbox": [ -0.2259266, 51.1725731, -0.2259266, 51.1725731 ], "geometry": { "type": "Point", "coordinates": [ -0.2259266, 51.1725731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20455598" }, "bbox": [ -0.2759321, 51.2002959, -0.2759321, 51.2002959 ], "geometry": { "type": "Point", "coordinates": [ -0.2759321, 51.2002959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03462194" }, "bbox": [ -0.5237541, 51.2124071, -0.5237541, 51.2124071 ], "geometry": { "type": "Point", "coordinates": [ -0.5237541, 51.2124071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23408518" }, "bbox": [ -0.2306728, 51.1474267, -0.2306728, 51.1474267 ], "geometry": { "type": "Point", "coordinates": [ -0.2306728, 51.1474267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05465647" }, "bbox": [ -0.4902031, 51.2077653, -0.4902031, 51.2077653 ], "geometry": { "type": "Point", "coordinates": [ -0.4902031, 51.2077653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524735" }, "bbox": [ -0.2318823, 51.2569856, -0.2318823, 51.2569856 ], "geometry": { "type": "Point", "coordinates": [ -0.2318823, 51.2569856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12415281" }, "bbox": [ -0.3921847, 51.1644127, -0.3921847, 51.1644127 ], "geometry": { "type": "Point", "coordinates": [ -0.3921847, 51.1644127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23618188" }, "bbox": [ -0.2261909, 51.3440003, -0.2261909, 51.3440003 ], "geometry": { "type": "Point", "coordinates": [ -0.2261909, 51.3440003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00542953" }, "bbox": [ -0.5634248, 51.2811905, -0.5634248, 51.2811905 ], "geometry": { "type": "Point", "coordinates": [ -0.5634248, 51.2811905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09473984" }, "bbox": [ -0.4348532, 51.21935, -0.4348532, 51.21935 ], "geometry": { "type": "Point", "coordinates": [ -0.4348532, 51.21935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36475754" }, "bbox": [ -0.046348, 51.2107965, -0.046348, 51.2107965 ], "geometry": { "type": "Point", "coordinates": [ -0.046348, 51.2107965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23412231" }, "bbox": [ -0.2392803, 51.1578387, -0.2392803, 51.1578387 ], "geometry": { "type": "Point", "coordinates": [ -0.2392803, 51.1578387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469683" }, "bbox": [ -0.2270469, 51.2073518, -0.2270469, 51.2073518 ], "geometry": { "type": "Point", "coordinates": [ -0.2270469, 51.2073518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43430481" }, "bbox": [ 0.0449222, 51.1757157, 0.0449222, 51.1757157 ], "geometry": { "type": "Point", "coordinates": [ 0.0449222, 51.1757157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08411852" }, "bbox": [ -0.454237, 51.1627718, -0.454237, 51.1627718 ], "geometry": { "type": "Point", "coordinates": [ -0.454237, 51.1627718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02334554" }, "bbox": [ -0.5383985, 51.0920453, -0.5383985, 51.0920453 ], "geometry": { "type": "Point", "coordinates": [ -0.5383985, 51.0920453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15381214" }, "bbox": [ -0.3562302, 51.1310403, -0.3562302, 51.1310403 ], "geometry": { "type": "Point", "coordinates": [ -0.3562302, 51.1310403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25539213" }, "bbox": [ -0.1960233, 51.2648872, -0.1960233, 51.2648872 ], "geometry": { "type": "Point", "coordinates": [ -0.1960233, 51.2648872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456620" }, "bbox": [ -0.2602758, 51.1929062, -0.2602758, 51.1929062 ], "geometry": { "type": "Point", "coordinates": [ -0.2602758, 51.1929062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18482319" }, "bbox": [ -0.3080002, 51.2209681, -0.3080002, 51.2209681 ], "geometry": { "type": "Point", "coordinates": [ -0.3080002, 51.2209681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21424482" }, "bbox": [ -0.264312, 51.1717156, -0.264312, 51.1717156 ], "geometry": { "type": "Point", "coordinates": [ -0.264312, 51.1717156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34436204" }, "bbox": [ -0.0757519, 51.1707206, -0.0757519, 51.1707206 ], "geometry": { "type": "Point", "coordinates": [ -0.0757519, 51.1707206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33444934" }, "bbox": [ -0.0913756, 51.182748, -0.0913756, 51.182748 ], "geometry": { "type": "Point", "coordinates": [ -0.0913756, 51.182748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06544836" }, "bbox": [ -0.4749007, 51.2783186, -0.4749007, 51.2783186 ], "geometry": { "type": "Point", "coordinates": [ -0.4749007, 51.2783186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21549887" }, "bbox": [ -0.2524255, 51.2799044, -0.2524255, 51.2799044 ], "geometry": { "type": "Point", "coordinates": [ -0.2524255, 51.2799044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17415735" }, "bbox": [ -0.3200991, 51.159352, -0.3200991, 51.159352 ], "geometry": { "type": "Point", "coordinates": [ -0.3200991, 51.159352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39507852" }, "bbox": [ 0.0009389, 51.2367228, 0.0009389, 51.2367228 ], "geometry": { "type": "Point", "coordinates": [ 0.0009389, 51.2367228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11375345" }, "bbox": [ -0.4077492, 51.1256526, -0.4077492, 51.1256526 ], "geometry": { "type": "Point", "coordinates": [ -0.4077492, 51.1256526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21455172" }, "bbox": [ -0.262319, 51.1978358, -0.262319, 51.1978358 ], "geometry": { "type": "Point", "coordinates": [ -0.262319, 51.1978358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25455712" }, "bbox": [ -0.2043529, 51.191518, -0.2043529, 51.191518 ], "geometry": { "type": "Point", "coordinates": [ -0.2043529, 51.191518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19480317" }, "bbox": [ -0.296944, 51.220473, -0.296944, 51.220473 ], "geometry": { "type": "Point", "coordinates": [ -0.296944, 51.220473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16381713" }, "bbox": [ -0.3410252, 51.1307255, -0.3410252, 51.1307255 ], "geometry": { "type": "Point", "coordinates": [ -0.3410252, 51.1307255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20439553" }, "bbox": [ -0.2710299, 51.1782925, -0.2710299, 51.1782925 ], "geometry": { "type": "Point", "coordinates": [ -0.2710299, 51.1782925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32491825" }, "bbox": [ -0.1083222, 51.2272552, -0.1083222, 51.2272552 ], "geometry": { "type": "Point", "coordinates": [ -0.1083222, 51.2272552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14372729" }, "bbox": [ -0.3684334, 51.1234879, -0.3684334, 51.1234879 ], "geometry": { "type": "Point", "coordinates": [ -0.3684334, 51.1234879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15649585" }, "bbox": [ -0.3356197, 51.3704932, -0.3356197, 51.3704932 ], "geometry": { "type": "Point", "coordinates": [ -0.3356197, 51.3704932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00405569" }, "bbox": [ -0.5635272, 51.1566998, -0.5635272, 51.1566998 ], "geometry": { "type": "Point", "coordinates": [ -0.5635272, 51.1566998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26469535" }, "bbox": [ -0.1841784, 51.2022355, -0.1841784, 51.2022355 ], "geometry": { "type": "Point", "coordinates": [ -0.1841784, 51.2022355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26594535" }, "bbox": [ -0.1864272, 51.3192801, -0.1864272, 51.3192801 ], "geometry": { "type": "Point", "coordinates": [ -0.1864272, 51.3192801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34472982" }, "bbox": [ -0.0787226, 51.214041, -0.0787226, 51.214041 ], "geometry": { "type": "Point", "coordinates": [ -0.0787226, 51.214041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13398560" }, "bbox": [ -0.3739281, 51.1443626, -0.3739281, 51.1443626 ], "geometry": { "type": "Point", "coordinates": [ -0.3739281, 51.1443626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25470326" }, "bbox": [ -0.2114916, 51.2108445, -0.2114916, 51.2108445 ], "geometry": { "type": "Point", "coordinates": [ -0.2114916, 51.2108445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386341" }, "bbox": [ -0.2771578, 51.1323708, -0.2771578, 51.1323708 ], "geometry": { "type": "Point", "coordinates": [ -0.2771578, 51.1323708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02402814" }, "bbox": [ -0.5392211, 51.1512143, -0.5392211, 51.1512143 ], "geometry": { "type": "Point", "coordinates": [ -0.5392211, 51.1512143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36414783" }, "bbox": [ -0.0498552, 51.1593495, -0.0498552, 51.1593495 ], "geometry": { "type": "Point", "coordinates": [ -0.0498552, 51.1593495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22426442" }, "bbox": [ -0.2471494, 51.1679298, -0.2471494, 51.1679298 ], "geometry": { "type": "Point", "coordinates": [ -0.2471494, 51.1679298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580692" }, "bbox": [ -0.3645043, 51.3179743, -0.3645043, 51.3179743 ], "geometry": { "type": "Point", "coordinates": [ -0.3645043, 51.3179743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32432085" }, "bbox": [ -0.110431, 51.1784322, -0.110431, 51.1784322 ], "geometry": { "type": "Point", "coordinates": [ -0.110431, 51.1784322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22494757" }, "bbox": [ -0.247171, 51.2322162, -0.247171, 51.2322162 ], "geometry": { "type": "Point", "coordinates": [ -0.247171, 51.2322162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36425085" }, "bbox": [ -0.0489677, 51.1686119, -0.0489677, 51.1686119 ], "geometry": { "type": "Point", "coordinates": [ -0.0489677, 51.1686119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35492618" }, "bbox": [ -0.0643673, 51.2257938, -0.0643673, 51.2257938 ], "geometry": { "type": "Point", "coordinates": [ -0.0643673, 51.2257938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41476079" }, "bbox": [ 0.0257658, 51.211775, 0.0257658, 51.211775 ], "geometry": { "type": "Point", "coordinates": [ 0.0257658, 51.211775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19567354" }, "bbox": [ -0.2840597, 51.2954239, -0.2840597, 51.2954239 ], "geometry": { "type": "Point", "coordinates": [ -0.2840597, 51.2954239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23462908" }, "bbox": [ -0.2368832, 51.2006103, -0.2368832, 51.2006103 ], "geometry": { "type": "Point", "coordinates": [ -0.2368832, 51.2006103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35458951" }, "bbox": [ -0.0570526, 51.1923734, -0.0570526, 51.1923734 ], "geometry": { "type": "Point", "coordinates": [ -0.0570526, 51.1923734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28447571" }, "bbox": [ -0.1590735, 51.1870569, -0.1590735, 51.1870569 ], "geometry": { "type": "Point", "coordinates": [ -0.1590735, 51.1870569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472180" }, "bbox": [ -0.2371071, 51.2161604, -0.2371071, 51.2161604 ], "geometry": { "type": "Point", "coordinates": [ -0.2371071, 51.2161604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24469176" }, "bbox": [ -0.2132326, 51.2064838, -0.2132326, 51.2064838 ], "geometry": { "type": "Point", "coordinates": [ -0.2132326, 51.2064838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32434793" }, "bbox": [ -0.1045491, 51.1794281, -0.1045491, 51.1794281 ], "geometry": { "type": "Point", "coordinates": [ -0.1045491, 51.1794281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34507362" }, "bbox": [ -0.0716773, 51.2390271, -0.0716773, 51.2390271 ], "geometry": { "type": "Point", "coordinates": [ -0.0716773, 51.2390271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375965" }, "bbox": [ -0.3495196, 51.1265477, -0.3495196, 51.1265477 ], "geometry": { "type": "Point", "coordinates": [ -0.3495196, 51.1265477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41444856" }, "bbox": [ 0.0227929, 51.1828662, 0.0227929, 51.1828662 ], "geometry": { "type": "Point", "coordinates": [ 0.0227929, 51.1828662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21514817" }, "bbox": [ -0.2607232, 51.2468659, -0.2607232, 51.2468659 ], "geometry": { "type": "Point", "coordinates": [ -0.2607232, 51.2468659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12464956" }, "bbox": [ -0.3916664, 51.2075159, -0.3916664, 51.2075159 ], "geometry": { "type": "Point", "coordinates": [ -0.3916664, 51.2075159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00470393" }, "bbox": [ -0.5689378, 51.2218806, -0.5689378, 51.2218806 ], "geometry": { "type": "Point", "coordinates": [ -0.5689378, 51.2218806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10586531" }, "bbox": [ -0.4138617, 51.3131413, -0.4138617, 51.3131413 ], "geometry": { "type": "Point", "coordinates": [ -0.4138617, 51.3131413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05547827" }, "bbox": [ -0.4848397, 51.2776621, -0.4848397, 51.2776621 ], "geometry": { "type": "Point", "coordinates": [ -0.4848397, 51.2776621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24460805" }, "bbox": [ -0.225303, 51.2002527, -0.225303, 51.2002527 ], "geometry": { "type": "Point", "coordinates": [ -0.225303, 51.2002527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39578557" }, "bbox": [ 0.0045478, 51.3001183, 0.0045478, 51.3001183 ], "geometry": { "type": "Point", "coordinates": [ 0.0045478, 51.3001183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08363289" }, "bbox": [ -0.4531998, 51.1209714, -0.4531998, 51.1209714 ], "geometry": { "type": "Point", "coordinates": [ -0.4531998, 51.1209714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35511114" }, "bbox": [ -0.0655974, 51.2434169, -0.0655974, 51.2434169 ], "geometry": { "type": "Point", "coordinates": [ -0.0655974, 51.2434169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03576928" }, "bbox": [ -0.5138835, 51.3052663, -0.5138835, 51.3052663 ], "geometry": { "type": "Point", "coordinates": [ -0.5138835, 51.3052663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37533713" }, "bbox": [ -0.0327265, 51.2608102, -0.0327265, 51.2608102 ], "geometry": { "type": "Point", "coordinates": [ -0.0327265, 51.2608102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21424020" }, "bbox": [ -0.2650727, 51.1662031, -0.2650727, 51.1662031 ], "geometry": { "type": "Point", "coordinates": [ -0.2650727, 51.1662031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452271" }, "bbox": [ -0.0231529, 51.1939332, -0.0231529, 51.1939332 ], "geometry": { "type": "Point", "coordinates": [ -0.0231529, 51.1939332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38391377" }, "bbox": [ -0.0268714, 51.140562, -0.0268714, 51.140562 ], "geometry": { "type": "Point", "coordinates": [ -0.0268714, 51.140562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10499485" }, "bbox": [ -0.4121601, 51.2372341, -0.4121601, 51.2372341 ], "geometry": { "type": "Point", "coordinates": [ -0.4121601, 51.2372341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08475219" }, "bbox": [ -0.447787, 51.2136449, -0.447787, 51.2136449 ], "geometry": { "type": "Point", "coordinates": [ -0.447787, 51.2136449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446225" }, "bbox": [ -0.0896032, 51.1818676, -0.0896032, 51.1818676 ], "geometry": { "type": "Point", "coordinates": [ -0.0896032, 51.1818676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41435352" }, "bbox": [ 0.0231546, 51.1733771, 0.0231546, 51.1733771 ], "geometry": { "type": "Point", "coordinates": [ 0.0231546, 51.1733771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571206" }, "bbox": [ -0.4360068, 51.3022719, -0.4360068, 51.3022719 ], "geometry": { "type": "Point", "coordinates": [ -0.4360068, 51.3022719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18564909" }, "bbox": [ -0.3022339, 51.2914833, -0.3022339, 51.2914833 ], "geometry": { "type": "Point", "coordinates": [ -0.3022339, 51.2914833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15400134" }, "bbox": [ -0.3569618, 51.1507695, -0.3569618, 51.1507695 ], "geometry": { "type": "Point", "coordinates": [ -0.3569618, 51.1507695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31420154" }, "bbox": [ -0.1275516, 51.167158, -0.1275516, 51.167158 ], "geometry": { "type": "Point", "coordinates": [ -0.1275516, 51.167158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13414401" }, "bbox": [ -0.3794216, 51.1570614, -0.3794216, 51.1570614 ], "geometry": { "type": "Point", "coordinates": [ -0.3794216, 51.1570614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40442978" }, "bbox": [ 0.0059543, 51.1850901, 0.0059543, 51.1850901 ], "geometry": { "type": "Point", "coordinates": [ 0.0059543, 51.1850901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27465823" }, "bbox": [ -0.1751116, 51.2010001, -0.1751116, 51.2010001 ], "geometry": { "type": "Point", "coordinates": [ -0.1751116, 51.2010001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607923" }, "bbox": [ -0.0094013, 51.3243322, -0.0094013, 51.3243322 ], "geometry": { "type": "Point", "coordinates": [ -0.0094013, 51.3243322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07416978" }, "bbox": [ -0.4612374, 51.165194, -0.4612374, 51.165194 ], "geometry": { "type": "Point", "coordinates": [ -0.4612374, 51.165194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33437945" }, "bbox": [ -0.0874551, 51.1746927, -0.0874551, 51.1746927 ], "geometry": { "type": "Point", "coordinates": [ -0.0874551, 51.1746927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24574453" }, "bbox": [ -0.2162234, 51.3034278, -0.2162234, 51.3034278 ], "geometry": { "type": "Point", "coordinates": [ -0.2162234, 51.3034278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35459163" }, "bbox": [ -0.0562488, 51.1937581, -0.0562488, 51.1937581 ], "geometry": { "type": "Point", "coordinates": [ -0.0562488, 51.1937581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24469186" }, "bbox": [ -0.2134474, 51.2072186, -0.2134474, 51.2072186 ], "geometry": { "type": "Point", "coordinates": [ -0.2134474, 51.2072186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11627657" }, "bbox": [ -0.396452, 51.3512422, -0.396452, 51.3512422 ], "geometry": { "type": "Point", "coordinates": [ -0.396452, 51.3512422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38595484" }, "bbox": [ -0.0131478, 51.3208533, -0.0131478, 51.3208533 ], "geometry": { "type": "Point", "coordinates": [ -0.0131478, 51.3208533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01377604" }, "bbox": [ -0.5472285, 51.1235703, -0.5472285, 51.1235703 ], "geometry": { "type": "Point", "coordinates": [ -0.5472285, 51.1235703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571460" }, "bbox": [ -0.4211174, 51.3069313, -0.4211174, 51.3069313 ], "geometry": { "type": "Point", "coordinates": [ -0.4211174, 51.3069313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15435732" }, "bbox": [ -0.3480046, 51.1775023, -0.3480046, 51.1775023 ], "geometry": { "type": "Point", "coordinates": [ -0.3480046, 51.1775023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27520756" }, "bbox": [ -0.1802559, 51.2580332, -0.1802559, 51.2580332 ], "geometry": { "type": "Point", "coordinates": [ -0.1802559, 51.2580332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17489625" }, "bbox": [ -0.3121973, 51.2211458, -0.3121973, 51.2211458 ], "geometry": { "type": "Point", "coordinates": [ -0.3121973, 51.2211458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32491166" }, "bbox": [ -0.1091224, 51.2307732, -0.1091224, 51.2307732 ], "geometry": { "type": "Point", "coordinates": [ -0.1091224, 51.2307732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41508701" }, "bbox": [ 0.0304517, 51.2316223, 0.0304517, 51.2316223 ], "geometry": { "type": "Point", "coordinates": [ 0.0304517, 51.2316223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15409930" }, "bbox": [ -0.3440298, 51.1493988, -0.3440298, 51.1493988 ], "geometry": { "type": "Point", "coordinates": [ -0.3440298, 51.1493988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12371041" }, "bbox": [ -0.3992301, 51.1250395, -0.3992301, 51.1250395 ], "geometry": { "type": "Point", "coordinates": [ -0.3992301, 51.1250395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24483091" }, "bbox": [ -0.2212043, 51.2259652, -0.2212043, 51.2259652 ], "geometry": { "type": "Point", "coordinates": [ -0.2212043, 51.2259652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01452592" }, "bbox": [ -0.5517128, 51.2031961, -0.5517128, 51.2031961 ], "geometry": { "type": "Point", "coordinates": [ -0.5517128, 51.2031961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18412529" }, "bbox": [ -0.310288, 51.1586581, -0.310288, 51.1586581 ], "geometry": { "type": "Point", "coordinates": [ -0.310288, 51.1586581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04473433" }, "bbox": [ -0.5073431, 51.2157019, -0.5073431, 51.2157019 ], "geometry": { "type": "Point", "coordinates": [ -0.5073431, 51.2157019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24412954" }, "bbox": [ -0.2239011, 51.1595736, -0.2239011, 51.1595736 ], "geometry": { "type": "Point", "coordinates": [ -0.2239011, 51.1595736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37447526" }, "bbox": [ -0.0304708, 51.1810776, -0.0304708, 51.1810776 ], "geometry": { "type": "Point", "coordinates": [ -0.0304708, 51.1810776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02357447" }, "bbox": [ -0.5336033, 51.1093708, -0.5336033, 51.1093708 ], "geometry": { "type": "Point", "coordinates": [ -0.5336033, 51.1093708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11493888" }, "bbox": [ -0.4059693, 51.2371321, -0.4059693, 51.2371321 ], "geometry": { "type": "Point", "coordinates": [ -0.4059693, 51.2371321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26472715" }, "bbox": [ -0.1936652, 51.209568, -0.1936652, 51.209568 ], "geometry": { "type": "Point", "coordinates": [ -0.1936652, 51.209568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06450245" }, "bbox": [ -0.483865, 51.1984573, -0.483865, 51.1984573 ], "geometry": { "type": "Point", "coordinates": [ -0.483865, 51.1984573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11560199" }, "bbox": [ -0.4090538, 51.3013206, -0.4090538, 51.3013206 ], "geometry": { "type": "Point", "coordinates": [ -0.4090538, 51.3013206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16444818" }, "bbox": [ -0.334704, 51.1850313, -0.334704, 51.1850313 ], "geometry": { "type": "Point", "coordinates": [ -0.334704, 51.1850313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11396388" }, "bbox": [ -0.4053945, 51.1473681, -0.4053945, 51.1473681 ], "geometry": { "type": "Point", "coordinates": [ -0.4053945, 51.1473681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12392680" }, "bbox": [ -0.3966749, 51.1465321, -0.3966749, 51.1465321 ], "geometry": { "type": "Point", "coordinates": [ -0.3966749, 51.1465321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05484568" }, "bbox": [ -0.4916009, 51.2273991, -0.4916009, 51.2273991 ], "geometry": { "type": "Point", "coordinates": [ -0.4916009, 51.2273991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510711" }, "bbox": [ -0.3956973, 51.2483108, -0.3956973, 51.2483108 ], "geometry": { "type": "Point", "coordinates": [ -0.3956973, 51.2483108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42443593" }, "bbox": [ 0.0355127, 51.1854872, 0.0355127, 51.1854872 ], "geometry": { "type": "Point", "coordinates": [ 0.0355127, 51.1854872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30438673" }, "bbox": [ -0.1291778, 51.1778184, -0.1291778, 51.1778184 ], "geometry": { "type": "Point", "coordinates": [ -0.1291778, 51.1778184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583709" }, "bbox": [ -0.4321237, 51.3115047, -0.4321237, 51.3115047 ], "geometry": { "type": "Point", "coordinates": [ -0.4321237, 51.3115047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08448996" }, "bbox": [ -0.443102, 51.1935133, -0.443102, 51.1935133 ], "geometry": { "type": "Point", "coordinates": [ -0.443102, 51.1935133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07414323" }, "bbox": [ -0.4651946, 51.1600496, -0.4651946, 51.1600496 ], "geometry": { "type": "Point", "coordinates": [ -0.4651946, 51.1600496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33431915" }, "bbox": [ -0.0960636, 51.1720692, -0.0960636, 51.1720692 ], "geometry": { "type": "Point", "coordinates": [ -0.0960636, 51.1720692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42444866" }, "bbox": [ 0.0372673, 51.1834351, 0.0372673, 51.1834351 ], "geometry": { "type": "Point", "coordinates": [ 0.0372673, 51.1834351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08565985" }, "bbox": [ -0.4437025, 51.3005362, -0.4437025, 51.3005362 ], "geometry": { "type": "Point", "coordinates": [ -0.4437025, 51.3005362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03402795" }, "bbox": [ -0.5244774, 51.1585121, -0.5244774, 51.1585121 ], "geometry": { "type": "Point", "coordinates": [ -0.5244774, 51.1585121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15464282" }, "bbox": [ -0.3490259, 51.2089855, -0.3490259, 51.2089855 ], "geometry": { "type": "Point", "coordinates": [ -0.3490259, 51.2089855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39577924" }, "bbox": [ 0.003281, 51.2971007, 0.003281, 51.2971007 ], "geometry": { "type": "Point", "coordinates": [ 0.003281, 51.2971007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10396794" }, "bbox": [ -0.4192387, 51.1475609, -0.4192387, 51.1475609 ], "geometry": { "type": "Point", "coordinates": [ -0.4192387, 51.1475609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23419544" }, "bbox": [ -0.2288626, 51.1588635, -0.2288626, 51.1588635 ], "geometry": { "type": "Point", "coordinates": [ -0.2288626, 51.1588635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448793" }, "bbox": [ -0.1430644, 51.1888822, -0.1430644, 51.1888822 ], "geometry": { "type": "Point", "coordinates": [ -0.1430644, 51.1888822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40562476" }, "bbox": [ 0.0099151, 51.292721, 0.0099151, 51.292721 ], "geometry": { "type": "Point", "coordinates": [ 0.0099151, 51.292721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32426552" }, "bbox": [ -0.1042274, 51.1665066, -0.1042274, 51.1665066 ], "geometry": { "type": "Point", "coordinates": [ -0.1042274, 51.1665066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10484712" }, "bbox": [ -0.4192533, 51.221461, -0.4192533, 51.221461 ], "geometry": { "type": "Point", "coordinates": [ -0.4192533, 51.221461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13418546" }, "bbox": [ -0.3730196, 51.1612593, -0.3730196, 51.1612593 ], "geometry": { "type": "Point", "coordinates": [ -0.3730196, 51.1612593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12586510" }, "bbox": [ -0.3850888, 51.3110467, -0.3850888, 51.3110467 ], "geometry": { "type": "Point", "coordinates": [ -0.3850888, 51.3110467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35472862" }, "bbox": [ -0.0645383, 51.2117652, -0.0645383, 51.2117652 ], "geometry": { "type": "Point", "coordinates": [ -0.0645383, 51.2117652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00557075" }, "bbox": [ -0.5572461, 51.291961, -0.5572461, 51.291961 ], "geometry": { "type": "Point", "coordinates": [ -0.5572461, 51.291961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35423313" }, "bbox": [ -0.0660377, 51.1623865, -0.0660377, 51.1623865 ], "geometry": { "type": "Point", "coordinates": [ -0.0660377, 51.1623865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06653370" }, "bbox": [ -0.4735047, 51.3804285, -0.4735047, 51.3804285 ], "geometry": { "type": "Point", "coordinates": [ -0.4735047, 51.3804285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16533306" }, "bbox": [ -0.3338354, 51.2648054, -0.3338354, 51.2648054 ], "geometry": { "type": "Point", "coordinates": [ -0.3338354, 51.2648054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18377978" }, "bbox": [ -0.3036793, 51.1269843, -0.3036793, 51.1269843 ], "geometry": { "type": "Point", "coordinates": [ -0.3036793, 51.1269843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13509601" }, "bbox": [ -0.3688228, 51.237826, -0.3688228, 51.237826 ], "geometry": { "type": "Point", "coordinates": [ -0.3688228, 51.237826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34447638" }, "bbox": [ -0.073515, 51.182886, -0.073515, 51.182886 ], "geometry": { "type": "Point", "coordinates": [ -0.073515, 51.182886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28583769" }, "bbox": [ -0.1594626, 51.3132379, -0.1594626, 51.3132379 ], "geometry": { "type": "Point", "coordinates": [ -0.1594626, 51.3132379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24432887" }, "bbox": [ -0.2236207, 51.1804575, -0.2236207, 51.1804575 ], "geometry": { "type": "Point", "coordinates": [ -0.2236207, 51.1804575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40414515" }, "bbox": [ 0.0068886, 51.1523321, 0.0068886, 51.1523321 ], "geometry": { "type": "Point", "coordinates": [ 0.0068886, 51.1523321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00696751" }, "bbox": [ -0.5538621, 51.4157772, -0.5538621, 51.4157772 ], "geometry": { "type": "Point", "coordinates": [ -0.5538621, 51.4157772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454819" }, "bbox": [ -0.3058211, 51.1937097, -0.3058211, 51.1937097 ], "geometry": { "type": "Point", "coordinates": [ -0.3058211, 51.1937097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16443633" }, "bbox": [ -0.3362863, 51.1864468, -0.3362863, 51.1864468 ], "geometry": { "type": "Point", "coordinates": [ -0.3362863, 51.1864468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39553518" }, "bbox": [ -0.0035482, 51.2787524, -0.0035482, 51.2787524 ], "geometry": { "type": "Point", "coordinates": [ -0.0035482, 51.2787524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33485320" }, "bbox": [ -0.0895875, 51.2173724, -0.0895875, 51.2173724 ], "geometry": { "type": "Point", "coordinates": [ -0.0895875, 51.2173724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35412197" }, "bbox": [ -0.0677829, 51.161053, -0.0677829, 51.161053 ], "geometry": { "type": "Point", "coordinates": [ -0.0677829, 51.161053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38552646" }, "bbox": [ -0.0185893, 51.2814168, -0.0185893, 51.2814168 ], "geometry": { "type": "Point", "coordinates": [ -0.0185893, 51.2814168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23428503" }, "bbox": [ -0.2297114, 51.1640425, -0.2297114, 51.1640425 ], "geometry": { "type": "Point", "coordinates": [ -0.2297114, 51.1640425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31497717" }, "bbox": [ -0.1141387, 51.2264883, -0.1141387, 51.2264883 ], "geometry": { "type": "Point", "coordinates": [ -0.1141387, 51.2264883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35435613" }, "bbox": [ -0.0622429, 51.1713257, -0.0622429, 51.1713257 ], "geometry": { "type": "Point", "coordinates": [ -0.0622429, 51.1713257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05694025" }, "bbox": [ -0.4859142, 51.4124959, -0.4859142, 51.4124959 ], "geometry": { "type": "Point", "coordinates": [ -0.4859142, 51.4124959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17568742" }, "bbox": [ -0.3090432, 51.2927373, -0.3090432, 51.2927373 ], "geometry": { "type": "Point", "coordinates": [ -0.3090432, 51.2927373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09434716" }, "bbox": [ -0.4352507, 51.177231, -0.4352507, 51.177231 ], "geometry": { "type": "Point", "coordinates": [ -0.4352507, 51.177231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16407693" }, "bbox": [ -0.3317733, 51.155624, -0.3317733, 51.155624 ], "geometry": { "type": "Point", "coordinates": [ -0.3317733, 51.155624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42508761" }, "bbox": [ 0.0451863, 51.2368698, 0.0451863, 51.2368698 ], "geometry": { "type": "Point", "coordinates": [ 0.0451863, 51.2368698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23409775" }, "bbox": [ -0.2287387, 51.1526209, -0.2287387, 51.1526209 ], "geometry": { "type": "Point", "coordinates": [ -0.2287387, 51.1526209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03562242" }, "bbox": [ -0.5209616, 51.2978223, -0.5209616, 51.2978223 ], "geometry": { "type": "Point", "coordinates": [ -0.5209616, 51.2978223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12580103" }, "bbox": [ -0.3941275, 51.3106776, -0.3941275, 51.3106776 ], "geometry": { "type": "Point", "coordinates": [ -0.3941275, 51.3106776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03408658" }, "bbox": [ -0.5173415, 51.1548711, -0.5173415, 51.1548711 ], "geometry": { "type": "Point", "coordinates": [ -0.5173415, 51.1548711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559743" }, "bbox": [ -0.5534725, 51.2890831, -0.5534725, 51.2890831 ], "geometry": { "type": "Point", "coordinates": [ -0.5534725, 51.2890831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40404976" }, "bbox": [ 0.0071791, 51.1488637, 0.0071791, 51.1488637 ], "geometry": { "type": "Point", "coordinates": [ 0.0071791, 51.1488637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32546422" }, "bbox": [ -0.0999714, 51.2717806, -0.0999714, 51.2717806 ], "geometry": { "type": "Point", "coordinates": [ -0.0999714, 51.2717806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40483715" }, "bbox": [ 0.0085059, 51.2153826, 0.0085059, 51.2153826 ], "geometry": { "type": "Point", "coordinates": [ 0.0085059, 51.2153826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16447704" }, "bbox": [ -0.3306163, 51.183738, -0.3306163, 51.183738 ], "geometry": { "type": "Point", "coordinates": [ -0.3306163, 51.183738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19553387" }, "bbox": [ -0.2894995, 51.2892591, -0.2894995, 51.2892591 ], "geometry": { "type": "Point", "coordinates": [ -0.2894995, 51.2892591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13526277" }, "bbox": [ -0.3727311, 51.2627493, -0.3727311, 51.2627493 ], "geometry": { "type": "Point", "coordinates": [ -0.3727311, 51.2627493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26457874" }, "bbox": [ -0.1868722, 51.1968078, -0.1868722, 51.1968078 ], "geometry": { "type": "Point", "coordinates": [ -0.1868722, 51.1968078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31489813" }, "bbox": [ -0.1114527, 51.2171182, -0.1114527, 51.2171182 ], "geometry": { "type": "Point", "coordinates": [ -0.1114527, 51.2171182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42550502" }, "bbox": [ 0.034944, 51.2764647, 0.034944, 51.2764647 ], "geometry": { "type": "Point", "coordinates": [ 0.034944, 51.2764647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15394010" }, "bbox": [ -0.351788, 51.1395884, -0.351788, 51.1395884 ], "geometry": { "type": "Point", "coordinates": [ -0.351788, 51.1395884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32471040" }, "bbox": [ -0.1099754, 51.2104683, -0.1099754, 51.2104683 ], "geometry": { "type": "Point", "coordinates": [ -0.1099754, 51.2104683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35553311" }, "bbox": [ -0.0614206, 51.2794279, -0.0614206, 51.2794279 ], "geometry": { "type": "Point", "coordinates": [ -0.0614206, 51.2794279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38425043" }, "bbox": [ -0.0204839, 51.1643866, -0.0204839, 51.1643866 ], "geometry": { "type": "Point", "coordinates": [ -0.0204839, 51.1643866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22482396" }, "bbox": [ -0.2509139, 51.2267488, -0.2509139, 51.2267488 ], "geometry": { "type": "Point", "coordinates": [ -0.2509139, 51.2267488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31448898" }, "bbox": [ -0.1141637, 51.1887508, -0.1141637, 51.1887508 ], "geometry": { "type": "Point", "coordinates": [ -0.1141637, 51.1887508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23465039" }, "bbox": [ -0.2335506, 51.2033524, -0.2335506, 51.2033524 ], "geometry": { "type": "Point", "coordinates": [ -0.2335506, 51.2033524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36440878" }, "bbox": [ -0.0542936, 51.1860272, -0.0542936, 51.1860272 ], "geometry": { "type": "Point", "coordinates": [ -0.0542936, 51.1860272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15463462" }, "bbox": [ -0.3497799, 51.2071884, -0.3497799, 51.2071884 ], "geometry": { "type": "Point", "coordinates": [ -0.3497799, 51.2071884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19482982" }, "bbox": [ -0.2931579, 51.2262237, -0.2931579, 51.2262237 ], "geometry": { "type": "Point", "coordinates": [ -0.2931579, 51.2262237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520673" }, "bbox": [ -0.3952192, 51.2628033, -0.3952192, 51.2628033 ], "geometry": { "type": "Point", "coordinates": [ -0.3952192, 51.2628033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18430527" }, "bbox": [ -0.3124289, 51.1764757, -0.3124289, 51.1764757 ], "geometry": { "type": "Point", "coordinates": [ -0.3124289, 51.1764757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24456076" }, "bbox": [ -0.2180569, 51.1975672, -0.2180569, 51.1975672 ], "geometry": { "type": "Point", "coordinates": [ -0.2180569, 51.1975672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09575385" }, "bbox": [ -0.4298855, 51.309265, -0.4298855, 51.309265 ], "geometry": { "type": "Point", "coordinates": [ -0.4298855, 51.309265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14428074" }, "bbox": [ -0.3592347, 51.1723987, -0.3592347, 51.1723987 ], "geometry": { "type": "Point", "coordinates": [ -0.3592347, 51.1723987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33519898" }, "bbox": [ -0.081479, 51.2512847, -0.081479, 51.2512847 ], "geometry": { "type": "Point", "coordinates": [ -0.081479, 51.2512847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04342973" }, "bbox": [ -0.5118723, 51.1023819, -0.5118723, 51.1023819 ], "geometry": { "type": "Point", "coordinates": [ -0.5118723, 51.1023819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04511173" }, "bbox": [ -0.5094335, 51.2552928, -0.5094335, 51.2552928 ], "geometry": { "type": "Point", "coordinates": [ -0.5094335, 51.2552928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00489776" }, "bbox": [ -0.5552494, 51.2291609, -0.5552494, 51.2291609 ], "geometry": { "type": "Point", "coordinates": [ -0.5552494, 51.2291609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31445459" }, "bbox": [ -0.1193069, 51.1854001, -0.1193069, 51.1854001 ], "geometry": { "type": "Point", "coordinates": [ -0.1193069, 51.1854001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13537927" }, "bbox": [ -0.3702578, 51.2672949, -0.3702578, 51.2672949 ], "geometry": { "type": "Point", "coordinates": [ -0.3702578, 51.2672949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34467906" }, "bbox": [ -0.0721332, 51.1978546, -0.0721332, 51.1978546 ], "geometry": { "type": "Point", "coordinates": [ -0.0721332, 51.1978546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27528674" }, "bbox": [ -0.1689536, 51.2595444, -0.1689536, 51.2595444 ], "geometry": { "type": "Point", "coordinates": [ -0.1689536, 51.2595444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02557033" }, "bbox": [ -0.5284083, 51.2876825, -0.5284083, 51.2876825 ], "geometry": { "type": "Point", "coordinates": [ -0.5284083, 51.2876825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01433777" }, "bbox": [ -0.5510316, 51.1842184, -0.5510316, 51.1842184 ], "geometry": { "type": "Point", "coordinates": [ -0.5510316, 51.1842184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22497791" }, "bbox": [ -0.242756, 51.235189, -0.242756, 51.235189 ], "geometry": { "type": "Point", "coordinates": [ -0.242756, 51.235189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20425134" }, "bbox": [ -0.2776883, 51.1675487, -0.2776883, 51.1675487 ], "geometry": { "type": "Point", "coordinates": [ -0.2776883, 51.1675487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42516406" }, "bbox": [ 0.0420398, 51.2406801, 0.0420398, 51.2406801 ], "geometry": { "type": "Point", "coordinates": [ 0.0420398, 51.2406801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24424457" }, "bbox": [ -0.2214768, 51.1688911, -0.2214768, 51.1688911 ], "geometry": { "type": "Point", "coordinates": [ -0.2214768, 51.1688911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368904" }, "bbox": [ -0.517175, 51.1142881, -0.517175, 51.1142881 ], "geometry": { "type": "Point", "coordinates": [ -0.517175, 51.1142881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02450235" }, "bbox": [ -0.5412042, 51.1982532, -0.5412042, 51.1982532 ], "geometry": { "type": "Point", "coordinates": [ -0.5412042, 51.1982532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02663617" }, "bbox": [ -0.5303273, 51.3853616, -0.5303273, 51.3853616 ], "geometry": { "type": "Point", "coordinates": [ -0.5303273, 51.3853616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24445337" }, "bbox": [ -0.2196855, 51.185055, -0.2196855, 51.185055 ], "geometry": { "type": "Point", "coordinates": [ -0.2196855, 51.185055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43502264" }, "bbox": [ 0.049835, 51.236828, 0.049835, 51.236828 ], "geometry": { "type": "Point", "coordinates": [ 0.049835, 51.236828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42457588" }, "bbox": [ 0.0414646, 51.1943891, 0.0414646, 51.1943891 ], "geometry": { "type": "Point", "coordinates": [ 0.0414646, 51.1943891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29550607" }, "bbox": [ -0.151495, 51.2795568, -0.151495, 51.2795568 ], "geometry": { "type": "Point", "coordinates": [ -0.151495, 51.2795568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36602368" }, "bbox": [ -0.0463216, 51.3290849, -0.0463216, 51.3290849 ], "geometry": { "type": "Point", "coordinates": [ -0.0463216, 51.3290849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20437110" }, "bbox": [ -0.2746048, 51.1743955, -0.2746048, 51.1743955 ], "geometry": { "type": "Point", "coordinates": [ -0.2746048, 51.1743955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05600168" }, "bbox": [ -0.493801, 51.335547, -0.493801, 51.335547 ], "geometry": { "type": "Point", "coordinates": [ -0.493801, 51.335547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26545157" }, "bbox": [ -0.1876061, 51.2763302, -0.1876061, 51.2763302 ], "geometry": { "type": "Point", "coordinates": [ -0.1876061, 51.2763302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27450084" }, "bbox": [ -0.1839194, 51.1977037, -0.1839194, 51.1977037 ], "geometry": { "type": "Point", "coordinates": [ -0.1839194, 51.1977037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32396070" }, "bbox": [ -0.1059597, 51.1411971, -0.1059597, 51.1411971 ], "geometry": { "type": "Point", "coordinates": [ -0.1059597, 51.1411971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39586049" }, "bbox": [ 0.0019341, 51.3087549, 0.0019341, 51.3087549 ], "geometry": { "type": "Point", "coordinates": [ 0.0019341, 51.3087549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16379849" }, "bbox": [ -0.329764, 51.1247676, -0.329764, 51.1247676 ], "geometry": { "type": "Point", "coordinates": [ -0.329764, 51.1247676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00698398" }, "bbox": [ -0.5511989, 51.4199053, -0.5511989, 51.4199053 ], "geometry": { "type": "Point", "coordinates": [ -0.5511989, 51.4199053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28493010" }, "bbox": [ -0.1639891, 51.2267026, -0.1639891, 51.2267026 ], "geometry": { "type": "Point", "coordinates": [ -0.1639891, 51.2267026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21431939" }, "bbox": [ -0.2677371, 51.1770077, -0.2677371, 51.1770077 ], "geometry": { "type": "Point", "coordinates": [ -0.2677371, 51.1770077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08398327" }, "bbox": [ -0.4457173, 51.1421666, -0.4457173, 51.1421666 ], "geometry": { "type": "Point", "coordinates": [ -0.4457173, 51.1421666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559856" }, "bbox": [ -0.5534703, 51.2902552, -0.5534703, 51.2902552 ], "geometry": { "type": "Point", "coordinates": [ -0.5534703, 51.2902552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42442543" }, "bbox": [ 0.0338968, 51.1814464, 0.0338968, 51.1814464 ], "geometry": { "type": "Point", "coordinates": [ 0.0338968, 51.1814464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27458258" }, "bbox": [ -0.1722356, 51.1951452, -0.1722356, 51.1951452 ], "geometry": { "type": "Point", "coordinates": [ -0.1722356, 51.1951452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40482122" }, "bbox": [ 0.0062436, 51.2158501, 0.0062436, 51.2158501 ], "geometry": { "type": "Point", "coordinates": [ 0.0062436, 51.2158501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42463726" }, "bbox": [ 0.036621, 51.1977934, 0.036621, 51.1977934 ], "geometry": { "type": "Point", "coordinates": [ 0.036621, 51.1977934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18401647" }, "bbox": [ -0.3120044, 51.1512809, -0.3120044, 51.1512809 ], "geometry": { "type": "Point", "coordinates": [ -0.3120044, 51.1512809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42436094" }, "bbox": [ 0.0387824, 51.1769609, 0.0387824, 51.1769609 ], "geometry": { "type": "Point", "coordinates": [ 0.0387824, 51.1769609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30491428" }, "bbox": [ -0.137084, 51.2278978, -0.137084, 51.2278978 ], "geometry": { "type": "Point", "coordinates": [ -0.137084, 51.2278978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24440721" }, "bbox": [ -0.2263063, 51.1835651, -0.2263063, 51.1835651 ], "geometry": { "type": "Point", "coordinates": [ -0.2263063, 51.1835651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421282" }, "bbox": [ -0.5550386, 51.1757304, -0.5550386, 51.1757304 ], "geometry": { "type": "Point", "coordinates": [ -0.5550386, 51.1757304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30451229" }, "bbox": [ -0.1394887, 51.1920743, -0.1394887, 51.1920743 ], "geometry": { "type": "Point", "coordinates": [ -0.1394887, 51.1920743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07459929" }, "bbox": [ -0.456028, 51.1966931, -0.456028, 51.1966931 ], "geometry": { "type": "Point", "coordinates": [ -0.456028, 51.1966931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19466805" }, "bbox": [ -0.2884215, 51.2012501, -0.2884215, 51.2012501 ], "geometry": { "type": "Point", "coordinates": [ -0.2884215, 51.2012501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21427985" }, "bbox": [ -0.2592505, 51.1719427, -0.2592505, 51.1719427 ], "geometry": { "type": "Point", "coordinates": [ -0.2592505, 51.1719427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18419924" }, "bbox": [ -0.2999094, 51.1580141, -0.2999094, 51.1580141 ], "geometry": { "type": "Point", "coordinates": [ -0.2999094, 51.1580141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00335560" }, "bbox": [ -0.5654804, 51.0929207, -0.5654804, 51.0929207 ], "geometry": { "type": "Point", "coordinates": [ -0.5654804, 51.0929207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38556570" }, "bbox": [ -0.0134169, 51.2838466, -0.0134169, 51.2838466 ], "geometry": { "type": "Point", "coordinates": [ -0.0134169, 51.2838466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11395084" }, "bbox": [ -0.4071965, 51.1469617, -0.4071965, 51.1469617 ], "geometry": { "type": "Point", "coordinates": [ -0.4071965, 51.1469617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15381950" }, "bbox": [ -0.3551126, 51.1341964, -0.3551126, 51.1341964 ], "geometry": { "type": "Point", "coordinates": [ -0.3551126, 51.1341964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18385885" }, "bbox": [ -0.3065656, 51.1366463, -0.3065656, 51.1366463 ], "geometry": { "type": "Point", "coordinates": [ -0.3065656, 51.1366463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32419472" }, "bbox": [ -0.1003435, 51.1593535, -0.1003435, 51.1593535 ], "geometry": { "type": "Point", "coordinates": [ -0.1003435, 51.1593535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04474252" }, "bbox": [ -0.5063631, 51.2174127, -0.5063631, 51.2174127 ], "geometry": { "type": "Point", "coordinates": [ -0.5063631, 51.2174127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13468195" }, "bbox": [ -0.372017, 51.2105588, -0.372017, 51.2105588 ], "geometry": { "type": "Point", "coordinates": [ -0.372017, 51.2105588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19393660" }, "bbox": [ -0.294899, 51.1432675, -0.294899, 51.1432675 ], "geometry": { "type": "Point", "coordinates": [ -0.294899, 51.1432675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19406180" }, "bbox": [ -0.2912186, 51.1539943, -0.2912186, 51.1539943 ], "geometry": { "type": "Point", "coordinates": [ -0.2912186, 51.1539943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20482234" }, "bbox": [ -0.2798918, 51.221588, -0.2798918, 51.221588 ], "geometry": { "type": "Point", "coordinates": [ -0.2798918, 51.221588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478933" }, "bbox": [ -0.0412728, 51.2087177, -0.0412728, 51.2087177 ], "geometry": { "type": "Point", "coordinates": [ -0.0412728, 51.2087177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25588220" }, "bbox": [ -0.1960192, 51.3101998, -0.1960192, 51.3101998 ], "geometry": { "type": "Point", "coordinates": [ -0.1960192, 51.3101998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01386177" }, "bbox": [ -0.5489655, 51.1390855, -0.5489655, 51.1390855 ], "geometry": { "type": "Point", "coordinates": [ -0.5489655, 51.1390855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11535750" }, "bbox": [ -0.4021624, 51.269814, -0.4021624, 51.269814 ], "geometry": { "type": "Point", "coordinates": [ -0.4021624, 51.269814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08554740" }, "bbox": [ -0.4433149, 51.2859258, -0.4433149, 51.2859258 ], "geometry": { "type": "Point", "coordinates": [ -0.4433149, 51.2859258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15400114" }, "bbox": [ -0.3569368, 51.1490029, -0.3569368, 51.1490029 ], "geometry": { "type": "Point", "coordinates": [ -0.3569368, 51.1490029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37400496" }, "bbox": [ -0.0419322, 51.1515077, -0.0419322, 51.1515077 ], "geometry": { "type": "Point", "coordinates": [ -0.0419322, 51.1515077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41552075" }, "bbox": [ 0.0233349, 51.2834651, 0.0233349, 51.2834651 ], "geometry": { "type": "Point", "coordinates": [ 0.0233349, 51.2834651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05388555" }, "bbox": [ -0.4884394, 51.1363296, -0.4884394, 51.1363296 ], "geometry": { "type": "Point", "coordinates": [ -0.4884394, 51.1363296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39578364" }, "bbox": [ 0.0042316, 51.3006248, 0.0042316, 51.3006248 ], "geometry": { "type": "Point", "coordinates": [ 0.0042316, 51.3006248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09564415" }, "bbox": [ -0.4316573, 51.2939457, -0.4316573, 51.2939457 ], "geometry": { "type": "Point", "coordinates": [ -0.4316573, 51.2939457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22435678" }, "bbox": [ -0.2475805, 51.1801697, -0.2475805, 51.1801697 ], "geometry": { "type": "Point", "coordinates": [ -0.2475805, 51.1801697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12613957" }, "bbox": [ -0.3878632, 51.3420882, -0.3878632, 51.3420882 ], "geometry": { "type": "Point", "coordinates": [ -0.3878632, 51.3420882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28473338" }, "bbox": [ -0.1640854, 51.2114132, -0.1640854, 51.2114132 ], "geometry": { "type": "Point", "coordinates": [ -0.1640854, 51.2114132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39436159" }, "bbox": [ -0.0041494, 51.1744511, -0.0041494, 51.1744511 ], "geometry": { "type": "Point", "coordinates": [ -0.0041494, 51.1744511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12465317" }, "bbox": [ -0.3906445, 51.2037136, -0.3906445, 51.2037136 ], "geometry": { "type": "Point", "coordinates": [ -0.3906445, 51.2037136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25471280" }, "bbox": [ -0.2097955, 51.215723, -0.2097955, 51.215723 ], "geometry": { "type": "Point", "coordinates": [ -0.2097955, 51.215723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36443640" }, "bbox": [ -0.0504487, 51.1827058, -0.0504487, 51.1827058 ], "geometry": { "type": "Point", "coordinates": [ -0.0504487, 51.1827058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17419677" }, "bbox": [ -0.3143521, 51.1630032, -0.3143521, 51.1630032 ], "geometry": { "type": "Point", "coordinates": [ -0.3143521, 51.1630032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521051" }, "bbox": [ -0.3947606, 51.2607562, -0.3947606, 51.2607562 ], "geometry": { "type": "Point", "coordinates": [ -0.3947606, 51.2607562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386027" }, "bbox": [ -0.2778779, 51.1310781, -0.2778779, 51.1310781 ], "geometry": { "type": "Point", "coordinates": [ -0.2778779, 51.1310781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06549942" }, "bbox": [ -0.4675294, 51.2788185, -0.4675294, 51.2788185 ], "geometry": { "type": "Point", "coordinates": [ -0.4675294, 51.2788185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16420834" }, "bbox": [ -0.3407618, 51.1684238, -0.3407618, 51.1684238 ], "geometry": { "type": "Point", "coordinates": [ -0.3407618, 51.1684238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22520561" }, "bbox": [ -0.2521304, 51.2594798, -0.2521304, 51.2594798 ], "geometry": { "type": "Point", "coordinates": [ -0.2521304, 51.2594798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33499898" }, "bbox": [ -0.0825004, 51.2327522, -0.0825004, 51.2327522 ], "geometry": { "type": "Point", "coordinates": [ -0.0825004, 51.2327522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30419221" }, "bbox": [ -0.1294145, 51.1550122, -0.1294145, 51.1550122 ], "geometry": { "type": "Point", "coordinates": [ -0.1294145, 51.1550122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42517323" }, "bbox": [ 0.043578, 51.2424224, 0.043578, 51.2424224 ], "geometry": { "type": "Point", "coordinates": [ 0.043578, 51.2424224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12535373" }, "bbox": [ -0.3883072, 51.2717224, -0.3883072, 51.2717224 ], "geometry": { "type": "Point", "coordinates": [ -0.3883072, 51.2717224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32393557" }, "bbox": [ -0.109512, 51.1400771, -0.109512, 51.1400771 ], "geometry": { "type": "Point", "coordinates": [ -0.109512, 51.1400771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06341255" }, "bbox": [ -0.4859438, 51.1005366, -0.4859438, 51.1005366 ], "geometry": { "type": "Point", "coordinates": [ -0.4859438, 51.1005366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549326" }, "bbox": [ -0.2820107, 51.2748828, -0.2820107, 51.2748828 ], "geometry": { "type": "Point", "coordinates": [ -0.2820107, 51.2748828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24441405" }, "bbox": [ -0.2253472, 51.1821963, -0.2253472, 51.1821963 ], "geometry": { "type": "Point", "coordinates": [ -0.2253472, 51.1821963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36485506" }, "bbox": [ -0.046308, 51.215445, -0.046308, 51.215445 ], "geometry": { "type": "Point", "coordinates": [ -0.046308, 51.215445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442208" }, "bbox": [ -0.3247589, 51.183945, -0.3247589, 51.183945 ], "geometry": { "type": "Point", "coordinates": [ -0.3247589, 51.183945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42417185" }, "bbox": [ 0.0389558, 51.1579948, 0.0389558, 51.1579948 ], "geometry": { "type": "Point", "coordinates": [ 0.0389558, 51.1579948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07411717" }, "bbox": [ -0.4693667, 51.1596682, -0.4693667, 51.1596682 ], "geometry": { "type": "Point", "coordinates": [ -0.4693667, 51.1596682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369695" }, "bbox": [ -0.5589181, 51.1230365, -0.5589181, 51.1230365 ], "geometry": { "type": "Point", "coordinates": [ -0.5589181, 51.1230365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580499" }, "bbox": [ -0.3647176, 51.3186072, -0.3647176, 51.3186072 ], "geometry": { "type": "Point", "coordinates": [ -0.3647176, 51.3186072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12589826" }, "bbox": [ -0.3802028, 51.3120659, -0.3802028, 51.3120659 ], "geometry": { "type": "Point", "coordinates": [ -0.3802028, 51.3120659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24434387" }, "bbox": [ -0.2210875, 51.1804863, -0.2210875, 51.1804863 ], "geometry": { "type": "Point", "coordinates": [ -0.2210875, 51.1804863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05466636" }, "bbox": [ -0.4888547, 51.2067603, -0.4888547, 51.2067603 ], "geometry": { "type": "Point", "coordinates": [ -0.4888547, 51.2067603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11438123" }, "bbox": [ -0.4017167, 51.1774906, -0.4017167, 51.1774906 ], "geometry": { "type": "Point", "coordinates": [ -0.4017167, 51.1774906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12436083" }, "bbox": [ -0.3903682, 51.1825352, -0.3903682, 51.1825352 ], "geometry": { "type": "Point", "coordinates": [ -0.3903682, 51.1825352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403031" }, "bbox": [ -0.4245769, 51.1515181, -0.4245769, 51.1515181 ], "geometry": { "type": "Point", "coordinates": [ -0.4245769, 51.1515181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29544489" }, "bbox": [ -0.1452359, 51.278511, -0.1452359, 51.278511 ], "geometry": { "type": "Point", "coordinates": [ -0.1452359, 51.278511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07345848" }, "bbox": [ -0.4648018, 51.0996202, -0.4648018, 51.0996202 ], "geometry": { "type": "Point", "coordinates": [ -0.4648018, 51.0996202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498434" }, "bbox": [ -0.2277083, 51.2298285, -0.2277083, 51.2298285 ], "geometry": { "type": "Point", "coordinates": [ -0.2277083, 51.2298285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24490335" }, "bbox": [ -0.2249602, 51.2299177, -0.2249602, 51.2299177 ], "geometry": { "type": "Point", "coordinates": [ -0.2249602, 51.2299177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39449670" }, "bbox": [ 0.0013137, 51.1842544, 0.0013137, 51.1842544 ], "geometry": { "type": "Point", "coordinates": [ 0.0013137, 51.1842544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566278" }, "bbox": [ -0.2854729, 51.297634, -0.2854729, 51.297634 ], "geometry": { "type": "Point", "coordinates": [ -0.2854729, 51.297634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39451948" }, "bbox": [ -0.0095555, 51.1916067, -0.0095555, 51.1916067 ], "geometry": { "type": "Point", "coordinates": [ -0.0095555, 51.1916067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12472672" }, "bbox": [ -0.3939868, 51.2176578, -0.3939868, 51.2176578 ], "geometry": { "type": "Point", "coordinates": [ -0.3939868, 51.2176578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17404467" }, "bbox": [ -0.3219482, 51.1532239, -0.3219482, 51.1532239 ], "geometry": { "type": "Point", "coordinates": [ -0.3219482, 51.1532239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19458778" }, "bbox": [ -0.2857283, 51.1987932, -0.2857283, 51.1987932 ], "geometry": { "type": "Point", "coordinates": [ -0.2857283, 51.1987932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23471968" }, "bbox": [ -0.2376981, 51.2150717, -0.2376981, 51.2150717 ], "geometry": { "type": "Point", "coordinates": [ -0.2376981, 51.2150717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23516643" }, "bbox": [ -0.2295413, 51.2485762, -0.2295413, 51.2485762 ], "geometry": { "type": "Point", "coordinates": [ -0.2295413, 51.2485762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13463592" }, "bbox": [ -0.378644, 51.2102629, -0.378644, 51.2102629 ], "geometry": { "type": "Point", "coordinates": [ -0.378644, 51.2102629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21492804" }, "bbox": [ -0.2641844, 51.2276973, -0.2641844, 51.2276973 ], "geometry": { "type": "Point", "coordinates": [ -0.2641844, 51.2276973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10595910" }, "bbox": [ -0.4143929, 51.3203633, -0.4143929, 51.3203633 ], "geometry": { "type": "Point", "coordinates": [ -0.4143929, 51.3203633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22412260" }, "bbox": [ -0.253538, 51.1606786, -0.253538, 51.1606786 ], "geometry": { "type": "Point", "coordinates": [ -0.253538, 51.1606786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13527292" }, "bbox": [ -0.3719406, 51.2640776, -0.3719406, 51.2640776 ], "geometry": { "type": "Point", "coordinates": [ -0.3719406, 51.2640776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21425236" }, "bbox": [ -0.2632447, 51.1676507, -0.2632447, 51.1676507 ], "geometry": { "type": "Point", "coordinates": [ -0.2632447, 51.1676507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38435432" }, "bbox": [ -0.0195743, 51.1723576, -0.0195743, 51.1723576 ], "geometry": { "type": "Point", "coordinates": [ -0.0195743, 51.1723576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17404288" }, "bbox": [ -0.3222765, 51.155266, -0.3222765, 51.155266 ], "geometry": { "type": "Point", "coordinates": [ -0.3222765, 51.155266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12392866" }, "bbox": [ -0.3963638, 51.1452543, -0.3963638, 51.1452543 ], "geometry": { "type": "Point", "coordinates": [ -0.3963638, 51.1452543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21514127" }, "bbox": [ -0.2617868, 51.2477567, -0.2617868, 51.2477567 ], "geometry": { "type": "Point", "coordinates": [ -0.2617868, 51.2477567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39458758" }, "bbox": [ 0.0003454, 51.1923677, 0.0003454, 51.1923677 ], "geometry": { "type": "Point", "coordinates": [ 0.0003454, 51.1923677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37449633" }, "bbox": [ -0.0275401, 51.1814883, -0.0275401, 51.1814883 ], "geometry": { "type": "Point", "coordinates": [ -0.0275401, 51.1814883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36578489" }, "bbox": [ -0.0385338, 51.3036519, -0.0385338, 51.3036519 ], "geometry": { "type": "Point", "coordinates": [ -0.0385338, 51.3036519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18468379" }, "bbox": [ -0.3003801, 51.2080137, -0.3003801, 51.2080137 ], "geometry": { "type": "Point", "coordinates": [ -0.3003801, 51.2080137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16415188" }, "bbox": [ -0.3351187, 51.1643305, -0.3351187, 51.1643305 ], "geometry": { "type": "Point", "coordinates": [ -0.3351187, 51.1643305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11445736" }, "bbox": [ -0.4050526, 51.1875344, -0.4050526, 51.1875344 ], "geometry": { "type": "Point", "coordinates": [ -0.4050526, 51.1875344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16534028" }, "bbox": [ -0.3328982, 51.2668617, -0.3328982, 51.2668617 ], "geometry": { "type": "Point", "coordinates": [ -0.3328982, 51.2668617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00377448" }, "bbox": [ -0.5618726, 51.127916, -0.5618726, 51.127916 ], "geometry": { "type": "Point", "coordinates": [ -0.5618726, 51.127916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21483270" }, "bbox": [ -0.2638874, 51.2246545, -0.2638874, 51.2246545 ], "geometry": { "type": "Point", "coordinates": [ -0.2638874, 51.2246545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20452390" }, "bbox": [ -0.280668, 51.1996767, -0.280668, 51.1996767 ], "geometry": { "type": "Point", "coordinates": [ -0.280668, 51.1996767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35483733" }, "bbox": [ -0.0634296, 51.2184014, -0.0634296, 51.2184014 ], "geometry": { "type": "Point", "coordinates": [ -0.0634296, 51.2184014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39550582" }, "bbox": [ -0.0074602, 51.2845805, -0.0074602, 51.2845805 ], "geometry": { "type": "Point", "coordinates": [ -0.0074602, 51.2845805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08535156" }, "bbox": [ -0.4460108, 51.2709005, -0.4460108, 51.2709005 ], "geometry": { "type": "Point", "coordinates": [ -0.4460108, 51.2709005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19491032" }, "bbox": [ -0.2955049, 51.23073, -0.2955049, 51.23073 ], "geometry": { "type": "Point", "coordinates": [ -0.2955049, 51.23073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06375939" }, "bbox": [ -0.4782136, 51.1259458, -0.4782136, 51.1259458 ], "geometry": { "type": "Point", "coordinates": [ -0.4782136, 51.1259458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33441653" }, "bbox": [ -0.0960426, 51.1845095, -0.0960426, 51.1845095 ], "geometry": { "type": "Point", "coordinates": [ -0.0960426, 51.1845095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22638096" }, "bbox": [ -0.237491, 51.3612442, -0.237491, 51.3612442 ], "geometry": { "type": "Point", "coordinates": [ -0.237491, 51.3612442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03330478" }, "bbox": [ -0.5298597, 51.094228, -0.5298597, 51.094228 ], "geometry": { "type": "Point", "coordinates": [ -0.5298597, 51.094228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13473463" }, "bbox": [ -0.3787248, 51.216754, -0.3787248, 51.216754 ], "geometry": { "type": "Point", "coordinates": [ -0.3787248, 51.216754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42440205" }, "bbox": [ 0.0303796, 51.1779682, 0.0303796, 51.1779682 ], "geometry": { "type": "Point", "coordinates": [ 0.0303796, 51.1779682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19392931" }, "bbox": [ -0.2961273, 51.1406417, -0.2961273, 51.1406417 ], "geometry": { "type": "Point", "coordinates": [ -0.2961273, 51.1406417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10384008" }, "bbox": [ -0.4234371, 51.1313727, -0.4234371, 51.1313727 ], "geometry": { "type": "Point", "coordinates": [ -0.4234371, 51.1313727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14498695" }, "bbox": [ -0.3560071, 51.2372502, -0.3560071, 51.2372502 ], "geometry": { "type": "Point", "coordinates": [ -0.3560071, 51.2372502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09599695" }, "bbox": [ -0.4230456, 51.3281062, -0.4230456, 51.3281062 ], "geometry": { "type": "Point", "coordinates": [ -0.4230456, 51.3281062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13468998" }, "bbox": [ -0.3709416, 51.2106877, -0.3709416, 51.2106877 ], "geometry": { "type": "Point", "coordinates": [ -0.3709416, 51.2106877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04364304" }, "bbox": [ -0.5095715, 51.1142001, -0.5095715, 51.1142001 ], "geometry": { "type": "Point", "coordinates": [ -0.5095715, 51.1142001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02418204" }, "bbox": [ -0.5308833, 51.1593274, -0.5308833, 51.1593274 ], "geometry": { "type": "Point", "coordinates": [ -0.5308833, 51.1593274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05690868" }, "bbox": [ -0.4902476, 51.4165214, -0.4902476, 51.4165214 ], "geometry": { "type": "Point", "coordinates": [ -0.4902476, 51.4165214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26468474" }, "bbox": [ -0.1855182, 51.2059017, -0.1855182, 51.2059017 ], "geometry": { "type": "Point", "coordinates": [ -0.1855182, 51.2059017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96398434" }, "bbox": [ -0.6169674, 51.1451504, -0.6169674, 51.1451504 ], "geometry": { "type": "Point", "coordinates": [ -0.6169674, 51.1451504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98602915" }, "bbox": [ -0.5906863, 51.3320771, -0.5906863, 51.3320771 ], "geometry": { "type": "Point", "coordinates": [ -0.5906863, 51.3320771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91445496" }, "bbox": [ -0.6912049, 51.1965472, -0.6912049, 51.1965472 ], "geometry": { "type": "Point", "coordinates": [ -0.6912049, 51.1965472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89384887" }, "bbox": [ -0.722211, 51.1421446, -0.722211, 51.1421446 ], "geometry": { "type": "Point", "coordinates": [ -0.722211, 51.1421446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95498258" }, "bbox": [ -0.6290746, 51.2375078, -0.6290746, 51.2375078 ], "geometry": { "type": "Point", "coordinates": [ -0.6290746, 51.2375078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94587523" }, "bbox": [ -0.6418867, 51.3153277, -0.6418867, 51.3153277 ], "geometry": { "type": "Point", "coordinates": [ -0.6418867, 51.3153277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94369534" }, "bbox": [ -0.6446667, 51.1185342, -0.6446667, 51.1185342 ], "geometry": { "type": "Point", "coordinates": [ -0.6446667, 51.1185342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89375297" }, "bbox": [ -0.7218718, 51.134045, -0.7218718, 51.134045 ], "geometry": { "type": "Point", "coordinates": [ -0.7218718, 51.134045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89349758" }, "bbox": [ -0.7164578, 51.103441, -0.7164578, 51.103441 ], "geometry": { "type": "Point", "coordinates": [ -0.7164578, 51.103441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92414794" }, "bbox": [ -0.6787752, 51.1691032, -0.6787752, 51.1691032 ], "geometry": { "type": "Point", "coordinates": [ -0.6787752, 51.1691032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86405178" }, "bbox": [ -0.7643851, 51.1597977, -0.7643851, 51.1597977 ], "geometry": { "type": "Point", "coordinates": [ -0.7643851, 51.1597977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91370494" }, "bbox": [ -0.7005207, 51.1333762, -0.7005207, 51.1333762 ], "geometry": { "type": "Point", "coordinates": [ -0.7005207, 51.1333762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89384829" }, "bbox": [ -0.7223515, 51.1369495, -0.7223515, 51.1369495 ], "geometry": { "type": "Point", "coordinates": [ -0.7223515, 51.1369495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90364559" }, "bbox": [ -0.7089165, 51.1214683, -0.7089165, 51.1214683 ], "geometry": { "type": "Point", "coordinates": [ -0.7089165, 51.1214683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95485966" }, "bbox": [ -0.6323832, 51.2290743, -0.6323832, 51.2290743 ], "geometry": { "type": "Point", "coordinates": [ -0.6323832, 51.2290743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94337266" }, "bbox": [ -0.6488257, 51.0941162, -0.6488257, 51.0941162 ], "geometry": { "type": "Point", "coordinates": [ -0.6488257, 51.0941162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92415386" }, "bbox": [ -0.6778839, 51.1685689, -0.6778839, 51.1685689 ], "geometry": { "type": "Point", "coordinates": [ -0.6778839, 51.1685689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96548116" }, "bbox": [ -0.6133739, 51.2783751, -0.6133739, 51.2783751 ], "geometry": { "type": "Point", "coordinates": [ -0.6133739, 51.2783751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85389292" }, "bbox": [ -0.7731361, 51.1431185, -0.7731361, 51.1431185 ], "geometry": { "type": "Point", "coordinates": [ -0.7731361, 51.1431185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98364856" }, "bbox": [ -0.5943518, 51.1197988, -0.5943518, 51.1197988 ], "geometry": { "type": "Point", "coordinates": [ -0.5943518, 51.1197988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97476299" }, "bbox": [ -0.6030783, 51.2227323, -0.6030783, 51.2227323 ], "geometry": { "type": "Point", "coordinates": [ -0.6030783, 51.2227323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90379139" }, "bbox": [ -0.7022578, 51.1286475, -0.7022578, 51.1286475 ], "geometry": { "type": "Point", "coordinates": [ -0.7022578, 51.1286475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97462523" }, "bbox": [ -0.6095055, 51.2069596, -0.6095055, 51.2069596 ], "geometry": { "type": "Point", "coordinates": [ -0.6095055, 51.2069596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96394801" }, "bbox": [ -0.6236481, 51.1421113, -0.6236481, 51.1421113 ], "geometry": { "type": "Point", "coordinates": [ -0.6236481, 51.1421113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96463107" }, "bbox": [ -0.6228288, 51.205637, -0.6228288, 51.205637 ], "geometry": { "type": "Point", "coordinates": [ -0.6228288, 51.205637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88488442" }, "bbox": [ -0.7266388, 51.227632, -0.7266388, 51.227632 ], "geometry": { "type": "Point", "coordinates": [ -0.7266388, 51.227632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96371657" }, "bbox": [ -0.6270254, 51.1293381, -0.6270254, 51.1293381 ], "geometry": { "type": "Point", "coordinates": [ -0.6270254, 51.1293381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96452789" }, "bbox": [ -0.6235563, 51.2038776, -0.6235563, 51.2038776 ], "geometry": { "type": "Point", "coordinates": [ -0.6235563, 51.2038776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720292" }, "bbox": [ -0.5764841, 51.4466142, -0.5764841, 51.4466142 ], "geometry": { "type": "Point", "coordinates": [ -0.5764841, 51.4466142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93451609" }, "bbox": [ -0.6680409, 51.197522, -0.6680409, 51.197522 ], "geometry": { "type": "Point", "coordinates": [ -0.6680409, 51.197522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91357506" }, "bbox": [ -0.6906858, 51.107509, -0.6906858, 51.107509 ], "geometry": { "type": "Point", "coordinates": [ -0.6906858, 51.107509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89384444" }, "bbox": [ -0.7228529, 51.1383329, -0.7228529, 51.1383329 ], "geometry": { "type": "Point", "coordinates": [ -0.7228529, 51.1383329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88388229" }, "bbox": [ -0.7322872, 51.1369546, -0.7322872, 51.1369546 ], "geometry": { "type": "Point", "coordinates": [ -0.7322872, 51.1369546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90365070" }, "bbox": [ -0.7084237, 51.1224386, -0.7084237, 51.1224386 ], "geometry": { "type": "Point", "coordinates": [ -0.7084237, 51.1224386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90365768" }, "bbox": [ -0.7072068, 51.1223177, -0.7072068, 51.1223177 ], "geometry": { "type": "Point", "coordinates": [ -0.7072068, 51.1223177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93490363" }, "bbox": [ -0.6688517, 51.2382524, -0.6688517, 51.2382524 ], "geometry": { "type": "Point", "coordinates": [ -0.6688517, 51.2382524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95536461" }, "bbox": [ -0.6302694, 51.2736559, -0.6302694, 51.2736559 ], "geometry": { "type": "Point", "coordinates": [ -0.6302694, 51.2736559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91474680" }, "bbox": [ -0.6915502, 51.2221295, -0.6915502, 51.2221295 ], "geometry": { "type": "Point", "coordinates": [ -0.6915502, 51.2221295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91475073" }, "bbox": [ -0.6910748, 51.2214657, -0.6910748, 51.2214657 ], "geometry": { "type": "Point", "coordinates": [ -0.6910748, 51.2214657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91425127" }, "bbox": [ -0.6923074, 51.1723792, -0.6923074, 51.1723792 ], "geometry": { "type": "Point", "coordinates": [ -0.6923074, 51.1723792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97327571" }, "bbox": [ -0.6059796, 51.0856323, -0.6059796, 51.0856323 ], "geometry": { "type": "Point", "coordinates": [ -0.6059796, 51.0856323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92472412" }, "bbox": [ -0.6810056, 51.2160244, -0.6810056, 51.2160244 ], "geometry": { "type": "Point", "coordinates": [ -0.6810056, 51.2160244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81457844" }, "bbox": [ -0.8305526, 51.2023438, -0.8305526, 51.2023438 ], "geometry": { "type": "Point", "coordinates": [ -0.8305526, 51.2023438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97395506" }, "bbox": [ -0.6069448, 51.1424175, -0.6069448, 51.1424175 ], "geometry": { "type": "Point", "coordinates": [ -0.6069448, 51.1424175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99484806" }, "bbox": [ -0.5768571, 51.2230948, -0.5768571, 51.2230948 ], "geometry": { "type": "Point", "coordinates": [ -0.5768571, 51.2230948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86383209" }, "bbox": [ -0.7677337, 51.1356111, -0.7677337, 51.1356111 ], "geometry": { "type": "Point", "coordinates": [ -0.7677337, 51.1356111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90381433" }, "bbox": [ -0.7131206, 51.1370896, -0.7131206, 51.1370896 ], "geometry": { "type": "Point", "coordinates": [ -0.7131206, 51.1370896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81456827" }, "bbox": [ -0.8321713, 51.2008969, -0.8321713, 51.2008969 ], "geometry": { "type": "Point", "coordinates": [ -0.8321713, 51.2008969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529622" }, "bbox": [ -0.6260989, 51.2610836, -0.6260989, 51.2610836 ], "geometry": { "type": "Point", "coordinates": [ -0.6260989, 51.2610836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96360579" }, "bbox": [ -0.6287998, 51.1222352, -0.6287998, 51.1222352 ], "geometry": { "type": "Point", "coordinates": [ -0.6287998, 51.1222352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94590223" }, "bbox": [ -0.6519109, 51.3243836, -0.6519109, 51.3243836 ], "geometry": { "type": "Point", "coordinates": [ -0.6519109, 51.3243836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86347850" }, "bbox": [ -0.7631549, 51.1030828, -0.7631549, 51.1030828 ], "geometry": { "type": "Point", "coordinates": [ -0.7631549, 51.1030828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81477579" }, "bbox": [ -0.8306166, 51.2234467, -0.8306166, 51.2234467 ], "geometry": { "type": "Point", "coordinates": [ -0.8306166, 51.2234467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94436198" }, "bbox": [ -0.647525, 51.1873137, -0.647525, 51.1873137 ], "geometry": { "type": "Point", "coordinates": [ -0.647525, 51.1873137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82446723" }, "bbox": [ -0.8184393, 51.1913604, -0.8184393, 51.1913604 ], "geometry": { "type": "Point", "coordinates": [ -0.8184393, 51.1913604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98477824" }, "bbox": [ -0.5869536, 51.2159413, -0.5869536, 51.2159413 ], "geometry": { "type": "Point", "coordinates": [ -0.5869536, 51.2159413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380914" }, "bbox": [ -0.7706797, 51.1360213, -0.7706797, 51.1360213 ], "geometry": { "type": "Point", "coordinates": [ -0.7706797, 51.1360213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87334090" }, "bbox": [ -0.7529726, 51.0978291, -0.7529726, 51.0978291 ], "geometry": { "type": "Point", "coordinates": [ -0.7529726, 51.0978291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96513540" }, "bbox": [ -0.6207123, 51.2536716, -0.6207123, 51.2536716 ], "geometry": { "type": "Point", "coordinates": [ -0.6207123, 51.2536716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90379952" }, "bbox": [ -0.7012234, 51.1299356, -0.7012234, 51.1299356 ], "geometry": { "type": "Point", "coordinates": [ -0.7012234, 51.1299356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517792" }, "bbox": [ -0.6718706, 51.2589854, -0.6718706, 51.2589854 ], "geometry": { "type": "Point", "coordinates": [ -0.6718706, 51.2589854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93426165" }, "bbox": [ -0.6622116, 51.175477, -0.6622116, 51.175477 ], "geometry": { "type": "Point", "coordinates": [ -0.6622116, 51.175477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422208" }, "bbox": [ -0.8252256, 51.1721291, -0.8252256, 51.1721291 ], "geometry": { "type": "Point", "coordinates": [ -0.8252256, 51.1721291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82471148" }, "bbox": [ -0.826064, 51.2208585, -0.826064, 51.2208585 ], "geometry": { "type": "Point", "coordinates": [ -0.826064, 51.2208585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89408712" }, "bbox": [ -0.7162624, 51.1533005, -0.7162624, 51.1533005 ], "geometry": { "type": "Point", "coordinates": [ -0.7162624, 51.1533005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92514825" }, "bbox": [ -0.6768095, 51.2527334, -0.6768095, 51.2527334 ], "geometry": { "type": "Point", "coordinates": [ -0.6768095, 51.2527334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89386890" }, "bbox": [ -0.7193892, 51.1424283, -0.7193892, 51.1424283 ], "geometry": { "type": "Point", "coordinates": [ -0.7193892, 51.1424283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91470181" }, "bbox": [ -0.6981365, 51.2222866, -0.6981365, 51.2222866 ], "geometry": { "type": "Point", "coordinates": [ -0.6981365, 51.2222866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92421419" }, "bbox": [ -0.6828368, 51.1713216, -0.6828368, 51.1713216 ], "geometry": { "type": "Point", "coordinates": [ -0.6828368, 51.1713216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98391310" }, "bbox": [ -0.5988412, 51.1427726, -0.5988412, 51.1427726 ], "geometry": { "type": "Point", "coordinates": [ -0.5988412, 51.1427726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86376873" }, "bbox": [ -0.7625749, 51.1322592, -0.7625749, 51.1322592 ], "geometry": { "type": "Point", "coordinates": [ -0.7625749, 51.1322592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94519808" }, "bbox": [ -0.6403791, 51.2510434, -0.6403791, 51.2510434 ], "geometry": { "type": "Point", "coordinates": [ -0.6403791, 51.2510434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86428880" }, "bbox": [ -0.7582483, 51.1778215, -0.7582483, 51.1778215 ], "geometry": { "type": "Point", "coordinates": [ -0.7582483, 51.1778215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90467146" }, "bbox": [ -0.7026613, 51.2099468, -0.7026613, 51.2099468 ], "geometry": { "type": "Point", "coordinates": [ -0.7026613, 51.2099468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396754" }, "bbox": [ -0.5906942, 51.1467024, -0.5906942, 51.1467024 ], "geometry": { "type": "Point", "coordinates": [ -0.5906942, 51.1467024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82473678" }, "bbox": [ -0.8211114, 51.2235077, -0.8211114, 51.2235077 ], "geometry": { "type": "Point", "coordinates": [ -0.8211114, 51.2235077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86381887" }, "bbox": [ -0.7694216, 51.1426529, -0.7694216, 51.1426529 ], "geometry": { "type": "Point", "coordinates": [ -0.7694216, 51.1426529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90426067" }, "bbox": [ -0.7053457, 51.1761594, -0.7053457, 51.1761594 ], "geometry": { "type": "Point", "coordinates": [ -0.7053457, 51.1761594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92459955" }, "bbox": [ -0.6702645, 51.2016198, -0.6702645, 51.2016198 ], "geometry": { "type": "Point", "coordinates": [ -0.6702645, 51.2016198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98480825" }, "bbox": [ -0.5970818, 51.2249778, -0.5970818, 51.2249778 ], "geometry": { "type": "Point", "coordinates": [ -0.5970818, 51.2249778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92446499" }, "bbox": [ -0.6754353, 51.1966636, -0.6754353, 51.1966636 ], "geometry": { "type": "Point", "coordinates": [ -0.6754353, 51.1966636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87352171" }, "bbox": [ -0.7552368, 51.1140265, -0.7552368, 51.1140265 ], "geometry": { "type": "Point", "coordinates": [ -0.7552368, 51.1140265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96462245" }, "bbox": [ -0.6240145, 51.2092383, -0.6240145, 51.2092383 ], "geometry": { "type": "Point", "coordinates": [ -0.6240145, 51.2092383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99438514" }, "bbox": [ -0.5730904, 51.178403, -0.5730904, 51.178403 ], "geometry": { "type": "Point", "coordinates": [ -0.5730904, 51.178403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97385313" }, "bbox": [ -0.607461, 51.1342755, -0.607461, 51.1342755 ], "geometry": { "type": "Point", "coordinates": [ -0.607461, 51.1342755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95375809" }, "bbox": [ -0.6355557, 51.125134, -0.6355557, 51.125134 ], "geometry": { "type": "Point", "coordinates": [ -0.6355557, 51.125134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97344061" }, "bbox": [ -0.6102816, 51.102406, -0.6102816, 51.102406 ], "geometry": { "type": "Point", "coordinates": [ -0.6102816, 51.102406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91447296" }, "bbox": [ -0.6886042, 51.1961628, -0.6886042, 51.1961628 ], "geometry": { "type": "Point", "coordinates": [ -0.6886042, 51.1961628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98412134" }, "bbox": [ -0.5968157, 51.1629345, -0.5968157, 51.1629345 ], "geometry": { "type": "Point", "coordinates": [ -0.5968157, 51.1629345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98467672" }, "bbox": [ -0.5876893, 51.2113026, -0.5876893, 51.2113026 ], "geometry": { "type": "Point", "coordinates": [ -0.5876893, 51.2113026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96398476" }, "bbox": [ -0.6168081, 51.1490416, -0.6168081, 51.1490416 ], "geometry": { "type": "Point", "coordinates": [ -0.6168081, 51.1490416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93625243" }, "bbox": [ -0.6583256, 51.3533019, -0.6583256, 51.3533019 ], "geometry": { "type": "Point", "coordinates": [ -0.6583256, 51.3533019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91476595" }, "bbox": [ -0.6892158, 51.2232129, -0.6892158, 51.2232129 ], "geometry": { "type": "Point", "coordinates": [ -0.6892158, 51.2232129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88388843" }, "bbox": [ -0.7309336, 51.1382607, -0.7309336, 51.1382607 ], "geometry": { "type": "Point", "coordinates": [ -0.7309336, 51.1382607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98727149" }, "bbox": [ -0.5812607, 51.4430016, -0.5812607, 51.4430016 ], "geometry": { "type": "Point", "coordinates": [ -0.5812607, 51.4430016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91427876" }, "bbox": [ -0.6883968, 51.1767556, -0.6883968, 51.1767556 ], "geometry": { "type": "Point", "coordinates": [ -0.6883968, 51.1767556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94564124" }, "bbox": [ -0.6472077, 51.2975247, -0.6472077, 51.2975247 ], "geometry": { "type": "Point", "coordinates": [ -0.6472077, 51.2975247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96512658" }, "bbox": [ -0.6220562, 51.2553881, -0.6220562, 51.2553881 ], "geometry": { "type": "Point", "coordinates": [ -0.6220562, 51.2553881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81479803" }, "bbox": [ -0.8275207, 51.2165177, -0.8275207, 51.2165177 ], "geometry": { "type": "Point", "coordinates": [ -0.8275207, 51.2165177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442209" }, "bbox": [ -0.6960093, 51.1888006, -0.6960093, 51.1888006 ], "geometry": { "type": "Point", "coordinates": [ -0.6960093, 51.1888006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98345164" }, "bbox": [ -0.5943476, 51.1026308, -0.5943476, 51.1026308 ], "geometry": { "type": "Point", "coordinates": [ -0.5943476, 51.1026308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89384613" }, "bbox": [ -0.7226602, 51.1355413, -0.7226602, 51.1355413 ], "geometry": { "type": "Point", "coordinates": [ -0.7226602, 51.1355413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95537553" }, "bbox": [ -0.628715, 51.2728853, -0.628715, 51.2728853 ], "geometry": { "type": "Point", "coordinates": [ -0.628715, 51.2728853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550530" }, "bbox": [ -0.6095044, 51.288774, -0.6095044, 51.288774 ], "geometry": { "type": "Point", "coordinates": [ -0.6095044, 51.288774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90484151" }, "bbox": [ -0.7070931, 51.2286579, -0.7070931, 51.2286579 ], "geometry": { "type": "Point", "coordinates": [ -0.7070931, 51.2286579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99440171" }, "bbox": [ -0.5845816, 51.1929995, -0.5845816, 51.1929995 ], "geometry": { "type": "Point", "coordinates": [ -0.5845816, 51.1929995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90484609" }, "bbox": [ -0.705971, 51.2248147, -0.705971, 51.2248147 ], "geometry": { "type": "Point", "coordinates": [ -0.705971, 51.2248147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85467512" }, "bbox": [ -0.7740707, 51.2078235, -0.7740707, 51.2078235 ], "geometry": { "type": "Point", "coordinates": [ -0.7740707, 51.2078235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82483513" }, "bbox": [ -0.8222204, 51.2263742, -0.8222204, 51.2263742 ], "geometry": { "type": "Point", "coordinates": [ -0.8222204, 51.2263742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93547944" }, "bbox": [ -0.6566754, 51.2813961, -0.6566754, 51.2813961 ], "geometry": { "type": "Point", "coordinates": [ -0.6566754, 51.2813961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85425653" }, "bbox": [ -0.7773309, 51.1758021, -0.7773309, 51.1758021 ], "geometry": { "type": "Point", "coordinates": [ -0.7773309, 51.1758021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91445094" }, "bbox": [ -0.6918388, 51.1963957, -0.6918388, 51.1963957 ], "geometry": { "type": "Point", "coordinates": [ -0.6918388, 51.1963957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82484940" }, "bbox": [ -0.8199495, 51.2290655, -0.8199495, 51.2290655 ], "geometry": { "type": "Point", "coordinates": [ -0.8199495, 51.2290655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92425004" }, "bbox": [ -0.6784468, 51.1701, -0.6784468, 51.1701 ], "geometry": { "type": "Point", "coordinates": [ -0.6784468, 51.1701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93475030" }, "bbox": [ -0.6625261, 51.2172936, -0.6625261, 51.2172936 ], "geometry": { "type": "Point", "coordinates": [ -0.6625261, 51.2172936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91488245" }, "bbox": [ -0.6857799, 51.2276316, -0.6857799, 51.2276316 ], "geometry": { "type": "Point", "coordinates": [ -0.6857799, 51.2276316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90381996" }, "bbox": [ -0.7120022, 51.1428471, -0.7120022, 51.1428471 ], "geometry": { "type": "Point", "coordinates": [ -0.7120022, 51.1428471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95352563" }, "bbox": [ -0.6408266, 51.112125, -0.6408266, 51.112125 ], "geometry": { "type": "Point", "coordinates": [ -0.6408266, 51.112125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92449002" }, "bbox": [ -0.672311, 51.1878337, -0.672311, 51.1878337 ], "geometry": { "type": "Point", "coordinates": [ -0.672311, 51.1878337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93524020" }, "bbox": [ -0.6629319, 51.2614223, -0.6629319, 51.2614223 ], "geometry": { "type": "Point", "coordinates": [ -0.6629319, 51.2614223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95586696" }, "bbox": [ -0.6286488, 51.3217187, -0.6286488, 51.3217187 ], "geometry": { "type": "Point", "coordinates": [ -0.6286488, 51.3217187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89486249" }, "bbox": [ -0.7178146, 51.2286265, -0.7178146, 51.2286265 ], "geometry": { "type": "Point", "coordinates": [ -0.7178146, 51.2286265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91327386" }, "bbox": [ -0.6915727, 51.0878092, -0.6915727, 51.0878092 ], "geometry": { "type": "Point", "coordinates": [ -0.6915727, 51.0878092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88487243" }, "bbox": [ -0.730665, 51.2282196, -0.730665, 51.2282196 ], "geometry": { "type": "Point", "coordinates": [ -0.730665, 51.2282196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432765" }, "bbox": [ -0.6811419, 51.1846728, -0.6811419, 51.1846728 ], "geometry": { "type": "Point", "coordinates": [ -0.6811419, 51.1846728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399031" }, "bbox": [ -0.6160142, 51.1448848, -0.6160142, 51.1448848 ], "geometry": { "type": "Point", "coordinates": [ -0.6160142, 51.1448848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89350119" }, "bbox": [ -0.7295273, 51.1091164, -0.7295273, 51.1091164 ], "geometry": { "type": "Point", "coordinates": [ -0.7295273, 51.1091164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95493131" }, "bbox": [ -0.6362248, 51.2349349, -0.6362248, 51.2349349 ], "geometry": { "type": "Point", "coordinates": [ -0.6362248, 51.2349349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98465529" }, "bbox": [ -0.5905855, 51.2074563, -0.5905855, 51.2074563 ], "geometry": { "type": "Point", "coordinates": [ -0.5905855, 51.2074563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90462975" }, "bbox": [ -0.7085908, 51.2126924, -0.7085908, 51.2126924 ], "geometry": { "type": "Point", "coordinates": [ -0.7085908, 51.2126924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99612041" }, "bbox": [ -0.5771245, 51.3431733, -0.5771245, 51.3431733 ], "geometry": { "type": "Point", "coordinates": [ -0.5771245, 51.3431733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99367901" }, "bbox": [ -0.575658, 51.1145497, -0.575658, 51.1145497 ], "geometry": { "type": "Point", "coordinates": [ -0.575658, 51.1145497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90440312" }, "bbox": [ -0.7130012, 51.1891906, -0.7130012, 51.1891906 ], "geometry": { "type": "Point", "coordinates": [ -0.7130012, 51.1891906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98411455" }, "bbox": [ -0.5977539, 51.1648059, -0.5977539, 51.1648059 ], "geometry": { "type": "Point", "coordinates": [ -0.5977539, 51.1648059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96542736" }, "bbox": [ -0.6209959, 51.2802938, -0.6209959, 51.2802938 ], "geometry": { "type": "Point", "coordinates": [ -0.6209959, 51.2802938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90440550" }, "bbox": [ -0.7131002, 51.1927987, -0.7131002, 51.1927987 ], "geometry": { "type": "Point", "coordinates": [ -0.7131002, 51.1927987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92469350" }, "bbox": [ -0.6709423, 51.210098, -0.6709423, 51.210098 ], "geometry": { "type": "Point", "coordinates": [ -0.6709423, 51.210098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89417572" }, "bbox": [ -0.7176062, 51.1677386, -0.7176062, 51.1677386 ], "geometry": { "type": "Point", "coordinates": [ -0.7176062, 51.1677386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93335415" }, "bbox": [ -0.6657966, 51.090031, -0.6657966, 51.090031 ], "geometry": { "type": "Point", "coordinates": [ -0.6657966, 51.090031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94493931" }, "bbox": [ -0.6493503, 51.2351893, -0.6493503, 51.2351893 ], "geometry": { "type": "Point", "coordinates": [ -0.6493503, 51.2351893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99722952" }, "bbox": [ -0.573101, 51.443243, -0.573101, 51.443243 ], "geometry": { "type": "Point", "coordinates": [ -0.573101, 51.443243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97383717" }, "bbox": [ -0.6098035, 51.1343816, -0.6098035, 51.1343816 ], "geometry": { "type": "Point", "coordinates": [ -0.6098035, 51.1343816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90474035" }, "bbox": [ -0.7068085, 51.2185182, -0.7068085, 51.2185182 ], "geometry": { "type": "Point", "coordinates": [ -0.7068085, 51.2185182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93433513" }, "bbox": [ -0.6659057, 51.179825, -0.6659057, 51.179825 ], "geometry": { "type": "Point", "coordinates": [ -0.6659057, 51.179825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92413078" }, "bbox": [ -0.6812484, 51.1679112, -0.6812484, 51.1679112 ], "geometry": { "type": "Point", "coordinates": [ -0.6812484, 51.1679112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501972" }, "bbox": [ -0.6518218, 51.2479024, -0.6518218, 51.2479024 ], "geometry": { "type": "Point", "coordinates": [ -0.6518218, 51.2479024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92435669" }, "bbox": [ -0.6771554, 51.184946, -0.6771554, 51.184946 ], "geometry": { "type": "Point", "coordinates": [ -0.6771554, 51.184946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99470114" }, "bbox": [ -0.5840745, 51.2147052, -0.5840745, 51.2147052 ], "geometry": { "type": "Point", "coordinates": [ -0.5840745, 51.2147052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91422279" }, "bbox": [ -0.696333, 51.1771371, -0.696333, 51.1771371 ], "geometry": { "type": "Point", "coordinates": [ -0.696333, 51.1771371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89380148" }, "bbox": [ -0.7292691, 51.1387215, -0.7292691, 51.1387215 ], "geometry": { "type": "Point", "coordinates": [ -0.7292691, 51.1387215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380188" }, "bbox": [ -0.7718681, 51.1428116, -0.7718681, 51.1428116 ], "geometry": { "type": "Point", "coordinates": [ -0.7718681, 51.1428116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93657336" }, "bbox": [ -0.6545681, 51.3795797, -0.6545681, 51.3795797 ], "geometry": { "type": "Point", "coordinates": [ -0.6545681, 51.3795797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628286" }, "bbox": [ -0.639561, 51.3568987, -0.639561, 51.3568987 ], "geometry": { "type": "Point", "coordinates": [ -0.639561, 51.3568987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382043" }, "bbox": [ -0.7263304, 51.1382364, -0.7263304, 51.1382364 ], "geometry": { "type": "Point", "coordinates": [ -0.7263304, 51.1382364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97337413" }, "bbox": [ -0.6058313, 51.0891006, -0.6058313, 51.0891006 ], "geometry": { "type": "Point", "coordinates": [ -0.6058313, 51.0891006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86376589" }, "bbox": [ -0.7630996, 51.1336999, -0.7630996, 51.1336999 ], "geometry": { "type": "Point", "coordinates": [ -0.7630996, 51.1336999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92374295" }, "bbox": [ -0.6805211, 51.1332821, -0.6805211, 51.1332821 ], "geometry": { "type": "Point", "coordinates": [ -0.6805211, 51.1332821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93321144" }, "bbox": [ -0.6719275, 51.0838056, -0.6719275, 51.0838056 ], "geometry": { "type": "Point", "coordinates": [ -0.6719275, 51.0838056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94390308" }, "bbox": [ -0.6571954, 51.1432099, -0.6571954, 51.1432099 ], "geometry": { "type": "Point", "coordinates": [ -0.6571954, 51.1432099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98364768" }, "bbox": [ -0.5943091, 51.1209419, -0.5943091, 51.1209419 ], "geometry": { "type": "Point", "coordinates": [ -0.5943091, 51.1209419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88385785" }, "bbox": [ -0.7354275, 51.1419527, -0.7354275, 51.1419527 ], "geometry": { "type": "Point", "coordinates": [ -0.7354275, 51.1419527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82450153" }, "bbox": [ -0.8272185, 51.2031451, -0.8272185, 51.2031451 ], "geometry": { "type": "Point", "coordinates": [ -0.8272185, 51.2031451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93450576" }, "bbox": [ -0.6693969, 51.203503, -0.6693969, 51.203503 ], "geometry": { "type": "Point", "coordinates": [ -0.6693969, 51.203503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95343441" }, "bbox": [ -0.6403371, 51.1009754, -0.6403371, 51.1009754 ], "geometry": { "type": "Point", "coordinates": [ -0.6403371, 51.1009754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89489419" }, "bbox": [ -0.713304, 51.2258637, -0.713304, 51.2258637 ], "geometry": { "type": "Point", "coordinates": [ -0.713304, 51.2258637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92423513" }, "bbox": [ -0.6802209, 51.1709803, -0.6802209, 51.1709803 ], "geometry": { "type": "Point", "coordinates": [ -0.6802209, 51.1709803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92362444" }, "bbox": [ -0.6835311, 51.1197777, -0.6835311, 51.1197777 ], "geometry": { "type": "Point", "coordinates": [ -0.6835311, 51.1197777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368701" }, "bbox": [ -0.6458774, 51.1159962, -0.6458774, 51.1159962 ], "geometry": { "type": "Point", "coordinates": [ -0.6458774, 51.1159962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94434184" }, "bbox": [ -0.6504829, 51.1859993, -0.6504829, 51.1859993 ], "geometry": { "type": "Point", "coordinates": [ -0.6504829, 51.1859993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98607950" }, "bbox": [ -0.5833955, 51.3349851, -0.5833955, 51.3349851 ], "geometry": { "type": "Point", "coordinates": [ -0.5833955, 51.3349851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82446526" }, "bbox": [ -0.8186067, 51.1916073, -0.8186067, 51.1916073 ], "geometry": { "type": "Point", "coordinates": [ -0.8186067, 51.1916073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94577582" }, "bbox": [ -0.6419046, 51.3116497, -0.6419046, 51.3116497 ], "geometry": { "type": "Point", "coordinates": [ -0.6419046, 51.3116497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82460120" }, "bbox": [ -0.8273218, 51.209167, -0.8273218, 51.209167 ], "geometry": { "type": "Point", "coordinates": [ -0.8273218, 51.209167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91519953" }, "bbox": [ -0.6830645, 51.2555868, -0.6830645, 51.2555868 ], "geometry": { "type": "Point", "coordinates": [ -0.6830645, 51.2555868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93433278" }, "bbox": [ -0.6657864, 51.18576, -0.6657864, 51.18576 ], "geometry": { "type": "Point", "coordinates": [ -0.6657864, 51.18576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87396802" }, "bbox": [ -0.7478321, 51.143769, -0.7478321, 51.143769 ], "geometry": { "type": "Point", "coordinates": [ -0.7478321, 51.143769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95501973" }, "bbox": [ -0.6375114, 51.2478638, -0.6375114, 51.2478638 ], "geometry": { "type": "Point", "coordinates": [ -0.6375114, 51.2478638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95500479" }, "bbox": [ -0.6398951, 51.2482024, -0.6398951, 51.2482024 ], "geometry": { "type": "Point", "coordinates": [ -0.6398951, 51.2482024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91494786" }, "bbox": [ -0.6905558, 51.2407268, -0.6905558, 51.2407268 ], "geometry": { "type": "Point", "coordinates": [ -0.6905558, 51.2407268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96513025" }, "bbox": [ -0.621612, 51.2525501, -0.621612, 51.2525501 ], "geometry": { "type": "Point", "coordinates": [ -0.621612, 51.2525501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95494066" }, "bbox": [ -0.6349533, 51.2383463, -0.6349533, 51.2383463 ], "geometry": { "type": "Point", "coordinates": [ -0.6349533, 51.2383463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97356273" }, "bbox": [ -0.6067585, 51.1124193, -0.6067585, 51.1124193 ], "geometry": { "type": "Point", "coordinates": [ -0.6067585, 51.1124193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92527914" }, "bbox": [ -0.6715288, 51.2608277, -0.6715288, 51.2608277 ], "geometry": { "type": "Point", "coordinates": [ -0.6715288, 51.2608277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90618918" }, "bbox": [ -0.696421, 51.342505, -0.696421, 51.342505 ], "geometry": { "type": "Point", "coordinates": [ -0.696421, 51.342505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90463847" }, "bbox": [ -0.7074787, 51.2102465, -0.7074787, 51.2102465 ], "geometry": { "type": "Point", "coordinates": [ -0.7074787, 51.2102465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86385239" }, "bbox": [ -0.7648275, 51.1382955, -0.7648275, 51.1382955 ], "geometry": { "type": "Point", "coordinates": [ -0.7648275, 51.1382955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98365812" }, "bbox": [ -0.5926908, 51.1159312, -0.5926908, 51.1159312 ], "geometry": { "type": "Point", "coordinates": [ -0.5926908, 51.1159312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92434488" }, "bbox": [ -0.6784802, 51.1867805, -0.6784802, 51.1867805 ], "geometry": { "type": "Point", "coordinates": [ -0.6784802, 51.1867805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380629" }, "bbox": [ -0.7712034, 51.1373397, -0.7712034, 51.1373397 ], "geometry": { "type": "Point", "coordinates": [ -0.7712034, 51.1373397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86377053" }, "bbox": [ -0.7622347, 51.130528, -0.7622347, 51.130528 ], "geometry": { "type": "Point", "coordinates": [ -0.7622347, 51.130528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91425944" }, "bbox": [ -0.6913886, 51.1738449, -0.6913886, 51.1738449 ], "geometry": { "type": "Point", "coordinates": [ -0.6913886, 51.1738449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87421490" }, "bbox": [ -0.7545916, 51.1787086, -0.7545916, 51.1787086 ], "geometry": { "type": "Point", "coordinates": [ -0.7545916, 51.1787086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99354890" }, "bbox": [ -0.5797096, 51.113731, -0.5797096, 51.113731 ], "geometry": { "type": "Point", "coordinates": [ -0.5797096, 51.113731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92507639" }, "bbox": [ -0.672346, 51.2451473, -0.672346, 51.2451473 ], "geometry": { "type": "Point", "coordinates": [ -0.672346, 51.2451473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99434687" }, "bbox": [ -0.578332, 51.1853662, -0.578332, 51.1853662 ], "geometry": { "type": "Point", "coordinates": [ -0.578332, 51.1853662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94576391" }, "bbox": [ -0.6436223, 51.3123533, -0.6436223, 51.3123533 ], "geometry": { "type": "Point", "coordinates": [ -0.6436223, 51.3123533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97330663" }, "bbox": [ -0.6151997, 51.0937954, -0.6151997, 51.0937954 ], "geometry": { "type": "Point", "coordinates": [ -0.6151997, 51.0937954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97460242" }, "bbox": [ -0.6124938, 51.2087351, -0.6124938, 51.2087351 ], "geometry": { "type": "Point", "coordinates": [ -0.6124938, 51.2087351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88487694" }, "bbox": [ -0.7300138, 51.2326975, -0.7300138, 51.2326975 ], "geometry": { "type": "Point", "coordinates": [ -0.7300138, 51.2326975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92444896" }, "bbox": [ -0.6777714, 51.196392, -0.6777714, 51.196392 ], "geometry": { "type": "Point", "coordinates": [ -0.6777714, 51.196392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93358546" }, "bbox": [ -0.6608036, 51.1106983, -0.6608036, 51.1106983 ], "geometry": { "type": "Point", "coordinates": [ -0.6608036, 51.1106983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97336601" }, "bbox": [ -0.6069996, 51.0881013, -0.6069996, 51.0881013 ], "geometry": { "type": "Point", "coordinates": [ -0.6069996, 51.0881013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95532958" }, "bbox": [ -0.6353792, 51.2735444, -0.6353792, 51.2735444 ], "geometry": { "type": "Point", "coordinates": [ -0.6353792, 51.2735444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94534160" }, "bbox": [ -0.647918, 51.2737408, -0.647918, 51.2737408 ], "geometry": { "type": "Point", "coordinates": [ -0.647918, 51.2737408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98371475" }, "bbox": [ -0.5989719, 51.1305597, -0.5989719, 51.1305597 ], "geometry": { "type": "Point", "coordinates": [ -0.5989719, 51.1305597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96558342" }, "bbox": [ -0.6126575, 51.2896724, -0.6126575, 51.2896724 ], "geometry": { "type": "Point", "coordinates": [ -0.6126575, 51.2896724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434390" }, "bbox": [ -0.6931073, 51.1870561, -0.6931073, 51.1870561 ], "geometry": { "type": "Point", "coordinates": [ -0.6931073, 51.1870561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93632080" }, "bbox": [ -0.6627419, 51.3656739, -0.6627419, 51.3656739 ], "geometry": { "type": "Point", "coordinates": [ -0.6627419, 51.3656739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89334867" }, "bbox": [ -0.7235174, 51.0953354, -0.7235174, 51.0953354 ], "geometry": { "type": "Point", "coordinates": [ -0.7235174, 51.0953354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544982" }, "bbox": [ -0.6034529, 51.2842325, -0.6034529, 51.2842325 ], "geometry": { "type": "Point", "coordinates": [ -0.6034529, 51.2842325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93349129" }, "bbox": [ -0.6602411, 51.1002495, -0.6602411, 51.1002495 ], "geometry": { "type": "Point", "coordinates": [ -0.6602411, 51.1002495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92426007" }, "bbox": [ -0.6768267, 51.1704296, -0.6768267, 51.1704296 ], "geometry": { "type": "Point", "coordinates": [ -0.6768267, 51.1704296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82414018" }, "bbox": [ -0.8231712, 51.1637613, -0.8231712, 51.1637613 ], "geometry": { "type": "Point", "coordinates": [ -0.8231712, 51.1637613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82463846" }, "bbox": [ -0.8220968, 51.2112898, -0.8220968, 51.2112898 ], "geometry": { "type": "Point", "coordinates": [ -0.8220968, 51.2112898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95595714" }, "bbox": [ -0.6297833, 51.3233545, -0.6297833, 51.3233545 ], "geometry": { "type": "Point", "coordinates": [ -0.6297833, 51.3233545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96616937" }, "bbox": [ -0.6132922, 51.3432476, -0.6132922, 51.3432476 ], "geometry": { "type": "Point", "coordinates": [ -0.6132922, 51.3432476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96466742" }, "bbox": [ -0.6175186, 51.208752, -0.6175186, 51.208752 ], "geometry": { "type": "Point", "coordinates": [ -0.6175186, 51.208752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94497032" }, "bbox": [ -0.6448697, 51.2354201, -0.6448697, 51.2354201 ], "geometry": { "type": "Point", "coordinates": [ -0.6448697, 51.2354201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94346259" }, "bbox": [ -0.6499816, 51.1027445, -0.6499816, 51.1027445 ], "geometry": { "type": "Point", "coordinates": [ -0.6499816, 51.1027445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91486603" }, "bbox": [ -0.6886491, 51.2241438, -0.6886491, 51.2241438 ], "geometry": { "type": "Point", "coordinates": [ -0.6886491, 51.2241438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94348571" }, "bbox": [ -0.6465493, 51.1038615, -0.6465493, 51.1038615 ], "geometry": { "type": "Point", "coordinates": [ -0.6465493, 51.1038615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459164" }, "bbox": [ -0.5855746, 51.201472, -0.5855746, 51.201472 ], "geometry": { "type": "Point", "coordinates": [ -0.5855746, 51.201472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87473482" }, "bbox": [ -0.7505901, 51.22299, -0.7505901, 51.22299 ], "geometry": { "type": "Point", "coordinates": [ -0.7505901, 51.22299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93553885" }, "bbox": [ -0.6622194, 51.2941899, -0.6622194, 51.2941899 ], "geometry": { "type": "Point", "coordinates": [ -0.6622194, 51.2941899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98374571" }, "bbox": [ -0.5943072, 51.130318, -0.5943072, 51.130318 ], "geometry": { "type": "Point", "coordinates": [ -0.5943072, 51.130318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88388929" }, "bbox": [ -0.7308852, 51.136915, -0.7308852, 51.136915 ], "geometry": { "type": "Point", "coordinates": [ -0.7308852, 51.136915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92423922" }, "bbox": [ -0.679828, 51.171641, -0.679828, 51.171641 ], "geometry": { "type": "Point", "coordinates": [ -0.679828, 51.171641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98415134" }, "bbox": [ -0.5924341, 51.1628509, -0.5924341, 51.1628509 ], "geometry": { "type": "Point", "coordinates": [ -0.5924341, 51.1628509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95517238" }, "bbox": [ -0.6297563, 51.2536496, -0.6297563, 51.2536496 ], "geometry": { "type": "Point", "coordinates": [ -0.6297563, 51.2536496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85420498" }, "bbox": [ -0.7844701, 51.1798252, -0.7844701, 51.1798252 ], "geometry": { "type": "Point", "coordinates": [ -0.7844701, 51.1798252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98417159" }, "bbox": [ -0.5896304, 51.1650249, -0.5896304, 51.1650249 ], "geometry": { "type": "Point", "coordinates": [ -0.5896304, 51.1650249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90467126" }, "bbox": [ -0.7028806, 51.2081884, -0.7028806, 51.2081884 ], "geometry": { "type": "Point", "coordinates": [ -0.7028806, 51.2081884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91469599" }, "bbox": [ -0.684679, 51.2148251, -0.684679, 51.2148251 ], "geometry": { "type": "Point", "coordinates": [ -0.684679, 51.2148251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83400106" }, "bbox": [ -0.8144893, 51.1537299, -0.8144893, 51.1537299 ], "geometry": { "type": "Point", "coordinates": [ -0.8144893, 51.1537299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81456259" }, "bbox": [ -0.8329961, 51.2036993, -0.8329961, 51.2036993 ], "geometry": { "type": "Point", "coordinates": [ -0.8329961, 51.2036993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94592438" }, "bbox": [ -0.6488894, 51.3259885, -0.6488894, 51.3259885 ], "geometry": { "type": "Point", "coordinates": [ -0.6488894, 51.3259885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96392305" }, "bbox": [ -0.6258283, 51.1426884, -0.6258283, 51.1426884 ], "geometry": { "type": "Point", "coordinates": [ -0.6258283, 51.1426884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90464559" }, "bbox": [ -0.7064933, 51.2114204, -0.7064933, 51.2114204 ], "geometry": { "type": "Point", "coordinates": [ -0.7064933, 51.2114204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94588392" }, "bbox": [ -0.6405615, 51.3215054, -0.6405615, 51.3215054 ], "geometry": { "type": "Point", "coordinates": [ -0.6405615, 51.3215054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93511293" }, "bbox": [ -0.6672025, 51.2590929, -0.6672025, 51.2590929 ], "geometry": { "type": "Point", "coordinates": [ -0.6672025, 51.2590929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90381786" }, "bbox": [ -0.7124182, 51.1419567, -0.7124182, 51.1419567 ], "geometry": { "type": "Point", "coordinates": [ -0.7124182, 51.1419567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91420628" }, "bbox": [ -0.6988559, 51.1725287, -0.6988559, 51.1725287 ], "geometry": { "type": "Point", "coordinates": [ -0.6988559, 51.1725287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92386404" }, "bbox": [ -0.6770252, 51.1340893, -0.6770252, 51.1340893 ], "geometry": { "type": "Point", "coordinates": [ -0.6770252, 51.1340893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96543224" }, "bbox": [ -0.6201075, 51.2792232, -0.6201075, 51.2792232 ], "geometry": { "type": "Point", "coordinates": [ -0.6201075, 51.2792232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91513444" }, "bbox": [ -0.6923379, 51.254871, -0.6923379, 51.254871 ], "geometry": { "type": "Point", "coordinates": [ -0.6923379, 51.254871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93567951" }, "bbox": [ -0.6565074, 51.3001147, -0.6565074, 51.3001147 ], "geometry": { "type": "Point", "coordinates": [ -0.6565074, 51.3001147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93353234" }, "bbox": [ -0.6682753, 51.1098206, -0.6682753, 51.1098206 ], "geometry": { "type": "Point", "coordinates": [ -0.6682753, 51.1098206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99398769" }, "bbox": [ -0.5734453, 51.1478079, -0.5734453, 51.1478079 ], "geometry": { "type": "Point", "coordinates": [ -0.5734453, 51.1478079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86378386" }, "bbox": [ -0.7604211, 51.1334282, -0.7604211, 51.1334282 ], "geometry": { "type": "Point", "coordinates": [ -0.7604211, 51.1334282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90367398" }, "bbox": [ -0.7048378, 51.1249324, -0.7048378, 51.1249324 ], "geometry": { "type": "Point", "coordinates": [ -0.7048378, 51.1249324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92634724" }, "bbox": [ -0.6731299, 51.3609605, -0.6731299, 51.3609605 ], "geometry": { "type": "Point", "coordinates": [ -0.6731299, 51.3609605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89399501" }, "bbox": [ -0.715435, 51.1432734, -0.715435, 51.1432734 ], "geometry": { "type": "Point", "coordinates": [ -0.715435, 51.1432734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98385017" }, "bbox": [ -0.5938254, 51.1345339, -0.5938254, 51.1345339 ], "geometry": { "type": "Point", "coordinates": [ -0.5938254, 51.1345339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96513449" }, "bbox": [ -0.6208207, 51.254537, -0.6208207, 51.254537 ], "geometry": { "type": "Point", "coordinates": [ -0.6208207, 51.254537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95516332" }, "bbox": [ -0.6311537, 51.2531209, -0.6311537, 51.2531209 ], "geometry": { "type": "Point", "coordinates": [ -0.6311537, 51.2531209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433283" }, "bbox": [ -0.694731, 51.1864884, -0.694731, 51.1864884 ], "geometry": { "type": "Point", "coordinates": [ -0.694731, 51.1864884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97414629" }, "bbox": [ -0.6076552, 51.1626548, -0.6076552, 51.1626548 ], "geometry": { "type": "Point", "coordinates": [ -0.6076552, 51.1626548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91496803" }, "bbox": [ -0.68785, 51.2333179, -0.68785, 51.2333179 ], "geometry": { "type": "Point", "coordinates": [ -0.68785, 51.2333179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92442922" }, "bbox": [ -0.6807843, 51.1897901, -0.6807843, 51.1897901 ], "geometry": { "type": "Point", "coordinates": [ -0.6807843, 51.1897901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98351872" }, "bbox": [ -0.598886, 51.1125797, -0.598886, 51.1125797 ], "geometry": { "type": "Point", "coordinates": [ -0.598886, 51.1125797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93492516" }, "bbox": [ -0.6655964, 51.2340544, -0.6655964, 51.2340544 ], "geometry": { "type": "Point", "coordinates": [ -0.6655964, 51.2340544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92638544" }, "bbox": [ -0.6677586, 51.362383, -0.6677586, 51.362383 ], "geometry": { "type": "Point", "coordinates": [ -0.6677586, 51.362383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92433561" }, "bbox": [ -0.6799555, 51.1842849, -0.6799555, 51.1842849 ], "geometry": { "type": "Point", "coordinates": [ -0.6799555, 51.1842849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92433804" }, "bbox": [ -0.6798616, 51.1791216, -0.6798616, 51.1791216 ], "geometry": { "type": "Point", "coordinates": [ -0.6798616, 51.1791216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95515647" }, "bbox": [ -0.6321665, 51.254436, -0.6321665, 51.254436 ], "geometry": { "type": "Point", "coordinates": [ -0.6321665, 51.254436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97366145" }, "bbox": [ -0.6066463, 51.1190537, -0.6066463, 51.1190537 ], "geometry": { "type": "Point", "coordinates": [ -0.6066463, 51.1190537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94591219" }, "bbox": [ -0.6507692, 51.3239988, -0.6507692, 51.3239988 ], "geometry": { "type": "Point", "coordinates": [ -0.6507692, 51.3239988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331151" }, "bbox": [ -0.6431907, 51.093036, -0.6431907, 51.093036 ], "geometry": { "type": "Point", "coordinates": [ -0.6431907, 51.093036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89370501" }, "bbox": [ -0.7286643, 51.1255166, -0.7286643, 51.1255166 ], "geometry": { "type": "Point", "coordinates": [ -0.7286643, 51.1255166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92435850" }, "bbox": [ -0.6766847, 51.1833281, -0.6766847, 51.1833281 ], "geometry": { "type": "Point", "coordinates": [ -0.6766847, 51.1833281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93546735" }, "bbox": [ -0.6583237, 51.2806556, -0.6583237, 51.2806556 ], "geometry": { "type": "Point", "coordinates": [ -0.6583237, 51.2806556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89386086" }, "bbox": [ -0.7205372, 51.1420751, -0.7205372, 51.1420751 ], "geometry": { "type": "Point", "coordinates": [ -0.7205372, 51.1420751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92471443" }, "bbox": [ -0.6819498, 51.2186007, -0.6819498, 51.2186007 ], "geometry": { "type": "Point", "coordinates": [ -0.6819498, 51.2186007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92428276" }, "bbox": [ -0.673513, 51.1766231, -0.673513, 51.1766231 ], "geometry": { "type": "Point", "coordinates": [ -0.673513, 51.1766231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81457076" }, "bbox": [ -0.8318699, 51.2053379, -0.8318699, 51.2053379 ], "geometry": { "type": "Point", "coordinates": [ -0.8318699, 51.2053379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86381656" }, "bbox": [ -0.7698059, 51.1398739, -0.7698059, 51.1398739 ], "geometry": { "type": "Point", "coordinates": [ -0.7698059, 51.1398739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86402872" }, "bbox": [ -0.7679542, 51.1605446, -0.7679542, 51.1605446 ], "geometry": { "type": "Point", "coordinates": [ -0.7679542, 51.1605446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92363085" }, "bbox": [ -0.6825679, 51.12346, -0.6825679, 51.12346 ], "geometry": { "type": "Point", "coordinates": [ -0.6825679, 51.12346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94446028" }, "bbox": [ -0.64766, 51.1901655, -0.64766, 51.1901655 ], "geometry": { "type": "Point", "coordinates": [ -0.64766, 51.1901655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86391240" }, "bbox": [ -0.7700477, 51.1474773, -0.7700477, 51.1474773 ], "geometry": { "type": "Point", "coordinates": [ -0.7700477, 51.1474773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90363756" }, "bbox": [ -0.7100037, 51.1212544, -0.7100037, 51.1212544 ], "geometry": { "type": "Point", "coordinates": [ -0.7100037, 51.1212544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91486575" }, "bbox": [ -0.6889213, 51.2307001, -0.6889213, 51.2307001 ], "geometry": { "type": "Point", "coordinates": [ -0.6889213, 51.2307001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91421446" }, "bbox": [ -0.6974567, 51.1743573, -0.6974567, 51.1743573 ], "geometry": { "type": "Point", "coordinates": [ -0.6974567, 51.1743573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91504796" }, "bbox": [ -0.6910754, 51.2504558, -0.6910754, 51.2504558 ], "geometry": { "type": "Point", "coordinates": [ -0.6910754, 51.2504558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90355058" }, "bbox": [ -0.7085041, 51.1127825, -0.7085041, 51.1127825 ], "geometry": { "type": "Point", "coordinates": [ -0.7085041, 51.1127825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90440219" }, "bbox": [ -0.7132028, 51.1898976, -0.7132028, 51.1898976 ], "geometry": { "type": "Point", "coordinates": [ -0.7132028, 51.1898976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86382113" }, "bbox": [ -0.7692487, 51.135911, -0.7692487, 51.135911 ], "geometry": { "type": "Point", "coordinates": [ -0.7692487, 51.135911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95469471" }, "bbox": [ -0.6279212, 51.2115416, -0.6279212, 51.2115416 ], "geometry": { "type": "Point", "coordinates": [ -0.6279212, 51.2115416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92609655" }, "bbox": [ -0.6667992, 51.3364605, -0.6667992, 51.3364605 ], "geometry": { "type": "Point", "coordinates": [ -0.6667992, 51.3364605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89380730" }, "bbox": [ -0.728244, 51.1370211, -0.728244, 51.1370211 ], "geometry": { "type": "Point", "coordinates": [ -0.728244, 51.1370211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96468633" }, "bbox": [ -0.6148632, 51.2078982, -0.6148632, 51.2078982 ], "geometry": { "type": "Point", "coordinates": [ -0.6148632, 51.2078982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97357865" }, "bbox": [ -0.6043967, 51.1118382, -0.6043967, 51.1118382 ], "geometry": { "type": "Point", "coordinates": [ -0.6043967, 51.1118382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89322841" }, "bbox": [ -0.7266849, 51.0839933, -0.7266849, 51.0839933 ], "geometry": { "type": "Point", "coordinates": [ -0.7266849, 51.0839933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621384" }, "bbox": [ -0.6351603, 51.3567019, -0.6351603, 51.3567019 ], "geometry": { "type": "Point", "coordinates": [ -0.6351603, 51.3567019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476933" }, "bbox": [ -0.6742281, 51.217744, -0.6742281, 51.217744 ], "geometry": { "type": "Point", "coordinates": [ -0.6742281, 51.217744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96468310" }, "bbox": [ -0.6153074, 51.2059396, -0.6153074, 51.2059396 ], "geometry": { "type": "Point", "coordinates": [ -0.6153074, 51.2059396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96503112" }, "bbox": [ -0.6218626, 51.2423426, -0.6218626, 51.2423426 ], "geometry": { "type": "Point", "coordinates": [ -0.6218626, 51.2423426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331864" }, "bbox": [ -0.6423265, 51.0944075, -0.6423265, 51.0944075 ], "geometry": { "type": "Point", "coordinates": [ -0.6423265, 51.0944075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87440430" }, "bbox": [ -0.7557304, 51.1913351, -0.7557304, 51.1913351 ], "geometry": { "type": "Point", "coordinates": [ -0.7557304, 51.1913351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93617621" }, "bbox": [ -0.6552338, 51.3422279, -0.6552338, 51.3422279 ], "geometry": { "type": "Point", "coordinates": [ -0.6552338, 51.3422279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380283" }, "bbox": [ -0.7716447, 51.142312, -0.7716447, 51.142312 ], "geometry": { "type": "Point", "coordinates": [ -0.7716447, 51.142312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89475872" }, "bbox": [ -0.7186448, 51.2216753, -0.7186448, 51.2216753 ], "geometry": { "type": "Point", "coordinates": [ -0.7186448, 51.2216753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85422563" }, "bbox": [ -0.7816567, 51.1765683, -0.7816567, 51.1765683 ], "geometry": { "type": "Point", "coordinates": [ -0.7816567, 51.1765683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82461002" }, "bbox": [ -0.8261041, 51.2075213, -0.8261041, 51.2075213 ], "geometry": { "type": "Point", "coordinates": [ -0.8261041, 51.2075213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95341811" }, "bbox": [ -0.6422309, 51.0984069, -0.6422309, 51.0984069 ], "geometry": { "type": "Point", "coordinates": [ -0.6422309, 51.0984069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441223" }, "bbox": [ -0.7116882, 51.1902421, -0.7116882, 51.1902421 ], "geometry": { "type": "Point", "coordinates": [ -0.7116882, 51.1902421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95595531" }, "bbox": [ -0.6300566, 51.3248417, -0.6300566, 51.3248417 ], "geometry": { "type": "Point", "coordinates": [ -0.6300566, 51.3248417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95442504" }, "bbox": [ -0.6385019, 51.187604, -0.6385019, 51.187604 ], "geometry": { "type": "Point", "coordinates": [ -0.6385019, 51.187604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90377798" }, "bbox": [ -0.7050188, 51.1332107, -0.7050188, 51.1332107 ], "geometry": { "type": "Point", "coordinates": [ -0.7050188, 51.1332107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90390703" }, "bbox": [ -0.7137983, 51.1434246, -0.7137983, 51.1434246 ], "geometry": { "type": "Point", "coordinates": [ -0.7137983, 51.1434246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89386176" }, "bbox": [ -0.7202988, 51.1411991, -0.7202988, 51.1411991 ], "geometry": { "type": "Point", "coordinates": [ -0.7202988, 51.1411991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96379785" }, "bbox": [ -0.6155337, 51.131621, -0.6155337, 51.131621 ], "geometry": { "type": "Point", "coordinates": [ -0.6155337, 51.131621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98483854" }, "bbox": [ -0.5922889, 51.2279257, -0.5922889, 51.2279257 ], "geometry": { "type": "Point", "coordinates": [ -0.5922889, 51.2279257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93443636" }, "bbox": [ -0.6653114, 51.190841, -0.6653114, 51.190841 ], "geometry": { "type": "Point", "coordinates": [ -0.6653114, 51.190841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96541836" }, "bbox": [ -0.6223081, 51.2802457, -0.6223081, 51.2802457 ], "geometry": { "type": "Point", "coordinates": [ -0.6223081, 51.2802457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89389396" }, "bbox": [ -0.7157642, 51.1428017, -0.7157642, 51.1428017 ], "geometry": { "type": "Point", "coordinates": [ -0.7157642, 51.1428017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91428967" }, "bbox": [ -0.6869971, 51.1757642, -0.6869971, 51.1757642 ], "geometry": { "type": "Point", "coordinates": [ -0.6869971, 51.1757642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89386501" }, "bbox": [ -0.7200126, 51.1341204, -0.7200126, 51.1341204 ], "geometry": { "type": "Point", "coordinates": [ -0.7200126, 51.1341204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97357926" }, "bbox": [ -0.6044324, 51.1083224, -0.6044324, 51.1083224 ], "geometry": { "type": "Point", "coordinates": [ -0.6044324, 51.1083224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95493313" }, "bbox": [ -0.6361569, 51.2333545, -0.6361569, 51.2333545 ], "geometry": { "type": "Point", "coordinates": [ -0.6361569, 51.2333545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91384217" }, "bbox": [ -0.6948161, 51.135439, -0.6948161, 51.135439 ], "geometry": { "type": "Point", "coordinates": [ -0.6948161, 51.135439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94445609" }, "bbox": [ -0.6481826, 51.1882898, -0.6481826, 51.1882898 ], "geometry": { "type": "Point", "coordinates": [ -0.6481826, 51.1882898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92637438" }, "bbox": [ -0.669521, 51.3621425, -0.669521, 51.3621425 ], "geometry": { "type": "Point", "coordinates": [ -0.669521, 51.3621425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89398295" }, "bbox": [ -0.7173538, 51.1518845, -0.7173538, 51.1518845 ], "geometry": { "type": "Point", "coordinates": [ -0.7173538, 51.1518845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95369875" }, "bbox": [ -0.6298592, 51.1219492, -0.6298592, 51.1219492 ], "geometry": { "type": "Point", "coordinates": [ -0.6298592, 51.1219492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96530923" }, "bbox": [ -0.6238174, 51.2696342, -0.6238174, 51.2696342 ], "geometry": { "type": "Point", "coordinates": [ -0.6238174, 51.2696342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86384702" }, "bbox": [ -0.7653783, 51.1349689, -0.7653783, 51.1349689 ], "geometry": { "type": "Point", "coordinates": [ -0.7653783, 51.1349689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96391301" }, "bbox": [ -0.6271114, 51.1423465, -0.6271114, 51.1423465 ], "geometry": { "type": "Point", "coordinates": [ -0.6271114, 51.1423465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442206" }, "bbox": [ -0.6960475, 51.1885063, -0.6960475, 51.1885063 ], "geometry": { "type": "Point", "coordinates": [ -0.6960475, 51.1885063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95622065" }, "bbox": [ -0.6343824, 51.3546766, -0.6343824, 51.3546766 ], "geometry": { "type": "Point", "coordinates": [ -0.6343824, 51.3546766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427952" }, "bbox": [ -0.7026462, 51.1747074, -0.7026462, 51.1747074 ], "geometry": { "type": "Point", "coordinates": [ -0.7026462, 51.1747074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89347010" }, "bbox": [ -0.7201219, 51.0993434, -0.7201219, 51.0993434 ], "geometry": { "type": "Point", "coordinates": [ -0.7201219, 51.0993434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86372898" }, "bbox": [ -0.7681743, 51.1346339, -0.7681743, 51.1346339 ], "geometry": { "type": "Point", "coordinates": [ -0.7681743, 51.1346339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99437551" }, "bbox": [ -0.5740774, 51.1821678, -0.5740774, 51.1821678 ], "geometry": { "type": "Point", "coordinates": [ -0.5740774, 51.1821678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90388615" }, "bbox": [ -0.7026623, 51.1354827, -0.7026623, 51.1354827 ], "geometry": { "type": "Point", "coordinates": [ -0.7026623, 51.1354827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92638224" }, "bbox": [ -0.6686942, 51.3605109, -0.6686942, 51.3605109 ], "geometry": { "type": "Point", "coordinates": [ -0.6686942, 51.3605109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443411" }, "bbox": [ -0.6942345, 51.1890041, -0.6942345, 51.1890041 ], "geometry": { "type": "Point", "coordinates": [ -0.6942345, 51.1890041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98394254" }, "bbox": [ -0.594229, 51.1467198, -0.594229, 51.1467198 ], "geometry": { "type": "Point", "coordinates": [ -0.594229, 51.1467198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92438623" }, "bbox": [ -0.6728477, 51.1809033, -0.6728477, 51.1809033 ], "geometry": { "type": "Point", "coordinates": [ -0.6728477, 51.1809033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387570" }, "bbox": [ -0.7327916, 51.1407326, -0.7327916, 51.1407326 ], "geometry": { "type": "Point", "coordinates": [ -0.7327916, 51.1407326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94390401" }, "bbox": [ -0.6570255, 51.1426497, -0.6570255, 51.1426497 ], "geometry": { "type": "Point", "coordinates": [ -0.6570255, 51.1426497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91420844" }, "bbox": [ -0.6983876, 51.1740186, -0.6983876, 51.1740186 ], "geometry": { "type": "Point", "coordinates": [ -0.6983876, 51.1740186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96510763" }, "bbox": [ -0.6246417, 51.2558961, -0.6246417, 51.2558961 ], "geometry": { "type": "Point", "coordinates": [ -0.6246417, 51.2558961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82427727" }, "bbox": [ -0.8172181, 51.1737418, -0.8172181, 51.1737418 ], "geometry": { "type": "Point", "coordinates": [ -0.8172181, 51.1737418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82467737" }, "bbox": [ -0.8164832, 51.2105761, -0.8164832, 51.2105761 ], "geometry": { "type": "Point", "coordinates": [ -0.8164832, 51.2105761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517395" }, "bbox": [ -0.6723352, 51.2592437, -0.6723352, 51.2592437 ], "geometry": { "type": "Point", "coordinates": [ -0.6723352, 51.2592437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91472795" }, "bbox": [ -0.6946046, 51.2232038, -0.6946046, 51.2232038 ], "geometry": { "type": "Point", "coordinates": [ -0.6946046, 51.2232038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91426517" }, "bbox": [ -0.6903029, 51.1714248, -0.6903029, 51.1714248 ], "geometry": { "type": "Point", "coordinates": [ -0.6903029, 51.1714248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96530193" }, "bbox": [ -0.6250126, 51.2763893, -0.6250126, 51.2763893 ], "geometry": { "type": "Point", "coordinates": [ -0.6250126, 51.2763893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97356854" }, "bbox": [ -0.6062587, 51.110869, -0.6062587, 51.110869 ], "geometry": { "type": "Point", "coordinates": [ -0.6062587, 51.110869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87396014" }, "bbox": [ -0.7489823, 51.1448489, -0.7489823, 51.1448489 ], "geometry": { "type": "Point", "coordinates": [ -0.7489823, 51.1448489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97338240" }, "bbox": [ -0.604502, 51.0912619, -0.604502, 51.0912619 ], "geometry": { "type": "Point", "coordinates": [ -0.604502, 51.0912619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93563627" }, "bbox": [ -0.6622634, 51.2979835, -0.6622634, 51.2979835 ], "geometry": { "type": "Point", "coordinates": [ -0.6622634, 51.2979835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90380177" }, "bbox": [ -0.7145966, 51.1411182, -0.7145966, 51.1411182 ], "geometry": { "type": "Point", "coordinates": [ -0.7145966, 51.1411182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91423688" }, "bbox": [ -0.6944583, 51.1779102, -0.6944583, 51.1779102 ], "geometry": { "type": "Point", "coordinates": [ -0.6944583, 51.1779102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88383084" }, "bbox": [ -0.738919, 51.1429713, -0.738919, 51.1429713 ], "geometry": { "type": "Point", "coordinates": [ -0.738919, 51.1429713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97379980" }, "bbox": [ -0.600933, 51.1310296, -0.600933, 51.1310296 ], "geometry": { "type": "Point", "coordinates": [ -0.600933, 51.1310296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87390229" }, "bbox": [ -0.7572177, 51.1463074, -0.7572177, 51.1463074 ], "geometry": { "type": "Point", "coordinates": [ -0.7572177, 51.1463074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89489027" }, "bbox": [ -0.7132702, 51.2265736, -0.7132702, 51.2265736 ], "geometry": { "type": "Point", "coordinates": [ -0.7132702, 51.2265736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81456335" }, "bbox": [ -0.8329752, 51.2015926, -0.8329752, 51.2015926 ], "geometry": { "type": "Point", "coordinates": [ -0.8329752, 51.2015926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92608672" }, "bbox": [ -0.6682932, 51.3379994, -0.6682932, 51.3379994 ], "geometry": { "type": "Point", "coordinates": [ -0.6682932, 51.3379994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379198" }, "bbox": [ -0.6878675, 51.1336817, -0.6878675, 51.1336817 ], "geometry": { "type": "Point", "coordinates": [ -0.6878675, 51.1336817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95496015" }, "bbox": [ -0.6320231, 51.2335133, -0.6320231, 51.2335133 ], "geometry": { "type": "Point", "coordinates": [ -0.6320231, 51.2335133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93564437" }, "bbox": [ -0.6609397, 51.298898, -0.6609397, 51.298898 ], "geometry": { "type": "Point", "coordinates": [ -0.6609397, 51.298898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99618405" }, "bbox": [ -0.5680741, 51.3399119, -0.5680741, 51.3399119 ], "geometry": { "type": "Point", "coordinates": [ -0.5680741, 51.3399119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97356634" }, "bbox": [ -0.6062458, 51.1090826, -0.6062458, 51.1090826 ], "geometry": { "type": "Point", "coordinates": [ -0.6062458, 51.1090826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95350441" }, "bbox": [ -0.6437468, 51.1103227, -0.6437468, 51.1103227 ], "geometry": { "type": "Point", "coordinates": [ -0.6437468, 51.1103227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94601336" }, "bbox": [ -0.650956, 51.3349404, -0.650956, 51.3349404 ], "geometry": { "type": "Point", "coordinates": [ -0.650956, 51.3349404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96528370" }, "bbox": [ -0.613555, 51.2652357, -0.613555, 51.2652357 ], "geometry": { "type": "Point", "coordinates": [ -0.613555, 51.2652357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84414688" }, "bbox": [ -0.7934108, 51.1699104, -0.7934108, 51.1699104 ], "geometry": { "type": "Point", "coordinates": [ -0.7934108, 51.1699104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97381776" }, "bbox": [ -0.6124884, 51.1399248, -0.6124884, 51.1399248 ], "geometry": { "type": "Point", "coordinates": [ -0.6124884, 51.1399248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91514039" }, "bbox": [ -0.6915857, 51.2543229, -0.6915857, 51.2543229 ], "geometry": { "type": "Point", "coordinates": [ -0.6915857, 51.2543229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81476359" }, "bbox": [ -0.832367, 51.2216905, -0.832367, 51.2216905 ], "geometry": { "type": "Point", "coordinates": [ -0.832367, 51.2216905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477736" }, "bbox": [ -0.672946, 51.2179245, -0.672946, 51.2179245 ], "geometry": { "type": "Point", "coordinates": [ -0.672946, 51.2179245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379960" }, "bbox": [ -0.6866795, 51.1303444, -0.6866795, 51.1303444 ], "geometry": { "type": "Point", "coordinates": [ -0.6866795, 51.1303444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97535101" }, "bbox": [ -0.6038077, 51.267781, -0.6038077, 51.267781 ], "geometry": { "type": "Point", "coordinates": [ -0.6038077, 51.267781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95596968" }, "bbox": [ -0.6279958, 51.3282083, -0.6279958, 51.3282083 ], "geometry": { "type": "Point", "coordinates": [ -0.6279958, 51.3282083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720552" }, "bbox": [ -0.5766392, 51.4431491, -0.5766392, 51.4431491 ], "geometry": { "type": "Point", "coordinates": [ -0.5766392, 51.4431491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96545602" }, "bbox": [ -0.6170516, 51.2771194, -0.6170516, 51.2771194 ], "geometry": { "type": "Point", "coordinates": [ -0.6170516, 51.2771194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82424866" }, "bbox": [ -0.821533, 51.1771804, -0.821533, 51.1771804 ], "geometry": { "type": "Point", "coordinates": [ -0.821533, 51.1771804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96510179" }, "bbox": [ -0.6256796, 51.2572338, -0.6256796, 51.2572338 ], "geometry": { "type": "Point", "coordinates": [ -0.6256796, 51.2572338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93349009" }, "bbox": [ -0.6603383, 51.0984088, -0.6603383, 51.0984088 ], "geometry": { "type": "Point", "coordinates": [ -0.6603383, 51.0984088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442318" }, "bbox": [ -0.695829, 51.1896049, -0.695829, 51.1896049 ], "geometry": { "type": "Point", "coordinates": [ -0.695829, 51.1896049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92456407" }, "bbox": [ -0.6754784, 51.1973802, -0.6754784, 51.1973802 ], "geometry": { "type": "Point", "coordinates": [ -0.6754784, 51.1973802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89482962" }, "bbox": [ -0.7224928, 51.2298014, -0.7224928, 51.2298014 ], "geometry": { "type": "Point", "coordinates": [ -0.7224928, 51.2298014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91480178" }, "bbox": [ -0.6978755, 51.2308732, -0.6978755, 51.2308732 ], "geometry": { "type": "Point", "coordinates": [ -0.6978755, 51.2308732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85376465" }, "bbox": [ -0.7776975, 51.1318774, -0.7776975, 51.1318774 ], "geometry": { "type": "Point", "coordinates": [ -0.7776975, 51.1318774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99369263" }, "bbox": [ -0.5737848, 51.1200892, -0.5737848, 51.1200892 ], "geometry": { "type": "Point", "coordinates": [ -0.5737848, 51.1200892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457714" }, "bbox": [ -0.6734093, 51.1979083, -0.6734093, 51.1979083 ], "geometry": { "type": "Point", "coordinates": [ -0.6734093, 51.1979083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86386654" }, "bbox": [ -0.7626463, 51.1395872, -0.7626463, 51.1395872 ], "geometry": { "type": "Point", "coordinates": [ -0.7626463, 51.1395872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97468251" }, "bbox": [ -0.6010015, 51.2095073, -0.6010015, 51.2095073 ], "geometry": { "type": "Point", "coordinates": [ -0.6010015, 51.2095073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547320" }, "bbox": [ -0.6144422, 51.278785, -0.6144422, 51.278785 ], "geometry": { "type": "Point", "coordinates": [ -0.6144422, 51.278785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97460560" }, "bbox": [ -0.6119921, 51.2104341, -0.6119921, 51.2104341 ], "geometry": { "type": "Point", "coordinates": [ -0.6119921, 51.2104341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91339882" }, "bbox": [ -0.6877634, 51.0963495, -0.6877634, 51.0963495 ], "geometry": { "type": "Point", "coordinates": [ -0.6877634, 51.0963495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90425965" }, "bbox": [ -0.7054483, 51.175839, -0.7054483, 51.175839 ], "geometry": { "type": "Point", "coordinates": [ -0.7054483, 51.175839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82466501" }, "bbox": [ -0.8182019, 51.2074185, -0.8182019, 51.2074185 ], "geometry": { "type": "Point", "coordinates": [ -0.8182019, 51.2074185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390172" }, "bbox": [ -0.6145375, 51.1485576, -0.6145375, 51.1485576 ], "geometry": { "type": "Point", "coordinates": [ -0.6145375, 51.1485576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87440143" }, "bbox": [ -0.7564119, 51.192403, -0.7564119, 51.192403 ], "geometry": { "type": "Point", "coordinates": [ -0.7564119, 51.192403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90428252" }, "bbox": [ -0.7023849, 51.1747789, -0.7023849, 51.1747789 ], "geometry": { "type": "Point", "coordinates": [ -0.7023849, 51.1747789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85420150" }, "bbox": [ -0.7851535, 51.175552, -0.7851535, 51.175552 ], "geometry": { "type": "Point", "coordinates": [ -0.7851535, 51.175552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93399814" }, "bbox": [ -0.6578356, 51.1437814, -0.6578356, 51.1437814 ], "geometry": { "type": "Point", "coordinates": [ -0.6578356, 51.1437814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91431481" }, "bbox": [ -0.6972492, 51.1863267, -0.6972492, 51.1863267 ], "geometry": { "type": "Point", "coordinates": [ -0.6972492, 51.1863267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94604011" }, "bbox": [ -0.6463487, 51.3322709, -0.6463487, 51.3322709 ], "geometry": { "type": "Point", "coordinates": [ -0.6463487, 51.3322709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98360545" }, "bbox": [ -0.6001729, 51.1189459, -0.6001729, 51.1189459 ], "geometry": { "type": "Point", "coordinates": [ -0.6001729, 51.1189459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92470621" }, "bbox": [ -0.6831238, 51.2167545, -0.6831238, 51.2167545 ], "geometry": { "type": "Point", "coordinates": [ -0.6831238, 51.2167545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86449450" }, "bbox": [ -0.7568283, 51.1932386, -0.7568283, 51.1932386 ], "geometry": { "type": "Point", "coordinates": [ -0.7568283, 51.1932386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94340801" }, "bbox": [ -0.657791, 51.0975233, -0.657791, 51.0975233 ], "geometry": { "type": "Point", "coordinates": [ -0.657791, 51.0975233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83419757" }, "bbox": [ -0.800358, 51.1673358, -0.800358, 51.1673358 ], "geometry": { "type": "Point", "coordinates": [ -0.800358, 51.1673358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94594299" }, "bbox": [ -0.6458489, 51.3311529, -0.6458489, 51.3311529 ], "geometry": { "type": "Point", "coordinates": [ -0.6458489, 51.3311529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92348064" }, "bbox": [ -0.6759558, 51.1036623, -0.6759558, 51.1036623 ], "geometry": { "type": "Point", "coordinates": [ -0.6759558, 51.1036623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97367636" }, "bbox": [ -0.6046501, 51.1182243, -0.6046501, 51.1182243 ], "geometry": { "type": "Point", "coordinates": [ -0.6046501, 51.1182243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90375195" }, "bbox": [ -0.7079146, 51.1333337, -0.7079146, 51.1333337 ], "geometry": { "type": "Point", "coordinates": [ -0.7079146, 51.1333337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95581191" }, "bbox": [ -0.6364497, 51.3214072, -0.6364497, 51.3214072 ], "geometry": { "type": "Point", "coordinates": [ -0.6364497, 51.3214072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96393503" }, "bbox": [ -0.6241421, 51.1425108, -0.6241421, 51.1425108 ], "geometry": { "type": "Point", "coordinates": [ -0.6241421, 51.1425108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476646" }, "bbox": [ -0.6745451, 51.2188692, -0.6745451, 51.2188692 ], "geometry": { "type": "Point", "coordinates": [ -0.6745451, 51.2188692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94587582" }, "bbox": [ -0.6417225, 51.3204946, -0.6417225, 51.3204946 ], "geometry": { "type": "Point", "coordinates": [ -0.6417225, 51.3204946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90373767" }, "bbox": [ -0.709847, 51.1312511, -0.709847, 51.1312511 ], "geometry": { "type": "Point", "coordinates": [ -0.709847, 51.1312511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89377794" }, "bbox": [ -0.7185041, 51.1336883, -0.7185041, 51.1336883 ], "geometry": { "type": "Point", "coordinates": [ -0.7185041, 51.1336883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91389627" }, "bbox": [ -0.6872137, 51.136349, -0.6872137, 51.136349 ], "geometry": { "type": "Point", "coordinates": [ -0.6872137, 51.136349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92374288" }, "bbox": [ -0.6805069, 51.1327498, -0.6805069, 51.1327498 ], "geometry": { "type": "Point", "coordinates": [ -0.6805069, 51.1327498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86384333" }, "bbox": [ -0.7660048, 51.1376438, -0.7660048, 51.1376438 ], "geometry": { "type": "Point", "coordinates": [ -0.7660048, 51.1376438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86449434" }, "bbox": [ -0.7572216, 51.1915952, -0.7572216, 51.1915952 ], "geometry": { "type": "Point", "coordinates": [ -0.7572216, 51.1915952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91378058" }, "bbox": [ -0.6893628, 51.1305606, -0.6893628, 51.1305606 ], "geometry": { "type": "Point", "coordinates": [ -0.6893628, 51.1305606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91440907" }, "bbox": [ -0.6981331, 51.188581, -0.6981331, 51.188581 ], "geometry": { "type": "Point", "coordinates": [ -0.6981331, 51.188581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96536666" }, "bbox": [ -0.6156409, 51.2739411, -0.6156409, 51.2739411 ], "geometry": { "type": "Point", "coordinates": [ -0.6156409, 51.2739411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88380853" }, "bbox": [ -0.7424349, 51.1393954, -0.7424349, 51.1393954 ], "geometry": { "type": "Point", "coordinates": [ -0.7424349, 51.1393954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89429029" }, "bbox": [ -0.7151609, 51.1727247, -0.7151609, 51.1727247 ], "geometry": { "type": "Point", "coordinates": [ -0.7151609, 51.1727247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91385049" }, "bbox": [ -0.6935983, 51.1384082, -0.6935983, 51.1384082 ], "geometry": { "type": "Point", "coordinates": [ -0.6935983, 51.1384082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99445289" }, "bbox": [ -0.5765796, 51.1945473, -0.5765796, 51.1945473 ], "geometry": { "type": "Point", "coordinates": [ -0.5765796, 51.1945473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99379225" }, "bbox": [ -0.5735824, 51.1259864, -0.5735824, 51.1259864 ], "geometry": { "type": "Point", "coordinates": [ -0.5735824, 51.1259864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88478034" }, "bbox": [ -0.7296839, 51.2168189, -0.7296839, 51.2168189 ], "geometry": { "type": "Point", "coordinates": [ -0.7296839, 51.2168189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91387979" }, "bbox": [ -0.6891717, 51.1410766, -0.6891717, 51.1410766 ], "geometry": { "type": "Point", "coordinates": [ -0.6891717, 51.1410766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90387724" }, "bbox": [ -0.7039815, 51.1361612, -0.7039815, 51.1361612 ], "geometry": { "type": "Point", "coordinates": [ -0.7039815, 51.1361612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89374980" }, "bbox": [ -0.7223785, 51.1325319, -0.7223785, 51.1325319 ], "geometry": { "type": "Point", "coordinates": [ -0.7223785, 51.1325319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93359892" }, "bbox": [ -0.658444, 51.1148453, -0.658444, 51.1148453 ], "geometry": { "type": "Point", "coordinates": [ -0.658444, 51.1148453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93434408" }, "bbox": [ -0.6645949, 51.1794242, -0.6645949, 51.1794242 ], "geometry": { "type": "Point", "coordinates": [ -0.6645949, 51.1794242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99725488" }, "bbox": [ -0.5692354, 51.4463401, -0.5692354, 51.4463401 ], "geometry": { "type": "Point", "coordinates": [ -0.5692354, 51.4463401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93600575" }, "bbox": [ -0.6654579, 51.3382346, -0.6654579, 51.3382346 ], "geometry": { "type": "Point", "coordinates": [ -0.6654579, 51.3382346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93428573" }, "bbox": [ -0.6589314, 51.1760989, -0.6589314, 51.1760989 ], "geometry": { "type": "Point", "coordinates": [ -0.6589314, 51.1760989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96468024" }, "bbox": [ -0.6155308, 51.2069756, -0.6155308, 51.2069756 ], "geometry": { "type": "Point", "coordinates": [ -0.6155308, 51.2069756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88389344" }, "bbox": [ -0.7302318, 51.1383335, -0.7302318, 51.1383335 ], "geometry": { "type": "Point", "coordinates": [ -0.7302318, 51.1383335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92497440" }, "bbox": [ -0.6731073, 51.2366431, -0.6731073, 51.2366431 ], "geometry": { "type": "Point", "coordinates": [ -0.6731073, 51.2366431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89472039" }, "bbox": [ -0.7240793, 51.218765, -0.7240793, 51.218765 ], "geometry": { "type": "Point", "coordinates": [ -0.7240793, 51.218765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96533990" }, "bbox": [ -0.6195276, 51.2761431, -0.6195276, 51.2761431 ], "geometry": { "type": "Point", "coordinates": [ -0.6195276, 51.2761431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93381629" }, "bbox": [ -0.6697328, 51.136321, -0.6697328, 51.136321 ], "geometry": { "type": "Point", "coordinates": [ -0.6697328, 51.136321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83475295" }, "bbox": [ -0.8050869, 51.2246658, -0.8050869, 51.2246658 ], "geometry": { "type": "Point", "coordinates": [ -0.8050869, 51.2246658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93424091" }, "bbox": [ -0.6649726, 51.1777081, -0.6649726, 51.1777081 ], "geometry": { "type": "Point", "coordinates": [ -0.6649726, 51.1777081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98469790" }, "bbox": [ -0.5845968, 51.2126432, -0.5845968, 51.2126432 ], "geometry": { "type": "Point", "coordinates": [ -0.5845968, 51.2126432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94535237" }, "bbox": [ -0.6464221, 51.2717364, -0.6464221, 51.2717364 ], "geometry": { "type": "Point", "coordinates": [ -0.6464221, 51.2717364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99611652" }, "bbox": [ -0.5776134, 51.3443128, -0.5776134, 51.3443128 ], "geometry": { "type": "Point", "coordinates": [ -0.5776134, 51.3443128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520285" }, "bbox": [ -0.6250884, 51.2667906, -0.6250884, 51.2667906 ], "geometry": { "type": "Point", "coordinates": [ -0.6250884, 51.2667906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96511255" }, "bbox": [ -0.6240058, 51.2550213, -0.6240058, 51.2550213 ], "geometry": { "type": "Point", "coordinates": [ -0.6240058, 51.2550213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91420166" }, "bbox": [ -0.6993752, 51.1759385, -0.6993752, 51.1759385 ], "geometry": { "type": "Point", "coordinates": [ -0.6993752, 51.1759385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96364285" }, "bbox": [ -0.6236391, 51.1228376, -0.6236391, 51.1228376 ], "geometry": { "type": "Point", "coordinates": [ -0.6236391, 51.1228376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94572687" }, "bbox": [ -0.6488797, 51.3122348, -0.6488797, 51.3122348 ], "geometry": { "type": "Point", "coordinates": [ -0.6488797, 51.3122348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90378172" }, "bbox": [ -0.7034997, 51.131413, -0.7034997, 51.131413 ], "geometry": { "type": "Point", "coordinates": [ -0.7034997, 51.131413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97478562" }, "bbox": [ -0.6003099, 51.2194459, -0.6003099, 51.2194459 ], "geometry": { "type": "Point", "coordinates": [ -0.6003099, 51.2194459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90363564" }, "bbox": [ -0.7103053, 51.1219851, -0.7103053, 51.1219851 ], "geometry": { "type": "Point", "coordinates": [ -0.7103053, 51.1219851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96511735" }, "bbox": [ -0.6233481, 51.2531707, -0.6233481, 51.2531707 ], "geometry": { "type": "Point", "coordinates": [ -0.6233481, 51.2531707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92635560" }, "bbox": [ -0.6722693, 51.3643174, -0.6722693, 51.3643174 ], "geometry": { "type": "Point", "coordinates": [ -0.6722693, 51.3643174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90437212" }, "bbox": [ -0.703368, 51.1801547, -0.703368, 51.1801547 ], "geometry": { "type": "Point", "coordinates": [ -0.703368, 51.1801547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86379696" }, "bbox": [ -0.7584896, 51.1343742, -0.7584896, 51.1343742 ], "geometry": { "type": "Point", "coordinates": [ -0.7584896, 51.1343742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95342816" }, "bbox": [ -0.6405594, 51.0989034, -0.6405594, 51.0989034 ], "geometry": { "type": "Point", "coordinates": [ -0.6405594, 51.0989034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98484611" }, "bbox": [ -0.5913532, 51.2237918, -0.5913532, 51.2237918 ], "geometry": { "type": "Point", "coordinates": [ -0.5913532, 51.2237918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98569136" }, "bbox": [ -0.5826644, 51.2978156, -0.5826644, 51.2978156 ], "geometry": { "type": "Point", "coordinates": [ -0.5826644, 51.2978156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99436144" }, "bbox": [ -0.5761786, 51.181648, -0.5761786, 51.181648 ], "geometry": { "type": "Point", "coordinates": [ -0.5761786, 51.181648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87351185" }, "bbox": [ -0.7578262, 51.1155476, -0.7578262, 51.1155476 ], "geometry": { "type": "Point", "coordinates": [ -0.7578262, 51.1155476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96615831" }, "bbox": [ -0.6147272, 51.3428213, -0.6147272, 51.3428213 ], "geometry": { "type": "Point", "coordinates": [ -0.6147272, 51.3428213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90392105" }, "bbox": [ -0.7115264, 51.1436516, -0.7115264, 51.1436516 ], "geometry": { "type": "Point", "coordinates": [ -0.7115264, 51.1436516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529816" }, "bbox": [ -0.6251676, 51.2606836, -0.6251676, 51.2606836 ], "geometry": { "type": "Point", "coordinates": [ -0.6251676, 51.2606836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99378096" }, "bbox": [ -0.5752223, 51.1323392, -0.5752223, 51.1323392 ], "geometry": { "type": "Point", "coordinates": [ -0.5752223, 51.1323392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93626541" }, "bbox": [ -0.6564127, 51.3530632, -0.6564127, 51.3530632 ], "geometry": { "type": "Point", "coordinates": [ -0.6564127, 51.3530632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83473097" }, "bbox": [ -0.8086048, 51.2248193, -0.8086048, 51.2248193 ], "geometry": { "type": "Point", "coordinates": [ -0.8086048, 51.2248193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95503274" }, "bbox": [ -0.6357086, 51.2478778, -0.6357086, 51.2478778 ], "geometry": { "type": "Point", "coordinates": [ -0.6357086, 51.2478778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443810" }, "bbox": [ -0.6938084, 51.1888932, -0.6938084, 51.1888932 ], "geometry": { "type": "Point", "coordinates": [ -0.6938084, 51.1888932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82424406" }, "bbox": [ -0.8221958, 51.171986, -0.8221958, 51.171986 ], "geometry": { "type": "Point", "coordinates": [ -0.8221958, 51.171986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92527422" }, "bbox": [ -0.6722221, 51.261655, -0.6722221, 51.261655 ], "geometry": { "type": "Point", "coordinates": [ -0.6722221, 51.261655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90426662" }, "bbox": [ -0.7044649, 51.1756545, -0.7044649, 51.1756545 ], "geometry": { "type": "Point", "coordinates": [ -0.7044649, 51.1756545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93322553" }, "bbox": [ -0.6697749, 51.0845599, -0.6697749, 51.0845599 ], "geometry": { "type": "Point", "coordinates": [ -0.6697749, 51.0845599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98366176" }, "bbox": [ -0.5922586, 51.1217522, -0.5922586, 51.1217522 ], "geometry": { "type": "Point", "coordinates": [ -0.5922586, 51.1217522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388166" }, "bbox": [ -0.6889925, 51.1399273, -0.6889925, 51.1399273 ], "geometry": { "type": "Point", "coordinates": [ -0.6889925, 51.1399273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99433777" }, "bbox": [ -0.5797595, 51.1845161, -0.5797595, 51.1845161 ], "geometry": { "type": "Point", "coordinates": [ -0.5797595, 51.1845161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482315" }, "bbox": [ -0.6947577, 51.225548, -0.6947577, 51.225548 ], "geometry": { "type": "Point", "coordinates": [ -0.6947577, 51.225548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91378364" }, "bbox": [ -0.6889198, 51.1306901, -0.6889198, 51.1306901 ], "geometry": { "type": "Point", "coordinates": [ -0.6889198, 51.1306901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96383973" }, "bbox": [ -0.6235604, 51.1398856, -0.6235604, 51.1398856 ], "geometry": { "type": "Point", "coordinates": [ -0.6235604, 51.1398856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86429271" }, "bbox": [ -0.757872, 51.1770523, -0.757872, 51.1770523 ], "geometry": { "type": "Point", "coordinates": [ -0.757872, 51.1770523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94495414" }, "bbox": [ -0.6471136, 51.2335567, -0.6471136, 51.2335567 ], "geometry": { "type": "Point", "coordinates": [ -0.6471136, 51.2335567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91642736" }, "bbox": [ -0.6902474, 51.3710164, -0.6902474, 51.3710164 ], "geometry": { "type": "Point", "coordinates": [ -0.6902474, 51.3710164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90391356" }, "bbox": [ -0.7128105, 51.1482268, -0.7128105, 51.1482268 ], "geometry": { "type": "Point", "coordinates": [ -0.7128105, 51.1482268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93323033" }, "bbox": [ -0.6693652, 51.0827972, -0.6693652, 51.0827972 ], "geometry": { "type": "Point", "coordinates": [ -0.6693652, 51.0827972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99450269" }, "bbox": [ -0.5839688, 51.2018615, -0.5839688, 51.2018615 ], "geometry": { "type": "Point", "coordinates": [ -0.5839688, 51.2018615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98378627" }, "bbox": [ -0.5885403, 51.1261057, -0.5885403, 51.1261057 ], "geometry": { "type": "Point", "coordinates": [ -0.5885403, 51.1261057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83441441" }, "bbox": [ -0.8115567, 51.1928662, -0.8115567, 51.1928662 ], "geometry": { "type": "Point", "coordinates": [ -0.8115567, 51.1928662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90612486" }, "bbox": [ -0.7052845, 51.3486388, -0.7052845, 51.3486388 ], "geometry": { "type": "Point", "coordinates": [ -0.7052845, 51.3486388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81464901" }, "bbox": [ -0.834976, 51.2075324, -0.834976, 51.2075324 ], "geometry": { "type": "Point", "coordinates": [ -0.834976, 51.2075324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86373991" }, "bbox": [ -0.7667144, 51.1340272, -0.7667144, 51.1340272 ], "geometry": { "type": "Point", "coordinates": [ -0.7667144, 51.1340272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82424325" }, "bbox": [ -0.8222349, 51.1736699, -0.8222349, 51.1736699 ], "geometry": { "type": "Point", "coordinates": [ -0.8222349, 51.1736699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95325080" }, "bbox": [ -0.6377759, 51.0866623, -0.6377759, 51.0866623 ], "geometry": { "type": "Point", "coordinates": [ -0.6377759, 51.0866623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502525" }, "bbox": [ -0.6510662, 51.2434867, -0.6510662, 51.2434867 ], "geometry": { "type": "Point", "coordinates": [ -0.6510662, 51.2434867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94358076" }, "bbox": [ -0.6469636, 51.1132817, -0.6469636, 51.1132817 ], "geometry": { "type": "Point", "coordinates": [ -0.6469636, 51.1132817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98374260" }, "bbox": [ -0.5949424, 51.1291731, -0.5949424, 51.1291731 ], "geometry": { "type": "Point", "coordinates": [ -0.5949424, 51.1291731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96535784" }, "bbox": [ -0.6169542, 51.2755007, -0.6169542, 51.2755007 ], "geometry": { "type": "Point", "coordinates": [ -0.6169542, 51.2755007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520195" }, "bbox": [ -0.625411, 51.2676793, -0.625411, 51.2676793 ], "geometry": { "type": "Point", "coordinates": [ -0.625411, 51.2676793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97357941" }, "bbox": [ -0.6046141, 51.1096371, -0.6046141, 51.1096371 ], "geometry": { "type": "Point", "coordinates": [ -0.6046141, 51.1096371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83484601" }, "bbox": [ -0.8062096, 51.2261514, -0.8062096, 51.2261514 ], "geometry": { "type": "Point", "coordinates": [ -0.8062096, 51.2261514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99547280" }, "bbox": [ -0.571454, 51.2836344, -0.571454, 51.2836344 ], "geometry": { "type": "Point", "coordinates": [ -0.571454, 51.2836344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89379298" }, "bbox": [ -0.7164357, 51.1340979, -0.7164357, 51.1340979 ], "geometry": { "type": "Point", "coordinates": [ -0.7164357, 51.1340979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96376095" }, "bbox": [ -0.6207766, 51.1326957, -0.6207766, 51.1326957 ], "geometry": { "type": "Point", "coordinates": [ -0.6207766, 51.1326957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86381935" }, "bbox": [ -0.7693817, 51.1379554, -0.7693817, 51.1379554 ], "geometry": { "type": "Point", "coordinates": [ -0.7693817, 51.1379554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91383432" }, "bbox": [ -0.6957646, 51.1369212, -0.6957646, 51.1369212 ], "geometry": { "type": "Point", "coordinates": [ -0.6957646, 51.1369212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91488260" }, "bbox": [ -0.6859993, 51.2292926, -0.6859993, 51.2292926 ], "geometry": { "type": "Point", "coordinates": [ -0.6859993, 51.2292926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87384532" }, "bbox": [ -0.7515066, 51.1374714, -0.7515066, 51.1374714 ], "geometry": { "type": "Point", "coordinates": [ -0.7515066, 51.1374714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502476" }, "bbox": [ -0.651099, 51.2482387, -0.651099, 51.2482387 ], "geometry": { "type": "Point", "coordinates": [ -0.651099, 51.2482387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91479778" }, "bbox": [ -0.6847004, 51.2218289, -0.6847004, 51.2218289 ], "geometry": { "type": "Point", "coordinates": [ -0.6847004, 51.2218289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82392571" }, "bbox": [ -0.8253155, 51.1507817, -0.8253155, 51.1507817 ], "geometry": { "type": "Point", "coordinates": [ -0.8253155, 51.1507817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444302" }, "bbox": [ -0.693122, 51.1882286, -0.693122, 51.1882286 ], "geometry": { "type": "Point", "coordinates": [ -0.693122, 51.1882286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91380294" }, "bbox": [ -0.7002212, 51.1426452, -0.7002212, 51.1426452 ], "geometry": { "type": "Point", "coordinates": [ -0.7002212, 51.1426452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97412633" }, "bbox": [ -0.610093, 51.1624252, -0.610093, 51.1624252 ], "geometry": { "type": "Point", "coordinates": [ -0.610093, 51.1624252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91339566" }, "bbox": [ -0.6882089, 51.0948933, -0.6882089, 51.0948933 ], "geometry": { "type": "Point", "coordinates": [ -0.6882089, 51.0948933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84426101" }, "bbox": [ -0.7913681, 51.1710977, -0.7913681, 51.1710977 ], "geometry": { "type": "Point", "coordinates": [ -0.7913681, 51.1710977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92515505" }, "bbox": [ -0.675287, 51.2511944, -0.675287, 51.2511944 ], "geometry": { "type": "Point", "coordinates": [ -0.675287, 51.2511944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425810" }, "bbox": [ -0.7627294, 51.1715307, -0.7627294, 51.1715307 ], "geometry": { "type": "Point", "coordinates": [ -0.7627294, 51.1715307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93340883" }, "bbox": [ -0.6717825, 51.1052527, -0.6717825, 51.1052527 ], "geometry": { "type": "Point", "coordinates": [ -0.6717825, 51.1052527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93634078" }, "bbox": [ -0.6597559, 51.3654081, -0.6597559, 51.3654081 ], "geometry": { "type": "Point", "coordinates": [ -0.6597559, 51.3654081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95483476" }, "bbox": [ -0.6360882, 51.2299435, -0.6360882, 51.2299435 ], "geometry": { "type": "Point", "coordinates": [ -0.6360882, 51.2299435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97340167" }, "bbox": [ -0.615695, 51.1031797, -0.615695, 51.1031797 ], "geometry": { "type": "Point", "coordinates": [ -0.615695, 51.1031797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99466759" }, "bbox": [ -0.5742623, 51.2099866, -0.5742623, 51.2099866 ], "geometry": { "type": "Point", "coordinates": [ -0.5742623, 51.2099866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99589868" }, "bbox": [ -0.5667649, 51.3184351, -0.5667649, 51.3184351 ], "geometry": { "type": "Point", "coordinates": [ -0.5667649, 51.3184351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431650" }, "bbox": [ -0.6827142, 51.1833898, -0.6827142, 51.1833898 ], "geometry": { "type": "Point", "coordinates": [ -0.6827142, 51.1833898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97367823" }, "bbox": [ -0.6043777, 51.1170126, -0.6043777, 51.1170126 ], "geometry": { "type": "Point", "coordinates": [ -0.6043777, 51.1170126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92445598" }, "bbox": [ -0.6767756, 51.1965648, -0.6767756, 51.1965648 ], "geometry": { "type": "Point", "coordinates": [ -0.6767756, 51.1965648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90382890" }, "bbox": [ -0.710842, 51.142247, -0.710842, 51.142247 ], "geometry": { "type": "Point", "coordinates": [ -0.710842, 51.142247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98478106" }, "bbox": [ -0.5867124, 51.2141981, -0.5867124, 51.2141981 ], "geometry": { "type": "Point", "coordinates": [ -0.5867124, 51.2141981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97575970" }, "bbox": [ -0.6012434, 51.3100572, -0.6012434, 51.3100572 ], "geometry": { "type": "Point", "coordinates": [ -0.6012434, 51.3100572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95594919" }, "bbox": [ -0.6310061, 51.3238187, -0.6310061, 51.3238187 ], "geometry": { "type": "Point", "coordinates": [ -0.6310061, 51.3238187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93546555" }, "bbox": [ -0.6581801, 51.282462, -0.6581801, 51.282462 ], "geometry": { "type": "Point", "coordinates": [ -0.6581801, 51.282462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86385130" }, "bbox": [ -0.7648529, 51.1373999, -0.7648529, 51.1373999 ], "geometry": { "type": "Point", "coordinates": [ -0.7648529, 51.1373999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93322078" }, "bbox": [ -0.6708921, 51.0867051, -0.6708921, 51.0867051 ], "geometry": { "type": "Point", "coordinates": [ -0.6708921, 51.0867051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93494857" }, "bbox": [ -0.6621765, 51.2375282, -0.6621765, 51.2375282 ], "geometry": { "type": "Point", "coordinates": [ -0.6621765, 51.2375282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99722987" }, "bbox": [ -0.5725972, 51.4460589, -0.5725972, 51.4460589 ], "geometry": { "type": "Point", "coordinates": [ -0.5725972, 51.4460589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93425067" }, "bbox": [ -0.6637423, 51.1756714, -0.6637423, 51.1756714 ], "geometry": { "type": "Point", "coordinates": [ -0.6637423, 51.1756714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94341925" }, "bbox": [ -0.6563258, 51.0998123, -0.6563258, 51.0998123 ], "geometry": { "type": "Point", "coordinates": [ -0.6563258, 51.0998123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85441943" }, "bbox": [ -0.7823947, 51.1927075, -0.7823947, 51.1927075 ], "geometry": { "type": "Point", "coordinates": [ -0.7823947, 51.1927075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92470122" }, "bbox": [ -0.6839374, 51.2166144, -0.6839374, 51.2166144 ], "geometry": { "type": "Point", "coordinates": [ -0.6839374, 51.2166144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90464567" }, "bbox": [ -0.7064278, 51.212001, -0.7064278, 51.212001 ], "geometry": { "type": "Point", "coordinates": [ -0.7064278, 51.212001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90465825" }, "bbox": [ -0.7046776, 51.2083961, -0.7046776, 51.2083961 ], "geometry": { "type": "Point", "coordinates": [ -0.7046776, 51.2083961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93602753" }, "bbox": [ -0.6623703, 51.3362189, -0.6623703, 51.3362189 ], "geometry": { "type": "Point", "coordinates": [ -0.6623703, 51.3362189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89383628" }, "bbox": [ -0.7240603, 51.1368124, -0.7240603, 51.1368124 ], "geometry": { "type": "Point", "coordinates": [ -0.7240603, 51.1368124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82421627" }, "bbox": [ -0.82598, 51.1738296, -0.82598, 51.1738296 ], "geometry": { "type": "Point", "coordinates": [ -0.82598, 51.1738296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94499970" }, "bbox": [ -0.6406308, 51.2384939, -0.6406308, 51.2384939 ], "geometry": { "type": "Point", "coordinates": [ -0.6406308, 51.2384939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96541520" }, "bbox": [ -0.6229033, 51.2788245, -0.6229033, 51.2788245 ], "geometry": { "type": "Point", "coordinates": [ -0.6229033, 51.2788245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95660990" }, "bbox": [ -0.6346565, 51.3931955, -0.6346565, 51.3931955 ], "geometry": { "type": "Point", "coordinates": [ -0.6346565, 51.3931955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92466434" }, "bbox": [ -0.6752018, 51.20864, -0.6752018, 51.20864 ], "geometry": { "type": "Point", "coordinates": [ -0.6752018, 51.20864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95518356" }, "bbox": [ -0.6284782, 51.2553729, -0.6284782, 51.2553729 ], "geometry": { "type": "Point", "coordinates": [ -0.6284782, 51.2553729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91512316" }, "bbox": [ -0.6942737, 51.2524814, -0.6942737, 51.2524814 ], "geometry": { "type": "Point", "coordinates": [ -0.6942737, 51.2524814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89360486" }, "bbox": [ -0.7289345, 51.1241589, -0.7289345, 51.1241589 ], "geometry": { "type": "Point", "coordinates": [ -0.7289345, 51.1241589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86417335" }, "bbox": [ -0.7619494, 51.1641289, -0.7619494, 51.1641289 ], "geometry": { "type": "Point", "coordinates": [ -0.7619494, 51.1641289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92426460" }, "bbox": [ -0.6762045, 51.1751566, -0.6762045, 51.1751566 ], "geometry": { "type": "Point", "coordinates": [ -0.6762045, 51.1751566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99610456" }, "bbox": [ -0.5792592, 51.3445765, -0.5792592, 51.3445765 ], "geometry": { "type": "Point", "coordinates": [ -0.5792592, 51.3445765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94587975" }, "bbox": [ -0.6411794, 51.3199159, -0.6411794, 51.3199159 ], "geometry": { "type": "Point", "coordinates": [ -0.6411794, 51.3199159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88388653" }, "bbox": [ -0.7311909, 51.1391168, -0.7311909, 51.1391168 ], "geometry": { "type": "Point", "coordinates": [ -0.7311909, 51.1391168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85380834" }, "bbox": [ -0.7851848, 51.1381002, -0.7851848, 51.1381002 ], "geometry": { "type": "Point", "coordinates": [ -0.7851848, 51.1381002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476740" }, "bbox": [ -0.6743844, 51.2183003, -0.6743844, 51.2183003 ], "geometry": { "type": "Point", "coordinates": [ -0.6743844, 51.2183003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97360535" }, "bbox": [ -0.6147471, 51.1181926, -0.6147471, 51.1181926 ], "geometry": { "type": "Point", "coordinates": [ -0.6147471, 51.1181926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89483085" }, "bbox": [ -0.7233774, 51.2318655, -0.7233774, 51.2318655 ], "geometry": { "type": "Point", "coordinates": [ -0.7233774, 51.2318655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82390949" }, "bbox": [ -0.827709, 51.1487565, -0.827709, 51.1487565 ], "geometry": { "type": "Point", "coordinates": [ -0.827709, 51.1487565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89373898" }, "bbox": [ -0.7239333, 51.1341437, -0.7239333, 51.1341437 ], "geometry": { "type": "Point", "coordinates": [ -0.7239333, 51.1341437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94515077" }, "bbox": [ -0.6473411, 51.2572647, -0.6473411, 51.2572647 ], "geometry": { "type": "Point", "coordinates": [ -0.6473411, 51.2572647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94447028" }, "bbox": [ -0.6460724, 51.1898939, -0.6460724, 51.1898939 ], "geometry": { "type": "Point", "coordinates": [ -0.6460724, 51.1898939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86382943" }, "bbox": [ -0.7678467, 51.1386666, -0.7678467, 51.1386666 ], "geometry": { "type": "Point", "coordinates": [ -0.7678467, 51.1386666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94358967" }, "bbox": [ -0.6458042, 51.1125142, -0.6458042, 51.1125142 ], "geometry": { "type": "Point", "coordinates": [ -0.6458042, 51.1125142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98361299" }, "bbox": [ -0.5993828, 51.1237326, -0.5993828, 51.1237326 ], "geometry": { "type": "Point", "coordinates": [ -0.5993828, 51.1237326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99357085" }, "bbox": [ -0.5770284, 51.1131904, -0.5770284, 51.1131904 ], "geometry": { "type": "Point", "coordinates": [ -0.5770284, 51.1131904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90442723" }, "bbox": [ -0.7096612, 51.1901809, -0.7096612, 51.1901809 ], "geometry": { "type": "Point", "coordinates": [ -0.7096612, 51.1901809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87353265" }, "bbox": [ -0.7537364, 51.1135061, -0.7537364, 51.1135061 ], "geometry": { "type": "Point", "coordinates": [ -0.7537364, 51.1135061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87440237" }, "bbox": [ -0.7560365, 51.1918646, -0.7560365, 51.1918646 ], "geometry": { "type": "Point", "coordinates": [ -0.7560365, 51.1918646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96461633" }, "bbox": [ -0.624956, 51.2080672, -0.624956, 51.2080672 ], "geometry": { "type": "Point", "coordinates": [ -0.624956, 51.2080672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90376949" }, "bbox": [ -0.7052015, 51.1292788, -0.7052015, 51.1292788 ], "geometry": { "type": "Point", "coordinates": [ -0.7052015, 51.1292788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91484304" }, "bbox": [ -0.6919678, 51.2243343, -0.6919678, 51.2243343 ], "geometry": { "type": "Point", "coordinates": [ -0.6919678, 51.2243343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96454691" }, "bbox": [ -0.6209275, 51.2042368, -0.6209275, 51.2042368 ], "geometry": { "type": "Point", "coordinates": [ -0.6209275, 51.2042368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91371874" }, "bbox": [ -0.6983124, 51.1316912, -0.6983124, 51.1316912 ], "geometry": { "type": "Point", "coordinates": [ -0.6983124, 51.1316912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99415817" }, "bbox": [ -0.5768867, 51.1609092, -0.5768867, 51.1609092 ], "geometry": { "type": "Point", "coordinates": [ -0.5768867, 51.1609092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91514941" }, "bbox": [ -0.6902447, 51.2545896, -0.6902447, 51.2545896 ], "geometry": { "type": "Point", "coordinates": [ -0.6902447, 51.2545896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97638544" }, "bbox": [ -0.5957255, 51.3617086, -0.5957255, 51.3617086 ], "geometry": { "type": "Point", "coordinates": [ -0.5957255, 51.3617086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91399222" }, "bbox": [ -0.6872112, 51.1447408, -0.6872112, 51.1447408 ], "geometry": { "type": "Point", "coordinates": [ -0.6872112, 51.1447408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497647" }, "bbox": [ -0.7161543, 51.2374061, -0.7161543, 51.2374061 ], "geometry": { "type": "Point", "coordinates": [ -0.7161543, 51.2374061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89344607" }, "bbox": [ -0.7237036, 51.099006, -0.7237036, 51.099006 ], "geometry": { "type": "Point", "coordinates": [ -0.7237036, 51.099006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92636430" }, "bbox": [ -0.6708579, 51.3612844, -0.6708579, 51.3612844 ], "geometry": { "type": "Point", "coordinates": [ -0.6708579, 51.3612844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380468" }, "bbox": [ -0.7714779, 51.140985, -0.7714779, 51.140985 ], "geometry": { "type": "Point", "coordinates": [ -0.7714779, 51.140985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98466450" }, "bbox": [ -0.589468, 51.2092784, -0.589468, 51.2092784 ], "geometry": { "type": "Point", "coordinates": [ -0.589468, 51.2092784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517494" }, "bbox": [ -0.672194, 51.2591044, -0.672194, 51.2591044 ], "geometry": { "type": "Point", "coordinates": [ -0.672194, 51.2591044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97520363" }, "bbox": [ -0.6107137, 51.2646699, -0.6107137, 51.2646699 ], "geometry": { "type": "Point", "coordinates": [ -0.6107137, 51.2646699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98414038" }, "bbox": [ -0.5942407, 51.1634029, -0.5942407, 51.1634029 ], "geometry": { "type": "Point", "coordinates": [ -0.5942407, 51.1634029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98474901" }, "bbox": [ -0.591305, 51.2138957, -0.591305, 51.2138957 ], "geometry": { "type": "Point", "coordinates": [ -0.591305, 51.2138957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97474403" }, "bbox": [ -0.6062763, 51.21407, -0.6062763, 51.21407 ], "geometry": { "type": "Point", "coordinates": [ -0.6062763, 51.21407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399238" }, "bbox": [ -0.5730976, 51.1450107, -0.5730976, 51.1450107 ], "geometry": { "type": "Point", "coordinates": [ -0.5730976, 51.1450107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97368910" }, "bbox": [ -0.6028075, 51.1157991, -0.6028075, 51.1157991 ], "geometry": { "type": "Point", "coordinates": [ -0.6028075, 51.1157991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96342896" }, "bbox": [ -0.6263489, 51.1057926, -0.6263489, 51.1057926 ], "geometry": { "type": "Point", "coordinates": [ -0.6263489, 51.1057926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380276" }, "bbox": [ -0.7717059, 51.141678, -0.7717059, 51.141678 ], "geometry": { "type": "Point", "coordinates": [ -0.7717059, 51.141678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83400613" }, "bbox": [ -0.8140618, 51.1543736, -0.8140618, 51.1543736 ], "geometry": { "type": "Point", "coordinates": [ -0.8140618, 51.1543736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95344530" }, "bbox": [ -0.6381949, 51.1000814, -0.6381949, 51.1000814 ], "geometry": { "type": "Point", "coordinates": [ -0.6381949, 51.1000814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81478645" }, "bbox": [ -0.8290312, 51.2203001, -0.8290312, 51.2203001 ], "geometry": { "type": "Point", "coordinates": [ -0.8290312, 51.2203001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99466324" }, "bbox": [ -0.575009, 51.2067634, -0.575009, 51.2067634 ], "geometry": { "type": "Point", "coordinates": [ -0.575009, 51.2067634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96375395" }, "bbox": [ -0.6217556, 51.132704, -0.6217556, 51.132704 ], "geometry": { "type": "Point", "coordinates": [ -0.6217556, 51.132704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93429186" }, "bbox": [ -0.6581924, 51.1772016, -0.6581924, 51.1772016 ], "geometry": { "type": "Point", "coordinates": [ -0.6581924, 51.1772016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91474495" }, "bbox": [ -0.6918712, 51.2234939, -0.6918712, 51.2234939 ], "geometry": { "type": "Point", "coordinates": [ -0.6918712, 51.2234939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90463464" }, "bbox": [ -0.7079931, 51.211801, -0.7079931, 51.211801 ], "geometry": { "type": "Point", "coordinates": [ -0.7079931, 51.211801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91479392" }, "bbox": [ -0.6850327, 51.2229384, -0.6850327, 51.2229384 ], "geometry": { "type": "Point", "coordinates": [ -0.6850327, 51.2229384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97424651" }, "bbox": [ -0.6073128, 51.1735063, -0.6073128, 51.1735063 ], "geometry": { "type": "Point", "coordinates": [ -0.6073128, 51.1735063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98472169" }, "bbox": [ -0.5951087, 51.2199923, -0.5951087, 51.2199923 ], "geometry": { "type": "Point", "coordinates": [ -0.5951087, 51.2199923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90377154" }, "bbox": [ -0.7050388, 51.1300204, -0.7050388, 51.1300204 ], "geometry": { "type": "Point", "coordinates": [ -0.7050388, 51.1300204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98415735" }, "bbox": [ -0.5916225, 51.1629828, -0.5916225, 51.1629828 ], "geometry": { "type": "Point", "coordinates": [ -0.5916225, 51.1629828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97336418" }, "bbox": [ -0.6072825, 51.0896193, -0.6072825, 51.0896193 ], "geometry": { "type": "Point", "coordinates": [ -0.6072825, 51.0896193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362968" }, "bbox": [ -0.6112875, 51.1212202, -0.6112875, 51.1212202 ], "geometry": { "type": "Point", "coordinates": [ -0.6112875, 51.1212202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91377875" }, "bbox": [ -0.6893931, 51.1316353, -0.6893931, 51.1316353 ], "geometry": { "type": "Point", "coordinates": [ -0.6893931, 51.1316353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95465874" }, "bbox": [ -0.6329157, 51.2119052, -0.6329157, 51.2119052 ], "geometry": { "type": "Point", "coordinates": [ -0.6329157, 51.2119052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432957" }, "bbox": [ -0.6808692, 51.1839897, -0.6808692, 51.1839897 ], "geometry": { "type": "Point", "coordinates": [ -0.6808692, 51.1839897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97422234" }, "bbox": [ -0.6107151, 51.1720056, -0.6107151, 51.1720056 ], "geometry": { "type": "Point", "coordinates": [ -0.6107151, 51.1720056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92380594" }, "bbox": [ -0.6851937, 51.1418387, -0.6851937, 51.1418387 ], "geometry": { "type": "Point", "coordinates": [ -0.6851937, 51.1418387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86397919" }, "bbox": [ -0.7604541, 51.1453935, -0.7604541, 51.1453935 ], "geometry": { "type": "Point", "coordinates": [ -0.7604541, 51.1453935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96535969" }, "bbox": [ -0.6167506, 51.2742007, -0.6167506, 51.2742007 ], "geometry": { "type": "Point", "coordinates": [ -0.6167506, 51.2742007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92609846" }, "bbox": [ -0.6663878, 51.3356275, -0.6663878, 51.3356275 ], "geometry": { "type": "Point", "coordinates": [ -0.6663878, 51.3356275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86375872" }, "bbox": [ -0.7638983, 51.1322603, -0.7638983, 51.1322603 ], "geometry": { "type": "Point", "coordinates": [ -0.7638983, 51.1322603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92437116" }, "bbox": [ -0.6750041, 51.1800868, -0.6750041, 51.1800868 ], "geometry": { "type": "Point", "coordinates": [ -0.6750041, 51.1800868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90389403" }, "bbox": [ -0.7017715, 51.1342933, -0.7017715, 51.1342933 ], "geometry": { "type": "Point", "coordinates": [ -0.7017715, 51.1342933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90375096" }, "bbox": [ -0.7074806, 51.1338075, -0.7074806, 51.1338075 ], "geometry": { "type": "Point", "coordinates": [ -0.7074806, 51.1338075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99445276" }, "bbox": [ -0.5774512, 51.1932837, -0.5774512, 51.1932837 ], "geometry": { "type": "Point", "coordinates": [ -0.5774512, 51.1932837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98393147" }, "bbox": [ -0.5966876, 51.1459241, -0.5966876, 51.1459241 ], "geometry": { "type": "Point", "coordinates": [ -0.5966876, 51.1459241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89476141" }, "bbox": [ -0.7181272, 51.2188007, -0.7181272, 51.2188007 ], "geometry": { "type": "Point", "coordinates": [ -0.7181272, 51.2188007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86436416" }, "bbox": [ -0.7619804, 51.1809685, -0.7619804, 51.1809685 ], "geometry": { "type": "Point", "coordinates": [ -0.7619804, 51.1809685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97378093" }, "bbox": [ -0.6036306, 51.1323353, -0.6036306, 51.1323353 ], "geometry": { "type": "Point", "coordinates": [ -0.6036306, 51.1323353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93354430" }, "bbox": [ -0.6665602, 51.109429, -0.6665602, 51.109429 ], "geometry": { "type": "Point", "coordinates": [ -0.6665602, 51.109429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92435726" }, "bbox": [ -0.6768361, 51.1811232, -0.6768361, 51.1811232 ], "geometry": { "type": "Point", "coordinates": [ -0.6768361, 51.1811232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94492976" }, "bbox": [ -0.6504697, 51.2392555, -0.6504697, 51.2392555 ], "geometry": { "type": "Point", "coordinates": [ -0.6504697, 51.2392555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91427334" }, "bbox": [ -0.6891893, 51.1729065, -0.6891893, 51.1729065 ], "geometry": { "type": "Point", "coordinates": [ -0.6891893, 51.1729065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399337" }, "bbox": [ -0.6156214, 51.1454429, -0.6156214, 51.1454429 ], "geometry": { "type": "Point", "coordinates": [ -0.6156214, 51.1454429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93626648" }, "bbox": [ -0.656372, 51.3537085, -0.656372, 51.3537085 ], "geometry": { "type": "Point", "coordinates": [ -0.656372, 51.3537085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441320" }, "bbox": [ -0.7116455, 51.1899889, -0.7116455, 51.1899889 ], "geometry": { "type": "Point", "coordinates": [ -0.7116455, 51.1899889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98360263" }, "bbox": [ -0.600741, 51.1206492, -0.600741, 51.1206492 ], "geometry": { "type": "Point", "coordinates": [ -0.600741, 51.1206492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99359212" }, "bbox": [ -0.5741953, 51.1066583, -0.5741953, 51.1066583 ], "geometry": { "type": "Point", "coordinates": [ -0.5741953, 51.1066583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81454648" }, "bbox": [ -0.8353727, 51.202741, -0.8353727, 51.202741 ], "geometry": { "type": "Point", "coordinates": [ -0.8353727, 51.202741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97379590" }, "bbox": [ -0.6015769, 51.1319483, -0.6015769, 51.1319483 ], "geometry": { "type": "Point", "coordinates": [ -0.6015769, 51.1319483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92433152" }, "bbox": [ -0.680632, 51.1835455, -0.680632, 51.1835455 ], "geometry": { "type": "Point", "coordinates": [ -0.680632, 51.1835455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387220" }, "bbox": [ -0.7333548, 51.1361851, -0.7333548, 51.1361851 ], "geometry": { "type": "Point", "coordinates": [ -0.7333548, 51.1361851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89473814" }, "bbox": [ -0.7221682, 51.2164127, -0.7221682, 51.2164127 ], "geometry": { "type": "Point", "coordinates": [ -0.7221682, 51.2164127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93624549" }, "bbox": [ -0.6592725, 51.3537613, -0.6592725, 51.3537613 ], "geometry": { "type": "Point", "coordinates": [ -0.6592725, 51.3537613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90376328" }, "bbox": [ -0.7058141, 51.1274862, -0.7058141, 51.1274862 ], "geometry": { "type": "Point", "coordinates": [ -0.7058141, 51.1274862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94593252" }, "bbox": [ -0.6478743, 51.3269813, -0.6478743, 51.3269813 ], "geometry": { "type": "Point", "coordinates": [ -0.6478743, 51.3269813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90465345" }, "bbox": [ -0.7054195, 51.2100513, -0.7054195, 51.2100513 ], "geometry": { "type": "Point", "coordinates": [ -0.7054195, 51.2100513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96558568" }, "bbox": [ -0.612345, 51.2920312, -0.612345, 51.2920312 ], "geometry": { "type": "Point", "coordinates": [ -0.612345, 51.2920312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93517622" }, "bbox": [ -0.6579406, 51.2525973, -0.6579406, 51.2525973 ], "geometry": { "type": "Point", "coordinates": [ -0.6579406, 51.2525973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82406545" }, "bbox": [ -0.8193961, 51.1573705, -0.8193961, 51.1573705 ], "geometry": { "type": "Point", "coordinates": [ -0.8193961, 51.1573705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93564248" }, "bbox": [ -0.6610941, 51.2999552, -0.6610941, 51.2999552 ], "geometry": { "type": "Point", "coordinates": [ -0.6610941, 51.2999552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81456189" }, "bbox": [ -0.8332352, 51.2064803, -0.8332352, 51.2064803 ], "geometry": { "type": "Point", "coordinates": [ -0.8332352, 51.2064803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94627557" }, "bbox": [ -0.6406139, 51.3542759, -0.6406139, 51.3542759 ], "geometry": { "type": "Point", "coordinates": [ -0.6406139, 51.3542759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93518955" }, "bbox": [ -0.6558369, 51.255394, -0.6558369, 51.255394 ], "geometry": { "type": "Point", "coordinates": [ -0.6558369, 51.255394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379766" }, "bbox": [ -0.6868992, 51.1308235, -0.6868992, 51.1308235 ], "geometry": { "type": "Point", "coordinates": [ -0.6868992, 51.1308235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95514637" }, "bbox": [ -0.6335078, 51.2536017, -0.6335078, 51.2536017 ], "geometry": { "type": "Point", "coordinates": [ -0.6335078, 51.2536017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88487025" }, "bbox": [ -0.7313251, 51.2266473, -0.7313251, 51.2266473 ], "geometry": { "type": "Point", "coordinates": [ -0.7313251, 51.2266473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90443430" }, "bbox": [ -0.7086947, 51.1907955, -0.7086947, 51.1907955 ], "geometry": { "type": "Point", "coordinates": [ -0.7086947, 51.1907955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90429487" }, "bbox": [ -0.7002619, 51.1778459, -0.7002619, 51.1778459 ], "geometry": { "type": "Point", "coordinates": [ -0.7002619, 51.1778459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432457" }, "bbox": [ -0.6816054, 51.1839711, -0.6816054, 51.1839711 ], "geometry": { "type": "Point", "coordinates": [ -0.6816054, 51.1839711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98393852" }, "bbox": [ -0.594862, 51.146506, -0.594862, 51.146506 ], "geometry": { "type": "Point", "coordinates": [ -0.594862, 51.146506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94507996" }, "bbox": [ -0.6432057, 51.2500191, -0.6432057, 51.2500191 ], "geometry": { "type": "Point", "coordinates": [ -0.6432057, 51.2500191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94390227" }, "bbox": [ -0.6574813, 51.1451224, -0.6574813, 51.1451224 ], "geometry": { "type": "Point", "coordinates": [ -0.6574813, 51.1451224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91488417" }, "bbox": [ -0.6860482, 51.2253522, -0.6860482, 51.2253522 ], "geometry": { "type": "Point", "coordinates": [ -0.6860482, 51.2253522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90384594" }, "bbox": [ -0.7086897, 51.1423898, -0.7086897, 51.1423898 ], "geometry": { "type": "Point", "coordinates": [ -0.7086897, 51.1423898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89380372" }, "bbox": [ -0.7287587, 51.140826, -0.7287587, 51.140826 ], "geometry": { "type": "Point", "coordinates": [ -0.7287587, 51.140826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86418471" }, "bbox": [ -0.7598611, 51.1684761, -0.7598611, 51.1684761 ], "geometry": { "type": "Point", "coordinates": [ -0.7598611, 51.1684761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94561503" }, "bbox": [ -0.6511823, 51.2955609, -0.6511823, 51.2955609 ], "geometry": { "type": "Point", "coordinates": [ -0.6511823, 51.2955609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97366510" }, "bbox": [ -0.6061533, 51.115785, -0.6061533, 51.115785 ], "geometry": { "type": "Point", "coordinates": [ -0.6061533, 51.115785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95526614" }, "bbox": [ -0.630291, 51.2603756, -0.630291, 51.2603756 ], "geometry": { "type": "Point", "coordinates": [ -0.630291, 51.2603756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96529475" }, "bbox": [ -0.612078, 51.2655881, -0.612078, 51.2655881 ], "geometry": { "type": "Point", "coordinates": [ -0.612078, 51.2655881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87396606" }, "bbox": [ -0.7483492, 51.1441543, -0.7483492, 51.1441543 ], "geometry": { "type": "Point", "coordinates": [ -0.7483492, 51.1441543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92506065" }, "bbox": [ -0.6748102, 51.2474911, -0.6748102, 51.2474911 ], "geometry": { "type": "Point", "coordinates": [ -0.6748102, 51.2474911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98480110" }, "bbox": [ -0.597984, 51.2238114, -0.597984, 51.2238114 ], "geometry": { "type": "Point", "coordinates": [ -0.597984, 51.2238114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90497572" }, "bbox": [ -0.7013482, 51.2394707, -0.7013482, 51.2394707 ], "geometry": { "type": "Point", "coordinates": [ -0.7013482, 51.2394707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82465925" }, "bbox": [ -0.8185323, 51.2088645, -0.8185323, 51.2088645 ], "geometry": { "type": "Point", "coordinates": [ -0.8185323, 51.2088645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87388297" }, "bbox": [ -0.7461327, 51.1432989, -0.7461327, 51.1432989 ], "geometry": { "type": "Point", "coordinates": [ -0.7461327, 51.1432989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98727257" }, "bbox": [ -0.5808864, 51.4435899, -0.5808864, 51.4435899 ], "geometry": { "type": "Point", "coordinates": [ -0.5808864, 51.4435899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89478794" }, "bbox": [ -0.7149755, 51.2236716, -0.7149755, 51.2236716 ], "geometry": { "type": "Point", "coordinates": [ -0.7149755, 51.2236716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81467437" }, "bbox": [ -0.8311258, 51.2106966, -0.8311258, 51.2106966 ], "geometry": { "type": "Point", "coordinates": [ -0.8311258, 51.2106966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82450370" }, "bbox": [ -0.8271482, 51.2046499, -0.8271482, 51.2046499 ], "geometry": { "type": "Point", "coordinates": [ -0.8271482, 51.2046499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89386021" }, "bbox": [ -0.7208036, 51.1358118, -0.7208036, 51.1358118 ], "geometry": { "type": "Point", "coordinates": [ -0.7208036, 51.1358118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98473820" }, "bbox": [ -0.5927751, 51.2154671, -0.5927751, 51.2154671 ], "geometry": { "type": "Point", "coordinates": [ -0.5927751, 51.2154671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98412593" }, "bbox": [ -0.596079, 51.168284, -0.596079, 51.168284 ], "geometry": { "type": "Point", "coordinates": [ -0.596079, 51.168284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96392709" }, "bbox": [ -0.6245116, 51.1429279, -0.6245116, 51.1429279 ], "geometry": { "type": "Point", "coordinates": [ -0.6245116, 51.1429279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94356173" }, "bbox": [ -0.6498696, 51.1130175, -0.6498696, 51.1130175 ], "geometry": { "type": "Point", "coordinates": [ -0.6498696, 51.1130175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96360989" }, "bbox": [ -0.6283484, 51.1232405, -0.6283484, 51.1232405 ], "geometry": { "type": "Point", "coordinates": [ -0.6283484, 51.1232405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93449429" }, "bbox": [ -0.6570699, 51.1901411, -0.6570699, 51.1901411 ], "geometry": { "type": "Point", "coordinates": [ -0.6570699, 51.1901411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91387242" }, "bbox": [ -0.6903648, 51.1377931, -0.6903648, 51.1377931 ], "geometry": { "type": "Point", "coordinates": [ -0.6903648, 51.1377931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97355380" }, "bbox": [ -0.6079811, 51.1131731, -0.6079811, 51.1131731 ], "geometry": { "type": "Point", "coordinates": [ -0.6079811, 51.1131731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95490501" }, "bbox": [ -0.6399685, 51.2321821, -0.6399685, 51.2321821 ], "geometry": { "type": "Point", "coordinates": [ -0.6399685, 51.2321821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427541" }, "bbox": [ -0.7019251, 51.1734043, -0.7019251, 51.1734043 ], "geometry": { "type": "Point", "coordinates": [ -0.7019251, 51.1734043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99398263" }, "bbox": [ -0.5743062, 51.1472717, -0.5743062, 51.1472717 ], "geometry": { "type": "Point", "coordinates": [ -0.5743062, 51.1472717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90463815" }, "bbox": [ -0.7074988, 51.2073892, -0.7074988, 51.2073892 ], "geometry": { "type": "Point", "coordinates": [ -0.7074988, 51.2073892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95466875" }, "bbox": [ -0.6316197, 51.2120898, -0.6316197, 51.2120898 ], "geometry": { "type": "Point", "coordinates": [ -0.6316197, 51.2120898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86377683" }, "bbox": [ -0.7604683, 51.133103, -0.7604683, 51.133103 ], "geometry": { "type": "Point", "coordinates": [ -0.7604683, 51.133103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90366479" }, "bbox": [ -0.7061746, 51.123199, -0.7061746, 51.123199 ], "geometry": { "type": "Point", "coordinates": [ -0.7061746, 51.123199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86446225" }, "bbox": [ -0.7618451, 51.1908998, -0.7618451, 51.1908998 ], "geometry": { "type": "Point", "coordinates": [ -0.7618451, 51.1908998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90484962" }, "bbox": [ -0.7051845, 51.2296091, -0.7051845, 51.2296091 ], "geometry": { "type": "Point", "coordinates": [ -0.7051845, 51.2296091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94359560" }, "bbox": [ -0.6448982, 51.1119195, -0.6448982, 51.1119195 ], "geometry": { "type": "Point", "coordinates": [ -0.6448982, 51.1119195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90364281" }, "bbox": [ -0.7091951, 51.1234229, -0.7091951, 51.1234229 ], "geometry": { "type": "Point", "coordinates": [ -0.7091951, 51.1234229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99438485" }, "bbox": [ -0.5727205, 51.1852497, -0.5727205, 51.1852497 ], "geometry": { "type": "Point", "coordinates": [ -0.5727205, 51.1852497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95598079" }, "bbox": [ -0.6263736, 51.3291196, -0.6263736, 51.3291196 ], "geometry": { "type": "Point", "coordinates": [ -0.6263736, 51.3291196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95507426" }, "bbox": [ -0.6299552, 51.2434258, -0.6299552, 51.2434258 ], "geometry": { "type": "Point", "coordinates": [ -0.6299552, 51.2434258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99549279" }, "bbox": [ -0.5685896, 51.2834829, -0.5685896, 51.2834829 ], "geometry": { "type": "Point", "coordinates": [ -0.5685896, 51.2834829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94588988" }, "bbox": [ -0.6401205, 51.3213856, -0.6401205, 51.3213856 ], "geometry": { "type": "Point", "coordinates": [ -0.6401205, 51.3213856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92441259" }, "bbox": [ -0.6830019, 51.1931988, -0.6830019, 51.1931988 ], "geometry": { "type": "Point", "coordinates": [ -0.6830019, 51.1931988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82484913" }, "bbox": [ -0.8200438, 51.2265772, -0.8200438, 51.2265772 ], "geometry": { "type": "Point", "coordinates": [ -0.8200438, 51.2265772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90490621" }, "bbox": [ -0.711392, 51.2349508, -0.711392, 51.2349508 ], "geometry": { "type": "Point", "coordinates": [ -0.711392, 51.2349508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98394757" }, "bbox": [ -0.5934919, 51.1469675, -0.5934919, 51.1469675 ], "geometry": { "type": "Point", "coordinates": [ -0.5934919, 51.1469675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477127" }, "bbox": [ -0.6738914, 51.2171754, -0.6738914, 51.2171754 ], "geometry": { "type": "Point", "coordinates": [ -0.6738914, 51.2171754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90366498" }, "bbox": [ -0.7061532, 51.1250287, -0.7061532, 51.1250287 ], "geometry": { "type": "Point", "coordinates": [ -0.7061532, 51.1250287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82472674" }, "bbox": [ -0.8234117, 51.2230165, -0.8234117, 51.2230165 ], "geometry": { "type": "Point", "coordinates": [ -0.8234117, 51.2230165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93423274" }, "bbox": [ -0.6662726, 51.1764473, -0.6662726, 51.1764473 ], "geometry": { "type": "Point", "coordinates": [ -0.6662726, 51.1764473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88487844" }, "bbox": [ -0.7294267, 51.2283945, -0.7294267, 51.2283945 ], "geometry": { "type": "Point", "coordinates": [ -0.7294267, 51.2283945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496363" }, "bbox": [ -0.7030636, 51.238716, -0.7030636, 51.238716 ], "geometry": { "type": "Point", "coordinates": [ -0.7030636, 51.238716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91426231" }, "bbox": [ -0.6907599, 51.1726747, -0.6907599, 51.1726747 ], "geometry": { "type": "Point", "coordinates": [ -0.6907599, 51.1726747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86381765" }, "bbox": [ -0.7695533, 51.1407147, -0.7695533, 51.1407147 ], "geometry": { "type": "Point", "coordinates": [ -0.7695533, 51.1407147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97538946" }, "bbox": [ -0.5981742, 51.2718964, -0.5981742, 51.2718964 ], "geometry": { "type": "Point", "coordinates": [ -0.5981742, 51.2718964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89385637" }, "bbox": [ -0.7213619, 51.1376494, -0.7213619, 51.1376494 ], "geometry": { "type": "Point", "coordinates": [ -0.7213619, 51.1376494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90376164" }, "bbox": [ -0.7063847, 51.1309414, -0.7063847, 51.1309414 ], "geometry": { "type": "Point", "coordinates": [ -0.7063847, 51.1309414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91486416" }, "bbox": [ -0.6890833, 51.2251669, -0.6890833, 51.2251669 ], "geometry": { "type": "Point", "coordinates": [ -0.6890833, 51.2251669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92446208" }, "bbox": [ -0.6759802, 51.1884596, -0.6759802, 51.1884596 ], "geometry": { "type": "Point", "coordinates": [ -0.6759802, 51.1884596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95492144" }, "bbox": [ -0.6376994, 51.2362569, -0.6376994, 51.2362569 ], "geometry": { "type": "Point", "coordinates": [ -0.6376994, 51.2362569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82399978" }, "bbox": [ -0.8148022, 51.1513604, -0.8148022, 51.1513604 ], "geometry": { "type": "Point", "coordinates": [ -0.8148022, 51.1513604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86379589" }, "bbox": [ -0.7585946, 51.1337663, -0.7585946, 51.1337663 ], "geometry": { "type": "Point", "coordinates": [ -0.7585946, 51.1337663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81457136" }, "bbox": [ -0.8316888, 51.2016569, -0.8316888, 51.2016569 ], "geometry": { "type": "Point", "coordinates": [ -0.8316888, 51.2016569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96543804" }, "bbox": [ -0.6195282, 51.2774219, -0.6195282, 51.2774219 ], "geometry": { "type": "Point", "coordinates": [ -0.6195282, 51.2774219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99467436" }, "bbox": [ -0.573112, 51.2078137, -0.573112, 51.2078137 ], "geometry": { "type": "Point", "coordinates": [ -0.573112, 51.2078137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89323954" }, "bbox": [ -0.7250556, 51.0852997, -0.7250556, 51.0852997 ], "geometry": { "type": "Point", "coordinates": [ -0.7250556, 51.0852997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91430880" }, "bbox": [ -0.6980608, 51.1862193, -0.6980608, 51.1862193 ], "geometry": { "type": "Point", "coordinates": [ -0.6980608, 51.1862193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91375582" }, "bbox": [ -0.6927323, 51.132434, -0.6927323, 51.132434 ], "geometry": { "type": "Point", "coordinates": [ -0.6927323, 51.132434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94606938" }, "bbox": [ -0.6420685, 51.3347702, -0.6420685, 51.3347702 ], "geometry": { "type": "Point", "coordinates": [ -0.6420685, 51.3347702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90468324" }, "bbox": [ -0.7013354, 51.2078522, -0.7013354, 51.2078522 ], "geometry": { "type": "Point", "coordinates": [ -0.7013354, 51.2078522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89370320" }, "bbox": [ -0.7289513, 51.1271683, -0.7289513, 51.1271683 ], "geometry": { "type": "Point", "coordinates": [ -0.7289513, 51.1271683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84388383" }, "bbox": [ -0.7887681, 51.1424799, -0.7887681, 51.1424799 ], "geometry": { "type": "Point", "coordinates": [ -0.7887681, 51.1424799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98473471" }, "bbox": [ -0.5927447, 51.2202402, -0.5927447, 51.2202402 ], "geometry": { "type": "Point", "coordinates": [ -0.5927447, 51.2202402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92441664" }, "bbox": [ -0.6824075, 51.1935998, -0.6824075, 51.1935998 ], "geometry": { "type": "Point", "coordinates": [ -0.6824075, 51.1935998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91470459" }, "bbox": [ -0.6977215, 51.220284, -0.6977215, 51.220284 ], "geometry": { "type": "Point", "coordinates": [ -0.6977215, 51.220284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97335732" }, "bbox": [ -0.6081826, 51.090894, -0.6081826, 51.090894 ], "geometry": { "type": "Point", "coordinates": [ -0.6081826, 51.090894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85375463" }, "bbox": [ -0.7787172, 51.1317018, -0.7787172, 51.1317018 ], "geometry": { "type": "Point", "coordinates": [ -0.7787172, 51.1317018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93492556" }, "bbox": [ -0.6654189, 51.2373955, -0.6654189, 51.2373955 ], "geometry": { "type": "Point", "coordinates": [ -0.6654189, 51.2373955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399643" }, "bbox": [ -0.615165, 51.1460168, -0.615165, 51.1460168 ], "geometry": { "type": "Point", "coordinates": [ -0.615165, 51.1460168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89460483" }, "bbox": [ -0.7265963, 51.2136757, -0.7265963, 51.2136757 ], "geometry": { "type": "Point", "coordinates": [ -0.7265963, 51.2136757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82398281" }, "bbox": [ -0.8173341, 51.1515618, -0.8173341, 51.1515618 ], "geometry": { "type": "Point", "coordinates": [ -0.8173341, 51.1515618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89387919" }, "bbox": [ -0.7179094, 51.1359828, -0.7179094, 51.1359828 ], "geometry": { "type": "Point", "coordinates": [ -0.7179094, 51.1359828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98414878" }, "bbox": [ -0.5928329, 51.1668973, -0.5928329, 51.1668973 ], "geometry": { "type": "Point", "coordinates": [ -0.5928329, 51.1668973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82465535" }, "bbox": [ -0.8195222, 51.2102321, -0.8195222, 51.2102321 ], "geometry": { "type": "Point", "coordinates": [ -0.8195222, 51.2102321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92368923" }, "bbox": [ -0.6745703, 51.1178296, -0.6745703, 51.1178296 ], "geometry": { "type": "Point", "coordinates": [ -0.6745703, 51.1178296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94504908" }, "bbox": [ -0.6476144, 51.2421311, -0.6476144, 51.2421311 ], "geometry": { "type": "Point", "coordinates": [ -0.6476144, 51.2421311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98420602" }, "bbox": [ -0.598674, 51.1690861, -0.598674, 51.1690861 ], "geometry": { "type": "Point", "coordinates": [ -0.598674, 51.1690861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88465171" }, "bbox": [ -0.7341627, 51.2127193, -0.7341627, 51.2127193 ], "geometry": { "type": "Point", "coordinates": [ -0.7341627, 51.2127193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88389143" }, "bbox": [ -0.7305999, 51.1382501, -0.7305999, 51.1382501 ], "geometry": { "type": "Point", "coordinates": [ -0.7305999, 51.1382501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432886" }, "bbox": [ -0.6806836, 51.1864188, -0.6806836, 51.1864188 ], "geometry": { "type": "Point", "coordinates": [ -0.6806836, 51.1864188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86415272" }, "bbox": [ -0.763901, 51.1682016, -0.763901, 51.1682016 ], "geometry": { "type": "Point", "coordinates": [ -0.763901, 51.1682016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95350463" }, "bbox": [ -0.6437041, 51.1120697, -0.6437041, 51.1120697 ], "geometry": { "type": "Point", "coordinates": [ -0.6437041, 51.1120697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93338286" }, "bbox": [ -0.6616606, 51.0965052, -0.6616606, 51.0965052 ], "geometry": { "type": "Point", "coordinates": [ -0.6616606, 51.0965052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98384540" }, "bbox": [ -0.5946402, 51.13649, -0.5946402, 51.13649 ], "geometry": { "type": "Point", "coordinates": [ -0.5946402, 51.13649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90481817" }, "bbox": [ -0.7099109, 51.2256607, -0.7099109, 51.2256607 ], "geometry": { "type": "Point", "coordinates": [ -0.7099109, 51.2256607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90457778" }, "bbox": [ -0.7019259, 51.2040946, -0.7019259, 51.2040946 ], "geometry": { "type": "Point", "coordinates": [ -0.7019259, 51.2040946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98346252" }, "bbox": [ -0.5928824, 51.1015283, -0.5928824, 51.1015283 ], "geometry": { "type": "Point", "coordinates": [ -0.5928824, 51.1015283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95499365" }, "bbox": [ -0.6270163, 51.2378632, -0.6270163, 51.2378632 ], "geometry": { "type": "Point", "coordinates": [ -0.6270163, 51.2378632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90442634" }, "bbox": [ -0.709737, 51.1910101, -0.709737, 51.1910101 ], "geometry": { "type": "Point", "coordinates": [ -0.709737, 51.1910101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91380075" }, "bbox": [ -0.7005485, 51.140889, -0.7005485, 51.140889 ], "geometry": { "type": "Point", "coordinates": [ -0.7005485, 51.140889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388975" }, "bbox": [ -0.6878516, 51.140709, -0.6878516, 51.140709 ], "geometry": { "type": "Point", "coordinates": [ -0.6878516, 51.140709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98476901" }, "bbox": [ -0.588616, 51.2136701, -0.588616, 51.2136701 ], "geometry": { "type": "Point", "coordinates": [ -0.588616, 51.2136701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91421174" }, "bbox": [ -0.6980514, 51.1765992, -0.6980514, 51.1765992 ], "geometry": { "type": "Point", "coordinates": [ -0.6980514, 51.1765992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87332327" }, "bbox": [ -0.7549205, 51.0920814, -0.7549205, 51.0920814 ], "geometry": { "type": "Point", "coordinates": [ -0.7549205, 51.0920814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90485314" }, "bbox": [ -0.7049051, 51.2253349, -0.7049051, 51.2253349 ], "geometry": { "type": "Point", "coordinates": [ -0.7049051, 51.2253349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94576277" }, "bbox": [ -0.643799, 51.3112619, -0.643799, 51.3112619 ], "geometry": { "type": "Point", "coordinates": [ -0.643799, 51.3112619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98391537" }, "bbox": [ -0.5982348, 51.1452678, -0.5982348, 51.1452678 ], "geometry": { "type": "Point", "coordinates": [ -0.5982348, 51.1452678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92506350" }, "bbox": [ -0.6742604, 51.2461289, -0.6742604, 51.2461289 ], "geometry": { "type": "Point", "coordinates": [ -0.6742604, 51.2461289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521686" }, "bbox": [ -0.6234118, 51.2668463, -0.6234118, 51.2668463 ], "geometry": { "type": "Point", "coordinates": [ -0.6234118, 51.2668463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88389071" }, "bbox": [ -0.7305656, 51.140772, -0.7305656, 51.140772 ], "geometry": { "type": "Point", "coordinates": [ -0.7305656, 51.140772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93602946" }, "bbox": [ -0.6621465, 51.3355519, -0.6621465, 51.3355519 ], "geometry": { "type": "Point", "coordinates": [ -0.6621465, 51.3355519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93605137" }, "bbox": [ -0.6575258, 51.3348413, -0.6575258, 51.3348413 ], "geometry": { "type": "Point", "coordinates": [ -0.6575258, 51.3348413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82453293" }, "bbox": [ -0.8232793, 51.2067641, -0.8232793, 51.2067641 ], "geometry": { "type": "Point", "coordinates": [ -0.8232793, 51.2067641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86372987" }, "bbox": [ -0.768105, 51.1336176, -0.768105, 51.1336176 ], "geometry": { "type": "Point", "coordinates": [ -0.768105, 51.1336176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92415797" }, "bbox": [ -0.6773709, 51.169413, -0.6773709, 51.169413 ], "geometry": { "type": "Point", "coordinates": [ -0.6773709, 51.169413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423973" }, "bbox": [ -0.822692, 51.1779627, -0.822692, 51.1779627 ], "geometry": { "type": "Point", "coordinates": [ -0.822692, 51.1779627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93519940" }, "bbox": [ -0.6544754, 51.2541028, -0.6544754, 51.2541028 ], "geometry": { "type": "Point", "coordinates": [ -0.6544754, 51.2541028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86377598" }, "bbox": [ -0.7614834, 51.1344731, -0.7614834, 51.1344731 ], "geometry": { "type": "Point", "coordinates": [ -0.7614834, 51.1344731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93361234" }, "bbox": [ -0.6707599, 51.1188172, -0.6707599, 51.1188172 ], "geometry": { "type": "Point", "coordinates": [ -0.6707599, 51.1188172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93355537" }, "bbox": [ -0.6650901, 51.1100455, -0.6650901, 51.1100455 ], "geometry": { "type": "Point", "coordinates": [ -0.6650901, 51.1100455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97416239" }, "bbox": [ -0.6052596, 51.1634934, -0.6052596, 51.1634934 ], "geometry": { "type": "Point", "coordinates": [ -0.6052596, 51.1634934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93339148" }, "bbox": [ -0.66017, 51.0930241, -0.66017, 51.0930241 ], "geometry": { "type": "Point", "coordinates": [ -0.66017, 51.0930241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443915" }, "bbox": [ -0.6935944, 51.1893291, -0.6935944, 51.1893291 ], "geometry": { "type": "Point", "coordinates": [ -0.6935944, 51.1893291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99372399" }, "bbox": [ -0.5832145, 51.1325944, -0.5832145, 51.1325944 ], "geometry": { "type": "Point", "coordinates": [ -0.5832145, 51.1325944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98415464" }, "bbox": [ -0.5920346, 51.1655376, -0.5920346, 51.1655376 ], "geometry": { "type": "Point", "coordinates": [ -0.5920346, 51.1655376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82412887" }, "bbox": [ -0.824461, 51.1702586, -0.824461, 51.1702586 ], "geometry": { "type": "Point", "coordinates": [ -0.824461, 51.1702586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93424235" }, "bbox": [ -0.6649282, 51.1727613, -0.6649282, 51.1727613 ], "geometry": { "type": "Point", "coordinates": [ -0.6649282, 51.1727613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89373683" }, "bbox": [ -0.7241155, 51.132824, -0.7241155, 51.132824 ], "geometry": { "type": "Point", "coordinates": [ -0.7241155, 51.132824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90435907" }, "bbox": [ -0.7054432, 51.1797484, -0.7054432, 51.1797484 ], "geometry": { "type": "Point", "coordinates": [ -0.7054432, 51.1797484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95572818" }, "bbox": [ -0.6327221, 51.3059466, -0.6327221, 51.3059466 ], "geometry": { "type": "Point", "coordinates": [ -0.6327221, 51.3059466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87335285" }, "bbox": [ -0.7514052, 51.0973252, -0.7514052, 51.0973252 ], "geometry": { "type": "Point", "coordinates": [ -0.7514052, 51.0973252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90488358" }, "bbox": [ -0.7003427, 51.2293186, -0.7003427, 51.2293186 ], "geometry": { "type": "Point", "coordinates": [ -0.7003427, 51.2293186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89385076" }, "bbox": [ -0.7219486, 51.1411561, -0.7219486, 51.1411561 ], "geometry": { "type": "Point", "coordinates": [ -0.7219486, 51.1411561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89383113" }, "bbox": [ -0.7247367, 51.1354868, -0.7247367, 51.1354868 ], "geometry": { "type": "Point", "coordinates": [ -0.7247367, 51.1354868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82411588" }, "bbox": [ -0.8264631, 51.1702622, -0.8264631, 51.1702622 ], "geometry": { "type": "Point", "coordinates": [ -0.8264631, 51.1702622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95351157" }, "bbox": [ -0.6427009, 51.1114672, -0.6427009, 51.1114672 ], "geometry": { "type": "Point", "coordinates": [ -0.6427009, 51.1114672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443016" }, "bbox": [ -0.694814, 51.1894669, -0.694814, 51.1894669 ], "geometry": { "type": "Point", "coordinates": [ -0.694814, 51.1894669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92383534" }, "bbox": [ -0.6813495, 51.1367871, -0.6813495, 51.1367871 ], "geometry": { "type": "Point", "coordinates": [ -0.6813495, 51.1367871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85459728" }, "bbox": [ -0.7707368, 51.2004356, -0.7707368, 51.2004356 ], "geometry": { "type": "Point", "coordinates": [ -0.7707368, 51.2004356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91381840" }, "bbox": [ -0.6988879, 51.1375984, -0.6988879, 51.1375984 ], "geometry": { "type": "Point", "coordinates": [ -0.6988879, 51.1375984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96491774" }, "bbox": [ -0.6236703, 51.2386012, -0.6236703, 51.2386012 ], "geometry": { "type": "Point", "coordinates": [ -0.6236703, 51.2386012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93363356" }, "bbox": [ -0.6680956, 51.1206932, -0.6680956, 51.1206932 ], "geometry": { "type": "Point", "coordinates": [ -0.6680956, 51.1206932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99723877" }, "bbox": [ -0.5711963, 51.4451034, -0.5711963, 51.4451034 ], "geometry": { "type": "Point", "coordinates": [ -0.5711963, 51.4451034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81456248" }, "bbox": [ -0.8331729, 51.2025819, -0.8331729, 51.2025819 ], "geometry": { "type": "Point", "coordinates": [ -0.8331729, 51.2025819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93600664" }, "bbox": [ -0.6654179, 51.3372614, -0.6654179, 51.3372614 ], "geometry": { "type": "Point", "coordinates": [ -0.6654179, 51.3372614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85377775" }, "bbox": [ -0.7756012, 51.132632, -0.7756012, 51.132632 ], "geometry": { "type": "Point", "coordinates": [ -0.7756012, 51.132632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90474028" }, "bbox": [ -0.7068822, 51.2175975, -0.7068822, 51.2175975 ], "geometry": { "type": "Point", "coordinates": [ -0.7068822, 51.2175975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91488510" }, "bbox": [ -0.6861658, 51.2246968, -0.6861658, 51.2246968 ], "geometry": { "type": "Point", "coordinates": [ -0.6861658, 51.2246968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90479749" }, "bbox": [ -0.6993743, 51.2197598, -0.6993743, 51.2197598 ], "geometry": { "type": "Point", "coordinates": [ -0.6993743, 51.2197598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87420489" }, "bbox": [ -0.7559685, 51.178618, -0.7559685, 51.178618 ], "geometry": { "type": "Point", "coordinates": [ -0.7559685, 51.178618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96510239" }, "bbox": [ -0.6254872, 51.253647, -0.6254872, 51.253647 ], "geometry": { "type": "Point", "coordinates": [ -0.6254872, 51.253647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90464411" }, "bbox": [ -0.7066819, 51.2070286, -0.7066819, 51.2070286 ], "geometry": { "type": "Point", "coordinates": [ -0.7066819, 51.2070286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94367998" }, "bbox": [ -0.6450426, 51.1239015, -0.6450426, 51.1239015 ], "geometry": { "type": "Point", "coordinates": [ -0.6450426, 51.1239015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82392465" }, "bbox": [ -0.8254658, 51.1502888, -0.8254658, 51.1502888 ], "geometry": { "type": "Point", "coordinates": [ -0.8254658, 51.1502888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96461110" }, "bbox": [ -0.6254767, 51.2060362, -0.6254767, 51.2060362 ], "geometry": { "type": "Point", "coordinates": [ -0.6254767, 51.2060362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93425385" }, "bbox": [ -0.6633111, 51.177242, -0.6633111, 51.177242 ], "geometry": { "type": "Point", "coordinates": [ -0.6633111, 51.177242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95515413" }, "bbox": [ -0.6324125, 51.2513971, -0.6324125, 51.2513971 ], "geometry": { "type": "Point", "coordinates": [ -0.6324125, 51.2513971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94446307" }, "bbox": [ -0.6472726, 51.188087, -0.6472726, 51.188087 ], "geometry": { "type": "Point", "coordinates": [ -0.6472726, 51.188087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520897" }, "bbox": [ -0.6241722, 51.2678326, -0.6241722, 51.2678326 ], "geometry": { "type": "Point", "coordinates": [ -0.6241722, 51.2678326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90488448" }, "bbox": [ -0.6997673, 51.2283059, -0.6997673, 51.2283059 ], "geometry": { "type": "Point", "coordinates": [ -0.6997673, 51.2283059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89388918" }, "bbox": [ -0.7165171, 51.1358455, -0.7165171, 51.1358455 ], "geometry": { "type": "Point", "coordinates": [ -0.7165171, 51.1358455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91397811" }, "bbox": [ -0.6893139, 51.1439301, -0.6893139, 51.1439301 ], "geometry": { "type": "Point", "coordinates": [ -0.6893139, 51.1439301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94629379" }, "bbox": [ -0.6380447, 51.3560632, -0.6380447, 51.3560632 ], "geometry": { "type": "Point", "coordinates": [ -0.6380447, 51.3560632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91519556" }, "bbox": [ -0.6836799, 51.2558865, -0.6836799, 51.2558865 ], "geometry": { "type": "Point", "coordinates": [ -0.6836799, 51.2558865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93357035" }, "bbox": [ -0.6629109, 51.1099502, -0.6629109, 51.1099502 ], "geometry": { "type": "Point", "coordinates": [ -0.6629109, 51.1099502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99544776" }, "bbox": [ -0.5750365, 51.2833775, -0.5750365, 51.2833775 ], "geometry": { "type": "Point", "coordinates": [ -0.5750365, 51.2833775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95498181" }, "bbox": [ -0.6291536, 51.2394603, -0.6291536, 51.2394603 ], "geometry": { "type": "Point", "coordinates": [ -0.6291536, 51.2394603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82487633" }, "bbox": [ -0.8160903, 51.2282849, -0.8160903, 51.2282849 ], "geometry": { "type": "Point", "coordinates": [ -0.8160903, 51.2282849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96467252" }, "bbox": [ -0.6169799, 51.2098091, -0.6169799, 51.2098091 ], "geometry": { "type": "Point", "coordinates": [ -0.6169799, 51.2098091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85374248" }, "bbox": [ -0.7806892, 51.1303443, -0.7806892, 51.1303443 ], "geometry": { "type": "Point", "coordinates": [ -0.7806892, 51.1303443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98390126" }, "bbox": [ -0.6001834, 51.1443486, -0.6001834, 51.1443486 ], "geometry": { "type": "Point", "coordinates": [ -0.6001834, 51.1443486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82481763" }, "bbox": [ -0.825504, 51.2306405, -0.825504, 51.2306405 ], "geometry": { "type": "Point", "coordinates": [ -0.825504, 51.2306405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98465498" }, "bbox": [ -0.5902345, 51.2134825, -0.5902345, 51.2134825 ], "geometry": { "type": "Point", "coordinates": [ -0.5902345, 51.2134825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99548279" }, "bbox": [ -0.5700941, 51.2835659, -0.5700941, 51.2835659 ], "geometry": { "type": "Point", "coordinates": [ -0.5700941, 51.2835659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90363846" }, "bbox": [ -0.7099711, 51.1203637, -0.7099711, 51.1203637 ], "geometry": { "type": "Point", "coordinates": [ -0.7099711, 51.1203637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92372377" }, "bbox": [ -0.6831146, 51.1319421, -0.6831146, 51.1319421 ], "geometry": { "type": "Point", "coordinates": [ -0.6831146, 51.1319421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92428909" }, "bbox": [ -0.6725711, 51.1705505, -0.6725711, 51.1705505 ], "geometry": { "type": "Point", "coordinates": [ -0.6725711, 51.1705505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88388317" }, "bbox": [ -0.7317446, 51.1359155, -0.7317446, 51.1359155 ], "geometry": { "type": "Point", "coordinates": [ -0.7317446, 51.1359155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94503285" }, "bbox": [ -0.6498707, 51.2490466, -0.6498707, 51.2490466 ], "geometry": { "type": "Point", "coordinates": [ -0.6498707, 51.2490466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92444807" }, "bbox": [ -0.6781052, 51.1883857, -0.6781052, 51.1883857 ], "geometry": { "type": "Point", "coordinates": [ -0.6781052, 51.1883857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85377172" }, "bbox": [ -0.7763736, 51.1323886, -0.7763736, 51.1323886 ], "geometry": { "type": "Point", "coordinates": [ -0.7763736, 51.1323886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89322722" }, "bbox": [ -0.7269288, 51.0823765, -0.7269288, 51.0823765 ], "geometry": { "type": "Point", "coordinates": [ -0.7269288, 51.0823765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98473080" }, "bbox": [ -0.5936654, 51.2209453, -0.5936654, 51.2209453 ], "geometry": { "type": "Point", "coordinates": [ -0.5936654, 51.2209453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91494185" }, "bbox": [ -0.6917257, 51.2407123, -0.6917257, 51.2407123 ], "geometry": { "type": "Point", "coordinates": [ -0.6917257, 51.2407123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537278" }, "bbox": [ -0.6147479, 51.2750559, -0.6147479, 51.2750559 ], "geometry": { "type": "Point", "coordinates": [ -0.6147479, 51.2750559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82464506" }, "bbox": [ -0.8210539, 51.2078777, -0.8210539, 51.2078777 ], "geometry": { "type": "Point", "coordinates": [ -0.8210539, 51.2078777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97358949" }, "bbox": [ -0.6029661, 51.1103229, -0.6029661, 51.1103229 ], "geometry": { "type": "Point", "coordinates": [ -0.6029661, 51.1103229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90381396" }, "bbox": [ -0.712784, 51.1432422, -0.712784, 51.1432422 ], "geometry": { "type": "Point", "coordinates": [ -0.712784, 51.1432422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93491024" }, "bbox": [ -0.6676293, 51.2347249, -0.6676293, 51.2347249 ], "geometry": { "type": "Point", "coordinates": [ -0.6676293, 51.2347249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88386360" }, "bbox": [ -0.7345432, 51.1398532, -0.7345432, 51.1398532 ], "geometry": { "type": "Point", "coordinates": [ -0.7345432, 51.1398532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96427004" }, "bbox": [ -0.6184814, 51.169494, -0.6184814, 51.169494 ], "geometry": { "type": "Point", "coordinates": [ -0.6184814, 51.169494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96511677" }, "bbox": [ -0.6232932, 51.2570705, -0.6232932, 51.2570705 ], "geometry": { "type": "Point", "coordinates": [ -0.6232932, 51.2570705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94561719" }, "bbox": [ -0.65059, 51.2971579, -0.65059, 51.2971579 ], "geometry": { "type": "Point", "coordinates": [ -0.65059, 51.2971579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89476311" }, "bbox": [ -0.718064, 51.2162832, -0.718064, 51.2162832 ], "geometry": { "type": "Point", "coordinates": [ -0.718064, 51.2162832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93605244" }, "bbox": [ -0.6582333, 51.3353646, -0.6582333, 51.3353646 ], "geometry": { "type": "Point", "coordinates": [ -0.6582333, 51.3353646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387342" }, "bbox": [ -0.7331386, 51.1382429, -0.7331386, 51.1382429 ], "geometry": { "type": "Point", "coordinates": [ -0.7331386, 51.1382429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98637436" }, "bbox": [ -0.5834772, 51.3610918, -0.5834772, 51.3610918 ], "geometry": { "type": "Point", "coordinates": [ -0.5834772, 51.3610918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85439516" }, "bbox": [ -0.7711684, 51.1812986, -0.7711684, 51.1812986 ], "geometry": { "type": "Point", "coordinates": [ -0.7711684, 51.1812986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96486080" }, "bbox": [ -0.6176591, 51.230253, -0.6176591, 51.230253 ], "geometry": { "type": "Point", "coordinates": [ -0.6176591, 51.230253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89385793" }, "bbox": [ -0.7207046, 51.1425564, -0.7207046, 51.1425564 ], "geometry": { "type": "Point", "coordinates": [ -0.7207046, 51.1425564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86388456" }, "bbox": [ -0.7601186, 51.1397629, -0.7601186, 51.1397629 ], "geometry": { "type": "Point", "coordinates": [ -0.7601186, 51.1397629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423273" }, "bbox": [ -0.8236852, 51.1779098, -0.8236852, 51.1779098 ], "geometry": { "type": "Point", "coordinates": [ -0.8236852, 51.1779098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94364275" }, "bbox": [ -0.6522362, 51.1223009, -0.6522362, 51.1223009 ], "geometry": { "type": "Point", "coordinates": [ -0.6522362, 51.1223009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89471599" }, "bbox": [ -0.7239393, 51.2238806, -0.7239393, 51.2238806 ], "geometry": { "type": "Point", "coordinates": [ -0.7239393, 51.2238806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91498151" }, "bbox": [ -0.6859854, 51.2374923, -0.6859854, 51.2374923 ], "geometry": { "type": "Point", "coordinates": [ -0.6859854, 51.2374923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89486481" }, "bbox": [ -0.7176143, 51.231236, -0.7176143, 51.231236 ], "geometry": { "type": "Point", "coordinates": [ -0.7176143, 51.231236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434082" }, "bbox": [ -0.6935437, 51.1863436, -0.6935437, 51.1863436 ], "geometry": { "type": "Point", "coordinates": [ -0.6935437, 51.1863436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87390203" }, "bbox": [ -0.7573042, 51.1442286, -0.7573042, 51.1442286 ], "geometry": { "type": "Point", "coordinates": [ -0.7573042, 51.1442286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96591506" }, "bbox": [ -0.6215524, 51.3225306, -0.6215524, 51.3225306 ], "geometry": { "type": "Point", "coordinates": [ -0.6215524, 51.3225306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459469" }, "bbox": [ -0.8286993, 51.2046221, -0.8286993, 51.2046221 ], "geometry": { "type": "Point", "coordinates": [ -0.8286993, 51.2046221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95580585" }, "bbox": [ -0.6374192, 51.3208263, -0.6374192, 51.3208263 ], "geometry": { "type": "Point", "coordinates": [ -0.6374192, 51.3208263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90462522" }, "bbox": [ -0.7094173, 51.2081003, -0.7094173, 51.2081003 ], "geometry": { "type": "Point", "coordinates": [ -0.7094173, 51.2081003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95615142" }, "bbox": [ -0.6299382, 51.3437735, -0.6299382, 51.3437735 ], "geometry": { "type": "Point", "coordinates": [ -0.6299382, 51.3437735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90392114" }, "bbox": [ -0.7116915, 51.1444145, -0.7116915, 51.1444145 ], "geometry": { "type": "Point", "coordinates": [ -0.7116915, 51.1444145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95596472" }, "bbox": [ -0.6286834, 51.3285381, -0.6286834, 51.3285381 ], "geometry": { "type": "Point", "coordinates": [ -0.6286834, 51.3285381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444004" }, "bbox": [ -0.6934855, 51.188317, -0.6934855, 51.188317 ], "geometry": { "type": "Point", "coordinates": [ -0.6934855, 51.188317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98377907" }, "bbox": [ -0.58981, 51.1244018, -0.58981, 51.1244018 ], "geometry": { "type": "Point", "coordinates": [ -0.58981, 51.1244018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90647008" }, "bbox": [ -0.6982697, 51.3685727, -0.6982697, 51.3685727 ], "geometry": { "type": "Point", "coordinates": [ -0.6982697, 51.3685727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90488478" }, "bbox": [ -0.7004332, 51.2309411, -0.7004332, 51.2309411 ], "geometry": { "type": "Point", "coordinates": [ -0.7004332, 51.2309411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90429096" }, "bbox": [ -0.7010545, 51.1786973, -0.7010545, 51.1786973 ], "geometry": { "type": "Point", "coordinates": [ -0.7010545, 51.1786973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98600115" }, "bbox": [ -0.5939647, 51.3322143, -0.5939647, 51.3322143 ], "geometry": { "type": "Point", "coordinates": [ -0.5939647, 51.3322143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520440" }, "bbox": [ -0.6252437, 51.2626462, -0.6252437, 51.2626462 ], "geometry": { "type": "Point", "coordinates": [ -0.6252437, 51.2626462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90347495" }, "bbox": [ -0.7053373, 51.1067265, -0.7053373, 51.1067265 ], "geometry": { "type": "Point", "coordinates": [ -0.7053373, 51.1067265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98489534" }, "bbox": [ -0.5842957, 51.2257703, -0.5842957, 51.2257703 ], "geometry": { "type": "Point", "coordinates": [ -0.5842957, 51.2257703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85374863" }, "bbox": [ -0.7797295, 51.1316577, -0.7797295, 51.1316577 ], "geometry": { "type": "Point", "coordinates": [ -0.7797295, 51.1316577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93350806" }, "bbox": [ -0.6718567, 51.1071828, -0.6718567, 51.1071828 ], "geometry": { "type": "Point", "coordinates": [ -0.6718567, 51.1071828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95367941" }, "bbox": [ -0.6327448, 51.1190309, -0.6327448, 51.1190309 ], "geometry": { "type": "Point", "coordinates": [ -0.6327448, 51.1190309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89381275" }, "bbox": [ -0.7274838, 51.141114, -0.7274838, 51.141114 ], "geometry": { "type": "Point", "coordinates": [ -0.7274838, 51.141114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97379963" }, "bbox": [ -0.6010283, 51.129593, -0.6010283, 51.129593 ], "geometry": { "type": "Point", "coordinates": [ -0.6010283, 51.129593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537340" }, "bbox": [ -0.6146672, 51.2716089, -0.6146672, 51.2716089 ], "geometry": { "type": "Point", "coordinates": [ -0.6146672, 51.2716089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423060" }, "bbox": [ -0.8235934, 51.1768718, -0.8235934, 51.1768718 ], "geometry": { "type": "Point", "coordinates": [ -0.8235934, 51.1768718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91430912" }, "bbox": [ -0.6982582, 51.180233, -0.6982582, 51.180233 ], "geometry": { "type": "Point", "coordinates": [ -0.6982582, 51.180233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93604849" }, "bbox": [ -0.6594561, 51.3358466, -0.6594561, 51.3358466 ], "geometry": { "type": "Point", "coordinates": [ -0.6594561, 51.3358466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537089" }, "bbox": [ -0.6150668, 51.275939, -0.6150668, 51.275939 ], "geometry": { "type": "Point", "coordinates": [ -0.6150668, 51.275939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94364981" }, "bbox": [ -0.6511849, 51.122821, -0.6511849, 51.122821 ], "geometry": { "type": "Point", "coordinates": [ -0.6511849, 51.122821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88383474" }, "bbox": [ -0.7384016, 51.1411599, -0.7384016, 51.1411599 ], "geometry": { "type": "Point", "coordinates": [ -0.7384016, 51.1411599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99388613" }, "bbox": [ -0.5756088, 51.1337304, -0.5756088, 51.1337304 ], "geometry": { "type": "Point", "coordinates": [ -0.5756088, 51.1337304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96523385" }, "bbox": [ -0.6206117, 51.2667569, -0.6206117, 51.2667569 ], "geometry": { "type": "Point", "coordinates": [ -0.6206117, 51.2667569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92349477" }, "bbox": [ -0.6739773, 51.1047359, -0.6739773, 51.1047359 ], "geometry": { "type": "Point", "coordinates": [ -0.6739773, 51.1047359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93452298" }, "bbox": [ -0.6669026, 51.2054549, -0.6669026, 51.2054549 ], "geometry": { "type": "Point", "coordinates": [ -0.6669026, 51.2054549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86374691" }, "bbox": [ -0.7655515, 51.1339916, -0.7655515, 51.1339916 ], "geometry": { "type": "Point", "coordinates": [ -0.7655515, 51.1339916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88467459" }, "bbox": [ -0.7308123, 51.2117366, -0.7308123, 51.2117366 ], "geometry": { "type": "Point", "coordinates": [ -0.7308123, 51.2117366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92518909" }, "bbox": [ -0.6704313, 51.2515113, -0.6704313, 51.2515113 ], "geometry": { "type": "Point", "coordinates": [ -0.6704313, 51.2515113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459883" }, "bbox": [ -0.8275955, 51.2058347, -0.8275955, 51.2058347 ], "geometry": { "type": "Point", "coordinates": [ -0.8275955, 51.2058347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95365385" }, "bbox": [ -0.636657, 51.123141, -0.636657, 51.123141 ], "geometry": { "type": "Point", "coordinates": [ -0.636657, 51.123141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83400945" }, "bbox": [ -0.8131931, 51.1572362, -0.8131931, 51.1572362 ], "geometry": { "type": "Point", "coordinates": [ -0.8131931, 51.1572362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93602826" }, "bbox": [ -0.6625177, 51.3338257, -0.6625177, 51.3338257 ], "geometry": { "type": "Point", "coordinates": [ -0.6625177, 51.3338257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94591819" }, "bbox": [ -0.6503275, 51.3237545, -0.6503275, 51.3237545 ], "geometry": { "type": "Point", "coordinates": [ -0.6503275, 51.3237545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86412880" }, "bbox": [ -0.7667571, 51.1688676, -0.7667571, 51.1688676 ], "geometry": { "type": "Point", "coordinates": [ -0.7667571, 51.1688676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91422752" }, "bbox": [ -0.6958163, 51.1747256, -0.6958163, 51.1747256 ], "geometry": { "type": "Point", "coordinates": [ -0.6958163, 51.1747256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96467019" }, "bbox": [ -0.6173256, 51.2066884, -0.6173256, 51.2066884 ], "geometry": { "type": "Point", "coordinates": [ -0.6173256, 51.2066884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98393449" }, "bbox": [ -0.5954936, 51.1462663, -0.5954936, 51.1462663 ], "geometry": { "type": "Point", "coordinates": [ -0.5954936, 51.1462663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86399107" }, "bbox": [ -0.7588414, 51.1443664, -0.7588414, 51.1443664 ], "geometry": { "type": "Point", "coordinates": [ -0.7588414, 51.1443664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97398805" }, "bbox": [ -0.6020249, 51.142252, -0.6020249, 51.142252 ], "geometry": { "type": "Point", "coordinates": [ -0.6020249, 51.142252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89489353" }, "bbox": [ -0.713329, 51.2288858, -0.713329, 51.2288858 ], "geometry": { "type": "Point", "coordinates": [ -0.713329, 51.2288858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99722878" }, "bbox": [ -0.572917, 51.4453086, -0.572917, 51.4453086 ], "geometry": { "type": "Point", "coordinates": [ -0.572917, 51.4453086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89386182" }, "bbox": [ -0.720424, 51.1416396, -0.720424, 51.1416396 ], "geometry": { "type": "Point", "coordinates": [ -0.720424, 51.1416396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92508860" }, "bbox": [ -0.6703684, 51.2459077, -0.6703684, 51.2459077 ], "geometry": { "type": "Point", "coordinates": [ -0.6703684, 51.2459077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92470397" }, "bbox": [ -0.6836608, 51.2236347, -0.6836608, 51.2236347 ], "geometry": { "type": "Point", "coordinates": [ -0.6836608, 51.2236347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86376352" }, "bbox": [ -0.7632379, 51.1304257, -0.7632379, 51.1304257 ], "geometry": { "type": "Point", "coordinates": [ -0.7632379, 51.1304257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93499310" }, "bbox": [ -0.655942, 51.2339817, -0.655942, 51.2339817 ], "geometry": { "type": "Point", "coordinates": [ -0.655942, 51.2339817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89427343" }, "bbox": [ -0.7177601, 51.1741035, -0.7177601, 51.1741035 ], "geometry": { "type": "Point", "coordinates": [ -0.7177601, 51.1741035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95596424" }, "bbox": [ -0.6288567, 51.3242199, -0.6288567, 51.3242199 ], "geometry": { "type": "Point", "coordinates": [ -0.6288567, 51.3242199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84425301" }, "bbox": [ -0.792349, 51.1710226, -0.792349, 51.1710226 ], "geometry": { "type": "Point", "coordinates": [ -0.792349, 51.1710226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99396844" }, "bbox": [ -0.5759676, 51.1458433, -0.5759676, 51.1458433 ], "geometry": { "type": "Point", "coordinates": [ -0.5759676, 51.1458433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87440121" }, "bbox": [ -0.7561383, 51.1904963, -0.7561383, 51.1904963 ], "geometry": { "type": "Point", "coordinates": [ -0.7561383, 51.1904963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86404862" }, "bbox": [ -0.764808, 51.1585103, -0.764808, 51.1585103 ], "geometry": { "type": "Point", "coordinates": [ -0.764808, 51.1585103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95519993" }, "bbox": [ -0.625708, 51.2585231, -0.625708, 51.2585231 ], "geometry": { "type": "Point", "coordinates": [ -0.625708, 51.2585231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91438393" }, "bbox": [ -0.6878402, 51.1868719, -0.6878402, 51.1868719 ], "geometry": { "type": "Point", "coordinates": [ -0.6878402, 51.1868719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90387884" }, "bbox": [ -0.7041803, 51.1411442, -0.7041803, 51.1411442 ], "geometry": { "type": "Point", "coordinates": [ -0.7041803, 51.1411442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82391454" }, "bbox": [ -0.8272871, 51.1492098, -0.8272871, 51.1492098 ], "geometry": { "type": "Point", "coordinates": [ -0.8272871, 51.1492098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94352917" }, "bbox": [ -0.6549747, 51.1079002, -0.6549747, 51.1079002 ], "geometry": { "type": "Point", "coordinates": [ -0.6549747, 51.1079002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25444870" }, "bbox": [ -0.2057079, 51.1877601, -0.2057079, 51.1877601 ], "geometry": { "type": "Point", "coordinates": [ -0.2057079, 51.1877601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32442667" }, "bbox": [ -0.1089368, 51.1859869, -0.1089368, 51.1859869 ], "geometry": { "type": "Point", "coordinates": [ -0.1089368, 51.1859869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12536361" }, "bbox": [ -0.3871095, 51.2705, -0.3871095, 51.2705 ], "geometry": { "type": "Point", "coordinates": [ -0.3871095, 51.2705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13522276" }, "bbox": [ -0.378763, 51.2629127, -0.378763, 51.2629127 ], "geometry": { "type": "Point", "coordinates": [ -0.378763, 51.2629127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23501037" }, "bbox": [ -0.2377244, 51.239096, -0.2377244, 51.239096 ], "geometry": { "type": "Point", "coordinates": [ -0.2377244, 51.239096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21514310" }, "bbox": [ -0.2615996, 51.2461497, -0.2615996, 51.2461497 ], "geometry": { "type": "Point", "coordinates": [ -0.2615996, 51.2461497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07686367" }, "bbox": [ -0.4537205, 51.4067104, -0.4537205, 51.4067104 ], "geometry": { "type": "Point", "coordinates": [ -0.4537205, 51.4067104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34420283" }, "bbox": [ -0.0844173, 51.169122, -0.0844173, 51.169122 ], "geometry": { "type": "Point", "coordinates": [ -0.0844173, 51.169122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34421879" }, "bbox": [ -0.0822516, 51.1686513, -0.0822516, 51.1686513 ], "geometry": { "type": "Point", "coordinates": [ -0.0822516, 51.1686513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11552114" }, "bbox": [ -0.4071301, 51.2847778, -0.4071301, 51.2847778 ], "geometry": { "type": "Point", "coordinates": [ -0.4071301, 51.2847778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11553669" }, "bbox": [ -0.4043414, 51.289596, -0.4043414, 51.289596 ], "geometry": { "type": "Point", "coordinates": [ -0.4043414, 51.289596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11543799" }, "bbox": [ -0.4044541, 51.2832494, -0.4044541, 51.2832494 ], "geometry": { "type": "Point", "coordinates": [ -0.4044541, 51.2832494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03345688" }, "bbox": [ -0.5224438, 51.1036446, -0.5224438, 51.1036446 ], "geometry": { "type": "Point", "coordinates": [ -0.5224438, 51.1036446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03352229" }, "bbox": [ -0.5268603, 51.1075374, -0.5268603, 51.1075374 ], "geometry": { "type": "Point", "coordinates": [ -0.5268603, 51.1075374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02349475" }, "bbox": [ -0.5312949, 51.1025926, -0.5312949, 51.1025926 ], "geometry": { "type": "Point", "coordinates": [ -0.5312949, 51.1025926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17511473" }, "bbox": [ -0.3227424, 51.2527623, -0.3227424, 51.2527623 ], "geometry": { "type": "Point", "coordinates": [ -0.3227424, 51.2527623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17512036" }, "bbox": [ -0.3222146, 51.2494289, -0.3222146, 51.2494289 ], "geometry": { "type": "Point", "coordinates": [ -0.3222146, 51.2494289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17525523" }, "bbox": [ -0.3167119, 51.2570735, -0.3167119, 51.2570735 ], "geometry": { "type": "Point", "coordinates": [ -0.3167119, 51.2570735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17521515" }, "bbox": [ -0.322121, 51.2560826, -0.322121, 51.2560826 ], "geometry": { "type": "Point", "coordinates": [ -0.322121, 51.2560826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17525923" }, "bbox": [ -0.3150289, 51.2580069, -0.3150289, 51.2580069 ], "geometry": { "type": "Point", "coordinates": [ -0.3150289, 51.2580069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17529715" }, "bbox": [ -0.3110511, 51.256343, -0.3110511, 51.256343 ], "geometry": { "type": "Point", "coordinates": [ -0.3110511, 51.256343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17524423" }, "bbox": [ -0.3184661, 51.25724, -0.3184661, 51.25724 ], "geometry": { "type": "Point", "coordinates": [ -0.3184661, 51.25724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17529826" }, "bbox": [ -0.3102329, 51.2575171, -0.3102329, 51.2575171 ], "geometry": { "type": "Point", "coordinates": [ -0.3102329, 51.2575171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99502520" }, "bbox": [ -0.579422, 51.2424203, -0.579422, 51.2424203 ], "geometry": { "type": "Point", "coordinates": [ -0.579422, 51.2424203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99500098" }, "bbox": [ -0.5830055, 51.2494128, -0.5830055, 51.2494128 ], "geometry": { "type": "Point", "coordinates": [ -0.5830055, 51.2494128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99500787" }, "bbox": [ -0.5821884, 51.2485146, -0.5821884, 51.2485146 ], "geometry": { "type": "Point", "coordinates": [ -0.5821884, 51.2485146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04513141" }, "bbox": [ -0.5060218, 51.2521499, -0.5060218, 51.2521499 ], "geometry": { "type": "Point", "coordinates": [ -0.5060218, 51.2521499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38544637" }, "bbox": [ -0.016107, 51.27191, -0.016107, 51.27191 ], "geometry": { "type": "Point", "coordinates": [ -0.016107, 51.27191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36538151" }, "bbox": [ -0.0404303, 51.2644233, -0.0404303, 51.2644233 ], "geometry": { "type": "Point", "coordinates": [ -0.0404303, 51.2644233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99349954" }, "bbox": [ -0.5731912, 51.1014711, -0.5731912, 51.1014711 ], "geometry": { "type": "Point", "coordinates": [ -0.5731912, 51.1014711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449457" }, "bbox": [ -0.3282755, 51.1884228, -0.3282755, 51.1884228 ], "geometry": { "type": "Point", "coordinates": [ -0.3282755, 51.1884228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16447820" }, "bbox": [ -0.3304154, 51.1851186, -0.3304154, 51.1851186 ], "geometry": { "type": "Point", "coordinates": [ -0.3304154, 51.1851186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448962" }, "bbox": [ -0.3289715, 51.1887187, -0.3289715, 51.1887187 ], "geometry": { "type": "Point", "coordinates": [ -0.3289715, 51.1887187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448862" }, "bbox": [ -0.3289531, 51.1891033, -0.3289531, 51.1891033 ], "geometry": { "type": "Point", "coordinates": [ -0.3289531, 51.1891033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448758" }, "bbox": [ -0.3289356, 51.1884835, -0.3289356, 51.1884835 ], "geometry": { "type": "Point", "coordinates": [ -0.3289356, 51.1884835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449250" }, "bbox": [ -0.3283448, 51.1878077, -0.3283448, 51.1878077 ], "geometry": { "type": "Point", "coordinates": [ -0.3283448, 51.1878077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449155" }, "bbox": [ -0.3285355, 51.1882445, -0.3285355, 51.1882445 ], "geometry": { "type": "Point", "coordinates": [ -0.3285355, 51.1882445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449936" }, "bbox": [ -0.3273378, 51.1865824, -0.3273378, 51.1865824 ], "geometry": { "type": "Point", "coordinates": [ -0.3273378, 51.1865824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03561961" }, "bbox": [ -0.5214615, 51.2994083, -0.5214615, 51.2994083 ], "geometry": { "type": "Point", "coordinates": [ -0.5214615, 51.2994083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99468946" }, "bbox": [ -0.5716702, 51.208652, -0.5716702, 51.208652 ], "geometry": { "type": "Point", "coordinates": [ -0.5716702, 51.208652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99467033" }, "bbox": [ -0.5743608, 51.2075522, -0.5743608, 51.2075522 ], "geometry": { "type": "Point", "coordinates": [ -0.5743608, 51.2075522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98442258" }, "bbox": [ -0.5958261, 51.19201, -0.5958261, 51.19201 ], "geometry": { "type": "Point", "coordinates": [ -0.5958261, 51.19201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12459941" }, "bbox": [ -0.3841631, 51.1968316, -0.3841631, 51.1968316 ], "geometry": { "type": "Point", "coordinates": [ -0.3841631, 51.1968316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14442084" }, "bbox": [ -0.3669271, 51.1912485, -0.3669271, 51.1912485 ], "geometry": { "type": "Point", "coordinates": [ -0.3669271, 51.1912485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14437123" }, "bbox": [ -0.3603576, 51.1768756, -0.3603576, 51.1768756 ], "geometry": { "type": "Point", "coordinates": [ -0.3603576, 51.1768756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14434727" }, "bbox": [ -0.3633219, 51.1773112, -0.3633219, 51.1773112 ], "geometry": { "type": "Point", "coordinates": [ -0.3633219, 51.1773112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12560383" }, "bbox": [ -0.3943111, 51.2995158, -0.3943111, 51.2995158 ], "geometry": { "type": "Point", "coordinates": [ -0.3943111, 51.2995158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99415427" }, "bbox": [ -0.5777922, 51.1621239, -0.5777922, 51.1621239 ], "geometry": { "type": "Point", "coordinates": [ -0.5777922, 51.1621239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99414357" }, "bbox": [ -0.5790006, 51.1650268, -0.5790006, 51.1650268 ], "geometry": { "type": "Point", "coordinates": [ -0.5790006, 51.1650268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99413602" }, "bbox": [ -0.5799241, 51.160176, -0.5799241, 51.160176 ], "geometry": { "type": "Point", "coordinates": [ -0.5799241, 51.160176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99417013" }, "bbox": [ -0.5756907, 51.1606612, -0.5756907, 51.1606612 ], "geometry": { "type": "Point", "coordinates": [ -0.5756907, 51.1606612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99413734" }, "bbox": [ -0.5806053, 51.1628764, -0.5806053, 51.1628764 ], "geometry": { "type": "Point", "coordinates": [ -0.5806053, 51.1628764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88379939" }, "bbox": [ -0.729614, 51.1288596, -0.729614, 51.1288596 ], "geometry": { "type": "Point", "coordinates": [ -0.729614, 51.1288596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89374556" }, "bbox": [ -0.7229709, 51.1303566, -0.7229709, 51.1303566 ], "geometry": { "type": "Point", "coordinates": [ -0.7229709, 51.1303566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89372801" }, "bbox": [ -0.7256419, 51.1254677, -0.7256419, 51.1254677 ], "geometry": { "type": "Point", "coordinates": [ -0.7256419, 51.1254677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89370307" }, "bbox": [ -0.7290902, 51.1259292, -0.7290902, 51.1259292 ], "geometry": { "type": "Point", "coordinates": [ -0.7290902, 51.1259292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99347331" }, "bbox": [ -0.5771688, 51.099462, -0.5771688, 51.099462 ], "geometry": { "type": "Point", "coordinates": [ -0.5771688, 51.099462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15646825" }, "bbox": [ -0.3409245, 51.3656068, -0.3409245, 51.3656068 ], "geometry": { "type": "Point", "coordinates": [ -0.3409245, 51.3656068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15524418" }, "bbox": [ -0.3470364, 51.257163, -0.3470364, 51.257163 ], "geometry": { "type": "Point", "coordinates": [ -0.3470364, 51.257163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13528434" }, "bbox": [ -0.3693128, 51.2588139, -0.3693128, 51.2588139 ], "geometry": { "type": "Point", "coordinates": [ -0.3693128, 51.2588139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14515389" }, "bbox": [ -0.3606496, 51.2546342, -0.3606496, 51.2546342 ], "geometry": { "type": "Point", "coordinates": [ -0.3606496, 51.2546342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14513790" }, "bbox": [ -0.3624863, 51.254917, -0.3624863, 51.254917 ], "geometry": { "type": "Point", "coordinates": [ -0.3624863, 51.254917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14520324" }, "bbox": [ -0.3670941, 51.2579563, -0.3670941, 51.2579563 ], "geometry": { "type": "Point", "coordinates": [ -0.3670941, 51.2579563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14520314" }, "bbox": [ -0.3670737, 51.257094, -0.3670737, 51.257094 ], "geometry": { "type": "Point", "coordinates": [ -0.3670737, 51.257094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14524908" }, "bbox": [ -0.3610907, 51.2562968, -0.3610907, 51.2562968 ], "geometry": { "type": "Point", "coordinates": [ -0.3610907, 51.2562968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33417610" }, "bbox": [ -0.0888976, 51.1534587, -0.0888976, 51.1534587 ], "geometry": { "type": "Point", "coordinates": [ -0.0888976, 51.1534587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34422141" }, "bbox": [ -0.0821525, 51.1651334, -0.0821525, 51.1651334 ], "geometry": { "type": "Point", "coordinates": [ -0.0821525, 51.1651334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34422723" }, "bbox": [ -0.081147, 51.1633559, -0.081147, 51.1633559 ], "geometry": { "type": "Point", "coordinates": [ -0.081147, 51.1633559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13412768" }, "bbox": [ -0.3813374, 51.16315, -0.3813374, 51.16315 ], "geometry": { "type": "Point", "coordinates": [ -0.3813374, 51.16315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13413449" }, "bbox": [ -0.3805056, 51.1616423, -0.3805056, 51.1616423 ], "geometry": { "type": "Point", "coordinates": [ -0.3805056, 51.1616423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13424229" }, "bbox": [ -0.3790244, 51.1686901, -0.3790244, 51.1686901 ], "geometry": { "type": "Point", "coordinates": [ -0.3790244, 51.1686901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13421122" }, "bbox": [ -0.3838864, 51.167893, -0.3838864, 51.167893 ], "geometry": { "type": "Point", "coordinates": [ -0.3838864, 51.167893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13420202" }, "bbox": [ -0.3847084, 51.1662501, -0.3847084, 51.1662501 ], "geometry": { "type": "Point", "coordinates": [ -0.3847084, 51.1662501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13423755" }, "bbox": [ -0.3796777, 51.1710582, -0.3796777, 51.1710582 ], "geometry": { "type": "Point", "coordinates": [ -0.3796777, 51.1710582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13422688" }, "bbox": [ -0.381112, 51.1739998, -0.381112, 51.1739998 ], "geometry": { "type": "Point", "coordinates": [ -0.381112, 51.1739998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16464443" }, "bbox": [ -0.3345023, 51.2052753, -0.3345023, 51.2052753 ], "geometry": { "type": "Point", "coordinates": [ -0.3345023, 51.2052753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14517039" }, "bbox": [ -0.3580444, 51.2502538, -0.3580444, 51.2502538 ], "geometry": { "type": "Point", "coordinates": [ -0.3580444, 51.2502538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14514331" }, "bbox": [ -0.3623048, 51.2494506, -0.3623048, 51.2494506 ], "geometry": { "type": "Point", "coordinates": [ -0.3623048, 51.2494506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10505614" }, "bbox": [ -0.4176229, 51.2396745, -0.4176229, 51.2396745 ], "geometry": { "type": "Point", "coordinates": [ -0.4176229, 51.2396745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91314345" }, "bbox": [ -0.6956701, 51.074983, -0.6956701, 51.074983 ], "geometry": { "type": "Point", "coordinates": [ -0.6956701, 51.074983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91310162" }, "bbox": [ -0.7020635, 51.0766784, -0.7020635, 51.0766784 ], "geometry": { "type": "Point", "coordinates": [ -0.7020635, 51.0766784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91313154" }, "bbox": [ -0.6980351, 51.0759813, -0.6980351, 51.0759813 ], "geometry": { "type": "Point", "coordinates": [ -0.6980351, 51.0759813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20523640" }, "bbox": [ -0.2762772, 51.2580778, -0.2762772, 51.2580778 ], "geometry": { "type": "Point", "coordinates": [ -0.2762772, 51.2580778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20522856" }, "bbox": [ -0.2773457, 51.2596067, -0.2773457, 51.2596067 ], "geometry": { "type": "Point", "coordinates": [ -0.2773457, 51.2596067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05582320" }, "bbox": [ -0.490843, 51.3137169, -0.490843, 51.3137169 ], "geometry": { "type": "Point", "coordinates": [ -0.490843, 51.3137169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440415" }, "bbox": [ -0.3268172, 51.1846655, -0.3268172, 51.1846655 ], "geometry": { "type": "Point", "coordinates": [ -0.3268172, 51.1846655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06523914" }, "bbox": [ -0.4765489, 51.2585112, -0.4765489, 51.2585112 ], "geometry": { "type": "Point", "coordinates": [ -0.4765489, 51.2585112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06513769" }, "bbox": [ -0.4779744, 51.2545856, -0.4779744, 51.2545856 ], "geometry": { "type": "Point", "coordinates": [ -0.4779744, 51.2545856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06512060" }, "bbox": [ -0.4794576, 51.2542147, -0.4794576, 51.2542147 ], "geometry": { "type": "Point", "coordinates": [ -0.4794576, 51.2542147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515077" }, "bbox": [ -0.4749222, 51.2549507, -0.4749222, 51.2549507 ], "geometry": { "type": "Point", "coordinates": [ -0.4749222, 51.2549507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06512694" }, "bbox": [ -0.4787283, 51.2568251, -0.4787283, 51.2568251 ], "geometry": { "type": "Point", "coordinates": [ -0.4787283, 51.2568251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07520108" }, "bbox": [ -0.4679893, 51.257931, -0.4679893, 51.257931 ], "geometry": { "type": "Point", "coordinates": [ -0.4679893, 51.257931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20551002" }, "bbox": [ -0.2793207, 51.2816682, -0.2793207, 51.2816682 ], "geometry": { "type": "Point", "coordinates": [ -0.2793207, 51.2816682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20456873" }, "bbox": [ -0.2741127, 51.1980385, -0.2741127, 51.1980385 ], "geometry": { "type": "Point", "coordinates": [ -0.2741127, 51.1980385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20456779" }, "bbox": [ -0.2742153, 51.1985653, -0.2742153, 51.1985653 ], "geometry": { "type": "Point", "coordinates": [ -0.2742153, 51.1985653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20384918" }, "bbox": [ -0.279472, 51.1303561, -0.279472, 51.1303561 ], "geometry": { "type": "Point", "coordinates": [ -0.279472, 51.1303561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13514196" }, "bbox": [ -0.3761929, 51.2553058, -0.3761929, 51.2553058 ], "geometry": { "type": "Point", "coordinates": [ -0.3761929, 51.2553058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13521146" }, "bbox": [ -0.3807727, 51.2600247, -0.3807727, 51.2600247 ], "geometry": { "type": "Point", "coordinates": [ -0.3807727, 51.2600247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13523300" }, "bbox": [ -0.3775651, 51.2551714, -0.3775651, 51.2551714 ], "geometry": { "type": "Point", "coordinates": [ -0.3775651, 51.2551714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13523958" }, "bbox": [ -0.3762635, 51.2611439, -0.3762635, 51.2611439 ], "geometry": { "type": "Point", "coordinates": [ -0.3762635, 51.2611439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13522726" }, "bbox": [ -0.3781334, 51.2582968, -0.3781334, 51.2582968 ], "geometry": { "type": "Point", "coordinates": [ -0.3781334, 51.2582968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13521243" }, "bbox": [ -0.379966, 51.2600931, -0.379966, 51.2600931 ], "geometry": { "type": "Point", "coordinates": [ -0.379966, 51.2600931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13521926" }, "bbox": [ -0.378302, 51.2578818, -0.378302, 51.2578818 ], "geometry": { "type": "Point", "coordinates": [ -0.378302, 51.2578818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12529343" }, "bbox": [ -0.3825135, 51.2597811, -0.3825135, 51.2597811 ], "geometry": { "type": "Point", "coordinates": [ -0.3825135, 51.2597811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88344126" }, "bbox": [ -0.7385811, 51.1008476, -0.7385811, 51.1008476 ], "geometry": { "type": "Point", "coordinates": [ -0.7385811, 51.1008476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97364877" }, "bbox": [ -0.6090029, 51.1217559, -0.6090029, 51.1217559 ], "geometry": { "type": "Point", "coordinates": [ -0.6090029, 51.1217559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362360" }, "bbox": [ -0.6122067, 51.1204277, -0.6122067, 51.1204277 ], "geometry": { "type": "Point", "coordinates": [ -0.6122067, 51.1204277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362366" }, "bbox": [ -0.612165, 51.121123, -0.612165, 51.121123 ], "geometry": { "type": "Point", "coordinates": [ -0.612165, 51.121123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97363480" }, "bbox": [ -0.6105698, 51.1221029, -0.6105698, 51.1221029 ], "geometry": { "type": "Point", "coordinates": [ -0.6105698, 51.1221029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97363672" }, "bbox": [ -0.6103675, 51.1213683, -0.6103675, 51.1213683 ], "geometry": { "type": "Point", "coordinates": [ -0.6103675, 51.1213683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362362" }, "bbox": [ -0.6121843, 51.120709, -0.6121843, 51.120709 ], "geometry": { "type": "Point", "coordinates": [ -0.6121843, 51.120709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00720309" }, "bbox": [ -0.5622163, 51.4390676, -0.5622163, 51.4390676 ], "geometry": { "type": "Point", "coordinates": [ -0.5622163, 51.4390676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06647574" }, "bbox": [ -0.4692863, 51.3717043, -0.4692863, 51.3717043 ], "geometry": { "type": "Point", "coordinates": [ -0.4692863, 51.3717043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06642945" }, "bbox": [ -0.4740817, 51.3695022, -0.4740817, 51.3695022 ], "geometry": { "type": "Point", "coordinates": [ -0.4740817, 51.3695022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06658922" }, "bbox": [ -0.4655475, 51.3760996, -0.4655475, 51.3760996 ], "geometry": { "type": "Point", "coordinates": [ -0.4655475, 51.3760996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07652043" }, "bbox": [ -0.4611811, 51.3779791, -0.4611811, 51.3779791 ], "geometry": { "type": "Point", "coordinates": [ -0.4611811, 51.3779791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17518459" }, "bbox": [ -0.3131054, 51.2513631, -0.3131054, 51.2513631 ], "geometry": { "type": "Point", "coordinates": [ -0.3131054, 51.2513631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17519476" }, "bbox": [ -0.3109826, 51.2524237, -0.3109826, 51.2524237 ], "geometry": { "type": "Point", "coordinates": [ -0.3109826, 51.2524237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18512559" }, "bbox": [ -0.307131, 51.2511602, -0.307131, 51.2511602 ], "geometry": { "type": "Point", "coordinates": [ -0.307131, 51.2511602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18512580" }, "bbox": [ -0.307238, 51.2530159, -0.307238, 51.2530159 ], "geometry": { "type": "Point", "coordinates": [ -0.307238, 51.2530159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18513554" }, "bbox": [ -0.3053918, 51.2507784, -0.3053918, 51.2507784 ], "geometry": { "type": "Point", "coordinates": [ -0.3053918, 51.2507784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18512792" }, "bbox": [ -0.3066055, 51.2542632, -0.3066055, 51.2542632 ], "geometry": { "type": "Point", "coordinates": [ -0.3066055, 51.2542632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18512343" }, "bbox": [ -0.3073369, 51.2495292, -0.3073369, 51.2495292 ], "geometry": { "type": "Point", "coordinates": [ -0.3073369, 51.2495292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18515544" }, "bbox": [ -0.3027162, 51.2497658, -0.3027162, 51.2497658 ], "geometry": { "type": "Point", "coordinates": [ -0.3027162, 51.2497658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18511569" }, "bbox": [ -0.3083565, 51.2521309, -0.3083565, 51.2521309 ], "geometry": { "type": "Point", "coordinates": [ -0.3083565, 51.2521309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18513942" }, "bbox": [ -0.3048378, 51.2497726, -0.3048378, 51.2497726 ], "geometry": { "type": "Point", "coordinates": [ -0.3048378, 51.2497726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18514932" }, "bbox": [ -0.3037883, 51.2487092, -0.3037883, 51.2487092 ], "geometry": { "type": "Point", "coordinates": [ -0.3037883, 51.2487092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42525011" }, "bbox": [ 0.0403903, 51.2503518, 0.0403903, 51.2503518 ], "geometry": { "type": "Point", "coordinates": [ 0.0403903, 51.2503518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15543783" }, "bbox": [ -0.3476382, 51.2808882, -0.3476382, 51.2808882 ], "geometry": { "type": "Point", "coordinates": [ -0.3476382, 51.2808882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500887" }, "bbox": [ -0.6966119, 51.2495526, -0.6966119, 51.2495526 ], "geometry": { "type": "Point", "coordinates": [ -0.6966119, 51.2495526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10506604" }, "bbox": [ -0.4160542, 51.2388887, -0.4160542, 51.2388887 ], "geometry": { "type": "Point", "coordinates": [ -0.4160542, 51.2388887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22495212" }, "bbox": [ -0.2469197, 51.2281723, -0.2469197, 51.2281723 ], "geometry": { "type": "Point", "coordinates": [ -0.2469197, 51.2281723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19464005" }, "bbox": [ -0.2923407, 51.2012812, -0.2923407, 51.2012812 ], "geometry": { "type": "Point", "coordinates": [ -0.2923407, 51.2012812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85468701" }, "bbox": [ -0.7723258, 51.206707, -0.7723258, 51.206707 ], "geometry": { "type": "Point", "coordinates": [ -0.7723258, 51.206707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07413437" }, "bbox": [ -0.4658448, 51.1611278, -0.4658448, 51.1611278 ], "geometry": { "type": "Point", "coordinates": [ -0.4658448, 51.1611278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18425360" }, "bbox": [ -0.3060764, 51.1704117, -0.3060764, 51.1704117 ], "geometry": { "type": "Point", "coordinates": [ -0.3060764, 51.1704117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22442404" }, "bbox": [ -0.2523555, 51.1826364, -0.2523555, 51.1826364 ], "geometry": { "type": "Point", "coordinates": [ -0.2523555, 51.1826364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90387045" }, "bbox": [ -0.7049562, 51.1382024, -0.7049562, 51.1382024 ], "geometry": { "type": "Point", "coordinates": [ -0.7049562, 51.1382024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90386449" }, "bbox": [ -0.7058886, 51.1385845, -0.7058886, 51.1385845 ], "geometry": { "type": "Point", "coordinates": [ -0.7058886, 51.1385845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00346709" }, "bbox": [ -0.5634723, 51.0970641, -0.5634723, 51.0970641 ], "geometry": { "type": "Point", "coordinates": [ -0.5634723, 51.0970641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15568153" }, "bbox": [ -0.3403018, 51.2962602, -0.3403018, 51.2962602 ], "geometry": { "type": "Point", "coordinates": [ -0.3403018, 51.2962602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22536111" }, "bbox": [ -0.2439903, 51.2640412, -0.2439903, 51.2640412 ], "geometry": { "type": "Point", "coordinates": [ -0.2439903, 51.2640412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22536819" }, "bbox": [ -0.2430113, 51.2646395, -0.2430113, 51.2646395 ], "geometry": { "type": "Point", "coordinates": [ -0.2430113, 51.2646395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21528362" }, "bbox": [ -0.255214, 51.259694, -0.255214, 51.259694 ], "geometry": { "type": "Point", "coordinates": [ -0.255214, 51.259694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21538606" }, "bbox": [ -0.2548417, 51.2636792, -0.2548417, 51.2636792 ], "geometry": { "type": "Point", "coordinates": [ -0.2548417, 51.2636792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08560699" }, "bbox": [ -0.4515577, 51.3017597, -0.4515577, 51.3017597 ], "geometry": { "type": "Point", "coordinates": [ -0.4515577, 51.3017597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08560144" }, "bbox": [ -0.4522486, 51.2968627, -0.4522486, 51.2968627 ], "geometry": { "type": "Point", "coordinates": [ -0.4522486, 51.2968627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08561049" }, "bbox": [ -0.4516247, 51.297426, -0.4516247, 51.297426 ], "geometry": { "type": "Point", "coordinates": [ -0.4516247, 51.297426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11502139" }, "bbox": [ -0.4078439, 51.2419271, -0.4078439, 51.2419271 ], "geometry": { "type": "Point", "coordinates": [ -0.4078439, 51.2419271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20456697" }, "bbox": [ -0.2743432, 51.2002785, -0.2743432, 51.2002785 ], "geometry": { "type": "Point", "coordinates": [ -0.2743432, 51.2002785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438450" }, "bbox": [ -0.730472, 51.1837899, -0.730472, 51.1837899 ], "geometry": { "type": "Point", "coordinates": [ -0.730472, 51.1837899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438041" }, "bbox": [ -0.7311093, 51.1828922, -0.7311093, 51.1828922 ], "geometry": { "type": "Point", "coordinates": [ -0.7311093, 51.1828922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438682" }, "bbox": [ -0.7300067, 51.1865808, -0.7300067, 51.1865808 ], "geometry": { "type": "Point", "coordinates": [ -0.7300067, 51.1865808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10374775" }, "bbox": [ -0.4226489, 51.1283616, -0.4226489, 51.1283616 ], "geometry": { "type": "Point", "coordinates": [ -0.4226489, 51.1283616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90328393" }, "bbox": [ -0.7042678, 51.0884733, -0.7042678, 51.0884733 ], "geometry": { "type": "Point", "coordinates": [ -0.7042678, 51.0884733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90329077" }, "bbox": [ -0.7035352, 51.0870875, -0.7035352, 51.0870875 ], "geometry": { "type": "Point", "coordinates": [ -0.7035352, 51.0870875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91325782" }, "bbox": [ -0.6939778, 51.0873985, -0.6939778, 51.0873985 ], "geometry": { "type": "Point", "coordinates": [ -0.6939778, 51.0873985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91322061" }, "bbox": [ -0.6992138, 51.0856704, -0.6992138, 51.0856704 ], "geometry": { "type": "Point", "coordinates": [ -0.6992138, 51.0856704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91322474" }, "bbox": [ -0.6984766, 51.0867758, -0.6984766, 51.0867758 ], "geometry": { "type": "Point", "coordinates": [ -0.6984766, 51.0867758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91325067" }, "bbox": [ -0.6949616, 51.0862182, -0.6949616, 51.0862182 ], "geometry": { "type": "Point", "coordinates": [ -0.6949616, 51.0862182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91322864" }, "bbox": [ -0.6981923, 51.0858909, -0.6981923, 51.0858909 ], "geometry": { "type": "Point", "coordinates": [ -0.6981923, 51.0858909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91326475" }, "bbox": [ -0.6929361, 51.0867561, -0.6929361, 51.0867561 ], "geometry": { "type": "Point", "coordinates": [ -0.6929361, 51.0867561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91324078" }, "bbox": [ -0.6964075, 51.0871091, -0.6964075, 51.0871091 ], "geometry": { "type": "Point", "coordinates": [ -0.6964075, 51.0871091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93338154" }, "bbox": [ -0.661988, 51.0933938, -0.661988, 51.0933938 ], "geometry": { "type": "Point", "coordinates": [ -0.661988, 51.0933938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26435189" }, "bbox": [ -0.1908342, 51.1802892, -0.1908342, 51.1802892 ], "geometry": { "type": "Point", "coordinates": [ -0.1908342, 51.1802892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90439416" }, "bbox": [ -0.7004497, 51.1806783, -0.7004497, 51.1806783 ], "geometry": { "type": "Point", "coordinates": [ -0.7004497, 51.1806783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86387916" }, "bbox": [ -0.7608379, 51.1361454, -0.7608379, 51.1361454 ], "geometry": { "type": "Point", "coordinates": [ -0.7608379, 51.1361454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18493325" }, "bbox": [ -0.3066152, 51.2302268, -0.3066152, 51.2302268 ], "geometry": { "type": "Point", "coordinates": [ -0.3066152, 51.2302268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35466433" }, "bbox": [ -0.0598567, 51.2000146, -0.0598567, 51.2000146 ], "geometry": { "type": "Point", "coordinates": [ -0.0598567, 51.2000146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23493926" }, "bbox": [ -0.234214, 51.229279, -0.234214, 51.229279 ], "geometry": { "type": "Point", "coordinates": [ -0.234214, 51.229279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24518386" }, "bbox": [ -0.2120188, 51.2520466, -0.2120188, 51.2520466 ], "geometry": { "type": "Point", "coordinates": [ -0.2120188, 51.2520466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20620680" }, "bbox": [ -0.2772095, 51.3516458, -0.2772095, 51.3516458 ], "geometry": { "type": "Point", "coordinates": [ -0.2772095, 51.3516458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19628556" }, "bbox": [ -0.2803701, 51.3495699, -0.2803701, 51.3495699 ], "geometry": { "type": "Point", "coordinates": [ -0.2803701, 51.3495699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19629681" }, "bbox": [ -0.2789348, 51.3516487, -0.2789348, 51.3516487 ], "geometry": { "type": "Point", "coordinates": [ -0.2789348, 51.3516487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19629970" }, "bbox": [ -0.2783448, 51.3506713, -0.2783448, 51.3506713 ], "geometry": { "type": "Point", "coordinates": [ -0.2783448, 51.3506713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13510417" }, "bbox": [ -0.3816197, 51.248545, -0.3816197, 51.248545 ], "geometry": { "type": "Point", "coordinates": [ -0.3816197, 51.248545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511024" }, "bbox": [ -0.3808553, 51.2491732, -0.3808553, 51.2491732 ], "geometry": { "type": "Point", "coordinates": [ -0.3808553, 51.2491732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12363428" }, "bbox": [ -0.3965887, 51.1146801, -0.3965887, 51.1146801 ], "geometry": { "type": "Point", "coordinates": [ -0.3965887, 51.1146801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12360115" }, "bbox": [ -0.4012635, 51.1136669, -0.4012635, 51.1136669 ], "geometry": { "type": "Point", "coordinates": [ -0.4012635, 51.1136669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12363836" }, "bbox": [ -0.3959554, 51.1154955, -0.3959554, 51.1154955 ], "geometry": { "type": "Point", "coordinates": [ -0.3959554, 51.1154955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12350999" }, "bbox": [ -0.4005041, 51.1123093, -0.4005041, 51.1123093 ], "geometry": { "type": "Point", "coordinates": [ -0.4005041, 51.1123093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89485715" }, "bbox": [ -0.7184181, 51.2253808, -0.7184181, 51.2253808 ], "geometry": { "type": "Point", "coordinates": [ -0.7184181, 51.2253808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19406706" }, "bbox": [ -0.2906466, 51.1471349, -0.2906466, 51.1471349 ], "geometry": { "type": "Point", "coordinates": [ -0.2906466, 51.1471349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32530104" }, "bbox": [ -0.1100079, 51.2614519, -0.1100079, 51.2614519 ], "geometry": { "type": "Point", "coordinates": [ -0.1100079, 51.2614519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32521690" }, "bbox": [ -0.1072841, 51.2599341, -0.1072841, 51.2599341 ], "geometry": { "type": "Point", "coordinates": [ -0.1072841, 51.2599341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32524883" }, "bbox": [ -0.1030869, 51.2591897, -0.1030869, 51.2591897 ], "geometry": { "type": "Point", "coordinates": [ -0.1030869, 51.2591897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32523398" }, "bbox": [ -0.1051467, 51.2605987, -0.1051467, 51.2605987 ], "geometry": { "type": "Point", "coordinates": [ -0.1051467, 51.2605987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01324265" }, "bbox": [ -0.5533786, 51.0842537, -0.5533786, 51.0842537 ], "geometry": { "type": "Point", "coordinates": [ -0.5533786, 51.0842537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665331" }, "bbox": [ -0.5278381, 51.3866866, -0.5278381, 51.3866866 ], "geometry": { "type": "Point", "coordinates": [ -0.5278381, 51.3866866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14592304" }, "bbox": [ -0.3622313, 51.3190495, -0.3622313, 51.3190495 ], "geometry": { "type": "Point", "coordinates": [ -0.3622313, 51.3190495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482540" }, "bbox": [ -0.6953457, 51.227743, -0.6953457, 51.227743 ], "geometry": { "type": "Point", "coordinates": [ -0.6953457, 51.227743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482460" }, "bbox": [ -0.6946609, 51.2295266, -0.6946609, 51.2295266 ], "geometry": { "type": "Point", "coordinates": [ -0.6946609, 51.2295266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91481472" }, "bbox": [ -0.6959379, 51.2304217, -0.6959379, 51.2304217 ], "geometry": { "type": "Point", "coordinates": [ -0.6959379, 51.2304217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91483436" }, "bbox": [ -0.6931582, 51.2271621, -0.6931582, 51.2271621 ], "geometry": { "type": "Point", "coordinates": [ -0.6931582, 51.2271621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16428082" }, "bbox": [ -0.3305031, 51.1727108, -0.3305031, 51.1727108 ], "geometry": { "type": "Point", "coordinates": [ -0.3305031, 51.1727108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07363108" }, "bbox": [ -0.4681856, 51.11372, -0.4681856, 51.11372 ], "geometry": { "type": "Point", "coordinates": [ -0.4681856, 51.11372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07356291" }, "bbox": [ -0.4635559, 51.1125192, -0.4635559, 51.1125192 ], "geometry": { "type": "Point", "coordinates": [ -0.4635559, 51.1125192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06360748" }, "bbox": [ -0.4858294, 51.1178128, -0.4858294, 51.1178128 ], "geometry": { "type": "Point", "coordinates": [ -0.4858294, 51.1178128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82480517" }, "bbox": [ -0.8265351, 51.2265895, -0.8265351, 51.2265895 ], "geometry": { "type": "Point", "coordinates": [ -0.8265351, 51.2265895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34452597" }, "bbox": [ -0.0799928, 51.1971679, -0.0799928, 51.1971679 ], "geometry": { "type": "Point", "coordinates": [ -0.0799928, 51.1971679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520832" }, "bbox": [ -0.3951379, 51.2591229, -0.3951379, 51.2591229 ], "geometry": { "type": "Point", "coordinates": [ -0.3951379, 51.2591229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520281" }, "bbox": [ -0.3958252, 51.2634529, -0.3958252, 51.2634529 ], "geometry": { "type": "Point", "coordinates": [ -0.3958252, 51.2634529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377782" }, "bbox": [ -0.3615248, 51.1278694, -0.3615248, 51.1278694 ], "geometry": { "type": "Point", "coordinates": [ -0.3615248, 51.1278694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97516096" }, "bbox": [ -0.6027363, 51.2585612, -0.6027363, 51.2585612 ], "geometry": { "type": "Point", "coordinates": [ -0.6027363, 51.2585612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96534886" }, "bbox": [ -0.6182031, 51.2757207, -0.6182031, 51.2757207 ], "geometry": { "type": "Point", "coordinates": [ -0.6182031, 51.2757207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95534761" }, "bbox": [ -0.6327191, 51.2736593, -0.6327191, 51.2736593 ], "geometry": { "type": "Point", "coordinates": [ -0.6327191, 51.2736593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04373543" }, "bbox": [ -0.510185, 51.1265984, -0.510185, 51.1265984 ], "geometry": { "type": "Point", "coordinates": [ -0.510185, 51.1265984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04372653" }, "bbox": [ -0.5113423, 51.1276132, -0.5113423, 51.1276132 ], "geometry": { "type": "Point", "coordinates": [ -0.5113423, 51.1276132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08579278" }, "bbox": [ -0.4386794, 51.3087869, -0.4386794, 51.3087869 ], "geometry": { "type": "Point", "coordinates": [ -0.4386794, 51.3087869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24461312" }, "bbox": [ -0.2246873, 51.2007963, -0.2246873, 51.2007963 ], "geometry": { "type": "Point", "coordinates": [ -0.2246873, 51.2007963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24451976" }, "bbox": [ -0.2238398, 51.1976383, -0.2238398, 51.1976383 ], "geometry": { "type": "Point", "coordinates": [ -0.2238398, 51.1976383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382114" }, "bbox": [ -0.7263383, 51.1354928, -0.7263383, 51.1354928 ], "geometry": { "type": "Point", "coordinates": [ -0.7263383, 51.1354928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88386752" }, "bbox": [ -0.733952, 51.1390545, -0.733952, 51.1390545 ], "geometry": { "type": "Point", "coordinates": [ -0.733952, 51.1390545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369531" }, "bbox": [ -0.5587729, 51.1173017, -0.5587729, 51.1173017 ], "geometry": { "type": "Point", "coordinates": [ -0.5587729, 51.1173017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389365" }, "bbox": [ -0.6157584, 51.1389368, -0.6157584, 51.1389368 ], "geometry": { "type": "Point", "coordinates": [ -0.6157584, 51.1389368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389285" }, "bbox": [ -0.6159388, 51.140811, -0.6159388, 51.140811 ], "geometry": { "type": "Point", "coordinates": [ -0.6159388, 51.140811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11412243" }, "bbox": [ -0.4108111, 51.1613307, -0.4108111, 51.1613307 ], "geometry": { "type": "Point", "coordinates": [ -0.4108111, 51.1613307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11412122" }, "bbox": [ -0.4111013, 51.1594681, -0.4111013, 51.1594681 ], "geometry": { "type": "Point", "coordinates": [ -0.4111013, 51.1594681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11404485" }, "bbox": [ -0.4079974, 51.1561353, -0.4079974, 51.1561353 ], "geometry": { "type": "Point", "coordinates": [ -0.4079974, 51.1561353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11402965" }, "bbox": [ -0.4096911, 51.1542444, -0.4096911, 51.1542444 ], "geometry": { "type": "Point", "coordinates": [ -0.4096911, 51.1542444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11401745" }, "bbox": [ -0.4118078, 51.1525967, -0.4118078, 51.1525967 ], "geometry": { "type": "Point", "coordinates": [ -0.4118078, 51.1525967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11401367" }, "bbox": [ -0.4122724, 51.1545749, -0.4122724, 51.1545749 ], "geometry": { "type": "Point", "coordinates": [ -0.4122724, 51.1545749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10409599" }, "bbox": [ -0.4148798, 51.1573416, -0.4148798, 51.1573416 ], "geometry": { "type": "Point", "coordinates": [ -0.4148798, 51.1573416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10400221" }, "bbox": [ -0.4280012, 51.1502901, -0.4280012, 51.1502901 ], "geometry": { "type": "Point", "coordinates": [ -0.4280012, 51.1502901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09408044" }, "bbox": [ -0.4312999, 51.1530645, -0.4312999, 51.1530645 ], "geometry": { "type": "Point", "coordinates": [ -0.4312999, 51.1530645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90319256" }, "bbox": [ -0.7034884, 51.0762792, -0.7034884, 51.0762792 ], "geometry": { "type": "Point", "coordinates": [ -0.7034884, 51.0762792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09454745" }, "bbox": [ -0.4345968, 51.1976458, -0.4345968, 51.1976458 ], "geometry": { "type": "Point", "coordinates": [ -0.4345968, 51.1976458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28475020" }, "bbox": [ -0.1601174, 51.2104863, -0.1601174, 51.2104863 ], "geometry": { "type": "Point", "coordinates": [ -0.1601174, 51.2104863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26460370" }, "bbox": [ -0.1972217, 51.2056316, -0.1972217, 51.2056316 ], "geometry": { "type": "Point", "coordinates": [ -0.1972217, 51.2056316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07489709" }, "bbox": [ -0.4552767, 51.2222453, -0.4552767, 51.2222453 ], "geometry": { "type": "Point", "coordinates": [ -0.4552767, 51.2222453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09478354" }, "bbox": [ -0.4277, 51.2163521, -0.4277, 51.2163521 ], "geometry": { "type": "Point", "coordinates": [ -0.4277, 51.2163521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34403043" }, "bbox": [ -0.0812717, 51.1473814, -0.0812717, 51.1473814 ], "geometry": { "type": "Point", "coordinates": [ -0.0812717, 51.1473814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34402537" }, "bbox": [ -0.0820668, 51.1468405, -0.0820668, 51.1468405 ], "geometry": { "type": "Point", "coordinates": [ -0.0820668, 51.1468405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11488754" }, "bbox": [ -0.3987446, 51.2250367, -0.3987446, 51.2250367 ], "geometry": { "type": "Point", "coordinates": [ -0.3987446, 51.2250367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12473996" }, "bbox": [ -0.391988, 51.2198201, -0.391988, 51.2198201 ], "geometry": { "type": "Point", "coordinates": [ -0.391988, 51.2198201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12474674" }, "bbox": [ -0.3912325, 51.2177715, -0.3912325, 51.2177715 ], "geometry": { "type": "Point", "coordinates": [ -0.3912325, 51.2177715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13481999" }, "bbox": [ -0.3804019, 51.2290743, -0.3804019, 51.2290743 ], "geometry": { "type": "Point", "coordinates": [ -0.3804019, 51.2290743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36562665" }, "bbox": [ -0.0474356, 51.2926948, -0.0474356, 51.2926948 ], "geometry": { "type": "Point", "coordinates": [ -0.0474356, 51.2926948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92388324" }, "bbox": [ -0.6744624, 51.1357503, -0.6744624, 51.1357503 ], "geometry": { "type": "Point", "coordinates": [ -0.6744624, 51.1357503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91378397" }, "bbox": [ -0.6892198, 51.1346828, -0.6892198, 51.1346828 ], "geometry": { "type": "Point", "coordinates": [ -0.6892198, 51.1346828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93568842" }, "bbox": [ -0.6548422, 51.2989854, -0.6548422, 51.2989854 ], "geometry": { "type": "Point", "coordinates": [ -0.6548422, 51.2989854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93568029" }, "bbox": [ -0.6560208, 51.2978631, -0.6560208, 51.2978631 ], "geometry": { "type": "Point", "coordinates": [ -0.6560208, 51.2978631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92371787" }, "bbox": [ -0.6840377, 51.1328787, -0.6840377, 51.1328787 ], "geometry": { "type": "Point", "coordinates": [ -0.6840377, 51.1328787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15372469" }, "bbox": [ -0.3545675, 51.1268814, -0.3545675, 51.1268814 ], "geometry": { "type": "Point", "coordinates": [ -0.3545675, 51.1268814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05457405" }, "bbox": [ -0.487978, 51.1948653, -0.487978, 51.1948653 ], "geometry": { "type": "Point", "coordinates": [ -0.487978, 51.1948653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05447897" }, "bbox": [ -0.4878644, 51.1940623, -0.4878644, 51.1940623 ], "geometry": { "type": "Point", "coordinates": [ -0.4878644, 51.1940623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11451494" }, "bbox": [ -0.4105929, 51.2018915, -0.4105929, 51.2018915 ], "geometry": { "type": "Point", "coordinates": [ -0.4105929, 51.2018915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11576396" }, "bbox": [ -0.3995628, 51.3098993, -0.3995628, 51.3098993 ], "geometry": { "type": "Point", "coordinates": [ -0.3995628, 51.3098993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11582327" }, "bbox": [ -0.4054084, 51.3128018, -0.4054084, 51.3128018 ], "geometry": { "type": "Point", "coordinates": [ -0.4054084, 51.3128018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11584266" }, "bbox": [ -0.4024394, 51.3161484, -0.4024394, 51.3161484 ], "geometry": { "type": "Point", "coordinates": [ -0.4024394, 51.3161484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28562004" }, "bbox": [ -0.1626271, 51.2890467, -0.1626271, 51.2890467 ], "geometry": { "type": "Point", "coordinates": [ -0.1626271, 51.2890467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28563215" }, "bbox": [ -0.1609625, 51.2903744, -0.1609625, 51.2903744 ], "geometry": { "type": "Point", "coordinates": [ -0.1609625, 51.2903744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92375782" }, "bbox": [ -0.6782014, 51.1322605, -0.6782014, 51.1322605 ], "geometry": { "type": "Point", "coordinates": [ -0.6782014, 51.1322605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05592797" }, "bbox": [ -0.4906253, 51.3291103, -0.4906253, 51.3291103 ], "geometry": { "type": "Point", "coordinates": [ -0.4906253, 51.3291103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05593176" }, "bbox": [ -0.4900018, 51.3271716, -0.4900018, 51.3271716 ], "geometry": { "type": "Point", "coordinates": [ -0.4900018, 51.3271716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05598163" }, "bbox": [ -0.4828002, 51.3259661, -0.4828002, 51.3259661 ], "geometry": { "type": "Point", "coordinates": [ -0.4828002, 51.3259661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01473677" }, "bbox": [ -0.5501962, 51.2203279, -0.5501962, 51.2203279 ], "geometry": { "type": "Point", "coordinates": [ -0.5501962, 51.2203279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01479792" }, "bbox": [ -0.5414559, 51.2212556, -0.5414559, 51.2212556 ], "geometry": { "type": "Point", "coordinates": [ -0.5414559, 51.2212556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00426365" }, "bbox": [ -0.5617848, 51.1742189, -0.5617848, 51.1742189 ], "geometry": { "type": "Point", "coordinates": [ -0.5617848, 51.1742189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99424991" }, "bbox": [ -0.5783691, 51.1767426, -0.5783691, 51.1767426 ], "geometry": { "type": "Point", "coordinates": [ -0.5783691, 51.1767426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06480830" }, "bbox": [ -0.4823744, 51.2240892, -0.4823744, 51.2240892 ], "geometry": { "type": "Point", "coordinates": [ -0.4823744, 51.2240892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41432183" }, "bbox": [ 0.0186725, 51.1764726, 0.0186725, 51.1764726 ], "geometry": { "type": "Point", "coordinates": [ 0.0186725, 51.1764726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09561502" }, "bbox": [ -0.4366192, 51.292415, -0.4366192, 51.292415 ], "geometry": { "type": "Point", "coordinates": [ -0.4366192, 51.292415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15460738" }, "bbox": [ -0.3539707, 51.204912, -0.3539707, 51.204912 ], "geometry": { "type": "Point", "coordinates": [ -0.3539707, 51.204912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15461737" }, "bbox": [ -0.3527048, 51.2050243, -0.3527048, 51.2050243 ], "geometry": { "type": "Point", "coordinates": [ -0.3527048, 51.2050243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01394564" }, "bbox": [ -0.5510964, 51.1471505, -0.5510964, 51.1471505 ], "geometry": { "type": "Point", "coordinates": [ -0.5510964, 51.1471505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04576835" }, "bbox": [ -0.4995855, 51.3057746, -0.4995855, 51.3057746 ], "geometry": { "type": "Point", "coordinates": [ -0.4995855, 51.3057746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37445205" }, "bbox": [ -0.0339323, 51.1790256, -0.0339323, 51.1790256 ], "geometry": { "type": "Point", "coordinates": [ -0.0339323, 51.1790256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15463308" }, "bbox": [ -0.3505434, 51.2024209, -0.3505434, 51.2024209 ], "geometry": { "type": "Point", "coordinates": [ -0.3505434, 51.2024209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470808" }, "bbox": [ -0.5255059, 51.2136829, -0.5255059, 51.2136829 ], "geometry": { "type": "Point", "coordinates": [ -0.5255059, 51.2136829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14466666" }, "bbox": [ -0.3599634, 51.2077631, -0.3599634, 51.2077631 ], "geometry": { "type": "Point", "coordinates": [ -0.3599634, 51.2077631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98428032" }, "bbox": [ -0.5884108, 51.1715677, -0.5884108, 51.1715677 ], "geometry": { "type": "Point", "coordinates": [ -0.5884108, 51.1715677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98427123" }, "bbox": [ -0.5895525, 51.1706807, -0.5895525, 51.1706807 ], "geometry": { "type": "Point", "coordinates": [ -0.5895525, 51.1706807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98427720" }, "bbox": [ -0.5887352, 51.1704394, -0.5887352, 51.1704394 ], "geometry": { "type": "Point", "coordinates": [ -0.5887352, 51.1704394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98426617" }, "bbox": [ -0.5903405, 51.1702053, -0.5903405, 51.1702053 ], "geometry": { "type": "Point", "coordinates": [ -0.5903405, 51.1702053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98427624" }, "bbox": [ -0.588883, 51.1708767, -0.588883, 51.1708767 ], "geometry": { "type": "Point", "coordinates": [ -0.588883, 51.1708767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00445518" }, "bbox": [ -0.5624848, 51.1878881, -0.5624848, 51.1878881 ], "geometry": { "type": "Point", "coordinates": [ -0.5624848, 51.1878881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421797" }, "bbox": [ -0.5545918, 51.1770495, -0.5545918, 51.1770495 ], "geometry": { "type": "Point", "coordinates": [ -0.5545918, 51.1770495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14466745" }, "bbox": [ -0.3599041, 51.2057338, -0.3599041, 51.2057338 ], "geometry": { "type": "Point", "coordinates": [ -0.3599041, 51.2057338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13589867" }, "bbox": [ -0.3661582, 51.3156545, -0.3661582, 51.3156545 ], "geometry": { "type": "Point", "coordinates": [ -0.3661582, 51.3156545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97341864" }, "bbox": [ -0.6132007, 51.1032284, -0.6132007, 51.1032284 ], "geometry": { "type": "Point", "coordinates": [ -0.6132007, 51.1032284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41490178" }, "bbox": [ 0.0185417, 51.2297957, 0.0185417, 51.2297957 ], "geometry": { "type": "Point", "coordinates": [ 0.0185417, 51.2297957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99471318" }, "bbox": [ -0.5820474, 51.2152338, -0.5820474, 51.2152338 ], "geometry": { "type": "Point", "coordinates": [ -0.5820474, 51.2152338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99474419" }, "bbox": [ -0.577589, 51.2153494, -0.577589, 51.2153494 ], "geometry": { "type": "Point", "coordinates": [ -0.577589, 51.2153494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98473503" }, "bbox": [ -0.5941462, 51.2138135, -0.5941462, 51.2138135 ], "geometry": { "type": "Point", "coordinates": [ -0.5941462, 51.2138135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98463418" }, "bbox": [ -0.5937726, 51.2063969, -0.5937726, 51.2063969 ], "geometry": { "type": "Point", "coordinates": [ -0.5937726, 51.2063969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96489557" }, "bbox": [ -0.6127565, 51.2280087, -0.6127565, 51.2280087 ], "geometry": { "type": "Point", "coordinates": [ -0.6127565, 51.2280087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97464246" }, "bbox": [ -0.606786, 51.209047, -0.606786, 51.209047 ], "geometry": { "type": "Point", "coordinates": [ -0.606786, 51.209047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97472383" }, "bbox": [ -0.6092166, 51.2212125, -0.6092166, 51.2212125 ], "geometry": { "type": "Point", "coordinates": [ -0.6092166, 51.2212125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99357819" }, "bbox": [ -0.5758697, 51.1074745, -0.5758697, 51.1074745 ], "geometry": { "type": "Point", "coordinates": [ -0.5758697, 51.1074745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19508152" }, "bbox": [ -0.2834199, 51.2413932, -0.2834199, 51.2413932 ], "geometry": { "type": "Point", "coordinates": [ -0.2834199, 51.2413932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39473188" }, "bbox": [ -0.0070011, 51.2130856, -0.0070011, 51.2130856 ], "geometry": { "type": "Point", "coordinates": [ -0.0070011, 51.2130856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30518118" }, "bbox": [ -0.1270831, 51.2445782, -0.1270831, 51.2445782 ], "geometry": { "type": "Point", "coordinates": [ -0.1270831, 51.2445782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07485502" }, "bbox": [ -0.4610761, 51.2212052, -0.4610761, 51.2212052 ], "geometry": { "type": "Point", "coordinates": [ -0.4610761, 51.2212052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06520663" }, "bbox": [ -0.481221, 51.2629387, -0.481221, 51.2629387 ], "geometry": { "type": "Point", "coordinates": [ -0.481221, 51.2629387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08440565" }, "bbox": [ -0.4552946, 51.1912101, -0.4552946, 51.1912101 ], "geometry": { "type": "Point", "coordinates": [ -0.4552946, 51.1912101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03379081" }, "bbox": [ -0.5165472, 51.1302894, -0.5165472, 51.1302894 ], "geometry": { "type": "Point", "coordinates": [ -0.5165472, 51.1302894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18442238" }, "bbox": [ -0.3097962, 51.1863514, -0.3097962, 51.1863514 ], "geometry": { "type": "Point", "coordinates": [ -0.3097962, 51.1863514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19412194" }, "bbox": [ -0.2964906, 51.1643356, -0.2964906, 51.1643356 ], "geometry": { "type": "Point", "coordinates": [ -0.2964906, 51.1643356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18440307" }, "bbox": [ -0.312643, 51.1836083, -0.312643, 51.1836083 ], "geometry": { "type": "Point", "coordinates": [ -0.312643, 51.1836083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18444820" }, "bbox": [ -0.3059283, 51.1847407, -0.3059283, 51.1847407 ], "geometry": { "type": "Point", "coordinates": [ -0.3059283, 51.1847407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19411390" }, "bbox": [ -0.2976495, 51.1638405, -0.2976495, 51.1638405 ], "geometry": { "type": "Point", "coordinates": [ -0.2976495, 51.1638405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11486731" }, "bbox": [ -0.4018636, 51.2229381, -0.4018636, 51.2229381 ], "geometry": { "type": "Point", "coordinates": [ -0.4018636, 51.2229381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12484915" }, "bbox": [ -0.3905289, 51.2215458, -0.3905289, 51.2215458 ], "geometry": { "type": "Point", "coordinates": [ -0.3905289, 51.2215458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10459979" }, "bbox": [ -0.4131757, 51.2006234, -0.4131757, 51.2006234 ], "geometry": { "type": "Point", "coordinates": [ -0.4131757, 51.2006234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09592005" }, "bbox": [ -0.4344651, 51.3201415, -0.4344651, 51.3201415 ], "geometry": { "type": "Point", "coordinates": [ -0.4344651, 51.3201415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10468047" }, "bbox": [ -0.4152973, 51.2066819, -0.4152973, 51.2066819 ], "geometry": { "type": "Point", "coordinates": [ -0.4152973, 51.2066819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583572" }, "bbox": [ -0.4320652, 51.3170915, -0.4320652, 51.3170915 ], "geometry": { "type": "Point", "coordinates": [ -0.4320652, 51.3170915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11486062" }, "bbox": [ -0.4030506, 51.2257522, -0.4030506, 51.2257522 ], "geometry": { "type": "Point", "coordinates": [ -0.4030506, 51.2257522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14628595" }, "bbox": [ -0.3519343, 51.3540571, -0.3519343, 51.3540571 ], "geometry": { "type": "Point", "coordinates": [ -0.3519343, 51.3540571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15620187" }, "bbox": [ -0.3498226, 51.3532174, -0.3498226, 51.3532174 ], "geometry": { "type": "Point", "coordinates": [ -0.3498226, 51.3532174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478315" }, "bbox": [ -0.1576762, 51.2090698, -0.1576762, 51.2090698 ], "geometry": { "type": "Point", "coordinates": [ -0.1576762, 51.2090698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28475010" }, "bbox": [ -0.1609161, 51.2087446, -0.1609161, 51.2087446 ], "geometry": { "type": "Point", "coordinates": [ -0.1609161, 51.2087446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479885" }, "bbox": [ -0.0401893, 51.2135024, -0.0401893, 51.2135024 ], "geometry": { "type": "Point", "coordinates": [ -0.0401893, 51.2135024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14625311" }, "bbox": [ -0.3568097, 51.3466119, -0.3568097, 51.3466119 ], "geometry": { "type": "Point", "coordinates": [ -0.3568097, 51.3466119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14626417" }, "bbox": [ -0.3551841, 51.3471109, -0.3551841, 51.3471109 ], "geometry": { "type": "Point", "coordinates": [ -0.3551841, 51.3471109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07575283" }, "bbox": [ -0.4589006, 51.3093631, -0.4589006, 51.3093631 ], "geometry": { "type": "Point", "coordinates": [ -0.4589006, 51.3093631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07573065" }, "bbox": [ -0.4623957, 51.3076753, -0.4623957, 51.3076753 ], "geometry": { "type": "Point", "coordinates": [ -0.4623957, 51.3076753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07574264" }, "bbox": [ -0.460378, 51.307648, -0.460378, 51.307648 ], "geometry": { "type": "Point", "coordinates": [ -0.460378, 51.307648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14622722" }, "bbox": [ -0.3603607, 51.3476394, -0.3603607, 51.3476394 ], "geometry": { "type": "Point", "coordinates": [ -0.3603607, 51.3476394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02358136" }, "bbox": [ -0.532682, 51.108379, -0.532682, 51.108379 ], "geometry": { "type": "Point", "coordinates": [ -0.532682, 51.108379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14626683" }, "bbox": [ -0.3547785, 51.3529469, -0.3547785, 51.3529469 ], "geometry": { "type": "Point", "coordinates": [ -0.3547785, 51.3529469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41431386" }, "bbox": [ 0.0174956, 51.1765787, 0.0174956, 51.1765787 ], "geometry": { "type": "Point", "coordinates": [ 0.0174956, 51.1765787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86401875" }, "bbox": [ -0.7695612, 51.1604466, -0.7695612, 51.1604466 ], "geometry": { "type": "Point", "coordinates": [ -0.7695612, 51.1604466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83420502" }, "bbox": [ -0.813423, 51.1714276, -0.813423, 51.1714276 ], "geometry": { "type": "Point", "coordinates": [ -0.813423, 51.1714276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96638986" }, "bbox": [ -0.6095918, 51.36549, -0.6095918, 51.36549 ], "geometry": { "type": "Point", "coordinates": [ -0.6095918, 51.36549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00344974" }, "bbox": [ -0.5660514, 51.1031163, -0.5660514, 51.1031163 ], "geometry": { "type": "Point", "coordinates": [ -0.5660514, 51.1031163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93566840" }, "bbox": [ -0.6580244, 51.2989946, -0.6580244, 51.2989946 ], "geometry": { "type": "Point", "coordinates": [ -0.6580244, 51.2989946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29510037" }, "bbox": [ -0.153028, 51.2468886, -0.153028, 51.2468886 ], "geometry": { "type": "Point", "coordinates": [ -0.153028, 51.2468886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31552361" }, "bbox": [ -0.1196146, 51.2845816, -0.1196146, 51.2845816 ], "geometry": { "type": "Point", "coordinates": [ -0.1196146, 51.2845816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35568404" }, "bbox": [ -0.0536111, 51.2873004, -0.0536111, 51.2873004 ], "geometry": { "type": "Point", "coordinates": [ -0.0536111, 51.2873004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35567648" }, "bbox": [ -0.0545687, 51.2912195, -0.0545687, 51.2912195 ], "geometry": { "type": "Point", "coordinates": [ -0.0545687, 51.2912195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35569611" }, "bbox": [ -0.0517499, 51.2877915, -0.0517499, 51.2877915 ], "geometry": { "type": "Point", "coordinates": [ -0.0517499, 51.2877915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35558767" }, "bbox": [ -0.053183, 51.2838742, -0.053183, 51.2838742 ], "geometry": { "type": "Point", "coordinates": [ -0.053183, 51.2838742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35559428" }, "bbox": [ -0.0526015, 51.2804049, -0.0526015, 51.2804049 ], "geometry": { "type": "Point", "coordinates": [ -0.0526015, 51.2804049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36543493" }, "bbox": [ -0.0467682, 51.2770925, -0.0467682, 51.2770925 ], "geometry": { "type": "Point", "coordinates": [ -0.0467682, 51.2770925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89445719" }, "bbox": [ -0.7197808, 51.1899313, -0.7197808, 51.1899313 ], "geometry": { "type": "Point", "coordinates": [ -0.7197808, 51.1899313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36551301" }, "bbox": [ -0.0495761, 51.2779786, -0.0495761, 51.2779786 ], "geometry": { "type": "Point", "coordinates": [ -0.0495761, 51.2779786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29563656" }, "bbox": [ -0.1462919, 51.2934254, -0.1462919, 51.2934254 ], "geometry": { "type": "Point", "coordinates": [ -0.1462919, 51.2934254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30556426" }, "bbox": [ -0.1293592, 51.2818702, -0.1293592, 51.2818702 ], "geometry": { "type": "Point", "coordinates": [ -0.1293592, 51.2818702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96638192" }, "bbox": [ -0.6106251, 51.3661136, -0.6106251, 51.3661136 ], "geometry": { "type": "Point", "coordinates": [ -0.6106251, 51.3661136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19518114" }, "bbox": [ -0.2841587, 51.2465538, -0.2841587, 51.2465538 ], "geometry": { "type": "Point", "coordinates": [ -0.2841587, 51.2465538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07592909" }, "bbox": [ -0.4615601, 51.3208386, -0.4615601, 51.3208386 ], "geometry": { "type": "Point", "coordinates": [ -0.4615601, 51.3208386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33519838" }, "bbox": [ -0.0817181, 51.2459592, -0.0817181, 51.2459592 ], "geometry": { "type": "Point", "coordinates": [ -0.0817181, 51.2459592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34510445" }, "bbox": [ -0.0805667, 51.2466645, -0.0805667, 51.2466645 ], "geometry": { "type": "Point", "coordinates": [ -0.0805667, 51.2466645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34510635" }, "bbox": [ -0.0813155, 51.245211, -0.0813155, 51.245211 ], "geometry": { "type": "Point", "coordinates": [ -0.0813155, 51.245211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96648700" }, "bbox": [ -0.6097925, 51.3668447, -0.6097925, 51.3668447 ], "geometry": { "type": "Point", "coordinates": [ -0.6097925, 51.3668447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31477996" }, "bbox": [ -0.1146463, 51.2155167, -0.1146463, 51.2155167 ], "geometry": { "type": "Point", "coordinates": [ -0.1146463, 51.2155167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27565792" }, "bbox": [ -0.1716712, 51.2969579, -0.1716712, 51.2969579 ], "geometry": { "type": "Point", "coordinates": [ -0.1716712, 51.2969579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27567188" }, "bbox": [ -0.169699, 51.2967776, -0.169699, 51.2967776 ], "geometry": { "type": "Point", "coordinates": [ -0.169699, 51.2967776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29564475" }, "bbox": [ -0.1450601, 51.2952104, -0.1450601, 51.2952104 ], "geometry": { "type": "Point", "coordinates": [ -0.1450601, 51.2952104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41430674" }, "bbox": [ 0.0164781, 51.1755416, 0.0164781, 51.1755416 ], "geometry": { "type": "Point", "coordinates": [ 0.0164781, 51.1755416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98605051" }, "bbox": [ -0.5874039, 51.335178, -0.5874039, 51.335178 ], "geometry": { "type": "Point", "coordinates": [ -0.5874039, 51.335178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41441717" }, "bbox": [ 0.0182042, 51.1793348, 0.0182042, 51.1793348 ], "geometry": { "type": "Point", "coordinates": [ 0.0182042, 51.1793348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07577790" }, "bbox": [ -0.4551323, 51.3100882, -0.4551323, 51.3100882 ], "geometry": { "type": "Point", "coordinates": [ -0.4551323, 51.3100882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31550764" }, "bbox": [ -0.1216869, 51.2848079, -0.1216869, 51.2848079 ], "geometry": { "type": "Point", "coordinates": [ -0.1216869, 51.2848079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31550061" }, "bbox": [ -0.1228218, 51.284527, -0.1228218, 51.284527 ], "geometry": { "type": "Point", "coordinates": [ -0.1228218, 51.284527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29549354" }, "bbox": [ -0.1387501, 51.2752112, -0.1387501, 51.2752112 ], "geometry": { "type": "Point", "coordinates": [ -0.1387501, 51.2752112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29551558" }, "bbox": [ -0.1495731, 51.2846841, -0.1495731, 51.2846841 ], "geometry": { "type": "Point", "coordinates": [ -0.1495731, 51.2846841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28562293" }, "bbox": [ -0.1626135, 51.296902, -0.1626135, 51.296902 ], "geometry": { "type": "Point", "coordinates": [ -0.1626135, 51.296902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28556045" }, "bbox": [ -0.1574764, 51.2838231, -0.1574764, 51.2838231 ], "geometry": { "type": "Point", "coordinates": [ -0.1574764, 51.2838231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30565005" }, "bbox": [ -0.1305063, 51.288541, -0.1305063, 51.288541 ], "geometry": { "type": "Point", "coordinates": [ -0.1305063, 51.288541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27575733" }, "bbox": [ -0.1715381, 51.3008569, -0.1715381, 51.3008569 ], "geometry": { "type": "Point", "coordinates": [ -0.1715381, 51.3008569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27575219" }, "bbox": [ -0.1723475, 51.2996473, -0.1723475, 51.2996473 ], "geometry": { "type": "Point", "coordinates": [ -0.1723475, 51.2996473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27574408" }, "bbox": [ -0.1735888, 51.2986486, -0.1735888, 51.2986486 ], "geometry": { "type": "Point", "coordinates": [ -0.1735888, 51.2986486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30557669" }, "bbox": [ -0.1263144, 51.2854095, -0.1263144, 51.2854095 ], "geometry": { "type": "Point", "coordinates": [ -0.1263144, 51.2854095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33586242" }, "bbox": [ -0.0844608, 51.309365, -0.0844608, 51.309365 ], "geometry": { "type": "Point", "coordinates": [ -0.0844608, 51.309365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40439379" }, "bbox": [ 0.0145936, 51.1760373, 0.0145936, 51.1760373 ], "geometry": { "type": "Point", "coordinates": [ 0.0145936, 51.1760373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41432694" }, "bbox": [ 0.0193519, 51.1772246, 0.0193519, 51.1772246 ], "geometry": { "type": "Point", "coordinates": [ 0.0193519, 51.1772246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91475851" }, "bbox": [ -0.690036, 51.2197514, -0.690036, 51.2197514 ], "geometry": { "type": "Point", "coordinates": [ -0.690036, 51.2197514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02403984" }, "bbox": [ -0.5373551, 51.1575434, -0.5373551, 51.1575434 ], "geometry": { "type": "Point", "coordinates": [ -0.5373551, 51.1575434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94601605" }, "bbox": [ -0.6519108, 51.3308965, -0.6519108, 51.3308965 ], "geometry": { "type": "Point", "coordinates": [ -0.6519108, 51.3308965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467569" }, "bbox": [ -0.2441338, 51.2063494, -0.2441338, 51.2063494 ], "geometry": { "type": "Point", "coordinates": [ -0.2441338, 51.2063494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387393" }, "bbox": [ -0.7329267, 51.1426741, -0.7329267, 51.1426741 ], "geometry": { "type": "Point", "coordinates": [ -0.7329267, 51.1426741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02649153" }, "bbox": [ -0.5236477, 51.3706588, -0.5236477, 51.3706588 ], "geometry": { "type": "Point", "coordinates": [ -0.5236477, 51.3706588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02648055" }, "bbox": [ -0.5256521, 51.3700858, -0.5256521, 51.3700858 ], "geometry": { "type": "Point", "coordinates": [ -0.5256521, 51.3700858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89445700" }, "bbox": [ -0.7198137, 51.1880884, -0.7198137, 51.1880884 ], "geometry": { "type": "Point", "coordinates": [ -0.7198137, 51.1880884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458485" }, "bbox": [ -0.2145866, 51.1982521, -0.2145866, 51.1982521 ], "geometry": { "type": "Point", "coordinates": [ -0.2145866, 51.1982521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458076" }, "bbox": [ -0.2152066, 51.1974616, -0.2152066, 51.1974616 ], "geometry": { "type": "Point", "coordinates": [ -0.2152066, 51.1974616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25451575" }, "bbox": [ -0.2101594, 51.1972545, -0.2101594, 51.1972545 ], "geometry": { "type": "Point", "coordinates": [ -0.2101594, 51.1972545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458893" }, "bbox": [ -0.2139831, 51.198949, -0.2139831, 51.198949 ], "geometry": { "type": "Point", "coordinates": [ -0.2139831, 51.198949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450564" }, "bbox": [ -0.2116933, 51.196331, -0.2116933, 51.196331 ], "geometry": { "type": "Point", "coordinates": [ -0.2116933, 51.196331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14399252" }, "bbox": [ -0.3584544, 51.1434688, -0.3584544, 51.1434688 ], "geometry": { "type": "Point", "coordinates": [ -0.3584544, 51.1434688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410595" }, "bbox": [ -0.4275438, 51.1662008, -0.4275438, 51.1662008 ], "geometry": { "type": "Point", "coordinates": [ -0.4275438, 51.1662008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410885" }, "bbox": [ -0.4270714, 51.1652669, -0.4270714, 51.1652669 ], "geometry": { "type": "Point", "coordinates": [ -0.4270714, 51.1652669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10421304" }, "bbox": [ -0.4261495, 51.1670971, -0.4261495, 51.1670971 ], "geometry": { "type": "Point", "coordinates": [ -0.4261495, 51.1670971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10422213" }, "bbox": [ -0.4249551, 51.1678004, -0.4249551, 51.1678004 ], "geometry": { "type": "Point", "coordinates": [ -0.4249551, 51.1678004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09414461" }, "bbox": [ -0.4357669, 51.1633288, -0.4357669, 51.1633288 ], "geometry": { "type": "Point", "coordinates": [ -0.4357669, 51.1633288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09416682" }, "bbox": [ -0.4329303, 51.1651165, -0.4329303, 51.1651165 ], "geometry": { "type": "Point", "coordinates": [ -0.4329303, 51.1651165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19381627" }, "bbox": [ -0.2983128, 51.1313477, -0.2983128, 51.1313477 ], "geometry": { "type": "Point", "coordinates": [ -0.2983128, 51.1313477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20443260" }, "bbox": [ -0.2802508, 51.188229, -0.2802508, 51.188229 ], "geometry": { "type": "Point", "coordinates": [ -0.2802508, 51.188229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11618873" }, "bbox": [ -0.3951835, 51.3437312, -0.3951835, 51.3437312 ], "geometry": { "type": "Point", "coordinates": [ -0.3951835, 51.3437312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26445050" }, "bbox": [ -0.1908837, 51.1859288, -0.1908837, 51.1859288 ], "geometry": { "type": "Point", "coordinates": [ -0.1908837, 51.1859288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26438714" }, "bbox": [ -0.1865499, 51.1734877, -0.1865499, 51.1734877 ], "geometry": { "type": "Point", "coordinates": [ -0.1865499, 51.1734877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37414625" }, "bbox": [ -0.036054, 51.1540113, -0.036054, 51.1540113 ], "geometry": { "type": "Point", "coordinates": [ -0.036054, 51.1540113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11617960" }, "bbox": [ -0.3974285, 51.3429679, -0.3974285, 51.3429679 ], "geometry": { "type": "Point", "coordinates": [ -0.3974285, 51.3429679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406564" }, "bbox": [ -0.2334434, 51.1517617, -0.2334434, 51.1517617 ], "geometry": { "type": "Point", "coordinates": [ -0.2334434, 51.1517617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11619974" }, "bbox": [ -0.3932178, 51.3438233, -0.3932178, 51.3438233 ], "geometry": { "type": "Point", "coordinates": [ -0.3932178, 51.3438233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11366834" }, "bbox": [ -0.4054479, 51.1156962, -0.4054479, 51.1156962 ], "geometry": { "type": "Point", "coordinates": [ -0.4054479, 51.1156962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11368057" }, "bbox": [ -0.4029852, 51.1173501, -0.4029852, 51.1173501 ], "geometry": { "type": "Point", "coordinates": [ -0.4029852, 51.1173501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14389001" }, "bbox": [ -0.3592273, 51.1298235, -0.3592273, 51.1298235 ], "geometry": { "type": "Point", "coordinates": [ -0.3592273, 51.1298235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30550625" }, "bbox": [ -0.136552, 51.2815172, -0.136552, 51.2815172 ], "geometry": { "type": "Point", "coordinates": [ -0.136552, 51.2815172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610193" }, "bbox": [ -0.5655702, 51.3476416, -0.5655702, 51.3476416 ], "geometry": { "type": "Point", "coordinates": [ -0.5655702, 51.3476416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99616687" }, "bbox": [ -0.5703867, 51.347171, -0.5703867, 51.347171 ], "geometry": { "type": "Point", "coordinates": [ -0.5703867, 51.347171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415008" }, "bbox": [ -0.4639533, 51.1585547, -0.4639533, 51.1585547 ], "geometry": { "type": "Point", "coordinates": [ -0.4639533, 51.1585547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04420062" }, "bbox": [ -0.5134808, 51.1732678, -0.5134808, 51.1732678 ], "geometry": { "type": "Point", "coordinates": [ -0.5134808, 51.1732678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01458494" }, "bbox": [ -0.543535, 51.2035555, -0.543535, 51.2035555 ], "geometry": { "type": "Point", "coordinates": [ -0.543535, 51.2035555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01467503" }, "bbox": [ -0.544956, 51.2043429, -0.544956, 51.2043429 ], "geometry": { "type": "Point", "coordinates": [ -0.544956, 51.2043429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02452496" }, "bbox": [ -0.5378934, 51.2036266, -0.5378934, 51.2036266 ], "geometry": { "type": "Point", "coordinates": [ -0.5378934, 51.2036266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21394811" }, "bbox": [ -0.2654194, 51.138476, -0.2654194, 51.138476 ], "geometry": { "type": "Point", "coordinates": [ -0.2654194, 51.138476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21392321" }, "bbox": [ -0.2688942, 51.13928, -0.2688942, 51.13928 ], "geometry": { "type": "Point", "coordinates": [ -0.2688942, 51.13928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21391413" }, "bbox": [ -0.2699756, 51.1385443, -0.2699756, 51.1385443 ], "geometry": { "type": "Point", "coordinates": [ -0.2699756, 51.1385443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21380479" }, "bbox": [ -0.2715014, 51.1355671, -0.2715014, 51.1355671 ], "geometry": { "type": "Point", "coordinates": [ -0.2715014, 51.1355671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21381198" }, "bbox": [ -0.2703575, 51.1372842, -0.2703575, 51.1372842 ], "geometry": { "type": "Point", "coordinates": [ -0.2703575, 51.1372842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373517" }, "bbox": [ -0.5531341, 51.1247428, -0.5531341, 51.1247428 ], "geometry": { "type": "Point", "coordinates": [ -0.5531341, 51.1247428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17372495" }, "bbox": [ -0.3259151, 51.128914, -0.3259151, 51.128914 ], "geometry": { "type": "Point", "coordinates": [ -0.3259151, 51.128914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16373669" }, "bbox": [ -0.3377486, 51.1264637, -0.3377486, 51.1264637 ], "geometry": { "type": "Point", "coordinates": [ -0.3377486, 51.1264637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16389751" }, "bbox": [ -0.3296922, 51.1338754, -0.3296922, 51.1338754 ], "geometry": { "type": "Point", "coordinates": [ -0.3296922, 51.1338754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567238" }, "bbox": [ -0.5138744, 51.2971503, -0.5138744, 51.2971503 ], "geometry": { "type": "Point", "coordinates": [ -0.5138744, 51.2971503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19417481" }, "bbox": [ -0.2890521, 51.162991, -0.2890521, 51.162991 ], "geometry": { "type": "Point", "coordinates": [ -0.2890521, 51.162991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03429615" }, "bbox": [ -0.5145059, 51.1689599, -0.5145059, 51.1689599 ], "geometry": { "type": "Point", "coordinates": [ -0.5145059, 51.1689599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06432070" }, "bbox": [ -0.4823267, 51.1823865, -0.4823267, 51.1823865 ], "geometry": { "type": "Point", "coordinates": [ -0.4823267, 51.1823865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97553201" }, "bbox": [ -0.6060057, 51.2862167, -0.6060057, 51.2862167 ], "geometry": { "type": "Point", "coordinates": [ -0.6060057, 51.2862167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550140" }, "bbox": [ -0.6102464, 51.2895444, -0.6102464, 51.2895444 ], "geometry": { "type": "Point", "coordinates": [ -0.6102464, 51.2895444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550246" }, "bbox": [ -0.6102456, 51.289974, -0.6102456, 51.289974 ], "geometry": { "type": "Point", "coordinates": [ -0.6102456, 51.289974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99353465" }, "bbox": [ -0.5818838, 51.1115793, -0.5818838, 51.1115793 ], "geometry": { "type": "Point", "coordinates": [ -0.5818838, 51.1115793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91395838" }, "bbox": [ -0.6917907, 51.1457523, -0.6917907, 51.1457523 ], "geometry": { "type": "Point", "coordinates": [ -0.6917907, 51.1457523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91397446" }, "bbox": [ -0.6897252, 51.1471269, -0.6897252, 51.1471269 ], "geometry": { "type": "Point", "coordinates": [ -0.6897252, 51.1471269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453611" }, "bbox": [ -0.1360559, 51.1903893, -0.1360559, 51.1903893 ], "geometry": { "type": "Point", "coordinates": [ -0.1360559, 51.1903893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03332063" }, "bbox": [ -0.5277918, 51.0926332, -0.5277918, 51.0926332 ], "geometry": { "type": "Point", "coordinates": [ -0.5277918, 51.0926332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92452748" }, "bbox": [ -0.6807494, 51.2012438, -0.6807494, 51.2012438 ], "geometry": { "type": "Point", "coordinates": [ -0.6807494, 51.2012438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16536507" }, "bbox": [ -0.3277784, 51.2643943, -0.3277784, 51.2643943 ], "geometry": { "type": "Point", "coordinates": [ -0.3277784, 51.2643943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16536331" }, "bbox": [ -0.3296155, 51.2670323, -0.3296155, 51.2670323 ], "geometry": { "type": "Point", "coordinates": [ -0.3296155, 51.2670323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17527089" }, "bbox": [ -0.3144575, 51.2630302, -0.3144575, 51.2630302 ], "geometry": { "type": "Point", "coordinates": [ -0.3144575, 51.2630302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37438131" }, "bbox": [ -0.0300268, 51.1725116, -0.0300268, 51.1725116 ], "geometry": { "type": "Point", "coordinates": [ -0.0300268, 51.1725116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24488138" }, "bbox": [ -0.2139334, 51.2208342, -0.2139334, 51.2208342 ], "geometry": { "type": "Point", "coordinates": [ -0.2139334, 51.2208342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25554026" }, "bbox": [ -0.2032596, 51.2827255, -0.2032596, 51.2827255 ], "geometry": { "type": "Point", "coordinates": [ -0.2032596, 51.2827255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22437706" }, "bbox": [ -0.2453243, 51.1735859, -0.2453243, 51.1735859 ], "geometry": { "type": "Point", "coordinates": [ -0.2453243, 51.1735859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90326479" }, "bbox": [ -0.7072863, 51.087292, -0.7072863, 51.087292 ], "geometry": { "type": "Point", "coordinates": [ -0.7072863, 51.087292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99475353" }, "bbox": [ -0.5762194, 51.2183048, -0.5762194, 51.2183048 ], "geometry": { "type": "Point", "coordinates": [ -0.5762194, 51.2183048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20460738" }, "bbox": [ -0.2825294, 51.2040585, -0.2825294, 51.2040585 ], "geometry": { "type": "Point", "coordinates": [ -0.2825294, 51.2040585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97382723" }, "bbox": [ -0.6111376, 51.1350855, -0.6111376, 51.1350855 ], "geometry": { "type": "Point", "coordinates": [ -0.6111376, 51.1350855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97384034" }, "bbox": [ -0.609048, 51.1364287, -0.609048, 51.1364287 ], "geometry": { "type": "Point", "coordinates": [ -0.609048, 51.1364287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437341" }, "bbox": [ -0.3028008, 51.1776163, -0.3028008, 51.1776163 ], "geometry": { "type": "Point", "coordinates": [ -0.3028008, 51.1776163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18434527" }, "bbox": [ -0.3070522, 51.176389, -0.3070522, 51.176389 ], "geometry": { "type": "Point", "coordinates": [ -0.3070522, 51.176389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93472830" }, "bbox": [ -0.6657003, 51.2172491, -0.6657003, 51.2172491 ], "geometry": { "type": "Point", "coordinates": [ -0.6657003, 51.2172491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17432563" }, "bbox": [ -0.3242097, 51.1797828, -0.3242097, 51.1797828 ], "geometry": { "type": "Point", "coordinates": [ -0.3242097, 51.1797828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99441776" }, "bbox": [ -0.5823073, 51.1934603, -0.5823073, 51.1934603 ], "geometry": { "type": "Point", "coordinates": [ -0.5823073, 51.1934603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99442975" }, "bbox": [ -0.580341, 51.1933081, -0.580341, 51.1933081 ], "geometry": { "type": "Point", "coordinates": [ -0.580341, 51.1933081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99442578" }, "bbox": [ -0.5810107, 51.1937033, -0.5810107, 51.1937033 ], "geometry": { "type": "Point", "coordinates": [ -0.5810107, 51.1937033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94552033" }, "bbox": [ -0.6504918, 51.2893146, -0.6504918, 51.2893146 ], "geometry": { "type": "Point", "coordinates": [ -0.6504918, 51.2893146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94552736" }, "bbox": [ -0.6494585, 51.2895446, -0.6494585, 51.2895446 ], "geometry": { "type": "Point", "coordinates": [ -0.6494585, 51.2895446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94553338" }, "bbox": [ -0.6486255, 51.2897417, -0.6486255, 51.2897417 ], "geometry": { "type": "Point", "coordinates": [ -0.6486255, 51.2897417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551713" }, "bbox": [ -0.6510452, 51.2874932, -0.6510452, 51.2874932 ], "geometry": { "type": "Point", "coordinates": [ -0.6510452, 51.2874932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94550928" }, "bbox": [ -0.6520992, 51.2889751, -0.6520992, 51.2889751 ], "geometry": { "type": "Point", "coordinates": [ -0.6520992, 51.2889751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37531428" }, "bbox": [ -0.0355164, 51.2621925, -0.0355164, 51.2621925 ], "geometry": { "type": "Point", "coordinates": [ -0.0355164, 51.2621925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447260" }, "bbox": [ -0.1307156, 51.1857533, -0.1307156, 51.1857533 ], "geometry": { "type": "Point", "coordinates": [ -0.1307156, 51.1857533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05491431" }, "bbox": [ -0.4952382, 51.2331337, -0.4952382, 51.2331337 ], "geometry": { "type": "Point", "coordinates": [ -0.4952382, 51.2331337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05490851" }, "bbox": [ -0.4960671, 51.234919, -0.4960671, 51.234919 ], "geometry": { "type": "Point", "coordinates": [ -0.4960671, 51.234919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04499025" }, "bbox": [ -0.499186, 51.2329182, -0.499186, 51.2329182 ], "geometry": { "type": "Point", "coordinates": [ -0.499186, 51.2329182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10351721" }, "bbox": [ -0.4276727, 51.105689, -0.4276727, 51.105689 ], "geometry": { "type": "Point", "coordinates": [ -0.4276727, 51.105689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10352639" }, "bbox": [ -0.4264876, 51.1072262, -0.4264876, 51.1072262 ], "geometry": { "type": "Point", "coordinates": [ -0.4264876, 51.1072262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09463973" }, "bbox": [ -0.4365064, 51.2095858, -0.4365064, 51.2095858 ], "geometry": { "type": "Point", "coordinates": [ -0.4365064, 51.2095858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10417258" }, "bbox": [ -0.4179897, 51.162813, -0.4179897, 51.162813 ], "geometry": { "type": "Point", "coordinates": [ -0.4179897, 51.162813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416656" }, "bbox": [ -0.4187051, 51.1625186, -0.4187051, 51.1625186 ], "geometry": { "type": "Point", "coordinates": [ -0.4187051, 51.1625186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05366611" }, "bbox": [ -0.4918624, 51.1146882, -0.4918624, 51.1146882 ], "geometry": { "type": "Point", "coordinates": [ -0.4918624, 51.1146882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20491369" }, "bbox": [ -0.2806492, 51.2337811, -0.2806492, 51.2337811 ], "geometry": { "type": "Point", "coordinates": [ -0.2806492, 51.2337811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19499950" }, "bbox": [ -0.28278, 51.2321204, -0.28278, 51.2321204 ], "geometry": { "type": "Point", "coordinates": [ -0.28278, 51.2321204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17414857" }, "bbox": [ -0.3213622, 51.1613441, -0.3213622, 51.1613441 ], "geometry": { "type": "Point", "coordinates": [ -0.3213622, 51.1613441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17414357" }, "bbox": [ -0.3220578, 51.1613649, -0.3220578, 51.1613649 ], "geometry": { "type": "Point", "coordinates": [ -0.3220578, 51.1613649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99456806" }, "bbox": [ -0.5750473, 51.1958592, -0.5750473, 51.1958592 ], "geometry": { "type": "Point", "coordinates": [ -0.5750473, 51.1958592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99444489" }, "bbox": [ -0.5783233, 51.194519, -0.5783233, 51.194519 ], "geometry": { "type": "Point", "coordinates": [ -0.5783233, 51.194519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28477094" }, "bbox": [ -0.1585641, 51.2162466, -0.1585641, 51.2162466 ], "geometry": { "type": "Point", "coordinates": [ -0.1585641, 51.2162466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99454906" }, "bbox": [ -0.5776092, 51.1959489, -0.5776092, 51.1959489 ], "geometry": { "type": "Point", "coordinates": [ -0.5776092, 51.1959489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24511658" }, "bbox": [ -0.2223081, 51.2499283, -0.2223081, 51.2499283 ], "geometry": { "type": "Point", "coordinates": [ -0.2223081, 51.2499283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24512553" }, "bbox": [ -0.2212249, 51.2495632, -0.2212249, 51.2495632 ], "geometry": { "type": "Point", "coordinates": [ -0.2212249, 51.2495632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24512650" }, "bbox": [ -0.220944, 51.2491374, -0.220944, 51.2491374 ], "geometry": { "type": "Point", "coordinates": [ -0.220944, 51.2491374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93519535" }, "bbox": [ -0.6550146, 51.2536694, -0.6550146, 51.2536694 ], "geometry": { "type": "Point", "coordinates": [ -0.6550146, 51.2536694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494555" }, "bbox": [ -0.1471389, 51.2304515, -0.1471389, 51.2304515 ], "geometry": { "type": "Point", "coordinates": [ -0.1471389, 51.2304515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495865" }, "bbox": [ -0.1456628, 51.2314248, -0.1456628, 51.2314248 ], "geometry": { "type": "Point", "coordinates": [ -0.1456628, 51.2314248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21434392" }, "bbox": [ -0.2641795, 51.1816465, -0.2641795, 51.1816465 ], "geometry": { "type": "Point", "coordinates": [ -0.2641795, 51.1816465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21431550" }, "bbox": [ -0.2680497, 51.1779282, -0.2680497, 51.1779282 ], "geometry": { "type": "Point", "coordinates": [ -0.2680497, 51.1779282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30430119" }, "bbox": [ -0.1417365, 51.1732292, -0.1417365, 51.1732292 ], "geometry": { "type": "Point", "coordinates": [ -0.1417365, 51.1732292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23419555" }, "bbox": [ -0.2289663, 51.1598937, -0.2289663, 51.1598937 ], "geometry": { "type": "Point", "coordinates": [ -0.2289663, 51.1598937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22463928" }, "bbox": [ -0.2496544, 51.2025973, -0.2496544, 51.2025973 ], "geometry": { "type": "Point", "coordinates": [ -0.2496544, 51.2025973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465843" }, "bbox": [ -0.24678, 51.2039294, -0.24678, 51.2039294 ], "geometry": { "type": "Point", "coordinates": [ -0.24678, 51.2039294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22463745" }, "bbox": [ -0.2496454, 51.204106, -0.2496454, 51.204106 ], "geometry": { "type": "Point", "coordinates": [ -0.2496454, 51.204106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22463146" }, "bbox": [ -0.2501197, 51.2044889, -0.2501197, 51.2044889 ], "geometry": { "type": "Point", "coordinates": [ -0.2501197, 51.2044889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500146" }, "bbox": [ -0.3966483, 51.2424084, -0.3966483, 51.2424084 ], "geometry": { "type": "Point", "coordinates": [ -0.3966483, 51.2424084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11509952" }, "bbox": [ -0.3964816, 51.2429641, -0.3964816, 51.2429641 ], "geometry": { "type": "Point", "coordinates": [ -0.3964816, 51.2429641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33482362" }, "bbox": [ -0.0934422, 51.2214508, -0.0934422, 51.2214508 ], "geometry": { "type": "Point", "coordinates": [ -0.0934422, 51.2214508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33495022" }, "bbox": [ -0.0895619, 51.2266151, -0.0895619, 51.2266151 ], "geometry": { "type": "Point", "coordinates": [ -0.0895619, 51.2266151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33493704" }, "bbox": [ -0.0915746, 51.2253502, -0.0915746, 51.2253502 ], "geometry": { "type": "Point", "coordinates": [ -0.0915746, 51.2253502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32508829" }, "bbox": [ -0.0978478, 51.2364042, -0.0978478, 51.2364042 ], "geometry": { "type": "Point", "coordinates": [ -0.0978478, 51.2364042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32507529" }, "bbox": [ -0.0998291, 51.2363418, -0.0998291, 51.2363418 ], "geometry": { "type": "Point", "coordinates": [ -0.0998291, 51.2363418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32507536" }, "bbox": [ -0.0998705, 51.2369541, -0.0998705, 51.2369541 ], "geometry": { "type": "Point", "coordinates": [ -0.0998705, 51.2369541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32508222" }, "bbox": [ -0.0990655, 51.2357219, -0.0990655, 51.2357219 ], "geometry": { "type": "Point", "coordinates": [ -0.0990655, 51.2357219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33501221" }, "bbox": [ -0.0945429, 51.2356424, -0.0945429, 51.2356424 ], "geometry": { "type": "Point", "coordinates": [ -0.0945429, 51.2356424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32498206" }, "bbox": [ -0.0993548, 51.2252219, -0.0993548, 51.2252219 ], "geometry": { "type": "Point", "coordinates": [ -0.0993548, 51.2252219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32499202" }, "bbox": [ -0.0968363, 51.2246251, -0.0968363, 51.2246251 ], "geometry": { "type": "Point", "coordinates": [ -0.0968363, 51.2246251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23419941" }, "bbox": [ -0.2283478, 51.158505, -0.2283478, 51.158505 ], "geometry": { "type": "Point", "coordinates": [ -0.2283478, 51.158505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23419837" }, "bbox": [ -0.2283371, 51.1581723, -0.2283371, 51.1581723 ], "geometry": { "type": "Point", "coordinates": [ -0.2283371, 51.1581723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24511655" }, "bbox": [ -0.2224162, 51.2496935, -0.2224162, 51.2496935 ], "geometry": { "type": "Point", "coordinates": [ -0.2224162, 51.2496935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24510953" }, "bbox": [ -0.2234494, 51.2492827, -0.2234494, 51.2492827 ], "geometry": { "type": "Point", "coordinates": [ -0.2234494, 51.2492827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24511058" }, "bbox": [ -0.2232594, 51.2498743, -0.2232594, 51.2498743 ], "geometry": { "type": "Point", "coordinates": [ -0.2232594, 51.2498743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465429" }, "bbox": [ -0.2471454, 51.2023706, -0.2471454, 51.2023706 ], "geometry": { "type": "Point", "coordinates": [ -0.2471454, 51.2023706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97389608" }, "bbox": [ -0.601269, 51.1335938, -0.601269, 51.1335938 ], "geometry": { "type": "Point", "coordinates": [ -0.601269, 51.1335938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98371298" }, "bbox": [ -0.5989017, 51.1328427, -0.5989017, 51.1328427 ], "geometry": { "type": "Point", "coordinates": [ -0.5989017, 51.1328427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457737" }, "bbox": [ -0.6592504, 51.1998994, -0.6592504, 51.1998994 ], "geometry": { "type": "Point", "coordinates": [ -0.6592504, 51.1998994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500960" }, "bbox": [ -0.3955302, 51.2435859, -0.3955302, 51.2435859 ], "geometry": { "type": "Point", "coordinates": [ -0.3955302, 51.2435859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18465881" }, "bbox": [ -0.3038057, 51.2081724, -0.3038057, 51.2081724 ], "geometry": { "type": "Point", "coordinates": [ -0.3038057, 51.2081724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12433883" }, "bbox": [ -0.3927268, 51.1822734, -0.3927268, 51.1822734 ], "geometry": { "type": "Point", "coordinates": [ -0.3927268, 51.1822734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98398024" }, "bbox": [ -0.5889795, 51.1439638, -0.5889795, 51.1439638 ], "geometry": { "type": "Point", "coordinates": [ -0.5889795, 51.1439638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00393447" }, "bbox": [ -0.566872, 51.1455102, -0.566872, 51.1455102 ], "geometry": { "type": "Point", "coordinates": [ -0.566872, 51.1455102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13430303" }, "bbox": [ -0.38501, 51.1754454, -0.38501, 51.1754454 ], "geometry": { "type": "Point", "coordinates": [ -0.38501, 51.1754454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17463499" }, "bbox": [ -0.3215971, 51.2100698, -0.3215971, 51.2100698 ], "geometry": { "type": "Point", "coordinates": [ -0.3215971, 51.2100698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12424834" }, "bbox": [ -0.3926236, 51.1691897, -0.3926236, 51.1691897 ], "geometry": { "type": "Point", "coordinates": [ -0.3926236, 51.1691897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12425445" }, "bbox": [ -0.3916866, 51.1702707, -0.3916866, 51.1702707 ], "geometry": { "type": "Point", "coordinates": [ -0.3916866, 51.1702707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12420032" }, "bbox": [ -0.4004473, 51.1694497, -0.4004473, 51.1694497 ], "geometry": { "type": "Point", "coordinates": [ -0.4004473, 51.1694497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498357" }, "bbox": [ -0.1418744, 51.2308337, -0.1418744, 51.2308337 ], "geometry": { "type": "Point", "coordinates": [ -0.1418744, 51.2308337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498434" }, "bbox": [ -0.1420217, 51.2285474, -0.1420217, 51.2285474 ], "geometry": { "type": "Point", "coordinates": [ -0.1420217, 51.2285474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24527767" }, "bbox": [ -0.2132957, 51.2595947, -0.2132957, 51.2595947 ], "geometry": { "type": "Point", "coordinates": [ -0.2132957, 51.2595947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20527244" }, "bbox": [ -0.2713053, 51.2583398, -0.2713053, 51.2583398 ], "geometry": { "type": "Point", "coordinates": [ -0.2713053, 51.2583398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20526434" }, "bbox": [ -0.272168, 51.2577471, -0.272168, 51.2577471 ], "geometry": { "type": "Point", "coordinates": [ -0.272168, 51.2577471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20526953" }, "bbox": [ -0.2718817, 51.2592338, -0.2718817, 51.2592338 ], "geometry": { "type": "Point", "coordinates": [ -0.2718817, 51.2592338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20525526" }, "bbox": [ -0.2732719, 51.2570835, -0.2732719, 51.2570835 ], "geometry": { "type": "Point", "coordinates": [ -0.2732719, 51.2570835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24527985" }, "bbox": [ -0.2134275, 51.2610044, -0.2134275, 51.2610044 ], "geometry": { "type": "Point", "coordinates": [ -0.2134275, 51.2610044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24528091" }, "bbox": [ -0.2123962, 51.2623257, -0.2123962, 51.2623257 ], "geometry": { "type": "Point", "coordinates": [ -0.2123962, 51.2623257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05464247" }, "bbox": [ -0.4921562, 51.2077426, -0.4921562, 51.2077426 ], "geometry": { "type": "Point", "coordinates": [ -0.4921562, 51.2077426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00353177" }, "bbox": [ -0.5683492, 51.1124742, -0.5683492, 51.1124742 ], "geometry": { "type": "Point", "coordinates": [ -0.5683492, 51.1124742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466844" }, "bbox": [ -0.4742311, 51.2071588, -0.4742311, 51.2071588 ], "geometry": { "type": "Point", "coordinates": [ -0.4742311, 51.2071588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467340" }, "bbox": [ -0.4735337, 51.206847, -0.4735337, 51.206847 ], "geometry": { "type": "Point", "coordinates": [ -0.4735337, 51.206847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467040" }, "bbox": [ -0.4740863, 51.2067816, -0.4740863, 51.2067816 ], "geometry": { "type": "Point", "coordinates": [ -0.4740863, 51.2067816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06442949" }, "bbox": [ -0.4804218, 51.1897932, -0.4804218, 51.1897932 ], "geometry": { "type": "Point", "coordinates": [ -0.4804218, 51.1897932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21569726" }, "bbox": [ -0.2520034, 51.2924703, -0.2520034, 51.2924703 ], "geometry": { "type": "Point", "coordinates": [ -0.2520034, 51.2924703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00352195" }, "bbox": [ -0.5697884, 51.1140884, -0.5697884, 51.1140884 ], "geometry": { "type": "Point", "coordinates": [ -0.5697884, 51.1140884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93322739" }, "bbox": [ -0.6696569, 51.0832988, -0.6696569, 51.0832988 ], "geometry": { "type": "Point", "coordinates": [ -0.6696569, 51.0832988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93321749" }, "bbox": [ -0.6712234, 51.0841978, -0.6712234, 51.0841978 ], "geometry": { "type": "Point", "coordinates": [ -0.6712234, 51.0841978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467437" }, "bbox": [ -0.4733933, 51.2065411, -0.4733933, 51.2065411 ], "geometry": { "type": "Point", "coordinates": [ -0.4733933, 51.2065411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06463101" }, "bbox": [ -0.4797402, 51.2033714, -0.4797402, 51.2033714 ], "geometry": { "type": "Point", "coordinates": [ -0.4797402, 51.2033714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06452197" }, "bbox": [ -0.4823016, 51.2029298, -0.4823016, 51.2029298 ], "geometry": { "type": "Point", "coordinates": [ -0.4823016, 51.2029298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27557277" }, "bbox": [ -0.1699746, 51.2867408, -0.1699746, 51.2867408 ], "geometry": { "type": "Point", "coordinates": [ -0.1699746, 51.2867408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466233" }, "bbox": [ -0.4750382, 51.2062213, -0.4750382, 51.2062213 ], "geometry": { "type": "Point", "coordinates": [ -0.4750382, 51.2062213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466039" }, "bbox": [ -0.4753419, 51.2068342, -0.4753419, 51.2068342 ], "geometry": { "type": "Point", "coordinates": [ -0.4753419, 51.2068342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06465847" }, "bbox": [ -0.475545, 51.2074837, -0.475545, 51.2074837 ], "geometry": { "type": "Point", "coordinates": [ -0.475545, 51.2074837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497545" }, "bbox": [ -0.1430831, 51.2293874, -0.1430831, 51.2293874 ], "geometry": { "type": "Point", "coordinates": [ -0.1430831, 51.2293874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92435960" }, "bbox": [ -0.6765349, 51.1842098, -0.6765349, 51.1842098 ], "geometry": { "type": "Point", "coordinates": [ -0.6765349, 51.1842098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92434262" }, "bbox": [ -0.6789762, 51.1843906, -0.6789762, 51.1843906 ], "geometry": { "type": "Point", "coordinates": [ -0.6789762, 51.1843906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95399324" }, "bbox": [ -0.63008, 51.1444901, -0.63008, 51.1444901 ], "geometry": { "type": "Point", "coordinates": [ -0.63008, 51.1444901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95397664" }, "bbox": [ -0.6321383, 51.1480543, -0.6321383, 51.1480543 ], "geometry": { "type": "Point", "coordinates": [ -0.6321383, 51.1480543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95398338" }, "bbox": [ -0.6311925, 51.1456975, -0.6311925, 51.1456975 ], "geometry": { "type": "Point", "coordinates": [ -0.6311925, 51.1456975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06442862" }, "bbox": [ -0.4804667, 51.1909042, -0.4804667, 51.1909042 ], "geometry": { "type": "Point", "coordinates": [ -0.4804667, 51.1909042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466850" }, "bbox": [ -0.474186, 51.2077991, -0.474186, 51.2077991 ], "geometry": { "type": "Point", "coordinates": [ -0.474186, 51.2077991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12437367" }, "bbox": [ -0.3887214, 51.1813193, -0.3887214, 51.1813193 ], "geometry": { "type": "Point", "coordinates": [ -0.3887214, 51.1813193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06462715" }, "bbox": [ -0.4808331, 51.2046506, -0.4808331, 51.2046506 ], "geometry": { "type": "Point", "coordinates": [ -0.4808331, 51.2046506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06463416" }, "bbox": [ -0.4792357, 51.2048083, -0.4792357, 51.2048083 ], "geometry": { "type": "Point", "coordinates": [ -0.4792357, 51.2048083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21472223" }, "bbox": [ -0.2654221, 51.2112556, -0.2654221, 51.2112556 ], "geometry": { "type": "Point", "coordinates": [ -0.2654221, 51.2112556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92493163" }, "bbox": [ -0.679195, 51.2381021, -0.679195, 51.2381021 ], "geometry": { "type": "Point", "coordinates": [ -0.679195, 51.2381021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92492460" }, "bbox": [ -0.680157, 51.2380985, -0.680157, 51.2380985 ], "geometry": { "type": "Point", "coordinates": [ -0.680157, 51.2380985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92492653" }, "bbox": [ -0.6798585, 51.2374757, -0.6798585, 51.2374757 ], "geometry": { "type": "Point", "coordinates": [ -0.6798585, 51.2374757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17413847" }, "bbox": [ -0.3206951, 51.1605032, -0.3206951, 51.1605032 ], "geometry": { "type": "Point", "coordinates": [ -0.3206951, 51.1605032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24428498" }, "bbox": [ -0.2157488, 51.1721687, -0.2157488, 51.1721687 ], "geometry": { "type": "Point", "coordinates": [ -0.2157488, 51.1721687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429094" }, "bbox": [ -0.2147811, 51.1720248, -0.2147811, 51.1720248 ], "geometry": { "type": "Point", "coordinates": [ -0.2147811, 51.1720248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24438201" }, "bbox": [ -0.215843, 51.1726842, -0.215843, 51.1726842 ], "geometry": { "type": "Point", "coordinates": [ -0.215843, 51.1726842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94339442" }, "bbox": [ -0.645623, 51.0922913, -0.645623, 51.0922913 ], "geometry": { "type": "Point", "coordinates": [ -0.645623, 51.0922913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17413435" }, "bbox": [ -0.3234076, 51.1592767, -0.3234076, 51.1592767 ], "geometry": { "type": "Point", "coordinates": [ -0.3234076, 51.1592767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08542529" }, "bbox": [ -0.44941, 51.2774808, -0.44941, 51.2774808 ], "geometry": { "type": "Point", "coordinates": [ -0.44941, 51.2774808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08542533" }, "bbox": [ -0.449585, 51.2780696, -0.449585, 51.2780696 ], "geometry": { "type": "Point", "coordinates": [ -0.449585, 51.2780696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08532560" }, "bbox": [ -0.4498106, 51.2715361, -0.4498106, 51.2715361 ], "geometry": { "type": "Point", "coordinates": [ -0.4498106, 51.2715361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431699" }, "bbox": [ -0.6826429, 51.1877081, -0.6826429, 51.1877081 ], "geometry": { "type": "Point", "coordinates": [ -0.6826429, 51.1877081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91552255" }, "bbox": [ -0.6934867, 51.2917841, -0.6934867, 51.2917841 ], "geometry": { "type": "Point", "coordinates": [ -0.6934867, 51.2917841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02676461" }, "bbox": [ -0.5260342, 51.3981231, -0.5260342, 51.3981231 ], "geometry": { "type": "Point", "coordinates": [ -0.5260342, 51.3981231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12393681" }, "bbox": [ -0.3951724, 51.146634, -0.3951724, 51.146634 ], "geometry": { "type": "Point", "coordinates": [ -0.3951724, 51.146634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82479101" }, "bbox": [ -0.8143251, 51.2163183, -0.8143251, 51.2163183 ], "geometry": { "type": "Point", "coordinates": [ -0.8143251, 51.2163183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344208" }, "bbox": [ -0.653303, 51.0982093, -0.653303, 51.0982093 ], "geometry": { "type": "Point", "coordinates": [ -0.653303, 51.0982093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26542358" }, "bbox": [ -0.1916487, 51.2763467, -0.1916487, 51.2763467 ], "geometry": { "type": "Point", "coordinates": [ -0.1916487, 51.2763467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33497768" }, "bbox": [ -0.0859119, 51.2306285, -0.0859119, 51.2306285 ], "geometry": { "type": "Point", "coordinates": [ -0.0859119, 51.2306285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92440412" }, "bbox": [ -0.6843327, 51.1888695, -0.6843327, 51.1888695 ], "geometry": { "type": "Point", "coordinates": [ -0.6843327, 51.1888695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18390756" }, "bbox": [ -0.3134247, 51.1430942, -0.3134247, 51.1430942 ], "geometry": { "type": "Point", "coordinates": [ -0.3134247, 51.1430942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18392231" }, "bbox": [ -0.3118087, 51.1412025, -0.3118087, 51.1412025 ], "geometry": { "type": "Point", "coordinates": [ -0.3118087, 51.1412025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17399872" }, "bbox": [ -0.3147765, 51.1442379, -0.3147765, 51.1442379 ], "geometry": { "type": "Point", "coordinates": [ -0.3147765, 51.1442379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491215" }, "bbox": [ -0.3670501, 51.2303408, -0.3670501, 51.2303408 ], "geometry": { "type": "Point", "coordinates": [ -0.3670501, 51.2303408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490916" }, "bbox": [ -0.3673261, 51.2302587, -0.3673261, 51.2302587 ], "geometry": { "type": "Point", "coordinates": [ -0.3673261, 51.2302587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491220" }, "bbox": [ -0.3669781, 51.2305516, -0.3669781, 51.2305516 ], "geometry": { "type": "Point", "coordinates": [ -0.3669781, 51.2305516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490444" }, "bbox": [ -0.3678444, 51.2325547, -0.3678444, 51.2325547 ], "geometry": { "type": "Point", "coordinates": [ -0.3678444, 51.2325547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13498944" }, "bbox": [ -0.3697524, 51.2326733, -0.3697524, 51.2326733 ], "geometry": { "type": "Point", "coordinates": [ -0.3697524, 51.2326733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13498333" }, "bbox": [ -0.3708489, 51.2318767, -0.3708489, 51.2318767 ], "geometry": { "type": "Point", "coordinates": [ -0.3708489, 51.2318767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14486514" }, "bbox": [ -0.3598964, 51.2208667, -0.3598964, 51.2208667 ], "geometry": { "type": "Point", "coordinates": [ -0.3598964, 51.2208667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13498556" }, "bbox": [ -0.370582, 51.2338842, -0.370582, 51.2338842 ], "geometry": { "type": "Point", "coordinates": [ -0.370582, 51.2338842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499722" }, "bbox": [ -0.3690391, 51.2309728, -0.3690391, 51.2309728 ], "geometry": { "type": "Point", "coordinates": [ -0.3690391, 51.2309728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499920" }, "bbox": [ -0.3688572, 51.2306501, -0.3688572, 51.2306501 ], "geometry": { "type": "Point", "coordinates": [ -0.3688572, 51.2306501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491328" }, "bbox": [ -0.3668128, 51.2312525, -0.3668128, 51.2312525 ], "geometry": { "type": "Point", "coordinates": [ -0.3668128, 51.2312525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490926" }, "bbox": [ -0.3672951, 51.231156, -0.3672951, 51.231156 ], "geometry": { "type": "Point", "coordinates": [ -0.3672951, 51.231156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499948" }, "bbox": [ -0.3685938, 51.2331996, -0.3685938, 51.2331996 ], "geometry": { "type": "Point", "coordinates": [ -0.3685938, 51.2331996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33504923" }, "bbox": [ -0.0893882, 51.2356288, -0.0893882, 51.2356288 ], "geometry": { "type": "Point", "coordinates": [ -0.0893882, 51.2356288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478826" }, "bbox": [ -0.31374, 51.2124331, -0.31374, 51.2124331 ], "geometry": { "type": "Point", "coordinates": [ -0.31374, 51.2124331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478829" }, "bbox": [ -0.3138258, 51.2126934, -0.3138258, 51.2126934 ], "geometry": { "type": "Point", "coordinates": [ -0.3138258, 51.2126934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478324" }, "bbox": [ -0.3143901, 51.2122626, -0.3143901, 51.2122626 ], "geometry": { "type": "Point", "coordinates": [ -0.3143901, 51.2122626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361897" }, "bbox": [ -0.6840236, 51.1248074, -0.6840236, 51.1248074 ], "geometry": { "type": "Point", "coordinates": [ -0.6840236, 51.1248074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94333861" }, "bbox": [ -0.6535849, 51.0938835, -0.6535849, 51.0938835 ], "geometry": { "type": "Point", "coordinates": [ -0.6535849, 51.0938835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94337283" }, "bbox": [ -0.6489158, 51.0959079, -0.6489158, 51.0959079 ], "geometry": { "type": "Point", "coordinates": [ -0.6489158, 51.0959079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02434620" }, "bbox": [ -0.5356002, 51.1788571, -0.5356002, 51.1788571 ], "geometry": { "type": "Point", "coordinates": [ -0.5356002, 51.1788571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94336049" }, "bbox": [ -0.6505851, 51.092874, -0.6505851, 51.092874 ], "geometry": { "type": "Point", "coordinates": [ -0.6505851, 51.092874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19602794" }, "bbox": [ -0.2886039, 51.3349786, -0.2886039, 51.3349786 ], "geometry": { "type": "Point", "coordinates": [ -0.2886039, 51.3349786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19606589" }, "bbox": [ -0.2838272, 51.3344371, -0.2838272, 51.3344371 ], "geometry": { "type": "Point", "coordinates": [ -0.2838272, 51.3344371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19608380" }, "bbox": [ -0.2813133, 51.3335568, -0.2813133, 51.3335568 ], "geometry": { "type": "Point", "coordinates": [ -0.2813133, 51.3335568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37403827" }, "bbox": [ -0.0372484, 51.1452264, -0.0372484, 51.1452264 ], "geometry": { "type": "Point", "coordinates": [ -0.0372484, 51.1452264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37403026" }, "bbox": [ -0.0384923, 51.1451598, -0.0384923, 51.1451598 ], "geometry": { "type": "Point", "coordinates": [ -0.0384923, 51.1451598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37404416" }, "bbox": [ -0.036585, 51.1442188, -0.036585, 51.1442188 ], "geometry": { "type": "Point", "coordinates": [ -0.036585, 51.1442188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37406126" }, "bbox": [ -0.0341972, 51.144978, -0.0341972, 51.144978 ], "geometry": { "type": "Point", "coordinates": [ -0.0341972, 51.144978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37404110" }, "bbox": [ -0.0370886, 51.143637, -0.0370886, 51.143637 ], "geometry": { "type": "Point", "coordinates": [ -0.0370886, 51.143637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42554395" }, "bbox": [ 0.0408522, 51.2849384, 0.0408522, 51.2849384 ], "geometry": { "type": "Point", "coordinates": [ 0.0408522, 51.2849384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08533222" }, "bbox": [ -0.4486669, 51.2677954, -0.4486669, 51.2677954 ], "geometry": { "type": "Point", "coordinates": [ -0.4486669, 51.2677954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08532234" }, "bbox": [ -0.4500813, 51.2689587, -0.4500813, 51.2689587 ], "geometry": { "type": "Point", "coordinates": [ -0.4500813, 51.2689587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31488747" }, "bbox": [ -0.1131577, 51.2201382, -0.1131577, 51.2201382 ], "geometry": { "type": "Point", "coordinates": [ -0.1131577, 51.2201382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03655575" }, "bbox": [ -0.5129714, 51.3816074, -0.5129714, 51.3816074 ], "geometry": { "type": "Point", "coordinates": [ -0.5129714, 51.3816074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03654859" }, "bbox": [ -0.5146872, 51.3801988, -0.5146872, 51.3801988 ], "geometry": { "type": "Point", "coordinates": [ -0.5146872, 51.3801988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03653972" }, "bbox": [ -0.5159083, 51.3810879, -0.5159083, 51.3810879 ], "geometry": { "type": "Point", "coordinates": [ -0.5159083, 51.3810879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03655747" }, "bbox": [ -0.5131585, 51.3788018, -0.5131585, 51.3788018 ], "geometry": { "type": "Point", "coordinates": [ -0.5131585, 51.3788018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19481502" }, "bbox": [ -0.2953912, 51.2187682, -0.2953912, 51.2187682 ], "geometry": { "type": "Point", "coordinates": [ -0.2953912, 51.2187682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19481312" }, "bbox": [ -0.2956862, 51.219837, -0.2956862, 51.219837 ], "geometry": { "type": "Point", "coordinates": [ -0.2956862, 51.219837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19482031" }, "bbox": [ -0.2945583, 51.2214392, -0.2945583, 51.2214392 ], "geometry": { "type": "Point", "coordinates": [ -0.2945583, 51.2214392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19471465" }, "bbox": [ -0.2957338, 51.2137998, -0.2957338, 51.2137998 ], "geometry": { "type": "Point", "coordinates": [ -0.2957338, 51.2137998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19474573" }, "bbox": [ -0.2911377, 51.2162937, -0.2911377, 51.2162937 ], "geometry": { "type": "Point", "coordinates": [ -0.2911377, 51.2162937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19475299" }, "bbox": [ -0.2899994, 51.2184761, -0.2899994, 51.2184761 ], "geometry": { "type": "Point", "coordinates": [ -0.2899994, 51.2184761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19462695" }, "bbox": [ -0.2938839, 51.2092547, -0.2938839, 51.2092547 ], "geometry": { "type": "Point", "coordinates": [ -0.2938839, 51.2092547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19466996" }, "bbox": [ -0.2886619, 51.2089642, -0.2886619, 51.2089642 ], "geometry": { "type": "Point", "coordinates": [ -0.2886619, 51.2089642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19463973" }, "bbox": [ -0.2922827, 51.2072877, -0.2922827, 51.2072877 ], "geometry": { "type": "Point", "coordinates": [ -0.2922827, 51.2072877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19463273" }, "bbox": [ -0.2933839, 51.2073038, -0.2933839, 51.2073038 ], "geometry": { "type": "Point", "coordinates": [ -0.2933839, 51.2073038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18488807" }, "bbox": [ -0.2991179, 51.2192621, -0.2991179, 51.2192621 ], "geometry": { "type": "Point", "coordinates": [ -0.2991179, 51.2192621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18477892" }, "bbox": [ -0.3007056, 51.218198, -0.3007056, 51.218198 ], "geometry": { "type": "Point", "coordinates": [ -0.3007056, 51.218198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05471050" }, "bbox": [ -0.4960397, 51.2171388, -0.4960397, 51.2171388 ], "geometry": { "type": "Point", "coordinates": [ -0.4960397, 51.2171388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92491864" }, "bbox": [ -0.6811591, 51.2386709, -0.6811591, 51.2386709 ], "geometry": { "type": "Point", "coordinates": [ -0.6811591, 51.2386709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18479477" }, "bbox": [ -0.2982861, 51.2167784, -0.2982861, 51.2167784 ], "geometry": { "type": "Point", "coordinates": [ -0.2982861, 51.2167784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35575045" }, "bbox": [ -0.0582639, 51.2995669, -0.0582639, 51.2995669 ], "geometry": { "type": "Point", "coordinates": [ -0.0582639, 51.2995669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92475935" }, "bbox": [ -0.6756969, 51.2184234, -0.6756969, 51.2184234 ], "geometry": { "type": "Point", "coordinates": [ -0.6756969, 51.2184234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476129" }, "bbox": [ -0.6753525, 51.2172766, -0.6753525, 51.2172766 ], "geometry": { "type": "Point", "coordinates": [ -0.6753525, 51.2172766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20495444" }, "bbox": [ -0.2748809, 51.2314785, -0.2748809, 51.2314785 ], "geometry": { "type": "Point", "coordinates": [ -0.2748809, 51.2314785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20493650" }, "bbox": [ -0.27757, 51.2322745, -0.27757, 51.2322745 ], "geometry": { "type": "Point", "coordinates": [ -0.27757, 51.2322745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05601452" }, "bbox": [ -0.4918286, 51.3340499, -0.4918286, 51.3340499 ], "geometry": { "type": "Point", "coordinates": [ -0.4918286, 51.3340499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40458865" }, "bbox": [ 0.0148424, 51.1927548, 0.0148424, 51.1927548 ], "geometry": { "type": "Point", "coordinates": [ 0.0148424, 51.1927548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22533931" }, "bbox": [ -0.2471074, 51.2658358, -0.2471074, 51.2658358 ], "geometry": { "type": "Point", "coordinates": [ -0.2471074, 51.2658358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04479436" }, "bbox": [ -0.4987205, 51.2159638, -0.4987205, 51.2159638 ], "geometry": { "type": "Point", "coordinates": [ -0.4987205, 51.2159638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90499329" }, "bbox": [ -0.6990339, 51.2355396, -0.6990339, 51.2355396 ], "geometry": { "type": "Point", "coordinates": [ -0.6990339, 51.2355396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17439461" }, "bbox": [ -0.3141814, 51.1794157, -0.3141814, 51.1794157 ], "geometry": { "type": "Point", "coordinates": [ -0.3141814, 51.1794157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09580696" }, "bbox": [ -0.4363903, 51.3192604, -0.4363903, 51.3192604 ], "geometry": { "type": "Point", "coordinates": [ -0.4363903, 51.3192604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09590742" }, "bbox": [ -0.4367747, 51.3239282, -0.4367747, 51.3239282 ], "geometry": { "type": "Point", "coordinates": [ -0.4367747, 51.3239282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34417049" }, "bbox": [ -0.0756016, 51.1569384, -0.0756016, 51.1569384 ], "geometry": { "type": "Point", "coordinates": [ -0.0756016, 51.1569384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04484053" }, "bbox": [ -0.505979, 51.2264365, -0.505979, 51.2264365 ], "geometry": { "type": "Point", "coordinates": [ -0.505979, 51.2264365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03489961" }, "bbox": [ -0.512054, 51.227273, -0.512054, 51.227273 ], "geometry": { "type": "Point", "coordinates": [ -0.512054, 51.227273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24410242" }, "bbox": [ -0.22778, 51.1586275, -0.22778, 51.1586275 ], "geometry": { "type": "Point", "coordinates": [ -0.22778, 51.1586275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11367070" }, "bbox": [ -0.4054715, 51.1187553, -0.4054715, 51.1187553 ], "geometry": { "type": "Point", "coordinates": [ -0.4054715, 51.1187553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20393494" }, "bbox": [ -0.2806313, 51.1460089, -0.2806313, 51.1460089 ], "geometry": { "type": "Point", "coordinates": [ -0.2806313, 51.1460089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16389654" }, "bbox": [ -0.3297098, 51.1342098, -0.3297098, 51.1342098 ], "geometry": { "type": "Point", "coordinates": [ -0.3297098, 51.1342098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23473557" }, "bbox": [ -0.2353329, 51.2140237, -0.2353329, 51.2140237 ], "geometry": { "type": "Point", "coordinates": [ -0.2353329, 51.2140237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20423330" }, "bbox": [ -0.2804543, 51.1673218, -0.2804543, 51.1673218 ], "geometry": { "type": "Point", "coordinates": [ -0.2804543, 51.1673218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20426796" }, "bbox": [ -0.2753285, 51.173159, -0.2753285, 51.173159 ], "geometry": { "type": "Point", "coordinates": [ -0.2753285, 51.173159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00486875" }, "bbox": [ -0.5591175, 51.2292341, -0.5591175, 51.2292341 ], "geometry": { "type": "Point", "coordinates": [ -0.5591175, 51.2292341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35485958" }, "bbox": [ -0.0598101, 51.2202949, -0.0598101, 51.2202949 ], "geometry": { "type": "Point", "coordinates": [ -0.0598101, 51.2202949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35486896" }, "bbox": [ -0.0586006, 51.2237652, -0.0586006, 51.2237652 ], "geometry": { "type": "Point", "coordinates": [ -0.0586006, 51.2237652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35487396" }, "bbox": [ -0.0577995, 51.2236055, -0.0577995, 51.2236055 ], "geometry": { "type": "Point", "coordinates": [ -0.0577995, 51.2236055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35498038" }, "bbox": [ -0.0567686, 51.227451, -0.0567686, 51.227451 ], "geometry": { "type": "Point", "coordinates": [ -0.0567686, 51.227451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35496626" }, "bbox": [ -0.0587051, 51.2264345, -0.0587051, 51.2264345 ], "geometry": { "type": "Point", "coordinates": [ -0.0587051, 51.2264345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22512566" }, "bbox": [ -0.2497174, 51.2509695, -0.2497174, 51.2509695 ], "geometry": { "type": "Point", "coordinates": [ -0.2497174, 51.2509695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21424414" }, "bbox": [ -0.2648469, 51.1657414, -0.2648469, 51.1657414 ], "geometry": { "type": "Point", "coordinates": [ -0.2648469, 51.1657414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22472257" }, "bbox": [ -0.2515728, 51.2143147, -0.2515728, 51.2143147 ], "geometry": { "type": "Point", "coordinates": [ -0.2515728, 51.2143147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22472353" }, "bbox": [ -0.2513135, 51.2137137, -0.2513135, 51.2137137 ], "geometry": { "type": "Point", "coordinates": [ -0.2513135, 51.2137137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10350982" }, "bbox": [ -0.4286625, 51.1110563, -0.4286625, 51.1110563 ], "geometry": { "type": "Point", "coordinates": [ -0.4286625, 51.1110563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10350762" }, "bbox": [ -0.429085, 51.1093423, -0.429085, 51.1093423 ], "geometry": { "type": "Point", "coordinates": [ -0.429085, 51.1093423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09370873" }, "bbox": [ -0.4424617, 51.1285266, -0.4424617, 51.1285266 ], "geometry": { "type": "Point", "coordinates": [ -0.4424617, 51.1285266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08379781" }, "bbox": [ -0.4441272, 51.1291449, -0.4441272, 51.1291449 ], "geometry": { "type": "Point", "coordinates": [ -0.4441272, 51.1291449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92416391" }, "bbox": [ -0.6765156, 51.1690312, -0.6765156, 51.1690312 ], "geometry": { "type": "Point", "coordinates": [ -0.6765156, 51.1690312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04489287" }, "bbox": [ -0.4983667, 51.2293415, -0.4983667, 51.2293415 ], "geometry": { "type": "Point", "coordinates": [ -0.4983667, 51.2293415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22464946" }, "bbox": [ -0.248296, 51.2041488, -0.248296, 51.2041488 ], "geometry": { "type": "Point", "coordinates": [ -0.248296, 51.2041488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472546" }, "bbox": [ -0.236877, 51.2130972, -0.236877, 51.2130972 ], "geometry": { "type": "Point", "coordinates": [ -0.236877, 51.2130972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16556844" }, "bbox": [ -0.3282319, 51.2861698, -0.3282319, 51.2861698 ], "geometry": { "type": "Point", "coordinates": [ -0.3282319, 51.2861698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22494241" }, "bbox": [ -0.2479661, 51.2308115, -0.2479661, 51.2308115 ], "geometry": { "type": "Point", "coordinates": [ -0.2479661, 51.2308115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08465102" }, "bbox": [ -0.4482187, 51.202443, -0.4482187, 51.202443 ], "geometry": { "type": "Point", "coordinates": [ -0.4482187, 51.202443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24462095" }, "bbox": [ -0.2232744, 51.2083184, -0.2232744, 51.2083184 ], "geometry": { "type": "Point", "coordinates": [ -0.2232744, 51.2083184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24474607" }, "bbox": [ -0.2196299, 51.2093032, -0.2196299, 51.2093032 ], "geometry": { "type": "Point", "coordinates": [ -0.2196299, 51.2093032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24478491" }, "bbox": [ -0.2144396, 51.2167643, -0.2144396, 51.2167643 ], "geometry": { "type": "Point", "coordinates": [ -0.2144396, 51.2167643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24470140" }, "bbox": [ -0.2255708, 51.2123771, -0.2255708, 51.2123771 ], "geometry": { "type": "Point", "coordinates": [ -0.2255708, 51.2123771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24477976" }, "bbox": [ -0.2145906, 51.2154714, -0.2145906, 51.2154714 ], "geometry": { "type": "Point", "coordinates": [ -0.2145906, 51.2154714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07475774" }, "bbox": [ -0.4610403, 51.2187581, -0.4610403, 51.2187581 ], "geometry": { "type": "Point", "coordinates": [ -0.4610403, 51.2187581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07475571" }, "bbox": [ -0.4614607, 51.2185038, -0.4614607, 51.2185038 ], "geometry": { "type": "Point", "coordinates": [ -0.4614607, 51.2185038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07445882" }, "bbox": [ -0.4616862, 51.192538, -0.4616862, 51.192538 ], "geometry": { "type": "Point", "coordinates": [ -0.4616862, 51.192538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23474452" }, "bbox": [ -0.2340762, 51.2135647, -0.2340762, 51.2135647 ], "geometry": { "type": "Point", "coordinates": [ -0.2340762, 51.2135647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94510439" }, "bbox": [ -0.6538574, 51.2538977, -0.6538574, 51.2538977 ], "geometry": { "type": "Point", "coordinates": [ -0.6538574, 51.2538977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23432101" }, "bbox": [ -0.239736, 51.1728561, -0.239736, 51.1728561 ], "geometry": { "type": "Point", "coordinates": [ -0.239736, 51.1728561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23430451" }, "bbox": [ -0.2411011, 51.1776098, -0.2411011, 51.1776098 ], "geometry": { "type": "Point", "coordinates": [ -0.2411011, 51.1776098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25460628" }, "bbox": [ -0.2109732, 51.2019926, -0.2109732, 51.2019926 ], "geometry": { "type": "Point", "coordinates": [ -0.2109732, 51.2019926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14627725" }, "bbox": [ -0.3534092, 51.3478251, -0.3534092, 51.3478251 ], "geometry": { "type": "Point", "coordinates": [ -0.3534092, 51.3478251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22486985" }, "bbox": [ -0.2443767, 51.2256653, -0.2443767, 51.2256653 ], "geometry": { "type": "Point", "coordinates": [ -0.2443767, 51.2256653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90431175" }, "bbox": [ -0.7120287, 51.1858904, -0.7120287, 51.1858904 ], "geometry": { "type": "Point", "coordinates": [ -0.7120287, 51.1858904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90432480" }, "bbox": [ -0.7102001, 51.1862535, -0.7102001, 51.1862535 ], "geometry": { "type": "Point", "coordinates": [ -0.7102001, 51.1862535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90430072" }, "bbox": [ -0.7136348, 51.1855483, -0.7136348, 51.1855483 ], "geometry": { "type": "Point", "coordinates": [ -0.7136348, 51.1855483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90431668" }, "bbox": [ -0.7114322, 51.1851963, -0.7114322, 51.1851963 ], "geometry": { "type": "Point", "coordinates": [ -0.7114322, 51.1851963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89435175" }, "bbox": [ -0.7208329, 51.1859251, -0.7208329, 51.1859251 ], "geometry": { "type": "Point", "coordinates": [ -0.7208329, 51.1859251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89435685" }, "bbox": [ -0.7199263, 51.186848, -0.7199263, 51.186848 ], "geometry": { "type": "Point", "coordinates": [ -0.7199263, 51.186848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11364243" }, "bbox": [ -0.4101066, 51.1166137, -0.4101066, 51.1166137 ], "geometry": { "type": "Point", "coordinates": [ -0.4101066, 51.1166137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21475084" }, "bbox": [ -0.261623, 51.2165679, -0.261623, 51.2165679 ], "geometry": { "type": "Point", "coordinates": [ -0.261623, 51.2165679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22478508" }, "bbox": [ -0.2427426, 51.2097731, -0.2427426, 51.2097731 ], "geometry": { "type": "Point", "coordinates": [ -0.2427426, 51.2097731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98380932" }, "bbox": [ -0.5996221, 51.1358839, -0.5996221, 51.1358839 ], "geometry": { "type": "Point", "coordinates": [ -0.5996221, 51.1358839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24467287" }, "bbox": [ -0.2159146, 51.20745, -0.2159146, 51.20745 ], "geometry": { "type": "Point", "coordinates": [ -0.2159146, 51.20745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25476208" }, "bbox": [ -0.2030062, 51.209283, -0.2030062, 51.209283 ], "geometry": { "type": "Point", "coordinates": [ -0.2030062, 51.209283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42431704" }, "bbox": [ 0.0322084, 51.1689891, 0.0322084, 51.1689891 ], "geometry": { "type": "Point", "coordinates": [ 0.0322084, 51.1689891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33457803" }, "bbox": [ -0.0870874, 51.1887932, -0.0870874, 51.1887932 ], "geometry": { "type": "Point", "coordinates": [ -0.0870874, 51.1887932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32459725" }, "bbox": [ -0.0984305, 51.1909962, -0.0984305, 51.1909962 ], "geometry": { "type": "Point", "coordinates": [ -0.0984305, 51.1909962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93553280" }, "bbox": [ -0.662946, 51.2936691, -0.662946, 51.2936691 ], "geometry": { "type": "Point", "coordinates": [ -0.662946, 51.2936691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94550746" }, "bbox": [ -0.6523749, 51.2905432, -0.6523749, 51.2905432 ], "geometry": { "type": "Point", "coordinates": [ -0.6523749, 51.2905432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24477759" }, "bbox": [ -0.2153461, 51.2135423, -0.2153461, 51.2135423 ], "geometry": { "type": "Point", "coordinates": [ -0.2153461, 51.2135423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00653775" }, "bbox": [ -0.5589692, 51.3820069, -0.5589692, 51.3820069 ], "geometry": { "type": "Point", "coordinates": [ -0.5589692, 51.3820069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00652361" }, "bbox": [ -0.561066, 51.3807451, -0.561066, 51.3807451 ], "geometry": { "type": "Point", "coordinates": [ -0.561066, 51.3807451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95393770" }, "bbox": [ -0.6379617, 51.1486205, -0.6379617, 51.1486205 ], "geometry": { "type": "Point", "coordinates": [ -0.6379617, 51.1486205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11509557" }, "bbox": [ -0.3974155, 51.2433961, -0.3974155, 51.2433961 ], "geometry": { "type": "Point", "coordinates": [ -0.3974155, 51.2433961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11509651" }, "bbox": [ -0.3973503, 51.2428537, -0.3973503, 51.2428537 ], "geometry": { "type": "Point", "coordinates": [ -0.3973503, 51.2428537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16458351" }, "bbox": [ -0.3296275, 51.1969457, -0.3296275, 51.1969457 ], "geometry": { "type": "Point", "coordinates": [ -0.3296275, 51.1969457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455738" }, "bbox": [ -0.1756947, 51.1934604, -0.1756947, 51.1934604 ], "geometry": { "type": "Point", "coordinates": [ -0.1756947, 51.1934604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93559639" }, "bbox": [ -0.6538027, 51.2899169, -0.6538027, 51.2899169 ], "geometry": { "type": "Point", "coordinates": [ -0.6538027, 51.2899169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93551882" }, "bbox": [ -0.6649716, 51.2936643, -0.6649716, 51.2936643 ], "geometry": { "type": "Point", "coordinates": [ -0.6649716, 51.2936643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14529358" }, "bbox": [ -0.3538187, 51.261278, -0.3538187, 51.261278 ], "geometry": { "type": "Point", "coordinates": [ -0.3538187, 51.261278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26437322" }, "bbox": [ -0.1886711, 51.1741356, -0.1886711, 51.1741356 ], "geometry": { "type": "Point", "coordinates": [ -0.1886711, 51.1741356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26437917" }, "bbox": [ -0.1877247, 51.173771, -0.1877247, 51.173771 ], "geometry": { "type": "Point", "coordinates": [ -0.1877247, 51.173771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26471948" }, "bbox": [ -0.1949484, 51.2126913, -0.1949484, 51.2126913 ], "geometry": { "type": "Point", "coordinates": [ -0.1949484, 51.2126913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470814" }, "bbox": [ -0.1966404, 51.2094663, -0.1966404, 51.2094663 ], "geometry": { "type": "Point", "coordinates": [ -0.1966404, 51.2094663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470711" }, "bbox": [ -0.1964245, 51.2092884, -0.1964245, 51.2092884 ], "geometry": { "type": "Point", "coordinates": [ -0.1964245, 51.2092884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470383" }, "bbox": [ -0.1970999, 51.2155613, -0.1970999, 51.2155613 ], "geometry": { "type": "Point", "coordinates": [ -0.1970999, 51.2155613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470385" }, "bbox": [ -0.1968915, 51.2159403, -0.1968915, 51.2159403 ], "geometry": { "type": "Point", "coordinates": [ -0.1968915, 51.2159403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20475401" }, "bbox": [ -0.2754281, 51.2097411, -0.2754281, 51.2097411 ], "geometry": { "type": "Point", "coordinates": [ -0.2754281, 51.2097411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93593276" }, "bbox": [ -0.6619689, 51.3293339, -0.6619689, 51.3293339 ], "geometry": { "type": "Point", "coordinates": [ -0.6619689, 51.3293339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00487565" }, "bbox": [ -0.5593615, 51.2276699, -0.5593615, 51.2276699 ], "geometry": { "type": "Point", "coordinates": [ -0.5593615, 51.2276699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00484846" }, "bbox": [ -0.5623396, 51.226564, -0.5623396, 51.226564 ], "geometry": { "type": "Point", "coordinates": [ -0.5623396, 51.226564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24407488" }, "bbox": [ -0.2177138, 51.1536328, -0.2177138, 51.1536328 ], "geometry": { "type": "Point", "coordinates": [ -0.2177138, 51.1536328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24408589" }, "bbox": [ -0.2161939, 51.153716, -0.2161939, 51.153716 ], "geometry": { "type": "Point", "coordinates": [ -0.2161939, 51.153716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24407484" }, "bbox": [ -0.2177018, 51.1532812, -0.2177018, 51.1532812 ], "geometry": { "type": "Point", "coordinates": [ -0.2177018, 51.1532812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26471450" }, "bbox": [ -0.1954013, 51.212158, -0.1954013, 51.212158 ], "geometry": { "type": "Point", "coordinates": [ -0.1954013, 51.212158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25479438" }, "bbox": [ -0.1984478, 51.2125319, -0.1984478, 51.2125319 ], "geometry": { "type": "Point", "coordinates": [ -0.1984478, 51.2125319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416892" }, "bbox": [ -0.4184126, 51.1656911, -0.4184126, 51.1656911 ], "geometry": { "type": "Point", "coordinates": [ -0.4184126, 51.1656911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416281" }, "bbox": [ -0.4194107, 51.1650574, -0.4194107, 51.1650574 ], "geometry": { "type": "Point", "coordinates": [ -0.4194107, 51.1650574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415490" }, "bbox": [ -0.4204908, 51.1656225, -0.4204908, 51.1656225 ], "geometry": { "type": "Point", "coordinates": [ -0.4204908, 51.1656225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23450496" }, "bbox": [ -0.2400083, 51.1995049, -0.2400083, 51.1995049 ], "geometry": { "type": "Point", "coordinates": [ -0.2400083, 51.1995049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37406299" }, "bbox": [ -0.0336088, 51.1516912, -0.0336088, 51.1516912 ], "geometry": { "type": "Point", "coordinates": [ -0.0336088, 51.1516912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37404456" }, "bbox": [ -0.0363548, 51.1477986, -0.0363548, 51.1477986 ], "geometry": { "type": "Point", "coordinates": [ -0.0363548, 51.1477986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18440574" }, "bbox": [ -0.3122262, 51.1897861, -0.3122262, 51.1897861 ], "geometry": { "type": "Point", "coordinates": [ -0.3122262, 51.1897861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24467924" }, "bbox": [ -0.2152863, 51.2018005, -0.2152863, 51.2018005 ], "geometry": { "type": "Point", "coordinates": [ -0.2152863, 51.2018005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17461569" }, "bbox": [ -0.3241803, 51.2073728, -0.3241803, 51.2073728 ], "geometry": { "type": "Point", "coordinates": [ -0.3241803, 51.2073728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17463083" }, "bbox": [ -0.3213631, 51.2088812, -0.3213631, 51.2088812 ], "geometry": { "type": "Point", "coordinates": [ -0.3213631, 51.2088812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24486921" }, "bbox": [ -0.2161399, 51.2195785, -0.2161399, 51.2195785 ], "geometry": { "type": "Point", "coordinates": [ -0.2161399, 51.2195785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03332383" }, "bbox": [ -0.527268, 51.0945052, -0.527268, 51.0945052 ], "geometry": { "type": "Point", "coordinates": [ -0.527268, 51.0945052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23484158" }, "bbox": [ -0.2346714, 51.2228605, -0.2346714, 51.2228605 ], "geometry": { "type": "Point", "coordinates": [ -0.2346714, 51.2228605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22476502" }, "bbox": [ -0.2453176, 51.2090384, -0.2453176, 51.2090384 ], "geometry": { "type": "Point", "coordinates": [ -0.2453176, 51.2090384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27459063" }, "bbox": [ -0.1708719, 51.1956314, -0.1708719, 51.1956314 ], "geometry": { "type": "Point", "coordinates": [ -0.1708719, 51.1956314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22476719" }, "bbox": [ -0.2461819, 51.2107735, -0.2461819, 51.2107735 ], "geometry": { "type": "Point", "coordinates": [ -0.2461819, 51.2107735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22472811" }, "bbox": [ -0.2510732, 51.2104136, -0.2510732, 51.2104136 ], "geometry": { "type": "Point", "coordinates": [ -0.2510732, 51.2104136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93552353" }, "bbox": [ -0.6643711, 51.2912986, -0.6643711, 51.2912986 ], "geometry": { "type": "Point", "coordinates": [ -0.6643711, 51.2912986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14528493" }, "bbox": [ -0.3553744, 51.2642589, -0.3553744, 51.2642589 ], "geometry": { "type": "Point", "coordinates": [ -0.3553744, 51.2642589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23477582" }, "bbox": [ -0.229188, 51.2159164, -0.229188, 51.2159164 ], "geometry": { "type": "Point", "coordinates": [ -0.229188, 51.2159164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99390647" }, "bbox": [ -0.5851988, 51.1459741, -0.5851988, 51.1459741 ], "geometry": { "type": "Point", "coordinates": [ -0.5851988, 51.1459741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09522294" }, "bbox": [ -0.4367577, 51.2653845, -0.4367577, 51.2653845 ], "geometry": { "type": "Point", "coordinates": [ -0.4367577, 51.2653845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08521196" }, "bbox": [ -0.4507292, 51.2646573, -0.4507292, 51.2646573 ], "geometry": { "type": "Point", "coordinates": [ -0.4507292, 51.2646573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08525490" }, "bbox": [ -0.4469077, 51.2653038, -0.4469077, 51.2653038 ], "geometry": { "type": "Point", "coordinates": [ -0.4469077, 51.2653038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477837" }, "bbox": [ -0.3151944, 51.2132373, -0.3151944, 51.2132373 ], "geometry": { "type": "Point", "coordinates": [ -0.3151944, 51.2132373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477933" }, "bbox": [ -0.3151084, 51.2128991, -0.3151084, 51.2128991 ], "geometry": { "type": "Point", "coordinates": [ -0.3151084, 51.2128991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98429929" }, "bbox": [ -0.5855374, 51.1712757, -0.5855374, 51.1712757 ], "geometry": { "type": "Point", "coordinates": [ -0.5855374, 51.1712757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08408744" }, "bbox": [ -0.4449745, 51.1527956, -0.4449745, 51.1527956 ], "geometry": { "type": "Point", "coordinates": [ -0.4449745, 51.1527956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407551" }, "bbox": [ -0.446467, 51.1535121, -0.446467, 51.1535121 ], "geometry": { "type": "Point", "coordinates": [ -0.446467, 51.1535121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372019" }, "bbox": [ -0.3410566, 51.1222925, -0.3410566, 51.1222925 ], "geometry": { "type": "Point", "coordinates": [ -0.3410566, 51.1222925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372217" }, "bbox": [ -0.3407378, 51.1219909, -0.3407378, 51.1219909 ], "geometry": { "type": "Point", "coordinates": [ -0.3407378, 51.1219909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86420136" }, "bbox": [ -0.7712627, 51.1738885, -0.7712627, 51.1738885 ], "geometry": { "type": "Point", "coordinates": [ -0.7712627, 51.1738885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85427588" }, "bbox": [ -0.7747257, 51.1786497, -0.7747257, 51.1786497 ], "geometry": { "type": "Point", "coordinates": [ -0.7747257, 51.1786497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513875" }, "bbox": [ -0.233491, 51.251485, -0.233491, 51.251485 ], "geometry": { "type": "Point", "coordinates": [ -0.233491, 51.251485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15438139" }, "bbox": [ -0.3445943, 51.1780682, -0.3445943, 51.1780682 ], "geometry": { "type": "Point", "coordinates": [ -0.3445943, 51.1780682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455243" }, "bbox": [ -0.1763741, 51.1939431, -0.1763741, 51.1939431 ], "geometry": { "type": "Point", "coordinates": [ -0.1763741, 51.1939431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16384905" }, "bbox": [ -0.3371846, 51.1296882, -0.3371846, 51.1296882 ], "geometry": { "type": "Point", "coordinates": [ -0.3371846, 51.1296882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21495308" }, "bbox": [ -0.2609742, 51.2278908, -0.2609742, 51.2278908 ], "geometry": { "type": "Point", "coordinates": [ -0.2609742, 51.2278908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90399324" }, "bbox": [ -0.7017742, 51.145433, -0.7017742, 51.145433 ], "geometry": { "type": "Point", "coordinates": [ -0.7017742, 51.145433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15437757" }, "bbox": [ -0.3451585, 51.1797169, -0.3451585, 51.1797169 ], "geometry": { "type": "Point", "coordinates": [ -0.3451585, 51.1797169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14381644" }, "bbox": [ -0.3697226, 51.133891, -0.3697226, 51.133891 ], "geometry": { "type": "Point", "coordinates": [ -0.3697226, 51.133891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26526383" }, "bbox": [ -0.1862749, 51.2606325, -0.1862749, 51.2606325 ], "geometry": { "type": "Point", "coordinates": [ -0.1862749, 51.2606325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549171" }, "bbox": [ -0.5831233, 51.28332, -0.5831233, 51.28332 ], "geometry": { "type": "Point", "coordinates": [ -0.5831233, 51.28332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549742" }, "bbox": [ -0.5819555, 51.2812864, -0.5819555, 51.2812864 ], "geometry": { "type": "Point", "coordinates": [ -0.5819555, 51.2812864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99542129" }, "bbox": [ -0.5797754, 51.2789503, -0.5797754, 51.2789503 ], "geometry": { "type": "Point", "coordinates": [ -0.5797754, 51.2789503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99540929" }, "bbox": [ -0.5808099, 51.2789863, -0.5808099, 51.2789863 ], "geometry": { "type": "Point", "coordinates": [ -0.5808099, 51.2789863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99544749" }, "bbox": [ -0.5754081, 51.2806853, -0.5754081, 51.2806853 ], "geometry": { "type": "Point", "coordinates": [ -0.5754081, 51.2806853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99543353" }, "bbox": [ -0.577159, 51.2811001, -0.577159, 51.2811001 ], "geometry": { "type": "Point", "coordinates": [ -0.577159, 51.2811001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99544137" }, "bbox": [ -0.5762128, 51.279572, -0.5762128, 51.279572 ], "geometry": { "type": "Point", "coordinates": [ -0.5762128, 51.279572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99542250" }, "bbox": [ -0.5788553, 51.280817, -0.5788553, 51.280817 ], "geometry": { "type": "Point", "coordinates": [ -0.5788553, 51.280817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99551307" }, "bbox": [ -0.5797868, 51.2861598, -0.5797868, 51.2861598 ], "geometry": { "type": "Point", "coordinates": [ -0.5797868, 51.2861598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99552710" }, "bbox": [ -0.5779366, 51.2864208, -0.5779366, 51.2864208 ], "geometry": { "type": "Point", "coordinates": [ -0.5779366, 51.2864208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99551320" }, "bbox": [ -0.5798432, 51.2872968, -0.5798432, 51.2872968 ], "geometry": { "type": "Point", "coordinates": [ -0.5798432, 51.2872968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99542120" }, "bbox": [ -0.5792055, 51.2782349, -0.5792055, 51.2782349 ], "geometry": { "type": "Point", "coordinates": [ -0.5792055, 51.2782349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99542295" }, "bbox": [ -0.5785756, 51.2849996, -0.5785756, 51.2849996 ], "geometry": { "type": "Point", "coordinates": [ -0.5785756, 51.2849996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549575" }, "bbox": [ -0.5827225, 51.2829781, -0.5827225, 51.2829781 ], "geometry": { "type": "Point", "coordinates": [ -0.5827225, 51.2829781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17393734" }, "bbox": [ -0.323293, 51.1412942, -0.323293, 51.1412942 ], "geometry": { "type": "Point", "coordinates": [ -0.323293, 51.1412942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382647" }, "bbox": [ -0.7253568, 51.138464, -0.7253568, 51.138464 ], "geometry": { "type": "Point", "coordinates": [ -0.7253568, 51.138464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15372643" }, "bbox": [ -0.354255, 51.1246579, -0.354255, 51.1246579 ], "geometry": { "type": "Point", "coordinates": [ -0.354255, 51.1246579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98366039" }, "bbox": [ -0.5926543, 51.1183076, -0.5926543, 51.1183076 ], "geometry": { "type": "Point", "coordinates": [ -0.5926543, 51.1183076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05532521" }, "bbox": [ -0.4930145, 51.2684496, -0.4930145, 51.2684496 ], "geometry": { "type": "Point", "coordinates": [ -0.4930145, 51.2684496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06531481" }, "bbox": [ -0.4796047, 51.2735125, -0.4796047, 51.2735125 ], "geometry": { "type": "Point", "coordinates": [ -0.4796047, 51.2735125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06530181" }, "bbox": [ -0.4815517, 51.2738199, -0.4815517, 51.2738199 ], "geometry": { "type": "Point", "coordinates": [ -0.4815517, 51.2738199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06533379" }, "bbox": [ -0.4769957, 51.2733038, -0.4769957, 51.2733038 ], "geometry": { "type": "Point", "coordinates": [ -0.4769957, 51.2733038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06541094" }, "bbox": [ -0.4815781, 51.2838001, -0.4815781, 51.2838001 ], "geometry": { "type": "Point", "coordinates": [ -0.4815781, 51.2838001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07532273" }, "bbox": [ -0.4642928, 51.27279, -0.4642928, 51.27279 ], "geometry": { "type": "Point", "coordinates": [ -0.4642928, 51.27279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07554806" }, "bbox": [ -0.4601255, 51.2845017, -0.4601255, 51.2845017 ], "geometry": { "type": "Point", "coordinates": [ -0.4601255, 51.2845017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07490495" }, "bbox": [ -0.4692221, 51.2393114, -0.4692221, 51.2393114 ], "geometry": { "type": "Point", "coordinates": [ -0.4692221, 51.2393114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31477337" }, "bbox": [ -0.1154488, 51.2103746, -0.1154488, 51.2103746 ], "geometry": { "type": "Point", "coordinates": [ -0.1154488, 51.2103746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389999" }, "bbox": [ -0.6148902, 51.1419441, -0.6148902, 51.1419441 ], "geometry": { "type": "Point", "coordinates": [ -0.6148902, 51.1419441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15471113" }, "bbox": [ -0.3535211, 51.2117506, -0.3535211, 51.2117506 ], "geometry": { "type": "Point", "coordinates": [ -0.3535211, 51.2117506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15372831" }, "bbox": [ -0.3542757, 51.1235924, -0.3542757, 51.1235924 ], "geometry": { "type": "Point", "coordinates": [ -0.3542757, 51.1235924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89381424" }, "bbox": [ -0.7272354, 51.1365022, -0.7272354, 51.1365022 ], "geometry": { "type": "Point", "coordinates": [ -0.7272354, 51.1365022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16524759" }, "bbox": [ -0.332252, 51.2606497, -0.332252, 51.2606497 ], "geometry": { "type": "Point", "coordinates": [ -0.332252, 51.2606497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412163" }, "bbox": [ -0.5251856, 51.1646129, -0.5251856, 51.1646129 ], "geometry": { "type": "Point", "coordinates": [ -0.5251856, 51.1646129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382133" }, "bbox": [ -0.7263072, 51.1373456, -0.7263072, 51.1373456 ], "geometry": { "type": "Point", "coordinates": [ -0.7263072, 51.1373456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32483304" }, "bbox": [ -0.1066041, 51.2162576, -0.1066041, 51.2162576 ], "geometry": { "type": "Point", "coordinates": [ -0.1066041, 51.2162576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37432879" }, "bbox": [ -0.0374857, 51.1768898, -0.0374857, 51.1768898 ], "geometry": { "type": "Point", "coordinates": [ -0.0374857, 51.1768898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97511890" }, "bbox": [ -0.6086052, 51.2580191, -0.6086052, 51.2580191 ], "geometry": { "type": "Point", "coordinates": [ -0.6086052, 51.2580191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97515585" }, "bbox": [ -0.603618, 51.2572226, -0.603618, 51.2572226 ], "geometry": { "type": "Point", "coordinates": [ -0.603618, 51.2572226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97524122" }, "bbox": [ -0.6055297, 51.2609446, -0.6055297, 51.2609446 ], "geometry": { "type": "Point", "coordinates": [ -0.6055297, 51.2609446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97525712" }, "bbox": [ -0.6032524, 51.2597877, -0.6032524, 51.2597877 ], "geometry": { "type": "Point", "coordinates": [ -0.6032524, 51.2597877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98421020" }, "bbox": [ -0.5981378, 51.170615, -0.5981378, 51.170615 ], "geometry": { "type": "Point", "coordinates": [ -0.5981378, 51.170615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98421433" }, "bbox": [ -0.5979198, 51.1715279, -0.5979198, 51.1715279 ], "geometry": { "type": "Point", "coordinates": [ -0.5979198, 51.1715279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98421206" }, "bbox": [ -0.5979066, 51.1693908, -0.5979066, 51.1693908 ], "geometry": { "type": "Point", "coordinates": [ -0.5979066, 51.1693908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98410894" }, "bbox": [ -0.598472, 51.1682919, -0.598472, 51.1682919 ], "geometry": { "type": "Point", "coordinates": [ -0.598472, 51.1682919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415919" }, "bbox": [ -0.462703, 51.1598851, -0.462703, 51.1598851 ], "geometry": { "type": "Point", "coordinates": [ -0.462703, 51.1598851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97510797" }, "bbox": [ -0.6102099, 51.2587028, -0.6102099, 51.2587028 ], "geometry": { "type": "Point", "coordinates": [ -0.6102099, 51.2587028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02376934" }, "bbox": [ -0.5340549, 51.1261526, -0.5340549, 51.1261526 ], "geometry": { "type": "Point", "coordinates": [ -0.5340549, 51.1261526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16416735" }, "bbox": [ -0.3325363, 51.160213, -0.3325363, 51.160213 ], "geometry": { "type": "Point", "coordinates": [ -0.3325363, 51.160213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16418812" }, "bbox": [ -0.3298852, 51.1574795, -0.3298852, 51.1574795 ], "geometry": { "type": "Point", "coordinates": [ -0.3298852, 51.1574795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86426870" }, "bbox": [ -0.7612984, 51.177093, -0.7612984, 51.177093 ], "geometry": { "type": "Point", "coordinates": [ -0.7612984, 51.177093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12495019" }, "bbox": [ -0.390109, 51.2309911, -0.390109, 51.2309911 ], "geometry": { "type": "Point", "coordinates": [ -0.390109, 51.2309911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09463550" }, "bbox": [ -0.4359472, 51.2072945, -0.4359472, 51.2072945 ], "geometry": { "type": "Point", "coordinates": [ -0.4359472, 51.2072945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15495359" }, "bbox": [ -0.3465838, 51.233831, -0.3465838, 51.233831 ], "geometry": { "type": "Point", "coordinates": [ -0.3465838, 51.233831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14496605" }, "bbox": [ -0.3592801, 51.2290879, -0.3592801, 51.2290879 ], "geometry": { "type": "Point", "coordinates": [ -0.3592801, 51.2290879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14492753" }, "bbox": [ -0.3646033, 51.233549, -0.3646033, 51.233549 ], "geometry": { "type": "Point", "coordinates": [ -0.3646033, 51.233549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32471028" }, "bbox": [ -0.1103335, 51.2095093, -0.1103335, 51.2095093 ], "geometry": { "type": "Point", "coordinates": [ -0.1103335, 51.2095093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20620826" }, "bbox": [ -0.2772294, 51.3467819, -0.2772294, 51.3467819 ], "geometry": { "type": "Point", "coordinates": [ -0.2772294, 51.3467819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20620446" }, "bbox": [ -0.2776848, 51.34856, -0.2776848, 51.34856 ], "geometry": { "type": "Point", "coordinates": [ -0.2776848, 51.34856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20621339" }, "bbox": [ -0.2764506, 51.3478017, -0.2764506, 51.3478017 ], "geometry": { "type": "Point", "coordinates": [ -0.2764506, 51.3478017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19629735" }, "bbox": [ -0.2787239, 51.3475471, -0.2787239, 51.3475471 ], "geometry": { "type": "Point", "coordinates": [ -0.2787239, 51.3475471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19627862" }, "bbox": [ -0.2813983, 51.3500582, -0.2813983, 51.3500582 ], "geometry": { "type": "Point", "coordinates": [ -0.2813983, 51.3500582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19629249" }, "bbox": [ -0.2792939, 51.3488444, -0.2792939, 51.3488444 ], "geometry": { "type": "Point", "coordinates": [ -0.2792939, 51.3488444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413521" }, "bbox": [ -0.294661, 51.1577543, -0.294661, 51.1577543 ], "geometry": { "type": "Point", "coordinates": [ -0.294661, 51.1577543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34514509" }, "bbox": [ -0.075194, 51.2433485, -0.075194, 51.2433485 ], "geometry": { "type": "Point", "coordinates": [ -0.075194, 51.2433485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94379316" }, "bbox": [ -0.6448062, 51.1259322, -0.6448062, 51.1259322 ], "geometry": { "type": "Point", "coordinates": [ -0.6448062, 51.1259322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38393391" }, "bbox": [ -0.0240419, 51.1416891, -0.0240419, 51.1416891 ], "geometry": { "type": "Point", "coordinates": [ -0.0240419, 51.1416891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27462643" }, "bbox": [ -0.1797876, 51.2028015, -0.1797876, 51.2028015 ], "geometry": { "type": "Point", "coordinates": [ -0.1797876, 51.2028015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27461138" }, "bbox": [ -0.1818246, 51.2027034, -0.1818246, 51.2027034 ], "geometry": { "type": "Point", "coordinates": [ -0.1818246, 51.2027034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27461613" }, "bbox": [ -0.1812248, 51.2003251, -0.1812248, 51.2003251 ], "geometry": { "type": "Point", "coordinates": [ -0.1812248, 51.2003251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29458310" }, "bbox": [ -0.1436061, 51.1903274, -0.1436061, 51.1903274 ], "geometry": { "type": "Point", "coordinates": [ -0.1436061, 51.1903274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449868" }, "bbox": [ -0.3274138, 51.1894371, -0.3274138, 51.1894371 ], "geometry": { "type": "Point", "coordinates": [ -0.3274138, 51.1894371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96396447" }, "bbox": [ -0.6213942, 51.1463607, -0.6213942, 51.1463607 ], "geometry": { "type": "Point", "coordinates": [ -0.6213942, 51.1463607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93367483" }, "bbox": [ -0.661986, 51.1231434, -0.661986, 51.1231434 ], "geometry": { "type": "Point", "coordinates": [ -0.661986, 51.1231434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15476751" }, "bbox": [ -0.3455582, 51.2150923, -0.3455582, 51.2150923 ], "geometry": { "type": "Point", "coordinates": [ -0.3455582, 51.2150923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36602350" }, "bbox": [ -0.0460651, 51.3272569, -0.0460651, 51.3272569 ], "geometry": { "type": "Point", "coordinates": [ -0.0460651, 51.3272569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36601222" }, "bbox": [ -0.0476643, 51.3252278, -0.0476643, 51.3252278 ], "geometry": { "type": "Point", "coordinates": [ -0.0476643, 51.3252278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24432498" }, "bbox": [ -0.2237124, 51.1815608, -0.2237124, 51.1815608 ], "geometry": { "type": "Point", "coordinates": [ -0.2237124, 51.1815608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24443563" }, "bbox": [ -0.222071, 51.187403, -0.222071, 51.187403 ], "geometry": { "type": "Point", "coordinates": [ -0.222071, 51.187403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24443851" }, "bbox": [ -0.2216825, 51.1863189, -0.2216825, 51.1863189 ], "geometry": { "type": "Point", "coordinates": [ -0.2216825, 51.1863189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24443534" }, "bbox": [ -0.2222069, 51.1846353, -0.2222069, 51.1846353 ], "geometry": { "type": "Point", "coordinates": [ -0.2222069, 51.1846353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15473484" }, "bbox": [ -0.3499011, 51.2181971, -0.3499011, 51.2181971 ], "geometry": { "type": "Point", "coordinates": [ -0.3499011, 51.2181971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15474876" }, "bbox": [ -0.347873, 51.217259, -0.347873, 51.217259 ], "geometry": { "type": "Point", "coordinates": [ -0.347873, 51.217259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15485502" }, "bbox": [ -0.3470388, 51.2197737, -0.3470388, 51.2197737 ], "geometry": { "type": "Point", "coordinates": [ -0.3470388, 51.2197737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22424889" }, "bbox": [ -0.2493783, 51.1719766, -0.2493783, 51.1719766 ], "geometry": { "type": "Point", "coordinates": [ -0.2493783, 51.1719766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421962" }, "bbox": [ -0.2535525, 51.1697749, -0.2535525, 51.1697749 ], "geometry": { "type": "Point", "coordinates": [ -0.2535525, 51.1697749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22424350" }, "bbox": [ -0.2501555, 51.1687186, -0.2501555, 51.1687186 ], "geometry": { "type": "Point", "coordinates": [ -0.2501555, 51.1687186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24433398" }, "bbox": [ -0.2224027, 51.1816533, -0.2224027, 51.1816533 ], "geometry": { "type": "Point", "coordinates": [ -0.2224027, 51.1816533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14492683" }, "bbox": [ -0.363862, 51.2361016, -0.363862, 51.2361016 ], "geometry": { "type": "Point", "coordinates": [ -0.363862, 51.2361016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15493281" }, "bbox": [ -0.3494773, 51.2358581, -0.3494773, 51.2358581 ], "geometry": { "type": "Point", "coordinates": [ -0.3494773, 51.2358581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94424590" }, "bbox": [ -0.6521309, 51.1774623, -0.6521309, 51.1774623 ], "geometry": { "type": "Point", "coordinates": [ -0.6521309, 51.1774623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15485223" }, "bbox": [ -0.3470183, 51.2216975, -0.3470183, 51.2216975 ], "geometry": { "type": "Point", "coordinates": [ -0.3470183, 51.2216975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23437769" }, "bbox": [ -0.2307841, 51.1790756, -0.2307841, 51.1790756 ], "geometry": { "type": "Point", "coordinates": [ -0.2307841, 51.1790756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30463284" }, "bbox": [ -0.1358905, 51.205903, -0.1358905, 51.205903 ], "geometry": { "type": "Point", "coordinates": [ -0.1358905, 51.205903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23489358" }, "bbox": [ -0.2268346, 51.2229221, -0.2268346, 51.2229221 ], "geometry": { "type": "Point", "coordinates": [ -0.2268346, 51.2229221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15558222" }, "bbox": [ -0.3405617, 51.2843299, -0.3405617, 51.2843299 ], "geometry": { "type": "Point", "coordinates": [ -0.3405617, 51.2843299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20450183" }, "bbox": [ -0.2834783, 51.1989914, -0.2834783, 51.1989914 ], "geometry": { "type": "Point", "coordinates": [ -0.2834783, 51.1989914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22432144" }, "bbox": [ -0.2531021, 51.1771897, -0.2531021, 51.1771897 ], "geometry": { "type": "Point", "coordinates": [ -0.2531021, 51.1771897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21447651" }, "bbox": [ -0.2591576, 51.186864, -0.2591576, 51.186864 ], "geometry": { "type": "Point", "coordinates": [ -0.2591576, 51.186864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30556161" }, "bbox": [ -0.1287284, 51.284669, -0.1287284, 51.284669 ], "geometry": { "type": "Point", "coordinates": [ -0.1287284, 51.284669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03512924" }, "bbox": [ -0.5214014, 51.2511485, -0.5214014, 51.2511485 ], "geometry": { "type": "Point", "coordinates": [ -0.5214014, 51.2511485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97330282" }, "bbox": [ -0.6157196, 51.0955413, -0.6157196, 51.0955413 ], "geometry": { "type": "Point", "coordinates": [ -0.6157196, 51.0955413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96338684" }, "bbox": [ -0.6177661, 51.0956994, -0.6177661, 51.0956994 ], "geometry": { "type": "Point", "coordinates": [ -0.6177661, 51.0956994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96339798" }, "bbox": [ -0.6162099, 51.0971018, -0.6162099, 51.0971018 ], "geometry": { "type": "Point", "coordinates": [ -0.6162099, 51.0971018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18498703" }, "bbox": [ -0.2990716, 51.2281716, -0.2990716, 51.2281716 ], "geometry": { "type": "Point", "coordinates": [ -0.2990716, 51.2281716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91356827" }, "bbox": [ -0.6917819, 51.1093423, -0.6917819, 51.1093423 ], "geometry": { "type": "Point", "coordinates": [ -0.6917819, 51.1093423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24405974" }, "bbox": [ -0.220332, 51.1521568, -0.220332, 51.1521568 ], "geometry": { "type": "Point", "coordinates": [ -0.220332, 51.1521568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24403861" }, "bbox": [ -0.2231657, 51.15117, -0.2231657, 51.15117 ], "geometry": { "type": "Point", "coordinates": [ -0.2231657, 51.15117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02541089" }, "bbox": [ -0.5374383, 51.2839428, -0.5374383, 51.2839428 ], "geometry": { "type": "Point", "coordinates": [ -0.5374383, 51.2839428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10359977" }, "bbox": [ -0.4158833, 51.1103955, -0.4158833, 51.1103955 ], "geometry": { "type": "Point", "coordinates": [ -0.4158833, 51.1103955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25455042" }, "bbox": [ -0.2053413, 51.1939688, -0.2053413, 51.1939688 ], "geometry": { "type": "Point", "coordinates": [ -0.2053413, 51.1939688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25457348" }, "bbox": [ -0.2020022, 51.1949787, -0.2020022, 51.1949787 ], "geometry": { "type": "Point", "coordinates": [ -0.2020022, 51.1949787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08385178" }, "bbox": [ -0.4504651, 51.1380037, -0.4504651, 51.1380037 ], "geometry": { "type": "Point", "coordinates": [ -0.4504651, 51.1380037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18377558" }, "bbox": [ -0.304956, 51.1252553, -0.304956, 51.1252553 ], "geometry": { "type": "Point", "coordinates": [ -0.304956, 51.1252553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38591484" }, "bbox": [ -0.0175977, 51.3208358, -0.0175977, 51.3208358 ], "geometry": { "type": "Point", "coordinates": [ -0.0175977, 51.3208358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38592472" }, "bbox": [ -0.017358, 51.3199678, -0.017358, 51.3199678 ], "geometry": { "type": "Point", "coordinates": [ -0.017358, 51.3199678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600940" }, "bbox": [ -0.0050601, 51.3257426, -0.0050601, 51.3257426 ], "geometry": { "type": "Point", "coordinates": [ -0.0050601, 51.3257426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39601342" }, "bbox": [ -0.004393, 51.3259571, -0.004393, 51.3259571 ], "geometry": { "type": "Point", "coordinates": [ -0.004393, 51.3259571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39601042" }, "bbox": [ -0.0050825, 51.3258437, -0.0050825, 51.3258437 ], "geometry": { "type": "Point", "coordinates": [ -0.0050825, 51.3258437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600943" }, "bbox": [ -0.0051146, 51.3259873, -0.0051146, 51.3259873 ], "geometry": { "type": "Point", "coordinates": [ -0.0051146, 51.3259873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38594658" }, "bbox": [ -0.014591, 51.3185207, -0.014591, 51.3185207 ], "geometry": { "type": "Point", "coordinates": [ -0.014591, 51.3185207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39448399" }, "bbox": [ -0.0005281, 51.1871045, -0.0005281, 51.1871045 ], "geometry": { "type": "Point", "coordinates": [ -0.0005281, 51.1871045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39601448" }, "bbox": [ -0.0043723, 51.326355, -0.0043723, 51.326355 ], "geometry": { "type": "Point", "coordinates": [ -0.0043723, 51.326355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33484088" }, "bbox": [ -0.0910635, 51.2235573, -0.0910635, 51.2235573 ], "geometry": { "type": "Point", "coordinates": [ -0.0910635, 51.2235573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33481289" }, "bbox": [ -0.0948705, 51.2236955, -0.0948705, 51.2236955 ], "geometry": { "type": "Point", "coordinates": [ -0.0948705, 51.2236955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386355" }, "bbox": [ -0.2771693, 51.1335115, -0.2771693, 51.1335115 ], "geometry": { "type": "Point", "coordinates": [ -0.2771693, 51.1335115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20384376" }, "bbox": [ -0.2800228, 51.1354977, -0.2800228, 51.1354977 ], "geometry": { "type": "Point", "coordinates": [ -0.2800228, 51.1354977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20384453" }, "bbox": [ -0.2800314, 51.1334103, -0.2800314, 51.1334103 ], "geometry": { "type": "Point", "coordinates": [ -0.2800314, 51.1334103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85425051" }, "bbox": [ -0.7782616, 51.1754151, -0.7782616, 51.1754151 ], "geometry": { "type": "Point", "coordinates": [ -0.7782616, 51.1754151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13589045" }, "bbox": [ -0.3670619, 51.3138278, -0.3670619, 51.3138278 ], "geometry": { "type": "Point", "coordinates": [ -0.3670619, 51.3138278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84410444" }, "bbox": [ -0.7997446, 51.1659418, -0.7997446, 51.1659418 ], "geometry": { "type": "Point", "coordinates": [ -0.7997446, 51.1659418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10567082" }, "bbox": [ -0.4135418, 51.2998816, -0.4135418, 51.2998816 ], "geometry": { "type": "Point", "coordinates": [ -0.4135418, 51.2998816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06539149" }, "bbox": [ -0.4690081, 51.2705774, -0.4690081, 51.2705774 ], "geometry": { "type": "Point", "coordinates": [ -0.4690081, 51.2705774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89475661" }, "bbox": [ -0.7189289, 51.220716, -0.7189289, 51.220716 ], "geometry": { "type": "Point", "coordinates": [ -0.7189289, 51.220716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12578015" }, "bbox": [ -0.3834693, 51.3022508, -0.3834693, 51.3022508 ], "geometry": { "type": "Point", "coordinates": [ -0.3834693, 51.3022508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96358940" }, "bbox": [ -0.6171778, 51.1098496, -0.6171778, 51.1098496 ], "geometry": { "type": "Point", "coordinates": [ -0.6171778, 51.1098496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96357348" }, "bbox": [ -0.619536, 51.110579, -0.619536, 51.110579 ], "geometry": { "type": "Point", "coordinates": [ -0.619536, 51.110579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91630566" }, "bbox": [ -0.6936019, 51.3647238, -0.6936019, 51.3647238 ], "geometry": { "type": "Point", "coordinates": [ -0.6936019, 51.3647238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12562891" }, "bbox": [ -0.3909684, 51.3002448, -0.3909684, 51.3002448 ], "geometry": { "type": "Point", "coordinates": [ -0.3909684, 51.3002448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12573101" }, "bbox": [ -0.3903518, 51.3012007, -0.3903518, 51.3012007 ], "geometry": { "type": "Point", "coordinates": [ -0.3903518, 51.3012007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39551290" }, "bbox": [ -0.0064482, 51.2852584, -0.0064482, 51.2852584 ], "geometry": { "type": "Point", "coordinates": [ -0.0064482, 51.2852584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21514744" }, "bbox": [ -0.2608685, 51.24944, -0.2608685, 51.24944 ], "geometry": { "type": "Point", "coordinates": [ -0.2608685, 51.24944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96359375" }, "bbox": [ -0.6167903, 51.1128777, -0.6167903, 51.1128777 ], "geometry": { "type": "Point", "coordinates": [ -0.6167903, 51.1128777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99412481" }, "bbox": [ -0.5822685, 51.1665373, -0.5822685, 51.1665373 ], "geometry": { "type": "Point", "coordinates": [ -0.5822685, 51.1665373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02403598" }, "bbox": [ -0.5376706, 51.1590049, -0.5376706, 51.1590049 ], "geometry": { "type": "Point", "coordinates": [ -0.5376706, 51.1590049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93440925" }, "bbox": [ -0.6694251, 51.189969, -0.6694251, 51.189969 ], "geometry": { "type": "Point", "coordinates": [ -0.6694251, 51.189969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05589741" }, "bbox": [ -0.4808067, 51.3149051, -0.4808067, 51.3149051 ], "geometry": { "type": "Point", "coordinates": [ -0.4808067, 51.3149051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33485239" }, "bbox": [ -0.0892591, 51.2193913, -0.0892591, 51.2193913 ], "geometry": { "type": "Point", "coordinates": [ -0.0892591, 51.2193913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579413" }, "bbox": [ -0.3956366, 51.3023089, -0.3956366, 51.3023089 ], "geometry": { "type": "Point", "coordinates": [ -0.3956366, 51.3023089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579320" }, "bbox": [ -0.3958259, 51.3029089, -0.3958259, 51.3029089 ], "geometry": { "type": "Point", "coordinates": [ -0.3958259, 51.3029089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12561499" }, "bbox": [ -0.39294, 51.300733, -0.39294, 51.300733 ], "geometry": { "type": "Point", "coordinates": [ -0.39294, 51.300733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579127" }, "bbox": [ -0.3960247, 51.3035691, -0.3960247, 51.3035691 ], "geometry": { "type": "Point", "coordinates": [ -0.3960247, 51.3035691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579822" }, "bbox": [ -0.3950003, 51.3030145, -0.3950003, 51.3030145 ], "geometry": { "type": "Point", "coordinates": [ -0.3950003, 51.3030145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579914" }, "bbox": [ -0.394973, 51.3023541, -0.394973, 51.3023541 ], "geometry": { "type": "Point", "coordinates": [ -0.394973, 51.3023541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579829" }, "bbox": [ -0.3950481, 51.3037249, -0.3950481, 51.3037249 ], "geometry": { "type": "Point", "coordinates": [ -0.3950481, 51.3037249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02434917" }, "bbox": [ -0.5347607, 51.1784791, -0.5347607, 51.1784791 ], "geometry": { "type": "Point", "coordinates": [ -0.5347607, 51.1784791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32414998" }, "bbox": [ -0.1070511, 51.1617738, -0.1070511, 51.1617738 ], "geometry": { "type": "Point", "coordinates": [ -0.1070511, 51.1617738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08597649" }, "bbox": [ -0.4395187, 51.3231953, -0.4395187, 51.3231953 ], "geometry": { "type": "Point", "coordinates": [ -0.4395187, 51.3231953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02456015" }, "bbox": [ -0.532952, 51.1962925, -0.532952, 51.1962925 ], "geometry": { "type": "Point", "coordinates": [ -0.532952, 51.1962925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02457216" }, "bbox": [ -0.5312288, 51.1965888, -0.5312288, 51.1965888 ], "geometry": { "type": "Point", "coordinates": [ -0.5312288, 51.1965888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13597488" }, "bbox": [ -0.3689634, 51.3266097, -0.3689634, 51.3266097 ], "geometry": { "type": "Point", "coordinates": [ -0.3689634, 51.3266097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13608008" }, "bbox": [ -0.3678258, 51.328348, -0.3678258, 51.328348 ], "geometry": { "type": "Point", "coordinates": [ -0.3678258, 51.328348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96355282" }, "bbox": [ -0.6222638, 51.1131829, -0.6222638, 51.1131829 ], "geometry": { "type": "Point", "coordinates": [ -0.6222638, 51.1131829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98374012" }, "bbox": [ -0.5949378, 51.1249842, -0.5949378, 51.1249842 ], "geometry": { "type": "Point", "coordinates": [ -0.5949378, 51.1249842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41555758" }, "bbox": [ 0.0284052, 51.2817732, 0.0284052, 51.2817732 ], "geometry": { "type": "Point", "coordinates": [ 0.0284052, 51.2817732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01475830" }, "bbox": [ -0.5476224, 51.2160765, -0.5476224, 51.2160765 ], "geometry": { "type": "Point", "coordinates": [ -0.5476224, 51.2160765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81462628" }, "bbox": [ -0.8379676, 51.209961, -0.8379676, 51.209961 ], "geometry": { "type": "Point", "coordinates": [ -0.8379676, 51.209961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31524280" }, "bbox": [ -0.1179077, 51.2593579, -0.1179077, 51.2593579 ], "geometry": { "type": "Point", "coordinates": [ -0.1179077, 51.2593579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85438164" }, "bbox": [ -0.7735207, 51.1855556, -0.7735207, 51.1855556 ], "geometry": { "type": "Point", "coordinates": [ -0.7735207, 51.1855556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40470324" }, "bbox": [ 0.0032672, 51.2072748, 0.0032672, 51.2072748 ], "geometry": { "type": "Point", "coordinates": [ 0.0032672, 51.2072748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40470631" }, "bbox": [ 0.0037699, 51.2078515, 0.0037699, 51.2078515 ], "geometry": { "type": "Point", "coordinates": [ 0.0037699, 51.2078515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40470126" }, "bbox": [ 0.0025093, 51.2073449, 0.0025093, 51.2073449 ], "geometry": { "type": "Point", "coordinates": [ 0.0025093, 51.2073449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544885" }, "bbox": [ -0.6035837, 51.284488, -0.6035837, 51.284488 ], "geometry": { "type": "Point", "coordinates": [ -0.6035837, 51.284488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97540599" }, "bbox": [ -0.6097051, 51.2858938, -0.6097051, 51.2858938 ], "geometry": { "type": "Point", "coordinates": [ -0.6097051, 51.2858938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20420840" }, "bbox": [ -0.284326, 51.1682334, -0.284326, 51.1682334 ], "geometry": { "type": "Point", "coordinates": [ -0.284326, 51.1682334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20421727" }, "bbox": [ -0.2826621, 51.1671427, -0.2826621, 51.1671427 ], "geometry": { "type": "Point", "coordinates": [ -0.2826621, 51.1671427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19412601" }, "bbox": [ -0.295934, 51.1560402, -0.295934, 51.1560402 ], "geometry": { "type": "Point", "coordinates": [ -0.295934, 51.1560402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19414786" }, "bbox": [ -0.2929073, 51.1636433, -0.2929073, 51.1636433 ], "geometry": { "type": "Point", "coordinates": [ -0.2929073, 51.1636433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02382676" }, "bbox": [ -0.5397361, 51.1389868, -0.5397361, 51.1389868 ], "geometry": { "type": "Point", "coordinates": [ -0.5397361, 51.1389868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02382563" }, "bbox": [ -0.5399746, 51.1378596, -0.5399746, 51.1378596 ], "geometry": { "type": "Point", "coordinates": [ -0.5399746, 51.1378596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400414" }, "bbox": [ -0.5132551, 51.1513001, -0.5132551, 51.1513001 ], "geometry": { "type": "Point", "coordinates": [ -0.5132551, 51.1513001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15497206" }, "bbox": [ -0.3440494, 51.2289748, -0.3440494, 51.2289748 ], "geometry": { "type": "Point", "coordinates": [ -0.3440494, 51.2289748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15497747" }, "bbox": [ -0.3434383, 51.2327906, -0.3434383, 51.2327906 ], "geometry": { "type": "Point", "coordinates": [ -0.3434383, 51.2327906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32480453" }, "bbox": [ -0.1107313, 51.2207928, -0.1107313, 51.2207928 ], "geometry": { "type": "Point", "coordinates": [ -0.1107313, 51.2207928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38593758" }, "bbox": [ -0.0157305, 51.3186147, -0.0157305, 51.3186147 ], "geometry": { "type": "Point", "coordinates": [ -0.0157305, 51.3186147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37397675" }, "bbox": [ -0.0321854, 51.1404672, -0.0321854, 51.1404672 ], "geometry": { "type": "Point", "coordinates": [ -0.0321854, 51.1404672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97350936" }, "bbox": [ -0.6147238, 51.1094158, -0.6147238, 51.1094158 ], "geometry": { "type": "Point", "coordinates": [ -0.6147238, 51.1094158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09583284" }, "bbox": [ -0.4329835, 51.3183558, -0.4329835, 51.3183558 ], "geometry": { "type": "Point", "coordinates": [ -0.4329835, 51.3183558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82473790" }, "bbox": [ -0.8217534, 51.2244633, -0.8217534, 51.2244633 ], "geometry": { "type": "Point", "coordinates": [ -0.8217534, 51.2244633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41464819" }, "bbox": [ 0.0238257, 51.1969372, 0.0238257, 51.1969372 ], "geometry": { "type": "Point", "coordinates": [ 0.0238257, 51.1969372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41466304" }, "bbox": [ 0.0254125, 51.1962055, 0.0254125, 51.1962055 ], "geometry": { "type": "Point", "coordinates": [ 0.0254125, 51.1962055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14383656" }, "bbox": [ -0.3673161, 51.1353114, -0.3673161, 51.1353114 ], "geometry": { "type": "Point", "coordinates": [ -0.3673161, 51.1353114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14383241" }, "bbox": [ -0.3673792, 51.1336081, -0.3673792, 51.1336081 ], "geometry": { "type": "Point", "coordinates": [ -0.3673792, 51.1336081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14389341" }, "bbox": [ -0.3588173, 51.1333635, -0.3588173, 51.1333635 ], "geometry": { "type": "Point", "coordinates": [ -0.3588173, 51.1333635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86421876" }, "bbox": [ -0.7691171, 51.1782195, -0.7691171, 51.1782195 ], "geometry": { "type": "Point", "coordinates": [ -0.7691171, 51.1782195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87410585" }, "bbox": [ -0.756063, 51.1693855, -0.756063, 51.1693855 ], "geometry": { "type": "Point", "coordinates": [ -0.756063, 51.1693855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90431577" }, "bbox": [ -0.7112963, 51.1861402, -0.7112963, 51.1861402 ], "geometry": { "type": "Point", "coordinates": [ -0.7112963, 51.1861402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439040" }, "bbox": [ -0.729314, 51.1830319, -0.729314, 51.1830319 ], "geometry": { "type": "Point", "coordinates": [ -0.729314, 51.1830319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89436568" }, "bbox": [ -0.7186987, 51.1853667, -0.7186987, 51.1853667 ], "geometry": { "type": "Point", "coordinates": [ -0.7186987, 51.1853667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89436868" }, "bbox": [ -0.7185151, 51.1853732, -0.7185151, 51.1853732 ], "geometry": { "type": "Point", "coordinates": [ -0.7185151, 51.1853732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96407097" }, "bbox": [ -0.6183423, 51.1597598, -0.6183423, 51.1597598 ], "geometry": { "type": "Point", "coordinates": [ -0.6183423, 51.1597598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96408886" }, "bbox": [ -0.6160416, 51.1588097, -0.6160416, 51.1588097 ], "geometry": { "type": "Point", "coordinates": [ -0.6160416, 51.1588097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17421002" }, "bbox": [ -0.3264519, 51.1655435, -0.3264519, 51.1655435 ], "geometry": { "type": "Point", "coordinates": [ -0.3264519, 51.1655435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16419372" }, "bbox": [ -0.3291862, 51.1628654, -0.3291862, 51.1628654 ], "geometry": { "type": "Point", "coordinates": [ -0.3291862, 51.1628654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16417215" }, "bbox": [ -0.332291, 51.1578148, -0.332291, 51.1578148 ], "geometry": { "type": "Point", "coordinates": [ -0.332291, 51.1578148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17410233" }, "bbox": [ -0.327978, 51.1593568, -0.327978, 51.1593568 ], "geometry": { "type": "Point", "coordinates": [ -0.327978, 51.1593568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17411864" }, "bbox": [ -0.3253701, 51.1623127, -0.3253701, 51.1623127 ], "geometry": { "type": "Point", "coordinates": [ -0.3253701, 51.1623127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17412386" }, "bbox": [ -0.3245917, 51.16408, -0.3245917, 51.16408 ], "geometry": { "type": "Point", "coordinates": [ -0.3245917, 51.16408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21449723" }, "bbox": [ -0.2564404, 51.1841991, -0.2564404, 51.1841991 ], "geometry": { "type": "Point", "coordinates": [ -0.2564404, 51.1841991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05404292" }, "bbox": [ -0.4938329, 51.1578055, -0.4938329, 51.1578055 ], "geometry": { "type": "Point", "coordinates": [ -0.4938329, 51.1578055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19411875" }, "bbox": [ -0.2969595, 51.1625851, -0.2969595, 51.1625851 ], "geometry": { "type": "Point", "coordinates": [ -0.2969595, 51.1625851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426000" }, "bbox": [ -0.4336619, 51.1667242, -0.4336619, 51.1667242 ], "geometry": { "type": "Point", "coordinates": [ -0.4336619, 51.1667242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09415989" }, "bbox": [ -0.4340347, 51.165958, -0.4340347, 51.165958 ], "geometry": { "type": "Point", "coordinates": [ -0.4340347, 51.165958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16539374" }, "bbox": [ -0.3252681, 51.2708672, -0.3252681, 51.2708672 ], "geometry": { "type": "Point", "coordinates": [ -0.3252681, 51.2708672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20412725" }, "bbox": [ -0.2815248, 51.1580514, -0.2815248, 51.1580514 ], "geometry": { "type": "Point", "coordinates": [ -0.2815248, 51.1580514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89439293" }, "bbox": [ -0.7145901, 51.187784, -0.7145901, 51.187784 ], "geometry": { "type": "Point", "coordinates": [ -0.7145901, 51.187784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41544555" }, "bbox": [ 0.0264967, 51.27258, 0.0264967, 51.27258 ], "geometry": { "type": "Point", "coordinates": [ 0.0264967, 51.27258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22441960" }, "bbox": [ -0.2532092, 51.1875884, -0.2532092, 51.1875884 ], "geometry": { "type": "Point", "coordinates": [ -0.2532092, 51.1875884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12360732" }, "bbox": [ -0.4004292, 51.1150908, -0.4004292, 51.1150908 ], "geometry": { "type": "Point", "coordinates": [ -0.4004292, 51.1150908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39531688" }, "bbox": [ -0.0069209, 51.2670506, -0.0069209, 51.2670506 ], "geometry": { "type": "Point", "coordinates": [ -0.0069209, 51.2670506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38538699" }, "bbox": [ -0.0110342, 51.2681897, -0.0110342, 51.2681897 ], "geometry": { "type": "Point", "coordinates": [ -0.0110342, 51.2681897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90645029" }, "bbox": [ -0.7006585, 51.3703844, -0.7006585, 51.3703844 ], "geometry": { "type": "Point", "coordinates": [ -0.7006585, 51.3703844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34523155" }, "bbox": [ -0.0763126, 51.2565302, -0.0763126, 51.2565302 ], "geometry": { "type": "Point", "coordinates": [ -0.0763126, 51.2565302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40407788" }, "bbox": [ 0.011339, 51.1498755, 0.011339, 51.1498755 ], "geometry": { "type": "Point", "coordinates": [ 0.011339, 51.1498755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08534620" }, "bbox": [ -0.4478541, 51.2676344, -0.4478541, 51.2676344 ], "geometry": { "type": "Point", "coordinates": [ -0.4478541, 51.2676344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19472930" }, "bbox": [ -0.2934304, 51.2126206, -0.2934304, 51.2126206 ], "geometry": { "type": "Point", "coordinates": [ -0.2934304, 51.2126206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35408790" }, "bbox": [ -0.0589318, 51.1511306, -0.0589318, 51.1511306 ], "geometry": { "type": "Point", "coordinates": [ -0.0589318, 51.1511306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08537533" }, "bbox": [ -0.4437132, 51.2691925, -0.4437132, 51.2691925 ], "geometry": { "type": "Point", "coordinates": [ -0.4437132, 51.2691925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92357285" }, "bbox": [ -0.6765836, 51.1144832, -0.6765836, 51.1144832 ], "geometry": { "type": "Point", "coordinates": [ -0.6765836, 51.1144832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92358178" }, "bbox": [ -0.6754034, 51.1137299, -0.6754034, 51.1137299 ], "geometry": { "type": "Point", "coordinates": [ -0.6754034, 51.1137299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40491922" }, "bbox": [ 0.0058667, 51.2250229, 0.0058667, 51.2250229 ], "geometry": { "type": "Point", "coordinates": [ 0.0058667, 51.2250229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12409598" }, "bbox": [ -0.3860849, 51.1568237, -0.3860849, 51.1568237 ], "geometry": { "type": "Point", "coordinates": [ -0.3860849, 51.1568237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21475329" }, "bbox": [ -0.2615625, 51.2108827, -0.2615625, 51.2108827 ], "geometry": { "type": "Point", "coordinates": [ -0.2615625, 51.2108827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08531229" }, "bbox": [ -0.4514896, 51.2684761, -0.4514896, 51.2684761 ], "geometry": { "type": "Point", "coordinates": [ -0.4514896, 51.2684761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15423721" }, "bbox": [ -0.3511245, 51.1675126, -0.3511245, 51.1675126 ], "geometry": { "type": "Point", "coordinates": [ -0.3511245, 51.1675126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35404058" }, "bbox": [ -0.0653902, 51.1484354, -0.0653902, 51.1484354 ], "geometry": { "type": "Point", "coordinates": [ -0.0653902, 51.1484354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99341337" }, "bbox": [ -0.5856099, 51.1001037, -0.5856099, 51.1001037 ], "geometry": { "type": "Point", "coordinates": [ -0.5856099, 51.1001037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35528968" }, "bbox": [ -0.0538656, 51.2570626, -0.0538656, 51.2570626 ], "geometry": { "type": "Point", "coordinates": [ -0.0538656, 51.2570626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24454219" }, "bbox": [ -0.2207531, 51.1923741, -0.2207531, 51.1923741 ], "geometry": { "type": "Point", "coordinates": [ -0.2207531, 51.1923741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94510946" }, "bbox": [ -0.6531412, 51.2546004, -0.6531412, 51.2546004 ], "geometry": { "type": "Point", "coordinates": [ -0.6531412, 51.2546004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90394707" }, "bbox": [ -0.7083216, 51.14403, -0.7083216, 51.14403 ], "geometry": { "type": "Point", "coordinates": [ -0.7083216, 51.14403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15374610" }, "bbox": [ -0.3515982, 51.1216412, -0.3515982, 51.1216412 ], "geometry": { "type": "Point", "coordinates": [ -0.3515982, 51.1216412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27601771" }, "bbox": [ -0.1758492, 51.3310343, -0.1758492, 51.3310343 ], "geometry": { "type": "Point", "coordinates": [ -0.1758492, 51.3310343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08351901" }, "bbox": [ -0.456028, 51.1054847, -0.456028, 51.1054847 ], "geometry": { "type": "Point", "coordinates": [ -0.456028, 51.1054847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32424244" }, "bbox": [ -0.1075167, 51.1655687, -0.1075167, 51.1655687 ], "geometry": { "type": "Point", "coordinates": [ -0.1075167, 51.1655687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27602874" }, "bbox": [ -0.1740692, 51.3312071, -0.1740692, 51.3312071 ], "geometry": { "type": "Point", "coordinates": [ -0.1740692, 51.3312071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32422354" }, "bbox": [ -0.1100492, 51.1668012, -0.1100492, 51.1668012 ], "geometry": { "type": "Point", "coordinates": [ -0.1100492, 51.1668012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04343230" }, "bbox": [ -0.5117814, 51.0984778, -0.5117814, 51.0984778 ], "geometry": { "type": "Point", "coordinates": [ -0.5117814, 51.0984778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39420321" }, "bbox": [ -0.013038, 51.1623432, -0.013038, 51.1623432 ], "geometry": { "type": "Point", "coordinates": [ -0.013038, 51.1623432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98366148" }, "bbox": [ -0.5912728, 51.1193743, -0.5912728, 51.1193743 ], "geometry": { "type": "Point", "coordinates": [ -0.5912728, 51.1193743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21473836" }, "bbox": [ -0.263881, 51.2127206, -0.263881, 51.2127206 ], "geometry": { "type": "Point", "coordinates": [ -0.263881, 51.2127206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11633546" }, "bbox": [ -0.4020883, 51.3591762, -0.4020883, 51.3591762 ], "geometry": { "type": "Point", "coordinates": [ -0.4020883, 51.3591762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05381533" }, "bbox": [ -0.4984293, 51.1344921, -0.4984293, 51.1344921 ], "geometry": { "type": "Point", "coordinates": [ -0.4984293, 51.1344921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11460440" }, "bbox": [ -0.4118435, 51.2058779, -0.4118435, 51.2058779 ], "geometry": { "type": "Point", "coordinates": [ -0.4118435, 51.2058779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34413174" }, "bbox": [ -0.0807366, 51.1592151, -0.0807366, 51.1592151 ], "geometry": { "type": "Point", "coordinates": [ -0.0807366, 51.1592151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35524941" }, "bbox": [ -0.0598237, 51.2545782, -0.0598237, 51.2545782 ], "geometry": { "type": "Point", "coordinates": [ -0.0598237, 51.2545782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01364629" }, "bbox": [ -0.5520578, 51.1169048, -0.5520578, 51.1169048 ], "geometry": { "type": "Point", "coordinates": [ -0.5520578, 51.1169048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04353181" }, "bbox": [ -0.5111605, 51.1121403, -0.5111605, 51.1121403 ], "geometry": { "type": "Point", "coordinates": [ -0.5111605, 51.1121403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06539668" }, "bbox": [ -0.4681847, 51.2722559, -0.4681847, 51.2722559 ], "geometry": { "type": "Point", "coordinates": [ -0.4681847, 51.2722559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90391309" }, "bbox": [ -0.7128473, 51.1440079, -0.7128473, 51.1440079 ], "geometry": { "type": "Point", "coordinates": [ -0.7128473, 51.1440079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87420258" }, "bbox": [ -0.7565135, 51.1758521, -0.7565135, 51.1758521 ], "geometry": { "type": "Point", "coordinates": [ -0.7565135, 51.1758521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08460496" }, "bbox": [ -0.4547892, 51.2118424, -0.4547892, 51.2118424 ], "geometry": { "type": "Point", "coordinates": [ -0.4547892, 51.2118424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41537996" }, "bbox": [ 0.0310939, 51.2672247, 0.0310939, 51.2672247 ], "geometry": { "type": "Point", "coordinates": [ 0.0310939, 51.2672247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97397402" }, "bbox": [ -0.6041441, 51.1420774, -0.6041441, 51.1420774 ], "geometry": { "type": "Point", "coordinates": [ -0.6041441, 51.1420774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10400667" }, "bbox": [ -0.4275037, 51.154745, -0.4275037, 51.154745 ], "geometry": { "type": "Point", "coordinates": [ -0.4275037, 51.154745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10401867" }, "bbox": [ -0.4257379, 51.1547264, -0.4257379, 51.1547264 ], "geometry": { "type": "Point", "coordinates": [ -0.4257379, 51.1547264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09406746" }, "bbox": [ -0.4328681, 51.1531831, -0.4328681, 51.1531831 ], "geometry": { "type": "Point", "coordinates": [ -0.4328681, 51.1531831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09409475" }, "bbox": [ -0.4291712, 51.1555716, -0.4291712, 51.1555716 ], "geometry": { "type": "Point", "coordinates": [ -0.4291712, 51.1555716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09407975" }, "bbox": [ -0.4313794, 51.1555224, -0.4313794, 51.1555224 ], "geometry": { "type": "Point", "coordinates": [ -0.4313794, 51.1555224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09407161" }, "bbox": [ -0.4325722, 51.1543774, -0.4325722, 51.1543774 ], "geometry": { "type": "Point", "coordinates": [ -0.4325722, 51.1543774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03356140" }, "bbox": [ -0.5214019, 51.1084341, -0.5214019, 51.1084341 ], "geometry": { "type": "Point", "coordinates": [ -0.5214019, 51.1084341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23434017" }, "bbox": [ -0.2357115, 51.1745934, -0.2357115, 51.1745934 ], "geometry": { "type": "Point", "coordinates": [ -0.2357115, 51.1745934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351515" }, "bbox": [ -0.6136081, 51.1073443, -0.6136081, 51.1073443 ], "geometry": { "type": "Point", "coordinates": [ -0.6136081, 51.1073443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435996" }, "bbox": [ -0.3047267, 51.1826478, -0.3047267, 51.1826478 ], "geometry": { "type": "Point", "coordinates": [ -0.3047267, 51.1826478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23458803" }, "bbox": [ -0.2285232, 51.1907948, -0.2285232, 51.1907948 ], "geometry": { "type": "Point", "coordinates": [ -0.2285232, 51.1907948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95349989" }, "bbox": [ -0.6302215, 51.1055649, -0.6302215, 51.1055649 ], "geometry": { "type": "Point", "coordinates": [ -0.6302215, 51.1055649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06505258" }, "bbox": [ -0.4751602, 51.2436063, -0.4751602, 51.2436063 ], "geometry": { "type": "Point", "coordinates": [ -0.4751602, 51.2436063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03370250" }, "bbox": [ -0.529025, 51.1276663, -0.529025, 51.1276663 ], "geometry": { "type": "Point", "coordinates": [ -0.529025, 51.1276663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472451" }, "bbox": [ -0.2368742, 51.2136866, -0.2368742, 51.2136866 ], "geometry": { "type": "Point", "coordinates": [ -0.2368742, 51.2136866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07540611" }, "bbox": [ -0.4659516, 51.2762986, -0.4659516, 51.2762986 ], "geometry": { "type": "Point", "coordinates": [ -0.4659516, 51.2762986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07452594" }, "bbox": [ -0.4661022, 51.2025757, -0.4661022, 51.2025757 ], "geometry": { "type": "Point", "coordinates": [ -0.4661022, 51.2025757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00423726" }, "bbox": [ -0.5657594, 51.1708431, -0.5657594, 51.1708431 ], "geometry": { "type": "Point", "coordinates": [ -0.5657594, 51.1708431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04377903" }, "bbox": [ -0.5039311, 51.1230075, -0.5039311, 51.1230075 ], "geometry": { "type": "Point", "coordinates": [ -0.5039311, 51.1230075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04379312" }, "bbox": [ -0.5019869, 51.1237793, -0.5019869, 51.1237793 ], "geometry": { "type": "Point", "coordinates": [ -0.5019869, 51.1237793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05371856" }, "bbox": [ -0.4982645, 51.1278011, -0.4982645, 51.1278011 ], "geometry": { "type": "Point", "coordinates": [ -0.4982645, 51.1278011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05383624" }, "bbox": [ -0.495419, 51.1337993, -0.495419, 51.1337993 ], "geometry": { "type": "Point", "coordinates": [ -0.495419, 51.1337993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586068" }, "bbox": [ -0.4004062, 51.3162462, -0.4004062, 51.3162462 ], "geometry": { "type": "Point", "coordinates": [ -0.4004062, 51.3162462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34579312" }, "bbox": [ -0.0660423, 51.2972096, -0.0660423, 51.2972096 ], "geometry": { "type": "Point", "coordinates": [ -0.0660423, 51.2972096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07349298" }, "bbox": [ -0.4597136, 51.1040404, -0.4597136, 51.1040404 ], "geometry": { "type": "Point", "coordinates": [ -0.4597136, 51.1040404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07367672" }, "bbox": [ -0.4619218, 51.1197148, -0.4619218, 51.1197148 ], "geometry": { "type": "Point", "coordinates": [ -0.4619218, 51.1197148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04484422" }, "bbox": [ -0.5057114, 51.2237606, -0.5057114, 51.2237606 ], "geometry": { "type": "Point", "coordinates": [ -0.5057114, 51.2237606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35577351" }, "bbox": [ -0.0538294, 51.3008803, -0.0538294, 51.3008803 ], "geometry": { "type": "Point", "coordinates": [ -0.0538294, 51.3008803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408386" }, "bbox": [ -0.2593024, 51.1540521, -0.2593024, 51.1540521 ], "geometry": { "type": "Point", "coordinates": [ -0.2593024, 51.1540521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29460691" }, "bbox": [ -0.1537773, 51.2068281, -0.1537773, 51.2068281 ], "geometry": { "type": "Point", "coordinates": [ -0.1537773, 51.2068281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40505221" }, "bbox": [ 0.0113059, 51.2337064, 0.0113059, 51.2337064 ], "geometry": { "type": "Point", "coordinates": [ 0.0113059, 51.2337064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10590893" }, "bbox": [ -0.4219951, 51.3278598, -0.4219951, 51.3278598 ], "geometry": { "type": "Point", "coordinates": [ -0.4219951, 51.3278598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08469070" }, "bbox": [ -0.4424544, 51.2090621, -0.4424544, 51.2090621 ], "geometry": { "type": "Point", "coordinates": [ -0.4424544, 51.2090621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12361833" }, "bbox": [ -0.3987626, 51.1152539, -0.3987626, 51.1152539 ], "geometry": { "type": "Point", "coordinates": [ -0.3987626, 51.1152539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95440105" }, "bbox": [ -0.6418594, 51.1877887, -0.6418594, 51.1877887 ], "geometry": { "type": "Point", "coordinates": [ -0.6418594, 51.1877887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95442427" }, "bbox": [ -0.6384467, 51.1897318, -0.6384467, 51.1897318 ], "geometry": { "type": "Point", "coordinates": [ -0.6384467, 51.1897318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41442746" }, "bbox": [ 0.0198324, 51.1819132, 0.0198324, 51.1819132 ], "geometry": { "type": "Point", "coordinates": [ 0.0198324, 51.1819132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01339824" }, "bbox": [ -0.5449884, 51.0895516, -0.5449884, 51.0895516 ], "geometry": { "type": "Point", "coordinates": [ -0.5449884, 51.0895516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04468661" }, "bbox": [ -0.5001662, 51.2091209, -0.5001662, 51.2091209 ], "geometry": { "type": "Point", "coordinates": [ -0.5001662, 51.2091209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00432260" }, "bbox": [ -0.5672717, 51.1827927, -0.5672717, 51.1827927 ], "geometry": { "type": "Point", "coordinates": [ -0.5672717, 51.1827927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10594918" }, "bbox": [ -0.4157376, 51.3210077, -0.4157376, 51.3210077 ], "geometry": { "type": "Point", "coordinates": [ -0.4157376, 51.3210077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40446060" }, "bbox": [ 0.0104164, 51.1832313, 0.0104164, 51.1832313 ], "geometry": { "type": "Point", "coordinates": [ 0.0104164, 51.1832313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10588724" }, "bbox": [ -0.4104614, 51.3126412, -0.4104614, 51.3126412 ], "geometry": { "type": "Point", "coordinates": [ -0.4104614, 51.3126412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10592762" }, "bbox": [ -0.4187829, 51.3250523, -0.4187829, 51.3250523 ], "geometry": { "type": "Point", "coordinates": [ -0.4187829, 51.3250523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11588646" }, "bbox": [ -0.3962703, 51.3143737, -0.3962703, 51.3143737 ], "geometry": { "type": "Point", "coordinates": [ -0.3962703, 51.3143737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586348" }, "bbox": [ -0.3996989, 51.314597, -0.3996989, 51.314597 ], "geometry": { "type": "Point", "coordinates": [ -0.3996989, 51.314597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10595931" }, "bbox": [ -0.4143081, 51.3221604, -0.4143081, 51.3221604 ], "geometry": { "type": "Point", "coordinates": [ -0.4143081, 51.3221604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39445733" }, "bbox": [ -0.0045558, 51.1811289, -0.0045558, 51.1811289 ], "geometry": { "type": "Point", "coordinates": [ -0.0045558, 51.1811289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11594128" }, "bbox": [ -0.4027501, 51.3217466, -0.4027501, 51.3217466 ], "geometry": { "type": "Point", "coordinates": [ -0.4027501, 51.3217466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586308" }, "bbox": [ -0.3998895, 51.3110203, -0.3998895, 51.3110203 ], "geometry": { "type": "Point", "coordinates": [ -0.3998895, 51.3110203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11585025" }, "bbox": [ -0.4015792, 51.3124653, -0.4015792, 51.3124653 ], "geometry": { "type": "Point", "coordinates": [ -0.4015792, 51.3124653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594448" }, "bbox": [ -0.4312216, 51.3239768, -0.4312216, 51.3239768 ], "geometry": { "type": "Point", "coordinates": [ -0.4312216, 51.3239768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594474" }, "bbox": [ -0.4304752, 51.3265663, -0.4304752, 51.3265663 ], "geometry": { "type": "Point", "coordinates": [ -0.4304752, 51.3265663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09599920" }, "bbox": [ -0.4226156, 51.3214473, -0.4226156, 51.3214473 ], "geometry": { "type": "Point", "coordinates": [ -0.4226156, 51.3214473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10591417" }, "bbox": [ -0.4209064, 51.3211106, -0.4209064, 51.3211106 ], "geometry": { "type": "Point", "coordinates": [ -0.4209064, 51.3211106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10591323" }, "bbox": [ -0.4208039, 51.3214468, -0.4208039, 51.3214468 ], "geometry": { "type": "Point", "coordinates": [ -0.4208039, 51.3214468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10581391" }, "bbox": [ -0.4210786, 51.3186835, -0.4210786, 51.3186835 ], "geometry": { "type": "Point", "coordinates": [ -0.4210786, 51.3186835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35526673" }, "bbox": [ -0.0571874, 51.2576896, -0.0571874, 51.2576896 ], "geometry": { "type": "Point", "coordinates": [ -0.0571874, 51.2576896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11581917" }, "bbox": [ -0.4059735, 51.3118607, -0.4059735, 51.3118607 ], "geometry": { "type": "Point", "coordinates": [ -0.4059735, 51.3118607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35523059" }, "bbox": [ -0.0625554, 51.2562914, -0.0625554, 51.2562914 ], "geometry": { "type": "Point", "coordinates": [ -0.0625554, 51.2562914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11593458" }, "bbox": [ -0.4033511, 51.3243789, -0.4033511, 51.3243789 ], "geometry": { "type": "Point", "coordinates": [ -0.4033511, 51.3243789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07358210" }, "bbox": [ -0.461297, 51.1051556, -0.461297, 51.1051556 ], "geometry": { "type": "Point", "coordinates": [ -0.461297, 51.1051556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35525658" }, "bbox": [ -0.0580814, 51.2563927, -0.0580814, 51.2563927 ], "geometry": { "type": "Point", "coordinates": [ -0.0580814, 51.2563927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39445505" }, "bbox": [ -0.0048544, 51.1787205, -0.0048544, 51.1787205 ], "geometry": { "type": "Point", "coordinates": [ -0.0048544, 51.1787205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40448516" }, "bbox": [ 0.0137077, 51.1793416, 0.0137077, 51.1793416 ], "geometry": { "type": "Point", "coordinates": [ 0.0137077, 51.1793416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34424206" }, "bbox": [ -0.0788519, 51.1620796, -0.0788519, 51.1620796 ], "geometry": { "type": "Point", "coordinates": [ -0.0788519, 51.1620796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02629060" }, "bbox": [ -0.5247854, 51.3534277, -0.5247854, 51.3534277 ], "geometry": { "type": "Point", "coordinates": [ -0.5247854, 51.3534277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365068" }, "bbox": [ -0.4940038, 51.119707, -0.4940038, 51.119707 ], "geometry": { "type": "Point", "coordinates": [ -0.4940038, 51.119707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01678016" }, "bbox": [ -0.5373929, 51.394261, -0.5373929, 51.394261 ], "geometry": { "type": "Point", "coordinates": [ -0.5373929, 51.394261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01675819" }, "bbox": [ -0.541162, 51.3946894, -0.541162, 51.3946894 ], "geometry": { "type": "Point", "coordinates": [ -0.541162, 51.3946894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01675424" }, "bbox": [ -0.5419155, 51.3951865, -0.5419155, 51.3951865 ], "geometry": { "type": "Point", "coordinates": [ -0.5419155, 51.3951865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01676520" }, "bbox": [ -0.5402733, 51.3947781, -0.5402733, 51.3947781 ], "geometry": { "type": "Point", "coordinates": [ -0.5402733, 51.3947781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01676224" }, "bbox": [ -0.5400255, 51.3950757, -0.5400255, 51.3950757 ], "geometry": { "type": "Point", "coordinates": [ -0.5400255, 51.3950757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09521184" }, "bbox": [ -0.4376444, 51.2643266, -0.4376444, 51.2643266 ], "geometry": { "type": "Point", "coordinates": [ -0.4376444, 51.2643266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05534999" }, "bbox": [ -0.4894349, 51.275732, -0.4894349, 51.275732 ], "geometry": { "type": "Point", "coordinates": [ -0.4894349, 51.275732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04484140" }, "bbox": [ -0.5061544, 51.2253062, -0.5061544, 51.2253062 ], "geometry": { "type": "Point", "coordinates": [ -0.5061544, 51.2253062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02454374" }, "bbox": [ -0.5352837, 51.2017447, -0.5352837, 51.2017447 ], "geometry": { "type": "Point", "coordinates": [ -0.5352837, 51.2017447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01362315" }, "bbox": [ -0.5551353, 51.115696, -0.5551353, 51.115696 ], "geometry": { "type": "Point", "coordinates": [ -0.5551353, 51.115696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02435903" }, "bbox": [ -0.5337442, 51.177286, -0.5337442, 51.177286 ], "geometry": { "type": "Point", "coordinates": [ -0.5337442, 51.177286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16432248" }, "bbox": [ -0.3385503, 51.1787254, -0.3385503, 51.1787254 ], "geometry": { "type": "Point", "coordinates": [ -0.3385503, 51.1787254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41550117" }, "bbox": [ 0.0203536, 51.2781125, 0.0203536, 51.2781125 ], "geometry": { "type": "Point", "coordinates": [ 0.0203536, 51.2781125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458980" }, "bbox": [ -0.214008, 51.1977241, -0.214008, 51.1977241 ], "geometry": { "type": "Point", "coordinates": [ -0.214008, 51.1977241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05481504" }, "bbox": [ -0.4959213, 51.2218911, -0.4959213, 51.2218911 ], "geometry": { "type": "Point", "coordinates": [ -0.4959213, 51.2218911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99437068" }, "bbox": [ -0.5747772, 51.1837487, -0.5747772, 51.1837487 ], "geometry": { "type": "Point", "coordinates": [ -0.5747772, 51.1837487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00488151" }, "bbox": [ -0.5576433, 51.2268516, -0.5576433, 51.2268516 ], "geometry": { "type": "Point", "coordinates": [ -0.5576433, 51.2268516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24452535" }, "bbox": [ -0.2231479, 51.1938814, -0.2231479, 51.1938814 ], "geometry": { "type": "Point", "coordinates": [ -0.2231479, 51.1938814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07534079" }, "bbox": [ -0.4617716, 51.2733002, -0.4617716, 51.2733002 ], "geometry": { "type": "Point", "coordinates": [ -0.4617716, 51.2733002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492142" }, "bbox": [ -0.1366017, 51.2291221, -0.1366017, 51.2291221 ], "geometry": { "type": "Point", "coordinates": [ -0.1366017, 51.2291221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38474790" }, "bbox": [ -0.0189579, 51.2135824, -0.0189579, 51.2135824 ], "geometry": { "type": "Point", "coordinates": [ -0.0189579, 51.2135824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36508248" }, "bbox": [ -0.0423196, 51.2370909, -0.0423196, 51.2370909 ], "geometry": { "type": "Point", "coordinates": [ -0.0423196, 51.2370909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09689904" }, "bbox": [ -0.4202139, 51.4007424, -0.4202139, 51.4007424 ], "geometry": { "type": "Point", "coordinates": [ -0.4202139, 51.4007424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27551469" }, "bbox": [ -0.1781609, 51.2863438, -0.1781609, 51.2863438 ], "geometry": { "type": "Point", "coordinates": [ -0.1781609, 51.2863438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09591823" }, "bbox": [ -0.4337651, 51.3217246, -0.4337651, 51.3217246 ], "geometry": { "type": "Point", "coordinates": [ -0.4337651, 51.3217246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10588160" }, "bbox": [ -0.4114302, 51.3158362, -0.4114302, 51.3158362 ], "geometry": { "type": "Point", "coordinates": [ -0.4114302, 51.3158362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40448659" }, "bbox": [ 0.0140436, 51.1830792, 0.0140436, 51.1830792 ], "geometry": { "type": "Point", "coordinates": [ 0.0140436, 51.1830792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91373819" }, "bbox": [ -0.6946791, 51.1269871, -0.6946791, 51.1269871 ], "geometry": { "type": "Point", "coordinates": [ -0.6946791, 51.1269871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18408454" }, "bbox": [ -0.30235, 51.1518278, -0.30235, 51.1518278 ], "geometry": { "type": "Point", "coordinates": [ -0.30235, 51.1518278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98380721" }, "bbox": [ -0.5996507, 51.1347263, -0.5996507, 51.1347263 ], "geometry": { "type": "Point", "coordinates": [ -0.5996507, 51.1347263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42521203" }, "bbox": [ 0.0356957, 51.2497172, 0.0356957, 51.2497172 ], "geometry": { "type": "Point", "coordinates": [ 0.0356957, 51.2497172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42520305" }, "bbox": [ 0.0338463, 51.2499159, 0.0338463, 51.2499159 ], "geometry": { "type": "Point", "coordinates": [ 0.0338463, 51.2499159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43532242" }, "bbox": [ 0.0513237, 51.2620127, 0.0513237, 51.2620127 ], "geometry": { "type": "Point", "coordinates": [ 0.0513237, 51.2620127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94564103" }, "bbox": [ -0.6486871, 51.2957383, -0.6486871, 51.2957383 ], "geometry": { "type": "Point", "coordinates": [ -0.6486871, 51.2957383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38475744" }, "bbox": [ -0.0175968, 51.2091234, -0.0175968, 51.2091234 ], "geometry": { "type": "Point", "coordinates": [ -0.0175968, 51.2091234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38476541" }, "bbox": [ -0.0165276, 51.2090644, -0.0165276, 51.2090644 ], "geometry": { "type": "Point", "coordinates": [ -0.0165276, 51.2090644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36513539" }, "bbox": [ -0.0476826, 51.2452998, -0.0476826, 51.2452998 ], "geometry": { "type": "Point", "coordinates": [ -0.0476826, 51.2452998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94462002" }, "bbox": [ -0.6532021, 51.2056119, -0.6532021, 51.2056119 ], "geometry": { "type": "Point", "coordinates": [ -0.6532021, 51.2056119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586779" }, "bbox": [ -0.3988441, 51.3171295, -0.3988441, 51.3171295 ], "geometry": { "type": "Point", "coordinates": [ -0.3988441, 51.3171295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11587771" }, "bbox": [ -0.3975864, 51.3166684, -0.3975864, 51.3166684 ], "geometry": { "type": "Point", "coordinates": [ -0.3975864, 51.3166684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05475698" }, "bbox": [ -0.4900338, 51.2212545, -0.4900338, 51.2212545 ], "geometry": { "type": "Point", "coordinates": [ -0.4900338, 51.2212545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38560984" }, "bbox": [ -0.0208012, 51.2939823, -0.0208012, 51.2939823 ], "geometry": { "type": "Point", "coordinates": [ -0.0208012, 51.2939823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10588140" }, "bbox": [ -0.4116128, 51.3139245, -0.4116128, 51.3139245 ], "geometry": { "type": "Point", "coordinates": [ -0.4116128, 51.3139245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10591148" }, "bbox": [ -0.4213249, 51.3236716, -0.4213249, 51.3236716 ], "geometry": { "type": "Point", "coordinates": [ -0.4213249, 51.3236716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36509288" }, "bbox": [ -0.0401609, 51.2409288, -0.0401609, 51.2409288 ], "geometry": { "type": "Point", "coordinates": [ -0.0401609, 51.2409288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04509762" }, "bbox": [ -0.4973574, 51.2450715, -0.4973574, 51.2450715 ], "geometry": { "type": "Point", "coordinates": [ -0.4973574, 51.2450715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38578894" }, "bbox": [ -0.0094248, 51.3036242, -0.0094248, 51.3036242 ], "geometry": { "type": "Point", "coordinates": [ -0.0094248, 51.3036242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39572094" }, "bbox": [ -0.0044227, 51.3036951, -0.0044227, 51.3036951 ], "geometry": { "type": "Point", "coordinates": [ -0.0044227, 51.3036951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95433584" }, "bbox": [ -0.6369576, 51.1858202, -0.6369576, 51.1858202 ], "geometry": { "type": "Point", "coordinates": [ -0.6369576, 51.1858202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91383585" }, "bbox": [ -0.6953206, 51.1419761, -0.6953206, 51.1419761 ], "geometry": { "type": "Point", "coordinates": [ -0.6953206, 51.1419761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344417" }, "bbox": [ -0.6524804, 51.0989802, -0.6524804, 51.0989802 ], "geometry": { "type": "Point", "coordinates": [ -0.6524804, 51.0989802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10616459" }, "bbox": [ -0.4128215, 51.3426131, -0.4128215, 51.3426131 ], "geometry": { "type": "Point", "coordinates": [ -0.4128215, 51.3426131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33418226" }, "bbox": [ -0.0877807, 51.1549899, -0.0877807, 51.1549899 ], "geometry": { "type": "Point", "coordinates": [ -0.0877807, 51.1549899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19492932" }, "bbox": [ -0.2927973, 51.2306183, -0.2927973, 51.2306183 ], "geometry": { "type": "Point", "coordinates": [ -0.2927973, 51.2306183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41529062" }, "bbox": [ 0.0337627, 51.2547976, 0.0337627, 51.2547976 ], "geometry": { "type": "Point", "coordinates": [ 0.0337627, 51.2547976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38588010" }, "bbox": [ -0.0097139, 51.3053834, -0.0097139, 51.3053834 ], "geometry": { "type": "Point", "coordinates": [ -0.0097139, 51.3053834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41527455" }, "bbox": [ 0.0297248, 51.2544424, 0.0297248, 51.2544424 ], "geometry": { "type": "Point", "coordinates": [ 0.0297248, 51.2544424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32575901" }, "bbox": [ -0.0995199, 51.2967437, -0.0995199, 51.2967437 ], "geometry": { "type": "Point", "coordinates": [ -0.0995199, 51.2967437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38479272" }, "bbox": [ -0.0125328, 51.2116921, -0.0125328, 51.2116921 ], "geometry": { "type": "Point", "coordinates": [ -0.0125328, 51.2116921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36442264" }, "bbox": [ -0.0522639, 51.1847959, -0.0522639, 51.1847959 ], "geometry": { "type": "Point", "coordinates": [ -0.0522639, 51.1847959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16422622" }, "bbox": [ -0.3393632, 51.1676532, -0.3393632, 51.1676532 ], "geometry": { "type": "Point", "coordinates": [ -0.3393632, 51.1676532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21563664" }, "bbox": [ -0.260585, 51.2957359, -0.260585, 51.2957359 ], "geometry": { "type": "Point", "coordinates": [ -0.260585, 51.2957359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511746" }, "bbox": [ -0.651922, 51.2545673, -0.651922, 51.2545673 ], "geometry": { "type": "Point", "coordinates": [ -0.651922, 51.2545673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94512946" }, "bbox": [ -0.6502597, 51.254555, -0.6502597, 51.254555 ], "geometry": { "type": "Point", "coordinates": [ -0.6502597, 51.254555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08563595" }, "bbox": [ -0.4474415, 51.3012922, -0.4474415, 51.3012922 ], "geometry": { "type": "Point", "coordinates": [ -0.4474415, 51.3012922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86446415" }, "bbox": [ -0.7613437, 51.1899014, -0.7613437, 51.1899014 ], "geometry": { "type": "Point", "coordinates": [ -0.7613437, 51.1899014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37492587" }, "bbox": [ -0.0355719, 51.2316296, -0.0355719, 51.2316296 ], "geometry": { "type": "Point", "coordinates": [ -0.0355719, 51.2316296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407591" }, "bbox": [ -0.3036003, 51.1552213, -0.3036003, 51.1552213 ], "geometry": { "type": "Point", "coordinates": [ -0.3036003, 51.1552213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35595577" }, "bbox": [ -0.0563219, 51.320841, -0.0563219, 51.320841 ], "geometry": { "type": "Point", "coordinates": [ -0.0563219, 51.320841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05526941" }, "bbox": [ -0.4869173, 51.2609041, -0.4869173, 51.2609041 ], "geometry": { "type": "Point", "coordinates": [ -0.4869173, 51.2609041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37509807" }, "bbox": [ -0.0249376, 51.2331969, -0.0249376, 51.2331969 ], "geometry": { "type": "Point", "coordinates": [ -0.0249376, 51.2331969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14396731" }, "bbox": [ -0.362157, 51.1416526, -0.362157, 51.1416526 ], "geometry": { "type": "Point", "coordinates": [ -0.362157, 51.1416526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96460650" }, "bbox": [ -0.6261086, 51.2096278, -0.6261086, 51.2096278 ], "geometry": { "type": "Point", "coordinates": [ -0.6261086, 51.2096278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41459122" }, "bbox": [ 0.0293328, 51.1886624, 0.0293328, 51.1886624 ], "geometry": { "type": "Point", "coordinates": [ 0.0293328, 51.1886624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94439897" }, "bbox": [ -0.6423891, 51.187255, -0.6423891, 51.187255 ], "geometry": { "type": "Point", "coordinates": [ -0.6423891, 51.187255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511346" }, "bbox": [ -0.6525413, 51.2545798, -0.6525413, 51.2545798 ], "geometry": { "type": "Point", "coordinates": [ -0.6525413, 51.2545798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24526865" }, "bbox": [ -0.2145714, 51.2595518, -0.2145714, 51.2595518 ], "geometry": { "type": "Point", "coordinates": [ -0.2145714, 51.2595518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42521698" }, "bbox": [ 0.0354821, 51.2583573, 0.0354821, 51.2583573 ], "geometry": { "type": "Point", "coordinates": [ 0.0354821, 51.2583573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40484492" }, "bbox": [ 0.0097091, 51.2222422, 0.0097091, 51.2222422 ], "geometry": { "type": "Point", "coordinates": [ 0.0097091, 51.2222422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43450748" }, "bbox": [ 0.0459246, 51.1907137, 0.0459246, 51.1907137 ], "geometry": { "type": "Point", "coordinates": [ 0.0459246, 51.1907137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42458866" }, "bbox": [ 0.0430476, 51.1924004, 0.0430476, 51.1924004 ], "geometry": { "type": "Point", "coordinates": [ 0.0430476, 51.1924004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12590302" }, "bbox": [ -0.3936586, 51.3192455, -0.3936586, 51.3192455 ], "geometry": { "type": "Point", "coordinates": [ -0.3936586, 51.3192455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11589784" }, "bbox": [ -0.3951405, 51.3174107, -0.3951405, 51.3174107 ], "geometry": { "type": "Point", "coordinates": [ -0.3951405, 51.3174107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38484269" }, "bbox": [ -0.0196009, 51.2206404, -0.0196009, 51.2206404 ], "geometry": { "type": "Point", "coordinates": [ -0.0196009, 51.2206404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11583521" }, "bbox": [ -0.4035832, 51.3121496, -0.4035832, 51.3121496 ], "geometry": { "type": "Point", "coordinates": [ -0.4035832, 51.3121496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06535346" }, "bbox": [ -0.4742767, 51.2701752, -0.4742767, 51.2701752 ], "geometry": { "type": "Point", "coordinates": [ -0.4742767, 51.2701752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37494678" }, "bbox": [ -0.0328963, 51.2307382, -0.0328963, 51.2307382 ], "geometry": { "type": "Point", "coordinates": [ -0.0328963, 51.2307382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13527532" }, "bbox": [ -0.3711809, 51.2586281, -0.3711809, 51.2586281 ], "geometry": { "type": "Point", "coordinates": [ -0.3711809, 51.2586281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35454197" }, "bbox": [ -0.0632871, 51.1968779, -0.0632871, 51.1968779 ], "geometry": { "type": "Point", "coordinates": [ -0.0632871, 51.1968779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38489921" }, "bbox": [ -0.0113494, 51.2161958, -0.0113494, 51.2161958 ], "geometry": { "type": "Point", "coordinates": [ -0.0113494, 51.2161958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35455863" }, "bbox": [ -0.0610363, 51.1939077, -0.0610363, 51.1939077 ], "geometry": { "type": "Point", "coordinates": [ -0.0610363, 51.1939077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37511403" }, "bbox": [ -0.0368476, 51.2422517, -0.0368476, 51.2422517 ], "geometry": { "type": "Point", "coordinates": [ -0.0368476, 51.2422517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35457451" }, "bbox": [ -0.0588143, 51.1927342, -0.0588143, 51.1927342 ], "geometry": { "type": "Point", "coordinates": [ -0.0588143, 51.1927342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35457885" }, "bbox": [ -0.0582429, 51.1955317, -0.0582429, 51.1955317 ], "geometry": { "type": "Point", "coordinates": [ -0.0582429, 51.1955317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42516739" }, "bbox": [ 0.0424112, 51.243767, 0.0424112, 51.243767 ], "geometry": { "type": "Point", "coordinates": [ 0.0424112, 51.243767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40482463" }, "bbox": [ 0.0068406, 51.2196239, 0.0068406, 51.2196239 ], "geometry": { "type": "Point", "coordinates": [ 0.0068406, 51.2196239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38500236" }, "bbox": [ -0.0242442, 51.2360129, -0.0242442, 51.2360129 ], "geometry": { "type": "Point", "coordinates": [ -0.0242442, 51.2360129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41534488" }, "bbox": [ 0.0259558, 51.266573, 0.0259558, 51.266573 ], "geometry": { "type": "Point", "coordinates": [ 0.0259558, 51.266573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18629644" }, "bbox": [ -0.2933225, 51.3486804, -0.2933225, 51.3486804 ], "geometry": { "type": "Point", "coordinates": [ -0.2933225, 51.3486804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88477992" }, "bbox": [ -0.7298911, 51.2238167, -0.7298911, 51.2238167 ], "geometry": { "type": "Point", "coordinates": [ -0.7298911, 51.2238167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38608324" }, "bbox": [ -0.0089849, 51.3244989, -0.0089849, 51.3244989 ], "geometry": { "type": "Point", "coordinates": [ -0.0089849, 51.3244989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98435881" }, "bbox": [ -0.59095, 51.1850259, -0.59095, 51.1850259 ], "geometry": { "type": "Point", "coordinates": [ -0.59095, 51.1850259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38483352" }, "bbox": [ -0.0203632, 51.2192036, -0.0203632, 51.2192036 ], "geometry": { "type": "Point", "coordinates": [ -0.0203632, 51.2192036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36443559" }, "bbox": [ -0.0505321, 51.1843147, -0.0505321, 51.1843147 ], "geometry": { "type": "Point", "coordinates": [ -0.0505321, 51.1843147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35459941" }, "bbox": [ -0.0554608, 51.1917447, -0.0554608, 51.1917447 ], "geometry": { "type": "Point", "coordinates": [ -0.0554608, 51.1917447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38477354" }, "bbox": [ -0.0155243, 51.2102114, -0.0155243, 51.2102114 ], "geometry": { "type": "Point", "coordinates": [ -0.0155243, 51.2102114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39475120" }, "bbox": [ -0.0044982, 51.2070154, -0.0044982, 51.2070154 ], "geometry": { "type": "Point", "coordinates": [ -0.0044982, 51.2070154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36450931" }, "bbox": [ -0.0539739, 51.1908151, -0.0539739, 51.1908151 ], "geometry": { "type": "Point", "coordinates": [ -0.0539739, 51.1908151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38487050" }, "bbox": [ -0.0153826, 51.2187806, -0.0153826, 51.2187806 ], "geometry": { "type": "Point", "coordinates": [ -0.0153826, 51.2187806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37487338" }, "bbox": [ -0.0293036, 51.2179926, -0.0293036, 51.2179926 ], "geometry": { "type": "Point", "coordinates": [ -0.0293036, 51.2179926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37509556" }, "bbox": [ -0.0251547, 51.2376185, -0.0251547, 51.2376185 ], "geometry": { "type": "Point", "coordinates": [ -0.0251547, 51.2376185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37488584" }, "bbox": [ -0.0273067, 51.221972, -0.0273067, 51.221972 ], "geometry": { "type": "Point", "coordinates": [ -0.0273067, 51.221972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36490466" }, "bbox": [ -0.0529723, 51.2298999, -0.0529723, 51.2298999 ], "geometry": { "type": "Point", "coordinates": [ -0.0529723, 51.2298999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31463133" }, "bbox": [ -0.1218038, 51.2012272, -0.1218038, 51.2012272 ], "geometry": { "type": "Point", "coordinates": [ -0.1218038, 51.2012272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407725" }, "bbox": [ -0.4460636, 51.1512366, -0.4460636, 51.1512366 ], "geometry": { "type": "Point", "coordinates": [ -0.4460636, 51.1512366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03732080" }, "bbox": [ -0.5162813, 51.4537064, -0.5162813, 51.4537064 ], "geometry": { "type": "Point", "coordinates": [ -0.5162813, 51.4537064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29484553" }, "bbox": [ -0.1467097, 51.2215831, -0.1467097, 51.2215831 ], "geometry": { "type": "Point", "coordinates": [ -0.1467097, 51.2215831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39491146" }, "bbox": [ -0.0088191, 51.2274379, -0.0088191, 51.2274379 ], "geometry": { "type": "Point", "coordinates": [ -0.0088191, 51.2274379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96405278" }, "bbox": [ -0.6210735, 51.1582811, -0.6210735, 51.1582811 ], "geometry": { "type": "Point", "coordinates": [ -0.6210735, 51.1582811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31527059" }, "bbox": [ -0.115074, 51.2558846, -0.115074, 51.2558846 ], "geometry": { "type": "Point", "coordinates": [ -0.115074, 51.2558846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42546598" }, "bbox": [ 0.043893, 51.2761032, 0.043893, 51.2761032 ], "geometry": { "type": "Point", "coordinates": [ 0.043893, 51.2761032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09383520" }, "bbox": [ -0.4386155, 51.1327087, -0.4386155, 51.1327087 ], "geometry": { "type": "Point", "coordinates": [ -0.4386155, 51.1327087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09370551" }, "bbox": [ -0.4429931, 51.1264714, -0.4429931, 51.1264714 ], "geometry": { "type": "Point", "coordinates": [ -0.4429931, 51.1264714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98435255" }, "bbox": [ -0.5907768, 51.1831061, -0.5907768, 51.1831061 ], "geometry": { "type": "Point", "coordinates": [ -0.5907768, 51.1831061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97410419" }, "bbox": [ -0.6134348, 51.161973, -0.6134348, 51.161973 ], "geometry": { "type": "Point", "coordinates": [ -0.6134348, 51.161973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96418416" }, "bbox": [ -0.6164445, 51.1615253, -0.6164445, 51.1615253 ], "geometry": { "type": "Point", "coordinates": [ -0.6164445, 51.1615253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96417112" }, "bbox": [ -0.6178004, 51.1609452, -0.6178004, 51.1609452 ], "geometry": { "type": "Point", "coordinates": [ -0.6178004, 51.1609452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96418326" }, "bbox": [ -0.6163818, 51.1625328, -0.6163818, 51.1625328 ], "geometry": { "type": "Point", "coordinates": [ -0.6163818, 51.1625328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96419901" }, "bbox": [ -0.6142428, 51.1601213, -0.6142428, 51.1601213 ], "geometry": { "type": "Point", "coordinates": [ -0.6142428, 51.1601213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38599532" }, "bbox": [ -0.0074816, 51.3160048, -0.0074816, 51.3160048 ], "geometry": { "type": "Point", "coordinates": [ -0.0074816, 51.3160048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39590250" }, "bbox": [ -0.0065936, 51.3177164, -0.0065936, 51.3177164 ], "geometry": { "type": "Point", "coordinates": [ -0.0065936, 51.3177164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94336063" }, "bbox": [ -0.6506193, 51.0942504, -0.6506193, 51.0942504 ], "geometry": { "type": "Point", "coordinates": [ -0.6506193, 51.0942504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05516299" }, "bbox": [ -0.4897785, 51.2574997, -0.4897785, 51.2574997 ], "geometry": { "type": "Point", "coordinates": [ -0.4897785, 51.2574997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36516067" }, "bbox": [ -0.0439446, 51.2478892, -0.0439446, 51.2478892 ], "geometry": { "type": "Point", "coordinates": [ -0.0439446, 51.2478892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32424664" }, "bbox": [ -0.1077212, 51.1675017, -0.1077212, 51.1675017 ], "geometry": { "type": "Point", "coordinates": [ -0.1077212, 51.1675017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97462048" }, "bbox": [ -0.6098696, 51.2094964, -0.6098696, 51.2094964 ], "geometry": { "type": "Point", "coordinates": [ -0.6098696, 51.2094964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97463337" }, "bbox": [ -0.6080881, 51.2082724, -0.6080881, 51.2082724 ], "geometry": { "type": "Point", "coordinates": [ -0.6080881, 51.2082724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38504769" }, "bbox": [ -0.0177893, 51.238576, -0.0177893, 51.238576 ], "geometry": { "type": "Point", "coordinates": [ -0.0177893, 51.238576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16454995" }, "bbox": [ -0.3343737, 51.2007933, -0.3343737, 51.2007933 ], "geometry": { "type": "Point", "coordinates": [ -0.3343737, 51.2007933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20568296" }, "bbox": [ -0.2685467, 51.299081, -0.2685467, 51.299081 ], "geometry": { "type": "Point", "coordinates": [ -0.2685467, 51.299081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20577210" }, "bbox": [ -0.2692543, 51.3004934, -0.2692543, 51.3004934 ], "geometry": { "type": "Point", "coordinates": [ -0.2692543, 51.3004934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35596674" }, "bbox": [ -0.0542005, 51.3204016, -0.0542005, 51.3204016 ], "geometry": { "type": "Point", "coordinates": [ -0.0542005, 51.3204016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42453121" }, "bbox": [ 0.0349891, 51.1884437, 0.0349891, 51.1884437 ], "geometry": { "type": "Point", "coordinates": [ 0.0349891, 51.1884437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20565499" }, "bbox": [ -0.2725281, 51.2994586, -0.2725281, 51.2994586 ], "geometry": { "type": "Point", "coordinates": [ -0.2725281, 51.2994586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21553065" }, "bbox": [ -0.2619109, 51.2871127, -0.2619109, 51.2871127 ], "geometry": { "type": "Point", "coordinates": [ -0.2619109, 51.2871127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20558575" }, "bbox": [ -0.2685485, 51.2880284, -0.2685485, 51.2880284 ], "geometry": { "type": "Point", "coordinates": [ -0.2685485, 51.2880284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36437024" }, "bbox": [ -0.0457786, 51.1720476, -0.0457786, 51.1720476 ], "geometry": { "type": "Point", "coordinates": [ -0.0457786, 51.1720476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36435918" }, "bbox": [ -0.0472131, 51.1716426, -0.0472131, 51.1716426 ], "geometry": { "type": "Point", "coordinates": [ -0.0472131, 51.1716426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96531293" }, "bbox": [ -0.623419, 51.2763994, -0.623419, 51.2763994 ], "geometry": { "type": "Point", "coordinates": [ -0.623419, 51.2763994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95539267" }, "bbox": [ -0.6256369, 51.2740912, -0.6256369, 51.2740912 ], "geometry": { "type": "Point", "coordinates": [ -0.6256369, 51.2740912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95533270" }, "bbox": [ -0.6350516, 51.2745408, -0.6350516, 51.2745408 ], "geometry": { "type": "Point", "coordinates": [ -0.6350516, 51.2745408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08576445" }, "bbox": [ -0.4430423, 51.3057735, -0.4430423, 51.3057735 ], "geometry": { "type": "Point", "coordinates": [ -0.4430423, 51.3057735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40450712" }, "bbox": [ 0.0029373, 51.1882215, 0.0029373, 51.1882215 ], "geometry": { "type": "Point", "coordinates": [ 0.0029373, 51.1882215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95535477" }, "bbox": [ -0.6316417, 51.2754656, -0.6316417, 51.2754656 ], "geometry": { "type": "Point", "coordinates": [ -0.6316417, 51.2754656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95546115" }, "bbox": [ -0.6328905, 51.2774883, -0.6328905, 51.2774883 ], "geometry": { "type": "Point", "coordinates": [ -0.6328905, 51.2774883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95531855" }, "bbox": [ -0.6368362, 51.2735752, -0.6368362, 51.2735752 ], "geometry": { "type": "Point", "coordinates": [ -0.6368362, 51.2735752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95531763" }, "bbox": [ -0.6370632, 51.2738267, -0.6370632, 51.2738267 ], "geometry": { "type": "Point", "coordinates": [ -0.6370632, 51.2738267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15470145" }, "bbox": [ -0.3547398, 51.214393, -0.3547398, 51.214393 ], "geometry": { "type": "Point", "coordinates": [ -0.3547398, 51.214393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14463044" }, "bbox": [ -0.365106, 51.2057167, -0.365106, 51.2057167 ], "geometry": { "type": "Point", "coordinates": [ -0.365106, 51.2057167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14463133" }, "bbox": [ -0.3651432, 51.2049244, -0.3651432, 51.2049244 ], "geometry": { "type": "Point", "coordinates": [ -0.3651432, 51.2049244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14462743" }, "bbox": [ -0.3657742, 51.2057175, -0.3657742, 51.2057175 ], "geometry": { "type": "Point", "coordinates": [ -0.3657742, 51.2057175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14462152" }, "bbox": [ -0.3663844, 51.2065213, -0.3663844, 51.2065213 ], "geometry": { "type": "Point", "coordinates": [ -0.3663844, 51.2065213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15471718" }, "bbox": [ -0.3524246, 51.2121581, -0.3524246, 51.2121581 ], "geometry": { "type": "Point", "coordinates": [ -0.3524246, 51.2121581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18488778" }, "bbox": [ -0.2988864, 51.226092, -0.2988864, 51.226092 ], "geometry": { "type": "Point", "coordinates": [ -0.2988864, 51.226092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32501727" }, "bbox": [ -0.108758, 51.2361472, -0.108758, 51.2361472 ], "geometry": { "type": "Point", "coordinates": [ -0.108758, 51.2361472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32501238" }, "bbox": [ -0.108872, 51.237306, -0.108872, 51.237306 ], "geometry": { "type": "Point", "coordinates": [ -0.108872, 51.237306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31508046" }, "bbox": [ -0.1133905, 51.2381469, -0.1133905, 51.2381469 ], "geometry": { "type": "Point", "coordinates": [ -0.1133905, 51.2381469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32494683" }, "bbox": [ -0.1038021, 51.2324057, -0.1038021, 51.2324057 ], "geometry": { "type": "Point", "coordinates": [ -0.1038021, 51.2324057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32496295" }, "bbox": [ -0.1016972, 51.2334117, -0.1016972, 51.2334117 ], "geometry": { "type": "Point", "coordinates": [ -0.1016972, 51.2334117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439850" }, "bbox": [ -0.5425118, 51.181836, -0.5425118, 51.181836 ], "geometry": { "type": "Point", "coordinates": [ -0.5425118, 51.181836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02433955" }, "bbox": [ -0.5365535, 51.1819332, -0.5365535, 51.1819332 ], "geometry": { "type": "Point", "coordinates": [ -0.5365535, 51.1819332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02434255" }, "bbox": [ -0.5360359, 51.1820605, -0.5360359, 51.1820605 ], "geometry": { "type": "Point", "coordinates": [ -0.5360359, 51.1820605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94380493" }, "bbox": [ -0.6569946, 51.1419716, -0.6569946, 51.1419716 ], "geometry": { "type": "Point", "coordinates": [ -0.6569946, 51.1419716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03407501" }, "bbox": [ -0.5183999, 51.1503785, -0.5183999, 51.1503785 ], "geometry": { "type": "Point", "coordinates": [ -0.5183999, 51.1503785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03392545" }, "bbox": [ -0.5252779, 51.1450473, -0.5252779, 51.1450473 ], "geometry": { "type": "Point", "coordinates": [ -0.5252779, 51.1450473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03398575" }, "bbox": [ -0.5163949, 51.1474787, -0.5163949, 51.1474787 ], "geometry": { "type": "Point", "coordinates": [ -0.5163949, 51.1474787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02454421" }, "bbox": [ -0.5352288, 51.1969503, -0.5352288, 51.1969503 ], "geometry": { "type": "Point", "coordinates": [ -0.5352288, 51.1969503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02445036" }, "bbox": [ -0.5349709, 51.1892728, -0.5349709, 51.1892728 ], "geometry": { "type": "Point", "coordinates": [ -0.5349709, 51.1892728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02445236" }, "bbox": [ -0.5342961, 51.189421, -0.5342961, 51.189421 ], "geometry": { "type": "Point", "coordinates": [ -0.5342961, 51.189421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02442890" }, "bbox": [ -0.5381438, 51.1933253, -0.5381438, 51.1933253 ], "geometry": { "type": "Point", "coordinates": [ -0.5381438, 51.1933253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02444234" }, "bbox": [ -0.5355415, 51.1890565, -0.5355415, 51.1890565 ], "geometry": { "type": "Point", "coordinates": [ -0.5355415, 51.1890565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02444130" }, "bbox": [ -0.5361689, 51.1887414, -0.5361689, 51.1887414 ], "geometry": { "type": "Point", "coordinates": [ -0.5361689, 51.1887414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547292" }, "bbox": [ -0.3419858, 51.2816286, -0.3419858, 51.2816286 ], "geometry": { "type": "Point", "coordinates": [ -0.3419858, 51.2816286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547091" }, "bbox": [ -0.3422392, 51.281784, -0.3422392, 51.281784 ], "geometry": { "type": "Point", "coordinates": [ -0.3422392, 51.281784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547885" }, "bbox": [ -0.3412478, 51.281062, -0.3412478, 51.281062 ], "geometry": { "type": "Point", "coordinates": [ -0.3412478, 51.281062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547375" }, "bbox": [ -0.3420303, 51.2801674, -0.3420303, 51.2801674 ], "geometry": { "type": "Point", "coordinates": [ -0.3420303, 51.2801674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548248" }, "bbox": [ -0.3409279, 51.2776444, -0.3409279, 51.2776444 ], "geometry": { "type": "Point", "coordinates": [ -0.3409279, 51.2776444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15544795" }, "bbox": [ -0.3457409, 51.2820134, -0.3457409, 51.2820134 ], "geometry": { "type": "Point", "coordinates": [ -0.3457409, 51.2820134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547191" }, "bbox": [ -0.3422281, 51.2814177, -0.3422281, 51.2814177 ], "geometry": { "type": "Point", "coordinates": [ -0.3422281, 51.2814177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14537598" }, "bbox": [ -0.3563664, 51.2734648, -0.3563664, 51.2734648 ], "geometry": { "type": "Point", "coordinates": [ -0.3563664, 51.2734648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15540771" }, "bbox": [ -0.3515311, 51.2799187, -0.3515311, 51.2799187 ], "geometry": { "type": "Point", "coordinates": [ -0.3515311, 51.2799187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14549476" }, "bbox": [ -0.3540963, 51.2800048, -0.3540963, 51.2800048 ], "geometry": { "type": "Point", "coordinates": [ -0.3540963, 51.2800048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14546953" }, "bbox": [ -0.3580426, 51.2790478, -0.3580426, 51.2790478 ], "geometry": { "type": "Point", "coordinates": [ -0.3580426, 51.2790478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95326169" }, "bbox": [ -0.6361233, 51.0856313, -0.6361233, 51.0856313 ], "geometry": { "type": "Point", "coordinates": [ -0.6361233, 51.0856313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14464337" }, "bbox": [ -0.3631133, 51.2050855, -0.3631133, 51.2050855 ], "geometry": { "type": "Point", "coordinates": [ -0.3631133, 51.2050855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15470102" }, "bbox": [ -0.3547309, 51.2106697, -0.3547309, 51.2106697 ], "geometry": { "type": "Point", "coordinates": [ -0.3547309, 51.2106697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14464452" }, "bbox": [ -0.3631018, 51.2065127, -0.3631018, 51.2065127 ], "geometry": { "type": "Point", "coordinates": [ -0.3631018, 51.2065127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95532983" }, "bbox": [ -0.635349, 51.2756944, -0.635349, 51.2756944 ], "geometry": { "type": "Point", "coordinates": [ -0.635349, 51.2756944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18381755" }, "bbox": [ -0.3124634, 51.1341611, -0.3124634, 51.1341611 ], "geometry": { "type": "Point", "coordinates": [ -0.3124634, 51.1341611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18381163" }, "bbox": [ -0.3130127, 51.1348524, -0.3130127, 51.1348524 ], "geometry": { "type": "Point", "coordinates": [ -0.3130127, 51.1348524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18416952" }, "bbox": [ -0.3038067, 51.1606703, -0.3038067, 51.1606703 ], "geometry": { "type": "Point", "coordinates": [ -0.3038067, 51.1606703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18415547" }, "bbox": [ -0.3058363, 51.160328, -0.3058363, 51.160328 ], "geometry": { "type": "Point", "coordinates": [ -0.3058363, 51.160328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17392631" }, "bbox": [ -0.3250276, 51.1410094, -0.3250276, 51.1410094 ], "geometry": { "type": "Point", "coordinates": [ -0.3250276, 51.1410094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17391726" }, "bbox": [ -0.3265359, 51.1406858, -0.3265359, 51.1406858 ], "geometry": { "type": "Point", "coordinates": [ -0.3265359, 51.1406858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17392146" }, "bbox": [ -0.3256273, 51.1425436, -0.3256273, 51.1425436 ], "geometry": { "type": "Point", "coordinates": [ -0.3256273, 51.1425436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17391938" }, "bbox": [ -0.3262249, 51.1417315, -0.3262249, 51.1417315 ], "geometry": { "type": "Point", "coordinates": [ -0.3262249, 51.1417315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16464056" }, "bbox": [ -0.3349311, 51.2064391, -0.3349311, 51.2064391 ], "geometry": { "type": "Point", "coordinates": [ -0.3349311, 51.2064391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622770" }, "bbox": [ -0.2886964, 51.350894, -0.2886964, 51.350894 ], "geometry": { "type": "Point", "coordinates": [ -0.2886964, 51.350894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622374" }, "bbox": [ -0.2891898, 51.3512049, -0.2891898, 51.3512049 ], "geometry": { "type": "Point", "coordinates": [ -0.2891898, 51.3512049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19637601" }, "bbox": [ -0.2814822, 51.3534767, -0.2814822, 51.3534767 ], "geometry": { "type": "Point", "coordinates": [ -0.2814822, 51.3534767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18628336" }, "bbox": [ -0.2952028, 51.3478227, -0.2952028, 51.3478227 ], "geometry": { "type": "Point", "coordinates": [ -0.2952028, 51.3478227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18619386" }, "bbox": [ -0.2938598, 51.3433867, -0.2938598, 51.3433867 ], "geometry": { "type": "Point", "coordinates": [ -0.2938598, 51.3433867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18604672" }, "bbox": [ -0.3008718, 51.3332291, -0.3008718, 51.3332291 ], "geometry": { "type": "Point", "coordinates": [ -0.3008718, 51.3332291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19633623" }, "bbox": [ -0.2872076, 51.3555629, -0.2872076, 51.3555629 ], "geometry": { "type": "Point", "coordinates": [ -0.2872076, 51.3555629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19639144" }, "bbox": [ -0.2793832, 51.3573572, -0.2793832, 51.3573572 ], "geometry": { "type": "Point", "coordinates": [ -0.2793832, 51.3573572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18628851" }, "bbox": [ -0.2942671, 51.3495365, -0.2942671, 51.3495365 ], "geometry": { "type": "Point", "coordinates": [ -0.2942671, 51.3495365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18628937" }, "bbox": [ -0.2941721, 51.3480132, -0.2941721, 51.3480132 ], "geometry": { "type": "Point", "coordinates": [ -0.2941721, 51.3480132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622382" }, "bbox": [ -0.2893085, 51.3519523, -0.2893085, 51.3519523 ], "geometry": { "type": "Point", "coordinates": [ -0.2893085, 51.3519523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92448821" }, "bbox": [ -0.6734075, 51.1893191, -0.6734075, 51.1893191 ], "geometry": { "type": "Point", "coordinates": [ -0.6734075, 51.1893191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93439181" }, "bbox": [ -0.6577434, 51.1857975, -0.6577434, 51.1857975 ], "geometry": { "type": "Point", "coordinates": [ -0.6577434, 51.1857975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93439555" }, "bbox": [ -0.6577035, 51.1834565, -0.6577035, 51.1834565 ], "geometry": { "type": "Point", "coordinates": [ -0.6577035, 51.1834565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93445837" }, "bbox": [ -0.6622098, 51.1909802, -0.6622098, 51.1909802 ], "geometry": { "type": "Point", "coordinates": [ -0.6622098, 51.1909802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93448252" }, "bbox": [ -0.6588213, 51.1922482, -0.6588213, 51.1922482 ], "geometry": { "type": "Point", "coordinates": [ -0.6588213, 51.1922482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01435851" }, "bbox": [ -0.5468936, 51.1820173, -0.5468936, 51.1820173 ], "geometry": { "type": "Point", "coordinates": [ -0.5468936, 51.1820173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15418815" }, "bbox": [ -0.3443233, 51.1578963, -0.3443233, 51.1578963 ], "geometry": { "type": "Point", "coordinates": [ -0.3443233, 51.1578963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09367664" }, "bbox": [ -0.4331278, 51.1185983, -0.4331278, 51.1185983 ], "geometry": { "type": "Point", "coordinates": [ -0.4331278, 51.1185983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08364800" }, "bbox": [ -0.4510795, 51.1129743, -0.4510795, 51.1129743 ], "geometry": { "type": "Point", "coordinates": [ -0.4510795, 51.1129743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08361079" }, "bbox": [ -0.4569743, 51.1201818, -0.4569743, 51.1201818 ], "geometry": { "type": "Point", "coordinates": [ -0.4569743, 51.1201818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08352559" }, "bbox": [ -0.4552163, 51.1090984, -0.4552163, 51.1090984 ], "geometry": { "type": "Point", "coordinates": [ -0.4552163, 51.1090984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08353281" }, "bbox": [ -0.4541872, 51.1113991, -0.4541872, 51.1113991 ], "geometry": { "type": "Point", "coordinates": [ -0.4541872, 51.1113991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07377017" }, "bbox": [ -0.4620966, 51.1236349, -0.4620966, 51.1236349 ], "geometry": { "type": "Point", "coordinates": [ -0.4620966, 51.1236349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07356164" }, "bbox": [ -0.4639423, 51.1104362, -0.4639423, 51.1104362 ], "geometry": { "type": "Point", "coordinates": [ -0.4639423, 51.1104362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07359818" }, "bbox": [ -0.4587105, 51.1058655, -0.4587105, 51.1058655 ], "geometry": { "type": "Point", "coordinates": [ -0.4587105, 51.1058655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08370633" }, "bbox": [ -0.4571263, 51.1251284, -0.4571263, 51.1251284 ], "geometry": { "type": "Point", "coordinates": [ -0.4571263, 51.1251284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16403068" }, "bbox": [ -0.3384606, 51.1535598, -0.3384606, 51.1535598 ], "geometry": { "type": "Point", "coordinates": [ -0.3384606, 51.1535598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407235" }, "bbox": [ -0.4469913, 51.1520737, -0.4469913, 51.1520737 ], "geometry": { "type": "Point", "coordinates": [ -0.4469913, 51.1520737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407742" }, "bbox": [ -0.4463333, 51.152721, -0.4463333, 51.152721 ], "geometry": { "type": "Point", "coordinates": [ -0.4463333, 51.152721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18471097" }, "bbox": [ -0.3096804, 51.2187533, -0.3096804, 51.2187533 ], "geometry": { "type": "Point", "coordinates": [ -0.3096804, 51.2187533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08409422" }, "bbox": [ -0.443528, 51.1510393, -0.443528, 51.1510393 ], "geometry": { "type": "Point", "coordinates": [ -0.443528, 51.1510393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08409022" }, "bbox": [ -0.4446992, 51.1509534, -0.4446992, 51.1509534 ], "geometry": { "type": "Point", "coordinates": [ -0.4446992, 51.1509534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08409627" }, "bbox": [ -0.4436462, 51.151329, -0.4436462, 51.151329 ], "geometry": { "type": "Point", "coordinates": [ -0.4436462, 51.151329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08408934" }, "bbox": [ -0.4444965, 51.1518339, -0.4444965, 51.1518339 ], "geometry": { "type": "Point", "coordinates": [ -0.4444965, 51.1518339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18458932" }, "bbox": [ -0.3000991, 51.1953505, -0.3000991, 51.1953505 ], "geometry": { "type": "Point", "coordinates": [ -0.3000991, 51.1953505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93591881" }, "bbox": [ -0.6639326, 51.3298084, -0.6639326, 51.3298084 ], "geometry": { "type": "Point", "coordinates": [ -0.6639326, 51.3298084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93592185" }, "bbox": [ -0.6633759, 51.3301371, -0.6633759, 51.3301371 ], "geometry": { "type": "Point", "coordinates": [ -0.6633759, 51.3301371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93591790" }, "bbox": [ -0.6638562, 51.3306416, -0.6638562, 51.3306416 ], "geometry": { "type": "Point", "coordinates": [ -0.6638562, 51.3306416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93591689" }, "bbox": [ -0.6645428, 51.3304305, -0.6645428, 51.3304305 ], "geometry": { "type": "Point", "coordinates": [ -0.6645428, 51.3304305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90326782" }, "bbox": [ -0.7066358, 51.0876372, -0.7066358, 51.0876372 ], "geometry": { "type": "Point", "coordinates": [ -0.7066358, 51.0876372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82418594" }, "bbox": [ -0.8148582, 51.1707422, -0.8148582, 51.1707422 ], "geometry": { "type": "Point", "coordinates": [ -0.8148582, 51.1707422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82417189" }, "bbox": [ -0.8183131, 51.1702864, -0.8183131, 51.1702864 ], "geometry": { "type": "Point", "coordinates": [ -0.8183131, 51.1702864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82416869" }, "bbox": [ -0.8188755, 51.1685187, -0.8188755, 51.1685187 ], "geometry": { "type": "Point", "coordinates": [ -0.8188755, 51.1685187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93516653" }, "bbox": [ -0.6599087, 51.254304, -0.6599087, 51.254304 ], "geometry": { "type": "Point", "coordinates": [ -0.6599087, 51.254304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96395119" }, "bbox": [ -0.6217831, 51.1440237, -0.6217831, 51.1440237 ], "geometry": { "type": "Point", "coordinates": [ -0.6217831, 51.1440237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96393118" }, "bbox": [ -0.6243693, 51.1438569, -0.6243693, 51.1438569 ], "geometry": { "type": "Point", "coordinates": [ -0.6243693, 51.1438569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32488789" }, "bbox": [ -0.0987028, 51.2238569, -0.0987028, 51.2238569 ], "geometry": { "type": "Point", "coordinates": [ -0.0987028, 51.2238569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09621865" }, "bbox": [ -0.4335454, 51.3522582, -0.4335454, 51.3522582 ], "geometry": { "type": "Point", "coordinates": [ -0.4335454, 51.3522582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09624196" }, "bbox": [ -0.4309231, 51.3551856, -0.4309231, 51.3551856 ], "geometry": { "type": "Point", "coordinates": [ -0.4309231, 51.3551856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09638204" }, "bbox": [ -0.426005, 51.3552764, -0.426005, 51.3552764 ], "geometry": { "type": "Point", "coordinates": [ -0.426005, 51.3552764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16410265" }, "bbox": [ -0.3420751, 51.1623114, -0.3420751, 51.1623114 ], "geometry": { "type": "Point", "coordinates": [ -0.3420751, 51.1623114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15414554" }, "bbox": [ -0.3499959, 51.1612976, -0.3499959, 51.1612976 ], "geometry": { "type": "Point", "coordinates": [ -0.3499959, 51.1612976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97475525" }, "bbox": [ -0.6046316, 51.2161939, -0.6046316, 51.2161939 ], "geometry": { "type": "Point", "coordinates": [ -0.6046316, 51.2161939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96464387" }, "bbox": [ -0.6208523, 51.2131692, -0.6208523, 51.2131692 ], "geometry": { "type": "Point", "coordinates": [ -0.6208523, 51.2131692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19455213" }, "bbox": [ -0.2912045, 51.1928816, -0.2912045, 51.1928816 ], "geometry": { "type": "Point", "coordinates": [ -0.2912045, 51.1928816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15409080" }, "bbox": [ -0.3441062, 51.1547254, -0.3441062, 51.1547254 ], "geometry": { "type": "Point", "coordinates": [ -0.3441062, 51.1547254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97470358" }, "bbox": [ -0.6121566, 51.2187738, -0.6121566, 51.2187738 ], "geometry": { "type": "Point", "coordinates": [ -0.6121566, 51.2187738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21548310" }, "bbox": [ -0.2548883, 51.2730444, -0.2548883, 51.2730444 ], "geometry": { "type": "Point", "coordinates": [ -0.2548883, 51.2730444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20564173" }, "bbox": [ -0.2743002, 51.2971142, -0.2743002, 51.2971142 ], "geometry": { "type": "Point", "coordinates": [ -0.2743002, 51.2971142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20563391" }, "bbox": [ -0.2753843, 51.2985902, -0.2753843, 51.2985902 ], "geometry": { "type": "Point", "coordinates": [ -0.2753843, 51.2985902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20577323" }, "bbox": [ -0.2693598, 51.3013803, -0.2693598, 51.3013803 ], "geometry": { "type": "Point", "coordinates": [ -0.2693598, 51.3013803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20572904" }, "bbox": [ -0.275804, 51.2997642, -0.275804, 51.2997642 ], "geometry": { "type": "Point", "coordinates": [ -0.275804, 51.2997642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20576731" }, "bbox": [ -0.2704285, 51.3021995, -0.2704285, 51.3021995 ], "geometry": { "type": "Point", "coordinates": [ -0.2704285, 51.3021995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21552678" }, "bbox": [ -0.2623546, 51.2883142, -0.2623546, 51.2883142 ], "geometry": { "type": "Point", "coordinates": [ -0.2623546, 51.2883142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02350019" }, "bbox": [ -0.5442116, 51.1069937, -0.5442116, 51.1069937 ], "geometry": { "type": "Point", "coordinates": [ -0.5442116, 51.1069937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02350125" }, "bbox": [ -0.5441207, 51.1075565, -0.5441207, 51.1075565 ], "geometry": { "type": "Point", "coordinates": [ -0.5441207, 51.1075565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01359929" }, "bbox": [ -0.5443481, 51.1079657, -0.5443481, 51.1079657 ], "geometry": { "type": "Point", "coordinates": [ -0.5443481, 51.1079657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06554784" }, "bbox": [ -0.4744266, 51.2916607, -0.4744266, 51.2916607 ], "geometry": { "type": "Point", "coordinates": [ -0.4744266, 51.2916607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06559291" }, "bbox": [ -0.4677325, 51.2920974, -0.4677325, 51.2920974 ], "geometry": { "type": "Point", "coordinates": [ -0.4677325, 51.2920974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06564321" }, "bbox": [ -0.474884, 51.2950815, -0.474884, 51.2950815 ], "geometry": { "type": "Point", "coordinates": [ -0.474884, 51.2950815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06562408" }, "bbox": [ -0.477202, 51.2940187, -0.477202, 51.2940187 ], "geometry": { "type": "Point", "coordinates": [ -0.477202, 51.2940187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06571918" }, "bbox": [ -0.4780758, 51.3037861, -0.4780758, 51.3037861 ], "geometry": { "type": "Point", "coordinates": [ -0.4780758, 51.3037861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06571505" }, "bbox": [ -0.4786845, 51.3027395, -0.4786845, 51.3027395 ], "geometry": { "type": "Point", "coordinates": [ -0.4786845, 51.3027395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05568034" }, "bbox": [ -0.4838441, 51.2963981, -0.4838441, 51.2963981 ], "geometry": { "type": "Point", "coordinates": [ -0.4838441, 51.2963981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21396625" }, "bbox": [ -0.2621853, 51.139569, -0.2621853, 51.139569 ], "geometry": { "type": "Point", "coordinates": [ -0.2621853, 51.139569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21396318" }, "bbox": [ -0.2626397, 51.1394022, -0.2626397, 51.1394022 ], "geometry": { "type": "Point", "coordinates": [ -0.2626397, 51.1394022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21394960" }, "bbox": [ -0.2643989, 51.1428957, -0.2643989, 51.1428957 ], "geometry": { "type": "Point", "coordinates": [ -0.2643989, 51.1428957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21397125" }, "bbox": [ -0.261651, 51.1396898, -0.261651, 51.1396898 ], "geometry": { "type": "Point", "coordinates": [ -0.261651, 51.1396898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97460474" }, "bbox": [ -0.6116391, 51.2115733, -0.6116391, 51.2115733 ], "geometry": { "type": "Point", "coordinates": [ -0.6116391, 51.2115733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16375484" }, "bbox": [ -0.3370761, 51.1278811, -0.3370761, 51.1278811 ], "geometry": { "type": "Point", "coordinates": [ -0.3370761, 51.1278811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33457227" }, "bbox": [ -0.0880072, 51.1911142, -0.0880072, 51.1911142 ], "geometry": { "type": "Point", "coordinates": [ -0.0880072, 51.1911142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33456717" }, "bbox": [ -0.0886132, 51.1902411, -0.0886132, 51.1902411 ], "geometry": { "type": "Point", "coordinates": [ -0.0886132, 51.1902411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33457823" }, "bbox": [ -0.0870535, 51.1908182, -0.0870535, 51.1908182 ], "geometry": { "type": "Point", "coordinates": [ -0.0870535, 51.1908182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36592083" }, "bbox": [ -0.0466959, 51.3212671, -0.0466959, 51.3212671 ], "geometry": { "type": "Point", "coordinates": [ -0.0466959, 51.3212671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36591179" }, "bbox": [ -0.0481038, 51.3210382, -0.0481038, 51.3210382 ], "geometry": { "type": "Point", "coordinates": [ -0.0481038, 51.3210382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35597285" }, "bbox": [ -0.0528844, 51.3218605, -0.0528844, 51.3218605 ], "geometry": { "type": "Point", "coordinates": [ -0.0528844, 51.3218605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36602358" }, "bbox": [ -0.0462694, 51.3279351, -0.0462694, 51.3279351 ], "geometry": { "type": "Point", "coordinates": [ -0.0462694, 51.3279351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36605873" }, "bbox": [ -0.0414919, 51.3293158, -0.0414919, 51.3293158 ], "geometry": { "type": "Point", "coordinates": [ -0.0414919, 51.3293158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36606442" }, "bbox": [ -0.040117, 51.3265957, -0.040117, 51.3265957 ], "geometry": { "type": "Point", "coordinates": [ -0.040117, 51.3265957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36606942" }, "bbox": [ -0.0395083, 51.3263588, -0.0395083, 51.3263588 ], "geometry": { "type": "Point", "coordinates": [ -0.0395083, 51.3263588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36607064" }, "bbox": [ -0.0394847, 51.3284772, -0.0394847, 51.3284772 ], "geometry": { "type": "Point", "coordinates": [ -0.0394847, 51.3284772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36600684" }, "bbox": [ -0.0489119, 51.3303832, -0.0489119, 51.3303832 ], "geometry": { "type": "Point", "coordinates": [ -0.0489119, 51.3303832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35609910" }, "bbox": [ -0.0496608, 51.3236673, -0.0496608, 51.3236673 ], "geometry": { "type": "Point", "coordinates": [ -0.0496608, 51.3236673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95394336" }, "bbox": [ -0.6370799, 51.1455236, -0.6370799, 51.1455236 ], "geometry": { "type": "Point", "coordinates": [ -0.6370799, 51.1455236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95394641" }, "bbox": [ -0.6366599, 51.1461753, -0.6366599, 51.1461753 ], "geometry": { "type": "Point", "coordinates": [ -0.6366599, 51.1461753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95392848" }, "bbox": [ -0.6390603, 51.1466688, -0.6390603, 51.1466688 ], "geometry": { "type": "Point", "coordinates": [ -0.6390603, 51.1466688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07382183" }, "bbox": [ -0.468701, 51.1385851, -0.468701, 51.1385851 ], "geometry": { "type": "Point", "coordinates": [ -0.468701, 51.1385851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06477335" }, "bbox": [ -0.4736346, 51.2156308, -0.4736346, 51.2156308 ], "geometry": { "type": "Point", "coordinates": [ -0.4736346, 51.2156308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19627337" }, "bbox": [ -0.2821715, 51.3477351, -0.2821715, 51.3477351 ], "geometry": { "type": "Point", "coordinates": [ -0.2821715, 51.3477351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90426665" }, "bbox": [ -0.7043153, 51.1757522, -0.7043153, 51.1757522 ], "geometry": { "type": "Point", "coordinates": [ -0.7043153, 51.1757522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38426105" }, "bbox": [ -0.0200924, 51.1608059, -0.0200924, 51.1608059 ], "geometry": { "type": "Point", "coordinates": [ -0.0200924, 51.1608059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91359422" }, "bbox": [ -0.6880163, 51.1090123, -0.6880163, 51.1090123 ], "geometry": { "type": "Point", "coordinates": [ -0.6880163, 51.1090123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25536691" }, "bbox": [ -0.199918, 51.2706352, -0.199918, 51.2706352 ], "geometry": { "type": "Point", "coordinates": [ -0.199918, 51.2706352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15462183" }, "bbox": [ -0.3517192, 51.2090417, -0.3517192, 51.2090417 ], "geometry": { "type": "Point", "coordinates": [ -0.3517192, 51.2090417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15463092" }, "bbox": [ -0.3504715, 51.2100013, -0.3504715, 51.2100013 ], "geometry": { "type": "Point", "coordinates": [ -0.3504715, 51.2100013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08452664" }, "bbox": [ -0.4518297, 51.1997086, -0.4518297, 51.1997086 ], "geometry": { "type": "Point", "coordinates": [ -0.4518297, 51.1997086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42554039" }, "bbox": [ 0.0402423, 51.2800224, 0.0402423, 51.2800224 ], "geometry": { "type": "Point", "coordinates": [ 0.0402423, 51.2800224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90525623" }, "bbox": [ -0.7032059, 51.2622702, -0.7032059, 51.2622702 ], "geometry": { "type": "Point", "coordinates": [ -0.7032059, 51.2622702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92538166" }, "bbox": [ -0.6705604, 51.2748052, -0.6705604, 51.2748052 ], "geometry": { "type": "Point", "coordinates": [ -0.6705604, 51.2748052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400637" }, "bbox": [ -0.5133587, 51.15309, -0.5133587, 51.15309 ], "geometry": { "type": "Point", "coordinates": [ -0.5133587, 51.15309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05541944" }, "bbox": [ -0.4935752, 51.2793529, -0.4935752, 51.2793529 ], "geometry": { "type": "Point", "coordinates": [ -0.4935752, 51.2793529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94561224" }, "bbox": [ -0.6513779, 51.2976091, -0.6513779, 51.2976091 ], "geometry": { "type": "Point", "coordinates": [ -0.6513779, 51.2976091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93567339" }, "bbox": [ -0.6569507, 51.2989754, -0.6569507, 51.2989754 ], "geometry": { "type": "Point", "coordinates": [ -0.6569507, 51.2989754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11500251" }, "bbox": [ -0.410851, 51.2429134, -0.410851, 51.2429134 ], "geometry": { "type": "Point", "coordinates": [ -0.410851, 51.2429134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22512115" }, "bbox": [ -0.2501473, 51.2466112, -0.2501473, 51.2466112 ], "geometry": { "type": "Point", "coordinates": [ -0.2501473, 51.2466112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22511512" }, "bbox": [ -0.2512076, 51.2462031, -0.2512076, 51.2462031 ], "geometry": { "type": "Point", "coordinates": [ -0.2512076, 51.2462031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22511805" }, "bbox": [ -0.2507868, 51.2456298, -0.2507868, 51.2456298 ], "geometry": { "type": "Point", "coordinates": [ -0.2507868, 51.2456298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23516515" }, "bbox": [ -0.2296694, 51.2456883, -0.2296694, 51.2456883 ], "geometry": { "type": "Point", "coordinates": [ -0.2296694, 51.2456883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23514710" }, "bbox": [ -0.2323025, 51.245781, -0.2323025, 51.245781 ], "geometry": { "type": "Point", "coordinates": [ -0.2323025, 51.245781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23515005" }, "bbox": [ -0.2321846, 51.2451529, -0.2321846, 51.2451529 ], "geometry": { "type": "Point", "coordinates": [ -0.2321846, 51.2451529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513522" }, "bbox": [ -0.2341902, 51.2467122, -0.2341902, 51.2467122 ], "geometry": { "type": "Point", "coordinates": [ -0.2341902, 51.2467122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32411058" }, "bbox": [ -0.1124305, 51.1582382, -0.1124305, 51.1582382 ], "geometry": { "type": "Point", "coordinates": [ -0.1124305, 51.1582382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38422588" }, "bbox": [ -0.0255633, 51.1684851, -0.0255633, 51.1684851 ], "geometry": { "type": "Point", "coordinates": [ -0.0255633, 51.1684851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14547745" }, "bbox": [ -0.3559969, 51.2776143, -0.3559969, 51.2776143 ], "geometry": { "type": "Point", "coordinates": [ -0.3559969, 51.2776143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14546521" }, "bbox": [ -0.3579987, 51.2753439, -0.3579987, 51.2753439 ], "geometry": { "type": "Point", "coordinates": [ -0.3579987, 51.2753439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22446486" }, "bbox": [ -0.2458797, 51.1901308, -0.2458797, 51.1901308 ], "geometry": { "type": "Point", "coordinates": [ -0.2458797, 51.1901308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40448275" }, "bbox": [ 0.0142004, 51.1848493, 0.0142004, 51.1848493 ], "geometry": { "type": "Point", "coordinates": [ 0.0142004, 51.1848493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33480032" }, "bbox": [ -0.0971769, 51.2185747, -0.0971769, 51.2185747 ], "geometry": { "type": "Point", "coordinates": [ -0.0971769, 51.2185747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92471025" }, "bbox": [ -0.6826804, 51.2170739, -0.6826804, 51.2170739 ], "geometry": { "type": "Point", "coordinates": [ -0.6826804, 51.2170739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91479817" }, "bbox": [ -0.6843201, 51.2163297, -0.6843201, 51.2163297 ], "geometry": { "type": "Point", "coordinates": [ -0.6843201, 51.2163297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91479909" }, "bbox": [ -0.684252, 51.2156147, -0.684252, 51.2156147 ], "geometry": { "type": "Point", "coordinates": [ -0.684252, 51.2156147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91478516" }, "bbox": [ -0.6856825, 51.2161784, -0.6856825, 51.2161784 ], "geometry": { "type": "Point", "coordinates": [ -0.6856825, 51.2161784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93358328" }, "bbox": [ -0.6607702, 51.1094688, -0.6607702, 51.1094688 ], "geometry": { "type": "Point", "coordinates": [ -0.6607702, 51.1094688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39442991" }, "bbox": [ -0.0084479, 51.1864904, -0.0084479, 51.1864904 ], "geometry": { "type": "Point", "coordinates": [ -0.0084479, 51.1864904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93549335" }, "bbox": [ -0.6546109, 51.2807279, -0.6546109, 51.2807279 ], "geometry": { "type": "Point", "coordinates": [ -0.6546109, 51.2807279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93546328" }, "bbox": [ -0.6588851, 51.2800455, -0.6588851, 51.2800455 ], "geometry": { "type": "Point", "coordinates": [ -0.6588851, 51.2800455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93548817" }, "bbox": [ -0.6553903, 51.2789258, -0.6553903, 51.2789258 ], "geometry": { "type": "Point", "coordinates": [ -0.6553903, 51.2789258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93549731" }, "bbox": [ -0.6540277, 51.2801748, -0.6540277, 51.2801748 ], "geometry": { "type": "Point", "coordinates": [ -0.6540277, 51.2801748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93547828" }, "bbox": [ -0.6574281, 51.2797306, -0.6574281, 51.2797306 ], "geometry": { "type": "Point", "coordinates": [ -0.6574281, 51.2797306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93546947" }, "bbox": [ -0.6584873, 51.281827, -0.6584873, 51.281827 ], "geometry": { "type": "Point", "coordinates": [ -0.6584873, 51.281827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93548621" }, "bbox": [ -0.6556883, 51.2793222, -0.6556883, 51.2793222 ], "geometry": { "type": "Point", "coordinates": [ -0.6556883, 51.2793222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94540327" }, "bbox": [ -0.6534964, 51.2798323, -0.6534964, 51.2798323 ], "geometry": { "type": "Point", "coordinates": [ -0.6534964, 51.2798323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10358845" }, "bbox": [ -0.4174535, 51.1077513, -0.4174535, 51.1077513 ], "geometry": { "type": "Point", "coordinates": [ -0.4174535, 51.1077513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11355244" }, "bbox": [ -0.4083631, 51.1074278, -0.4083631, 51.1074278 ], "geometry": { "type": "Point", "coordinates": [ -0.4083631, 51.1074278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26529156" }, "bbox": [ -0.1827042, 51.257803, -0.1827042, 51.257803 ], "geometry": { "type": "Point", "coordinates": [ -0.1827042, 51.257803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23490297" }, "bbox": [ -0.2393087, 51.23561, -0.2393087, 51.23561 ], "geometry": { "type": "Point", "coordinates": [ -0.2393087, 51.23561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23500510" }, "bbox": [ -0.2385132, 51.2371323, -0.2385132, 51.2371323 ], "geometry": { "type": "Point", "coordinates": [ -0.2385132, 51.2371323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39443265" }, "bbox": [ -0.0081511, 51.1840317, -0.0081511, 51.1840317 ], "geometry": { "type": "Point", "coordinates": [ -0.0081511, 51.1840317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39444057" }, "bbox": [ -0.0068788, 51.1833897, -0.0068788, 51.1833897 ], "geometry": { "type": "Point", "coordinates": [ -0.0068788, 51.1833897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39443926" }, "bbox": [ -0.0070687, 51.1808572, -0.0070687, 51.1808572 ], "geometry": { "type": "Point", "coordinates": [ -0.0070687, 51.1808572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39443970" }, "bbox": [ -0.0068547, 51.1845327, -0.0068547, 51.1845327 ], "geometry": { "type": "Point", "coordinates": [ -0.0068547, 51.1845327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39442886" }, "bbox": [ -0.0084098, 51.1860005, -0.0084098, 51.1860005 ], "geometry": { "type": "Point", "coordinates": [ -0.0084098, 51.1860005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39444980" }, "bbox": [ -0.0055604, 51.1854479, -0.0055604, 51.1854479 ], "geometry": { "type": "Point", "coordinates": [ -0.0055604, 51.1854479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39445471" }, "bbox": [ -0.0047359, 51.1846225, -0.0047359, 51.1846225 ], "geometry": { "type": "Point", "coordinates": [ -0.0047359, 51.1846225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39457715" }, "bbox": [ -0.0006026, 51.1880542, -0.0006026, 51.1880542 ], "geometry": { "type": "Point", "coordinates": [ -0.0006026, 51.1880542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39455206" }, "bbox": [ -0.0050299, 51.1877208, -0.0050299, 51.1877208 ], "geometry": { "type": "Point", "coordinates": [ -0.0050299, 51.1877208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39458623" }, "bbox": [ 0.000247, 51.189218, 0.000247, 51.189218 ], "geometry": { "type": "Point", "coordinates": [ 0.000247, 51.189218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39456419" }, "bbox": [ -0.0032074, 51.1887737, -0.0032074, 51.1887737 ], "geometry": { "type": "Point", "coordinates": [ -0.0032074, 51.1887737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39456306" }, "bbox": [ -0.0033866, 51.1877798, -0.0033866, 51.1877798 ], "geometry": { "type": "Point", "coordinates": [ -0.0033866, 51.1877798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03511937" }, "bbox": [ -0.5226784, 51.252265, -0.5226784, 51.252265 ], "geometry": { "type": "Point", "coordinates": [ -0.5226784, 51.252265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39453216" }, "bbox": [ -0.0077984, 51.1886621, -0.0077984, 51.1886621 ], "geometry": { "type": "Point", "coordinates": [ -0.0077984, 51.1886621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39442191" }, "bbox": [ -0.0095547, 51.1864688, -0.0095547, 51.1864688 ], "geometry": { "type": "Point", "coordinates": [ -0.0095547, 51.1864688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39442184" }, "bbox": [ -0.0093609, 51.1856989, -0.0093609, 51.1856989 ], "geometry": { "type": "Point", "coordinates": [ -0.0093609, 51.1856989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39442371" }, "bbox": [ -0.009289, 51.1846421, -0.009289, 51.1846421 ], "geometry": { "type": "Point", "coordinates": [ -0.009289, 51.1846421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94480439" }, "bbox": [ -0.6545152, 51.227009, -0.6545152, 51.227009 ], "geometry": { "type": "Point", "coordinates": [ -0.6545152, 51.227009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93486964" }, "bbox": [ -0.6606606, 51.2286679, -0.6606606, 51.2286679 ], "geometry": { "type": "Point", "coordinates": [ -0.6606606, 51.2286679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93483952" }, "bbox": [ -0.6638763, 51.2282467, -0.6638763, 51.2282467 ], "geometry": { "type": "Point", "coordinates": [ -0.6638763, 51.2282467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39495106" }, "bbox": [ -0.0035443, 51.2237049, -0.0035443, 51.2237049 ], "geometry": { "type": "Point", "coordinates": [ -0.0035443, 51.2237049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499063" }, "bbox": [ 0.0015449, 51.2283384, 0.0015449, 51.2283384 ], "geometry": { "type": "Point", "coordinates": [ 0.0015449, 51.2283384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489994" }, "bbox": [ 0.0033234, 51.2224118, 0.0033234, 51.2224118 ], "geometry": { "type": "Point", "coordinates": [ 0.0033234, 51.2224118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40481385" }, "bbox": [ 0.0052214, 51.2216526, 0.0052214, 51.2216526 ], "geometry": { "type": "Point", "coordinates": [ 0.0052214, 51.2216526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40502213" }, "bbox": [ 0.0061863, 51.2332583, 0.0061863, 51.2332583 ], "geometry": { "type": "Point", "coordinates": [ 0.0061863, 51.2332583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40494280" }, "bbox": [ 0.0096664, 51.2301919, 0.0096664, 51.2301919 ], "geometry": { "type": "Point", "coordinates": [ 0.0096664, 51.2301919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40493565" }, "bbox": [ 0.008715, 51.2287283, 0.008715, 51.2287283 ], "geometry": { "type": "Point", "coordinates": [ 0.008715, 51.2287283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40492053" }, "bbox": [ 0.0063454, 51.2276837, 0.0063454, 51.2276837 ], "geometry": { "type": "Point", "coordinates": [ 0.0063454, 51.2276837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12407915" }, "bbox": [ -0.3888443, 51.1494651, -0.3888443, 51.1494651 ], "geometry": { "type": "Point", "coordinates": [ -0.3888443, 51.1494651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12406717" }, "bbox": [ -0.3905792, 51.1496729, -0.3905792, 51.1496729 ], "geometry": { "type": "Point", "coordinates": [ -0.3905792, 51.1496729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12407110" }, "bbox": [ -0.3899326, 51.1490458, -0.3899326, 51.1490458 ], "geometry": { "type": "Point", "coordinates": [ -0.3899326, 51.1490458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12397388" }, "bbox": [ -0.3895972, 51.1469407, -0.3895972, 51.1469407 ], "geometry": { "type": "Point", "coordinates": [ -0.3895972, 51.1469407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13390297" }, "bbox": [ -0.3855048, 51.147824, -0.3855048, 51.147824 ], "geometry": { "type": "Point", "coordinates": [ -0.3855048, 51.147824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13390337" }, "bbox": [ -0.3856538, 51.1424259, -0.3856538, 51.1424259 ], "geometry": { "type": "Point", "coordinates": [ -0.3856538, 51.1424259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12408809" }, "bbox": [ -0.3873777, 51.1490598, -0.3873777, 51.1490598 ], "geometry": { "type": "Point", "coordinates": [ -0.3873777, 51.1490598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12408406" }, "bbox": [ -0.3882217, 51.148773, -0.3882217, 51.148773 ], "geometry": { "type": "Point", "coordinates": [ -0.3882217, 51.148773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12408702" }, "bbox": [ -0.3877004, 51.1483313, -0.3877004, 51.1483313 ], "geometry": { "type": "Point", "coordinates": [ -0.3877004, 51.1483313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13392057" }, "bbox": [ -0.3829606, 51.1442439, -0.3829606, 51.1442439 ], "geometry": { "type": "Point", "coordinates": [ -0.3829606, 51.1442439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12398747" }, "bbox": [ -0.3878411, 51.1432893, -0.3878411, 51.1432893 ], "geometry": { "type": "Point", "coordinates": [ -0.3878411, 51.1432893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12398856" }, "bbox": [ -0.3876527, 51.1442576, -0.3876527, 51.1442576 ], "geometry": { "type": "Point", "coordinates": [ -0.3876527, 51.1442576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12504880" }, "bbox": [ -0.3896381, 51.2452688, -0.3896381, 51.2452688 ], "geometry": { "type": "Point", "coordinates": [ -0.3896381, 51.2452688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12505296" }, "bbox": [ -0.3891771, 51.2462187, -0.3891771, 51.2462187 ], "geometry": { "type": "Point", "coordinates": [ -0.3891771, 51.2462187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12505776" }, "bbox": [ -0.3884947, 51.2449132, -0.3884947, 51.2449132 ], "geometry": { "type": "Point", "coordinates": [ -0.3884947, 51.2449132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99427542" }, "bbox": [ -0.5747037, 51.1724011, -0.5747037, 51.1724011 ], "geometry": { "type": "Point", "coordinates": [ -0.5747037, 51.1724011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99424317" }, "bbox": [ -0.5791524, 51.1701977, -0.5791524, 51.1701977 ], "geometry": { "type": "Point", "coordinates": [ -0.5791524, 51.1701977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99428870" }, "bbox": [ -0.5722726, 51.1746539, -0.5722726, 51.1746539 ], "geometry": { "type": "Point", "coordinates": [ -0.5722726, 51.1746539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99420752" }, "bbox": [ -0.5843223, 51.1739799, -0.5843223, 51.1739799 ], "geometry": { "type": "Point", "coordinates": [ -0.5843223, 51.1739799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99423454" }, "bbox": [ -0.5803283, 51.1735153, -0.5803283, 51.1735153 ], "geometry": { "type": "Point", "coordinates": [ -0.5803283, 51.1735153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99424258" }, "bbox": [ -0.5790639, 51.173897, -0.5790639, 51.173897 ], "geometry": { "type": "Point", "coordinates": [ -0.5790639, 51.173897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99422656" }, "bbox": [ -0.5813366, 51.1735853, -0.5813366, 51.1735853 ], "geometry": { "type": "Point", "coordinates": [ -0.5813366, 51.1735853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418870" }, "bbox": [ -0.5726883, 51.1659472, -0.5726883, 51.1659472 ], "geometry": { "type": "Point", "coordinates": [ -0.5726883, 51.1659472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96546457" }, "bbox": [ -0.6162533, 51.2822726, -0.6162533, 51.2822726 ], "geometry": { "type": "Point", "coordinates": [ -0.6162533, 51.2822726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96546953" }, "bbox": [ -0.6153866, 51.2814707, -0.6153866, 51.2814707 ], "geometry": { "type": "Point", "coordinates": [ -0.6153866, 51.2814707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547443" }, "bbox": [ -0.6142735, 51.2808878, -0.6142735, 51.2808878 ], "geometry": { "type": "Point", "coordinates": [ -0.6142735, 51.2808878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547172" }, "bbox": [ -0.6148209, 51.2833326, -0.6148209, 51.2833326 ], "geometry": { "type": "Point", "coordinates": [ -0.6148209, 51.2833326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547959" }, "bbox": [ -0.6135987, 51.282313, -0.6135987, 51.282313 ], "geometry": { "type": "Point", "coordinates": [ -0.6135987, 51.282313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02413426" }, "bbox": [ -0.5378848, 51.1615119, -0.5378848, 51.1615119 ], "geometry": { "type": "Point", "coordinates": [ -0.5378848, 51.1615119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00403098" }, "bbox": [ -0.5668559, 51.1587036, -0.5668559, 51.1587036 ], "geometry": { "type": "Point", "coordinates": [ -0.5668559, 51.1587036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00404161" }, "bbox": [ -0.5656081, 51.1560425, -0.5656081, 51.1560425 ], "geometry": { "type": "Point", "coordinates": [ -0.5656081, 51.1560425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410614" }, "bbox": [ -0.5561426, 51.160619, -0.5561426, 51.160619 ], "geometry": { "type": "Point", "coordinates": [ -0.5561426, 51.160619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01416443" }, "bbox": [ -0.547916, 51.163057, -0.547916, 51.163057 ], "geometry": { "type": "Point", "coordinates": [ -0.547916, 51.163057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01419229" }, "bbox": [ -0.5436806, 51.1618249, -0.5436806, 51.1618249 ], "geometry": { "type": "Point", "coordinates": [ -0.5436806, 51.1618249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01413284" }, "bbox": [ -0.5522425, 51.1668488, -0.5522425, 51.1668488 ], "geometry": { "type": "Point", "coordinates": [ -0.5522425, 51.1668488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410239" }, "bbox": [ -0.5565126, 51.1628676, -0.5565126, 51.1628676 ], "geometry": { "type": "Point", "coordinates": [ -0.5565126, 51.1628676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411543" }, "bbox": [ -0.5546455, 51.1632892, -0.5546455, 51.1632892 ], "geometry": { "type": "Point", "coordinates": [ -0.5546455, 51.1632892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01418320" }, "bbox": [ -0.5451057, 51.1609861, -0.5451057, 51.1609861 ], "geometry": { "type": "Point", "coordinates": [ -0.5451057, 51.1609861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01419931" }, "bbox": [ -0.5424008, 51.1616042, -0.5424008, 51.1616042 ], "geometry": { "type": "Point", "coordinates": [ -0.5424008, 51.1616042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01418635" }, "bbox": [ -0.5445755, 51.1624066, -0.5445755, 51.1624066 ], "geometry": { "type": "Point", "coordinates": [ -0.5445755, 51.1624066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01423918" }, "bbox": [ -0.5510412, 51.1698965, -0.5510412, 51.1698965 ], "geometry": { "type": "Point", "coordinates": [ -0.5510412, 51.1698965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00415480" }, "bbox": [ -0.5633254, 51.1666, -0.5633254, 51.1666 ], "geometry": { "type": "Point", "coordinates": [ -0.5633254, 51.1666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00417923" }, "bbox": [ -0.5600023, 51.1613556, -0.5600023, 51.1613556 ], "geometry": { "type": "Point", "coordinates": [ -0.5600023, 51.1613556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00412327" }, "bbox": [ -0.5679818, 51.1619945, -0.5679818, 51.1619945 ], "geometry": { "type": "Point", "coordinates": [ -0.5679818, 51.1619945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01424453" }, "bbox": [ -0.5502123, 51.1730704, -0.5502123, 51.1730704 ], "geometry": { "type": "Point", "coordinates": [ -0.5502123, 51.1730704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01402599" }, "bbox": [ -0.5534658, 51.1592028, -0.5534658, 51.1592028 ], "geometry": { "type": "Point", "coordinates": [ -0.5534658, 51.1592028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412016" }, "bbox": [ -0.5541502, 51.1608235, -0.5541502, 51.1608235 ], "geometry": { "type": "Point", "coordinates": [ -0.5541502, 51.1608235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01416520" }, "bbox": [ -0.5475997, 51.1611724, -0.5475997, 51.1611724 ], "geometry": { "type": "Point", "coordinates": [ -0.5475997, 51.1611724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419072" }, "bbox": [ -0.5725712, 51.1659736, -0.5725712, 51.1659736 ], "geometry": { "type": "Point", "coordinates": [ -0.5725712, 51.1659736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418631" }, "bbox": [ -0.5731689, 51.1624211, -0.5731689, 51.1624211 ], "geometry": { "type": "Point", "coordinates": [ -0.5731689, 51.1624211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418219" }, "bbox": [ -0.5742197, 51.1610355, -0.5742197, 51.1610355 ], "geometry": { "type": "Point", "coordinates": [ -0.5742197, 51.1610355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418872" }, "bbox": [ -0.5727983, 51.1659214, -0.5727983, 51.1659214 ], "geometry": { "type": "Point", "coordinates": [ -0.5727983, 51.1659214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418771" }, "bbox": [ -0.5729198, 51.1658931, -0.5729198, 51.1658931 ], "geometry": { "type": "Point", "coordinates": [ -0.5729198, 51.1658931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418869" }, "bbox": [ -0.5731714, 51.165604, -0.5731714, 51.165604 ], "geometry": { "type": "Point", "coordinates": [ -0.5731714, 51.165604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418770" }, "bbox": [ -0.573086, 51.1658577, -0.573086, 51.1658577 ], "geometry": { "type": "Point", "coordinates": [ -0.573086, 51.1658577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419172" }, "bbox": [ -0.5724126, 51.1660093, -0.5724126, 51.1660093 ], "geometry": { "type": "Point", "coordinates": [ -0.5724126, 51.1660093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419373" }, "bbox": [ -0.5722121, 51.1660529, -0.5722121, 51.1660529 ], "geometry": { "type": "Point", "coordinates": [ -0.5722121, 51.1660529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419473" }, "bbox": [ -0.572008, 51.1660976, -0.572008, 51.1660976 ], "geometry": { "type": "Point", "coordinates": [ -0.572008, 51.1660976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419009" }, "bbox": [ -0.5727509, 51.1603075, -0.5727509, 51.1603075 ], "geometry": { "type": "Point", "coordinates": [ -0.5727509, 51.1603075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99409092" }, "bbox": [ -0.5727049, 51.1587742, -0.5727049, 51.1587742 ], "geometry": { "type": "Point", "coordinates": [ -0.5727049, 51.1587742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01414642" }, "bbox": [ -0.5502803, 51.1630213, -0.5502803, 51.1630213 ], "geometry": { "type": "Point", "coordinates": [ -0.5502803, 51.1630213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01415858" }, "bbox": [ -0.5485102, 51.1644918, -0.5485102, 51.1644918 ], "geometry": { "type": "Point", "coordinates": [ -0.5485102, 51.1644918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01419520" }, "bbox": [ -0.543327, 51.1609365, -0.543327, 51.1609365 ], "geometry": { "type": "Point", "coordinates": [ -0.543327, 51.1609365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92337483" }, "bbox": [ -0.6770667, 51.096307, -0.6770667, 51.096307 ], "geometry": { "type": "Point", "coordinates": [ -0.6770667, 51.096307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93338769" }, "bbox": [ -0.6609021, 51.094914, -0.6609021, 51.094914 ], "geometry": { "type": "Point", "coordinates": [ -0.6609021, 51.094914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08439475" }, "bbox": [ -0.4426917, 51.1826234, -0.4426917, 51.1826234 ], "geometry": { "type": "Point", "coordinates": [ -0.4426917, 51.1826234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91397864" }, "bbox": [ -0.6891483, 51.1486839, -0.6891483, 51.1486839 ], "geometry": { "type": "Point", "coordinates": [ -0.6891483, 51.1486839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91428893" }, "bbox": [ -0.6870239, 51.1781225, -0.6870239, 51.1781225 ], "geometry": { "type": "Point", "coordinates": [ -0.6870239, 51.1781225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91429879" }, "bbox": [ -0.6855698, 51.1768017, -0.6855698, 51.1768017 ], "geometry": { "type": "Point", "coordinates": [ -0.6855698, 51.1768017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459274" }, "bbox": [ -0.585285, 51.2022903, -0.585285, 51.2022903 ], "geometry": { "type": "Point", "coordinates": [ -0.585285, 51.2022903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458876" }, "bbox": [ -0.5859287, 51.2025118, -0.5859287, 51.2025118 ], "geometry": { "type": "Point", "coordinates": [ -0.5859287, 51.2025118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458882" }, "bbox": [ -0.5859315, 51.203126, -0.5859315, 51.203126 ], "geometry": { "type": "Point", "coordinates": [ -0.5859315, 51.203126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92505235" }, "bbox": [ -0.675909, 51.2448826, -0.675909, 51.2448826 ], "geometry": { "type": "Point", "coordinates": [ -0.675909, 51.2448826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92505196" }, "bbox": [ -0.6758384, 51.2503414, -0.6758384, 51.2503414 ], "geometry": { "type": "Point", "coordinates": [ -0.6758384, 51.2503414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95366555" }, "bbox": [ -0.6348215, 51.1204844, -0.6348215, 51.1204844 ], "geometry": { "type": "Point", "coordinates": [ -0.6348215, 51.1204844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95368123" }, "bbox": [ -0.6325706, 51.1174124, -0.6325706, 51.1174124 ], "geometry": { "type": "Point", "coordinates": [ -0.6325706, 51.1174124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95369236" }, "bbox": [ -0.6311933, 51.1184034, -0.6311933, 51.1184034 ], "geometry": { "type": "Point", "coordinates": [ -0.6311933, 51.1184034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26546758" }, "bbox": [ -0.1853678, 51.2762808, -0.1853678, 51.2762808 ], "geometry": { "type": "Point", "coordinates": [ -0.1853678, 51.2762808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26547853" }, "bbox": [ -0.1839952, 51.2760313, -0.1839952, 51.2760313 ], "geometry": { "type": "Point", "coordinates": [ -0.1839952, 51.2760313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26549194" }, "bbox": [ -0.1818461, 51.279785, -0.1818461, 51.279785 ], "geometry": { "type": "Point", "coordinates": [ -0.1818461, 51.279785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27540179" }, "bbox": [ -0.1805638, 51.2780335, -0.1805638, 51.2780335 ], "geometry": { "type": "Point", "coordinates": [ -0.1805638, 51.2780335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27545399" }, "bbox": [ -0.1729082, 51.2798319, -0.1729082, 51.2798319 ], "geometry": { "type": "Point", "coordinates": [ -0.1729082, 51.2798319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26546279" }, "bbox": [ -0.1858548, 51.2781898, -0.1858548, 51.2781898 ], "geometry": { "type": "Point", "coordinates": [ -0.1858548, 51.2781898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26546471" }, "bbox": [ -0.185723, 51.2775395, -0.185723, 51.2775395 ], "geometry": { "type": "Point", "coordinates": [ -0.185723, 51.2775395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26549663" }, "bbox": [ -0.1811512, 51.2766623, -0.1811512, 51.2766623 ], "geometry": { "type": "Point", "coordinates": [ -0.1811512, 51.2766623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26546058" }, "bbox": [ -0.1863169, 51.2763195, -0.1863169, 51.2763195 ], "geometry": { "type": "Point", "coordinates": [ -0.1863169, 51.2763195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26547345" }, "bbox": [ -0.1839235, 51.2748904, -0.1839235, 51.2748904 ], "geometry": { "type": "Point", "coordinates": [ -0.1839235, 51.2748904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27554215" }, "bbox": [ -0.174416, 51.2812466, -0.174416, 51.2812466 ], "geometry": { "type": "Point", "coordinates": [ -0.174416, 51.2812466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27543596" }, "bbox": [ -0.1753675, 51.2795929, -0.1753675, 51.2795929 ], "geometry": { "type": "Point", "coordinates": [ -0.1753675, 51.2795929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26548580" }, "bbox": [ -0.1827605, 51.2782571, -0.1827605, 51.2782571 ], "geometry": { "type": "Point", "coordinates": [ -0.1827605, 51.2782571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09421848" }, "bbox": [ -0.4395836, 51.1712184, -0.4395836, 51.1712184 ], "geometry": { "type": "Point", "coordinates": [ -0.4395836, 51.1712184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09424036" }, "bbox": [ -0.4364876, 51.1701219, -0.4364876, 51.1701219 ], "geometry": { "type": "Point", "coordinates": [ -0.4364876, 51.1701219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09421732" }, "bbox": [ -0.4397737, 51.169832, -0.4397737, 51.169832 ], "geometry": { "type": "Point", "coordinates": [ -0.4397737, 51.169832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09421234" }, "bbox": [ -0.4405738, 51.1698863, -0.4405738, 51.1698863 ], "geometry": { "type": "Point", "coordinates": [ -0.4405738, 51.1698863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09420956" }, "bbox": [ -0.4410115, 51.1718779, -0.4410115, 51.1718779 ], "geometry": { "type": "Point", "coordinates": [ -0.4410115, 51.1718779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04431039" }, "bbox": [ -0.5119401, 51.1803566, -0.5119401, 51.1803566 ], "geometry": { "type": "Point", "coordinates": [ -0.5119401, 51.1803566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430498" }, "bbox": [ -0.4983405, 51.185313, -0.4983405, 51.185313 ], "geometry": { "type": "Point", "coordinates": [ -0.4983405, 51.185313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05432089" }, "bbox": [ -0.4959096, 51.1845591, -0.4959096, 51.1845591 ], "geometry": { "type": "Point", "coordinates": [ -0.4959096, 51.1845591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431194" }, "bbox": [ -0.4973281, 51.185075, -0.4973281, 51.185075 ], "geometry": { "type": "Point", "coordinates": [ -0.4973281, 51.185075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431582" }, "bbox": [ -0.4967196, 51.1839856, -0.4967196, 51.1839856 ], "geometry": { "type": "Point", "coordinates": [ -0.4967196, 51.1839856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431388" }, "bbox": [ -0.4971499, 51.1844932, -0.4971499, 51.1844932 ], "geometry": { "type": "Point", "coordinates": [ -0.4971499, 51.1844932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431497" }, "bbox": [ -0.4970098, 51.1853448, -0.4970098, 51.1853448 ], "geometry": { "type": "Point", "coordinates": [ -0.4970098, 51.1853448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05432291" }, "bbox": [ -0.4958665, 51.1847945, -0.4958665, 51.1847945 ], "geometry": { "type": "Point", "coordinates": [ -0.4958665, 51.1847945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430191" }, "bbox": [ -0.498677, 51.1849609, -0.498677, 51.1849609 ], "geometry": { "type": "Point", "coordinates": [ -0.498677, 51.1849609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430487" }, "bbox": [ -0.4983436, 51.184548, -0.4983436, 51.184548 ], "geometry": { "type": "Point", "coordinates": [ -0.4983436, 51.184548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430886" }, "bbox": [ -0.4978096, 51.1843383, -0.4978096, 51.1843383 ], "geometry": { "type": "Point", "coordinates": [ -0.4978096, 51.1843383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05432284" }, "bbox": [ -0.496116, 51.1841436, -0.496116, 51.1841436 ], "geometry": { "type": "Point", "coordinates": [ -0.496116, 51.1841436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430998" }, "bbox": [ -0.4976796, 51.1854492, -0.4976796, 51.1854492 ], "geometry": { "type": "Point", "coordinates": [ -0.4976796, 51.1854492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03443687" }, "bbox": [ -0.5222873, 51.1938315, -0.5222873, 51.1938315 ], "geometry": { "type": "Point", "coordinates": [ -0.5222873, 51.1938315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19630913" }, "bbox": [ -0.2907833, 51.3550721, -0.2907833, 51.3550721 ], "geometry": { "type": "Point", "coordinates": [ -0.2907833, 51.3550721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41476695" }, "bbox": [ 0.0266702, 51.213056, 0.0266702, 51.213056 ], "geometry": { "type": "Point", "coordinates": [ 0.0266702, 51.213056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42470493" }, "bbox": [ 0.0322935, 51.2127857, 0.0322935, 51.2127857 ], "geometry": { "type": "Point", "coordinates": [ 0.0322935, 51.2127857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30491738" }, "bbox": [ -0.137309, 51.2287036, -0.137309, 51.2287036 ], "geometry": { "type": "Point", "coordinates": [ -0.137309, 51.2287036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29499767" }, "bbox": [ -0.1400301, 51.2311294, -0.1400301, 51.2311294 ], "geometry": { "type": "Point", "coordinates": [ -0.1400301, 51.2311294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29499469" }, "bbox": [ -0.1401212, 51.2314388, -0.1401212, 51.2314388 ], "geometry": { "type": "Point", "coordinates": [ -0.1401212, 51.2314388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29499834" }, "bbox": [ -0.1397952, 51.2284635, -0.1397952, 51.2284635 ], "geometry": { "type": "Point", "coordinates": [ -0.1397952, 51.2284635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492146" }, "bbox": [ -0.1365815, 51.2295416, -0.1365815, 51.2295416 ], "geometry": { "type": "Point", "coordinates": [ -0.1365815, 51.2295416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19420863" }, "bbox": [ -0.2980102, 51.1704557, -0.2980102, 51.1704557 ], "geometry": { "type": "Point", "coordinates": [ -0.2980102, 51.1704557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18429669" }, "bbox": [ -0.300175, 51.1712235, -0.300175, 51.1712235 ], "geometry": { "type": "Point", "coordinates": [ -0.300175, 51.1712235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18439318" }, "bbox": [ -0.2991765, 51.1755058, -0.2991765, 51.1755058 ], "geometry": { "type": "Point", "coordinates": [ -0.2991765, 51.1755058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437930" }, "bbox": [ -0.3019064, 51.1766576, -0.3019064, 51.1766576 ], "geometry": { "type": "Point", "coordinates": [ -0.3019064, 51.1766576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18427149" }, "bbox": [ -0.3033009, 51.1693299, -0.3033009, 51.1693299 ], "geometry": { "type": "Point", "coordinates": [ -0.3033009, 51.1693299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18424852" }, "bbox": [ -0.3063293, 51.1696562, -0.3063293, 51.1696562 ], "geometry": { "type": "Point", "coordinates": [ -0.3063293, 51.1696562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435529" }, "bbox": [ -0.3053386, 51.1765417, -0.3053386, 51.1765417 ], "geometry": { "type": "Point", "coordinates": [ -0.3053386, 51.1765417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18431251" }, "bbox": [ -0.3116158, 51.1787165, -0.3116158, 51.1787165 ], "geometry": { "type": "Point", "coordinates": [ -0.3116158, 51.1787165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435154" }, "bbox": [ -0.3054544, 51.1785436, -0.3054544, 51.1785436 ], "geometry": { "type": "Point", "coordinates": [ -0.3054544, 51.1785436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435986" }, "bbox": [ -0.304181, 51.1816325, -0.304181, 51.1816325 ], "geometry": { "type": "Point", "coordinates": [ -0.304181, 51.1816325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435188" }, "bbox": [ -0.3057353, 51.1819282, -0.3057353, 51.1819282 ], "geometry": { "type": "Point", "coordinates": [ -0.3057353, 51.1819282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18431972" }, "bbox": [ -0.3106269, 51.1807401, -0.3106269, 51.1807401 ], "geometry": { "type": "Point", "coordinates": [ -0.3106269, 51.1807401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17434433" }, "bbox": [ -0.3220862, 51.176863, -0.3220862, 51.176863 ], "geometry": { "type": "Point", "coordinates": [ -0.3220862, 51.176863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17437512" }, "bbox": [ -0.3169889, 51.1752603, -0.3169889, 51.1752603 ], "geometry": { "type": "Point", "coordinates": [ -0.3169889, 51.1752603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17421985" }, "bbox": [ -0.3248922, 51.1729242, -0.3248922, 51.1729242 ], "geometry": { "type": "Point", "coordinates": [ -0.3248922, 51.1729242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18422499" }, "bbox": [ -0.3101599, 51.1739882, -0.3101599, 51.1739882 ], "geometry": { "type": "Point", "coordinates": [ -0.3101599, 51.1739882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18420490" }, "bbox": [ -0.3128301, 51.1733895, -0.3128301, 51.1733895 ], "geometry": { "type": "Point", "coordinates": [ -0.3128301, 51.1733895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18421881" }, "bbox": [ -0.310811, 51.1723462, -0.310811, 51.1723462 ], "geometry": { "type": "Point", "coordinates": [ -0.310811, 51.1723462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435102" }, "bbox": [ -0.3063355, 51.1743622, -0.3063355, 51.1743622 ], "geometry": { "type": "Point", "coordinates": [ -0.3063355, 51.1743622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18430168" }, "bbox": [ -0.3130717, 51.1799747, -0.3130717, 51.1799747 ], "geometry": { "type": "Point", "coordinates": [ -0.3130717, 51.1799747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18434662" }, "bbox": [ -0.3066102, 51.179581, -0.3066102, 51.179581 ], "geometry": { "type": "Point", "coordinates": [ -0.3066102, 51.179581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437445" }, "bbox": [ -0.3027425, 51.1780542, -0.3027425, 51.1780542 ], "geometry": { "type": "Point", "coordinates": [ -0.3027425, 51.1780542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17435703" }, "bbox": [ -0.3195009, 51.1744758, -0.3195009, 51.1744758 ], "geometry": { "type": "Point", "coordinates": [ -0.3195009, 51.1744758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17431828" }, "bbox": [ -0.3251739, 51.1767391, -0.3251739, 51.1767391 ], "geometry": { "type": "Point", "coordinates": [ -0.3251739, 51.1767391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18432764" }, "bbox": [ -0.3093304, 51.1791685, -0.3093304, 51.1791685 ], "geometry": { "type": "Point", "coordinates": [ -0.3093304, 51.1791685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18433078" }, "bbox": [ -0.3086305, 51.1809082, -0.3086305, 51.1809082 ], "geometry": { "type": "Point", "coordinates": [ -0.3086305, 51.1809082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437614" }, "bbox": [ -0.3024729, 51.1751968, -0.3024729, 51.1751968 ], "geometry": { "type": "Point", "coordinates": [ -0.3024729, 51.1751968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18432667" }, "bbox": [ -0.3094583, 51.1800792, -0.3094583, 51.1800792 ], "geometry": { "type": "Point", "coordinates": [ -0.3094583, 51.1800792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18435536" }, "bbox": [ -0.3054941, 51.1769386, -0.3054941, 51.1769386 ], "geometry": { "type": "Point", "coordinates": [ -0.3054941, 51.1769386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17434117" }, "bbox": [ -0.3238739, 51.1752682, -0.3238739, 51.1752682 ], "geometry": { "type": "Point", "coordinates": [ -0.3238739, 51.1752682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35537005" }, "bbox": [ -0.0567693, 51.2604302, -0.0567693, 51.2604302 ], "geometry": { "type": "Point", "coordinates": [ -0.0567693, 51.2604302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36526479" }, "bbox": [ -0.0437371, 51.2579052, -0.0437371, 51.2579052 ], "geometry": { "type": "Point", "coordinates": [ -0.0437371, 51.2579052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36520397" }, "bbox": [ -0.0525293, 51.259306, -0.0525293, 51.259306 ], "geometry": { "type": "Point", "coordinates": [ -0.0525293, 51.259306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37536581" }, "bbox": [ -0.0285178, 51.2669437, -0.0285178, 51.2669437 ], "geometry": { "type": "Point", "coordinates": [ -0.0285178, 51.2669437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35546961" }, "bbox": [ -0.0563641, 51.2744624, -0.0563641, 51.2744624 ], "geometry": { "type": "Point", "coordinates": [ -0.0563641, 51.2744624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36536698" }, "bbox": [ -0.0423162, 51.2682767, -0.0423162, 51.2682767 ], "geometry": { "type": "Point", "coordinates": [ -0.0423162, 51.2682767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36524889" }, "bbox": [ -0.045452, 51.2588887, -0.045452, 51.2588887 ], "geometry": { "type": "Point", "coordinates": [ -0.045452, 51.2588887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36520582" }, "bbox": [ -0.0515089, 51.2583491, -0.0515089, 51.2583491 ], "geometry": { "type": "Point", "coordinates": [ -0.0515089, 51.2583491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36521957" }, "bbox": [ -0.0499297, 51.2561335, -0.0499297, 51.2561335 ], "geometry": { "type": "Point", "coordinates": [ -0.0499297, 51.2561335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36534903" }, "bbox": [ -0.0452556, 51.2601061, -0.0452556, 51.2601061 ], "geometry": { "type": "Point", "coordinates": [ -0.0452556, 51.2601061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26457189" }, "bbox": [ -0.187856, 51.1982187, -0.187856, 51.1982187 ], "geometry": { "type": "Point", "coordinates": [ -0.187856, 51.1982187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26459394" }, "bbox": [ -0.1844092, 51.1985598, -0.1844092, 51.1985598 ], "geometry": { "type": "Point", "coordinates": [ -0.1844092, 51.1985598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06539998" }, "bbox": [ -0.468082, 51.2747248, -0.468082, 51.2747248 ], "geometry": { "type": "Point", "coordinates": [ -0.468082, 51.2747248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06535377" }, "bbox": [ -0.4743652, 51.2731933, -0.4743652, 51.2731933 ], "geometry": { "type": "Point", "coordinates": [ -0.4743652, 51.2731933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06524042" }, "bbox": [ -0.4757343, 51.2619691, -0.4757343, 51.2619691 ], "geometry": { "type": "Point", "coordinates": [ -0.4757343, 51.2619691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05539085" }, "bbox": [ -0.4830103, 51.2739904, -0.4830103, 51.2739904 ], "geometry": { "type": "Point", "coordinates": [ -0.4830103, 51.2739904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05539285" }, "bbox": [ -0.482725, 51.2745113, -0.482725, 51.2745113 ], "geometry": { "type": "Point", "coordinates": [ -0.482725, 51.2745113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05538188" }, "bbox": [ -0.4847583, 51.2743351, -0.4847583, 51.2743351 ], "geometry": { "type": "Point", "coordinates": [ -0.4847583, 51.2743351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05539173" }, "bbox": [ -0.4830346, 51.2726683, -0.4830346, 51.2726683 ], "geometry": { "type": "Point", "coordinates": [ -0.4830346, 51.2726683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05536485" }, "bbox": [ -0.4869591, 51.2743376, -0.4869591, 51.2743376 ], "geometry": { "type": "Point", "coordinates": [ -0.4869591, 51.2743376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05546452" }, "bbox": [ -0.4868782, 51.2798556, -0.4868782, 51.2798556 ], "geometry": { "type": "Point", "coordinates": [ -0.4868782, 51.2798556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05547066" }, "bbox": [ -0.4858535, 51.2812773, -0.4858535, 51.2812773 ], "geometry": { "type": "Point", "coordinates": [ -0.4858535, 51.2812773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93421518" }, "bbox": [ -0.6688927, 51.171285, -0.6688927, 51.171285 ], "geometry": { "type": "Point", "coordinates": [ -0.6688927, 51.171285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93423696" }, "bbox": [ -0.6677667, 51.1768425, -0.6677667, 51.1768425 ], "geometry": { "type": "Point", "coordinates": [ -0.6677667, 51.1768425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93438317" }, "bbox": [ -0.6590959, 51.1801104, -0.6590959, 51.1801104 ], "geometry": { "type": "Point", "coordinates": [ -0.6590959, 51.1801104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93437828" }, "bbox": [ -0.6599174, 51.1811499, -0.6599174, 51.1811499 ], "geometry": { "type": "Point", "coordinates": [ -0.6599174, 51.1811499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93433001" }, "bbox": [ -0.6666974, 51.1785479, -0.6666974, 51.1785479 ], "geometry": { "type": "Point", "coordinates": [ -0.6666974, 51.1785479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93426583" }, "bbox": [ -0.6615442, 51.1770429, -0.6615442, 51.1770429 ], "geometry": { "type": "Point", "coordinates": [ -0.6615442, 51.1770429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93427067" }, "bbox": [ -0.6608072, 51.1756135, -0.6608072, 51.1756135 ], "geometry": { "type": "Point", "coordinates": [ -0.6608072, 51.1756135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93428555" }, "bbox": [ -0.6588799, 51.1745924, -0.6588799, 51.1745924 ], "geometry": { "type": "Point", "coordinates": [ -0.6588799, 51.1745924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93424597" }, "bbox": [ -0.664498, 51.1783456, -0.664498, 51.1783456 ], "geometry": { "type": "Point", "coordinates": [ -0.664498, 51.1783456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93420122" }, "bbox": [ -0.670994, 51.1717045, -0.670994, 51.1717045 ], "geometry": { "type": "Point", "coordinates": [ -0.670994, 51.1717045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93420164" }, "bbox": [ -0.6711105, 51.1755113, -0.6711105, 51.1755113 ], "geometry": { "type": "Point", "coordinates": [ -0.6711105, 51.1755113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93420440" }, "bbox": [ -0.6704012, 51.1732765, -0.6704012, 51.1732765 ], "geometry": { "type": "Point", "coordinates": [ -0.6704012, 51.1732765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93422764" }, "bbox": [ -0.6670869, 51.1754666, -0.6670869, 51.1754666 ], "geometry": { "type": "Point", "coordinates": [ -0.6670869, 51.1754666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93422459" }, "bbox": [ -0.6674172, 51.1749275, -0.6674172, 51.1749275 ], "geometry": { "type": "Point", "coordinates": [ -0.6674172, 51.1749275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93424015" }, "bbox": [ -0.6654388, 51.171004, -0.6654388, 51.171004 ], "geometry": { "type": "Point", "coordinates": [ -0.6654388, 51.171004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93423319" }, "bbox": [ -0.6667317, 51.1715782, -0.6667317, 51.1715782 ], "geometry": { "type": "Point", "coordinates": [ -0.6667317, 51.1715782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93421250" }, "bbox": [ -0.669108, 51.1740802, -0.669108, 51.1740802 ], "geometry": { "type": "Point", "coordinates": [ -0.669108, 51.1740802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93420777" }, "bbox": [ -0.6700289, 51.1766119, -0.6700289, 51.1766119 ], "geometry": { "type": "Point", "coordinates": [ -0.6700289, 51.1766119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93420918" }, "bbox": [ -0.6697986, 51.1712397, -0.6697986, 51.1712397 ], "geometry": { "type": "Point", "coordinates": [ -0.6697986, 51.1712397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93427683" }, "bbox": [ -0.6601295, 51.1771339, -0.6601295, 51.1771339 ], "geometry": { "type": "Point", "coordinates": [ -0.6601295, 51.1771339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93426641" }, "bbox": [ -0.6617196, 51.1732859, -0.6617196, 51.1732859 ], "geometry": { "type": "Point", "coordinates": [ -0.6617196, 51.1732859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93426392" }, "bbox": [ -0.662448, 51.1780223, -0.662448, 51.1780223 ], "geometry": { "type": "Point", "coordinates": [ -0.662448, 51.1780223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93427143" }, "bbox": [ -0.6609666, 51.1735158, -0.6609666, 51.1735158 ], "geometry": { "type": "Point", "coordinates": [ -0.6609666, 51.1735158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94430515" }, "bbox": [ -0.6548492, 51.1799517, -0.6548492, 51.1799517 ], "geometry": { "type": "Point", "coordinates": [ -0.6548492, 51.1799517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94432935" }, "bbox": [ -0.6523174, 51.1817227, -0.6523174, 51.1817227 ], "geometry": { "type": "Point", "coordinates": [ -0.6523174, 51.1817227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40541359" }, "bbox": [ 0.0075104, 51.273199, 0.0075104, 51.273199 ], "geometry": { "type": "Point", "coordinates": [ 0.0075104, 51.273199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41542559" }, "bbox": [ 0.0234808, 51.2729801, 0.0234808, 51.2729801 ], "geometry": { "type": "Point", "coordinates": [ 0.0234808, 51.2729801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41542679" }, "bbox": [ 0.0235923, 51.2745654, 0.0235923, 51.2745654 ], "geometry": { "type": "Point", "coordinates": [ 0.0235923, 51.2745654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41540660" }, "bbox": [ 0.0205927, 51.273103, 0.0205927, 51.273103 ], "geometry": { "type": "Point", "coordinates": [ 0.0205927, 51.273103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40559300" }, "bbox": [ 0.0190099, 51.2766277, 0.0190099, 51.2766277 ], "geometry": { "type": "Point", "coordinates": [ 0.0190099, 51.2766277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40538171" }, "bbox": [ 0.0169483, 51.2651379, 0.0169483, 51.2651379 ], "geometry": { "type": "Point", "coordinates": [ 0.0169483, 51.2651379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40539178" }, "bbox": [ 0.0182033, 51.2657746, 0.0182033, 51.2657746 ], "geometry": { "type": "Point", "coordinates": [ 0.0182033, 51.2657746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40539391" }, "bbox": [ 0.0183625, 51.2668374, 0.0183625, 51.2668374 ], "geometry": { "type": "Point", "coordinates": [ 0.0183625, 51.2668374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40548274" }, "bbox": [ 0.0169129, 51.2744771, 0.0169129, 51.2744771 ], "geometry": { "type": "Point", "coordinates": [ 0.0169129, 51.2744771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40546119" }, "bbox": [ 0.0139861, 51.2698694, 0.0139861, 51.2698694 ], "geometry": { "type": "Point", "coordinates": [ 0.0139861, 51.2698694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40544519" }, "bbox": [ 0.0116503, 51.2697684, 0.0116503, 51.2697684 ], "geometry": { "type": "Point", "coordinates": [ 0.0116503, 51.2697684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40547435" }, "bbox": [ 0.0161995, 51.270497, 0.0161995, 51.270497 ], "geometry": { "type": "Point", "coordinates": [ 0.0161995, 51.270497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439086" }, "bbox": [ -0.5435264, 51.1849756, -0.5435264, 51.1849756 ], "geometry": { "type": "Point", "coordinates": [ -0.5435264, 51.1849756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01438876" }, "bbox": [ -0.5435888, 51.1838292, -0.5435888, 51.1838292 ], "geometry": { "type": "Point", "coordinates": [ -0.5435888, 51.1838292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439181" }, "bbox": [ -0.5433007, 51.1844238, -0.5433007, 51.1844238 ], "geometry": { "type": "Point", "coordinates": [ -0.5433007, 51.1844238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01448302" }, "bbox": [ -0.5443399, 51.1862856, -0.5443399, 51.1862856 ], "geometry": { "type": "Point", "coordinates": [ -0.5443399, 51.1862856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02430819" }, "bbox": [ -0.5409079, 51.1788609, -0.5409079, 51.1788609 ], "geometry": { "type": "Point", "coordinates": [ -0.5409079, 51.1788609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23414671" }, "bbox": [ -0.2358436, 51.1614085, -0.2358436, 51.1614085 ], "geometry": { "type": "Point", "coordinates": [ -0.2358436, 51.1614085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23414190" }, "bbox": [ -0.2365159, 51.1630116, -0.2365159, 51.1630116 ], "geometry": { "type": "Point", "coordinates": [ -0.2365159, 51.1630116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23412283" }, "bbox": [ -0.2391938, 51.1624776, -0.2391938, 51.1624776 ], "geometry": { "type": "Point", "coordinates": [ -0.2391938, 51.1624776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23414024" }, "bbox": [ -0.2368689, 51.1572898, -0.2368689, 51.1572898 ], "geometry": { "type": "Point", "coordinates": [ -0.2368689, 51.1572898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23412908" }, "bbox": [ -0.2382456, 51.1557415, -0.2382456, 51.1557415 ], "geometry": { "type": "Point", "coordinates": [ -0.2382456, 51.1557415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24431773" }, "bbox": [ -0.2247112, 51.179412, -0.2247112, 51.179412 ], "geometry": { "type": "Point", "coordinates": [ -0.2247112, 51.179412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24430886" }, "bbox": [ -0.2272111, 51.1812364, -0.2272111, 51.1812364 ], "geometry": { "type": "Point", "coordinates": [ -0.2272111, 51.1812364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24447651" }, "bbox": [ -0.216145, 51.1861864, -0.216145, 51.1861864 ], "geometry": { "type": "Point", "coordinates": [ -0.216145, 51.1861864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22426877" }, "bbox": [ -0.2465871, 51.1709851, -0.2465871, 51.1709851 ], "geometry": { "type": "Point", "coordinates": [ -0.2465871, 51.1709851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22429922" }, "bbox": [ -0.2419862, 51.1658401, -0.2419862, 51.1658401 ], "geometry": { "type": "Point", "coordinates": [ -0.2419862, 51.1658401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22417845" }, "bbox": [ -0.2454005, 51.1590913, -0.2454005, 51.1590913 ], "geometry": { "type": "Point", "coordinates": [ -0.2454005, 51.1590913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22416345" }, "bbox": [ -0.2488802, 51.1595043, -0.2488802, 51.1595043 ], "geometry": { "type": "Point", "coordinates": [ -0.2488802, 51.1595043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22415076" }, "bbox": [ -0.2495789, 51.1620724, -0.2495789, 51.1620724 ], "geometry": { "type": "Point", "coordinates": [ -0.2495789, 51.1620724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22414270" }, "bbox": [ -0.2507824, 51.1615457, -0.2507824, 51.1615457 ], "geometry": { "type": "Point", "coordinates": [ -0.2507824, 51.1615457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22419482" }, "bbox": [ -0.2431402, 51.1624311, -0.2431402, 51.1624311 ], "geometry": { "type": "Point", "coordinates": [ -0.2431402, 51.1624311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22416977" }, "bbox": [ -0.2467203, 51.1621092, -0.2467203, 51.1621092 ], "geometry": { "type": "Point", "coordinates": [ -0.2467203, 51.1621092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22416325" }, "bbox": [ -0.2477494, 51.1574201, -0.2477494, 51.1574201 ], "geometry": { "type": "Point", "coordinates": [ -0.2477494, 51.1574201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22449917" }, "bbox": [ -0.2417948, 51.1835741, -0.2417948, 51.1835741 ], "geometry": { "type": "Point", "coordinates": [ -0.2417948, 51.1835741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23440809" }, "bbox": [ -0.2402715, 51.1829344, -0.2402715, 51.1829344 ], "geometry": { "type": "Point", "coordinates": [ -0.2402715, 51.1829344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00558049" }, "bbox": [ -0.5565756, 51.2895012, -0.5565756, 51.2895012 ], "geometry": { "type": "Point", "coordinates": [ -0.5565756, 51.2895012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99327793" }, "bbox": [ -0.5767357, 51.0870145, -0.5767357, 51.0870145 ], "geometry": { "type": "Point", "coordinates": [ -0.5767357, 51.0870145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18406555" }, "bbox": [ -0.3048267, 51.1518708, -0.3048267, 51.1518708 ], "geometry": { "type": "Point", "coordinates": [ -0.3048267, 51.1518708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18396482" }, "bbox": [ -0.3056805, 51.1449555, -0.3056805, 51.1449555 ], "geometry": { "type": "Point", "coordinates": [ -0.3056805, 51.1449555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18403603" }, "bbox": [ -0.3092552, 51.1473729, -0.3092552, 51.1473729 ], "geometry": { "type": "Point", "coordinates": [ -0.3092552, 51.1473729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18405140" }, "bbox": [ -0.3069369, 51.1506375, -0.3069369, 51.1506375 ], "geometry": { "type": "Point", "coordinates": [ -0.3069369, 51.1506375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18409934" }, "bbox": [ -0.3002074, 51.1500042, -0.3002074, 51.1500042 ], "geometry": { "type": "Point", "coordinates": [ -0.3002074, 51.1500042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407828" }, "bbox": [ -0.3027809, 51.1492918, -0.3027809, 51.1492918 ], "geometry": { "type": "Point", "coordinates": [ -0.3027809, 51.1492918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18408488" }, "bbox": [ -0.3019795, 51.1548232, -0.3019795, 51.1548232 ], "geometry": { "type": "Point", "coordinates": [ -0.3019795, 51.1548232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18409471" }, "bbox": [ -0.3006443, 51.1533336, -0.3006443, 51.1533336 ], "geometry": { "type": "Point", "coordinates": [ -0.3006443, 51.1533336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19401372" }, "bbox": [ -0.2981292, 51.1532189, -0.2981292, 51.1532189 ], "geometry": { "type": "Point", "coordinates": [ -0.2981292, 51.1532189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19401749" }, "bbox": [ -0.2974004, 51.1510738, -0.2974004, 51.1510738 ], "geometry": { "type": "Point", "coordinates": [ -0.2974004, 51.1510738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19401458" }, "bbox": [ -0.2978342, 51.1521857, -0.2978342, 51.1521857 ], "geometry": { "type": "Point", "coordinates": [ -0.2978342, 51.1521857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404369" }, "bbox": [ -0.2937567, 51.1528996, -0.2937567, 51.1528996 ], "geometry": { "type": "Point", "coordinates": [ -0.2937567, 51.1528996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19400931" }, "bbox": [ -0.2988147, 51.1496624, -0.2988147, 51.1496624 ], "geometry": { "type": "Point", "coordinates": [ -0.2988147, 51.1496624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07443582" }, "bbox": [ -0.4650884, 51.1925909, -0.4650884, 51.1925909 ], "geometry": { "type": "Point", "coordinates": [ -0.4650884, 51.1925909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06468010" }, "bbox": [ -0.4721639, 51.204179, -0.4721639, 51.204179 ], "geometry": { "type": "Point", "coordinates": [ -0.4721639, 51.204179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464025" }, "bbox": [ -0.464035, 51.2054219, -0.464035, 51.2054219 ], "geometry": { "type": "Point", "coordinates": [ -0.464035, 51.2054219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07414642" }, "bbox": [ -0.464578, 51.1620915, -0.464578, 51.1620915 ], "geometry": { "type": "Point", "coordinates": [ -0.464578, 51.1620915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07413360" }, "bbox": [ -0.4665709, 51.1635406, -0.4665709, 51.1635406 ], "geometry": { "type": "Point", "coordinates": [ -0.4665709, 51.1635406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06458764" }, "bbox": [ -0.471825, 51.200008, -0.471825, 51.200008 ], "geometry": { "type": "Point", "coordinates": [ -0.471825, 51.200008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07413209" }, "bbox": [ -0.4670075, 51.1585545, -0.4670075, 51.1585545 ], "geometry": { "type": "Point", "coordinates": [ -0.4670075, 51.1585545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07412547" }, "bbox": [ -0.4674703, 51.1624607, -0.4674703, 51.1624607 ], "geometry": { "type": "Point", "coordinates": [ -0.4674703, 51.1624607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07412306" }, "bbox": [ -0.468044, 51.1590035, -0.468044, 51.1590035 ], "geometry": { "type": "Point", "coordinates": [ -0.468044, 51.1590035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07417116" }, "bbox": [ -0.4614017, 51.1596949, -0.4614017, 51.1596949 ], "geometry": { "type": "Point", "coordinates": [ -0.4614017, 51.1596949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07404797" }, "bbox": [ -0.4648264, 51.1579507, -0.4648264, 51.1579507 ], "geometry": { "type": "Point", "coordinates": [ -0.4648264, 51.1579507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405893" }, "bbox": [ -0.4628281, 51.1575514, -0.4628281, 51.1575514 ], "geometry": { "type": "Point", "coordinates": [ -0.4628281, 51.1575514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07404595" }, "bbox": [ -0.4648534, 51.1577111, -0.4648534, 51.1577111 ], "geometry": { "type": "Point", "coordinates": [ -0.4648534, 51.1577111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407495" }, "bbox": [ -0.4611807, 51.1578829, -0.4611807, 51.1578829 ], "geometry": { "type": "Point", "coordinates": [ -0.4611807, 51.1578829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466914" }, "bbox": [ -0.4598182, 51.2043614, -0.4598182, 51.2043614 ], "geometry": { "type": "Point", "coordinates": [ -0.4598182, 51.2043614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464477" }, "bbox": [ -0.4633725, 51.2100845, -0.4633725, 51.2100845 ], "geometry": { "type": "Point", "coordinates": [ -0.4633725, 51.2100845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453404" }, "bbox": [ -0.4651533, 51.1947394, -0.4651533, 51.1947394 ], "geometry": { "type": "Point", "coordinates": [ -0.4651533, 51.1947394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07451431" }, "bbox": [ -0.4677363, 51.1969085, -0.4677363, 51.1969085 ], "geometry": { "type": "Point", "coordinates": [ -0.4677363, 51.1969085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07450138" }, "bbox": [ -0.4699379, 51.197695, -0.4699379, 51.197695 ], "geometry": { "type": "Point", "coordinates": [ -0.4699379, 51.197695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41556484" }, "bbox": [ 0.029646, 51.2842135, 0.029646, 51.2842135 ], "geometry": { "type": "Point", "coordinates": [ 0.029646, 51.2842135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41559684" }, "bbox": [ 0.0337542, 51.2839846, 0.0337542, 51.2839846 ], "geometry": { "type": "Point", "coordinates": [ 0.0337542, 51.2839846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41558616" }, "bbox": [ 0.0323941, 51.2777756, 0.0323941, 51.2777756 ], "geometry": { "type": "Point", "coordinates": [ 0.0323941, 51.2777756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41558823" }, "bbox": [ 0.0329785, 51.2786352, 0.0329785, 51.2786352 ], "geometry": { "type": "Point", "coordinates": [ 0.0329785, 51.2786352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41556431" }, "bbox": [ 0.0293022, 51.279314, 0.0293022, 51.279314 ], "geometry": { "type": "Point", "coordinates": [ 0.0293022, 51.279314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42550112" }, "bbox": [ 0.0345835, 51.2775822, 0.0345835, 51.2775822 ], "geometry": { "type": "Point", "coordinates": [ 0.0345835, 51.2775822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41548570" }, "bbox": [ 0.0321392, 51.2738522, 0.0321392, 51.2738522 ], "geometry": { "type": "Point", "coordinates": [ 0.0321392, 51.2738522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41546161" }, "bbox": [ 0.0287233, 51.273052, 0.0287233, 51.273052 ], "geometry": { "type": "Point", "coordinates": [ 0.0287233, 51.273052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07550034" }, "bbox": [ -0.4669712, 51.2871553, -0.4669712, 51.2871553 ], "geometry": { "type": "Point", "coordinates": [ -0.4669712, 51.2871553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07551421" }, "bbox": [ -0.464555, 51.2860178, -0.464555, 51.2860178 ], "geometry": { "type": "Point", "coordinates": [ -0.464555, 51.2860178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07551409" }, "bbox": [ -0.4654729, 51.2850245, -0.4654729, 51.2850245 ], "geometry": { "type": "Point", "coordinates": [ -0.4654729, 51.2850245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07550203" }, "bbox": [ -0.467087, 51.2850925, -0.467087, 51.2850925 ], "geometry": { "type": "Point", "coordinates": [ -0.467087, 51.2850925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06553395" }, "bbox": [ -0.4763933, 51.2927611, -0.4763933, 51.2927611 ], "geometry": { "type": "Point", "coordinates": [ -0.4763933, 51.2927611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07542283" }, "bbox": [ -0.4639811, 51.2823316, -0.4639811, 51.2823316 ], "geometry": { "type": "Point", "coordinates": [ -0.4639811, 51.2823316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09425088" }, "bbox": [ -0.4347539, 51.1747571, -0.4347539, 51.1747571 ], "geometry": { "type": "Point", "coordinates": [ -0.4347539, 51.1747571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426287" }, "bbox": [ -0.4332217, 51.1746016, -0.4332217, 51.1746016 ], "geometry": { "type": "Point", "coordinates": [ -0.4332217, 51.1746016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09433326" }, "bbox": [ -0.4373137, 51.1781779, -0.4373137, 51.1781779 ], "geometry": { "type": "Point", "coordinates": [ -0.4373137, 51.1781779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09433425" }, "bbox": [ -0.4370115, 51.1780429, -0.4370115, 51.1780429 ], "geometry": { "type": "Point", "coordinates": [ -0.4370115, 51.1780429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09436107" }, "bbox": [ -0.433362, 51.1763289, -0.433362, 51.1763289 ], "geometry": { "type": "Point", "coordinates": [ -0.433362, 51.1763289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09431215" }, "bbox": [ -0.4404497, 51.1771308, -0.4404497, 51.1771308 ], "geometry": { "type": "Point", "coordinates": [ -0.4404497, 51.1771308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08404339" }, "bbox": [ -0.4509766, 51.1524864, -0.4509766, 51.1524864 ], "geometry": { "type": "Point", "coordinates": [ -0.4509766, 51.1524864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08405855" }, "bbox": [ -0.4487963, 51.1540056, -0.4487963, 51.1540056 ], "geometry": { "type": "Point", "coordinates": [ -0.4487963, 51.1540056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08404019" }, "bbox": [ -0.4513746, 51.1507761, -0.4513746, 51.1507761 ], "geometry": { "type": "Point", "coordinates": [ -0.4513746, 51.1507761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24451269" }, "bbox": [ -0.224924, 51.1969458, -0.224924, 51.1969458 ], "geometry": { "type": "Point", "coordinates": [ -0.224924, 51.1969458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24455955" }, "bbox": [ -0.2182247, 51.1954497, -0.2182247, 51.1954497 ], "geometry": { "type": "Point", "coordinates": [ -0.2182247, 51.1954497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24450417" }, "bbox": [ -0.2262019, 51.1922852, -0.2262019, 51.1922852 ], "geometry": { "type": "Point", "coordinates": [ -0.2262019, 51.1922852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24450623" }, "bbox": [ -0.2261104, 51.1927044, -0.2261104, 51.1927044 ], "geometry": { "type": "Point", "coordinates": [ -0.2261104, 51.1927044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23467642" }, "bbox": [ -0.23015, 51.2033889, -0.23015, 51.2033889 ], "geometry": { "type": "Point", "coordinates": [ -0.23015, 51.2033889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23467432" }, "bbox": [ -0.2299865, 51.2027407, -0.2299865, 51.2027407 ], "geometry": { "type": "Point", "coordinates": [ -0.2299865, 51.2027407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09432401" }, "bbox": [ -0.4386891, 51.1759359, -0.4386891, 51.1759359 ], "geometry": { "type": "Point", "coordinates": [ -0.4386891, 51.1759359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543082" }, "bbox": [ -0.5630585, 51.2838289, -0.5630585, 51.2838289 ], "geometry": { "type": "Point", "coordinates": [ -0.5630585, 51.2838289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543084" }, "bbox": [ -0.5630481, 51.2840045, -0.5630481, 51.2840045 ], "geometry": { "type": "Point", "coordinates": [ -0.5630481, 51.2840045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00540872" }, "bbox": [ -0.5655651, 51.2832034, -0.5655651, 51.2832034 ], "geometry": { "type": "Point", "coordinates": [ -0.5655651, 51.2832034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543274" }, "bbox": [ -0.5629892, 51.2830631, -0.5629892, 51.2830631 ], "geometry": { "type": "Point", "coordinates": [ -0.5629892, 51.2830631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543165" }, "bbox": [ -0.563107, 51.2822988, -0.563107, 51.2822988 ], "geometry": { "type": "Point", "coordinates": [ -0.563107, 51.2822988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98420858" }, "bbox": [ -0.5983832, 51.1740323, -0.5983832, 51.1740323 ], "geometry": { "type": "Point", "coordinates": [ -0.5983832, 51.1740323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97427724" }, "bbox": [ -0.6034039, 51.1718756, -0.6034039, 51.1718756 ], "geometry": { "type": "Point", "coordinates": [ -0.6034039, 51.1718756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00540639" }, "bbox": [ -0.56617, 51.2795361, -0.56617, 51.2795361 ], "geometry": { "type": "Point", "coordinates": [ -0.56617, 51.2795361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00540342" }, "bbox": [ -0.5670951, 51.2802275, -0.5670951, 51.2802275 ], "geometry": { "type": "Point", "coordinates": [ -0.5670951, 51.2802275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99549846" }, "bbox": [ -0.5678426, 51.2805305, -0.5678426, 51.2805305 ], "geometry": { "type": "Point", "coordinates": [ -0.5678426, 51.2805305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19418863" }, "bbox": [ -0.287019, 51.1613349, -0.287019, 51.1613349 ], "geometry": { "type": "Point", "coordinates": [ -0.287019, 51.1613349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04343688" }, "bbox": [ -0.5108707, 51.1038457, -0.5108707, 51.1038457 ], "geometry": { "type": "Point", "coordinates": [ -0.5108707, 51.1038457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05389155" }, "bbox": [ -0.4876558, 51.1365085, -0.4876558, 51.1365085 ], "geometry": { "type": "Point", "coordinates": [ -0.4876558, 51.1365085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05387733" }, "bbox": [ -0.4895848, 51.134603, -0.4895848, 51.134603 ], "geometry": { "type": "Point", "coordinates": [ -0.4895848, 51.134603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05387028" }, "bbox": [ -0.4899252, 51.1341864, -0.4899252, 51.1341864 ], "geometry": { "type": "Point", "coordinates": [ -0.4899252, 51.1341864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05384557" }, "bbox": [ -0.494182, 51.1368259, -0.494182, 51.1368259 ], "geometry": { "type": "Point", "coordinates": [ -0.494182, 51.1368259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05384165" }, "bbox": [ -0.494745, 51.1375218, -0.494745, 51.1375218 ], "geometry": { "type": "Point", "coordinates": [ -0.494745, 51.1375218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05388325" }, "bbox": [ -0.4887017, 51.133815, -0.4887017, 51.133815 ], "geometry": { "type": "Point", "coordinates": [ -0.4887017, 51.133815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05388944" }, "bbox": [ -0.4876306, 51.1355097, -0.4876306, 51.1355097 ], "geometry": { "type": "Point", "coordinates": [ -0.4876306, 51.1355097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05384490" }, "bbox": [ -0.4944938, 51.1395791, -0.4944938, 51.1395791 ], "geometry": { "type": "Point", "coordinates": [ -0.4944938, 51.1395791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04360964" }, "bbox": [ -0.5140414, 51.1196983, -0.5140414, 51.1196983 ], "geometry": { "type": "Point", "coordinates": [ -0.5140414, 51.1196983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362171" }, "bbox": [ -0.5123118, 51.1202762, -0.5123118, 51.1202762 ], "geometry": { "type": "Point", "coordinates": [ -0.5123118, 51.1202762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362581" }, "bbox": [ -0.5117203, 51.1213082, -0.5117203, 51.1213082 ], "geometry": { "type": "Point", "coordinates": [ -0.5117203, 51.1213082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17498823" }, "bbox": [ -0.3128982, 51.2302488, -0.3128982, 51.2302488 ], "geometry": { "type": "Point", "coordinates": [ -0.3128982, 51.2302488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17497326" }, "bbox": [ -0.3149186, 51.230397, -0.3149186, 51.230397 ], "geometry": { "type": "Point", "coordinates": [ -0.3149186, 51.230397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17488244" }, "bbox": [ -0.3141712, 51.2229973, -0.3141712, 51.2229973 ], "geometry": { "type": "Point", "coordinates": [ -0.3141712, 51.2229973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17487624" }, "bbox": [ -0.3151017, 51.2212543, -0.3151017, 51.2212543 ], "geometry": { "type": "Point", "coordinates": [ -0.3151017, 51.2212543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17488351" }, "bbox": [ -0.3140802, 51.2235659, -0.3140802, 51.2235659 ], "geometry": { "type": "Point", "coordinates": [ -0.3140802, 51.2235659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18467406" }, "bbox": [ -0.3018623, 51.2016221, -0.3018623, 51.2016221 ], "geometry": { "type": "Point", "coordinates": [ -0.3018623, 51.2016221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18464505" }, "bbox": [ -0.3060606, 51.2015528, -0.3060606, 51.2015528 ], "geometry": { "type": "Point", "coordinates": [ -0.3060606, 51.2015528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03540567" }, "bbox": [ -0.5236778, 51.281874, -0.5236778, 51.281874 ], "geometry": { "type": "Point", "coordinates": [ -0.5236778, 51.281874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02549974" }, "bbox": [ -0.5246344, 51.2824918, -0.5246344, 51.2824918 ], "geometry": { "type": "Point", "coordinates": [ -0.5246344, 51.2824918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03536583" }, "bbox": [ -0.5155509, 51.2747286, -0.5155509, 51.2747286 ], "geometry": { "type": "Point", "coordinates": [ -0.5155509, 51.2747286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03535469" }, "bbox": [ -0.5172003, 51.2729694, -0.5172003, 51.2729694 ], "geometry": { "type": "Point", "coordinates": [ -0.5172003, 51.2729694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03530628" }, "bbox": [ -0.5242447, 51.2695602, -0.5242447, 51.2695602 ], "geometry": { "type": "Point", "coordinates": [ -0.5242447, 51.2695602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02525320" }, "bbox": [ -0.5317882, 51.2598001, -0.5317882, 51.2598001 ], "geometry": { "type": "Point", "coordinates": [ -0.5317882, 51.2598001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02546484" }, "bbox": [ -0.5296195, 51.2834966, -0.5296195, 51.2834966 ], "geometry": { "type": "Point", "coordinates": [ -0.5296195, 51.2834966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02549663" }, "bbox": [ -0.5244352, 51.2808066, -0.5244352, 51.2808066 ], "geometry": { "type": "Point", "coordinates": [ -0.5244352, 51.2808066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03530543" }, "bbox": [ -0.5242319, 51.2707353, -0.5242319, 51.2707353 ], "geometry": { "type": "Point", "coordinates": [ -0.5242319, 51.2707353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03536050" }, "bbox": [ -0.5164074, 51.2713496, -0.5164074, 51.2713496 ], "geometry": { "type": "Point", "coordinates": [ -0.5164074, 51.2713496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03544105" }, "bbox": [ -0.5189692, 51.2762339, -0.5189692, 51.2762339 ], "geometry": { "type": "Point", "coordinates": [ -0.5189692, 51.2762339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03542878" }, "bbox": [ -0.520606, 51.2826674, -0.520606, 51.2826674 ], "geometry": { "type": "Point", "coordinates": [ -0.520606, 51.2826674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03554326" }, "bbox": [ -0.5182072, 51.287112, -0.5182072, 51.287112 ], "geometry": { "type": "Point", "coordinates": [ -0.5182072, 51.287112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03555930" }, "bbox": [ -0.5159096, 51.287486, -0.5159096, 51.287486 ], "geometry": { "type": "Point", "coordinates": [ -0.5159096, 51.287486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03557149" }, "bbox": [ -0.5141922, 51.2891241, -0.5141922, 51.2891241 ], "geometry": { "type": "Point", "coordinates": [ -0.5141922, 51.2891241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03552340" }, "bbox": [ -0.5211049, 51.2883668, -0.5211049, 51.2883668 ], "geometry": { "type": "Point", "coordinates": [ -0.5211049, 51.2883668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03556051" }, "bbox": [ -0.5158077, 51.2893914, -0.5158077, 51.2893914 ], "geometry": { "type": "Point", "coordinates": [ -0.5158077, 51.2893914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03556456" }, "bbox": [ -0.5149608, 51.2899015, -0.5149608, 51.2899015 ], "geometry": { "type": "Point", "coordinates": [ -0.5149608, 51.2899015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15496082" }, "bbox": [ -0.3454839, 51.235928, -0.3454839, 51.235928 ], "geometry": { "type": "Point", "coordinates": [ -0.3454839, 51.235928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15496072" }, "bbox": [ -0.3455815, 51.2349233, -0.3455815, 51.2349233 ], "geometry": { "type": "Point", "coordinates": [ -0.3455815, 51.2349233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03557534" }, "bbox": [ -0.5133378, 51.2878537, -0.5133378, 51.2878537 ], "geometry": { "type": "Point", "coordinates": [ -0.5133378, 51.2878537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03557440" }, "bbox": [ -0.5136458, 51.2883814, -0.5136458, 51.2883814 ], "geometry": { "type": "Point", "coordinates": [ -0.5136458, 51.2883814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03556533" }, "bbox": [ -0.5150322, 51.2877515, -0.5150322, 51.2877515 ], "geometry": { "type": "Point", "coordinates": [ -0.5150322, 51.2877515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03556553" }, "bbox": [ -0.5144884, 51.289394, -0.5144884, 51.289394 ], "geometry": { "type": "Point", "coordinates": [ -0.5144884, 51.289394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399529" }, "bbox": [ -0.6153079, 51.1447391, -0.6153079, 51.1447391 ], "geometry": { "type": "Point", "coordinates": [ -0.6153079, 51.1447391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399218" }, "bbox": [ -0.6163468, 51.1438125, -0.6163468, 51.1438125 ], "geometry": { "type": "Point", "coordinates": [ -0.6163468, 51.1438125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399636" }, "bbox": [ -0.6151047, 51.1454769, -0.6151047, 51.1454769 ], "geometry": { "type": "Point", "coordinates": [ -0.6151047, 51.1454769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390216" }, "bbox": [ -0.6143185, 51.1435234, -0.6143185, 51.1435234 ], "geometry": { "type": "Point", "coordinates": [ -0.6143185, 51.1435234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30483806" }, "bbox": [ -0.1347362, 51.2169603, -0.1347362, 51.2169603 ], "geometry": { "type": "Point", "coordinates": [ -0.1347362, 51.2169603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30485618" }, "bbox": [ -0.1319322, 51.2179024, -0.1319322, 51.2179024 ], "geometry": { "type": "Point", "coordinates": [ -0.1319322, 51.2179024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30474726" }, "bbox": [ -0.1341584, 51.2096418, -0.1341584, 51.2096418 ], "geometry": { "type": "Point", "coordinates": [ -0.1341584, 51.2096418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482590" }, "bbox": [ -0.6940384, 51.2321965, -0.6940384, 51.2321965 ], "geometry": { "type": "Point", "coordinates": [ -0.6940384, 51.2321965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30448785" }, "bbox": [ -0.1286322, 51.1879299, -0.1286322, 51.1879299 ], "geometry": { "type": "Point", "coordinates": [ -0.1286322, 51.1879299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521751" }, "bbox": [ -0.6087656, 51.2634371, -0.6087656, 51.2634371 ], "geometry": { "type": "Point", "coordinates": [ -0.6087656, 51.2634371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521947" }, "bbox": [ -0.6083425, 51.2632371, -0.6083425, 51.2632371 ], "geometry": { "type": "Point", "coordinates": [ -0.6083425, 51.2632371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522575" }, "bbox": [ -0.6075913, 51.265733, -0.6075913, 51.265733 ], "geometry": { "type": "Point", "coordinates": [ -0.6075913, 51.265733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522185" }, "bbox": [ -0.6079818, 51.266291, -0.6079818, 51.266291 ], "geometry": { "type": "Point", "coordinates": [ -0.6079818, 51.266291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521446" }, "bbox": [ -0.609202, 51.2631082, -0.609202, 51.2631082 ], "geometry": { "type": "Point", "coordinates": [ -0.609202, 51.2631082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522172" }, "bbox": [ -0.607942, 51.2652071, -0.607942, 51.2652071 ], "geometry": { "type": "Point", "coordinates": [ -0.607942, 51.2652071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522257" }, "bbox": [ -0.6080222, 51.2639919, -0.6080222, 51.2639919 ], "geometry": { "type": "Point", "coordinates": [ -0.6080222, 51.2639919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521956" }, "bbox": [ -0.608437, 51.2639385, -0.608437, 51.2639385 ], "geometry": { "type": "Point", "coordinates": [ -0.608437, 51.2639385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30448132" }, "bbox": [ -0.1297956, 51.1831686, -0.1297956, 51.1831686 ], "geometry": { "type": "Point", "coordinates": [ -0.1297956, 51.1831686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29459224" }, "bbox": [ -0.1419687, 51.1915694, -0.1419687, 51.1915694 ], "geometry": { "type": "Point", "coordinates": [ -0.1419687, 51.1915694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29453322" }, "bbox": [ -0.1504661, 51.191711, -0.1504661, 51.191711 ], "geometry": { "type": "Point", "coordinates": [ -0.1504661, 51.191711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29453318" }, "bbox": [ -0.1506633, 51.1911475, -0.1506633, 51.1911475 ], "geometry": { "type": "Point", "coordinates": [ -0.1506633, 51.1911475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451311" }, "bbox": [ -0.1535536, 51.1906707, -0.1535536, 51.1906707 ], "geometry": { "type": "Point", "coordinates": [ -0.1535536, 51.1906707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30450138" }, "bbox": [ -0.1409141, 51.1929815, -0.1409141, 51.1929815 ], "geometry": { "type": "Point", "coordinates": [ -0.1409141, 51.1929815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29441393" }, "bbox": [ -0.1533014, 51.1891823, -0.1533014, 51.1891823 ], "geometry": { "type": "Point", "coordinates": [ -0.1533014, 51.1891823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26520155" }, "bbox": [ -0.1955598, 51.2582219, -0.1955598, 51.2582219 ], "geometry": { "type": "Point", "coordinates": [ -0.1955598, 51.2582219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27549180" }, "bbox": [ -0.1676259, 51.2779877, -0.1676259, 51.2779877 ], "geometry": { "type": "Point", "coordinates": [ -0.1676259, 51.2779877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25536931" }, "bbox": [ -0.1997591, 51.2653153, -0.1997591, 51.2653153 ], "geometry": { "type": "Point", "coordinates": [ -0.1997591, 51.2653153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25546426" }, "bbox": [ -0.2002573, 51.2736522, -0.2002573, 51.2736522 ], "geometry": { "type": "Point", "coordinates": [ -0.2002573, 51.2736522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25546051" }, "bbox": [ -0.2012075, 51.275867, -0.2012075, 51.275867 ], "geometry": { "type": "Point", "coordinates": [ -0.2012075, 51.275867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25548623" }, "bbox": [ -0.1971058, 51.2732919, -0.1971058, 51.2732919 ], "geometry": { "type": "Point", "coordinates": [ -0.1971058, 51.2732919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28550609" }, "bbox": [ -0.165183, 51.2805035, -0.165183, 51.2805035 ], "geometry": { "type": "Point", "coordinates": [ -0.165183, 51.2805035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28553271" }, "bbox": [ -0.1610831, 51.2859965, -0.1610831, 51.2859965 ], "geometry": { "type": "Point", "coordinates": [ -0.1610831, 51.2859965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26535218" }, "bbox": [ -0.1880517, 51.2636298, -0.1880517, 51.2636298 ], "geometry": { "type": "Point", "coordinates": [ -0.1880517, 51.2636298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26539378" }, "bbox": [ -0.1819542, 51.2691444, -0.1819542, 51.2691444 ], "geometry": { "type": "Point", "coordinates": [ -0.1819542, 51.2691444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27547381" }, "bbox": [ -0.1699779, 51.2781584, -0.1699779, 51.2781584 ], "geometry": { "type": "Point", "coordinates": [ -0.1699779, 51.2781584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25542551" }, "bbox": [ -0.2061265, 51.2761766, -0.2061265, 51.2761766 ], "geometry": { "type": "Point", "coordinates": [ -0.2061265, 51.2761766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25548948" }, "bbox": [ -0.1966226, 51.2755073, -0.1966226, 51.2755073 ], "geometry": { "type": "Point", "coordinates": [ -0.1966226, 51.2755073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25557405" }, "bbox": [ -0.1985831, 51.2809098, -0.1985831, 51.2809098 ], "geometry": { "type": "Point", "coordinates": [ -0.1985831, 51.2809098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24534172" }, "bbox": [ -0.217727, 51.2692166, -0.217727, 51.2692166 ], "geometry": { "type": "Point", "coordinates": [ -0.217727, 51.2692166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24548240" }, "bbox": [ -0.2121172, 51.27536, -0.2121172, 51.27536 ], "geometry": { "type": "Point", "coordinates": [ -0.2121172, 51.27536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26532620" }, "bbox": [ -0.19161, 51.2640277, -0.19161, 51.2640277 ], "geometry": { "type": "Point", "coordinates": [ -0.19161, 51.2640277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26532223" }, "bbox": [ -0.192707, 51.26441, -0.192707, 51.26441 ], "geometry": { "type": "Point", "coordinates": [ -0.192707, 51.26441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26535866" }, "bbox": [ -0.1868075, 51.2681634, -0.1868075, 51.2681634 ], "geometry": { "type": "Point", "coordinates": [ -0.1868075, 51.2681634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27540622" }, "bbox": [ -0.1801978, 51.2730438, -0.1801978, 51.2730438 ], "geometry": { "type": "Point", "coordinates": [ -0.1801978, 51.2730438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28541985" }, "bbox": [ -0.1629999, 51.2782284, -0.1629999, 51.2782284 ], "geometry": { "type": "Point", "coordinates": [ -0.1629999, 51.2782284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28541733" }, "bbox": [ -0.1636785, 51.2739528, -0.1636785, 51.2739528 ], "geometry": { "type": "Point", "coordinates": [ -0.1636785, 51.2739528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25535736" }, "bbox": [ -0.2013972, 51.2653489, -0.2013972, 51.2653489 ], "geometry": { "type": "Point", "coordinates": [ -0.2013972, 51.2653489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25532788" }, "bbox": [ -0.2056316, 51.2704386, -0.2056316, 51.2704386 ], "geometry": { "type": "Point", "coordinates": [ -0.2056316, 51.2704386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25543317" }, "bbox": [ -0.2046539, 51.2728239, -0.2046539, 51.2728239 ], "geometry": { "type": "Point", "coordinates": [ -0.2046539, 51.2728239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24532223" }, "bbox": [ -0.2209567, 51.2648613, -0.2209567, 51.2648613 ], "geometry": { "type": "Point", "coordinates": [ -0.2209567, 51.2648613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26543312" }, "bbox": [ -0.1903124, 51.2722546, -0.1903124, 51.2722546 ], "geometry": { "type": "Point", "coordinates": [ -0.1903124, 51.2722546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26532595" }, "bbox": [ -0.1901403, 51.2705054, -0.1901403, 51.2705054 ], "geometry": { "type": "Point", "coordinates": [ -0.1901403, 51.2705054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26532169" }, "bbox": [ -0.1922295, 51.2683653, -0.1922295, 51.2683653 ], "geometry": { "type": "Point", "coordinates": [ -0.1922295, 51.2683653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26532276" }, "bbox": [ -0.1920414, 51.2690534, -0.1920414, 51.2690534 ], "geometry": { "type": "Point", "coordinates": [ -0.1920414, 51.2690534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26553249" }, "bbox": [ -0.1899468, 51.2845484, -0.1899468, 51.2845484 ], "geometry": { "type": "Point", "coordinates": [ -0.1899468, 51.2845484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15412274" }, "bbox": [ -0.3535403, 51.1635417, -0.3535403, 51.1635417 ], "geometry": { "type": "Point", "coordinates": [ -0.3535403, 51.1635417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11392678" }, "bbox": [ -0.410777, 51.146542, -0.410777, 51.146542 ], "geometry": { "type": "Point", "coordinates": [ -0.410777, 51.146542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13411614" }, "bbox": [ -0.3834305, 51.1583216, -0.3834305, 51.1583216 ], "geometry": { "type": "Point", "coordinates": [ -0.3834305, 51.1583216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12407568" }, "bbox": [ -0.3893385, 51.1543237, -0.3893385, 51.1543237 ], "geometry": { "type": "Point", "coordinates": [ -0.3893385, 51.1543237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13402561" }, "bbox": [ -0.3820966, 51.1534825, -0.3820966, 51.1534825 ], "geometry": { "type": "Point", "coordinates": [ -0.3820966, 51.1534825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403966" }, "bbox": [ -0.3800179, 51.1539231, -0.3800179, 51.1539231 ], "geometry": { "type": "Point", "coordinates": [ -0.3800179, 51.1539231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16424187" }, "bbox": [ -0.3363933, 51.173309, -0.3363933, 51.173309 ], "geometry": { "type": "Point", "coordinates": [ -0.3363933, 51.173309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15414971" }, "bbox": [ -0.3496683, 51.162774, -0.3496683, 51.162774 ], "geometry": { "type": "Point", "coordinates": [ -0.3496683, 51.162774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15437902" }, "bbox": [ -0.3449111, 51.1747544, -0.3449111, 51.1747544 ], "geometry": { "type": "Point", "coordinates": [ -0.3449111, 51.1747544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15427275" }, "bbox": [ -0.3477159, 51.1720493, -0.3477159, 51.1720493 ], "geometry": { "type": "Point", "coordinates": [ -0.3477159, 51.1720493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15427396" }, "bbox": [ -0.3458663, 51.1742205, -0.3458663, 51.1742205 ], "geometry": { "type": "Point", "coordinates": [ -0.3458663, 51.1742205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15420806" }, "bbox": [ -0.3556111, 51.166369, -0.3556111, 51.166369 ], "geometry": { "type": "Point", "coordinates": [ -0.3556111, 51.166369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08365727" }, "bbox": [ -0.4499038, 51.1154817, -0.4499038, 51.1154817 ], "geometry": { "type": "Point", "coordinates": [ -0.4499038, 51.1154817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08363132" }, "bbox": [ -0.4549526, 51.1158736, -0.4549526, 51.1158736 ], "geometry": { "type": "Point", "coordinates": [ -0.4549526, 51.1158736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08365570" }, "bbox": [ -0.4503908, 51.1192778, -0.4503908, 51.1192778 ], "geometry": { "type": "Point", "coordinates": [ -0.4503908, 51.1192778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08364660" }, "bbox": [ -0.4517793, 51.11802, -0.4517793, 51.11802 ], "geometry": { "type": "Point", "coordinates": [ -0.4517793, 51.11802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08364220" }, "bbox": [ -0.4520954, 51.1159293, -0.4520954, 51.1159293 ], "geometry": { "type": "Point", "coordinates": [ -0.4520954, 51.1159293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07367836" }, "bbox": [ -0.4608899, 51.1164734, -0.4608899, 51.1164734 ], "geometry": { "type": "Point", "coordinates": [ -0.4608899, 51.1164734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99335974" }, "bbox": [ -0.5792201, 51.0943952, -0.5792201, 51.0943952 ], "geometry": { "type": "Point", "coordinates": [ -0.5792201, 51.0943952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99334763" }, "bbox": [ -0.5808947, 51.0932289, -0.5808947, 51.0932289 ], "geometry": { "type": "Point", "coordinates": [ -0.5808947, 51.0932289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02638511" }, "bbox": [ -0.5241205, 51.3577796, -0.5241205, 51.3577796 ], "geometry": { "type": "Point", "coordinates": [ -0.5241205, 51.3577796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85431241" }, "bbox": [ -0.7835109, 51.1835726, -0.7835109, 51.1835726 ], "geometry": { "type": "Point", "coordinates": [ -0.7835109, 51.1835726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425261" }, "bbox": [ -0.7644898, 51.1766415, -0.7644898, 51.1766415 ], "geometry": { "type": "Point", "coordinates": [ -0.7644898, 51.1766415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91483681" }, "bbox": [ -0.6937081, 51.231212, -0.6937081, 51.231212 ], "geometry": { "type": "Point", "coordinates": [ -0.6937081, 51.231212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42429038" }, "bbox": [ 0.0429653, 51.1624416, 0.0429653, 51.1624416 ], "geometry": { "type": "Point", "coordinates": [ 0.0429653, 51.1624416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92506089" }, "bbox": [ -0.6747198, 51.2491993, -0.6747198, 51.2491993 ], "geometry": { "type": "Point", "coordinates": [ -0.6747198, 51.2491993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92507898" }, "bbox": [ -0.6720865, 51.2495258, -0.6720865, 51.2495258 ], "geometry": { "type": "Point", "coordinates": [ -0.6720865, 51.2495258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92509399" }, "bbox": [ -0.6700009, 51.2497782, -0.6700009, 51.2497782 ], "geometry": { "type": "Point", "coordinates": [ -0.6700009, 51.2497782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92512901" }, "bbox": [ -0.6789288, 51.2507804, -0.6789288, 51.2507804 ], "geometry": { "type": "Point", "coordinates": [ -0.6789288, 51.2507804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92513705" }, "bbox": [ -0.6778258, 51.2511474, -0.6778258, 51.2511474 ], "geometry": { "type": "Point", "coordinates": [ -0.6778258, 51.2511474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92513504" }, "bbox": [ -0.6781083, 51.2511303, -0.6781083, 51.2511303 ], "geometry": { "type": "Point", "coordinates": [ -0.6781083, 51.2511303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92514102" }, "bbox": [ -0.677164, 51.2507814, -0.677164, 51.2507814 ], "geometry": { "type": "Point", "coordinates": [ -0.677164, 51.2507814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90644219" }, "bbox": [ -0.7030716, 51.3696142, -0.7030716, 51.3696142 ], "geometry": { "type": "Point", "coordinates": [ -0.7030716, 51.3696142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90637896" }, "bbox": [ -0.6960397, 51.3677786, -0.6960397, 51.3677786 ], "geometry": { "type": "Point", "coordinates": [ -0.6960397, 51.3677786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90637643" }, "bbox": [ -0.6982031, 51.3626336, -0.6982031, 51.3626336 ], "geometry": { "type": "Point", "coordinates": [ -0.6982031, 51.3626336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90639466" }, "bbox": [ -0.6951778, 51.3646713, -0.6951778, 51.3646713 ], "geometry": { "type": "Point", "coordinates": [ -0.6951778, 51.3646713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07382054" }, "bbox": [ -0.4693785, 51.1361051, -0.4693785, 51.1361051 ], "geometry": { "type": "Point", "coordinates": [ -0.4693785, 51.1361051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07382213" }, "bbox": [ -0.4689938, 51.1323169, -0.4689938, 51.1323169 ], "geometry": { "type": "Point", "coordinates": [ -0.4689938, 51.1323169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07383406" }, "bbox": [ -0.4673613, 51.1316929, -0.4673613, 51.1316929 ], "geometry": { "type": "Point", "coordinates": [ -0.4673613, 51.1316929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08381876" }, "bbox": [ -0.4551804, 51.1378444, -0.4551804, 51.1378444 ], "geometry": { "type": "Point", "coordinates": [ -0.4551804, 51.1378444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08380458" }, "bbox": [ -0.4571155, 51.1363516, -0.4571155, 51.1363516 ], "geometry": { "type": "Point", "coordinates": [ -0.4571155, 51.1363516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08381341" }, "bbox": [ -0.455983, 51.1346942, -0.455983, 51.1346942 ], "geometry": { "type": "Point", "coordinates": [ -0.455983, 51.1346942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08380673" }, "bbox": [ -0.4567611, 51.1376954, -0.4567611, 51.1376954 ], "geometry": { "type": "Point", "coordinates": [ -0.4567611, 51.1376954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00448540" }, "bbox": [ -0.5587298, 51.1896077, -0.5587298, 51.1896077 ], "geometry": { "type": "Point", "coordinates": [ -0.5587298, 51.1896077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494869" }, "bbox": [ -0.146385, 51.2316033, -0.146385, 51.2316033 ], "geometry": { "type": "Point", "coordinates": [ -0.146385, 51.2316033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495558" }, "bbox": [ -0.1458715, 51.2307565, -0.1458715, 51.2307565 ], "geometry": { "type": "Point", "coordinates": [ -0.1458715, 51.2307565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495841" }, "bbox": [ -0.1455247, 51.2291975, -0.1455247, 51.2291975 ], "geometry": { "type": "Point", "coordinates": [ -0.1455247, 51.2291975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95516520" }, "bbox": [ -0.6307704, 51.2519997, -0.6307704, 51.2519997 ], "geometry": { "type": "Point", "coordinates": [ -0.6307704, 51.2519997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95515168" }, "bbox": [ -0.6326086, 51.2562404, -0.6326086, 51.2562404 ], "geometry": { "type": "Point", "coordinates": [ -0.6326086, 51.2562404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03536159" }, "bbox": [ -0.5155623, 51.2715636, -0.5155623, 51.2715636 ], "geometry": { "type": "Point", "coordinates": [ -0.5155623, 51.2715636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03538817" }, "bbox": [ -0.5124763, 51.268155, -0.5124763, 51.268155 ], "geometry": { "type": "Point", "coordinates": [ -0.5124763, 51.268155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03534159" }, "bbox": [ -0.5195082, 51.2717034, -0.5195082, 51.2717034 ], "geometry": { "type": "Point", "coordinates": [ -0.5195082, 51.2717034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03537010" }, "bbox": [ -0.5150437, 51.2677105, -0.5150437, 51.2677105 ], "geometry": { "type": "Point", "coordinates": [ -0.5150437, 51.2677105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529798" }, "bbox": [ -0.510838, 51.2661317, -0.510838, 51.2661317 ], "geometry": { "type": "Point", "coordinates": [ -0.510838, 51.2661317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04522573" }, "bbox": [ -0.5069341, 51.2641974, -0.5069341, 51.2641974 ], "geometry": { "type": "Point", "coordinates": [ -0.5069341, 51.2641974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02523864" }, "bbox": [ -0.5339866, 51.2637904, -0.5339866, 51.2637904 ], "geometry": { "type": "Point", "coordinates": [ -0.5339866, 51.2637904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11400244" }, "bbox": [ -0.4140963, 51.1524493, -0.4140963, 51.1524493 ], "geometry": { "type": "Point", "coordinates": [ -0.4140963, 51.1524493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96361354" }, "bbox": [ -0.627832, 51.1201482, -0.627832, 51.1201482 ], "geometry": { "type": "Point", "coordinates": [ -0.627832, 51.1201482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29562431" }, "bbox": [ -0.1480114, 51.291125, -0.1480114, 51.291125 ], "geometry": { "type": "Point", "coordinates": [ -0.1480114, 51.291125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29561636" }, "bbox": [ -0.1492856, 51.2915283, -0.1492856, 51.2915283 ], "geometry": { "type": "Point", "coordinates": [ -0.1492856, 51.2915283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29549338" }, "bbox": [ -0.1388723, 51.2735031, -0.1388723, 51.2735031 ], "geometry": { "type": "Point", "coordinates": [ -0.1388723, 51.2735031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29568659" }, "bbox": [ -0.1389205, 51.2938495, -0.1389205, 51.2938495 ], "geometry": { "type": "Point", "coordinates": [ -0.1389205, 51.2938495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11500772" }, "bbox": [ -0.4100654, 51.2447703, -0.4100654, 51.2447703 ], "geometry": { "type": "Point", "coordinates": [ -0.4100654, 51.2447703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02423298" }, "bbox": [ -0.5377303, 51.1766428, -0.5377303, 51.1766428 ], "geometry": { "type": "Point", "coordinates": [ -0.5377303, 51.1766428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02424299" }, "bbox": [ -0.5361865, 51.1769215, -0.5361865, 51.1769215 ], "geometry": { "type": "Point", "coordinates": [ -0.5361865, 51.1769215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42412429" }, "bbox": [ 0.0325266, 51.1532831, 0.0325266, 51.1532831 ], "geometry": { "type": "Point", "coordinates": [ 0.0325266, 51.1532831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08551269" }, "bbox": [ -0.4504002, 51.2898807, -0.4504002, 51.2898807 ], "geometry": { "type": "Point", "coordinates": [ -0.4504002, 51.2898807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07558591" }, "bbox": [ -0.4544512, 51.2921142, -0.4544512, 51.2921142 ], "geometry": { "type": "Point", "coordinates": [ -0.4544512, 51.2921142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07559589" }, "bbox": [ -0.4532264, 51.2918919, -0.4532264, 51.2918919 ], "geometry": { "type": "Point", "coordinates": [ -0.4532264, 51.2918919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08555484" }, "bbox": [ -0.4448294, 51.2913905, -0.4448294, 51.2913905 ], "geometry": { "type": "Point", "coordinates": [ -0.4448294, 51.2913905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08554282" }, "bbox": [ -0.4475445, 51.2912186, -0.4475445, 51.2912186 ], "geometry": { "type": "Point", "coordinates": [ -0.4475445, 51.2912186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02680929" }, "bbox": [ -0.5337848, 51.4045272, -0.5337848, 51.4045272 ], "geometry": { "type": "Point", "coordinates": [ -0.5337848, 51.4045272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02693186" }, "bbox": [ -0.5303299, 51.4185211, -0.5303299, 51.4185211 ], "geometry": { "type": "Point", "coordinates": [ -0.5303299, 51.4185211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04676549" }, "bbox": [ -0.4971014, 51.3969286, -0.4971014, 51.3969286 ], "geometry": { "type": "Point", "coordinates": [ -0.4971014, 51.3969286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04677438" }, "bbox": [ -0.4958649, 51.3957433, -0.4958649, 51.3957433 ], "geometry": { "type": "Point", "coordinates": [ -0.4958649, 51.3957433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04679438" }, "bbox": [ -0.4930565, 51.3958406, -0.4930565, 51.3958406 ], "geometry": { "type": "Point", "coordinates": [ -0.4930565, 51.3958406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05671241" }, "bbox": [ -0.4906254, 51.395761, -0.4906254, 51.395761 ], "geometry": { "type": "Point", "coordinates": [ -0.4906254, 51.395761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06469262" }, "bbox": [ -0.4708078, 51.2087863, -0.4708078, 51.2087863 ], "geometry": { "type": "Point", "coordinates": [ -0.4708078, 51.2087863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464019" }, "bbox": [ -0.4640555, 51.2048283, -0.4640555, 51.2048283 ], "geometry": { "type": "Point", "coordinates": [ -0.4640555, 51.2048283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07460120" }, "bbox": [ -0.4700139, 51.20503, -0.4700139, 51.20503 ], "geometry": { "type": "Point", "coordinates": [ -0.4700139, 51.20503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453421" }, "bbox": [ -0.4651704, 51.1960662, -0.4651704, 51.1960662 ], "geometry": { "type": "Point", "coordinates": [ -0.4651704, 51.1960662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07461366" }, "bbox": [ -0.4677075, 51.2091529, -0.4677075, 51.2091529 ], "geometry": { "type": "Point", "coordinates": [ -0.4677075, 51.2091529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453534" }, "bbox": [ -0.4650944, 51.1973561, -0.4650944, 51.1973561 ], "geometry": { "type": "Point", "coordinates": [ -0.4650944, 51.1973561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07454423" }, "bbox": [ -0.4637801, 51.1961619, -0.4637801, 51.1961619 ], "geometry": { "type": "Point", "coordinates": [ -0.4637801, 51.1961619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453822" }, "bbox": [ -0.4645986, 51.1961038, -0.4645986, 51.1961038 ], "geometry": { "type": "Point", "coordinates": [ -0.4645986, 51.1961038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07528518" }, "bbox": [ -0.4558078, 51.2585464, -0.4558078, 51.2585464 ], "geometry": { "type": "Point", "coordinates": [ -0.4558078, 51.2585464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07526610" }, "bbox": [ -0.4585084, 51.2579585, -0.4585084, 51.2579585 ], "geometry": { "type": "Point", "coordinates": [ -0.4585084, 51.2579585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05712652" }, "bbox": [ -0.4872199, 51.4329662, -0.4872199, 51.4329662 ], "geometry": { "type": "Point", "coordinates": [ -0.4872199, 51.4329662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00360525" }, "bbox": [ -0.5726454, 51.1168552, -0.5726454, 51.1168552 ], "geometry": { "type": "Point", "coordinates": [ -0.5726454, 51.1168552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01381811" }, "bbox": [ -0.5553153, 51.1333915, -0.5553153, 51.1333915 ], "geometry": { "type": "Point", "coordinates": [ -0.5553153, 51.1333915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00362823" }, "bbox": [ -0.5688751, 51.1165415, -0.5688751, 51.1165415 ], "geometry": { "type": "Point", "coordinates": [ -0.5688751, 51.1165415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00362216" }, "bbox": [ -0.5692985, 51.1160356, -0.5692985, 51.1160356 ], "geometry": { "type": "Point", "coordinates": [ -0.5692985, 51.1160356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00361515" }, "bbox": [ -0.5704803, 51.1159329, -0.5704803, 51.1159329 ], "geometry": { "type": "Point", "coordinates": [ -0.5704803, 51.1159329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00363528" }, "bbox": [ -0.5678134, 51.1168678, -0.5678134, 51.1168678 ], "geometry": { "type": "Point", "coordinates": [ -0.5678134, 51.1168678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00361533" }, "bbox": [ -0.5703892, 51.1175432, -0.5703892, 51.1175432 ], "geometry": { "type": "Point", "coordinates": [ -0.5703892, 51.1175432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00350975" }, "bbox": [ -0.5711447, 51.112413, -0.5711447, 51.112413 ], "geometry": { "type": "Point", "coordinates": [ -0.5711447, 51.112413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00361927" }, "bbox": [ -0.5699065, 51.1169977, -0.5699065, 51.1169977 ], "geometry": { "type": "Point", "coordinates": [ -0.5699065, 51.1169977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00362713" }, "bbox": [ -0.5684799, 51.1155379, -0.5684799, 51.1155379 ], "geometry": { "type": "Point", "coordinates": [ -0.5684799, 51.1155379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01370287" }, "bbox": [ -0.5572114, 51.1313613, -0.5572114, 51.1313613 ], "geometry": { "type": "Point", "coordinates": [ -0.5572114, 51.1313613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01370299" }, "bbox": [ -0.5576158, 51.1323019, -0.5576158, 51.1323019 ], "geometry": { "type": "Point", "coordinates": [ -0.5576158, 51.1323019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410419" }, "bbox": [ -0.4562239, 51.1598745, -0.4562239, 51.1598745 ], "geometry": { "type": "Point", "coordinates": [ -0.4562239, 51.1598745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410518" }, "bbox": [ -0.4560764, 51.1597223, -0.4560764, 51.1597223 ], "geometry": { "type": "Point", "coordinates": [ -0.4560764, 51.1597223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410624" }, "bbox": [ -0.4561364, 51.1601912, -0.4561364, 51.1601912 ], "geometry": { "type": "Point", "coordinates": [ -0.4561364, 51.1601912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410127" }, "bbox": [ -0.4565814, 51.1606076, -0.4565814, 51.1606076 ], "geometry": { "type": "Point", "coordinates": [ -0.4565814, 51.1606076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415272" }, "bbox": [ -0.4636339, 51.1642706, -0.4636339, 51.1642706 ], "geometry": { "type": "Point", "coordinates": [ -0.4636339, 51.1642706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07419134" }, "bbox": [ -0.4581459, 51.1612738, -0.4581459, 51.1612738 ], "geometry": { "type": "Point", "coordinates": [ -0.4581459, 51.1612738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17389919" }, "bbox": [ -0.3151004, 51.1309086, -0.3151004, 51.1309086 ], "geometry": { "type": "Point", "coordinates": [ -0.3151004, 51.1309086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17378999" }, "bbox": [ -0.3166576, 51.1290656, -0.3166576, 51.1290656 ], "geometry": { "type": "Point", "coordinates": [ -0.3166576, 51.1290656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17377497" }, "bbox": [ -0.3183096, 51.1289846, -0.3183096, 51.1289846 ], "geometry": { "type": "Point", "coordinates": [ -0.3183096, 51.1289846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29484997" }, "bbox": [ -0.1469415, 51.2253573, -0.1469415, 51.2253573 ], "geometry": { "type": "Point", "coordinates": [ -0.1469415, 51.2253573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29493546" }, "bbox": [ -0.1487362, 51.2297286, -0.1487362, 51.2297286 ], "geometry": { "type": "Point", "coordinates": [ -0.1487362, 51.2297286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29491464" }, "bbox": [ -0.1514878, 51.2314586, -0.1514878, 51.2314586 ], "geometry": { "type": "Point", "coordinates": [ -0.1514878, 51.2314586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23438886" }, "bbox": [ -0.2289896, 51.1805337, -0.2289896, 51.1805337 ], "geometry": { "type": "Point", "coordinates": [ -0.2289896, 51.1805337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03410150" }, "bbox": [ -0.5282002, 51.1635188, -0.5282002, 51.1635188 ], "geometry": { "type": "Point", "coordinates": [ -0.5282002, 51.1635188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03413374" }, "bbox": [ -0.5235302, 51.1656182, -0.5235302, 51.1656182 ], "geometry": { "type": "Point", "coordinates": [ -0.5235302, 51.1656182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411854" }, "bbox": [ -0.5257154, 51.1638219, -0.5257154, 51.1638219 ], "geometry": { "type": "Point", "coordinates": [ -0.5257154, 51.1638219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02416157" }, "bbox": [ -0.5347106, 51.1635203, -0.5347106, 51.1635203 ], "geometry": { "type": "Point", "coordinates": [ -0.5347106, 51.1635203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02426161" }, "bbox": [ -0.5335787, 51.1734432, -0.5335787, 51.1734432 ], "geometry": { "type": "Point", "coordinates": [ -0.5335787, 51.1734432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03402860" }, "bbox": [ -0.5245417, 51.155376, -0.5245417, 51.155376 ], "geometry": { "type": "Point", "coordinates": [ -0.5245417, 51.155376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412322" }, "bbox": [ -0.5250516, 51.1610065, -0.5250516, 51.1610065 ], "geometry": { "type": "Point", "coordinates": [ -0.5250516, 51.1610065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03413307" }, "bbox": [ -0.5235545, 51.1596184, -0.5235545, 51.1596184 ], "geometry": { "type": "Point", "coordinates": [ -0.5235545, 51.1596184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407814" }, "bbox": [ -0.5326184, 51.1517503, -0.5326184, 51.1517503 ], "geometry": { "type": "Point", "coordinates": [ -0.5326184, 51.1517503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405183" }, "bbox": [ -0.5354831, 51.1575901, -0.5354831, 51.1575901 ], "geometry": { "type": "Point", "coordinates": [ -0.5354831, 51.1575901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03405062" }, "bbox": [ -0.5214682, 51.1556133, -0.5214682, 51.1556133 ], "geometry": { "type": "Point", "coordinates": [ -0.5214682, 51.1556133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02417182" }, "bbox": [ -0.5326334, 51.166292, -0.5326334, 51.166292 ], "geometry": { "type": "Point", "coordinates": [ -0.5326334, 51.166292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10505579" }, "bbox": [ -0.4176303, 51.2455836, -0.4176303, 51.2455836 ], "geometry": { "type": "Point", "coordinates": [ -0.4176303, 51.2455836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10503399" }, "bbox": [ -0.4205174, 51.2472497, -0.4205174, 51.2472497 ], "geometry": { "type": "Point", "coordinates": [ -0.4205174, 51.2472497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10515318" }, "bbox": [ -0.417854, 51.2491102, -0.417854, 51.2491102 ], "geometry": { "type": "Point", "coordinates": [ -0.417854, 51.2491102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10501875" }, "bbox": [ -0.4227616, 51.2452158, -0.4227616, 51.2452158 ], "geometry": { "type": "Point", "coordinates": [ -0.4227616, 51.2452158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10501795" }, "bbox": [ -0.4228568, 51.2470341, -0.4228568, 51.2470341 ], "geometry": { "type": "Point", "coordinates": [ -0.4228568, 51.2470341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10505941" }, "bbox": [ -0.417077, 51.2421261, -0.417077, 51.2421261 ], "geometry": { "type": "Point", "coordinates": [ -0.417077, 51.2421261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10505260" }, "bbox": [ -0.4176726, 51.2438577, -0.4176726, 51.2438577 ], "geometry": { "type": "Point", "coordinates": [ -0.4176726, 51.2438577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42491775" }, "bbox": [ 0.0345937, 51.2290837, 0.0345937, 51.2290837 ], "geometry": { "type": "Point", "coordinates": [ 0.0345937, 51.2290837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42419653" }, "bbox": [ 0.0426371, 51.1551363, 0.0426371, 51.1551363 ], "geometry": { "type": "Point", "coordinates": [ 0.0426371, 51.1551363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42416382" }, "bbox": [ 0.0382718, 51.1578747, 0.0382718, 51.1578747 ], "geometry": { "type": "Point", "coordinates": [ 0.0382718, 51.1578747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42417363" }, "bbox": [ 0.0374404, 51.156259, 0.0374404, 51.156259 ], "geometry": { "type": "Point", "coordinates": [ 0.0374404, 51.156259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42419167" }, "bbox": [ 0.0423393, 51.1564242, 0.0423393, 51.1564242 ], "geometry": { "type": "Point", "coordinates": [ 0.0423393, 51.1564242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08540503" }, "bbox": [ -0.4526579, 51.2751267, -0.4526579, 51.2751267 ], "geometry": { "type": "Point", "coordinates": [ -0.4526579, 51.2751267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08530992" }, "bbox": [ -0.4517928, 51.2742181, -0.4517928, 51.2742181 ], "geometry": { "type": "Point", "coordinates": [ -0.4517928, 51.2742181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07547501" }, "bbox": [ -0.4562423, 51.2750802, -0.4562423, 51.2750802 ], "geometry": { "type": "Point", "coordinates": [ -0.4562423, 51.2750802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16391504" }, "bbox": [ -0.341301, 51.1388393, -0.341301, 51.1388393 ], "geometry": { "type": "Point", "coordinates": [ -0.341301, 51.1388393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16392104" }, "bbox": [ -0.3401307, 51.1388287, -0.3401307, 51.1388287 ], "geometry": { "type": "Point", "coordinates": [ -0.3401307, 51.1388287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02472295" }, "bbox": [ -0.5375457, 51.2217035, -0.5375457, 51.2217035 ], "geometry": { "type": "Point", "coordinates": [ -0.5375457, 51.2217035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02472489" }, "bbox": [ -0.5373774, 51.2211115, -0.5373774, 51.2211115 ], "geometry": { "type": "Point", "coordinates": [ -0.5373774, 51.2211115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02473294" }, "bbox": [ -0.5360158, 51.2215741, -0.5360158, 51.2215741 ], "geometry": { "type": "Point", "coordinates": [ -0.5360158, 51.2215741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02472995" }, "bbox": [ -0.5367561, 51.2215357, -0.5367561, 51.2215357 ], "geometry": { "type": "Point", "coordinates": [ -0.5367561, 51.2215357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04366096" }, "bbox": [ -0.506572, 51.1224446, -0.506572, 51.1224446 ], "geometry": { "type": "Point", "coordinates": [ -0.506572, 51.1224446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04388850" }, "bbox": [ -0.5021033, 51.1360498, -0.5021033, 51.1360498 ], "geometry": { "type": "Point", "coordinates": [ -0.5021033, 51.1360498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04387467" }, "bbox": [ -0.5043365, 51.1377383, -0.5043365, 51.1377383 ], "geometry": { "type": "Point", "coordinates": [ -0.5043365, 51.1377383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04387657" }, "bbox": [ -0.5040455, 51.1366879, -0.5040455, 51.1366879 ], "geometry": { "type": "Point", "coordinates": [ -0.5040455, 51.1366879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02369026" }, "bbox": [ -0.5312485, 51.1163639, -0.5312485, 51.1163639 ], "geometry": { "type": "Point", "coordinates": [ -0.5312485, 51.1163639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368239" }, "bbox": [ -0.5180773, 51.1174621, -0.5180773, 51.1174621 ], "geometry": { "type": "Point", "coordinates": [ -0.5180773, 51.1174621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368836" }, "bbox": [ -0.5165834, 51.1175021, -0.5165834, 51.1175021 ], "geometry": { "type": "Point", "coordinates": [ -0.5165834, 51.1175021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00535307" }, "bbox": [ -0.5601081, 51.268004, -0.5601081, 51.268004 ], "geometry": { "type": "Point", "coordinates": [ -0.5601081, 51.268004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00536305" }, "bbox": [ -0.5589786, 51.2677689, -0.5589786, 51.2677689 ], "geometry": { "type": "Point", "coordinates": [ -0.5589786, 51.2677689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00535807" }, "bbox": [ -0.5595829, 51.2679466, -0.5595829, 51.2679466 ], "geometry": { "type": "Point", "coordinates": [ -0.5595829, 51.2679466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00536009" }, "bbox": [ -0.5594079, 51.2681001, -0.5594079, 51.2681001 ], "geometry": { "type": "Point", "coordinates": [ -0.5594079, 51.2681001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00525793" }, "bbox": [ -0.559788, 51.2667557, -0.559788, 51.2667557 ], "geometry": { "type": "Point", "coordinates": [ -0.559788, 51.2667557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00526196" }, "bbox": [ -0.559225, 51.2670038, -0.559225, 51.2670038 ], "geometry": { "type": "Point", "coordinates": [ -0.559225, 51.2670038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29436308" }, "bbox": [ -0.1476472, 51.1727095, -0.1476472, 51.1727095 ], "geometry": { "type": "Point", "coordinates": [ -0.1476472, 51.1727095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23467010" }, "bbox": [ -0.2316871, 51.1991869, -0.2316871, 51.1991869 ], "geometry": { "type": "Point", "coordinates": [ -0.2316871, 51.1991869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23467409" }, "bbox": [ -0.2302315, 51.2007293, -0.2302315, 51.2007293 ], "geometry": { "type": "Point", "coordinates": [ -0.2302315, 51.2007293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05674487" }, "bbox": [ -0.485583, 51.400173, -0.485583, 51.400173 ], "geometry": { "type": "Point", "coordinates": [ -0.485583, 51.400173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05679011" }, "bbox": [ -0.4793021, 51.3931474, -0.4793021, 51.3931474 ], "geometry": { "type": "Point", "coordinates": [ -0.4793021, 51.3931474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05673969" }, "bbox": [ -0.4850676, 51.3987986, -0.4850676, 51.3987986 ], "geometry": { "type": "Point", "coordinates": [ -0.4850676, 51.3987986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05668397" }, "bbox": [ -0.4802662, 51.3918999, -0.4802662, 51.3918999 ], "geometry": { "type": "Point", "coordinates": [ -0.4802662, 51.3918999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06479762" }, "bbox": [ -0.4696201, 51.2178511, -0.4696201, 51.2178511 ], "geometry": { "type": "Point", "coordinates": [ -0.4696201, 51.2178511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07470958" }, "bbox": [ -0.4694977, 51.2176929, -0.4694977, 51.2176929 ], "geometry": { "type": "Point", "coordinates": [ -0.4694977, 51.2176929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07478162" }, "bbox": [ -0.4576923, 51.2176374, -0.4576923, 51.2176374 ], "geometry": { "type": "Point", "coordinates": [ -0.4576923, 51.2176374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472882" }, "bbox": [ -0.2362824, 51.2163817, -0.2362824, 51.2163817 ], "geometry": { "type": "Point", "coordinates": [ -0.2362824, 51.2163817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472782" }, "bbox": [ -0.2364015, 51.2163708, -0.2364015, 51.2163708 ], "geometry": { "type": "Point", "coordinates": [ -0.2364015, 51.2163708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23470392" }, "bbox": [ -0.2398317, 51.2172712, -0.2398317, 51.2172712 ], "geometry": { "type": "Point", "coordinates": [ -0.2398317, 51.2172712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23480809" }, "bbox": [ -0.2390568, 51.2187099, -0.2390568, 51.2187099 ], "geometry": { "type": "Point", "coordinates": [ -0.2390568, 51.2187099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03422441" }, "bbox": [ -0.5246565, 51.1715779, -0.5246565, 51.1715779 ], "geometry": { "type": "Point", "coordinates": [ -0.5246565, 51.1715779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03422345" }, "bbox": [ -0.5246736, 51.171977, -0.5246736, 51.171977 ], "geometry": { "type": "Point", "coordinates": [ -0.5246736, 51.171977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04541746" }, "bbox": [ -0.5079466, 51.2797736, -0.5079466, 51.2797736 ], "geometry": { "type": "Point", "coordinates": [ -0.5079466, 51.2797736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04542753" }, "bbox": [ -0.5064327, 51.2803194, -0.5064327, 51.2803194 ], "geometry": { "type": "Point", "coordinates": [ -0.5064327, 51.2803194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02567275" }, "bbox": [ -0.5291577, 51.3004544, -0.5291577, 51.3004544 ], "geometry": { "type": "Point", "coordinates": [ -0.5291577, 51.3004544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15559102" }, "bbox": [ -0.339338, 51.282563, -0.339338, 51.282563 ], "geometry": { "type": "Point", "coordinates": [ -0.339338, 51.282563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15542589" }, "bbox": [ -0.3488834, 51.2813658, -0.3488834, 51.2813658 ], "geometry": { "type": "Point", "coordinates": [ -0.3488834, 51.2813658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15543796" }, "bbox": [ -0.346761, 51.2821738, -0.346761, 51.2821738 ], "geometry": { "type": "Point", "coordinates": [ -0.346761, 51.2821738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15543590" }, "bbox": [ -0.3474063, 51.2816535, -0.3474063, 51.2816535 ], "geometry": { "type": "Point", "coordinates": [ -0.3474063, 51.2816535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546377" }, "bbox": [ -0.3434598, 51.2803659, -0.3434598, 51.2803659 ], "geometry": { "type": "Point", "coordinates": [ -0.3434598, 51.2803659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547079" }, "bbox": [ -0.3424855, 51.2805601, -0.3424855, 51.2805601 ], "geometry": { "type": "Point", "coordinates": [ -0.3424855, 51.2805601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545675" }, "bbox": [ -0.3443945, 51.2802519, -0.3443945, 51.2802519 ], "geometry": { "type": "Point", "coordinates": [ -0.3443945, 51.2802519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14536194" }, "bbox": [ -0.3563343, 51.2731041, -0.3563343, 51.2731041 ], "geometry": { "type": "Point", "coordinates": [ -0.3563343, 51.2731041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15541554" }, "bbox": [ -0.3501956, 51.2785267, -0.3501956, 51.2785267 ], "geometry": { "type": "Point", "coordinates": [ -0.3501956, 51.2785267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15542391" }, "bbox": [ -0.3490309, 51.2817345, -0.3490309, 51.2817345 ], "geometry": { "type": "Point", "coordinates": [ -0.3490309, 51.2817345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546872" }, "bbox": [ -0.34271, 51.2799009, -0.34271, 51.2799009 ], "geometry": { "type": "Point", "coordinates": [ -0.34271, 51.2799009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549350" }, "bbox": [ -0.338753, 51.2794254, -0.338753, 51.2794254 ], "geometry": { "type": "Point", "coordinates": [ -0.338753, 51.2794254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545595" }, "bbox": [ -0.344495, 51.282134, -0.344495, 51.282134 ], "geometry": { "type": "Point", "coordinates": [ -0.344495, 51.282134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549184" }, "bbox": [ -0.3393487, 51.2809696, -0.3393487, 51.2809696 ], "geometry": { "type": "Point", "coordinates": [ -0.3393487, 51.2809696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15540736" }, "bbox": [ -0.3515856, 51.2769413, -0.3515856, 51.2769413 ], "geometry": { "type": "Point", "coordinates": [ -0.3515856, 51.2769413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05628490" }, "bbox": [ -0.4815404, 51.3553106, -0.4815404, 51.3553106 ], "geometry": { "type": "Point", "coordinates": [ -0.4815404, 51.3553106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05637219" }, "bbox": [ -0.4830075, 51.3579345, -0.4830075, 51.3579345 ], "geometry": { "type": "Point", "coordinates": [ -0.4830075, 51.3579345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03340746" }, "bbox": [ -0.5294023, 51.1002194, -0.5294023, 51.1002194 ], "geometry": { "type": "Point", "coordinates": [ -0.5294023, 51.1002194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01334036" }, "bbox": [ -0.5536383, 51.0907888, -0.5536383, 51.0907888 ], "geometry": { "type": "Point", "coordinates": [ -0.5536383, 51.0907888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01333553" }, "bbox": [ -0.5542147, 51.0920944, -0.5542147, 51.0920944 ], "geometry": { "type": "Point", "coordinates": [ -0.5542147, 51.0920944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00338165" }, "bbox": [ -0.5618719, 51.0932532, -0.5618719, 51.0932532 ], "geometry": { "type": "Point", "coordinates": [ -0.5618719, 51.0932532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00338613" }, "bbox": [ -0.5613493, 51.0886108, -0.5613493, 51.0886108 ], "geometry": { "type": "Point", "coordinates": [ -0.5613493, 51.0886108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00339362" }, "bbox": [ -0.5600159, 51.0929285, -0.5600159, 51.0929285 ], "geometry": { "type": "Point", "coordinates": [ -0.5600159, 51.0929285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03344335" }, "bbox": [ -0.5241733, 51.0984675, -0.5241733, 51.0984675 ], "geometry": { "type": "Point", "coordinates": [ -0.5241733, 51.0984675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03344192" }, "bbox": [ -0.5244837, 51.1044815, -0.5244837, 51.1044815 ], "geometry": { "type": "Point", "coordinates": [ -0.5244837, 51.1044815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03343960" }, "bbox": [ -0.5250481, 51.1014215, -0.5250481, 51.1014215 ], "geometry": { "type": "Point", "coordinates": [ -0.5250481, 51.1014215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03340925" }, "bbox": [ -0.5292369, 51.0983296, -0.5292369, 51.0983296 ], "geometry": { "type": "Point", "coordinates": [ -0.5292369, 51.0983296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03342554" }, "bbox": [ -0.5270989, 51.1008797, -0.5270989, 51.1008797 ], "geometry": { "type": "Point", "coordinates": [ -0.5270989, 51.1008797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03350719" }, "bbox": [ -0.5289313, 51.1067227, -0.5289313, 51.1067227 ], "geometry": { "type": "Point", "coordinates": [ -0.5289313, 51.1067227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03350809" }, "bbox": [ -0.5293751, 51.1058132, -0.5293751, 51.1058132 ], "geometry": { "type": "Point", "coordinates": [ -0.5293751, 51.1058132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01331717" }, "bbox": [ -0.5570119, 51.0889472, -0.5570119, 51.0889472 ], "geometry": { "type": "Point", "coordinates": [ -0.5570119, 51.0889472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01333302" }, "bbox": [ -0.5549614, 51.0877986, -0.5549614, 51.0877986 ], "geometry": { "type": "Point", "coordinates": [ -0.5549614, 51.0877986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01330766" }, "bbox": [ -0.5580777, 51.0933268, -0.5580777, 51.0933268 ], "geometry": { "type": "Point", "coordinates": [ -0.5580777, 51.0933268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01332834" }, "bbox": [ -0.5551619, 51.0902982, -0.5551619, 51.0902982 ], "geometry": { "type": "Point", "coordinates": [ -0.5551619, 51.0902982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00333965" }, "bbox": [ -0.5677395, 51.0933956, -0.5677395, 51.0933956 ], "geometry": { "type": "Point", "coordinates": [ -0.5677395, 51.0933956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00334652" }, "bbox": [ -0.5668784, 51.092089, -0.5668784, 51.092089 ], "geometry": { "type": "Point", "coordinates": [ -0.5668784, 51.092089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01330125" }, "bbox": [ -0.5591572, 51.0896902, -0.5591572, 51.0896902 ], "geometry": { "type": "Point", "coordinates": [ -0.5591572, 51.0896902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01330281" }, "bbox": [ -0.5585219, 51.0946983, -0.5585219, 51.0946983 ], "geometry": { "type": "Point", "coordinates": [ -0.5585219, 51.0946983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01332978" }, "bbox": [ -0.5550015, 51.0942282, -0.5550015, 51.0942282 ], "geometry": { "type": "Point", "coordinates": [ -0.5550015, 51.0942282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01331791" }, "bbox": [ -0.5562168, 51.0958848, -0.5562168, 51.0958848 ], "geometry": { "type": "Point", "coordinates": [ -0.5562168, 51.0958848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06358890" }, "bbox": [ -0.4736479, 51.1124583, -0.4736479, 51.1124583 ], "geometry": { "type": "Point", "coordinates": [ -0.4736479, 51.1124583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06359770" }, "bbox": [ -0.473263, 51.1106282, -0.473263, 51.1106282 ], "geometry": { "type": "Point", "coordinates": [ -0.473263, 51.1106282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06365388" }, "bbox": [ -0.4791441, 51.1213106, -0.4791441, 51.1213106 ], "geometry": { "type": "Point", "coordinates": [ -0.4791441, 51.1213106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06364069" }, "bbox": [ -0.4810648, 51.1196299, -0.4810648, 51.1196299 ], "geometry": { "type": "Point", "coordinates": [ -0.4810648, 51.1196299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06369656" }, "bbox": [ -0.4730909, 51.1184069, -0.4730909, 51.1184069 ], "geometry": { "type": "Point", "coordinates": [ -0.4730909, 51.1184069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07363288" }, "bbox": [ -0.467893, 51.1211603, -0.467893, 51.1211603 ], "geometry": { "type": "Point", "coordinates": [ -0.467893, 51.1211603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07351559" }, "bbox": [ -0.4707112, 51.1095988, -0.4707112, 51.1095988 ], "geometry": { "type": "Point", "coordinates": [ -0.4707112, 51.1095988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07350763" }, "bbox": [ -0.471876, 51.1100355, -0.471876, 51.1100355 ], "geometry": { "type": "Point", "coordinates": [ -0.471876, 51.1100355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06376385" }, "bbox": [ -0.4771388, 51.1300886, -0.4771388, 51.1300886 ], "geometry": { "type": "Point", "coordinates": [ -0.4771388, 51.1300886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06376394" }, "bbox": [ -0.4778017, 51.1307092, -0.4778017, 51.1307092 ], "geometry": { "type": "Point", "coordinates": [ -0.4778017, 51.1307092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06359282" }, "bbox": [ -0.4739115, 51.1117888, -0.4739115, 51.1117888 ], "geometry": { "type": "Point", "coordinates": [ -0.4739115, 51.1117888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07364278" }, "bbox": [ -0.4664733, 51.1202557, -0.4664733, 51.1202557 ], "geometry": { "type": "Point", "coordinates": [ -0.4664733, 51.1202557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07363369" }, "bbox": [ -0.4677734, 51.1194898, -0.4677734, 51.1194898 ], "geometry": { "type": "Point", "coordinates": [ -0.4677734, 51.1194898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07350779" }, "bbox": [ -0.4717624, 51.11143, -0.4717624, 51.11143 ], "geometry": { "type": "Point", "coordinates": [ -0.4717624, 51.11143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06379429" }, "bbox": [ -0.4732612, 51.1249281, -0.4732612, 51.1249281 ], "geometry": { "type": "Point", "coordinates": [ -0.4732612, 51.1249281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07375470" }, "bbox": [ -0.4645657, 51.1284611, -0.4645657, 51.1284611 ], "geometry": { "type": "Point", "coordinates": [ -0.4645657, 51.1284611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374431" }, "bbox": [ -0.4655916, 51.1245589, -0.4655916, 51.1245589 ], "geometry": { "type": "Point", "coordinates": [ -0.4655916, 51.1245589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07375750" }, "bbox": [ -0.4641062, 51.1267222, -0.4641062, 51.1267222 ], "geometry": { "type": "Point", "coordinates": [ -0.4641062, 51.1267222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07376753" }, "bbox": [ -0.4626607, 51.1269389, -0.4626607, 51.1269389 ], "geometry": { "type": "Point", "coordinates": [ -0.4626607, 51.1269389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07377976" }, "bbox": [ -0.4608555, 51.1290287, -0.4608555, 51.1290287 ], "geometry": { "type": "Point", "coordinates": [ -0.4608555, 51.1290287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374792" }, "bbox": [ -0.4654785, 51.1305081, -0.4654785, 51.1305081 ], "geometry": { "type": "Point", "coordinates": [ -0.4654785, 51.1305081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07373111" }, "bbox": [ -0.4679765, 51.1232681, -0.4679765, 51.1232681 ], "geometry": { "type": "Point", "coordinates": [ -0.4679765, 51.1232681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07371627" }, "bbox": [ -0.4700311, 51.1247718, -0.4700311, 51.1247718 ], "geometry": { "type": "Point", "coordinates": [ -0.4700311, 51.1247718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07375977" }, "bbox": [ -0.463277, 51.1295356, -0.463277, 51.1295356 ], "geometry": { "type": "Point", "coordinates": [ -0.463277, 51.1295356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07376119" }, "bbox": [ -0.4635047, 51.1237914, -0.4635047, 51.1237914 ], "geometry": { "type": "Point", "coordinates": [ -0.4635047, 51.1237914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07372232" }, "bbox": [ -0.4684596, 51.12499, -0.4684596, 51.12499 ], "geometry": { "type": "Point", "coordinates": [ -0.4684596, 51.12499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07372935" }, "bbox": [ -0.4682003, 51.1254606, -0.4682003, 51.1254606 ], "geometry": { "type": "Point", "coordinates": [ -0.4682003, 51.1254606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06376274" }, "bbox": [ -0.4776688, 51.1290474, -0.4776688, 51.1290474 ], "geometry": { "type": "Point", "coordinates": [ -0.4776688, 51.1290474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07376142" }, "bbox": [ -0.4636323, 51.1260165, -0.4636323, 51.1260165 ], "geometry": { "type": "Point", "coordinates": [ -0.4636323, 51.1260165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07378284" }, "bbox": [ -0.4603977, 51.1297493, -0.4603977, 51.1297493 ], "geometry": { "type": "Point", "coordinates": [ -0.4603977, 51.1297493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07377587" }, "bbox": [ -0.4614963, 51.1299786, -0.4614963, 51.1299786 ], "geometry": { "type": "Point", "coordinates": [ -0.4614963, 51.1299786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07377357" }, "bbox": [ -0.4618395, 51.1273669, -0.4618395, 51.1273669 ], "geometry": { "type": "Point", "coordinates": [ -0.4618395, 51.1273669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07376630" }, "bbox": [ -0.4628781, 51.1249145, -0.4628781, 51.1249145 ], "geometry": { "type": "Point", "coordinates": [ -0.4628781, 51.1249145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06368286" }, "bbox": [ -0.4752243, 51.1211232, -0.4752243, 51.1211232 ], "geometry": { "type": "Point", "coordinates": [ -0.4752243, 51.1211232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06363396" }, "bbox": [ -0.4824596, 51.1221872, -0.4824596, 51.1221872 ], "geometry": { "type": "Point", "coordinates": [ -0.4824596, 51.1221872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06363789" }, "bbox": [ -0.4816301, 51.121476, -0.4816301, 51.121476 ], "geometry": { "type": "Point", "coordinates": [ -0.4816301, 51.121476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06368461" }, "bbox": [ -0.4747912, 51.1188946, -0.4747912, 51.1188946 ], "geometry": { "type": "Point", "coordinates": [ -0.4747912, 51.1188946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06360175" }, "bbox": [ -0.4863232, 51.1205075, -0.4863232, 51.1205075 ], "geometry": { "type": "Point", "coordinates": [ -0.4863232, 51.1205075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361359" }, "bbox": [ -0.4713241, 51.1187753, -0.4713241, 51.1187753 ], "geometry": { "type": "Point", "coordinates": [ -0.4713241, 51.1187753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07360574" }, "bbox": [ -0.4717257, 51.1199542, -0.4717257, 51.1199542 ], "geometry": { "type": "Point", "coordinates": [ -0.4717257, 51.1199542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07366225" }, "bbox": [ -0.4638567, 51.1154759, -0.4638567, 51.1154759 ], "geometry": { "type": "Point", "coordinates": [ -0.4638567, 51.1154759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07363296" }, "bbox": [ -0.4678395, 51.1219588, -0.4678395, 51.1219588 ], "geometry": { "type": "Point", "coordinates": [ -0.4678395, 51.1219588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07356438" }, "bbox": [ -0.4637627, 51.1076292, -0.4637627, 51.1076292 ], "geometry": { "type": "Point", "coordinates": [ -0.4637627, 51.1076292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07355349" }, "bbox": [ -0.4652085, 51.1087168, -0.4652085, 51.1087168 ], "geometry": { "type": "Point", "coordinates": [ -0.4652085, 51.1087168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07351650" }, "bbox": [ -0.4705595, 51.1088205, -0.4705595, 51.1088205 ], "geometry": { "type": "Point", "coordinates": [ -0.4705595, 51.1088205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07356831" }, "bbox": [ -0.4631812, 51.1069915, -0.4631812, 51.1069915 ], "geometry": { "type": "Point", "coordinates": [ -0.4631812, 51.1069915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05379378" }, "bbox": [ -0.4875018, 51.1295417, -0.4875018, 51.1295417 ], "geometry": { "type": "Point", "coordinates": [ -0.4875018, 51.1295417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06375295" }, "bbox": [ -0.4791872, 51.1307723, -0.4791872, 51.1307723 ], "geometry": { "type": "Point", "coordinates": [ -0.4791872, 51.1307723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06377788" }, "bbox": [ -0.4759069, 51.1299813, -0.4759069, 51.1299813 ], "geometry": { "type": "Point", "coordinates": [ -0.4759069, 51.1299813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06380701" }, "bbox": [ -0.4853913, 51.1315135, -0.4853913, 51.1315135 ], "geometry": { "type": "Point", "coordinates": [ -0.4853913, 51.1315135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06381103" }, "bbox": [ -0.4848006, 51.1317291, -0.4848006, 51.1317291 ], "geometry": { "type": "Point", "coordinates": [ -0.4848006, 51.1317291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06386702" }, "bbox": [ -0.4767458, 51.1315883, -0.4767458, 51.1315883 ], "geometry": { "type": "Point", "coordinates": [ -0.4767458, 51.1315883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07376736" }, "bbox": [ -0.4624872, 51.1251994, -0.4624872, 51.1251994 ], "geometry": { "type": "Point", "coordinates": [ -0.4624872, 51.1251994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07375639" }, "bbox": [ -0.463959, 51.1254072, -0.463959, 51.1254072 ], "geometry": { "type": "Point", "coordinates": [ -0.463959, 51.1254072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374441" }, "bbox": [ -0.465981, 51.1259545, -0.465981, 51.1259545 ], "geometry": { "type": "Point", "coordinates": [ -0.465981, 51.1259545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07372990" }, "bbox": [ -0.4680423, 51.130383, -0.4680423, 51.130383 ], "geometry": { "type": "Point", "coordinates": [ -0.4680423, 51.130383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07370191" }, "bbox": [ -0.4721722, 51.1304659, -0.4721722, 51.1304659 ], "geometry": { "type": "Point", "coordinates": [ -0.4721722, 51.1304659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07373377" }, "bbox": [ -0.4674988, 51.1292145, -0.4674988, 51.1292145 ], "geometry": { "type": "Point", "coordinates": [ -0.4674988, 51.1292145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08370658" }, "bbox": [ -0.4571429, 51.1273461, -0.4571429, 51.1273461 ], "geometry": { "type": "Point", "coordinates": [ -0.4571429, 51.1273461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361888" }, "bbox": [ -0.4843049, 51.1214009, -0.4843049, 51.1214009 ], "geometry": { "type": "Point", "coordinates": [ -0.4843049, 51.1214009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06366524" }, "bbox": [ -0.4776296, 51.1158763, -0.4776296, 51.1158763 ], "geometry": { "type": "Point", "coordinates": [ -0.4776296, 51.1158763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361281" }, "bbox": [ -0.4853297, 51.1206925, -0.4853297, 51.1206925 ], "geometry": { "type": "Point", "coordinates": [ -0.4853297, 51.1206925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361593" }, "bbox": [ -0.4847059, 51.121852, -0.4847059, 51.121852 ], "geometry": { "type": "Point", "coordinates": [ -0.4847059, 51.121852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06360954" }, "bbox": [ -0.4858183, 51.1184403, -0.4858183, 51.1184403 ], "geometry": { "type": "Point", "coordinates": [ -0.4858183, 51.1184403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06372308" }, "bbox": [ -0.4837057, 51.1231883, -0.4837057, 51.1231883 ], "geometry": { "type": "Point", "coordinates": [ -0.4837057, 51.1231883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11404373" }, "bbox": [ -0.4082577, 51.1550193, -0.4082577, 51.1550193 ], "geometry": { "type": "Point", "coordinates": [ -0.4082577, 51.1550193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20543654" }, "bbox": [ -0.2755843, 51.2773599, -0.2755843, 51.2773599 ], "geometry": { "type": "Point", "coordinates": [ -0.2755843, 51.2773599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20540284" }, "bbox": [ -0.2809329, 51.2802483, -0.2809329, 51.2802483 ], "geometry": { "type": "Point", "coordinates": [ -0.2809329, 51.2802483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20540281" }, "bbox": [ -0.2803983, 51.2798385, -0.2803983, 51.2798385 ], "geometry": { "type": "Point", "coordinates": [ -0.2803983, 51.2798385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20540884" }, "bbox": [ -0.2796138, 51.2801772, -0.2796138, 51.2801772 ], "geometry": { "type": "Point", "coordinates": [ -0.2796138, 51.2801772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544086" }, "bbox": [ -0.2752011, 51.2802429, -0.2752011, 51.2802429 ], "geometry": { "type": "Point", "coordinates": [ -0.2752011, 51.2802429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20543484" }, "bbox": [ -0.2759641, 51.2800336, -0.2759641, 51.2800336 ], "geometry": { "type": "Point", "coordinates": [ -0.2759641, 51.2800336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544364" }, "bbox": [ -0.2748401, 51.2781758, -0.2748401, 51.2781758 ], "geometry": { "type": "Point", "coordinates": [ -0.2748401, 51.2781758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544759" }, "bbox": [ -0.2740307, 51.2777902, -0.2740307, 51.2777902 ], "geometry": { "type": "Point", "coordinates": [ -0.2740307, 51.2777902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544358" }, "bbox": [ -0.2745892, 51.2775938, -0.2745892, 51.2775938 ], "geometry": { "type": "Point", "coordinates": [ -0.2745892, 51.2775938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544454" }, "bbox": [ -0.2749964, 51.2774667, -0.2749964, 51.2774667 ], "geometry": { "type": "Point", "coordinates": [ -0.2749964, 51.2774667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17556929" }, "bbox": [ -0.3138378, 51.2845442, -0.3138378, 51.2845442 ], "geometry": { "type": "Point", "coordinates": [ -0.3138378, 51.2845442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19557128" }, "bbox": [ -0.2846441, 51.2841475, -0.2846441, 51.2841475 ], "geometry": { "type": "Point", "coordinates": [ -0.2846441, 51.2841475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19558521" }, "bbox": [ -0.282591, 51.2835158, -0.282591, 51.2835158 ], "geometry": { "type": "Point", "coordinates": [ -0.282591, 51.2835158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19557020" }, "bbox": [ -0.284859, 51.2834722, -0.284859, 51.2834722 ], "geometry": { "type": "Point", "coordinates": [ -0.284859, 51.2834722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544473" }, "bbox": [ -0.2744445, 51.2789723, -0.2744445, 51.2789723 ], "geometry": { "type": "Point", "coordinates": [ -0.2744445, 51.2789723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544067" }, "bbox": [ -0.2755804, 51.2782005, -0.2755804, 51.2782005 ], "geometry": { "type": "Point", "coordinates": [ -0.2755804, 51.2782005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544170" }, "bbox": [ -0.2748522, 51.2787379, -0.2748522, 51.2787379 ], "geometry": { "type": "Point", "coordinates": [ -0.2748522, 51.2787379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16534831" }, "bbox": [ -0.3317473, 51.2671109, -0.3317473, 51.2671109 ], "geometry": { "type": "Point", "coordinates": [ -0.3317473, 51.2671109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16532425" }, "bbox": [ -0.3354229, 51.2665162, -0.3354229, 51.2665162 ], "geometry": { "type": "Point", "coordinates": [ -0.3354229, 51.2665162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39462277" }, "bbox": [ -0.008545, 51.2032241, -0.008545, 51.2032241 ], "geometry": { "type": "Point", "coordinates": [ -0.008545, 51.2032241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19521930" }, "bbox": [ -0.2932785, 51.2575157, -0.2932785, 51.2575157 ], "geometry": { "type": "Point", "coordinates": [ -0.2932785, 51.2575157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18524576" }, "bbox": [ -0.3042412, 51.261957, -0.3042412, 51.261957 ], "geometry": { "type": "Point", "coordinates": [ -0.3042412, 51.261957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14463546" }, "bbox": [ -0.3645364, 51.2061296, -0.3645364, 51.2061296 ], "geometry": { "type": "Point", "coordinates": [ -0.3645364, 51.2061296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19483734" }, "bbox": [ -0.2922078, 51.2216914, -0.2922078, 51.2216914 ], "geometry": { "type": "Point", "coordinates": [ -0.2922078, 51.2216914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18489060" }, "bbox": [ -0.2988427, 51.2241924, -0.2988427, 51.2241924 ], "geometry": { "type": "Point", "coordinates": [ -0.2988427, 51.2241924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27554494" }, "bbox": [ -0.1739217, 51.2882884, -0.1739217, 51.2882884 ], "geometry": { "type": "Point", "coordinates": [ -0.1739217, 51.2882884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93565024" }, "bbox": [ -0.6602228, 51.2975555, -0.6602228, 51.2975555 ], "geometry": { "type": "Point", "coordinates": [ -0.6602228, 51.2975555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93563715" }, "bbox": [ -0.6619699, 51.296807, -0.6619699, 51.296807 ], "geometry": { "type": "Point", "coordinates": [ -0.6619699, 51.296807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369924" }, "bbox": [ -0.5586192, 51.1165708, -0.5586192, 51.1165708 ], "geometry": { "type": "Point", "coordinates": [ -0.5586192, 51.1165708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369818" }, "bbox": [ -0.5587275, 51.1160195, -0.5587275, 51.1160195 ], "geometry": { "type": "Point", "coordinates": [ -0.5587275, 51.1160195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93609311" }, "bbox": [ -0.6525353, 51.3321326, -0.6525353, 51.3321326 ], "geometry": { "type": "Point", "coordinates": [ -0.6525353, 51.3321326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93602034" }, "bbox": [ -0.6635848, 51.3352459, -0.6635848, 51.3352459 ], "geometry": { "type": "Point", "coordinates": [ -0.6635848, 51.3352459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93608317" }, "bbox": [ -0.6542208, 51.3330502, -0.6542208, 51.3330502 ], "geometry": { "type": "Point", "coordinates": [ -0.6542208, 51.3330502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94627940" }, "bbox": [ -0.6398049, 51.3527663, -0.6398049, 51.3527663 ], "geometry": { "type": "Point", "coordinates": [ -0.6398049, 51.3527663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01365964" }, "bbox": [ -0.5498382, 51.120081, -0.5498382, 51.120081 ], "geometry": { "type": "Point", "coordinates": [ -0.5498382, 51.120081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01365634" }, "bbox": [ -0.5504156, 51.117322, -0.5504156, 51.117322 ], "geometry": { "type": "Point", "coordinates": [ -0.5504156, 51.117322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93603935" }, "bbox": [ -0.6607451, 51.334634, -0.6607451, 51.334634 ], "geometry": { "type": "Point", "coordinates": [ -0.6607451, 51.334634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93608236" }, "bbox": [ -0.6546506, 51.3346745, -0.6546506, 51.3346745 ], "geometry": { "type": "Point", "coordinates": [ -0.6546506, 51.3346745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93609734" }, "bbox": [ -0.6523532, 51.3344192, -0.6523532, 51.3344192 ], "geometry": { "type": "Point", "coordinates": [ -0.6523532, 51.3344192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93603643" }, "bbox": [ -0.6611065, 51.3353416, -0.6611065, 51.3353416 ], "geometry": { "type": "Point", "coordinates": [ -0.6611065, 51.3353416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93607130" }, "bbox": [ -0.6561776, 51.3341191, -0.6561776, 51.3341191 ], "geometry": { "type": "Point", "coordinates": [ -0.6561776, 51.3341191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498417" }, "bbox": [ -0.2277529, 51.2283226, -0.2277529, 51.2283226 ], "geometry": { "type": "Point", "coordinates": [ -0.2277529, 51.2283226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484683" }, "bbox": [ -0.2188563, 51.2252679, -0.2188563, 51.2252679 ], "geometry": { "type": "Point", "coordinates": [ -0.2188563, 51.2252679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24483888" }, "bbox": [ -0.219984, 51.2256748, -0.219984, 51.2256748 ], "geometry": { "type": "Point", "coordinates": [ -0.219984, 51.2256748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484084" }, "bbox": [ -0.219764, 51.2252899, -0.219764, 51.2252899 ], "geometry": { "type": "Point", "coordinates": [ -0.219764, 51.2252899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24485867" }, "bbox": [ -0.2171261, 51.2237249, -0.2171261, 51.2237249 ], "geometry": { "type": "Point", "coordinates": [ -0.2171261, 51.2237249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484967" }, "bbox": [ -0.2183402, 51.223733, -0.2183402, 51.223733 ], "geometry": { "type": "Point", "coordinates": [ -0.2183402, 51.223733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484873" }, "bbox": [ -0.2185755, 51.2242563, -0.2185755, 51.2242563 ], "geometry": { "type": "Point", "coordinates": [ -0.2185755, 51.2242563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24485277" }, "bbox": [ -0.2176204, 51.224515, -0.2176204, 51.224515 ], "geometry": { "type": "Point", "coordinates": [ -0.2176204, 51.224515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24485483" }, "bbox": [ -0.2177554, 51.2251541, -0.2177554, 51.2251541 ], "geometry": { "type": "Point", "coordinates": [ -0.2177554, 51.2251541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484184" }, "bbox": [ -0.2197065, 51.2252055, -0.2197065, 51.2252055 ], "geometry": { "type": "Point", "coordinates": [ -0.2197065, 51.2252055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19407472" }, "bbox": [ -0.2895451, 51.1531644, -0.2895451, 51.1531644 ], "geometry": { "type": "Point", "coordinates": [ -0.2895451, 51.1531644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408688" }, "bbox": [ -0.2874131, 51.1546983, -0.2874131, 51.1546983 ], "geometry": { "type": "Point", "coordinates": [ -0.2874131, 51.1546983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408877" }, "bbox": [ -0.2873189, 51.1536449, -0.2873189, 51.1536449 ], "geometry": { "type": "Point", "coordinates": [ -0.2873189, 51.1536449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19406271" }, "bbox": [ -0.2912103, 51.1531935, -0.2912103, 51.1531935 ], "geometry": { "type": "Point", "coordinates": [ -0.2912103, 51.1531935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408566" }, "bbox": [ -0.2877839, 51.1527162, -0.2877839, 51.1527162 ], "geometry": { "type": "Point", "coordinates": [ -0.2877839, 51.1527162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408173" }, "bbox": [ -0.288479, 51.1532588, -0.288479, 51.1532588 ], "geometry": { "type": "Point", "coordinates": [ -0.288479, 51.1532588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367739" }, "bbox": [ -0.6186607, 51.1187213, -0.6186607, 51.1187213 ], "geometry": { "type": "Point", "coordinates": [ -0.6186607, 51.1187213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96366930" }, "bbox": [ -0.6199081, 51.1179016, -0.6199081, 51.1179016 ], "geometry": { "type": "Point", "coordinates": [ -0.6199081, 51.1179016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96368208" }, "bbox": [ -0.6182549, 51.1159223, -0.6182549, 51.1159223 ], "geometry": { "type": "Point", "coordinates": [ -0.6182549, 51.1159223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14390220" }, "bbox": [ -0.3713887, 51.1408787, -0.3713887, 51.1408787 ], "geometry": { "type": "Point", "coordinates": [ -0.3713887, 51.1408787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96369022" }, "bbox": [ -0.6170279, 51.1171239, -0.6170279, 51.1171239 ], "geometry": { "type": "Point", "coordinates": [ -0.6170279, 51.1171239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96369611" }, "bbox": [ -0.615584, 51.1156313, -0.615584, 51.1156313 ], "geometry": { "type": "Point", "coordinates": [ -0.615584, 51.1156313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367535" }, "bbox": [ -0.6189658, 51.118411, -0.6189658, 51.118411 ], "geometry": { "type": "Point", "coordinates": [ -0.6189658, 51.118411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96366522" }, "bbox": [ -0.6204816, 51.1171243, -0.6204816, 51.1171243 ], "geometry": { "type": "Point", "coordinates": [ -0.6204816, 51.1171243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367623" }, "bbox": [ -0.6188917, 51.1172124, -0.6188917, 51.1172124 ], "geometry": { "type": "Point", "coordinates": [ -0.6188917, 51.1172124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11378701" }, "bbox": [ -0.4028941, 51.1213729, -0.4028941, 51.1213729 ], "geometry": { "type": "Point", "coordinates": [ -0.4028941, 51.1213729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11379006" }, "bbox": [ -0.4028231, 51.1219566, -0.4028231, 51.1219566 ], "geometry": { "type": "Point", "coordinates": [ -0.4028231, 51.1219566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11367390" }, "bbox": [ -0.4050852, 51.1203224, -0.4050852, 51.1203224 ], "geometry": { "type": "Point", "coordinates": [ -0.4050852, 51.1203224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11367885" }, "bbox": [ -0.4040668, 51.1202076, -0.4040668, 51.1202076 ], "geometry": { "type": "Point", "coordinates": [ -0.4040668, 51.1202076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11367894" }, "bbox": [ -0.4040175, 51.1208595, -0.4040175, 51.1208595 ], "geometry": { "type": "Point", "coordinates": [ -0.4040175, 51.1208595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01468779" }, "bbox": [ -0.5412105, 51.2115964, -0.5412105, 51.2115964 ], "geometry": { "type": "Point", "coordinates": [ -0.5412105, 51.2115964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01469371" }, "bbox": [ -0.5410766, 51.2107086, -0.5410766, 51.2107086 ], "geometry": { "type": "Point", "coordinates": [ -0.5410766, 51.2107086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01465702" }, "bbox": [ -0.5474172, 51.2044312, -0.5474172, 51.2044312 ], "geometry": { "type": "Point", "coordinates": [ -0.5474172, 51.2044312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01466306" }, "bbox": [ -0.54651, 51.2047732, -0.54651, 51.2047732 ], "geometry": { "type": "Point", "coordinates": [ -0.54651, 51.2047732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02463369" }, "bbox": [ -0.5364591, 51.210334, -0.5364591, 51.210334 ], "geometry": { "type": "Point", "coordinates": [ -0.5364591, 51.210334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01465671" }, "bbox": [ -0.5473732, 51.2107016, -0.5473732, 51.2107016 ], "geometry": { "type": "Point", "coordinates": [ -0.5473732, 51.2107016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01467674" }, "bbox": [ -0.5444619, 51.2109154, -0.5444619, 51.2109154 ], "geometry": { "type": "Point", "coordinates": [ -0.5444619, 51.2109154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01469336" }, "bbox": [ -0.5422494, 51.2074525, -0.5422494, 51.2074525 ], "geometry": { "type": "Point", "coordinates": [ -0.5422494, 51.2074525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01468137" }, "bbox": [ -0.5438982, 51.2074755, -0.5438982, 51.2074755 ], "geometry": { "type": "Point", "coordinates": [ -0.5438982, 51.2074755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01463852" }, "bbox": [ -0.5499403, 51.2089053, -0.5499403, 51.2089053 ], "geometry": { "type": "Point", "coordinates": [ -0.5499403, 51.2089053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01463854" }, "bbox": [ -0.550142, 51.2091579, -0.550142, 51.2091579 ], "geometry": { "type": "Point", "coordinates": [ -0.550142, 51.2091579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01464444" }, "bbox": [ -0.5491511, 51.2081926, -0.5491511, 51.2081926 ], "geometry": { "type": "Point", "coordinates": [ -0.5491511, 51.2081926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01464447" }, "bbox": [ -0.5490623, 51.2083964, -0.5490623, 51.2083964 ], "geometry": { "type": "Point", "coordinates": [ -0.5490623, 51.2083964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97365455" }, "bbox": [ -0.6076992, 51.1200342, -0.6076992, 51.1200342 ], "geometry": { "type": "Point", "coordinates": [ -0.6076992, 51.1200342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25421862" }, "bbox": [ -0.2109051, 51.1689317, -0.2109051, 51.1689317 ], "geometry": { "type": "Point", "coordinates": [ -0.2109051, 51.1689317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25411045" }, "bbox": [ -0.2123589, 51.158682, -0.2123589, 51.158682 ], "geometry": { "type": "Point", "coordinates": [ -0.2123589, 51.158682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25424079" }, "bbox": [ -0.207815, 51.1706732, -0.207815, 51.1706732 ], "geometry": { "type": "Point", "coordinates": [ -0.207815, 51.1706732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26430228" }, "bbox": [ -0.1986365, 51.1748446, -0.1986365, 51.1748446 ], "geometry": { "type": "Point", "coordinates": [ -0.1986365, 51.1748446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23408664" }, "bbox": [ -0.2304321, 51.1514789, -0.2304321, 51.1514789 ], "geometry": { "type": "Point", "coordinates": [ -0.2304321, 51.1514789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406990" }, "bbox": [ -0.2328522, 51.1539556, -0.2328522, 51.1539556 ], "geometry": { "type": "Point", "coordinates": [ -0.2328522, 51.1539556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23419705" }, "bbox": [ -0.2287312, 51.1553078, -0.2287312, 51.1553078 ], "geometry": { "type": "Point", "coordinates": [ -0.2287312, 51.1553078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25438420" }, "bbox": [ -0.2010736, 51.1742767, -0.2010736, 51.1742767 ], "geometry": { "type": "Point", "coordinates": [ -0.2010736, 51.1742767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25438432" }, "bbox": [ -0.2010843, 51.1752565, -0.2010843, 51.1752565 ], "geometry": { "type": "Point", "coordinates": [ -0.2010843, 51.1752565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24427002" }, "bbox": [ -0.2179141, 51.1639829, -0.2179141, 51.1639829 ], "geometry": { "type": "Point", "coordinates": [ -0.2179141, 51.1639829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25415695" }, "bbox": [ -0.2053017, 51.1630005, -0.2053017, 51.1630005 ], "geometry": { "type": "Point", "coordinates": [ -0.2053017, 51.1630005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28524394" }, "bbox": [ -0.1610492, 51.2610918, -0.1610492, 51.2610918 ], "geometry": { "type": "Point", "coordinates": [ -0.1610492, 51.2610918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27522674" }, "bbox": [ -0.1774876, 51.2596515, -0.1774876, 51.2596515 ], "geometry": { "type": "Point", "coordinates": [ -0.1774876, 51.2596515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28522163" }, "bbox": [ -0.1639214, 51.2584621, -0.1639214, 51.2584621 ], "geometry": { "type": "Point", "coordinates": [ -0.1639214, 51.2584621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00669261" }, "bbox": [ -0.5507986, 51.3896971, -0.5507986, 51.3896971 ], "geometry": { "type": "Point", "coordinates": [ -0.5507986, 51.3896971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00669249" }, "bbox": [ -0.5508203, 51.3886057, -0.5508203, 51.3886057 ], "geometry": { "type": "Point", "coordinates": [ -0.5508203, 51.3886057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22433654" }, "bbox": [ -0.2507959, 51.1780098, -0.2507959, 51.1780098 ], "geometry": { "type": "Point", "coordinates": [ -0.2507959, 51.1780098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22432565" }, "bbox": [ -0.2525034, 51.1789492, -0.2525034, 51.1789492 ], "geometry": { "type": "Point", "coordinates": [ -0.2525034, 51.1789492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22433124" }, "bbox": [ -0.2514053, 51.1757371, -0.2514053, 51.1757371 ], "geometry": { "type": "Point", "coordinates": [ -0.2514053, 51.1757371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21547198" }, "bbox": [ -0.2572565, 51.2807508, -0.2572565, 51.2807508 ], "geometry": { "type": "Point", "coordinates": [ -0.2572565, 51.2807508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01660293" }, "bbox": [ -0.5494856, 51.3923708, -0.5494856, 51.3923708 ], "geometry": { "type": "Point", "coordinates": [ -0.5494856, 51.3923708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16394067" }, "bbox": [ -0.3373873, 51.1446357, -0.3373873, 51.1446357 ], "geometry": { "type": "Point", "coordinates": [ -0.3373873, 51.1446357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16393762" }, "bbox": [ -0.3375197, 51.1441075, -0.3375197, 51.1441075 ], "geometry": { "type": "Point", "coordinates": [ -0.3375197, 51.1441075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15399131" }, "bbox": [ -0.3435589, 51.1413707, -0.3435589, 51.1413707 ], "geometry": { "type": "Point", "coordinates": [ -0.3435589, 51.1413707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19387949" }, "bbox": [ -0.2922755, 51.1331439, -0.2922755, 51.1331439 ], "geometry": { "type": "Point", "coordinates": [ -0.2922755, 51.1331439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19381557" }, "bbox": [ -0.2983617, 51.1338865, -0.2983617, 51.1338865 ], "geometry": { "type": "Point", "coordinates": [ -0.2983617, 51.1338865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19386568" }, "bbox": [ -0.2917029, 51.1349328, -0.2917029, 51.1349328 ], "geometry": { "type": "Point", "coordinates": [ -0.2917029, 51.1349328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19384654" }, "bbox": [ -0.293982, 51.1340985, -0.293982, 51.1340985 ], "geometry": { "type": "Point", "coordinates": [ -0.293982, 51.1340985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395144" }, "bbox": [ -0.2929848, 51.1417913, -0.2929848, 51.1417913 ], "geometry": { "type": "Point", "coordinates": [ -0.2929848, 51.1417913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02669615" }, "bbox": [ -0.5218506, 51.3852435, -0.5218506, 51.3852435 ], "geometry": { "type": "Point", "coordinates": [ -0.5218506, 51.3852435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08347786" }, "bbox": [ -0.4477468, 51.1027789, -0.4477468, 51.1027789 ], "geometry": { "type": "Point", "coordinates": [ -0.4477468, 51.1027789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06352667" }, "bbox": [ -0.4832084, 51.1104228, -0.4832084, 51.1104228 ], "geometry": { "type": "Point", "coordinates": [ -0.4832084, 51.1104228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06353177" }, "bbox": [ -0.4826742, 51.1115679, -0.4826742, 51.1115679 ], "geometry": { "type": "Point", "coordinates": [ -0.4826742, 51.1115679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06352174" }, "bbox": [ -0.4839308, 51.1111765, -0.4839308, 51.1111765 ], "geometry": { "type": "Point", "coordinates": [ -0.4839308, 51.1111765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08354902" }, "bbox": [ -0.4517165, 51.1042966, -0.4517165, 51.1042966 ], "geometry": { "type": "Point", "coordinates": [ -0.4517165, 51.1042966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08357103" }, "bbox": [ -0.4485202, 51.1043506, -0.4485202, 51.1043506 ], "geometry": { "type": "Point", "coordinates": [ -0.4485202, 51.1043506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09351617" }, "bbox": [ -0.4418958, 51.1051487, -0.4418958, 51.1051487 ], "geometry": { "type": "Point", "coordinates": [ -0.4418958, 51.1051487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09350617" }, "bbox": [ -0.4442318, 51.1055431, -0.4442318, 51.1055431 ], "geometry": { "type": "Point", "coordinates": [ -0.4442318, 51.1055431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09355315" }, "bbox": [ -0.4368456, 51.1052653, -0.4368456, 51.1052653 ], "geometry": { "type": "Point", "coordinates": [ -0.4368456, 51.1052653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09354019" }, "bbox": [ -0.4386811, 51.1056432, -0.4386811, 51.1056432 ], "geometry": { "type": "Point", "coordinates": [ -0.4386811, 51.1056432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09343698" }, "bbox": [ -0.4393077, 51.103732, -0.4393077, 51.103732 ], "geometry": { "type": "Point", "coordinates": [ -0.4393077, 51.103732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08348073" }, "bbox": [ -0.44732, 51.1012001, -0.44732, 51.1012001 ], "geometry": { "type": "Point", "coordinates": [ -0.44732, 51.1012001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09341095" }, "bbox": [ -0.4429902, 51.1034701, -0.4429902, 51.1034701 ], "geometry": { "type": "Point", "coordinates": [ -0.4429902, 51.1034701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06354679" }, "bbox": [ -0.4803572, 51.1116034, -0.4803572, 51.1116034 ], "geometry": { "type": "Point", "coordinates": [ -0.4803572, 51.1116034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13381464" }, "bbox": [ -0.3842744, 51.1358579, -0.3842744, 51.1358579 ], "geometry": { "type": "Point", "coordinates": [ -0.3842744, 51.1358579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13382392" }, "bbox": [ -0.3829646, 51.1383853, -0.3829646, 51.1383853 ], "geometry": { "type": "Point", "coordinates": [ -0.3829646, 51.1383853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11425236" }, "bbox": [ -0.4064433, 51.1693045, -0.4064433, 51.1693045 ], "geometry": { "type": "Point", "coordinates": [ -0.4064433, 51.1693045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12401964" }, "bbox": [ -0.3972811, 51.154041, -0.3972811, 51.154041 ], "geometry": { "type": "Point", "coordinates": [ -0.3972811, 51.154041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13381149" }, "bbox": [ -0.3848354, 51.1345377, -0.3848354, 51.1345377 ], "geometry": { "type": "Point", "coordinates": [ -0.3848354, 51.1345377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12403436" }, "bbox": [ -0.3951569, 51.1514966, -0.3951569, 51.1514966 ], "geometry": { "type": "Point", "coordinates": [ -0.3951569, 51.1514966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12401936" }, "bbox": [ -0.3971455, 51.1515514, -0.3971455, 51.1515514 ], "geometry": { "type": "Point", "coordinates": [ -0.3971455, 51.1515514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515728" }, "bbox": [ -0.474682, 51.2508968, -0.474682, 51.2508968 ], "geometry": { "type": "Point", "coordinates": [ -0.474682, 51.2508968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06516753" }, "bbox": [ -0.4727536, 51.253009, -0.4727536, 51.253009 ], "geometry": { "type": "Point", "coordinates": [ -0.4727536, 51.253009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06516352" }, "bbox": [ -0.4733608, 51.2529627, -0.4733608, 51.2529627 ], "geometry": { "type": "Point", "coordinates": [ -0.4733608, 51.2529627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06514652" }, "bbox": [ -0.4757448, 51.252982, -0.4757448, 51.252982 ], "geometry": { "type": "Point", "coordinates": [ -0.4757448, 51.252982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515052" }, "bbox": [ -0.4752142, 51.2530081, -0.4752142, 51.2530081 ], "geometry": { "type": "Point", "coordinates": [ -0.4752142, 51.2530081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515452" }, "bbox": [ -0.4746724, 51.2529946, -0.4746724, 51.2529946 ], "geometry": { "type": "Point", "coordinates": [ -0.4746724, 51.2529946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515953" }, "bbox": [ -0.4740292, 51.2530244, -0.4740292, 51.2530244 ], "geometry": { "type": "Point", "coordinates": [ -0.4740292, 51.2530244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06513957" }, "bbox": [ -0.4768891, 51.2533442, -0.4768891, 51.2533442 ], "geometry": { "type": "Point", "coordinates": [ -0.4768891, 51.2533442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06514051" }, "bbox": [ -0.4767841, 51.2528896, -0.4767841, 51.2528896 ], "geometry": { "type": "Point", "coordinates": [ -0.4767841, 51.2528896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06517753" }, "bbox": [ -0.471476, 51.2530932, -0.471476, 51.2530932 ], "geometry": { "type": "Point", "coordinates": [ -0.471476, 51.2530932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06516426" }, "bbox": [ -0.4734042, 51.2508077, -0.4734042, 51.2508077 ], "geometry": { "type": "Point", "coordinates": [ -0.4734042, 51.2508077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06516419" }, "bbox": [ -0.4732976, 51.2500514, -0.4732976, 51.2500514 ], "geometry": { "type": "Point", "coordinates": [ -0.4732976, 51.2500514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06514351" }, "bbox": [ -0.476242, 51.2529541, -0.476242, 51.2529541 ], "geometry": { "type": "Point", "coordinates": [ -0.476242, 51.2529541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82409109" }, "bbox": [ -0.815774, 51.1537523, -0.815774, 51.1537523 ], "geometry": { "type": "Point", "coordinates": [ -0.815774, 51.1537523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83401905" }, "bbox": [ -0.8119993, 51.1536704, -0.8119993, 51.1536704 ], "geometry": { "type": "Point", "coordinates": [ -0.8119993, 51.1536704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09460998" }, "bbox": [ -0.4393778, 51.2112072, -0.4393778, 51.2112072 ], "geometry": { "type": "Point", "coordinates": [ -0.4393778, 51.2112072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09460565" }, "bbox": [ -0.4403506, 51.2086672, -0.4403506, 51.2086672 ], "geometry": { "type": "Point", "coordinates": [ -0.4403506, 51.2086672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09470925" }, "bbox": [ -0.4395163, 51.2141014, -0.4395163, 51.2141014 ], "geometry": { "type": "Point", "coordinates": [ -0.4395163, 51.2141014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08476536" }, "bbox": [ -0.4457073, 51.2150974, -0.4457073, 51.2150974 ], "geometry": { "type": "Point", "coordinates": [ -0.4457073, 51.2150974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08476746" }, "bbox": [ -0.4453608, 51.2160846, -0.4453608, 51.2160846 ], "geometry": { "type": "Point", "coordinates": [ -0.4453608, 51.2160846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08478433" }, "bbox": [ -0.4431915, 51.2148947, -0.4431915, 51.2148947 ], "geometry": { "type": "Point", "coordinates": [ -0.4431915, 51.2148947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08466796" }, "bbox": [ -0.4460997, 51.2112428, -0.4460997, 51.2112428 ], "geometry": { "type": "Point", "coordinates": [ -0.4460997, 51.2112428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08467366" }, "bbox": [ -0.4452542, 51.2090623, -0.4452542, 51.2090623 ], "geometry": { "type": "Point", "coordinates": [ -0.4452542, 51.2090623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06645536" }, "bbox": [ -0.4705867, 51.3684058, -0.4705867, 51.3684058 ], "geometry": { "type": "Point", "coordinates": [ -0.4705867, 51.3684058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06645662" }, "bbox": [ -0.4706194, 51.3707835, -0.4706194, 51.3707835 ], "geometry": { "type": "Point", "coordinates": [ -0.4706194, 51.3707835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29506599" }, "bbox": [ -0.1438912, 51.2434418, -0.1438912, 51.2434418 ], "geometry": { "type": "Point", "coordinates": [ -0.1438912, 51.2434418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30472425" }, "bbox": [ -0.1368638, 51.2097437, -0.1368638, 51.2097437 ], "geometry": { "type": "Point", "coordinates": [ -0.1368638, 51.2097437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30470915" }, "bbox": [ -0.1391021, 51.2086858, -0.1391021, 51.2086858 ], "geometry": { "type": "Point", "coordinates": [ -0.1391021, 51.2086858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30465090" }, "bbox": [ -0.1333868, 51.2064513, -0.1333868, 51.2064513 ], "geometry": { "type": "Point", "coordinates": [ -0.1333868, 51.2064513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30461082" }, "bbox": [ -0.1390329, 51.2057978, -0.1390329, 51.2057978 ], "geometry": { "type": "Point", "coordinates": [ -0.1390329, 51.2057978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30462274" }, "bbox": [ -0.1373307, 51.204961, -0.1373307, 51.204961 ], "geometry": { "type": "Point", "coordinates": [ -0.1373307, 51.204961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29469375" }, "bbox": [ -0.1415612, 51.2049814, -0.1415612, 51.2049814 ], "geometry": { "type": "Point", "coordinates": [ -0.1415612, 51.2049814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29469790" }, "bbox": [ -0.1407307, 51.2064909, -0.1407307, 51.2064909 ], "geometry": { "type": "Point", "coordinates": [ -0.1407307, 51.2064909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05369921" }, "bbox": [ -0.4866287, 51.1148954, -0.4866287, 51.1148954 ], "geometry": { "type": "Point", "coordinates": [ -0.4866287, 51.1148954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06351793" }, "bbox": [ -0.485127, 51.1124805, -0.485127, 51.1124805 ], "geometry": { "type": "Point", "coordinates": [ -0.485127, 51.1124805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361502" }, "bbox": [ -0.4851112, 51.1135835, -0.4851112, 51.1135835 ], "geometry": { "type": "Point", "coordinates": [ -0.4851112, 51.1135835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83417723" }, "bbox": [ -0.80327, 51.1642702, -0.80327, 51.1642702 ], "geometry": { "type": "Point", "coordinates": [ -0.80327, 51.1642702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83418139" }, "bbox": [ -0.8029307, 51.1654911, -0.8029307, 51.1654911 ], "geometry": { "type": "Point", "coordinates": [ -0.8029307, 51.1654911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83424842" }, "bbox": [ -0.8070306, 51.1750549, -0.8070306, 51.1750549 ], "geometry": { "type": "Point", "coordinates": [ -0.8070306, 51.1750549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96327996" }, "bbox": [ -0.6194792, 51.0879732, -0.6194792, 51.0879732 ], "geometry": { "type": "Point", "coordinates": [ -0.6194792, 51.0879732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96327899" }, "bbox": [ -0.619603, 51.0883908, -0.619603, 51.0883908 ], "geometry": { "type": "Point", "coordinates": [ -0.619603, 51.0883908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96336677" }, "bbox": [ -0.6210487, 51.0951277, -0.6210487, 51.0951277 ], "geometry": { "type": "Point", "coordinates": [ -0.6210487, 51.0951277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96336762" }, "bbox": [ -0.6206284, 51.0937153, -0.6206284, 51.0937153 ], "geometry": { "type": "Point", "coordinates": [ -0.6206284, 51.0937153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96332724" }, "bbox": [ -0.6266513, 51.0904175, -0.6266513, 51.0904175 ], "geometry": { "type": "Point", "coordinates": [ -0.6266513, 51.0904175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11535834" }, "bbox": [ -0.4020634, 51.2683281, -0.4020634, 51.2683281 ], "geometry": { "type": "Point", "coordinates": [ -0.4020634, 51.2683281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28499407" }, "bbox": [ -0.1545159, 51.2263055, -0.1545159, 51.2263055 ], "geometry": { "type": "Point", "coordinates": [ -0.1545159, 51.2263055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28495115" }, "bbox": [ -0.1610637, 51.2273334, -0.1610637, 51.2273334 ], "geometry": { "type": "Point", "coordinates": [ -0.1610637, 51.2273334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29490818" }, "bbox": [ -0.1523396, 51.2268623, -0.1523396, 51.2268623 ], "geometry": { "type": "Point", "coordinates": [ -0.1523396, 51.2268623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94514752" }, "bbox": [ -0.647495, 51.2549664, -0.647495, 51.2549664 ], "geometry": { "type": "Point", "coordinates": [ -0.647495, 51.2549664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94509173" }, "bbox": [ -0.6414256, 51.2479086, -0.6414256, 51.2479086 ], "geometry": { "type": "Point", "coordinates": [ -0.6414256, 51.2479086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94509285" }, "bbox": [ -0.6413309, 51.2489943, -0.6413309, 51.2489943 ], "geometry": { "type": "Point", "coordinates": [ -0.6413309, 51.2489943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94517923" }, "bbox": [ -0.6432088, 51.2524574, -0.6432088, 51.2524574 ], "geometry": { "type": "Point", "coordinates": [ -0.6432088, 51.2524574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99436322" }, "bbox": [ -0.5756523, 51.1793623, -0.5756523, 51.1793623 ], "geometry": { "type": "Point", "coordinates": [ -0.5756523, 51.1793623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00424164" }, "bbox": [ -0.5648798, 51.1741345, -0.5648798, 51.1741345 ], "geometry": { "type": "Point", "coordinates": [ -0.5648798, 51.1741345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16586311" }, "bbox": [ -0.3283711, 51.3103554, -0.3283711, 51.3103554 ], "geometry": { "type": "Point", "coordinates": [ -0.3283711, 51.3103554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16588517" }, "bbox": [ -0.3248513, 51.3106338, -0.3248513, 51.3106338 ], "geometry": { "type": "Point", "coordinates": [ -0.3248513, 51.3106338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17580107" }, "bbox": [ -0.3225706, 51.309734, -0.3225706, 51.309734 ], "geometry": { "type": "Point", "coordinates": [ -0.3225706, 51.309734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92526423" }, "bbox": [ -0.6754563, 51.2620874, -0.6754563, 51.2620874 ], "geometry": { "type": "Point", "coordinates": [ -0.6754563, 51.2620874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06451717" }, "bbox": [ -0.4817081, 51.1956888, -0.4817081, 51.1956888 ], "geometry": { "type": "Point", "coordinates": [ -0.4817081, 51.1956888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06485968" }, "bbox": [ -0.4748092, 51.2272935, -0.4748092, 51.2272935 ], "geometry": { "type": "Point", "coordinates": [ -0.4748092, 51.2272935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07497799" }, "bbox": [ -0.4575858, 51.2389736, -0.4575858, 51.2389736 ], "geometry": { "type": "Point", "coordinates": [ -0.4575858, 51.2389736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05488420" }, "bbox": [ -0.4858113, 51.2232075, -0.4858113, 51.2232075 ], "geometry": { "type": "Point", "coordinates": [ -0.4858113, 51.2232075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96373851" }, "bbox": [ -0.6242086, 51.1286037, -0.6242086, 51.1286037 ], "geometry": { "type": "Point", "coordinates": [ -0.6242086, 51.1286037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96372746" }, "bbox": [ -0.6253048, 51.1282357, -0.6253048, 51.1282357 ], "geometry": { "type": "Point", "coordinates": [ -0.6253048, 51.1282357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96371844" }, "bbox": [ -0.6268748, 51.1281272, -0.6268748, 51.1281272 ], "geometry": { "type": "Point", "coordinates": [ -0.6268748, 51.1281272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96372978" }, "bbox": [ -0.6252321, 51.1313737, -0.6252321, 51.1313737 ], "geometry": { "type": "Point", "coordinates": [ -0.6252321, 51.1313737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96373366" }, "bbox": [ -0.6244141, 51.1300675, -0.6244141, 51.1300675 ], "geometry": { "type": "Point", "coordinates": [ -0.6244141, 51.1300675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96372247" }, "bbox": [ -0.6262628, 51.1285012, -0.6262628, 51.1285012 ], "geometry": { "type": "Point", "coordinates": [ -0.6262628, 51.1285012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96371484" }, "bbox": [ -0.6273503, 51.1317404, -0.6273503, 51.1317404 ], "geometry": { "type": "Point", "coordinates": [ -0.6273503, 51.1317404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96370255" }, "bbox": [ -0.6291693, 51.1289395, -0.6291693, 51.1289395 ], "geometry": { "type": "Point", "coordinates": [ -0.6291693, 51.1289395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96370381" }, "bbox": [ -0.6289517, 51.1316021, -0.6289517, 51.1316021 ], "geometry": { "type": "Point", "coordinates": [ -0.6289517, 51.1316021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95379978" }, "bbox": [ -0.6295333, 51.131252, -0.6295333, 51.131252 ], "geometry": { "type": "Point", "coordinates": [ -0.6295333, 51.131252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12469810" }, "bbox": [ -0.3840979, 51.2029402, -0.3840979, 51.2029402 ], "geometry": { "type": "Point", "coordinates": [ -0.3840979, 51.2029402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13460606" }, "bbox": [ -0.3828612, 51.2027875, -0.3828612, 51.2027875 ], "geometry": { "type": "Point", "coordinates": [ -0.3828612, 51.2027875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17412015" }, "bbox": [ -0.3255125, 51.1576691, -0.3255125, 51.1576691 ], "geometry": { "type": "Point", "coordinates": [ -0.3255125, 51.1576691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16409597" }, "bbox": [ -0.3290108, 51.1560552, -0.3290108, 51.1560552 ], "geometry": { "type": "Point", "coordinates": [ -0.3290108, 51.1560552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16409973" }, "bbox": [ -0.3282288, 51.1539775, -0.3282288, 51.1539775 ], "geometry": { "type": "Point", "coordinates": [ -0.3282288, 51.1539775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17402691" }, "bbox": [ -0.3246071, 51.1554304, -0.3246071, 51.1554304 ], "geometry": { "type": "Point", "coordinates": [ -0.3246071, 51.1554304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33455735" }, "bbox": [ -0.0903337, 51.1920843, -0.0903337, 51.1920843 ], "geometry": { "type": "Point", "coordinates": [ -0.0903337, 51.1920843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33454050" }, "bbox": [ -0.0922893, 51.1932776, -0.0922893, 51.1932776 ], "geometry": { "type": "Point", "coordinates": [ -0.0922893, 51.1932776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05467576" }, "bbox": [ -0.4853058, 51.2096038, -0.4853058, 51.2096038 ], "geometry": { "type": "Point", "coordinates": [ -0.4853058, 51.2096038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06461067" }, "bbox": [ -0.4824404, 51.2093856, -0.4824404, 51.2093856 ], "geometry": { "type": "Point", "coordinates": [ -0.4824404, 51.2093856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06461657" }, "bbox": [ -0.4815472, 51.2085066, -0.4815472, 51.2085066 ], "geometry": { "type": "Point", "coordinates": [ -0.4815472, 51.2085066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06461485" }, "bbox": [ -0.4814806, 51.2109716, -0.4814806, 51.2109716 ], "geometry": { "type": "Point", "coordinates": [ -0.4814806, 51.2109716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477649" }, "bbox": [ -0.6732693, 51.2191925, -0.6732693, 51.2191925 ], "geometry": { "type": "Point", "coordinates": [ -0.6732693, 51.2191925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477546" }, "bbox": [ -0.6732429, 51.2189023, -0.6732429, 51.2189023 ], "geometry": { "type": "Point", "coordinates": [ -0.6732429, 51.2189023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01691017" }, "bbox": [ -0.547692, 51.4125389, -0.547692, 51.4125389 ], "geometry": { "type": "Point", "coordinates": [ -0.547692, 51.4125389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00410171" }, "bbox": [ -0.5711745, 51.1659378, -0.5711745, 51.1659378 ], "geometry": { "type": "Point", "coordinates": [ -0.5711745, 51.1659378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02369059" }, "bbox": [ -0.5311852, 51.1193306, -0.5311852, 51.1193306 ], "geometry": { "type": "Point", "coordinates": [ -0.5311852, 51.1193306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02353097" }, "bbox": [ -0.5397742, 51.1139622, -0.5397742, 51.1139622 ], "geometry": { "type": "Point", "coordinates": [ -0.5397742, 51.1139622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04370184" }, "bbox": [ -0.5150275, 51.130307, -0.5150275, 51.130307 ], "geometry": { "type": "Point", "coordinates": [ -0.5150275, 51.130307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04374502" }, "bbox": [ -0.5089867, 51.1229673, -0.5089867, 51.1229673 ], "geometry": { "type": "Point", "coordinates": [ -0.5089867, 51.1229673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03358883" }, "bbox": [ -0.5173036, 51.1124851, -0.5173036, 51.1124851 ], "geometry": { "type": "Point", "coordinates": [ -0.5173036, 51.1124851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356858" }, "bbox": [ -0.5345011, 51.1103305, -0.5345011, 51.1103305 ], "geometry": { "type": "Point", "coordinates": [ -0.5345011, 51.1103305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04373795" }, "bbox": [ -0.5103793, 51.1314411, -0.5103793, 51.1314411 ], "geometry": { "type": "Point", "coordinates": [ -0.5103793, 51.1314411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01358184" }, "bbox": [ -0.5468316, 51.1128707, -0.5468316, 51.1128707 ], "geometry": { "type": "Point", "coordinates": [ -0.5468316, 51.1128707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04373611" }, "bbox": [ -0.5100817, 51.123816, -0.5100817, 51.123816 ], "geometry": { "type": "Point", "coordinates": [ -0.5100817, 51.123816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362801" }, "bbox": [ -0.5116462, 51.1137786, -0.5116462, 51.1137786 ], "geometry": { "type": "Point", "coordinates": [ -0.5116462, 51.1137786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362806" }, "bbox": [ -0.5116135, 51.1143142, -0.5116135, 51.1143142 ], "geometry": { "type": "Point", "coordinates": [ -0.5116135, 51.1143142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362702" }, "bbox": [ -0.5117566, 51.1139725, -0.5117566, 51.1139725 ], "geometry": { "type": "Point", "coordinates": [ -0.5117566, 51.1139725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362201" }, "bbox": [ -0.5126819, 51.1138672, -0.5126819, 51.1138672 ], "geometry": { "type": "Point", "coordinates": [ -0.5126819, 51.1138672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03356891" }, "bbox": [ -0.5203011, 51.1128957, -0.5203011, 51.1128957 ], "geometry": { "type": "Point", "coordinates": [ -0.5203011, 51.1128957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356271" }, "bbox": [ -0.5353839, 51.1114982, -0.5353839, 51.1114982 ], "geometry": { "type": "Point", "coordinates": [ -0.5353839, 51.1114982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02355675" }, "bbox": [ -0.5362862, 51.1116842, -0.5362862, 51.1116842 ], "geometry": { "type": "Point", "coordinates": [ -0.5362862, 51.1116842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02355857" }, "bbox": [ -0.535895, 51.1103439, -0.535895, 51.1103439 ], "geometry": { "type": "Point", "coordinates": [ -0.535895, 51.1103439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02357069" }, "bbox": [ -0.5341107, 51.1112542, -0.5341107, 51.1112542 ], "geometry": { "type": "Point", "coordinates": [ -0.5341107, 51.1112542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356459" }, "bbox": [ -0.5349777, 51.1105216, -0.5349777, 51.1105216 ], "geometry": { "type": "Point", "coordinates": [ -0.5349777, 51.1105216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42419154" }, "bbox": [ 0.0421665, 51.1552076, 0.0421665, 51.1552076 ], "geometry": { "type": "Point", "coordinates": [ 0.0421665, 51.1552076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00489543" }, "bbox": [ -0.5556221, 51.2262462, -0.5556221, 51.2262462 ], "geometry": { "type": "Point", "coordinates": [ -0.5556221, 51.2262462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481445" }, "bbox": [ -0.5530209, 51.2262481, -0.5530209, 51.2262481 ], "geometry": { "type": "Point", "coordinates": [ -0.5530209, 51.2262481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01483384" }, "bbox": [ -0.5483962, 51.2294173, -0.5483962, 51.2294173 ], "geometry": { "type": "Point", "coordinates": [ -0.5483962, 51.2294173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30548065" }, "bbox": [ -0.1259368, 51.2757664, -0.1259368, 51.2757664 ], "geometry": { "type": "Point", "coordinates": [ -0.1259368, 51.2757664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30546873" }, "bbox": [ -0.1279783, 51.2767816, -0.1279783, 51.2767816 ], "geometry": { "type": "Point", "coordinates": [ -0.1279783, 51.2767816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30546367" }, "bbox": [ -0.1284884, 51.2763185, -0.1284884, 51.2763185 ], "geometry": { "type": "Point", "coordinates": [ -0.1284884, 51.2763185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87345511" }, "bbox": [ -0.7509438, 51.0997585, -0.7509438, 51.0997585 ], "geometry": { "type": "Point", "coordinates": [ -0.7509438, 51.0997585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37520603" }, "bbox": [ -0.0373082, 51.251142, -0.0373082, 51.251142 ], "geometry": { "type": "Point", "coordinates": [ -0.0373082, 51.251142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93545055" }, "bbox": [ -0.6607775, 51.2825081, -0.6607775, 51.2825081 ], "geometry": { "type": "Point", "coordinates": [ -0.6607775, 51.2825081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08425405" }, "bbox": [ -0.4489788, 51.1674093, -0.4489788, 51.1674093 ], "geometry": { "type": "Point", "coordinates": [ -0.4489788, 51.1674093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08424703" }, "bbox": [ -0.4499869, 51.1672621, -0.4499869, 51.1672621 ], "geometry": { "type": "Point", "coordinates": [ -0.4499869, 51.1672621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08427820" }, "bbox": [ -0.4455591, 51.1687296, -0.4455591, 51.1687296 ], "geometry": { "type": "Point", "coordinates": [ -0.4455591, 51.1687296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08428126" }, "bbox": [ -0.4449084, 51.169303, -0.4449084, 51.169303 ], "geometry": { "type": "Point", "coordinates": [ -0.4449084, 51.169303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08429260" }, "bbox": [ -0.4434348, 51.1720638, -0.4434348, 51.1720638 ], "geometry": { "type": "Point", "coordinates": [ -0.4434348, 51.1720638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09422707" }, "bbox": [ -0.4384029, 51.1674809, -0.4384029, 51.1674809 ], "geometry": { "type": "Point", "coordinates": [ -0.4384029, 51.1674809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09423506" }, "bbox": [ -0.4375164, 51.1673744, -0.4375164, 51.1673744 ], "geometry": { "type": "Point", "coordinates": [ -0.4375164, 51.1673744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09420047" }, "bbox": [ -0.4423017, 51.1710586, -0.4423017, 51.1710586 ], "geometry": { "type": "Point", "coordinates": [ -0.4423017, 51.1710586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00693109" }, "bbox": [ -0.5589646, 51.411999, -0.5589646, 51.411999 ], "geometry": { "type": "Point", "coordinates": [ -0.5589646, 51.411999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00692612" }, "bbox": [ -0.5597231, 51.4122255, -0.5597231, 51.4122255 ], "geometry": { "type": "Point", "coordinates": [ -0.5597231, 51.4122255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00683177" }, "bbox": [ -0.559141, 51.4091666, -0.559141, 51.4091666 ], "geometry": { "type": "Point", "coordinates": [ -0.559141, 51.4091666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00683378" }, "bbox": [ -0.5587442, 51.4092005, -0.5587442, 51.4092005 ], "geometry": { "type": "Point", "coordinates": [ -0.5587442, 51.4092005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00682890" }, "bbox": [ -0.5596067, 51.4102299, -0.5596067, 51.4102299 ], "geometry": { "type": "Point", "coordinates": [ -0.5596067, 51.4102299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05700305" }, "bbox": [ -0.4899222, 51.4189384, -0.4899222, 51.4189384 ], "geometry": { "type": "Point", "coordinates": [ -0.4899222, 51.4189384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05703901" }, "bbox": [ -0.4856731, 51.4184619, -0.4856731, 51.4184619 ], "geometry": { "type": "Point", "coordinates": [ -0.4856731, 51.4184619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14396367" }, "bbox": [ -0.3626789, 51.1450016, -0.3626789, 51.1450016 ], "geometry": { "type": "Point", "coordinates": [ -0.3626789, 51.1450016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14398282" }, "bbox": [ -0.3597243, 51.1462271, -0.3597243, 51.1462271 ], "geometry": { "type": "Point", "coordinates": [ -0.3597243, 51.1462271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14398085" }, "bbox": [ -0.3601868, 51.1463869, -0.3601868, 51.1463869 ], "geometry": { "type": "Point", "coordinates": [ -0.3601868, 51.1463869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16375875" }, "bbox": [ -0.3353095, 51.1270452, -0.3353095, 51.1270452 ], "geometry": { "type": "Point", "coordinates": [ -0.3353095, 51.1270452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16376455" }, "bbox": [ -0.3346312, 51.125513, -0.3346312, 51.125513 ], "geometry": { "type": "Point", "coordinates": [ -0.3346312, 51.125513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16376673" }, "bbox": [ -0.3337927, 51.1272998, -0.3337927, 51.1272998 ], "geometry": { "type": "Point", "coordinates": [ -0.3337927, 51.1272998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21420931" }, "bbox": [ -0.2694039, 51.1672663, -0.2694039, 51.1672663 ], "geometry": { "type": "Point", "coordinates": [ -0.2694039, 51.1672663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21425937" }, "bbox": [ -0.2621915, 51.1676644, -0.2621915, 51.1676644 ], "geometry": { "type": "Point", "coordinates": [ -0.2621915, 51.1676644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21427643" }, "bbox": [ -0.2597351, 51.1681058, -0.2597351, 51.1681058 ], "geometry": { "type": "Point", "coordinates": [ -0.2597351, 51.1681058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21426131" }, "bbox": [ -0.2619988, 51.167122, -0.2619988, 51.167122 ], "geometry": { "type": "Point", "coordinates": [ -0.2619988, 51.167122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21426951" }, "bbox": [ -0.2607602, 51.1689118, -0.2607602, 51.1689118 ], "geometry": { "type": "Point", "coordinates": [ -0.2607602, 51.1689118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21429860" }, "bbox": [ -0.2565976, 51.1697422, -0.2565976, 51.1697422 ], "geometry": { "type": "Point", "coordinates": [ -0.2565976, 51.1697422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21428969" }, "bbox": [ -0.257926, 51.1704974, -0.257926, 51.1704974 ], "geometry": { "type": "Point", "coordinates": [ -0.257926, 51.1704974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21430743" }, "bbox": [ -0.2694331, 51.177288, -0.2694331, 51.177288 ], "geometry": { "type": "Point", "coordinates": [ -0.2694331, 51.177288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20429773" }, "bbox": [ -0.2694942, 51.1706996, -0.2694942, 51.1706996 ], "geometry": { "type": "Point", "coordinates": [ -0.2694942, 51.1706996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20429335" }, "bbox": [ -0.2716123, 51.1676599, -0.2716123, 51.1676599 ], "geometry": { "type": "Point", "coordinates": [ -0.2716123, 51.1676599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21420376" }, "bbox": [ -0.2700605, 51.1713347, -0.2700605, 51.1713347 ], "geometry": { "type": "Point", "coordinates": [ -0.2700605, 51.1713347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20439545" }, "bbox": [ -0.2709451, 51.1775367, -0.2709451, 51.1775367 ], "geometry": { "type": "Point", "coordinates": [ -0.2709451, 51.1775367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21423990" }, "bbox": [ -0.2648299, 51.1725386, -0.2648299, 51.1725386 ], "geometry": { "type": "Point", "coordinates": [ -0.2648299, 51.1725386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21424597" }, "bbox": [ -0.2639383, 51.1730441, -0.2639383, 51.1730441 ], "geometry": { "type": "Point", "coordinates": [ -0.2639383, 51.1730441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21436919" }, "bbox": [ -0.2602553, 51.1748621, -0.2602553, 51.1748621 ], "geometry": { "type": "Point", "coordinates": [ -0.2602553, 51.1748621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21436309" }, "bbox": [ -0.2614482, 51.174289, -0.2614482, 51.174289 ], "geometry": { "type": "Point", "coordinates": [ -0.2614482, 51.174289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21437023" }, "bbox": [ -0.2604404, 51.1752739, -0.2604404, 51.1752739 ], "geometry": { "type": "Point", "coordinates": [ -0.2604404, 51.1752739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21438811" }, "bbox": [ -0.2577506, 51.1742892, -0.2577506, 51.1742892 ], "geometry": { "type": "Point", "coordinates": [ -0.2577506, 51.1742892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21435704" }, "bbox": [ -0.2618786, 51.1738441, -0.2618786, 51.1738441 ], "geometry": { "type": "Point", "coordinates": [ -0.2618786, 51.1738441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19434040" }, "bbox": [ -0.2917568, 51.1767313, -0.2917568, 51.1767313 ], "geometry": { "type": "Point", "coordinates": [ -0.2917568, 51.1767313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19435766" }, "bbox": [ -0.2902702, 51.1797001, -0.2902702, 51.1797001 ], "geometry": { "type": "Point", "coordinates": [ -0.2902702, 51.1797001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19432547" }, "bbox": [ -0.2950446, 51.1782201, -0.2950446, 51.1782201 ], "geometry": { "type": "Point", "coordinates": [ -0.2950446, 51.1782201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19433114" }, "bbox": [ -0.2944001, 51.1750007, -0.2944001, 51.1750007 ], "geometry": { "type": "Point", "coordinates": [ -0.2944001, 51.1750007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18438319" }, "bbox": [ -0.3014901, 51.1756309, -0.3014901, 51.1756309 ], "geometry": { "type": "Point", "coordinates": [ -0.3014901, 51.1756309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41443559" }, "bbox": [ 0.0210809, 51.1830802, 0.0210809, 51.1830802 ], "geometry": { "type": "Point", "coordinates": [ 0.0210809, 51.1830802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42446133" }, "bbox": [ 0.0387814, 51.1805603, 0.0387814, 51.1805603 ], "geometry": { "type": "Point", "coordinates": [ 0.0387814, 51.1805603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99436374" }, "bbox": [ -0.5760604, 51.1841843, -0.5760604, 51.1841843 ], "geometry": { "type": "Point", "coordinates": [ -0.5760604, 51.1841843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00442445" }, "bbox": [ -0.5669233, 51.1905733, -0.5669233, 51.1905733 ], "geometry": { "type": "Point", "coordinates": [ -0.5669233, 51.1905733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00442244" }, "bbox": [ -0.5670902, 51.1904027, -0.5670902, 51.1904027 ], "geometry": { "type": "Point", "coordinates": [ -0.5670902, 51.1904027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00441340" }, "bbox": [ -0.5687525, 51.1901873, -0.5687525, 51.1901873 ], "geometry": { "type": "Point", "coordinates": [ -0.5687525, 51.1901873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99439667" }, "bbox": [ -0.5711371, 51.1836411, -0.5711371, 51.1836411 ], "geometry": { "type": "Point", "coordinates": [ -0.5711371, 51.1836411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99437078" }, "bbox": [ -0.5748899, 51.1846986, -0.5748899, 51.1846986 ], "geometry": { "type": "Point", "coordinates": [ -0.5748899, 51.1846986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99437965" }, "bbox": [ -0.5735991, 51.1833197, -0.5735991, 51.1833197 ], "geometry": { "type": "Point", "coordinates": [ -0.5735991, 51.1833197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99438470" }, "bbox": [ -0.5728341, 51.1838731, -0.5728341, 51.1838731 ], "geometry": { "type": "Point", "coordinates": [ -0.5728341, 51.1838731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99437042" }, "bbox": [ -0.5756367, 51.1811201, -0.5756367, 51.1811201 ], "geometry": { "type": "Point", "coordinates": [ -0.5756367, 51.1811201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517972" }, "bbox": [ -0.4566888, 51.2545554, -0.4566888, 51.2545554 ], "geometry": { "type": "Point", "coordinates": [ -0.4566888, 51.2545554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07518774" }, "bbox": [ -0.4552369, 51.255362, -0.4552369, 51.255362 ], "geometry": { "type": "Point", "coordinates": [ -0.4552369, 51.255362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517881" }, "bbox": [ -0.456816, 51.2552836, -0.456816, 51.2552836 ], "geometry": { "type": "Point", "coordinates": [ -0.456816, 51.2552836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436339" }, "bbox": [ -0.2184248, 51.1762594, -0.2184248, 51.1762594 ], "geometry": { "type": "Point", "coordinates": [ -0.2184248, 51.1762594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436333" }, "bbox": [ -0.2184223, 51.1755961, -0.2184223, 51.1755961 ], "geometry": { "type": "Point", "coordinates": [ -0.2184223, 51.1755961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21450559" }, "bbox": [ -0.2687468, 51.1967329, -0.2687468, 51.1967329 ], "geometry": { "type": "Point", "coordinates": [ -0.2687468, 51.1967329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21450054" }, "bbox": [ -0.2695604, 51.1963715, -0.2695604, 51.1963715 ], "geometry": { "type": "Point", "coordinates": [ -0.2695604, 51.1963715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21451078" }, "bbox": [ -0.2679233, 51.1984734, -0.2679233, 51.1984734 ], "geometry": { "type": "Point", "coordinates": [ -0.2679233, 51.1984734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99548272" }, "bbox": [ -0.5700706, 51.2828704, -0.5700706, 51.2828704 ], "geometry": { "type": "Point", "coordinates": [ -0.5700706, 51.2828704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99547474" }, "bbox": [ -0.571217, 51.2831363, -0.571217, 51.2831363 ], "geometry": { "type": "Point", "coordinates": [ -0.571217, 51.2831363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97511298" }, "bbox": [ -0.6094936, 51.2587263, -0.6094936, 51.2587263 ], "geometry": { "type": "Point", "coordinates": [ -0.6094936, 51.2587263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96542244" }, "bbox": [ -0.6217973, 51.2809921, -0.6217973, 51.2809921 ], "geometry": { "type": "Point", "coordinates": [ -0.6217973, 51.2809921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96544830" }, "bbox": [ -0.6182191, 51.2789521, -0.6182191, 51.2789521 ], "geometry": { "type": "Point", "coordinates": [ -0.6182191, 51.2789521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95547812" }, "bbox": [ -0.6281678, 51.2777826, -0.6281678, 51.2777826 ], "geometry": { "type": "Point", "coordinates": [ -0.6281678, 51.2777826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95536258" }, "bbox": [ -0.6306363, 51.2733132, -0.6306363, 51.2733132 ], "geometry": { "type": "Point", "coordinates": [ -0.6306363, 51.2733132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95537964" }, "bbox": [ -0.6281593, 51.2738332, -0.6281593, 51.2738332 ], "geometry": { "type": "Point", "coordinates": [ -0.6281593, 51.2738332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95537297" }, "bbox": [ -0.6290847, 51.2768034, -0.6290847, 51.2768034 ], "geometry": { "type": "Point", "coordinates": [ -0.6290847, 51.2768034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521595" }, "bbox": [ -0.6230891, 51.2677032, -0.6230891, 51.2677032 ], "geometry": { "type": "Point", "coordinates": [ -0.6230891, 51.2677032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96541207" }, "bbox": [ -0.6228977, 51.278105, -0.6228977, 51.278105 ], "geometry": { "type": "Point", "coordinates": [ -0.6228977, 51.278105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96542115" }, "bbox": [ -0.6217978, 51.2783733, -0.6217978, 51.2783733 ], "geometry": { "type": "Point", "coordinates": [ -0.6217978, 51.2783733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96542102" }, "bbox": [ -0.6219864, 51.2771408, -0.6219864, 51.2771408 ], "geometry": { "type": "Point", "coordinates": [ -0.6219864, 51.2771408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96543814" }, "bbox": [ -0.620225, 51.2777695, -0.620225, 51.2777695 ], "geometry": { "type": "Point", "coordinates": [ -0.620225, 51.2777695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96540928" }, "bbox": [ -0.6244066, 51.278861, -0.6244066, 51.278861 ], "geometry": { "type": "Point", "coordinates": [ -0.6244066, 51.278861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96541640" }, "bbox": [ -0.6227099, 51.2806031, -0.6227099, 51.2806031 ], "geometry": { "type": "Point", "coordinates": [ -0.6227099, 51.2806031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96545622" }, "bbox": [ -0.6169712, 51.2788917, -0.6169712, 51.2788917 ], "geometry": { "type": "Point", "coordinates": [ -0.6169712, 51.2788917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96541327" }, "bbox": [ -0.6231253, 51.2794888, -0.6231253, 51.2794888 ], "geometry": { "type": "Point", "coordinates": [ -0.6231253, 51.2794888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96531614" }, "bbox": [ -0.6230813, 51.2693673, -0.6230813, 51.2693673 ], "geometry": { "type": "Point", "coordinates": [ -0.6230813, 51.2693673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96530926" }, "bbox": [ -0.6239378, 51.2704719, -0.6239378, 51.2704719 ], "geometry": { "type": "Point", "coordinates": [ -0.6239378, 51.2704719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537728" }, "bbox": [ -0.6141072, 51.2702582, -0.6141072, 51.2702582 ], "geometry": { "type": "Point", "coordinates": [ -0.6141072, 51.2702582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532932" }, "bbox": [ -0.620423, 51.2710225, -0.620423, 51.2710225 ], "geometry": { "type": "Point", "coordinates": [ -0.620423, 51.2710225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96531127" }, "bbox": [ -0.6237878, 51.2704391, -0.6237878, 51.2704391 ], "geometry": { "type": "Point", "coordinates": [ -0.6237878, 51.2704391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532306" }, "bbox": [ -0.6219346, 51.2685804, -0.6219346, 51.2685804 ], "geometry": { "type": "Point", "coordinates": [ -0.6219346, 51.2685804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532405" }, "bbox": [ -0.6220199, 51.2684858, -0.6220199, 51.2684858 ], "geometry": { "type": "Point", "coordinates": [ -0.6220199, 51.2684858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96531530" }, "bbox": [ -0.6228254, 51.2707411, -0.6228254, 51.2707411 ], "geometry": { "type": "Point", "coordinates": [ -0.6228254, 51.2707411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95528586" }, "bbox": [ -0.6274771, 51.2670762, -0.6274771, 51.2670762 ], "geometry": { "type": "Point", "coordinates": [ -0.6274771, 51.2670762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95528784" }, "bbox": [ -0.6274277, 51.2666926, -0.6274277, 51.2666926 ], "geometry": { "type": "Point", "coordinates": [ -0.6274277, 51.2666926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96523896" }, "bbox": [ -0.6196877, 51.2678092, -0.6196877, 51.2678092 ], "geometry": { "type": "Point", "coordinates": [ -0.6196877, 51.2678092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96525095" }, "bbox": [ -0.6186923, 51.2673765, -0.6186923, 51.2673765 ], "geometry": { "type": "Point", "coordinates": [ -0.6186923, 51.2673765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95412646" }, "bbox": [ -0.6389872, 51.1644936, -0.6389872, 51.1644936 ], "geometry": { "type": "Point", "coordinates": [ -0.6389872, 51.1644936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95412750" }, "bbox": [ -0.6387022, 51.1647293, -0.6387022, 51.1647293 ], "geometry": { "type": "Point", "coordinates": [ -0.6387022, 51.1647293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30527768" }, "bbox": [ -0.1272773, 51.2583376, -0.1272773, 51.2583376 ], "geometry": { "type": "Point", "coordinates": [ -0.1272773, 51.2583376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30527671" }, "bbox": [ -0.1277044, 51.2584187, -0.1277044, 51.2584187 ], "geometry": { "type": "Point", "coordinates": [ -0.1277044, 51.2584187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30527971" }, "bbox": [ -0.1275192, 51.2588378, -0.1275192, 51.2588378 ], "geometry": { "type": "Point", "coordinates": [ -0.1275192, 51.2588378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93341775" }, "bbox": [ -0.6721833, 51.1040881, -0.6721833, 51.1040881 ], "geometry": { "type": "Point", "coordinates": [ -0.6721833, 51.1040881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93343193" }, "bbox": [ -0.6688043, 51.106002, -0.6688043, 51.106002 ], "geometry": { "type": "Point", "coordinates": [ -0.6688043, 51.106002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93353820" }, "bbox": [ -0.6673873, 51.1085105, -0.6673873, 51.1085105 ], "geometry": { "type": "Point", "coordinates": [ -0.6673873, 51.1085105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410295" }, "bbox": [ -0.4562842, 51.1665274, -0.4562842, 51.1665274 ], "geometry": { "type": "Point", "coordinates": [ -0.4562842, 51.1665274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08411392" }, "bbox": [ -0.4548869, 51.1663373, -0.4548869, 51.1663373 ], "geometry": { "type": "Point", "coordinates": [ -0.4548869, 51.1663373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09410115" }, "bbox": [ -0.4426648, 51.1592297, -0.4426648, 51.1592297 ], "geometry": { "type": "Point", "coordinates": [ -0.4426648, 51.1592297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09411113" }, "bbox": [ -0.4415472, 51.1585857, -0.4415472, 51.1585857 ], "geometry": { "type": "Point", "coordinates": [ -0.4415472, 51.1585857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09411519" }, "bbox": [ -0.4405104, 51.1595298, -0.4405104, 51.1595298 ], "geometry": { "type": "Point", "coordinates": [ -0.4405104, 51.1595298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08419610" }, "bbox": [ -0.4433854, 51.1587577, -0.4433854, 51.1587577 ], "geometry": { "type": "Point", "coordinates": [ -0.4433854, 51.1587577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95377705" }, "bbox": [ -0.6323366, 51.1242838, -0.6323366, 51.1242838 ], "geometry": { "type": "Point", "coordinates": [ -0.6323366, 51.1242838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95372309" }, "bbox": [ -0.6405713, 51.1252159, -0.6405713, 51.1252159 ], "geometry": { "type": "Point", "coordinates": [ -0.6405713, 51.1252159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95371422" }, "bbox": [ -0.641942, 51.1264133, -0.641942, 51.1264133 ], "geometry": { "type": "Point", "coordinates": [ -0.641942, 51.1264133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95375523" }, "bbox": [ -0.637526, 51.1266165, -0.637526, 51.1266165 ], "geometry": { "type": "Point", "coordinates": [ -0.637526, 51.1266165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95376604" }, "bbox": [ -0.6357268, 51.1245306, -0.6357268, 51.1245306 ], "geometry": { "type": "Point", "coordinates": [ -0.6357268, 51.1245306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95367277" }, "bbox": [ -0.6336354, 51.1222664, -0.6336354, 51.1222664 ], "geometry": { "type": "Point", "coordinates": [ -0.6336354, 51.1222664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95368695" }, "bbox": [ -0.6324088, 51.1240345, -0.6324088, 51.1240345 ], "geometry": { "type": "Point", "coordinates": [ -0.6324088, 51.1240345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95364085" }, "bbox": [ -0.6381896, 51.1229729, -0.6381896, 51.1229729 ], "geometry": { "type": "Point", "coordinates": [ -0.6381896, 51.1229729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368714" }, "bbox": [ -0.645848, 51.116722, -0.645848, 51.116722 ], "geometry": { "type": "Point", "coordinates": [ -0.645848, 51.116722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08411096" }, "bbox": [ -0.4552754, 51.1667351, -0.4552754, 51.1667351 ], "geometry": { "type": "Point", "coordinates": [ -0.4552754, 51.1667351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410793" }, "bbox": [ -0.4556918, 51.1661733, -0.4556918, 51.1661733 ], "geometry": { "type": "Point", "coordinates": [ -0.4556918, 51.1661733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95360211" }, "bbox": [ -0.6437085, 51.1164604, -0.6437085, 51.1164604 ], "geometry": { "type": "Point", "coordinates": [ -0.6437085, 51.1164604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95360821" }, "bbox": [ -0.642867, 51.1173401, -0.642867, 51.1173401 ], "geometry": { "type": "Point", "coordinates": [ -0.642867, 51.1173401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95362163" }, "bbox": [ -0.6408743, 51.1211224, -0.6408743, 51.1211224 ], "geometry": { "type": "Point", "coordinates": [ -0.6408743, 51.1211224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95361147" }, "bbox": [ -0.6423665, 51.1196972, -0.6423665, 51.1196972 ], "geometry": { "type": "Point", "coordinates": [ -0.6423665, 51.1196972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95362525" }, "bbox": [ -0.6410364, 51.1178914, -0.6410364, 51.1178914 ], "geometry": { "type": "Point", "coordinates": [ -0.6410364, 51.1178914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410799" }, "bbox": [ -0.4557563, 51.1669123, -0.4557563, 51.1669123 ], "geometry": { "type": "Point", "coordinates": [ -0.4557563, 51.1669123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08420501" }, "bbox": [ -0.4559866, 51.1672546, -0.4559866, 51.1672546 ], "geometry": { "type": "Point", "coordinates": [ -0.4559866, 51.1672546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09410725" }, "bbox": [ -0.4416967, 51.1601015, -0.4416967, 51.1601015 ], "geometry": { "type": "Point", "coordinates": [ -0.4416967, 51.1601015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559730" }, "bbox": [ -0.5535363, 51.28742, -0.5535363, 51.28742 ], "geometry": { "type": "Point", "coordinates": [ -0.5535363, 51.28742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01548371" }, "bbox": [ -0.5411001, 51.2824363, -0.5411001, 51.2824363 ], "geometry": { "type": "Point", "coordinates": [ -0.5411001, 51.2824363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01549184" }, "bbox": [ -0.540072, 51.2836039, -0.540072, 51.2836039 ], "geometry": { "type": "Point", "coordinates": [ -0.540072, 51.2836039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01548280" }, "bbox": [ -0.5412387, 51.2833584, -0.5412387, 51.2833584 ], "geometry": { "type": "Point", "coordinates": [ -0.5412387, 51.2833584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01547579" }, "bbox": [ -0.5429688, 51.2843907, -0.5429688, 51.2843907 ], "geometry": { "type": "Point", "coordinates": [ -0.5429688, 51.2843907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01547276" }, "bbox": [ -0.5426761, 51.2828397, -0.5426761, 51.2828397 ], "geometry": { "type": "Point", "coordinates": [ -0.5426761, 51.2828397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01557610" }, "bbox": [ -0.5420557, 51.2860811, -0.5420557, 51.2860811 ], "geometry": { "type": "Point", "coordinates": [ -0.5420557, 51.2860811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96364677" }, "bbox": [ -0.6232316, 51.1222242, -0.6232316, 51.1222242 ], "geometry": { "type": "Point", "coordinates": [ -0.6232316, 51.1222242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96364075" }, "bbox": [ -0.6236956, 51.1220689, -0.6236956, 51.1220689 ], "geometry": { "type": "Point", "coordinates": [ -0.6236956, 51.1220689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96363575" }, "bbox": [ -0.62445, 51.1220772, -0.62445, 51.1220772 ], "geometry": { "type": "Point", "coordinates": [ -0.62445, 51.1220772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96365080" }, "bbox": [ -0.622575, 51.1223225, -0.622575, 51.1223225 ], "geometry": { "type": "Point", "coordinates": [ -0.622575, 51.1223225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92369882" }, "bbox": [ -0.6727882, 51.1231375, -0.6727882, 51.1231375 ], "geometry": { "type": "Point", "coordinates": [ -0.6727882, 51.1231375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92369586" }, "bbox": [ -0.6730896, 51.1235385, -0.6730896, 51.1235385 ], "geometry": { "type": "Point", "coordinates": [ -0.6730896, 51.1235385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86424983" }, "bbox": [ -0.7639624, 51.1782708, -0.7639624, 51.1782708 ], "geometry": { "type": "Point", "coordinates": [ -0.7639624, 51.1782708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425297" }, "bbox": [ -0.7630448, 51.1793548, -0.7630448, 51.1793548 ], "geometry": { "type": "Point", "coordinates": [ -0.7630448, 51.1793548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425197" }, "bbox": [ -0.7651593, 51.1801934, -0.7651593, 51.1801934 ], "geometry": { "type": "Point", "coordinates": [ -0.7651593, 51.1801934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86434415" }, "bbox": [ -0.7646311, 51.1810312, -0.7646311, 51.1810312 ], "geometry": { "type": "Point", "coordinates": [ -0.7646311, 51.1810312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86434712" }, "bbox": [ -0.7642486, 51.18071, -0.7642486, 51.18071 ], "geometry": { "type": "Point", "coordinates": [ -0.7642486, 51.18071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09451340" }, "bbox": [ -0.439461, 51.1974167, -0.439461, 51.1974167 ], "geometry": { "type": "Point", "coordinates": [ -0.439461, 51.1974167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09454556" }, "bbox": [ -0.4348886, 51.1988642, -0.4348886, 51.1988642 ], "geometry": { "type": "Point", "coordinates": [ -0.4348886, 51.1988642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09451143" }, "bbox": [ -0.4398281, 51.197724, -0.4398281, 51.197724 ], "geometry": { "type": "Point", "coordinates": [ -0.4398281, 51.197724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09454553" }, "bbox": [ -0.4348874, 51.1985366, -0.4348874, 51.1985366 ], "geometry": { "type": "Point", "coordinates": [ -0.4348874, 51.1985366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09454659" }, "bbox": [ -0.4346039, 51.1990905, -0.4346039, 51.1990905 ], "geometry": { "type": "Point", "coordinates": [ -0.4346039, 51.1990905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17378679" }, "bbox": [ -0.3168382, 51.1273154, -0.3168382, 51.1273154 ], "geometry": { "type": "Point", "coordinates": [ -0.3168382, 51.1273154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17377177" }, "bbox": [ -0.3192777, 51.1271062, -0.3192777, 51.1271062 ], "geometry": { "type": "Point", "coordinates": [ -0.3192777, 51.1271062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11433413" }, "bbox": [ -0.4085341, 51.1765835, -0.4085341, 51.1765835 ], "geometry": { "type": "Point", "coordinates": [ -0.4085341, 51.1765835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11432001" }, "bbox": [ -0.4102203, 51.1755923, -0.4102203, 51.1755923 ], "geometry": { "type": "Point", "coordinates": [ -0.4102203, 51.1755923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11432405" }, "bbox": [ -0.4093059, 51.1759211, -0.4093059, 51.1759211 ], "geometry": { "type": "Point", "coordinates": [ -0.4093059, 51.1759211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11431209" }, "bbox": [ -0.4115618, 51.1762301, -0.4115618, 51.1762301 ], "geometry": { "type": "Point", "coordinates": [ -0.4115618, 51.1762301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08459237" }, "bbox": [ -0.4423905, 51.1971951, -0.4423905, 51.1971951 ], "geometry": { "type": "Point", "coordinates": [ -0.4423905, 51.1971951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09451034" }, "bbox": [ -0.4399849, 51.1969328, -0.4399849, 51.1969328 ], "geometry": { "type": "Point", "coordinates": [ -0.4399849, 51.1969328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09450737" }, "bbox": [ -0.4403918, 51.1971859, -0.4403918, 51.1971859 ], "geometry": { "type": "Point", "coordinates": [ -0.4403918, 51.1971859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09450739" }, "bbox": [ -0.4403855, 51.1973254, -0.4403855, 51.1973254 ], "geometry": { "type": "Point", "coordinates": [ -0.4403855, 51.1973254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18370782" }, "bbox": [ -0.3140725, 51.1275064, -0.3140725, 51.1275064 ], "geometry": { "type": "Point", "coordinates": [ -0.3140725, 51.1275064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17378254" }, "bbox": [ -0.3170657, 51.125027, -0.3170657, 51.125027 ], "geometry": { "type": "Point", "coordinates": [ -0.3170657, 51.125027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14379913" }, "bbox": [ -0.3584417, 51.1218327, -0.3584417, 51.1218327 ], "geometry": { "type": "Point", "coordinates": [ -0.3584417, 51.1218327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14379832" }, "bbox": [ -0.358273, 51.1235798, -0.358273, 51.1235798 ], "geometry": { "type": "Point", "coordinates": [ -0.358273, 51.1235798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14375913" }, "bbox": [ -0.3640913, 51.1219495, -0.3640913, 51.1219495 ], "geometry": { "type": "Point", "coordinates": [ -0.3640913, 51.1219495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15370920" }, "bbox": [ -0.3566441, 51.1225979, -0.3566441, 51.1225979 ], "geometry": { "type": "Point", "coordinates": [ -0.3566441, 51.1225979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15370620" }, "bbox": [ -0.3571334, 51.1226084, -0.3571334, 51.1226084 ], "geometry": { "type": "Point", "coordinates": [ -0.3571334, 51.1226084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470618" }, "bbox": [ -0.5258559, 51.2145611, -0.5258559, 51.2145611 ], "geometry": { "type": "Point", "coordinates": [ -0.5258559, 51.2145611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02467083" }, "bbox": [ -0.5317605, 51.2112847, -0.5317605, 51.2112847 ], "geometry": { "type": "Point", "coordinates": [ -0.5317605, 51.2112847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02467584" }, "bbox": [ -0.5301728, 51.2116557, -0.5301728, 51.2116557 ], "geometry": { "type": "Point", "coordinates": [ -0.5301728, 51.2116557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02467096" }, "bbox": [ -0.5309795, 51.2126513, -0.5309795, 51.2126513 ], "geometry": { "type": "Point", "coordinates": [ -0.5309795, 51.2126513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02465893" }, "bbox": [ -0.5326445, 51.2124177, -0.5326445, 51.2124177 ], "geometry": { "type": "Point", "coordinates": [ -0.5326445, 51.2124177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03473619" }, "bbox": [ -0.5214196, 51.2145834, -0.5214196, 51.2145834 ], "geometry": { "type": "Point", "coordinates": [ -0.5214196, 51.2145834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481949" }, "bbox": [ -0.5523683, 51.2266867, -0.5523683, 51.2266867 ], "geometry": { "type": "Point", "coordinates": [ -0.5523683, 51.2266867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41479971" }, "bbox": [ 0.0313663, 51.2109402, 0.0313663, 51.2109402 ], "geometry": { "type": "Point", "coordinates": [ 0.0313663, 51.2109402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40564841" }, "bbox": [ 0.0137128, 51.2876878, 0.0137128, 51.2876878 ], "geometry": { "type": "Point", "coordinates": [ 0.0137128, 51.2876878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28459406" }, "bbox": [ -0.155979, 51.1903818, -0.155979, 51.1903818 ], "geometry": { "type": "Point", "coordinates": [ -0.155979, 51.1903818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30556084" }, "bbox": [ -0.1284812, 51.2866737, -0.1284812, 51.2866737 ], "geometry": { "type": "Point", "coordinates": [ -0.1284812, 51.2866737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30556568" }, "bbox": [ -0.1278206, 51.2853484, -0.1278206, 51.2853484 ], "geometry": { "type": "Point", "coordinates": [ -0.1278206, 51.2853484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03670453" }, "bbox": [ -0.5202194, 51.3975146, -0.5202194, 51.3975146 ], "geometry": { "type": "Point", "coordinates": [ -0.5202194, 51.3975146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13660199" }, "bbox": [ -0.3772876, 51.3908258, -0.3772876, 51.3908258 ], "geometry": { "type": "Point", "coordinates": [ -0.3772876, 51.3908258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12676533" }, "bbox": [ -0.3824008, 51.3937876, -0.3824008, 51.3937876 ], "geometry": { "type": "Point", "coordinates": [ -0.3824008, 51.3937876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12677937" }, "bbox": [ -0.3800153, 51.3942637, -0.3800153, 51.3942637 ], "geometry": { "type": "Point", "coordinates": [ -0.3800153, 51.3942637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12679501" }, "bbox": [ -0.378304, 51.3908316, -0.378304, 51.3908316 ], "geometry": { "type": "Point", "coordinates": [ -0.378304, 51.3908316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12667496" }, "bbox": [ -0.3812818, 51.3905351, -0.3812818, 51.3905351 ], "geometry": { "type": "Point", "coordinates": [ -0.3812818, 51.3905351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91503947" }, "bbox": [ -0.6919957, 51.2459925, -0.6919957, 51.2459925 ], "geometry": { "type": "Point", "coordinates": [ -0.6919957, 51.2459925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91503154" }, "bbox": [ -0.6929736, 51.2468624, -0.6929736, 51.2468624 ], "geometry": { "type": "Point", "coordinates": [ -0.6929736, 51.2468624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91504438" }, "bbox": [ -0.6916687, 51.244885, -0.6916687, 51.244885 ], "geometry": { "type": "Point", "coordinates": [ -0.6916687, 51.244885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91504130" }, "bbox": [ -0.6917621, 51.2445018, -0.6917621, 51.2445018 ], "geometry": { "type": "Point", "coordinates": [ -0.6917621, 51.2445018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91501537" }, "bbox": [ -0.6954835, 51.2452692, -0.6954835, 51.2452692 ], "geometry": { "type": "Point", "coordinates": [ -0.6954835, 51.2452692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91501542" }, "bbox": [ -0.6953828, 51.2457583, -0.6953828, 51.2457583 ], "geometry": { "type": "Point", "coordinates": [ -0.6953828, 51.2457583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500341" }, "bbox": [ -0.6972047, 51.2457438, -0.6972047, 51.2457438 ], "geometry": { "type": "Point", "coordinates": [ -0.6972047, 51.2457438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91506034" }, "bbox": [ -0.6890229, 51.244948, -0.6890229, 51.244948 ], "geometry": { "type": "Point", "coordinates": [ -0.6890229, 51.244948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91502330" }, "bbox": [ -0.6942372, 51.244709, -0.6942372, 51.244709 ], "geometry": { "type": "Point", "coordinates": [ -0.6942372, 51.244709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91501029" }, "bbox": [ -0.6962757, 51.2446116, -0.6962757, 51.2446116 ], "geometry": { "type": "Point", "coordinates": [ -0.6962757, 51.2446116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509960" }, "bbox": [ -0.697759, 51.2473153, -0.697759, 51.2473153 ], "geometry": { "type": "Point", "coordinates": [ -0.697759, 51.2473153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16374031" }, "bbox": [ -0.3383168, 51.1232792, -0.3383168, 51.1232792 ], "geometry": { "type": "Point", "coordinates": [ -0.3383168, 51.1232792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16374131" }, "bbox": [ -0.3378999, 51.1233005, -0.3378999, 51.1233005 ], "geometry": { "type": "Point", "coordinates": [ -0.3378999, 51.1233005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16373128" }, "bbox": [ -0.3392474, 51.1229852, -0.3392474, 51.1229852 ], "geometry": { "type": "Point", "coordinates": [ -0.3392474, 51.1229852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01325088" }, "bbox": [ -0.5521983, 51.0860047, -0.5521983, 51.0860047 ], "geometry": { "type": "Point", "coordinates": [ -0.5521983, 51.0860047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02320183" }, "bbox": [ -0.5443524, 51.085832, -0.5443524, 51.085832 ], "geometry": { "type": "Point", "coordinates": [ -0.5443524, 51.085832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333834" }, "bbox": [ -0.5393941, 51.0903605, -0.5393941, 51.0903605 ], "geometry": { "type": "Point", "coordinates": [ -0.5393941, 51.0903605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01325762" }, "bbox": [ -0.5510369, 51.0839991, -0.5510369, 51.0839991 ], "geometry": { "type": "Point", "coordinates": [ -0.5510369, 51.0839991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01328272" }, "bbox": [ -0.5480767, 51.0849404, -0.5480767, 51.0849404 ], "geometry": { "type": "Point", "coordinates": [ -0.5480767, 51.0849404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02326778" }, "bbox": [ -0.535424, 51.0852074, -0.535424, 51.0852074 ], "geometry": { "type": "Point", "coordinates": [ -0.535424, 51.0852074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333118" }, "bbox": [ -0.5406008, 51.0889889, -0.5406008, 51.0889889 ], "geometry": { "type": "Point", "coordinates": [ -0.5406008, 51.0889889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01328492" }, "bbox": [ -0.5470566, 51.086562, -0.5470566, 51.086562 ], "geometry": { "type": "Point", "coordinates": [ -0.5470566, 51.086562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01339608" }, "bbox": [ -0.5454271, 51.0878114, -0.5454271, 51.0878114 ], "geometry": { "type": "Point", "coordinates": [ -0.5454271, 51.0878114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01336508" }, "bbox": [ -0.5499059, 51.0879963, -0.5499059, 51.0879963 ], "geometry": { "type": "Point", "coordinates": [ -0.5499059, 51.0879963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86470102" }, "bbox": [ -0.7697668, 51.2158849, -0.7697668, 51.2158849 ], "geometry": { "type": "Point", "coordinates": [ -0.7697668, 51.2158849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85466895" }, "bbox": [ -0.7744973, 51.215428, -0.7744973, 51.215428 ], "geometry": { "type": "Point", "coordinates": [ -0.7744973, 51.215428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85464997" }, "bbox": [ -0.777408, 51.2154827, -0.777408, 51.2154827 ], "geometry": { "type": "Point", "coordinates": [ -0.777408, 51.2154827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85478107" }, "bbox": [ -0.7729516, 51.2163666, -0.7729516, 51.2163666 ], "geometry": { "type": "Point", "coordinates": [ -0.7729516, 51.2163666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85474515" }, "bbox": [ -0.777852, 51.2171649, -0.777852, 51.2171649 ], "geometry": { "type": "Point", "coordinates": [ -0.777852, 51.2171649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85474917" }, "bbox": [ -0.7765684, 51.2177311, -0.7765684, 51.2177311 ], "geometry": { "type": "Point", "coordinates": [ -0.7765684, 51.2177311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85474012" }, "bbox": [ -0.778684, 51.2168754, -0.778684, 51.2168754 ], "geometry": { "type": "Point", "coordinates": [ -0.778684, 51.2168754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85479221" }, "bbox": [ -0.7711992, 51.2177146, -0.7711992, 51.2177146 ], "geometry": { "type": "Point", "coordinates": [ -0.7711992, 51.2177146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85479419" }, "bbox": [ -0.7707471, 51.2174349, -0.7707471, 51.2174349 ], "geometry": { "type": "Point", "coordinates": [ -0.7707471, 51.2174349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85478523" }, "bbox": [ -0.7719856, 51.217961, -0.7719856, 51.217961 ], "geometry": { "type": "Point", "coordinates": [ -0.7719856, 51.217961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85479125" }, "bbox": [ -0.7714246, 51.2178205, -0.7714246, 51.2178205 ], "geometry": { "type": "Point", "coordinates": [ -0.7714246, 51.2178205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497026" }, "bbox": [ -0.2297679, 51.2290742, -0.2297679, 51.2290742 ], "geometry": { "type": "Point", "coordinates": [ -0.2297679, 51.2290742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496940" }, "bbox": [ -0.2298686, 51.2302953, -0.2298686, 51.2302953 ], "geometry": { "type": "Point", "coordinates": [ -0.2298686, 51.2302953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23494845" }, "bbox": [ -0.2313478, 51.2310127, -0.2313478, 51.2310127 ], "geometry": { "type": "Point", "coordinates": [ -0.2313478, 51.2310127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495747" }, "bbox": [ -0.2309431, 51.231148, -0.2309431, 51.231148 ], "geometry": { "type": "Point", "coordinates": [ -0.2309431, 51.231148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495542" }, "bbox": [ -0.2317157, 51.2307215, -0.2317157, 51.2307215 ], "geometry": { "type": "Point", "coordinates": [ -0.2317157, 51.2307215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496342" }, "bbox": [ -0.2304956, 51.2307724, -0.2304956, 51.2307724 ], "geometry": { "type": "Point", "coordinates": [ -0.2304956, 51.2307724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498151" }, "bbox": [ -0.2278866, 51.2313748, -0.2278866, 51.2313748 ], "geometry": { "type": "Point", "coordinates": [ -0.2278866, 51.2313748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497950" }, "bbox": [ -0.2289069, 51.2313399, -0.2289069, 51.2313399 ], "geometry": { "type": "Point", "coordinates": [ -0.2289069, 51.2313399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497821" }, "bbox": [ -0.2284455, 51.2286692, -0.2284455, 51.2286692 ], "geometry": { "type": "Point", "coordinates": [ -0.2284455, 51.2286692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498221" }, "bbox": [ -0.2281223, 51.2285294, -0.2281223, 51.2285294 ], "geometry": { "type": "Point", "coordinates": [ -0.2281223, 51.2285294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497715" }, "bbox": [ -0.2285867, 51.2281351, -0.2285867, 51.2281351 ], "geometry": { "type": "Point", "coordinates": [ -0.2285867, 51.2281351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23492438" }, "bbox": [ -0.2363062, 51.2303432, -0.2363062, 51.2303432 ], "geometry": { "type": "Point", "coordinates": [ -0.2363062, 51.2303432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23493539" }, "bbox": [ -0.2344359, 51.2303955, -0.2344359, 51.2303955 ], "geometry": { "type": "Point", "coordinates": [ -0.2344359, 51.2303955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497440" }, "bbox": [ -0.2293606, 51.2304136, -0.2293606, 51.2304136 ], "geometry": { "type": "Point", "coordinates": [ -0.2293606, 51.2304136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497035" }, "bbox": [ -0.2296066, 51.2300227, -0.2296066, 51.2300227 ], "geometry": { "type": "Point", "coordinates": [ -0.2296066, 51.2300227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496029" }, "bbox": [ -0.2310424, 51.2294983, -0.2310424, 51.2294983 ], "geometry": { "type": "Point", "coordinates": [ -0.2310424, 51.2294983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498439" }, "bbox": [ -0.2277743, 51.2302521, -0.2277743, 51.2302521 ], "geometry": { "type": "Point", "coordinates": [ -0.2277743, 51.2302521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496540" }, "bbox": [ -0.2301804, 51.2305188, -0.2301804, 51.2305188 ], "geometry": { "type": "Point", "coordinates": [ -0.2301804, 51.2305188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497313" }, "bbox": [ -0.2291367, 51.2279232, -0.2291367, 51.2279232 ], "geometry": { "type": "Point", "coordinates": [ -0.2291367, 51.2279232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496915" }, "bbox": [ -0.2300029, 51.2283402, -0.2300029, 51.2283402 ], "geometry": { "type": "Point", "coordinates": [ -0.2300029, 51.2283402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497017" }, "bbox": [ -0.2295652, 51.2283033, -0.2295652, 51.2283033 ], "geometry": { "type": "Point", "coordinates": [ -0.2295652, 51.2283033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498624" }, "bbox": [ -0.227513, 51.2288466, -0.227513, 51.2288466 ], "geometry": { "type": "Point", "coordinates": [ -0.227513, 51.2288466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498125" }, "bbox": [ -0.2278969, 51.2291087, -0.2278969, 51.2291087 ], "geometry": { "type": "Point", "coordinates": [ -0.2278969, 51.2291087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496019" }, "bbox": [ -0.2309176, 51.2286534, -0.2309176, 51.2286534 ], "geometry": { "type": "Point", "coordinates": [ -0.2309176, 51.2286534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495314" }, "bbox": [ -0.2321507, 51.2281779, -0.2321507, 51.2281779 ], "geometry": { "type": "Point", "coordinates": [ -0.2321507, 51.2281779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495023" }, "bbox": [ -0.2324839, 51.2289212, -0.2324839, 51.2289212 ], "geometry": { "type": "Point", "coordinates": [ -0.2324839, 51.2289212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495625" }, "bbox": [ -0.2320267, 51.2291523, -0.2320267, 51.2291523 ], "geometry": { "type": "Point", "coordinates": [ -0.2320267, 51.2291523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495727" }, "bbox": [ -0.2315126, 51.2293627, -0.2315126, 51.2293627 ], "geometry": { "type": "Point", "coordinates": [ -0.2315126, 51.2293627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98475580" }, "bbox": [ -0.5905318, 51.2210688, -0.5905318, 51.2210688 ], "geometry": { "type": "Point", "coordinates": [ -0.5905318, 51.2210688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98474751" }, "bbox": [ -0.5914315, 51.2183939, -0.5914315, 51.2183939 ], "geometry": { "type": "Point", "coordinates": [ -0.5914315, 51.2183939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98474661" }, "bbox": [ -0.591434, 51.2192397, -0.591434, 51.2192397 ], "geometry": { "type": "Point", "coordinates": [ -0.591434, 51.2192397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91494869" }, "bbox": [ -0.6909781, 51.239016, -0.6909781, 51.239016 ], "geometry": { "type": "Point", "coordinates": [ -0.6909781, 51.239016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91495475" }, "bbox": [ -0.6900184, 51.239668, -0.6900184, 51.239668 ], "geometry": { "type": "Point", "coordinates": [ -0.6900184, 51.239668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91504208" }, "bbox": [ -0.6917997, 51.2427382, -0.6917997, 51.2427382 ], "geometry": { "type": "Point", "coordinates": [ -0.6917997, 51.2427382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89443309" }, "bbox": [ -0.7230747, 51.1893031, -0.7230747, 51.1893031 ], "geometry": { "type": "Point", "coordinates": [ -0.7230747, 51.1893031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89442710" }, "bbox": [ -0.7238364, 51.1893804, -0.7238364, 51.1893804 ], "geometry": { "type": "Point", "coordinates": [ -0.7238364, 51.1893804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20418464" }, "bbox": [ -0.2731942, 51.1613367, -0.2731942, 51.1613367 ], "geometry": { "type": "Point", "coordinates": [ -0.2731942, 51.1613367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22502020" }, "bbox": [ -0.2507347, 51.2379292, -0.2507347, 51.2379292 ], "geometry": { "type": "Point", "coordinates": [ -0.2507347, 51.2379292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20437578" }, "bbox": [ -0.2738314, 51.1804857, -0.2738314, 51.1804857 ], "geometry": { "type": "Point", "coordinates": [ -0.2738314, 51.1804857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21509534" }, "bbox": [ -0.2541119, 51.2392181, -0.2541119, 51.2392181 ], "geometry": { "type": "Point", "coordinates": [ -0.2541119, 51.2392181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21509839" }, "bbox": [ -0.253953, 51.2396466, -0.253953, 51.2396466 ], "geometry": { "type": "Point", "coordinates": [ -0.253953, 51.2396466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15450766" }, "bbox": [ -0.354628, 51.1985971, -0.354628, 51.1985971 ], "geometry": { "type": "Point", "coordinates": [ -0.354628, 51.1985971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15452662" }, "bbox": [ -0.3517572, 51.1981133, -0.3517572, 51.1981133 ], "geometry": { "type": "Point", "coordinates": [ -0.3517572, 51.1981133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14459458" }, "bbox": [ -0.3562245, 51.1979077, -0.3562245, 51.1979077 ], "geometry": { "type": "Point", "coordinates": [ -0.3562245, 51.1979077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15452060" }, "bbox": [ -0.3525335, 51.1980494, -0.3525335, 51.1980494 ], "geometry": { "type": "Point", "coordinates": [ -0.3525335, 51.1980494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422637" }, "bbox": [ -0.8245763, 51.1746898, -0.8245763, 51.1746898 ], "geometry": { "type": "Point", "coordinates": [ -0.8245763, 51.1746898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82450514" }, "bbox": [ -0.8269763, 51.1996858, -0.8269763, 51.1996858 ], "geometry": { "type": "Point", "coordinates": [ -0.8269763, 51.1996858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82452224" }, "bbox": [ -0.8241688, 51.2006386, -0.8241688, 51.2006386 ], "geometry": { "type": "Point", "coordinates": [ -0.8241688, 51.2006386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96329878" }, "bbox": [ -0.6166416, 51.0862017, -0.6166416, 51.0862017 ], "geometry": { "type": "Point", "coordinates": [ -0.6166416, 51.0862017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96329680" }, "bbox": [ -0.6173359, 51.0864476, -0.6173359, 51.0864476 ], "geometry": { "type": "Point", "coordinates": [ -0.6173359, 51.0864476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06682215" }, "bbox": [ -0.4743398, 51.4028142, -0.4743398, 51.4028142 ], "geometry": { "type": "Point", "coordinates": [ -0.4743398, 51.4028142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06670896" }, "bbox": [ -0.476572, 51.4003401, -0.476572, 51.4003401 ], "geometry": { "type": "Point", "coordinates": [ -0.476572, 51.4003401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02376622" }, "bbox": [ -0.5345072, 51.1250574, -0.5345072, 51.1250574 ], "geometry": { "type": "Point", "coordinates": [ -0.5345072, 51.1250574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02377027" }, "bbox": [ -0.5337261, 51.1255361, -0.5337261, 51.1255361 ], "geometry": { "type": "Point", "coordinates": [ -0.5337261, 51.1255361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24550081" }, "bbox": [ -0.2230866, 51.287891, -0.2230866, 51.287891 ], "geometry": { "type": "Point", "coordinates": [ -0.2230866, 51.287891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22410195" }, "bbox": [ -0.2565381, 51.1638347, -0.2565381, 51.1638347 ], "geometry": { "type": "Point", "coordinates": [ -0.2565381, 51.1638347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21429507" }, "bbox": [ -0.2572477, 51.1650005, -0.2572477, 51.1650005 ], "geometry": { "type": "Point", "coordinates": [ -0.2572477, 51.1650005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93399499" }, "bbox": [ -0.6583185, 51.1515186, -0.6583185, 51.1515186 ], "geometry": { "type": "Point", "coordinates": [ -0.6583185, 51.1515186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06493116" }, "bbox": [ -0.478712, 51.2317335, -0.478712, 51.2317335 ], "geometry": { "type": "Point", "coordinates": [ -0.478712, 51.2317335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93493094" }, "bbox": [ -0.66477, 51.2411013, -0.66477, 51.2411013 ], "geometry": { "type": "Point", "coordinates": [ -0.66477, 51.2411013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92498985" }, "bbox": [ -0.6704285, 51.2401575, -0.6704285, 51.2401575 ], "geometry": { "type": "Point", "coordinates": [ -0.6704285, 51.2401575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93490789" }, "bbox": [ -0.6681793, 51.2406902, -0.6681793, 51.2406902 ], "geometry": { "type": "Point", "coordinates": [ -0.6681793, 51.2406902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27549721" }, "bbox": [ -0.1667681, 51.2727308, -0.1667681, 51.2727308 ], "geometry": { "type": "Point", "coordinates": [ -0.1667681, 51.2727308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28544390" }, "bbox": [ -0.1600468, 51.2787144, -0.1600468, 51.2787144 ], "geometry": { "type": "Point", "coordinates": [ -0.1600468, 51.2787144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28543825" }, "bbox": [ -0.161074, 51.2729509, -0.161074, 51.2729509 ], "geometry": { "type": "Point", "coordinates": [ -0.161074, 51.2729509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06653638" }, "bbox": [ -0.4730231, 51.3774214, -0.4730231, 51.3774214 ], "geometry": { "type": "Point", "coordinates": [ -0.4730231, 51.3774214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06653527" }, "bbox": [ -0.4732631, 51.3765386, -0.4732631, 51.3765386 ], "geometry": { "type": "Point", "coordinates": [ -0.4732631, 51.3765386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06655126" }, "bbox": [ -0.4710596, 51.3755418, -0.4710596, 51.3755418 ], "geometry": { "type": "Point", "coordinates": [ -0.4710596, 51.3755418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06654552" }, "bbox": [ -0.4719503, 51.3790558, -0.4719503, 51.3790558 ], "geometry": { "type": "Point", "coordinates": [ -0.4719503, 51.3790558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21402424" }, "bbox": [ -0.2679806, 51.148465, -0.2679806, 51.148465 ], "geometry": { "type": "Point", "coordinates": [ -0.2679806, 51.148465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21402307" }, "bbox": [ -0.2681603, 51.1470872, -0.2681603, 51.1470872 ], "geometry": { "type": "Point", "coordinates": [ -0.2681603, 51.1470872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421692" }, "bbox": [ -0.3681259, 51.1742336, -0.3681259, 51.1742336 ], "geometry": { "type": "Point", "coordinates": [ -0.3681259, 51.1742336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421691" }, "bbox": [ -0.3684179, 51.1740521, -0.3684179, 51.1740521 ], "geometry": { "type": "Point", "coordinates": [ -0.3684179, 51.1740521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421393" }, "bbox": [ -0.3689939, 51.1743685, -0.3689939, 51.1743685 ], "geometry": { "type": "Point", "coordinates": [ -0.3689939, 51.1743685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14422362" }, "bbox": [ -0.3673591, 51.1713689, -0.3673591, 51.1713689 ], "geometry": { "type": "Point", "coordinates": [ -0.3673591, 51.1713689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14422170" }, "bbox": [ -0.3676571, 51.1721415, -0.3676571, 51.1721415 ], "geometry": { "type": "Point", "coordinates": [ -0.3676571, 51.1721415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30397370" }, "bbox": [ -0.1326468, 51.1416448, -0.1326468, 51.1416448 ], "geometry": { "type": "Point", "coordinates": [ -0.1326468, 51.1416448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30397173" }, "bbox": [ -0.1327267, 51.1420048, -0.1327267, 51.1420048 ], "geometry": { "type": "Point", "coordinates": [ -0.1327267, 51.1420048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30395879" }, "bbox": [ -0.1346481, 51.1425736, -0.1346481, 51.1425736 ], "geometry": { "type": "Point", "coordinates": [ -0.1346481, 51.1425736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16376540" }, "bbox": [ -0.3343762, 51.1243104, -0.3343762, 51.1243104 ], "geometry": { "type": "Point", "coordinates": [ -0.3343762, 51.1243104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16375133" }, "bbox": [ -0.3363113, 51.123261, -0.3363113, 51.123261 ], "geometry": { "type": "Point", "coordinates": [ -0.3363113, 51.123261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14489104" }, "bbox": [ -0.3559805, 51.2200468, -0.3559805, 51.2200468 ], "geometry": { "type": "Point", "coordinates": [ -0.3559805, 51.2200468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43413181" }, "bbox": [ 0.0479563, 51.1576759, 0.0479563, 51.1576759 ], "geometry": { "type": "Point", "coordinates": [ 0.0479563, 51.1576759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14479189" }, "bbox": [ -0.3557061, 51.2190807, -0.3557061, 51.2190807 ], "geometry": { "type": "Point", "coordinates": [ -0.3557061, 51.2190807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24509804" }, "bbox": [ -0.2110424, 51.2358835, -0.2110424, 51.2358835 ], "geometry": { "type": "Point", "coordinates": [ -0.2110424, 51.2358835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25530743" }, "bbox": [ -0.2086471, 51.2663322, -0.2086471, 51.2663322 ], "geometry": { "type": "Point", "coordinates": [ -0.2086471, 51.2663322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26485617" }, "bbox": [ -0.189042, 51.2187523, -0.189042, 51.2187523 ], "geometry": { "type": "Point", "coordinates": [ -0.189042, 51.2187523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26484201" }, "bbox": [ -0.1914692, 51.2166373, -0.1914692, 51.2166373 ], "geometry": { "type": "Point", "coordinates": [ -0.1914692, 51.2166373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26484310" }, "bbox": [ -0.1909379, 51.2182241, -0.1909379, 51.2182241 ], "geometry": { "type": "Point", "coordinates": [ -0.1909379, 51.2182241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26486001" }, "bbox": [ -0.1885649, 51.2172026, -0.1885649, 51.2172026 ], "geometry": { "type": "Point", "coordinates": [ -0.1885649, 51.2172026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26480714" }, "bbox": [ -0.1960159, 51.2184047, -0.1960159, 51.2184047 ], "geometry": { "type": "Point", "coordinates": [ -0.1960159, 51.2184047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26489512" }, "bbox": [ -0.1841582, 51.2181333, -0.1841582, 51.2181333 ], "geometry": { "type": "Point", "coordinates": [ -0.1841582, 51.2181333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27483203" }, "bbox": [ -0.1783296, 51.2172423, -0.1783296, 51.2172423 ], "geometry": { "type": "Point", "coordinates": [ -0.1783296, 51.2172423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27472996" }, "bbox": [ -0.1787791, 51.2166768, -0.1787791, 51.2166768 ], "geometry": { "type": "Point", "coordinates": [ -0.1787791, 51.2166768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27474598" }, "bbox": [ -0.1764802, 51.2167553, -0.1764802, 51.2167553 ], "geometry": { "type": "Point", "coordinates": [ -0.1764802, 51.2167553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23506056" }, "bbox": [ -0.230804, 51.2408143, -0.230804, 51.2408143 ], "geometry": { "type": "Point", "coordinates": [ -0.230804, 51.2408143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26477597" }, "bbox": [ -0.1878006, 51.2162805, -0.1878006, 51.2162805 ], "geometry": { "type": "Point", "coordinates": [ -0.1878006, 51.2162805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00454994" }, "bbox": [ -0.5629058, 51.2038718, -0.5629058, 51.2038718 ], "geometry": { "type": "Point", "coordinates": [ -0.5629058, 51.2038718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00455789" }, "bbox": [ -0.5617308, 51.2034909, -0.5617308, 51.2034909 ], "geometry": { "type": "Point", "coordinates": [ -0.5617308, 51.2034909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465403" }, "bbox": [ -0.5622316, 51.2046161, -0.5622316, 51.2046161 ], "geometry": { "type": "Point", "coordinates": [ -0.5622316, 51.2046161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465407" }, "bbox": [ -0.5621196, 51.2049703, -0.5621196, 51.2049703 ], "geometry": { "type": "Point", "coordinates": [ -0.5621196, 51.2049703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465603" }, "bbox": [ -0.5619893, 51.204564, -0.5619893, 51.204564 ], "geometry": { "type": "Point", "coordinates": [ -0.5619893, 51.204564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00464004" }, "bbox": [ -0.5641412, 51.2047344, -0.5641412, 51.2047344 ], "geometry": { "type": "Point", "coordinates": [ -0.5641412, 51.2047344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00464201" }, "bbox": [ -0.5639288, 51.2045178, -0.5639288, 51.2045178 ], "geometry": { "type": "Point", "coordinates": [ -0.5639288, 51.2045178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87434223" }, "bbox": [ -0.7499283, 51.1816273, -0.7499283, 51.1816273 ], "geometry": { "type": "Point", "coordinates": [ -0.7499283, 51.1816273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87434302" }, "bbox": [ -0.7504736, 51.179782, -0.7504736, 51.179782 ], "geometry": { "type": "Point", "coordinates": [ -0.7504736, 51.179782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26436378" }, "bbox": [ -0.1897988, 51.1792334, -0.1897988, 51.1792334 ], "geometry": { "type": "Point", "coordinates": [ -0.1897988, 51.1792334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428582" }, "bbox": [ -0.2869331, 51.1721653, -0.2869331, 51.1721653 ], "geometry": { "type": "Point", "coordinates": [ -0.2869331, 51.1721653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428074" }, "bbox": [ -0.2876107, 51.1713096, -0.2876107, 51.1713096 ], "geometry": { "type": "Point", "coordinates": [ -0.2876107, 51.1713096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19427872" }, "bbox": [ -0.2879234, 51.1713645, -0.2879234, 51.1713645 ], "geometry": { "type": "Point", "coordinates": [ -0.2879234, 51.1713645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428694" }, "bbox": [ -0.2866168, 51.1732081, -0.2866168, 51.1732081 ], "geometry": { "type": "Point", "coordinates": [ -0.2866168, 51.1732081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19427977" }, "bbox": [ -0.2879935, 51.1716087, -0.2879935, 51.1716087 ], "geometry": { "type": "Point", "coordinates": [ -0.2879935, 51.1716087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19429380" }, "bbox": [ -0.2857072, 51.1719483, -0.2857072, 51.1719483 ], "geometry": { "type": "Point", "coordinates": [ -0.2857072, 51.1719483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19429278" }, "bbox": [ -0.2861478, 51.1717864, -0.2861478, 51.1717864 ], "geometry": { "type": "Point", "coordinates": [ -0.2861478, 51.1717864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27430106" }, "bbox": [ -0.1844675, 51.1734, -0.1844675, 51.1734 ], "geometry": { "type": "Point", "coordinates": [ -0.1844675, 51.1734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00358318" }, "bbox": [ -0.5611252, 51.1070575, -0.5611252, 51.1070575 ], "geometry": { "type": "Point", "coordinates": [ -0.5611252, 51.1070575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00357017" }, "bbox": [ -0.5623916, 51.1074717, -0.5623916, 51.1074717 ], "geometry": { "type": "Point", "coordinates": [ -0.5623916, 51.1074717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00357813" }, "bbox": [ -0.5619099, 51.1065534, -0.5619099, 51.1065534 ], "geometry": { "type": "Point", "coordinates": [ -0.5619099, 51.1065534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00358311" }, "bbox": [ -0.5610274, 51.1063579, -0.5610274, 51.1063579 ], "geometry": { "type": "Point", "coordinates": [ -0.5610274, 51.1063579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01351905" }, "bbox": [ -0.5560412, 51.1059118, -0.5560412, 51.1059118 ], "geometry": { "type": "Point", "coordinates": [ -0.5560412, 51.1059118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00345985" }, "bbox": [ -0.5651115, 51.1043633, -0.5651115, 51.1043633 ], "geometry": { "type": "Point", "coordinates": [ -0.5651115, 51.1043633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01351316" }, "bbox": [ -0.5568571, 51.1067812, -0.5568571, 51.1067812 ], "geometry": { "type": "Point", "coordinates": [ -0.5568571, 51.1067812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01351327" }, "bbox": [ -0.5569406, 51.1078785, -0.5569406, 51.1078785 ], "geometry": { "type": "Point", "coordinates": [ -0.5569406, 51.1078785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549763" }, "bbox": [ -0.2814199, 51.278202, -0.2814199, 51.278202 ], "geometry": { "type": "Point", "coordinates": [ -0.2814199, 51.278202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548964" }, "bbox": [ -0.2824184, 51.2783345, -0.2824184, 51.2783345 ], "geometry": { "type": "Point", "coordinates": [ -0.2824184, 51.2783345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549363" }, "bbox": [ -0.2820701, 51.2779179, -0.2820701, 51.2779179 ], "geometry": { "type": "Point", "coordinates": [ -0.2820701, 51.2779179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19544758" }, "bbox": [ -0.2880828, 51.2778556, -0.2880828, 51.2778556 ], "geometry": { "type": "Point", "coordinates": [ -0.2880828, 51.2778556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549452" }, "bbox": [ -0.2818098, 51.2772371, -0.2818098, 51.2772371 ], "geometry": { "type": "Point", "coordinates": [ -0.2818098, 51.2772371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19547925" }, "bbox": [ -0.2840227, 51.2749153, -0.2840227, 51.2749153 ], "geometry": { "type": "Point", "coordinates": [ -0.2840227, 51.2749153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548319" }, "bbox": [ -0.2835652, 51.2742426, -0.2835652, 51.2742426 ], "geometry": { "type": "Point", "coordinates": [ -0.2835652, 51.2742426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19543501" }, "bbox": [ -0.2930157, 51.2717536, -0.2930157, 51.2717536 ], "geometry": { "type": "Point", "coordinates": [ -0.2930157, 51.2717536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549867" }, "bbox": [ -0.2812374, 51.2785506, -0.2812374, 51.2785506 ], "geometry": { "type": "Point", "coordinates": [ -0.2812374, 51.2785506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549468" }, "bbox": [ -0.2817209, 51.2786377, -0.2817209, 51.2786377 ], "geometry": { "type": "Point", "coordinates": [ -0.2817209, 51.2786377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18539077" }, "bbox": [ -0.297001, 51.2707679, -0.297001, 51.2707679 ], "geometry": { "type": "Point", "coordinates": [ -0.297001, 51.2707679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19543915" }, "bbox": [ -0.2900617, 51.2741037, -0.2900617, 51.2741037 ], "geometry": { "type": "Point", "coordinates": [ -0.2900617, 51.2741037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19540820" }, "bbox": [ -0.2942599, 51.2745426, -0.2942599, 51.2745426 ], "geometry": { "type": "Point", "coordinates": [ -0.2942599, 51.2745426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19547870" }, "bbox": [ -0.2847204, 51.2783844, -0.2847204, 51.2783844 ], "geometry": { "type": "Point", "coordinates": [ -0.2847204, 51.2783844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19544056" }, "bbox": [ -0.2894086, 51.2776977, -0.2894086, 51.2776977 ], "geometry": { "type": "Point", "coordinates": [ -0.2894086, 51.2776977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18537996" }, "bbox": [ -0.298515, 51.2724471, -0.298515, 51.2724471 ], "geometry": { "type": "Point", "coordinates": [ -0.298515, 51.2724471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19546752" }, "bbox": [ -0.2861612, 51.2771712, -0.2861612, 51.2771712 ], "geometry": { "type": "Point", "coordinates": [ -0.2861612, 51.2771712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19547253" }, "bbox": [ -0.2848485, 51.277492, -0.2848485, 51.277492 ], "geometry": { "type": "Point", "coordinates": [ -0.2848485, 51.277492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19547864" }, "bbox": [ -0.2840534, 51.2784159, -0.2840534, 51.2784159 ], "geometry": { "type": "Point", "coordinates": [ -0.2840534, 51.2784159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548058" }, "bbox": [ -0.2836852, 51.2779282, -0.2836852, 51.2779282 ], "geometry": { "type": "Point", "coordinates": [ -0.2836852, 51.2779282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548571" }, "bbox": [ -0.2830617, 51.2789863, -0.2830617, 51.2789863 ], "geometry": { "type": "Point", "coordinates": [ -0.2830617, 51.2789863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19549478" }, "bbox": [ -0.2817073, 51.2795838, -0.2817073, 51.2795838 ], "geometry": { "type": "Point", "coordinates": [ -0.2817073, 51.2795838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548975" }, "bbox": [ -0.2823048, 51.2794317, -0.2823048, 51.2794317 ], "geometry": { "type": "Point", "coordinates": [ -0.2823048, 51.2794317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19545130" }, "bbox": [ -0.2881396, 51.275311, -0.2881396, 51.275311 ], "geometry": { "type": "Point", "coordinates": [ -0.2881396, 51.275311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19544625" }, "bbox": [ -0.2892028, 51.2746356, -0.2892028, 51.2746356 ], "geometry": { "type": "Point", "coordinates": [ -0.2892028, 51.2746356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548968" }, "bbox": [ -0.2824437, 51.2786824, -0.2824437, 51.2786824 ], "geometry": { "type": "Point", "coordinates": [ -0.2824437, 51.2786824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19548859" }, "bbox": [ -0.2827505, 51.2778641, -0.2827505, 51.2778641 ], "geometry": { "type": "Point", "coordinates": [ -0.2827505, 51.2778641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19544037" }, "bbox": [ -0.2896153, 51.2761164, -0.2896153, 51.2761164 ], "geometry": { "type": "Point", "coordinates": [ -0.2896153, 51.2761164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19543636" }, "bbox": [ -0.2905151, 51.2756977, -0.2905151, 51.2756977 ], "geometry": { "type": "Point", "coordinates": [ -0.2905151, 51.2756977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19545605" }, "bbox": [ -0.2872814, 51.273201, -0.2872814, 51.273201 ], "geometry": { "type": "Point", "coordinates": [ -0.2872814, 51.273201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19545601" }, "bbox": [ -0.2873541, 51.2727356, -0.2873541, 51.2727356 ], "geometry": { "type": "Point", "coordinates": [ -0.2873541, 51.2727356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19545306" }, "bbox": [ -0.2876744, 51.2730691, -0.2876744, 51.2730691 ], "geometry": { "type": "Point", "coordinates": [ -0.2876744, 51.2730691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03392601" }, "bbox": [ -0.5253326, 51.1411813, -0.5253326, 51.1411813 ], "geometry": { "type": "Point", "coordinates": [ -0.5253326, 51.1411813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391735" }, "bbox": [ -0.5265288, 51.1440732, -0.5265288, 51.1440732 ], "geometry": { "type": "Point", "coordinates": [ -0.5265288, 51.1440732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03404601" }, "bbox": [ -0.5218076, 51.1492565, -0.5218076, 51.1492565 ], "geometry": { "type": "Point", "coordinates": [ -0.5218076, 51.1492565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03398764" }, "bbox": [ -0.5157222, 51.1464331, -0.5157222, 51.1464331 ], "geometry": { "type": "Point", "coordinates": [ -0.5157222, 51.1464331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17408991" }, "bbox": [ -0.3153457, 51.1554134, -0.3153457, 51.1554134 ], "geometry": { "type": "Point", "coordinates": [ -0.3153457, 51.1554134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17409793" }, "bbox": [ -0.3144352, 51.1556163, -0.3144352, 51.1556163 ], "geometry": { "type": "Point", "coordinates": [ -0.3144352, 51.1556163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17419302" }, "bbox": [ -0.3149465, 51.1563839, -0.3149465, 51.1563839 ], "geometry": { "type": "Point", "coordinates": [ -0.3149465, 51.1563839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17417001" }, "bbox": [ -0.318404, 51.1561242, -0.318404, 51.1561242 ], "geometry": { "type": "Point", "coordinates": [ -0.318404, 51.1561242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17417609" }, "bbox": [ -0.317538, 51.1569396, -0.317538, 51.1569396 ], "geometry": { "type": "Point", "coordinates": [ -0.317538, 51.1569396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18400989" }, "bbox": [ -0.3129595, 51.1551023, -0.3129595, 51.1551023 ], "geometry": { "type": "Point", "coordinates": [ -0.3129595, 51.1551023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17418420" }, "bbox": [ -0.3161812, 51.1578272, -0.3161812, 51.1578272 ], "geometry": { "type": "Point", "coordinates": [ -0.3161812, 51.1578272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11673274" }, "bbox": [ -0.4011781, 51.3977707, -0.4011781, 51.3977707 ], "geometry": { "type": "Point", "coordinates": [ -0.4011781, 51.3977707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05695341" }, "bbox": [ -0.4838503, 51.413989, -0.4838503, 51.413989 ], "geometry": { "type": "Point", "coordinates": [ -0.4838503, 51.413989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08565285" }, "bbox": [ -0.4448093, 51.3004178, -0.4448093, 51.3004178 ], "geometry": { "type": "Point", "coordinates": [ -0.4448093, 51.3004178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14470167" }, "bbox": [ -0.3689673, 51.2169025, -0.3689673, 51.2169025 ], "geometry": { "type": "Point", "coordinates": [ -0.3689673, 51.2169025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13479867" }, "bbox": [ -0.3695414, 51.2172798, -0.3695414, 51.2172798 ], "geometry": { "type": "Point", "coordinates": [ -0.3695414, 51.2172798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14470279" }, "bbox": [ -0.3687952, 51.2179494, -0.3687952, 51.2179494 ], "geometry": { "type": "Point", "coordinates": [ -0.3687952, 51.2179494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13479287" }, "bbox": [ -0.3700861, 51.218721, -0.3700861, 51.218721 ], "geometry": { "type": "Point", "coordinates": [ -0.3700861, 51.218721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13489103" }, "bbox": [ -0.3702023, 51.2201593, -0.3702023, 51.2201593 ], "geometry": { "type": "Point", "coordinates": [ -0.3702023, 51.2201593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13488802" }, "bbox": [ -0.370921, 51.2200828, -0.370921, 51.2200828 ], "geometry": { "type": "Point", "coordinates": [ -0.370921, 51.2200828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13488713" }, "bbox": [ -0.3707859, 51.2210894, -0.3707859, 51.2210894 ], "geometry": { "type": "Point", "coordinates": [ -0.3707859, 51.2210894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16518731" }, "bbox": [ -0.3268969, 51.2489943, -0.3268969, 51.2489943 ], "geometry": { "type": "Point", "coordinates": [ -0.3268969, 51.2489943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15503569" }, "bbox": [ -0.3494186, 51.2433674, -0.3494186, 51.2433674 ], "geometry": { "type": "Point", "coordinates": [ -0.3494186, 51.2433674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16519617" }, "bbox": [ -0.3255921, 51.2474711, -0.3255921, 51.2474711 ], "geometry": { "type": "Point", "coordinates": [ -0.3255921, 51.2474711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15506363" }, "bbox": [ -0.3447575, 51.2431933, -0.3447575, 51.2431933 ], "geometry": { "type": "Point", "coordinates": [ -0.3447575, 51.2431933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14508425" }, "bbox": [ -0.3562741, 51.2401868, -0.3562741, 51.2401868 ], "geometry": { "type": "Point", "coordinates": [ -0.3562741, 51.2401868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16519334" }, "bbox": [ -0.3258907, 51.2492989, -0.3258907, 51.2492989 ], "geometry": { "type": "Point", "coordinates": [ -0.3258907, 51.2492989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21468905" }, "bbox": [ -0.2564099, 51.2004523, -0.2564099, 51.2004523 ], "geometry": { "type": "Point", "coordinates": [ -0.2564099, 51.2004523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31451236" }, "bbox": [ -0.1249131, 51.192559, -0.1249131, 51.192559 ], "geometry": { "type": "Point", "coordinates": [ -0.1249131, 51.192559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31451029" }, "bbox": [ -0.1250684, 51.1917849, -0.1250684, 51.1917849 ], "geometry": { "type": "Point", "coordinates": [ -0.1250684, 51.1917849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31453628" }, "bbox": [ -0.1216249, 51.1916613, -0.1216249, 51.1916613 ], "geometry": { "type": "Point", "coordinates": [ -0.1216249, 51.1916613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31452923" }, "bbox": [ -0.122475, 51.1912677, -0.122475, 51.1912677 ], "geometry": { "type": "Point", "coordinates": [ -0.122475, 51.1912677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27542110" }, "bbox": [ -0.17764, 51.2717773, -0.17764, 51.2717773 ], "geometry": { "type": "Point", "coordinates": [ -0.17764, 51.2717773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19497024" }, "bbox": [ -0.2870508, 51.229737, -0.2870508, 51.229737 ], "geometry": { "type": "Point", "coordinates": [ -0.2870508, 51.229737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21500879" }, "bbox": [ -0.2668515, 51.2431801, -0.2668515, 51.2431801 ], "geometry": { "type": "Point", "coordinates": [ -0.2668515, 51.2431801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20481595" }, "bbox": [ -0.2805078, 51.2270788, -0.2805078, 51.2270788 ], "geometry": { "type": "Point", "coordinates": [ -0.2805078, 51.2270788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477634" }, "bbox": [ -0.2721903, 51.2122171, -0.2721903, 51.2122171 ], "geometry": { "type": "Point", "coordinates": [ -0.2721903, 51.2122171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477239" }, "bbox": [ -0.272956, 51.2130936, -0.272956, 51.2130936 ], "geometry": { "type": "Point", "coordinates": [ -0.272956, 51.2130936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19490232" }, "bbox": [ -0.296873, 51.2306677, -0.296873, 51.2306677 ], "geometry": { "type": "Point", "coordinates": [ -0.296873, 51.2306677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19492843" }, "bbox": [ -0.2932029, 51.2316513, -0.2932029, 51.2316513 ], "geometry": { "type": "Point", "coordinates": [ -0.2932029, 51.2316513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19491773" }, "bbox": [ -0.2929524, 51.234139, -0.2929524, 51.234139 ], "geometry": { "type": "Point", "coordinates": [ -0.2929524, 51.234139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19492576" }, "bbox": [ -0.293117, 51.2346953, -0.293117, 51.2346953 ], "geometry": { "type": "Point", "coordinates": [ -0.293117, 51.2346953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19492769" }, "bbox": [ -0.2927143, 51.2340578, -0.2927143, 51.2340578 ], "geometry": { "type": "Point", "coordinates": [ -0.2927143, 51.2340578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19492883" }, "bbox": [ -0.2930092, 51.2351193, -0.2930092, 51.2351193 ], "geometry": { "type": "Point", "coordinates": [ -0.2930092, 51.2351193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19499490" }, "bbox": [ -0.2831477, 51.2355615, -0.2831477, 51.2355615 ], "geometry": { "type": "Point", "coordinates": [ -0.2831477, 51.2355615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19490218" }, "bbox": [ -0.2969426, 51.2293867, -0.2969426, 51.2293867 ], "geometry": { "type": "Point", "coordinates": [ -0.2969426, 51.2293867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19494214" }, "bbox": [ -0.2923221, 51.2289271, -0.2923221, 51.2289271 ], "geometry": { "type": "Point", "coordinates": [ -0.2923221, 51.2289271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19496406" }, "bbox": [ -0.2879717, 51.2282836, -0.2879717, 51.2282836 ], "geometry": { "type": "Point", "coordinates": [ -0.2879717, 51.2282836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19492383" }, "bbox": [ -0.2934228, 51.235316, -0.2934228, 51.235316 ], "geometry": { "type": "Point", "coordinates": [ -0.2934228, 51.235316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40402578" }, "bbox": [ 0.0037717, 51.149127, 0.0037717, 51.149127 ], "geometry": { "type": "Point", "coordinates": [ 0.0037717, 51.149127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469517" }, "bbox": [ -0.8280719, 51.2088734, -0.8280719, 51.2088734 ], "geometry": { "type": "Point", "coordinates": [ -0.8280719, 51.2088734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469012" }, "bbox": [ -0.8288504, 51.2084036, -0.8288504, 51.2084036 ], "geometry": { "type": "Point", "coordinates": [ -0.8288504, 51.2084036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469438" }, "bbox": [ -0.8282926, 51.210822, -0.8282926, 51.210822 ], "geometry": { "type": "Point", "coordinates": [ -0.8282926, 51.210822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495693" }, "bbox": [ -0.1457658, 51.2338226, -0.1457658, 51.2338226 ], "geometry": { "type": "Point", "coordinates": [ -0.1457658, 51.2338226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30507200" }, "bbox": [ -0.1288367, 51.2343355, -0.1288367, 51.2343355 ], "geometry": { "type": "Point", "coordinates": [ -0.1288367, 51.2343355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30509806" }, "bbox": [ -0.1257005, 51.2348198, -0.1257005, 51.2348198 ], "geometry": { "type": "Point", "coordinates": [ -0.1257005, 51.2348198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30507900" }, "bbox": [ -0.1278966, 51.2342963, -0.1278966, 51.2342963 ], "geometry": { "type": "Point", "coordinates": [ -0.1278966, 51.2342963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30496294" }, "bbox": [ -0.1302688, 51.2336492, -0.1302688, 51.2336492 ], "geometry": { "type": "Point", "coordinates": [ -0.1302688, 51.2336492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30496593" }, "bbox": [ -0.1300439, 51.2336812, -0.1300439, 51.2336812 ], "geometry": { "type": "Point", "coordinates": [ -0.1300439, 51.2336812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30499099" }, "bbox": [ -0.1262306, 51.2341152, -0.1262306, 51.2341152 ], "geometry": { "type": "Point", "coordinates": [ -0.1262306, 51.2341152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30497756" }, "bbox": [ -0.128435, 51.2302248, -0.128435, 51.2302248 ], "geometry": { "type": "Point", "coordinates": [ -0.128435, 51.2302248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30497760" }, "bbox": [ -0.1283359, 51.2305999, -0.1283359, 51.2305999 ], "geometry": { "type": "Point", "coordinates": [ -0.1283359, 51.2305999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30426187" }, "bbox": [ -0.133193, 51.1701371, -0.133193, 51.1701371 ], "geometry": { "type": "Point", "coordinates": [ -0.133193, 51.1701371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30425570" }, "bbox": [ -0.1339965, 51.1686697, -0.1339965, 51.1686697 ], "geometry": { "type": "Point", "coordinates": [ -0.1339965, 51.1686697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05466097" }, "bbox": [ -0.4902371, 51.2118641, -0.4902371, 51.2118641 ], "geometry": { "type": "Point", "coordinates": [ -0.4902371, 51.2118641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02526569" }, "bbox": [ -0.5302132, 51.264164, -0.5302132, 51.264164 ], "geometry": { "type": "Point", "coordinates": [ -0.5302132, 51.264164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02526131" }, "bbox": [ -0.5308872, 51.2608556, -0.5308872, 51.2608556 ], "geometry": { "type": "Point", "coordinates": [ -0.5308872, 51.2608556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03528557" }, "bbox": [ -0.5129792, 51.2628396, -0.5129792, 51.2628396 ], "geometry": { "type": "Point", "coordinates": [ -0.5129792, 51.2628396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03541178" }, "bbox": [ -0.5233272, 51.2829346, -0.5233272, 51.2829346 ], "geometry": { "type": "Point", "coordinates": [ -0.5233272, 51.2829346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02522976" }, "bbox": [ -0.534619, 51.2648119, -0.534619, 51.2648119 ], "geometry": { "type": "Point", "coordinates": [ -0.534619, 51.2648119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02523676" }, "bbox": [ -0.5343335, 51.2648296, -0.5343335, 51.2648296 ], "geometry": { "type": "Point", "coordinates": [ -0.5343335, 51.2648296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28467875" }, "bbox": [ -0.1580491, 51.2057824, -0.1580491, 51.2057824 ], "geometry": { "type": "Point", "coordinates": [ -0.1580491, 51.2057824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28468064" }, "bbox": [ -0.1572377, 51.2045434, -0.1572377, 51.2045434 ], "geometry": { "type": "Point", "coordinates": [ -0.1572377, 51.2045434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478308" }, "bbox": [ -0.1566207, 51.2084527, -0.1566207, 51.2084527 ], "geometry": { "type": "Point", "coordinates": [ -0.1566207, 51.2084527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28479753" }, "bbox": [ -0.1553341, 51.212501, -0.1553341, 51.212501 ], "geometry": { "type": "Point", "coordinates": [ -0.1553341, 51.212501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29470637" }, "bbox": [ -0.15374, 51.211124, -0.15374, 51.211124 ], "geometry": { "type": "Point", "coordinates": [ -0.15374, 51.211124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29470101" }, "bbox": [ -0.1544981, 51.2076873, -0.1544981, 51.2076873 ], "geometry": { "type": "Point", "coordinates": [ -0.1544981, 51.2076873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28474126" }, "bbox": [ -0.1629543, 51.210082, -0.1629543, 51.210082 ], "geometry": { "type": "Point", "coordinates": [ -0.1629543, 51.210082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28474040" }, "bbox": [ -0.1628858, 51.2118485, -0.1628858, 51.2118485 ], "geometry": { "type": "Point", "coordinates": [ -0.1628858, 51.2118485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00546895" }, "bbox": [ -0.5578492, 51.2845743, -0.5578492, 51.2845743 ], "geometry": { "type": "Point", "coordinates": [ -0.5578492, 51.2845743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15447339" }, "bbox": [ -0.3452398, 51.18714, -0.3452398, 51.18714 ], "geometry": { "type": "Point", "coordinates": [ -0.3452398, 51.18714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32420449" }, "bbox": [ -0.1122296, 51.1666419, -0.1122296, 51.1666419 ], "geometry": { "type": "Point", "coordinates": [ -0.1122296, 51.1666419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31453734" }, "bbox": [ -0.1214498, 51.1922002, -0.1214498, 51.1922002 ], "geometry": { "type": "Point", "coordinates": [ -0.1214498, 51.1922002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08553362" }, "bbox": [ -0.4477578, 51.2894176, -0.4477578, 51.2894176 ], "geometry": { "type": "Point", "coordinates": [ -0.4477578, 51.2894176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08553958" }, "bbox": [ -0.4467755, 51.2891394, -0.4467755, 51.2891394 ], "geometry": { "type": "Point", "coordinates": [ -0.4467755, 51.2891394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08557234" }, "bbox": [ -0.4400412, 51.2855719, -0.4400412, 51.2855719 ], "geometry": { "type": "Point", "coordinates": [ -0.4400412, 51.2855719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01564612" }, "bbox": [ -0.5462655, 51.29488, -0.5462655, 51.29488 ], "geometry": { "type": "Point", "coordinates": [ -0.5462655, 51.29488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01565711" }, "bbox": [ -0.5447278, 51.2945975, -0.5447278, 51.2945975 ], "geometry": { "type": "Point", "coordinates": [ -0.5447278, 51.2945975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01564427" }, "bbox": [ -0.5464455, 51.2965279, -0.5464455, 51.2965279 ], "geometry": { "type": "Point", "coordinates": [ -0.5464455, 51.2965279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01562704" }, "bbox": [ -0.5491419, 51.2945154, -0.5491419, 51.2945154 ], "geometry": { "type": "Point", "coordinates": [ -0.5491419, 51.2945154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09412578" }, "bbox": [ -0.438804, 51.1649239, -0.438804, 51.1649239 ], "geometry": { "type": "Point", "coordinates": [ -0.438804, 51.1649239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10420431" }, "bbox": [ -0.4274143, 51.1694201, -0.4274143, 51.1694201 ], "geometry": { "type": "Point", "coordinates": [ -0.4274143, 51.1694201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10413580" }, "bbox": [ -0.4230435, 51.1648725, -0.4230435, 51.1648725 ], "geometry": { "type": "Point", "coordinates": [ -0.4230435, 51.1648725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10412969" }, "bbox": [ -0.4239109, 51.1638577, -0.4239109, 51.1638577 ], "geometry": { "type": "Point", "coordinates": [ -0.4239109, 51.1638577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10412372" }, "bbox": [ -0.424782, 51.1641696, -0.424782, 51.1641696 ], "geometry": { "type": "Point", "coordinates": [ -0.424782, 51.1641696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10411773" }, "bbox": [ -0.4255364, 51.1643687, -0.4255364, 51.1643687 ], "geometry": { "type": "Point", "coordinates": [ -0.4255364, 51.1643687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10411581" }, "bbox": [ -0.426217, 51.1649304, -0.426217, 51.1649304 ], "geometry": { "type": "Point", "coordinates": [ -0.426217, 51.1649304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08417071" }, "bbox": [ -0.4468111, 51.16437, -0.4468111, 51.16437 ], "geometry": { "type": "Point", "coordinates": [ -0.4468111, 51.16437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10411274" }, "bbox": [ -0.4264953, 51.1643231, -0.4264953, 51.1643231 ], "geometry": { "type": "Point", "coordinates": [ -0.4264953, 51.1643231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410774" }, "bbox": [ -0.4271868, 51.1642724, -0.4271868, 51.1642724 ], "geometry": { "type": "Point", "coordinates": [ -0.4271868, 51.1642724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10413464" }, "bbox": [ -0.4233506, 51.1633255, -0.4233506, 51.1633255 ], "geometry": { "type": "Point", "coordinates": [ -0.4233506, 51.1633255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410480" }, "bbox": [ -0.4274626, 51.1649545, -0.4274626, 51.1649545 ], "geometry": { "type": "Point", "coordinates": [ -0.4274626, 51.1649545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89407961" }, "bbox": [ -0.7175393, 51.1576457, -0.7175393, 51.1576457 ], "geometry": { "type": "Point", "coordinates": [ -0.7175393, 51.1576457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89407962" }, "bbox": [ -0.7173333, 51.1577749, -0.7173333, 51.1577749 ], "geometry": { "type": "Point", "coordinates": [ -0.7173333, 51.1577749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89417189" }, "bbox": [ -0.7181564, 51.1693438, -0.7181564, 51.1693438 ], "geometry": { "type": "Point", "coordinates": [ -0.7181564, 51.1693438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89417089" }, "bbox": [ -0.7185066, 51.1692022, -0.7185066, 51.1692022 ], "geometry": { "type": "Point", "coordinates": [ -0.7185066, 51.1692022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89425201" }, "bbox": [ -0.7207248, 51.1697927, -0.7207248, 51.1697927 ], "geometry": { "type": "Point", "coordinates": [ -0.7207248, 51.1697927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89427857" }, "bbox": [ -0.7170364, 51.1752056, -0.7170364, 51.1752056 ], "geometry": { "type": "Point", "coordinates": [ -0.7170364, 51.1752056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89423428" }, "bbox": [ -0.7232652, 51.1728268, -0.7232652, 51.1728268 ], "geometry": { "type": "Point", "coordinates": [ -0.7232652, 51.1728268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89408357" }, "bbox": [ -0.7169113, 51.1573477, -0.7169113, 51.1573477 ], "geometry": { "type": "Point", "coordinates": [ -0.7169113, 51.1573477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03647095" }, "bbox": [ -0.5113555, 51.3742421, -0.5113555, 51.3742421 ], "geometry": { "type": "Point", "coordinates": [ -0.5113555, 51.3742421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03646387" }, "bbox": [ -0.512524, 51.3733529, -0.512524, 51.3733529 ], "geometry": { "type": "Point", "coordinates": [ -0.512524, 51.3733529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02759899" }, "bbox": [ -0.518556, 51.473435, -0.518556, 51.473435 ], "geometry": { "type": "Point", "coordinates": [ -0.518556, 51.473435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02757489" }, "bbox": [ -0.5215501, 51.4728491, -0.5215501, 51.4728491 ], "geometry": { "type": "Point", "coordinates": [ -0.5215501, 51.4728491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02758088" }, "bbox": [ -0.52121, 51.4725705, -0.52121, 51.4725705 ], "geometry": { "type": "Point", "coordinates": [ -0.52121, 51.4725705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02758786" }, "bbox": [ -0.5202435, 51.4724802, -0.5202435, 51.4724802 ], "geometry": { "type": "Point", "coordinates": [ -0.5202435, 51.4724802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02759583" }, "bbox": [ -0.5190256, 51.4721115, -0.5190256, 51.4721115 ], "geometry": { "type": "Point", "coordinates": [ -0.5190256, 51.4721115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02768601" }, "bbox": [ -0.5203961, 51.4736988, -0.5203961, 51.4736988 ], "geometry": { "type": "Point", "coordinates": [ -0.5203961, 51.4736988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02769403" }, "bbox": [ -0.5190026, 51.4737581, -0.5190026, 51.4737581 ], "geometry": { "type": "Point", "coordinates": [ -0.5190026, 51.4737581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02766226" }, "bbox": [ -0.5239384, 51.4759377, -0.5239384, 51.4759377 ], "geometry": { "type": "Point", "coordinates": [ -0.5239384, 51.4759377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13408730" }, "bbox": [ -0.3730816, 51.1507088, -0.3730816, 51.1507088 ], "geometry": { "type": "Point", "coordinates": [ -0.3730816, 51.1507088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13408022" }, "bbox": [ -0.374689, 51.1499935, -0.374689, 51.1499935 ], "geometry": { "type": "Point", "coordinates": [ -0.374689, 51.1499935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13407216" }, "bbox": [ -0.3753827, 51.1491822, -0.3753827, 51.1491822 ], "geometry": { "type": "Point", "coordinates": [ -0.3753827, 51.1491822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13407017" }, "bbox": [ -0.375649, 51.1493282, -0.375649, 51.1493282 ], "geometry": { "type": "Point", "coordinates": [ -0.375649, 51.1493282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15410116" }, "bbox": [ -0.3568849, 51.1581095, -0.3568849, 51.1581095 ], "geometry": { "type": "Point", "coordinates": [ -0.3568849, 51.1581095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15411941" }, "bbox": [ -0.3541096, 51.1603706, -0.3541096, 51.1603706 ], "geometry": { "type": "Point", "coordinates": [ -0.3541096, 51.1603706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14406640" }, "bbox": [ -0.3619552, 51.1515541, -0.3619552, 51.1515541 ], "geometry": { "type": "Point", "coordinates": [ -0.3619552, 51.1515541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403710" }, "bbox": [ -0.3656796, 51.149121, -0.3656796, 51.149121 ], "geometry": { "type": "Point", "coordinates": [ -0.3656796, 51.149121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403615" }, "bbox": [ -0.3662247, 51.1487618, -0.3662247, 51.1487618 ], "geometry": { "type": "Point", "coordinates": [ -0.3662247, 51.1487618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14424418" }, "bbox": [ -0.3645366, 51.1674731, -0.3645366, 51.1674731 ], "geometry": { "type": "Point", "coordinates": [ -0.3645366, 51.1674731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421809" }, "bbox": [ -0.3683293, 51.1666811, -0.3683293, 51.1666811 ], "geometry": { "type": "Point", "coordinates": [ -0.3683293, 51.1666811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14422734" }, "bbox": [ -0.3663604, 51.1689699, -0.3663604, 51.1689699 ], "geometry": { "type": "Point", "coordinates": [ -0.3663604, 51.1689699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14429187" }, "bbox": [ -0.3575636, 51.1736404, -0.3575636, 51.1736404 ], "geometry": { "type": "Point", "coordinates": [ -0.3575636, 51.1736404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14423215" }, "bbox": [ -0.3661575, 51.1673084, -0.3661575, 51.1673084 ], "geometry": { "type": "Point", "coordinates": [ -0.3661575, 51.1673084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14429697" }, "bbox": [ -0.356721, 51.1744368, -0.356721, 51.1744368 ], "geometry": { "type": "Point", "coordinates": [ -0.356721, 51.1744368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14428691" }, "bbox": [ -0.3584663, 51.1739386, -0.3584663, 51.1739386 ], "geometry": { "type": "Point", "coordinates": [ -0.3584663, 51.1739386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14410237" }, "bbox": [ -0.3707987, 51.1602406, -0.3707987, 51.1602406 ], "geometry": { "type": "Point", "coordinates": [ -0.3707987, 51.1602406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14413371" }, "bbox": [ -0.3663893, 51.1632861, -0.3663893, 51.1632861 ], "geometry": { "type": "Point", "coordinates": [ -0.3663893, 51.1632861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14414698" }, "bbox": [ -0.3643226, 51.1657713, -0.3643226, 51.1657713 ], "geometry": { "type": "Point", "coordinates": [ -0.3643226, 51.1657713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84428800" }, "bbox": [ -0.7873299, 51.1710449, -0.7873299, 51.1710449 ], "geometry": { "type": "Point", "coordinates": [ -0.7873299, 51.1710449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84428401" }, "bbox": [ -0.7879459, 51.1709048, -0.7879459, 51.1709048 ], "geometry": { "type": "Point", "coordinates": [ -0.7879459, 51.1709048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84428204" }, "bbox": [ -0.7882514, 51.1712934, -0.7882514, 51.1712934 ], "geometry": { "type": "Point", "coordinates": [ -0.7882514, 51.1712934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84415670" }, "bbox": [ -0.7935084, 51.1681049, -0.7935084, 51.1681049 ], "geometry": { "type": "Point", "coordinates": [ -0.7935084, 51.1681049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84411658" }, "bbox": [ -0.7976505, 51.1673364, -0.7976505, 51.1673364 ], "geometry": { "type": "Point", "coordinates": [ -0.7976505, 51.1673364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83419314" }, "bbox": [ -0.7990723, 51.1631446, -0.7990723, 51.1631446 ], "geometry": { "type": "Point", "coordinates": [ -0.7990723, 51.1631446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86463725" }, "bbox": [ -0.7650329, 51.2090151, -0.7650329, 51.2090151 ], "geometry": { "type": "Point", "coordinates": [ -0.7650329, 51.2090151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10420802" }, "bbox": [ -0.4268689, 51.1669126, -0.4268689, 51.1669126 ], "geometry": { "type": "Point", "coordinates": [ -0.4268689, 51.1669126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10420407" }, "bbox": [ -0.4279695, 51.1670316, -0.4279695, 51.1670316 ], "geometry": { "type": "Point", "coordinates": [ -0.4279695, 51.1670316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10420512" }, "bbox": [ -0.4272764, 51.1677621, -0.4272764, 51.1677621 ], "geometry": { "type": "Point", "coordinates": [ -0.4272764, 51.1677621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388263" }, "bbox": [ -0.688809, 51.1396711, -0.688809, 51.1396711 ], "geometry": { "type": "Point", "coordinates": [ -0.688809, 51.1396711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91387189" }, "bbox": [ -0.689982, 51.1418975, -0.689982, 51.1418975 ], "geometry": { "type": "Point", "coordinates": [ -0.689982, 51.1418975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388485" }, "bbox": [ -0.6885097, 51.1415578, -0.6885097, 51.1415578 ], "geometry": { "type": "Point", "coordinates": [ -0.6885097, 51.1415578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91387968" }, "bbox": [ -0.6894717, 51.1402108, -0.6894717, 51.1402108 ], "geometry": { "type": "Point", "coordinates": [ -0.6894717, 51.1402108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01542254" }, "bbox": [ -0.5498833, 51.2811113, -0.5498833, 51.2811113 ], "geometry": { "type": "Point", "coordinates": [ -0.5498833, 51.2811113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01543123" }, "bbox": [ -0.5490277, 51.2781785, -0.5490277, 51.2781785 ], "geometry": { "type": "Point", "coordinates": [ -0.5490277, 51.2781785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01542644" }, "bbox": [ -0.5486355, 51.2789408, -0.5486355, 51.2789408 ], "geometry": { "type": "Point", "coordinates": [ -0.5486355, 51.2789408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35596448" }, "bbox": [ -0.0552934, 51.3185956, -0.0552934, 51.3185956 ], "geometry": { "type": "Point", "coordinates": [ -0.0552934, 51.3185956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16476350" }, "bbox": [ -0.3314634, 51.2148844, -0.3314634, 51.2148844 ], "geometry": { "type": "Point", "coordinates": [ -0.3314634, 51.2148844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08458263" }, "bbox": [ -0.4437244, 51.1997401, -0.4437244, 51.1997401 ], "geometry": { "type": "Point", "coordinates": [ -0.4437244, 51.1997401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08458652" }, "bbox": [ -0.4434508, 51.1985613, -0.4434508, 51.1985613 ], "geometry": { "type": "Point", "coordinates": [ -0.4434508, 51.1985613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08457856" }, "bbox": [ -0.4444945, 51.198788, -0.4444945, 51.198788 ], "geometry": { "type": "Point", "coordinates": [ -0.4444945, 51.198788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91374488" }, "bbox": [ -0.6944768, 51.1326585, -0.6944768, 51.1326585 ], "geometry": { "type": "Point", "coordinates": [ -0.6944768, 51.1326585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91376898" }, "bbox": [ -0.6912183, 51.1337695, -0.6912183, 51.1337695 ], "geometry": { "type": "Point", "coordinates": [ -0.6912183, 51.1337695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91376991" }, "bbox": [ -0.6910535, 51.1331516, -0.6910535, 51.1331516 ], "geometry": { "type": "Point", "coordinates": [ -0.6910535, 51.1331516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91374592" }, "bbox": [ -0.6944644, 51.1332736, -0.6944644, 51.1332736 ], "geometry": { "type": "Point", "coordinates": [ -0.6944644, 51.1332736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91371688" }, "bbox": [ -0.6985436, 51.1328612, -0.6985436, 51.1328612 ], "geometry": { "type": "Point", "coordinates": [ -0.6985436, 51.1328612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91382002" }, "bbox": [ -0.6974181, 51.1345254, -0.6974181, 51.1345254 ], "geometry": { "type": "Point", "coordinates": [ -0.6974181, 51.1345254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91386486" }, "bbox": [ -0.6914331, 51.1416998, -0.6914331, 51.1416998 ], "geometry": { "type": "Point", "coordinates": [ -0.6914331, 51.1416998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91386265" }, "bbox": [ -0.6921601, 51.1398427, -0.6921601, 51.1398427 ], "geometry": { "type": "Point", "coordinates": [ -0.6921601, 51.1398427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91386659" }, "bbox": [ -0.6903969, 51.1389375, -0.6903969, 51.1389375 ], "geometry": { "type": "Point", "coordinates": [ -0.6903969, 51.1389375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91384702" }, "bbox": [ -0.6942257, 51.1341099, -0.6942257, 51.1341099 ], "geometry": { "type": "Point", "coordinates": [ -0.6942257, 51.1341099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91386405" }, "bbox": [ -0.6918092, 51.1344406, -0.6918092, 51.1344406 ], "geometry": { "type": "Point", "coordinates": [ -0.6918092, 51.1344406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02449779" }, "bbox": [ -0.5277067, 51.1930705, -0.5277067, 51.1930705 ], "geometry": { "type": "Point", "coordinates": [ -0.5277067, 51.1930705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02448268" }, "bbox": [ -0.5299954, 51.1922072, -0.5299954, 51.1922072 ], "geometry": { "type": "Point", "coordinates": [ -0.5299954, 51.1922072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03452520" }, "bbox": [ -0.5234791, 51.1966997, -0.5234791, 51.1966997 ], "geometry": { "type": "Point", "coordinates": [ -0.5234791, 51.1966997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03452318" }, "bbox": [ -0.5237747, 51.1965494, -0.5237747, 51.1965494 ], "geometry": { "type": "Point", "coordinates": [ -0.5237747, 51.1965494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03451414" }, "bbox": [ -0.525367, 51.1962477, -0.525367, 51.1962477 ], "geometry": { "type": "Point", "coordinates": [ -0.525367, 51.1962477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03453318" }, "bbox": [ -0.5222194, 51.19655, -0.5222194, 51.19655 ], "geometry": { "type": "Point", "coordinates": [ -0.5222194, 51.19655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02458300" }, "bbox": [ -0.5295581, 51.195091, -0.5295581, 51.195091 ], "geometry": { "type": "Point", "coordinates": [ -0.5295581, 51.195091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02459710" }, "bbox": [ -0.5277699, 51.1958645, -0.5277699, 51.1958645 ], "geometry": { "type": "Point", "coordinates": [ -0.5277699, 51.1958645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41450744" }, "bbox": [ 0.0174702, 51.190802, 0.0174702, 51.190802 ], "geometry": { "type": "Point", "coordinates": [ 0.0174702, 51.190802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41451740" }, "bbox": [ 0.0189062, 51.190416, 0.0189062, 51.190416 ], "geometry": { "type": "Point", "coordinates": [ 0.0189062, 51.190416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41450562" }, "bbox": [ 0.0173261, 51.192577, 0.0173261, 51.192577 ], "geometry": { "type": "Point", "coordinates": [ 0.0173261, 51.192577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40459654" }, "bbox": [ 0.0158554, 51.1916441, 0.0158554, 51.1916441 ], "geometry": { "type": "Point", "coordinates": [ 0.0158554, 51.1916441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457842" }, "bbox": [ 0.013379, 51.1906329, 0.013379, 51.1906329 ], "geometry": { "type": "Point", "coordinates": [ 0.013379, 51.1906329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40458135" }, "bbox": [ 0.013558, 51.1900042, 0.013558, 51.1900042 ], "geometry": { "type": "Point", "coordinates": [ 0.013558, 51.1900042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40468317" }, "bbox": [ 0.0143446, 51.1974528, 0.0143446, 51.1974528 ], "geometry": { "type": "Point", "coordinates": [ 0.0143446, 51.1974528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40467801" }, "bbox": [ 0.0134323, 51.1960226, 0.0134323, 51.1960226 ], "geometry": { "type": "Point", "coordinates": [ 0.0134323, 51.1960226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40469418" }, "bbox": [ 0.015799, 51.1975507, 0.015799, 51.1975507 ], "geometry": { "type": "Point", "coordinates": [ 0.015799, 51.1975507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40468529" }, "bbox": [ 0.0146835, 51.1984663, 0.0146835, 51.1984663 ], "geometry": { "type": "Point", "coordinates": [ 0.0146835, 51.1984663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00401335" }, "bbox": [ -0.5696036, 51.1536309, -0.5696036, 51.1536309 ], "geometry": { "type": "Point", "coordinates": [ -0.5696036, 51.1536309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00402845" }, "bbox": [ -0.5670042, 51.1545765, -0.5670042, 51.1545765 ], "geometry": { "type": "Point", "coordinates": [ -0.5670042, 51.1545765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00403605" }, "bbox": [ -0.566363, 51.1509702, -0.566363, 51.1509702 ], "geometry": { "type": "Point", "coordinates": [ -0.566363, 51.1509702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00391992" }, "bbox": [ -0.5696452, 51.1497353, -0.5696452, 51.1497353 ], "geometry": { "type": "Point", "coordinates": [ -0.5696452, 51.1497353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91431386" }, "bbox": [ -0.6972651, 51.1867865, -0.6972651, 51.1867865 ], "geometry": { "type": "Point", "coordinates": [ -0.6972651, 51.1867865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91430886" }, "bbox": [ -0.6980093, 51.186806, -0.6980093, 51.186806 ], "geometry": { "type": "Point", "coordinates": [ -0.6980093, 51.186806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91431194" }, "bbox": [ -0.6975659, 51.1875345, -0.6975659, 51.1875345 ], "geometry": { "type": "Point", "coordinates": [ -0.6975659, 51.1875345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90447519" }, "bbox": [ -0.7027551, 51.1897904, -0.7027551, 51.1897904 ], "geometry": { "type": "Point", "coordinates": [ -0.7027551, 51.1897904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90449227" }, "bbox": [ -0.700255, 51.19049, -0.700255, 51.19049 ], "geometry": { "type": "Point", "coordinates": [ -0.700255, 51.19049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443516" }, "bbox": [ -0.6941279, 51.1894672, -0.6941279, 51.1894672 ], "geometry": { "type": "Point", "coordinates": [ -0.6941279, 51.1894672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443514" }, "bbox": [ -0.6942287, 51.1892101, -0.6942287, 51.1892101 ], "geometry": { "type": "Point", "coordinates": [ -0.6942287, 51.1892101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90449617" }, "bbox": [ -0.6997441, 51.1895049, -0.6997441, 51.1895049 ], "geometry": { "type": "Point", "coordinates": [ -0.6997441, 51.1895049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08504191" }, "bbox": [ -0.4480909, 51.2470875, -0.4480909, 51.2470875 ], "geometry": { "type": "Point", "coordinates": [ -0.4480909, 51.2470875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447973" }, "bbox": [ -0.5159784, 51.1923306, -0.5159784, 51.1923306 ], "geometry": { "type": "Point", "coordinates": [ -0.5159784, 51.1923306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448077" }, "bbox": [ -0.5158927, 51.1926529, -0.5158927, 51.1926529 ], "geometry": { "type": "Point", "coordinates": [ -0.5158927, 51.1926529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447875" }, "bbox": [ -0.5161504, 51.1926771, -0.5161504, 51.1926771 ], "geometry": { "type": "Point", "coordinates": [ -0.5161504, 51.1926771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448290" }, "bbox": [ -0.5155386, 51.1939531, -0.5155386, 51.1939531 ], "geometry": { "type": "Point", "coordinates": [ -0.5155386, 51.1939531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08504386" }, "bbox": [ -0.4475423, 51.2464781, -0.4475423, 51.2464781 ], "geometry": { "type": "Point", "coordinates": [ -0.4475423, 51.2464781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08506296" }, "bbox": [ -0.4447914, 51.2475651, -0.4447914, 51.2475651 ], "geometry": { "type": "Point", "coordinates": [ -0.4447914, 51.2475651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08505595" }, "bbox": [ -0.4460131, 51.2475005, -0.4460131, 51.2475005 ], "geometry": { "type": "Point", "coordinates": [ -0.4460131, 51.2475005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08504895" }, "bbox": [ -0.4471262, 51.2474508, -0.4471262, 51.2474508 ], "geometry": { "type": "Point", "coordinates": [ -0.4471262, 51.2474508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447590" }, "bbox": [ -0.5164983, 51.1939416, -0.5164983, 51.1939416 ], "geometry": { "type": "Point", "coordinates": [ -0.5164983, 51.1939416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08505698" }, "bbox": [ -0.4461082, 51.2477037, -0.4461082, 51.2477037 ], "geometry": { "type": "Point", "coordinates": [ -0.4461082, 51.2477037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08504288" }, "bbox": [ -0.4480968, 51.2468333, -0.4480968, 51.2468333 ], "geometry": { "type": "Point", "coordinates": [ -0.4480968, 51.2468333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620845" }, "bbox": [ -0.6360566, 51.3531646, -0.6360566, 51.3531646 ], "geometry": { "type": "Point", "coordinates": [ -0.6360566, 51.3531646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621641" }, "bbox": [ -0.6348808, 51.3528237, -0.6348808, 51.3528237 ], "geometry": { "type": "Point", "coordinates": [ -0.6348808, 51.3528237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00696027" }, "bbox": [ -0.5547434, 51.4134794, -0.5547434, 51.4134794 ], "geometry": { "type": "Point", "coordinates": [ -0.5547434, 51.4134794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00695729" }, "bbox": [ -0.555362, 51.414008, -0.555362, 51.414008 ], "geometry": { "type": "Point", "coordinates": [ -0.555362, 51.414008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00695919" }, "bbox": [ -0.5548693, 51.4129538, -0.5548693, 51.4129538 ], "geometry": { "type": "Point", "coordinates": [ -0.5548693, 51.4129538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00694314" }, "bbox": [ -0.557372, 51.4125536, -0.557372, 51.4125536 ], "geometry": { "type": "Point", "coordinates": [ -0.557372, 51.4125536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00694919" }, "bbox": [ -0.5564201, 51.4129024, -0.5564201, 51.4129024 ], "geometry": { "type": "Point", "coordinates": [ -0.5564201, 51.4129024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00695969" }, "bbox": [ -0.5547175, 51.4173771, -0.5547175, 51.4173771 ], "geometry": { "type": "Point", "coordinates": [ -0.5547175, 51.4173771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09687324" }, "bbox": [ -0.4254228, 51.4017058, -0.4254228, 51.4017058 ], "geometry": { "type": "Point", "coordinates": [ -0.4254228, 51.4017058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09689735" }, "bbox": [ -0.4203146, 51.4035045, -0.4203146, 51.4035045 ], "geometry": { "type": "Point", "coordinates": [ -0.4203146, 51.4035045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41545406" }, "bbox": [ 0.0274248, 51.2680359, 0.0274248, 51.2680359 ], "geometry": { "type": "Point", "coordinates": [ 0.0274248, 51.2680359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41532581" }, "bbox": [ 0.0233328, 51.265836, 0.0233328, 51.265836 ], "geometry": { "type": "Point", "coordinates": [ 0.0233328, 51.265836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39549527" }, "bbox": [ 0.0048404, 51.2703523, 0.0048404, 51.2703523 ], "geometry": { "type": "Point", "coordinates": [ 0.0048404, 51.2703523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40532311" }, "bbox": [ 0.0083548, 51.2600539, 0.0083548, 51.2600539 ], "geometry": { "type": "Point", "coordinates": [ 0.0083548, 51.2600539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40537278" }, "bbox": [ 0.0153229, 51.2657794, 0.0153229, 51.2657794 ], "geometry": { "type": "Point", "coordinates": [ 0.0153229, 51.2657794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99554711" }, "bbox": [ -0.5749612, 51.2864723, -0.5749612, 51.2864723 ], "geometry": { "type": "Point", "coordinates": [ -0.5749612, 51.2864723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87479167" }, "bbox": [ -0.7424592, 51.2215947, -0.7424592, 51.2215947 ], "geometry": { "type": "Point", "coordinates": [ -0.7424592, 51.2215947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87473138" }, "bbox": [ -0.7505512, 51.2184444, -0.7505512, 51.2184444 ], "geometry": { "type": "Point", "coordinates": [ -0.7505512, 51.2184444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87477972" }, "bbox": [ -0.74416, 51.2219901, -0.74416, 51.2219901 ], "geometry": { "type": "Point", "coordinates": [ -0.74416, 51.2219901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87478165" }, "bbox": [ -0.7440498, 51.2213817, -0.7440498, 51.2213817 ], "geometry": { "type": "Point", "coordinates": [ -0.7440498, 51.2213817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87477371" }, "bbox": [ -0.7450266, 51.2220021, -0.7450266, 51.2220021 ], "geometry": { "type": "Point", "coordinates": [ -0.7450266, 51.2220021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87478376" }, "bbox": [ -0.7434286, 51.2223638, -0.7434286, 51.2223638 ], "geometry": { "type": "Point", "coordinates": [ -0.7434286, 51.2223638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98342183" }, "bbox": [ -0.5987335, 51.104312, -0.5987335, 51.104312 ], "geometry": { "type": "Point", "coordinates": [ -0.5987335, 51.104312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02362684" }, "bbox": [ -0.5396955, 51.1219119, -0.5396955, 51.1219119 ], "geometry": { "type": "Point", "coordinates": [ -0.5396955, 51.1219119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00386622" }, "bbox": [ -0.5626247, 51.1344844, -0.5626247, 51.1344844 ], "geometry": { "type": "Point", "coordinates": [ -0.5626247, 51.1344844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00394359" }, "bbox": [ -0.56514, 51.1469204, -0.56514, 51.1469204 ], "geometry": { "type": "Point", "coordinates": [ -0.56514, 51.1469204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02335274" }, "bbox": [ -0.5368684, 51.0941095, -0.5368684, 51.0941095 ], "geometry": { "type": "Point", "coordinates": [ -0.5368684, 51.0941095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02335457" }, "bbox": [ -0.5371776, 51.0922018, -0.5371776, 51.0922018 ], "geometry": { "type": "Point", "coordinates": [ -0.5371776, 51.0922018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385727" }, "bbox": [ -0.5492828, 51.1347987, -0.5492828, 51.1347987 ], "geometry": { "type": "Point", "coordinates": [ -0.5492828, 51.1347987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334856" }, "bbox": [ -0.5237603, 51.0921647, -0.5237603, 51.0921647 ], "geometry": { "type": "Point", "coordinates": [ -0.5237603, 51.0921647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334589" }, "bbox": [ -0.5236769, 51.0949016, -0.5236769, 51.0949016 ], "geometry": { "type": "Point", "coordinates": [ -0.5236769, 51.0949016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03333983" }, "bbox": [ -0.5247422, 51.0945431, -0.5247422, 51.0945431 ], "geometry": { "type": "Point", "coordinates": [ -0.5247422, 51.0945431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03333990" }, "bbox": [ -0.5248052, 51.0951965, -0.5248052, 51.0951965 ], "geometry": { "type": "Point", "coordinates": [ -0.5248052, 51.0951965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03333797" }, "bbox": [ -0.5250669, 51.0958416, -0.5250669, 51.0958416 ], "geometry": { "type": "Point", "coordinates": [ -0.5250669, 51.0958416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334967" }, "bbox": [ -0.5234901, 51.0931329, -0.5234901, 51.0931329 ], "geometry": { "type": "Point", "coordinates": [ -0.5234901, 51.0931329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334873" }, "bbox": [ -0.5233299, 51.0935553, -0.5233299, 51.0935553 ], "geometry": { "type": "Point", "coordinates": [ -0.5233299, 51.0935553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334273" }, "bbox": [ -0.5244727, 51.0935576, -0.5244727, 51.0935576 ], "geometry": { "type": "Point", "coordinates": [ -0.5244727, 51.0935576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01382940" }, "bbox": [ -0.5534247, 51.1359723, -0.5534247, 51.1359723 ], "geometry": { "type": "Point", "coordinates": [ -0.5534247, 51.1359723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03333777" }, "bbox": [ -0.5251059, 51.0940606, -0.5251059, 51.0940606 ], "geometry": { "type": "Point", "coordinates": [ -0.5251059, 51.0940606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334863" }, "bbox": [ -0.5233474, 51.0926122, -0.5233474, 51.0926122 ], "geometry": { "type": "Point", "coordinates": [ -0.5233474, 51.0926122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334262" }, "bbox": [ -0.5243774, 51.0927366, -0.5243774, 51.0927366 ], "geometry": { "type": "Point", "coordinates": [ -0.5243774, 51.0927366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334977" }, "bbox": [ -0.5233648, 51.0939782, -0.5233648, 51.0939782 ], "geometry": { "type": "Point", "coordinates": [ -0.5233648, 51.0939782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334177" }, "bbox": [ -0.5244963, 51.0940222, -0.5244963, 51.0940222 ], "geometry": { "type": "Point", "coordinates": [ -0.5244963, 51.0940222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19472148" }, "bbox": [ -0.294601, 51.2141334, -0.294601, 51.2141334 ], "geometry": { "type": "Point", "coordinates": [ -0.294601, 51.2141334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07559801" }, "bbox": [ -0.4530636, 51.2839248, -0.4530636, 51.2839248 ], "geometry": { "type": "Point", "coordinates": [ -0.4530636, 51.2839248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02478984" }, "bbox": [ -0.5279742, 51.2205299, -0.5279742, 51.2205299 ], "geometry": { "type": "Point", "coordinates": [ -0.5279742, 51.2205299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08555040" }, "bbox": [ -0.4460047, 51.2878103, -0.4460047, 51.2878103 ], "geometry": { "type": "Point", "coordinates": [ -0.4460047, 51.2878103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18456614" }, "bbox": [ -0.3031865, 51.1932545, -0.3031865, 51.1932545 ], "geometry": { "type": "Point", "coordinates": [ -0.3031865, 51.1932545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18457832" }, "bbox": [ -0.3013939, 51.1947159, -0.3013939, 51.1947159 ], "geometry": { "type": "Point", "coordinates": [ -0.3013939, 51.1947159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455126" }, "bbox": [ -0.3052247, 51.1942241, -0.3052247, 51.1942241 ], "geometry": { "type": "Point", "coordinates": [ -0.3052247, 51.1942241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18457916" }, "bbox": [ -0.3014758, 51.1934771, -0.3014758, 51.1934771 ], "geometry": { "type": "Point", "coordinates": [ -0.3014758, 51.1934771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454427" }, "bbox": [ -0.3062367, 51.1944713, -0.3062367, 51.1944713 ], "geometry": { "type": "Point", "coordinates": [ -0.3062367, 51.1944713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454124" }, "bbox": [ -0.306763, 51.1941686, -0.306763, 51.1941686 ], "geometry": { "type": "Point", "coordinates": [ -0.306763, 51.1941686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454226" }, "bbox": [ -0.3066624, 51.1941921, -0.3066624, 51.1941921 ], "geometry": { "type": "Point", "coordinates": [ -0.3066624, 51.1941921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454125" }, "bbox": [ -0.3068716, 51.1942988, -0.3068716, 51.1942988 ], "geometry": { "type": "Point", "coordinates": [ -0.3068716, 51.1942988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11355798" }, "bbox": [ -0.4074896, 51.1122255, -0.4074896, 51.1122255 ], "geometry": { "type": "Point", "coordinates": [ -0.4074896, 51.1122255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20554424" }, "bbox": [ -0.2744253, 51.2835163, -0.2744253, 51.2835163 ], "geometry": { "type": "Point", "coordinates": [ -0.2744253, 51.2835163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20554923" }, "bbox": [ -0.273558, 51.2835711, -0.273558, 51.2835711 ], "geometry": { "type": "Point", "coordinates": [ -0.273558, 51.2835711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20554438" }, "bbox": [ -0.2739976, 51.2850165, -0.2739976, 51.2850165 ], "geometry": { "type": "Point", "coordinates": [ -0.2739976, 51.2850165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20554332" }, "bbox": [ -0.2745089, 51.2843685, -0.2745089, 51.2843685 ], "geometry": { "type": "Point", "coordinates": [ -0.2745089, 51.2843685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20554930" }, "bbox": [ -0.2737189, 51.2840856, -0.2737189, 51.2840856 ], "geometry": { "type": "Point", "coordinates": [ -0.2737189, 51.2840856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07391996" }, "bbox": [ -0.468855, 51.1489851, -0.468855, 51.1489851 ], "geometry": { "type": "Point", "coordinates": [ -0.468855, 51.1489851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07394187" }, "bbox": [ -0.4657111, 51.1480687, -0.4657111, 51.1480687 ], "geometry": { "type": "Point", "coordinates": [ -0.4657111, 51.1480687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07403603" }, "bbox": [ -0.4667263, 51.1494752, -0.4667263, 51.1494752 ], "geometry": { "type": "Point", "coordinates": [ -0.4667263, 51.1494752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07396088" }, "bbox": [ -0.4630297, 51.1480946, -0.4630297, 51.1480946 ], "geometry": { "type": "Point", "coordinates": [ -0.4630297, 51.1480946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07394294" }, "bbox": [ -0.4646523, 51.1486193, -0.4646523, 51.1486193 ], "geometry": { "type": "Point", "coordinates": [ -0.4646523, 51.1486193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04401995" }, "bbox": [ -0.5112658, 51.1582877, -0.5112658, 51.1582877 ], "geometry": { "type": "Point", "coordinates": [ -0.5112658, 51.1582877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03409954" }, "bbox": [ -0.5145326, 51.154711, -0.5145326, 51.154711 ], "geometry": { "type": "Point", "coordinates": [ -0.5145326, 51.154711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400047" }, "bbox": [ -0.5138817, 51.1543152, -0.5138817, 51.1543152 ], "geometry": { "type": "Point", "coordinates": [ -0.5138817, 51.1543152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21457792" }, "bbox": [ -0.2583941, 51.1996642, -0.2583941, 51.1996642 ], "geometry": { "type": "Point", "coordinates": [ -0.2583941, 51.1996642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21458456" }, "bbox": [ -0.2577635, 51.1962991, -0.2577635, 51.1962991 ], "geometry": { "type": "Point", "coordinates": [ -0.2577635, 51.1962991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456876" }, "bbox": [ -0.2597928, 51.1982497, -0.2597928, 51.1982497 ], "geometry": { "type": "Point", "coordinates": [ -0.2597928, 51.1982497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21454097" }, "bbox": [ -0.2637711, 51.2000766, -0.2637711, 51.2000766 ], "geometry": { "type": "Point", "coordinates": [ -0.2637711, 51.2000766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21459349" }, "bbox": [ -0.2564076, 51.1956149, -0.2564076, 51.1956149 ], "geometry": { "type": "Point", "coordinates": [ -0.2564076, 51.1956149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21464402" }, "bbox": [ -0.2631078, 51.2005199, -0.2631078, 51.2005199 ], "geometry": { "type": "Point", "coordinates": [ -0.2631078, 51.2005199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21450493" }, "bbox": [ -0.2687508, 51.1997259, -0.2687508, 51.1997259 ], "geometry": { "type": "Point", "coordinates": [ -0.2687508, 51.1997259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21454986" }, "bbox": [ -0.2625936, 51.1990874, -0.2625936, 51.1990874 ], "geometry": { "type": "Point", "coordinates": [ -0.2625936, 51.1990874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21455685" }, "bbox": [ -0.2614739, 51.1992004, -0.2614739, 51.1992004 ], "geometry": { "type": "Point", "coordinates": [ -0.2614739, 51.1992004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21455481" }, "bbox": [ -0.2616509, 51.1986631, -0.2616509, 51.1986631 ], "geometry": { "type": "Point", "coordinates": [ -0.2616509, 51.1986631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21459964" }, "bbox": [ -0.2554904, 51.1969854, -0.2554904, 51.1969854 ], "geometry": { "type": "Point", "coordinates": [ -0.2554904, 51.1969854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21467800" }, "bbox": [ -0.2582941, 51.2002815, -0.2582941, 51.2002815 ], "geometry": { "type": "Point", "coordinates": [ -0.2582941, 51.2002815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21467301" }, "bbox": [ -0.259927, 51.2005919, -0.259927, 51.2005919 ], "geometry": { "type": "Point", "coordinates": [ -0.259927, 51.2005919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411380" }, "bbox": [ -0.5691294, 51.1667659, -0.5691294, 51.1667659 ], "geometry": { "type": "Point", "coordinates": [ -0.5691294, 51.1667659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22450167" }, "bbox": [ -0.254159, 51.1970023, -0.254159, 51.1970023 ], "geometry": { "type": "Point", "coordinates": [ -0.254159, 51.1970023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411786" }, "bbox": [ -0.5677955, 51.1669372, -0.5677955, 51.1669372 ], "geometry": { "type": "Point", "coordinates": [ -0.5677955, 51.1669372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411691" }, "bbox": [ -0.5686541, 51.167759, -0.5686541, 51.167759 ], "geometry": { "type": "Point", "coordinates": [ -0.5686541, 51.167759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00412193" }, "bbox": [ -0.5679019, 51.1679071, -0.5679019, 51.1679071 ], "geometry": { "type": "Point", "coordinates": [ -0.5679019, 51.1679071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00410399" }, "bbox": [ -0.5709349, 51.1683144, -0.5709349, 51.1683144 ], "geometry": { "type": "Point", "coordinates": [ -0.5709349, 51.1683144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00410780" }, "bbox": [ -0.5699637, 51.1667697, -0.5699637, 51.1667697 ], "geometry": { "type": "Point", "coordinates": [ -0.5699637, 51.1667697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422308" }, "bbox": [ -0.5531731, 51.1691229, -0.5531731, 51.1691229 ], "geometry": { "type": "Point", "coordinates": [ -0.5531731, 51.1691229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421102" }, "bbox": [ -0.5550606, 51.1686112, -0.5550606, 51.1686112 ], "geometry": { "type": "Point", "coordinates": [ -0.5550606, 51.1686112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94500758" }, "bbox": [ -0.653588, 51.2466522, -0.653588, 51.2466522 ], "geometry": { "type": "Point", "coordinates": [ -0.653588, 51.2466522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502681" }, "bbox": [ -0.6505428, 51.2485102, -0.6505428, 51.2485102 ], "geometry": { "type": "Point", "coordinates": [ -0.6505428, 51.2485102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502869" }, "bbox": [ -0.650545, 51.2473696, -0.650545, 51.2473696 ], "geometry": { "type": "Point", "coordinates": [ -0.650545, 51.2473696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501671" }, "bbox": [ -0.6521624, 51.2477636, -0.6521624, 51.2477636 ], "geometry": { "type": "Point", "coordinates": [ -0.6521624, 51.2477636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502274" }, "bbox": [ -0.6515278, 51.2480365, -0.6515278, 51.2480365 ], "geometry": { "type": "Point", "coordinates": [ -0.6515278, 51.2480365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502275" }, "bbox": [ -0.6513302, 51.2481312, -0.6513302, 51.2481312 ], "geometry": { "type": "Point", "coordinates": [ -0.6513302, 51.2481312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501167" }, "bbox": [ -0.6528989, 51.2474208, -0.6528989, 51.2474208 ], "geometry": { "type": "Point", "coordinates": [ -0.6528989, 51.2474208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501370" }, "bbox": [ -0.6528332, 51.2476982, -0.6528332, 51.2476982 ], "geometry": { "type": "Point", "coordinates": [ -0.6528332, 51.2476982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501468" }, "bbox": [ -0.6525996, 51.2474929, -0.6525996, 51.2474929 ], "geometry": { "type": "Point", "coordinates": [ -0.6525996, 51.2474929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08510808" }, "bbox": [ -0.4528244, 51.2487079, -0.4528244, 51.2487079 ], "geometry": { "type": "Point", "coordinates": [ -0.4528244, 51.2487079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08511411" }, "bbox": [ -0.4517656, 51.2489801, -0.4517656, 51.2489801 ], "geometry": { "type": "Point", "coordinates": [ -0.4517656, 51.2489801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08511701" }, "bbox": [ -0.4515491, 51.2479695, -0.4515491, 51.2479695 ], "geometry": { "type": "Point", "coordinates": [ -0.4515491, 51.2479695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08501098" }, "bbox": [ -0.452159, 51.2478181, -0.452159, 51.2478181 ], "geometry": { "type": "Point", "coordinates": [ -0.452159, 51.2478181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502699" }, "bbox": [ -0.4502591, 51.2479408, -0.4502591, 51.2479408 ], "geometry": { "type": "Point", "coordinates": [ -0.4502591, 51.2479408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502181" }, "bbox": [ -0.450797, 51.2462953, -0.450797, 51.2462953 ], "geometry": { "type": "Point", "coordinates": [ -0.450797, 51.2462953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08501744" }, "bbox": [ -0.451777, 51.243103, -0.451777, 51.243103 ], "geometry": { "type": "Point", "coordinates": [ -0.451777, 51.243103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08501781" }, "bbox": [ -0.4518712, 51.2461372, -0.4518712, 51.2461372 ], "geometry": { "type": "Point", "coordinates": [ -0.4518712, 51.2461372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08501339" }, "bbox": [ -0.4530602, 51.2421146, -0.4530602, 51.2421146 ], "geometry": { "type": "Point", "coordinates": [ -0.4530602, 51.2421146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08500895" }, "bbox": [ -0.4530823, 51.2474291, -0.4530823, 51.2474291 ], "geometry": { "type": "Point", "coordinates": [ -0.4530823, 51.2474291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407659" }, "bbox": [ -0.4604257, 51.1544966, -0.4604257, 51.1544966 ], "geometry": { "type": "Point", "coordinates": [ -0.4604257, 51.1544966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407355" }, "bbox": [ -0.460954, 51.1541039, -0.460954, 51.1541039 ], "geometry": { "type": "Point", "coordinates": [ -0.460954, 51.1541039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407057" }, "bbox": [ -0.4614006, 51.154258, -0.4614006, 51.154258 ], "geometry": { "type": "Point", "coordinates": [ -0.4614006, 51.154258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07408251" }, "bbox": [ -0.4596354, 51.1537398, -0.4596354, 51.1537398 ], "geometry": { "type": "Point", "coordinates": [ -0.4596354, 51.1537398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07408676" }, "bbox": [ -0.4587226, 51.1560569, -0.4587226, 51.1560569 ], "geometry": { "type": "Point", "coordinates": [ -0.4587226, 51.1560569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501470" }, "bbox": [ -0.6524217, 51.247651, -0.6524217, 51.247651 ], "geometry": { "type": "Point", "coordinates": [ -0.6524217, 51.247651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501565" }, "bbox": [ -0.6522736, 51.2473424, -0.6522736, 51.2473424 ], "geometry": { "type": "Point", "coordinates": [ -0.6522736, 51.2473424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501862" }, "bbox": [ -0.6522704, 51.2469551, -0.6522704, 51.2469551 ], "geometry": { "type": "Point", "coordinates": [ -0.6522704, 51.2469551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502452" }, "bbox": [ -0.6517804, 51.2460607, -0.6517804, 51.2460607 ], "geometry": { "type": "Point", "coordinates": [ -0.6517804, 51.2460607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501864" }, "bbox": [ -0.6518423, 51.2470592, -0.6518423, 51.2470592 ], "geometry": { "type": "Point", "coordinates": [ -0.6518423, 51.2470592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502064" }, "bbox": [ -0.6515651, 51.2471416, -0.6515651, 51.2471416 ], "geometry": { "type": "Point", "coordinates": [ -0.6515651, 51.2471416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502578" }, "bbox": [ -0.6508204, 51.2484071, -0.6508204, 51.2484071 ], "geometry": { "type": "Point", "coordinates": [ -0.6508204, 51.2484071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502875" }, "bbox": [ -0.6503639, 51.2482192, -0.6503639, 51.2482192 ], "geometry": { "type": "Point", "coordinates": [ -0.6503639, 51.2482192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501461" }, "bbox": [ -0.6527226, 51.2469759, -0.6527226, 51.2469759 ], "geometry": { "type": "Point", "coordinates": [ -0.6527226, 51.2469759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02436890" }, "bbox": [ -0.5321483, 51.1851668, -0.5321483, 51.1851668 ], "geometry": { "type": "Point", "coordinates": [ -0.5321483, 51.1851668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529661" }, "bbox": [ -0.4111752, 51.2618717, -0.4111752, 51.2618717 ], "geometry": { "type": "Point", "coordinates": [ -0.4111752, 51.2618717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529363" }, "bbox": [ -0.4115341, 51.2620097, -0.4115341, 51.2620097 ], "geometry": { "type": "Point", "coordinates": [ -0.4115341, 51.2620097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529464" }, "bbox": [ -0.411285, 51.262177, -0.411285, 51.262177 ], "geometry": { "type": "Point", "coordinates": [ -0.411285, 51.262177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529666" }, "bbox": [ -0.4110566, 51.2622937, -0.4110566, 51.2622937 ], "geometry": { "type": "Point", "coordinates": [ -0.4110566, 51.2622937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529264" }, "bbox": [ -0.4116107, 51.2621412, -0.4116107, 51.2621412 ], "geometry": { "type": "Point", "coordinates": [ -0.4116107, 51.2621412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11520668" }, "bbox": [ -0.4091835, 51.2626503, -0.4091835, 51.2626503 ], "geometry": { "type": "Point", "coordinates": [ -0.4091835, 51.2626503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11520264" }, "bbox": [ -0.4101087, 51.2620597, -0.4101087, 51.2620597 ], "geometry": { "type": "Point", "coordinates": [ -0.4101087, 51.2620597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11520064" }, "bbox": [ -0.4104195, 51.2620119, -0.4104195, 51.2620119 ], "geometry": { "type": "Point", "coordinates": [ -0.4104195, 51.2620119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00378505" }, "bbox": [ -0.56014, 51.1239074, -0.56014, 51.1239074 ], "geometry": { "type": "Point", "coordinates": [ -0.56014, 51.1239074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00378303" }, "bbox": [ -0.5606343, 51.1236319, -0.5606343, 51.1236319 ], "geometry": { "type": "Point", "coordinates": [ -0.5606343, 51.1236319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03442638" }, "bbox": [ -0.5236899, 51.1893481, -0.5236899, 51.1893481 ], "geometry": { "type": "Point", "coordinates": [ -0.5236899, 51.1893481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03445626" }, "bbox": [ -0.5196056, 51.1883647, -0.5196056, 51.1883647 ], "geometry": { "type": "Point", "coordinates": [ -0.5196056, 51.1883647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03444244" }, "bbox": [ -0.521542, 51.1897231, -0.521542, 51.1897231 ], "geometry": { "type": "Point", "coordinates": [ -0.521542, 51.1897231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07491369" }, "bbox": [ -0.4680082, 51.236114, -0.4680082, 51.236114 ], "geometry": { "type": "Point", "coordinates": [ -0.4680082, 51.236114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07492977" }, "bbox": [ -0.4646696, 51.2372052, -0.4646696, 51.2372052 ], "geometry": { "type": "Point", "coordinates": [ -0.4646696, 51.2372052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06498282" }, "bbox": [ -0.4703372, 51.2375139, -0.4703372, 51.2375139 ], "geometry": { "type": "Point", "coordinates": [ -0.4703372, 51.2375139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00470283" }, "bbox": [ -0.568948, 51.2209424, -0.568948, 51.2209424 ], "geometry": { "type": "Point", "coordinates": [ -0.568948, 51.2209424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12367251" }, "bbox": [ -0.3908544, 51.1168461, -0.3908544, 51.1168461 ], "geometry": { "type": "Point", "coordinates": [ -0.3908544, 51.1168461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12367255" }, "bbox": [ -0.390982, 51.1171156, -0.390982, 51.1171156 ], "geometry": { "type": "Point", "coordinates": [ -0.390982, 51.1171156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12367259" }, "bbox": [ -0.3908419, 51.1176543, -0.3908419, 51.1176543 ], "geometry": { "type": "Point", "coordinates": [ -0.3908419, 51.1176543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12362481" }, "bbox": [ -0.3978705, 51.119513, -0.3978705, 51.119513 ], "geometry": { "type": "Point", "coordinates": [ -0.3978705, 51.119513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12363076" }, "bbox": [ -0.3966344, 51.1191107, -0.3966344, 51.1191107 ], "geometry": { "type": "Point", "coordinates": [ -0.3966344, 51.1191107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12365464" }, "bbox": [ -0.3937676, 51.1180806, -0.3937676, 51.1180806 ], "geometry": { "type": "Point", "coordinates": [ -0.3937676, 51.1180806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12364049" }, "bbox": [ -0.3954893, 51.1165163, -0.3954893, 51.1165163 ], "geometry": { "type": "Point", "coordinates": [ -0.3954893, 51.1165163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07470436" }, "bbox": [ -0.4688208, 51.2155107, -0.4688208, 51.2155107 ], "geometry": { "type": "Point", "coordinates": [ -0.4688208, 51.2155107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07471208" }, "bbox": [ -0.4681523, 51.2129094, -0.4681523, 51.2129094 ], "geometry": { "type": "Point", "coordinates": [ -0.4681523, 51.2129094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12364874" }, "bbox": [ -0.394066, 51.1190657, -0.394066, 51.1190657 ], "geometry": { "type": "Point", "coordinates": [ -0.394066, 51.1190657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12367479" }, "bbox": [ -0.3907556, 51.1197095, -0.3907556, 51.1197095 ], "geometry": { "type": "Point", "coordinates": [ -0.3907556, 51.1197095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21506833" }, "bbox": [ -0.2582055, 51.2392774, -0.2582055, 51.2392774 ], "geometry": { "type": "Point", "coordinates": [ -0.2582055, 51.2392774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21506841" }, "bbox": [ -0.2582727, 51.2399441, -0.2582727, 51.2399441 ], "geometry": { "type": "Point", "coordinates": [ -0.2582727, 51.2399441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21506845" }, "bbox": [ -0.2584106, 51.240122, -0.2584106, 51.240122 ], "geometry": { "type": "Point", "coordinates": [ -0.2584106, 51.240122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21507832" }, "bbox": [ -0.2568755, 51.239085, -0.2568755, 51.239085 ], "geometry": { "type": "Point", "coordinates": [ -0.2568755, 51.239085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21506132" }, "bbox": [ -0.2590832, 51.2391236, -0.2590832, 51.2391236 ], "geometry": { "type": "Point", "coordinates": [ -0.2590832, 51.2391236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21507821" }, "bbox": [ -0.2566609, 51.238241, -0.2566609, 51.238241 ], "geometry": { "type": "Point", "coordinates": [ -0.2566609, 51.238241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21507828" }, "bbox": [ -0.2566893, 51.2387571, -0.2566893, 51.2387571 ], "geometry": { "type": "Point", "coordinates": [ -0.2566893, 51.2387571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21507026" }, "bbox": [ -0.2576908, 51.2388743, -0.2576908, 51.2388743 ], "geometry": { "type": "Point", "coordinates": [ -0.2576908, 51.2388743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21506435" }, "bbox": [ -0.2588218, 51.239507, -0.2588218, 51.239507 ], "geometry": { "type": "Point", "coordinates": [ -0.2588218, 51.239507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99347668" }, "bbox": [ -0.5765895, 51.1027974, -0.5765895, 51.1027974 ], "geometry": { "type": "Point", "coordinates": [ -0.5765895, 51.1027974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99347858" }, "bbox": [ -0.576335, 51.1018162, -0.576335, 51.1018162 ], "geometry": { "type": "Point", "coordinates": [ -0.576335, 51.1018162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99347951" }, "bbox": [ -0.5762089, 51.1012897, -0.5762089, 51.1012897 ], "geometry": { "type": "Point", "coordinates": [ -0.5762089, 51.1012897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99348355" }, "bbox": [ -0.5754503, 51.1015961, -0.5754503, 51.1015961 ], "geometry": { "type": "Point", "coordinates": [ -0.5754503, 51.1015961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99348151" }, "bbox": [ -0.5757508, 51.1012799, -0.5757508, 51.1012799 ], "geometry": { "type": "Point", "coordinates": [ -0.5757508, 51.1012799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90340738" }, "bbox": [ -0.7148672, 51.1016088, -0.7148672, 51.1016088 ], "geometry": { "type": "Point", "coordinates": [ -0.7148672, 51.1016088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90340525" }, "bbox": [ -0.7150535, 51.1006108, -0.7150535, 51.1006108 ], "geometry": { "type": "Point", "coordinates": [ -0.7150535, 51.1006108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90341173" }, "bbox": [ -0.7143185, 51.1047595, -0.7143185, 51.1047595 ], "geometry": { "type": "Point", "coordinates": [ -0.7143185, 51.1047595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89348307" }, "bbox": [ -0.7185246, 51.0989196, -0.7185246, 51.0989196 ], "geometry": { "type": "Point", "coordinates": [ -0.7185246, 51.0989196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89348621" }, "bbox": [ -0.7172987, 51.1000147, -0.7172987, 51.1000147 ], "geometry": { "type": "Point", "coordinates": [ -0.7172987, 51.1000147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24522867" }, "bbox": [ -0.220303, 51.2596782, -0.220303, 51.2596782 ], "geometry": { "type": "Point", "coordinates": [ -0.220303, 51.2596782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24523263" }, "bbox": [ -0.2196284, 51.2593268, -0.2196284, 51.2593268 ], "geometry": { "type": "Point", "coordinates": [ -0.2196284, 51.2593268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24523172" }, "bbox": [ -0.2197525, 51.2600891, -0.2197525, 51.2600891 ], "geometry": { "type": "Point", "coordinates": [ -0.2197525, 51.2600891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91472171" }, "bbox": [ -0.6957345, 51.2214047, -0.6957345, 51.2214047 ], "geometry": { "type": "Point", "coordinates": [ -0.6957345, 51.2214047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86450212" }, "bbox": [ -0.770201, 51.1989026, -0.770201, 51.1989026 ], "geometry": { "type": "Point", "coordinates": [ -0.770201, 51.1989026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86450143" }, "bbox": [ -0.7702961, 51.2016509, -0.7702961, 51.2016509 ], "geometry": { "type": "Point", "coordinates": [ -0.7702961, 51.2016509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85458909" }, "bbox": [ -0.7722164, 51.1986118, -0.7722164, 51.1986118 ], "geometry": { "type": "Point", "coordinates": [ -0.7722164, 51.1986118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85458546" }, "bbox": [ -0.7724527, 51.2019531, -0.7724527, 51.2019531 ], "geometry": { "type": "Point", "coordinates": [ -0.7724527, 51.2019531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86436092" }, "bbox": [ -0.7624732, 51.1879859, -0.7624732, 51.1879859 ], "geometry": { "type": "Point", "coordinates": [ -0.7624732, 51.1879859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86434779" }, "bbox": [ -0.7641297, 51.1868547, -0.7641297, 51.1868547 ], "geometry": { "type": "Point", "coordinates": [ -0.7641297, 51.1868547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19437326" }, "bbox": [ -0.2887672, 51.1760595, -0.2887672, 51.1760595 ], "geometry": { "type": "Point", "coordinates": [ -0.2887672, 51.1760595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19437429" }, "bbox": [ -0.2883363, 51.17641, -0.2883363, 51.17641 ], "geometry": { "type": "Point", "coordinates": [ -0.2883363, 51.17641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19437020" }, "bbox": [ -0.288982, 51.1755888, -0.288982, 51.1755888 ], "geometry": { "type": "Point", "coordinates": [ -0.288982, 51.1755888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12396866" }, "bbox": [ -0.390641, 51.1451946, -0.390641, 51.1451946 ], "geometry": { "type": "Point", "coordinates": [ -0.390641, 51.1451946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12396965" }, "bbox": [ -0.3902704, 51.1450904, -0.3902704, 51.1450904 ], "geometry": { "type": "Point", "coordinates": [ -0.3902704, 51.1450904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42541520" }, "bbox": [ 0.0354816, 51.2688969, 0.0354816, 51.2688969 ], "geometry": { "type": "Point", "coordinates": [ 0.0354816, 51.2688969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42543134" }, "bbox": [ 0.0386027, 51.2705021, 0.0386027, 51.2705021 ], "geometry": { "type": "Point", "coordinates": [ 0.0386027, 51.2705021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42543400" }, "bbox": [ 0.038637, 51.2676988, 0.038637, 51.2676988 ], "geometry": { "type": "Point", "coordinates": [ 0.038637, 51.2676988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41538075" }, "bbox": [ 0.0319212, 51.2656691, 0.0319212, 51.2656691 ], "geometry": { "type": "Point", "coordinates": [ 0.0319212, 51.2656691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43513870" }, "bbox": [ 0.0530652, 51.2463966, 0.0530652, 51.2463966 ], "geometry": { "type": "Point", "coordinates": [ 0.0530652, 51.2463966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42527793" }, "bbox": [ 0.0444579, 51.2576025, 0.0444579, 51.2576025 ], "geometry": { "type": "Point", "coordinates": [ 0.0444579, 51.2576025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42524688" }, "bbox": [ 0.0401606, 51.2571539, 0.0401606, 51.2571539 ], "geometry": { "type": "Point", "coordinates": [ 0.0401606, 51.2571539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41548050" }, "bbox": [ 0.0301095, 51.2718465, 0.0301095, 51.2718465 ], "geometry": { "type": "Point", "coordinates": [ 0.0301095, 51.2718465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41533249" }, "bbox": [ 0.0242101, 51.2631609, 0.0242101, 51.2631609 ], "geometry": { "type": "Point", "coordinates": [ 0.0242101, 51.2631609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42548550" }, "bbox": [ 0.0460718, 51.2715726, 0.0460718, 51.2715726 ], "geometry": { "type": "Point", "coordinates": [ 0.0460718, 51.2715726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41531344" }, "bbox": [ 0.0212489, 51.2628159, 0.0212489, 51.2628159 ], "geometry": { "type": "Point", "coordinates": [ 0.0212489, 51.2628159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41531041" }, "bbox": [ 0.019902, 51.2615657, 0.019902, 51.2615657 ], "geometry": { "type": "Point", "coordinates": [ 0.019902, 51.2615657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42545557" }, "bbox": [ 0.0423254, 51.2720391, 0.0423254, 51.2720391 ], "geometry": { "type": "Point", "coordinates": [ 0.0423254, 51.2720391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42538588" }, "bbox": [ 0.0463987, 51.2660973, 0.0463987, 51.2660973 ], "geometry": { "type": "Point", "coordinates": [ 0.0463987, 51.2660973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04402641" }, "bbox": [ -0.510541, 51.1534607, -0.510541, 51.1534607 ], "geometry": { "type": "Point", "coordinates": [ -0.510541, 51.1534607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30455781" }, "bbox": [ -0.1324946, 51.1969653, -0.1324946, 51.1969653 ], "geometry": { "type": "Point", "coordinates": [ -0.1324946, 51.1969653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453877" }, "bbox": [ -0.1352805, 51.1963603, -0.1352805, 51.1963603 ], "geometry": { "type": "Point", "coordinates": [ -0.1352805, 51.1963603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30452627" }, "bbox": [ -0.1371559, 51.1919977, -0.1371559, 51.1919977 ], "geometry": { "type": "Point", "coordinates": [ -0.1371559, 51.1919977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30454033" }, "bbox": [ -0.1351496, 51.1924146, -0.1351496, 51.1924146 ], "geometry": { "type": "Point", "coordinates": [ -0.1351496, 51.1924146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453544" }, "bbox": [ -0.135975, 51.1932882, -0.135975, 51.1932882 ], "geometry": { "type": "Point", "coordinates": [ -0.135975, 51.1932882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10393062" }, "bbox": [ -0.4242904, 51.1452072, -0.4242904, 51.1452072 ], "geometry": { "type": "Point", "coordinates": [ -0.4242904, 51.1452072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10391557" }, "bbox": [ -0.4266468, 51.1448738, -0.4266468, 51.1448738 ], "geometry": { "type": "Point", "coordinates": [ -0.4266468, 51.1448738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10391343" }, "bbox": [ -0.426895, 51.143671, -0.426895, 51.143671 ], "geometry": { "type": "Point", "coordinates": [ -0.426895, 51.143671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22457554" }, "bbox": [ -0.2446491, 51.1958503, -0.2446491, 51.1958503 ], "geometry": { "type": "Point", "coordinates": [ -0.2446491, 51.1958503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11398349" }, "bbox": [ -0.4024424, 51.1440296, -0.4024424, 51.1440296 ], "geometry": { "type": "Point", "coordinates": [ -0.4024424, 51.1440296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06657924" }, "bbox": [ -0.4660258, 51.3764461, -0.4660258, 51.3764461 ], "geometry": { "type": "Point", "coordinates": [ -0.4660258, 51.3764461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06659060" }, "bbox": [ -0.4653015, 51.3798102, -0.4653015, 51.3798102 ], "geometry": { "type": "Point", "coordinates": [ -0.4653015, 51.3798102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89349479" }, "bbox": [ -0.7164893, 51.1056827, -0.7164893, 51.1056827 ], "geometry": { "type": "Point", "coordinates": [ -0.7164893, 51.1056827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89348766" }, "bbox": [ -0.7176754, 51.1041181, -0.7176754, 51.1041181 ], "geometry": { "type": "Point", "coordinates": [ -0.7176754, 51.1041181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89345153" }, "bbox": [ -0.7228513, 51.1031645, -0.7228513, 51.1031645 ], "geometry": { "type": "Point", "coordinates": [ -0.7228513, 51.1031645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89343911" }, "bbox": [ -0.7246548, 51.0992705, -0.7246548, 51.0992705 ], "geometry": { "type": "Point", "coordinates": [ -0.7246548, 51.0992705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89344108" }, "bbox": [ -0.7243448, 51.0990748, -0.7243448, 51.0990748 ], "geometry": { "type": "Point", "coordinates": [ -0.7243448, 51.0990748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89346059" }, "bbox": [ -0.7218092, 51.1036338, -0.7218092, 51.1036338 ], "geometry": { "type": "Point", "coordinates": [ -0.7218092, 51.1036338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89345951" }, "bbox": [ -0.7217528, 51.1029545, -0.7217528, 51.1029545 ], "geometry": { "type": "Point", "coordinates": [ -0.7217528, 51.1029545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89345340" }, "bbox": [ -0.7225965, 51.1019667, -0.7225965, 51.1019667 ], "geometry": { "type": "Point", "coordinates": [ -0.7225965, 51.1019667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89335099" }, "bbox": [ -0.7231434, 51.0982308, -0.7231434, 51.0982308 ], "geometry": { "type": "Point", "coordinates": [ -0.7231434, 51.0982308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89335896" }, "bbox": [ -0.7219641, 51.0978273, -0.7219641, 51.0978273 ], "geometry": { "type": "Point", "coordinates": [ -0.7219641, 51.0978273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89335298" }, "bbox": [ -0.7228623, 51.0981544, -0.7228623, 51.0981544 ], "geometry": { "type": "Point", "coordinates": [ -0.7228623, 51.0981544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89336092" }, "bbox": [ -0.7219044, 51.097584, -0.7219044, 51.097584 ], "geometry": { "type": "Point", "coordinates": [ -0.7219044, 51.097584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89335795" }, "bbox": [ -0.7221092, 51.097795, -0.7221092, 51.097795 ], "geometry": { "type": "Point", "coordinates": [ -0.7221092, 51.097795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89335599" }, "bbox": [ -0.7223206, 51.0981275, -0.7223206, 51.0981275 ], "geometry": { "type": "Point", "coordinates": [ -0.7223206, 51.0981275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91352115" }, "bbox": [ -0.6976814, 51.1084941, -0.6976814, 51.1084941 ], "geometry": { "type": "Point", "coordinates": [ -0.6976814, 51.1084941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91353012" }, "bbox": [ -0.6972843, 51.1081654, -0.6972843, 51.1081654 ], "geometry": { "type": "Point", "coordinates": [ -0.6972843, 51.1081654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354308" }, "bbox": [ -0.6953698, 51.1077396, -0.6953698, 51.1077396 ], "geometry": { "type": "Point", "coordinates": [ -0.6953698, 51.1077396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30401575" }, "bbox": [ -0.1404623, 51.1512558, -0.1404623, 51.1512558 ], "geometry": { "type": "Point", "coordinates": [ -0.1404623, 51.1512558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91326026" }, "bbox": [ -0.6935716, 51.0824444, -0.6935716, 51.0824444 ], "geometry": { "type": "Point", "coordinates": [ -0.6935716, 51.0824444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91325824" }, "bbox": [ -0.693892, 51.0821884, -0.693892, 51.0821884 ], "geometry": { "type": "Point", "coordinates": [ -0.693892, 51.0821884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91326521" }, "bbox": [ -0.6929292, 51.081957, -0.6929292, 51.081957 ], "geometry": { "type": "Point", "coordinates": [ -0.6929292, 51.081957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91327119" }, "bbox": [ -0.6920565, 51.0817434, -0.6920565, 51.0817434 ], "geometry": { "type": "Point", "coordinates": [ -0.6920565, 51.0817434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91326734" }, "bbox": [ -0.6928054, 51.0831051, -0.6928054, 51.0831051 ], "geometry": { "type": "Point", "coordinates": [ -0.6928054, 51.0831051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500808" }, "bbox": [ -0.6966638, 51.2426794, -0.6966638, 51.2426794 ], "geometry": { "type": "Point", "coordinates": [ -0.6966638, 51.2426794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42401713" }, "bbox": [ 0.0311006, 51.1425978, 0.0311006, 51.1425978 ], "geometry": { "type": "Point", "coordinates": [ 0.0311006, 51.1425978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42400509" }, "bbox": [ 0.0291637, 51.1425832, 0.0291637, 51.1425832 ], "geometry": { "type": "Point", "coordinates": [ 0.0291637, 51.1425832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21499790" }, "bbox": [ -0.2551328, 51.2362197, -0.2551328, 51.2362197 ], "geometry": { "type": "Point", "coordinates": [ -0.2551328, 51.2362197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96380171" }, "bbox": [ -0.628126, 51.1398111, -0.628126, 51.1398111 ], "geometry": { "type": "Point", "coordinates": [ -0.628126, 51.1398111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96384592" }, "bbox": [ -0.6239815, 51.1413201, -0.6239815, 51.1413201 ], "geometry": { "type": "Point", "coordinates": [ -0.6239815, 51.1413201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96381980" }, "bbox": [ -0.6262488, 51.1403868, -0.6262488, 51.1403868 ], "geometry": { "type": "Point", "coordinates": [ -0.6262488, 51.1403868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96386287" }, "bbox": [ -0.6201426, 51.1410005, -0.6201426, 51.1410005 ], "geometry": { "type": "Point", "coordinates": [ -0.6201426, 51.1410005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96386175" }, "bbox": [ -0.6206306, 51.1399131, -0.6206306, 51.1399131 ], "geometry": { "type": "Point", "coordinates": [ -0.6206306, 51.1399131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15476765" }, "bbox": [ -0.3451144, 51.216422, -0.3451144, 51.216422 ], "geometry": { "type": "Point", "coordinates": [ -0.3451144, 51.216422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15477384" }, "bbox": [ -0.344239, 51.2177192, -0.344239, 51.2177192 ], "geometry": { "type": "Point", "coordinates": [ -0.344239, 51.2177192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17654106" }, "bbox": [ -0.3147036, 51.3724981, -0.3147036, 51.3724981 ], "geometry": { "type": "Point", "coordinates": [ -0.3147036, 51.3724981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07442778" }, "bbox": [ -0.4662636, 51.1920467, -0.4662636, 51.1920467 ], "geometry": { "type": "Point", "coordinates": [ -0.4662636, 51.1920467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07443071" }, "bbox": [ -0.4662, 51.1920432, -0.4662, 51.1920432 ], "geometry": { "type": "Point", "coordinates": [ -0.4662, 51.1920432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440819" }, "bbox": [ 0.0170377, 51.1795276, 0.0170377, 51.1795276 ], "geometry": { "type": "Point", "coordinates": [ 0.0170377, 51.1795276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41433454" }, "bbox": [ 0.0203778, 51.1734983, 0.0203778, 51.1734983 ], "geometry": { "type": "Point", "coordinates": [ 0.0203778, 51.1734983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41432762" }, "bbox": [ 0.0191286, 51.1747758, 0.0191286, 51.1747758 ], "geometry": { "type": "Point", "coordinates": [ 0.0191286, 51.1747758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40448508" }, "bbox": [ 0.0136037, 51.1784586, 0.0136037, 51.1784586 ], "geometry": { "type": "Point", "coordinates": [ 0.0136037, 51.1784586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03661281" }, "bbox": [ -0.5191057, 51.3910582, -0.5191057, 51.3910582 ], "geometry": { "type": "Point", "coordinates": [ -0.5191057, 51.3910582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03661181" }, "bbox": [ -0.5193722, 51.3910951, -0.5193722, 51.3910951 ], "geometry": { "type": "Point", "coordinates": [ -0.5193722, 51.3910951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03662393" }, "bbox": [ -0.5177113, 51.3920607, -0.5177113, 51.3920607 ], "geometry": { "type": "Point", "coordinates": [ -0.5177113, 51.3920607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03662084" }, "bbox": [ -0.5182414, 51.3912819, -0.5182414, 51.3912819 ], "geometry": { "type": "Point", "coordinates": [ -0.5182414, 51.3912819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03662481" }, "bbox": [ -0.5176176, 51.39096, -0.5176176, 51.39096 ], "geometry": { "type": "Point", "coordinates": [ -0.5176176, 51.39096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14371162" }, "bbox": [ -0.3708069, 51.1265378, -0.3708069, 51.1265378 ], "geometry": { "type": "Point", "coordinates": [ -0.3708069, 51.1265378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13384346" }, "bbox": [ -0.3805419, 51.1340793, -0.3805419, 51.1340793 ], "geometry": { "type": "Point", "coordinates": [ -0.3805419, 51.1340793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13384503" }, "bbox": [ -0.3798103, 51.1303616, -0.3798103, 51.1303616 ], "geometry": { "type": "Point", "coordinates": [ -0.3798103, 51.1303616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13375378" }, "bbox": [ -0.3788748, 51.1281891, -0.3788748, 51.1281891 ], "geometry": { "type": "Point", "coordinates": [ -0.3788748, 51.1281891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18553485" }, "bbox": [ -0.3040852, 51.2895692, -0.3040852, 51.2895692 ], "geometry": { "type": "Point", "coordinates": [ -0.3040852, 51.2895692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18554189" }, "bbox": [ -0.3031525, 51.2898275, -0.3031525, 51.2898275 ], "geometry": { "type": "Point", "coordinates": [ -0.3031525, 51.2898275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00394377" }, "bbox": [ -0.5654737, 51.1484967, -0.5654737, 51.1484967 ], "geometry": { "type": "Point", "coordinates": [ -0.5654737, 51.1484967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07417714" }, "bbox": [ -0.4605776, 51.1591232, -0.4605776, 51.1591232 ], "geometry": { "type": "Point", "coordinates": [ -0.4605776, 51.1591232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466448" }, "bbox": [ -0.8325157, 51.2118217, -0.8325157, 51.2118217 ], "geometry": { "type": "Point", "coordinates": [ -0.8325157, 51.2118217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466849" }, "bbox": [ -0.8318328, 51.2118551, -0.8318328, 51.2118551 ], "geometry": { "type": "Point", "coordinates": [ -0.8318328, 51.2118551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469476" }, "bbox": [ -0.8288877, 51.2140238, -0.8288877, 51.2140238 ], "geometry": { "type": "Point", "coordinates": [ -0.8288877, 51.2140238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81463475" }, "bbox": [ -0.8366341, 51.2138283, -0.8366341, 51.2138283 ], "geometry": { "type": "Point", "coordinates": [ -0.8366341, 51.2138283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469154" }, "bbox": [ -0.8266996, 51.2122692, -0.8266996, 51.2122692 ], "geometry": { "type": "Point", "coordinates": [ -0.8266996, 51.2122692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466557" }, "bbox": [ -0.8322296, 51.2125355, -0.8322296, 51.2125355 ], "geometry": { "type": "Point", "coordinates": [ -0.8322296, 51.2125355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81467350" }, "bbox": [ -0.8311701, 51.2119286, -0.8311701, 51.2119286 ], "geometry": { "type": "Point", "coordinates": [ -0.8311701, 51.2119286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81465846" }, "bbox": [ -0.8332174, 51.2114733, -0.8332174, 51.2114733 ], "geometry": { "type": "Point", "coordinates": [ -0.8332174, 51.2114733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81467260" }, "bbox": [ -0.8313714, 51.2128311, -0.8313714, 51.2128311 ], "geometry": { "type": "Point", "coordinates": [ -0.8313714, 51.2128311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81465651" }, "bbox": [ -0.8336841, 51.2120169, -0.8336841, 51.2120169 ], "geometry": { "type": "Point", "coordinates": [ -0.8336841, 51.2120169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81462576" }, "bbox": [ -0.8380931, 51.2142421, -0.8380931, 51.2142421 ], "geometry": { "type": "Point", "coordinates": [ -0.8380931, 51.2142421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94488289" }, "bbox": [ -0.6430755, 51.2314091, -0.6430755, 51.2314091 ], "geometry": { "type": "Point", "coordinates": [ -0.6430755, 51.2314091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92503433" }, "bbox": [ -0.6785001, 51.2446886, -0.6785001, 51.2446886 ], "geometry": { "type": "Point", "coordinates": [ -0.6785001, 51.2446886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502235" }, "bbox": [ -0.680416, 51.2447719, -0.680416, 51.2447719 ], "geometry": { "type": "Point", "coordinates": [ -0.680416, 51.2447719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501955" }, "bbox": [ -0.6806433, 51.2469194, -0.6806433, 51.2469194 ], "geometry": { "type": "Point", "coordinates": [ -0.6806433, 51.2469194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502359" }, "bbox": [ -0.6797814, 51.247188, -0.6797814, 51.247188 ], "geometry": { "type": "Point", "coordinates": [ -0.6797814, 51.247188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92500529" }, "bbox": [ -0.6826035, 51.2443943, -0.6826035, 51.2443943 ], "geometry": { "type": "Point", "coordinates": [ -0.6826035, 51.2443943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92500139" }, "bbox": [ -0.6832105, 51.2453626, -0.6832105, 51.2453626 ], "geometry": { "type": "Point", "coordinates": [ -0.6832105, 51.2453626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501244" }, "bbox": [ -0.6818354, 51.2457295, -0.6818354, 51.2457295 ], "geometry": { "type": "Point", "coordinates": [ -0.6818354, 51.2457295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92500332" }, "bbox": [ -0.6832018, 51.2446582, -0.6832018, 51.2446582 ], "geometry": { "type": "Point", "coordinates": [ -0.6832018, 51.2446582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502039" }, "bbox": [ -0.6803412, 51.2452608, -0.6803412, 51.2452608 ], "geometry": { "type": "Point", "coordinates": [ -0.6803412, 51.2452608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92503332" }, "bbox": [ -0.6786322, 51.2445968, -0.6786322, 51.2445968 ], "geometry": { "type": "Point", "coordinates": [ -0.6786322, 51.2445968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501751" }, "bbox": [ -0.6808553, 51.2463298, -0.6808553, 51.2463298 ], "geometry": { "type": "Point", "coordinates": [ -0.6808553, 51.2463298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502153" }, "bbox": [ -0.6804871, 51.24648, -0.6804871, 51.24648 ], "geometry": { "type": "Point", "coordinates": [ -0.6804871, 51.24648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20502118" }, "bbox": [ -0.2794134, 51.2381246, -0.2794134, 51.2381246 ], "geometry": { "type": "Point", "coordinates": [ -0.2794134, 51.2381246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408843" }, "bbox": [ -0.2587635, 51.1500853, -0.2587635, 51.1500853 ], "geometry": { "type": "Point", "coordinates": [ -0.2587635, 51.1500853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408027" }, "bbox": [ -0.2599857, 51.1487863, -0.2599857, 51.1487863 ], "geometry": { "type": "Point", "coordinates": [ -0.2599857, 51.1487863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21414801" }, "bbox": [ -0.2642792, 51.1554796, -0.2642792, 51.1554796 ], "geometry": { "type": "Point", "coordinates": [ -0.2642792, 51.1554796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21416009" }, "bbox": [ -0.2617578, 51.1558852, -0.2617578, 51.1558852 ], "geometry": { "type": "Point", "coordinates": [ -0.2617578, 51.1558852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21406774" }, "bbox": [ -0.2632026, 51.153333, -0.2632026, 51.153333 ], "geometry": { "type": "Point", "coordinates": [ -0.2632026, 51.153333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21406267" }, "bbox": [ -0.2623377, 51.1524496, -0.2623377, 51.1524496 ], "geometry": { "type": "Point", "coordinates": [ -0.2623377, 51.1524496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21404447" }, "bbox": [ -0.2652279, 51.1509731, -0.2652279, 51.1509731 ], "geometry": { "type": "Point", "coordinates": [ -0.2652279, 51.1509731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21404767" }, "bbox": [ -0.2646731, 51.1520572, -0.2646731, 51.1520572 ], "geometry": { "type": "Point", "coordinates": [ -0.2646731, 51.1520572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401893" }, "bbox": [ -0.253948, 51.1541445, -0.253948, 51.1541445 ], "geometry": { "type": "Point", "coordinates": [ -0.253948, 51.1541445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22402669" }, "bbox": [ -0.2531257, 51.1525946, -0.2531257, 51.1525946 ], "geometry": { "type": "Point", "coordinates": [ -0.2531257, 51.1525946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22402283" }, "bbox": [ -0.2537344, 51.1536673, -0.2537344, 51.1536673 ], "geometry": { "type": "Point", "coordinates": [ -0.2537344, 51.1536673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21402164" }, "bbox": [ -0.2683244, 51.1522701, -0.2683244, 51.1522701 ], "geometry": { "type": "Point", "coordinates": [ -0.2683244, 51.1522701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21415522" }, "bbox": [ -0.2637963, 51.1570808, -0.2637963, 51.1570808 ], "geometry": { "type": "Point", "coordinates": [ -0.2637963, 51.1570808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401593" }, "bbox": [ -0.2547971, 51.1545506, -0.2547971, 51.1545506 ], "geometry": { "type": "Point", "coordinates": [ -0.2547971, 51.1545506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408873" }, "bbox": [ -0.2580503, 51.1528203, -0.2580503, 51.1528203 ], "geometry": { "type": "Point", "coordinates": [ -0.2580503, 51.1528203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408876" }, "bbox": [ -0.25855, 51.1532229, -0.25855, 51.1532229 ], "geometry": { "type": "Point", "coordinates": [ -0.25855, 51.1532229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408878" }, "bbox": [ -0.2585781, 51.1533411, -0.2585781, 51.1533411 ], "geometry": { "type": "Point", "coordinates": [ -0.2585781, 51.1533411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21409379" }, "bbox": [ -0.2580556, 51.1533517, -0.2580556, 51.1533517 ], "geometry": { "type": "Point", "coordinates": [ -0.2580556, 51.1533517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21409277" }, "bbox": [ -0.2579969, 51.1532479, -0.2579969, 51.1532479 ], "geometry": { "type": "Point", "coordinates": [ -0.2579969, 51.1532479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21409579" }, "bbox": [ -0.2576164, 51.1534755, -0.2576164, 51.1534755 ], "geometry": { "type": "Point", "coordinates": [ -0.2576164, 51.1534755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21409179" }, "bbox": [ -0.2580848, 51.153462, -0.2580848, 51.153462 ], "geometry": { "type": "Point", "coordinates": [ -0.2580848, 51.153462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408661" }, "bbox": [ -0.2589412, 51.151728, -0.2589412, 51.151728 ], "geometry": { "type": "Point", "coordinates": [ -0.2589412, 51.151728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408574" }, "bbox": [ -0.2589899, 51.153023, -0.2589899, 51.153023 ], "geometry": { "type": "Point", "coordinates": [ -0.2589899, 51.153023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21407394" }, "bbox": [ -0.2608356, 51.1547912, -0.2608356, 51.1547912 ], "geometry": { "type": "Point", "coordinates": [ -0.2608356, 51.1547912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21405688" }, "bbox": [ -0.2632729, 51.154205, -0.2632729, 51.154205 ], "geometry": { "type": "Point", "coordinates": [ -0.2632729, 51.154205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22400883" }, "bbox": [ -0.2556593, 51.1537901, -0.2556593, 51.1537901 ], "geometry": { "type": "Point", "coordinates": [ -0.2556593, 51.1537901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25535669" }, "bbox": [ -0.2016061, 51.2685016, -0.2016061, 51.2685016 ], "geometry": { "type": "Point", "coordinates": [ -0.2016061, 51.2685016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25535374" }, "bbox": [ -0.2018639, 51.2690311, -0.2018639, 51.2690311 ], "geometry": { "type": "Point", "coordinates": [ -0.2018639, 51.2690311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25536469" }, "bbox": [ -0.2004764, 51.268603, -0.2004764, 51.268603 ], "geometry": { "type": "Point", "coordinates": [ -0.2004764, 51.268603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12393154" }, "bbox": [ -0.3958872, 51.1441489, -0.3958872, 51.1441489 ], "geometry": { "type": "Point", "coordinates": [ -0.3958872, 51.1441489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95551446" }, "bbox": [ -0.6369854, 51.2903653, -0.6369854, 51.2903653 ], "geometry": { "type": "Point", "coordinates": [ -0.6369854, 51.2903653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95553530" }, "bbox": [ -0.6339635, 51.2889257, -0.6339635, 51.2889257 ], "geometry": { "type": "Point", "coordinates": [ -0.6339635, 51.2889257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95553143" }, "bbox": [ -0.6344235, 51.2900699, -0.6344235, 51.2900699 ], "geometry": { "type": "Point", "coordinates": [ -0.6344235, 51.2900699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95552048" }, "bbox": [ -0.636016, 51.2906369, -0.636016, 51.2906369 ], "geometry": { "type": "Point", "coordinates": [ -0.636016, 51.2906369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95550748" }, "bbox": [ -0.6379893, 51.2905468, -0.6379893, 51.2905468 ], "geometry": { "type": "Point", "coordinates": [ -0.6379893, 51.2905468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95551340" }, "bbox": [ -0.637112, 51.28979, -0.637112, 51.28979 ], "geometry": { "type": "Point", "coordinates": [ -0.637112, 51.28979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95552850" }, "bbox": [ -0.6348016, 51.290683, -0.6348016, 51.290683 ], "geometry": { "type": "Point", "coordinates": [ -0.6348016, 51.290683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91357409" }, "bbox": [ -0.6909126, 51.1077766, -0.6909126, 51.1077766 ], "geometry": { "type": "Point", "coordinates": [ -0.6909126, 51.1077766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91357112" }, "bbox": [ -0.6912888, 51.1080813, -0.6912888, 51.1080813 ], "geometry": { "type": "Point", "coordinates": [ -0.6912888, 51.1080813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91344994" }, "bbox": [ -0.694404, 51.106537, -0.694404, 51.106537 ], "geometry": { "type": "Point", "coordinates": [ -0.694404, 51.106537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91345086" }, "bbox": [ -0.6944209, 51.1057121, -0.6944209, 51.1057121 ], "geometry": { "type": "Point", "coordinates": [ -0.6944209, 51.1057121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91345390" }, "bbox": [ -0.6938306, 51.1060713, -0.6938306, 51.1060713 ], "geometry": { "type": "Point", "coordinates": [ -0.6938306, 51.1060713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91356101" }, "bbox": [ -0.6923867, 51.1069719, -0.6923867, 51.1069719 ], "geometry": { "type": "Point", "coordinates": [ -0.6923867, 51.1069719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03381656" }, "bbox": [ -0.5270084, 51.1371794, -0.5270084, 51.1371794 ], "geometry": { "type": "Point", "coordinates": [ -0.5270084, 51.1371794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02387837" }, "bbox": [ -0.5322987, 51.1353906, -0.5322987, 51.1353906 ], "geometry": { "type": "Point", "coordinates": [ -0.5322987, 51.1353906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388137" }, "bbox": [ -0.5321374, 51.1354602, -0.5321374, 51.1354602 ], "geometry": { "type": "Point", "coordinates": [ -0.5321374, 51.1354602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06449067" }, "bbox": [ -0.4717313, 51.1913249, -0.4717313, 51.1913249 ], "geometry": { "type": "Point", "coordinates": [ -0.4717313, 51.1913249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543346" }, "bbox": [ -0.5627667, 51.2804402, -0.5627667, 51.2804402 ], "geometry": { "type": "Point", "coordinates": [ -0.5627667, 51.2804402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00544363" }, "bbox": [ -0.5613734, 51.2819134, -0.5613734, 51.2819134 ], "geometry": { "type": "Point", "coordinates": [ -0.5613734, 51.2819134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00544053" }, "bbox": [ -0.5619274, 51.2814258, -0.5619274, 51.2814258 ], "geometry": { "type": "Point", "coordinates": [ -0.5619274, 51.2814258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00544047" }, "bbox": [ -0.5616739, 51.2806311, -0.5616739, 51.2806311 ], "geometry": { "type": "Point", "coordinates": [ -0.5616739, 51.2806311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01464955" }, "bbox": [ -0.5482437, 51.2092227, -0.5482437, 51.2092227 ], "geometry": { "type": "Point", "coordinates": [ -0.5482437, 51.2092227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00451758" }, "bbox": [ -0.5675762, 51.2006318, -0.5675762, 51.2006318 ], "geometry": { "type": "Point", "coordinates": [ -0.5675762, 51.2006318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465192" }, "bbox": [ -0.5619018, 51.2126045, -0.5619018, 51.2126045 ], "geometry": { "type": "Point", "coordinates": [ -0.5619018, 51.2126045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460355" }, "bbox": [ -0.5694604, 51.2093982, -0.5694604, 51.2093982 ], "geometry": { "type": "Point", "coordinates": [ -0.5694604, 51.2093982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00466987" }, "bbox": [ -0.5597231, 51.2122058, -0.5597231, 51.2122058 ], "geometry": { "type": "Point", "coordinates": [ -0.5597231, 51.2122058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93357502" }, "bbox": [ -0.6604643, 51.1067281, -0.6604643, 51.1067281 ], "geometry": { "type": "Point", "coordinates": [ -0.6604643, 51.1067281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93348297" }, "bbox": [ -0.6608056, 51.1064555, -0.6608056, 51.1064555 ], "geometry": { "type": "Point", "coordinates": [ -0.6608056, 51.1064555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02522928" }, "bbox": [ -0.5351433, 51.2602234, -0.5351433, 51.2602234 ], "geometry": { "type": "Point", "coordinates": [ -0.5351433, 51.2602234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93558592" }, "bbox": [ -0.6554169, 51.2947502, -0.6554169, 51.2947502 ], "geometry": { "type": "Point", "coordinates": [ -0.6554169, 51.2947502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93566910" }, "bbox": [ -0.6566185, 51.2964526, -0.6566185, 51.2964526 ], "geometry": { "type": "Point", "coordinates": [ -0.6566185, 51.2964526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347058" }, "bbox": [ -0.6631222, 51.102708, -0.6631222, 51.102708 ], "geometry": { "type": "Point", "coordinates": [ -0.6631222, 51.102708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93345055" }, "bbox": [ -0.6661841, 51.102549, -0.6661841, 51.102549 ], "geometry": { "type": "Point", "coordinates": [ -0.6661841, 51.102549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93346152" }, "bbox": [ -0.6642147, 51.1023092, -0.6642147, 51.1023092 ], "geometry": { "type": "Point", "coordinates": [ -0.6642147, 51.1023092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93346549" }, "bbox": [ -0.6638395, 51.1021233, -0.6638395, 51.1021233 ], "geometry": { "type": "Point", "coordinates": [ -0.6638395, 51.1021233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93346952" }, "bbox": [ -0.6632446, 51.1023424, -0.6632446, 51.1023424 ], "geometry": { "type": "Point", "coordinates": [ -0.6632446, 51.1023424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347151" }, "bbox": [ -0.66282, 51.1022813, -0.66282, 51.1022813 ], "geometry": { "type": "Point", "coordinates": [ -0.66282, 51.1022813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347359" }, "bbox": [ -0.6625522, 51.1030038, -0.6625522, 51.1030038 ], "geometry": { "type": "Point", "coordinates": [ -0.6625522, 51.1030038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95560410" }, "bbox": [ -0.6375261, 51.2959574, -0.6375261, 51.2959574 ], "geometry": { "type": "Point", "coordinates": [ -0.6375261, 51.2959574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95555943" }, "bbox": [ -0.6295478, 51.2879357, -0.6295478, 51.2879357 ], "geometry": { "type": "Point", "coordinates": [ -0.6295478, 51.2879357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95549135" }, "bbox": [ -0.6269602, 51.2802142, -0.6269602, 51.2802142 ], "geometry": { "type": "Point", "coordinates": [ -0.6269602, 51.2802142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95553974" }, "bbox": [ -0.6336336, 51.2931179, -0.6336336, 51.2931179 ], "geometry": { "type": "Point", "coordinates": [ -0.6336336, 51.2931179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00488593" }, "bbox": [ -0.5569559, 51.2307145, -0.5569559, 51.2307145 ], "geometry": { "type": "Point", "coordinates": [ -0.5569559, 51.2307145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95546570" }, "bbox": [ -0.630688, 51.2833127, -0.630688, 51.2833127 ], "geometry": { "type": "Point", "coordinates": [ -0.630688, 51.2833127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97505486" }, "bbox": [ -0.6038119, 51.2485498, -0.6038119, 51.2485498 ], "geometry": { "type": "Point", "coordinates": [ -0.6038119, 51.2485498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99513112" }, "bbox": [ -0.578346, 51.2506914, -0.578346, 51.2506914 ], "geometry": { "type": "Point", "coordinates": [ -0.578346, 51.2506914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97505880" }, "bbox": [ -0.6033734, 51.2480538, -0.6033734, 51.2480538 ], "geometry": { "type": "Point", "coordinates": [ -0.6033734, 51.2480538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99510808" }, "bbox": [ -0.5816743, 51.2503155, -0.5816743, 51.2503155 ], "geometry": { "type": "Point", "coordinates": [ -0.5816743, 51.2503155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97506882" }, "bbox": [ -0.6017007, 51.2482687, -0.6017007, 51.2482687 ], "geometry": { "type": "Point", "coordinates": [ -0.6017007, 51.2482687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99516007" }, "bbox": [ -0.5741935, 51.2501763, -0.5741935, 51.2501763 ], "geometry": { "type": "Point", "coordinates": [ -0.5741935, 51.2501763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97509676" }, "bbox": [ -0.597848, 51.2476468, -0.597848, 51.2476468 ], "geometry": { "type": "Point", "coordinates": [ -0.597848, 51.2476468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97508780" }, "bbox": [ -0.5991014, 51.248026, -0.5991014, 51.248026 ], "geometry": { "type": "Point", "coordinates": [ -0.5991014, 51.248026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97508876" }, "bbox": [ -0.599295, 51.247599, -0.599295, 51.247599 ], "geometry": { "type": "Point", "coordinates": [ -0.599295, 51.247599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95469385" }, "bbox": [ -0.6280952, 51.2128912, -0.6280952, 51.2128912 ], "geometry": { "type": "Point", "coordinates": [ -0.6280952, 51.2128912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01462377" }, "bbox": [ -0.5520238, 51.2111783, -0.5520238, 51.2111783 ], "geometry": { "type": "Point", "coordinates": [ -0.5520238, 51.2111783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00452754" }, "bbox": [ -0.565578, 51.1999951, -0.565578, 51.1999951 ], "geometry": { "type": "Point", "coordinates": [ -0.565578, 51.1999951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00463079" }, "bbox": [ -0.5652752, 51.2114938, -0.5652752, 51.2114938 ], "geometry": { "type": "Point", "coordinates": [ -0.5652752, 51.2114938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460341" }, "bbox": [ -0.5694704, 51.2081616, -0.5694704, 51.2081616 ], "geometry": { "type": "Point", "coordinates": [ -0.5694704, 51.2081616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460351" }, "bbox": [ -0.56942, 51.2090696, -0.56942, 51.2090696 ], "geometry": { "type": "Point", "coordinates": [ -0.56942, 51.2090696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00515325" }, "bbox": [ -0.5608572, 51.2516512, -0.5608572, 51.2516512 ], "geometry": { "type": "Point", "coordinates": [ -0.5608572, 51.2516512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95548334" }, "bbox": [ -0.6273473, 51.2801766, -0.6273473, 51.2801766 ], "geometry": { "type": "Point", "coordinates": [ -0.6273473, 51.2801766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96540278" }, "bbox": [ -0.624391, 51.2842621, -0.624391, 51.2842621 ], "geometry": { "type": "Point", "coordinates": [ -0.624391, 51.2842621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95548050" }, "bbox": [ -0.6277847, 51.2816887, -0.6277847, 51.2816887 ], "geometry": { "type": "Point", "coordinates": [ -0.6277847, 51.2816887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95549033" }, "bbox": [ -0.6263296, 51.2801311, -0.6263296, 51.2801311 ], "geometry": { "type": "Point", "coordinates": [ -0.6263296, 51.2801311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95546341" }, "bbox": [ -0.6302013, 51.2808256, -0.6302013, 51.2808256 ], "geometry": { "type": "Point", "coordinates": [ -0.6302013, 51.2808256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02552786" }, "bbox": [ -0.534715, 51.2927037, -0.534715, 51.2927037 ], "geometry": { "type": "Point", "coordinates": [ -0.534715, 51.2927037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95548642" }, "bbox": [ -0.6269433, 51.2808991, -0.6269433, 51.2808991 ], "geometry": { "type": "Point", "coordinates": [ -0.6269433, 51.2808991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02552590" }, "bbox": [ -0.5349339, 51.2929645, -0.5349339, 51.2929645 ], "geometry": { "type": "Point", "coordinates": [ -0.5349339, 51.2929645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99450154" }, "bbox": [ -0.5840498, 51.2005498, -0.5840498, 51.2005498 ], "geometry": { "type": "Point", "coordinates": [ -0.5840498, 51.2005498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98457579" }, "bbox": [ -0.5880317, 51.2024325, -0.5880317, 51.2024325 ], "geometry": { "type": "Point", "coordinates": [ -0.5880317, 51.2024325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98455996" }, "bbox": [ -0.5899734, 51.204388, -0.5899734, 51.204388 ], "geometry": { "type": "Point", "coordinates": [ -0.5899734, 51.204388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99479714" }, "bbox": [ -0.5701636, 51.2148499, -0.5701636, 51.2148499 ], "geometry": { "type": "Point", "coordinates": [ -0.5701636, 51.2148499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00470906" }, "bbox": [ -0.5681905, 51.213981, -0.5681905, 51.213981 ], "geometry": { "type": "Point", "coordinates": [ -0.5681905, 51.213981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94546579" }, "bbox": [ -0.6446685, 51.2843434, -0.6446685, 51.2843434 ], "geometry": { "type": "Point", "coordinates": [ -0.6446685, 51.2843434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00510510" }, "bbox": [ -0.5678155, 51.2503158, -0.5678155, 51.2503158 ], "geometry": { "type": "Point", "coordinates": [ -0.5678155, 51.2503158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02513681" }, "bbox": [ -0.5344687, 51.2562983, -0.5344687, 51.2562983 ], "geometry": { "type": "Point", "coordinates": [ -0.5344687, 51.2562983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02512987" }, "bbox": [ -0.5352722, 51.2569511, -0.5352722, 51.2569511 ], "geometry": { "type": "Point", "coordinates": [ -0.5352722, 51.2569511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02514766" }, "bbox": [ -0.5320055, 51.2542394, -0.5320055, 51.2542394 ], "geometry": { "type": "Point", "coordinates": [ -0.5320055, 51.2542394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00517349" }, "bbox": [ -0.5590094, 51.2529071, -0.5590094, 51.2529071 ], "geometry": { "type": "Point", "coordinates": [ -0.5590094, 51.2529071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99477065" }, "bbox": [ -0.5739805, 51.2193856, -0.5739805, 51.2193856 ], "geometry": { "type": "Point", "coordinates": [ -0.5739805, 51.2193856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99476836" }, "bbox": [ -0.5742284, 51.2167582, -0.5742284, 51.2167582 ], "geometry": { "type": "Point", "coordinates": [ -0.5742284, 51.2167582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98483083" }, "bbox": [ -0.5935085, 51.2303484, -0.5935085, 51.2303484 ], "geometry": { "type": "Point", "coordinates": [ -0.5935085, 51.2303484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98483095" }, "bbox": [ -0.5934007, 51.2312817, -0.5934007, 51.2312817 ], "geometry": { "type": "Point", "coordinates": [ -0.5934007, 51.2312817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98485397" }, "bbox": [ -0.5893317, 51.2313037, -0.5893317, 51.2313037 ], "geometry": { "type": "Point", "coordinates": [ -0.5893317, 51.2313037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98481497" }, "bbox": [ -0.5955766, 51.2314981, -0.5955766, 51.2314981 ], "geometry": { "type": "Point", "coordinates": [ -0.5955766, 51.2314981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97487077" }, "bbox": [ -0.6051484, 51.2296916, -0.6051484, 51.2296916 ], "geometry": { "type": "Point", "coordinates": [ -0.6051484, 51.2296916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02522851" }, "bbox": [ -0.5354809, 51.2626223, -0.5354809, 51.2626223 ], "geometry": { "type": "Point", "coordinates": [ -0.5354809, 51.2626223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00511810" }, "bbox": [ -0.5672497, 51.2499772, -0.5672497, 51.2499772 ], "geometry": { "type": "Point", "coordinates": [ -0.5672497, 51.2499772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00501590" }, "bbox": [ -0.5667397, 51.2486879, -0.5667397, 51.2486879 ], "geometry": { "type": "Point", "coordinates": [ -0.5667397, 51.2486879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99486121" }, "bbox": [ -0.5747658, 51.2244068, -0.5747658, 51.2244068 ], "geometry": { "type": "Point", "coordinates": [ -0.5747658, 51.2244068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99487674" }, "bbox": [ -0.5726112, 51.2296484, -0.5726112, 51.2296484 ], "geometry": { "type": "Point", "coordinates": [ -0.5726112, 51.2296484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99487187" }, "bbox": [ -0.5731114, 51.2303219, -0.5731114, 51.2303219 ], "geometry": { "type": "Point", "coordinates": [ -0.5731114, 51.2303219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99486932" }, "bbox": [ -0.5736841, 51.2255431, -0.5736841, 51.2255431 ], "geometry": { "type": "Point", "coordinates": [ -0.5736841, 51.2255431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97495109" }, "bbox": [ -0.6045405, 51.2328331, -0.6045405, 51.2328331 ], "geometry": { "type": "Point", "coordinates": [ -0.6045405, 51.2328331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82425943" }, "bbox": [ -0.8198977, 51.1751991, -0.8198977, 51.1751991 ], "geometry": { "type": "Point", "coordinates": [ -0.8198977, 51.1751991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82427663" }, "bbox": [ -0.8174978, 51.1770969, -0.8174978, 51.1770969 ], "geometry": { "type": "Point", "coordinates": [ -0.8174978, 51.1770969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82426858" }, "bbox": [ -0.8186407, 51.1764247, -0.8186407, 51.1764247 ], "geometry": { "type": "Point", "coordinates": [ -0.8186407, 51.1764247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82425712" }, "bbox": [ -0.8202897, 51.1724403, -0.8202897, 51.1724403 ], "geometry": { "type": "Point", "coordinates": [ -0.8202897, 51.1724403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82425813" }, "bbox": [ -0.820057, 51.1725192, -0.820057, 51.1725192 ], "geometry": { "type": "Point", "coordinates": [ -0.820057, 51.1725192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82425412" }, "bbox": [ -0.8209778, 51.1724829, -0.8209778, 51.1724829 ], "geometry": { "type": "Point", "coordinates": [ -0.8209778, 51.1724829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82426271" }, "bbox": [ -0.8196874, 51.1774622, -0.8196874, 51.1774622 ], "geometry": { "type": "Point", "coordinates": [ -0.8196874, 51.1774622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03545461" }, "bbox": [ -0.5167218, 51.2812984, -0.5167218, 51.2812984 ], "geometry": { "type": "Point", "coordinates": [ -0.5167218, 51.2812984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01521120" }, "bbox": [ -0.5523372, 51.259998, -0.5523372, 51.259998 ], "geometry": { "type": "Point", "coordinates": [ -0.5523372, 51.259998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01527142" }, "bbox": [ -0.5435921, 51.2618508, -0.5435921, 51.2618508 ], "geometry": { "type": "Point", "coordinates": [ -0.5435921, 51.2618508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01526247" }, "bbox": [ -0.5449793, 51.2625252, -0.5449793, 51.2625252 ], "geometry": { "type": "Point", "coordinates": [ -0.5449793, 51.2625252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86444678" }, "bbox": [ -0.7639937, 51.1955849, -0.7639937, 51.1955849 ], "geometry": { "type": "Point", "coordinates": [ -0.7639937, 51.1955849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86444094" }, "bbox": [ -0.76465, 51.1971301, -0.76465, 51.1971301 ], "geometry": { "type": "Point", "coordinates": [ -0.76465, 51.1971301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86444080" }, "bbox": [ -0.7657372, 51.1967061, -0.7657372, 51.1967061 ], "geometry": { "type": "Point", "coordinates": [ -0.7657372, 51.1967061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01485332" }, "bbox": [ -0.5477105, 51.2250311, -0.5477105, 51.2250311 ], "geometry": { "type": "Point", "coordinates": [ -0.5477105, 51.2250311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01486800" }, "bbox": [ -0.5453403, 51.2222013, -0.5453403, 51.2222013 ], "geometry": { "type": "Point", "coordinates": [ -0.5453403, 51.2222013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481642" }, "bbox": [ -0.5525459, 51.2259891, -0.5525459, 51.2259891 ], "geometry": { "type": "Point", "coordinates": [ -0.5525459, 51.2259891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481341" }, "bbox": [ -0.5529203, 51.2259384, -0.5529203, 51.2259384 ], "geometry": { "type": "Point", "coordinates": [ -0.5529203, 51.2259384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481141" }, "bbox": [ -0.5533178, 51.2259046, -0.5533178, 51.2259046 ], "geometry": { "type": "Point", "coordinates": [ -0.5533178, 51.2259046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01486455" }, "bbox": [ -0.5465431, 51.2271059, -0.5465431, 51.2271059 ], "geometry": { "type": "Point", "coordinates": [ -0.5465431, 51.2271059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01486550" }, "bbox": [ -0.5453118, 51.2268282, -0.5453118, 51.2268282 ], "geometry": { "type": "Point", "coordinates": [ -0.5453118, 51.2268282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01488807" }, "bbox": [ -0.542414, 51.2228192, -0.542414, 51.2228192 ], "geometry": { "type": "Point", "coordinates": [ -0.542414, 51.2228192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03546168" }, "bbox": [ -0.5158211, 51.2818814, -0.5158211, 51.2818814 ], "geometry": { "type": "Point", "coordinates": [ -0.5158211, 51.2818814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03546568" }, "bbox": [ -0.5151405, 51.2818986, -0.5151405, 51.2818986 ], "geometry": { "type": "Point", "coordinates": [ -0.5151405, 51.2818986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03545069" }, "bbox": [ -0.5172413, 51.2820368, -0.5172413, 51.2820368 ], "geometry": { "type": "Point", "coordinates": [ -0.5172413, 51.2820368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01488817" }, "bbox": [ -0.5425969, 51.2236705, -0.5425969, 51.2236705 ], "geometry": { "type": "Point", "coordinates": [ -0.5425969, 51.2236705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01483143" }, "bbox": [ -0.5504951, 51.2261702, -0.5504951, 51.2261702 ], "geometry": { "type": "Point", "coordinates": [ -0.5504951, 51.2261702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01489732" }, "bbox": [ -0.5424846, 51.225925, -0.5424846, 51.225925 ], "geometry": { "type": "Point", "coordinates": [ -0.5424846, 51.225925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01474991" }, "bbox": [ -0.5479859, 51.2214477, -0.5479859, 51.2214477 ], "geometry": { "type": "Point", "coordinates": [ -0.5479859, 51.2214477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01472096" }, "bbox": [ -0.551872, 51.2219237, -0.551872, 51.2219237 ], "geometry": { "type": "Point", "coordinates": [ -0.551872, 51.2219237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470154" }, "bbox": [ -0.5267205, 51.217797, -0.5267205, 51.217797 ], "geometry": { "type": "Point", "coordinates": [ -0.5267205, 51.217797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03471666" }, "bbox": [ -0.5240355, 51.2188791, -0.5240355, 51.2188791 ], "geometry": { "type": "Point", "coordinates": [ -0.5240355, 51.2188791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470959" }, "bbox": [ -0.5252518, 51.218299, -0.5252518, 51.218299 ], "geometry": { "type": "Point", "coordinates": [ -0.5252518, 51.218299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470359" }, "bbox": [ -0.5262016, 51.2183634, -0.5262016, 51.2183634 ], "geometry": { "type": "Point", "coordinates": [ -0.5262016, 51.2183634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04620193" }, "bbox": [ -0.5077375, 51.3559921, -0.5077375, 51.3559921 ], "geometry": { "type": "Point", "coordinates": [ -0.5077375, 51.3559921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407310" }, "bbox": [ -0.3037996, 51.147899, -0.3037996, 51.147899 ], "geometry": { "type": "Point", "coordinates": [ -0.3037996, 51.147899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407709" }, "bbox": [ -0.3030574, 51.1478092, -0.3030574, 51.1478092 ], "geometry": { "type": "Point", "coordinates": [ -0.3030574, 51.1478092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407120" }, "bbox": [ -0.304281, 51.1488114, -0.304281, 51.1488114 ], "geometry": { "type": "Point", "coordinates": [ -0.304281, 51.1488114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18406716" }, "bbox": [ -0.3048228, 51.1484592, -0.3048228, 51.1484592 ], "geometry": { "type": "Point", "coordinates": [ -0.3048228, 51.1484592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407213" }, "bbox": [ -0.3040614, 51.1481388, -0.3040614, 51.1481388 ], "geometry": { "type": "Point", "coordinates": [ -0.3040614, 51.1481388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407315" }, "bbox": [ -0.30382, 51.148319, -0.30382, 51.148319 ], "geometry": { "type": "Point", "coordinates": [ -0.30382, 51.148319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18406806" }, "bbox": [ -0.3046454, 51.1474926, -0.3046454, 51.1474926 ], "geometry": { "type": "Point", "coordinates": [ -0.3046454, 51.1474926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04622588" }, "bbox": [ -0.5041583, 51.3554735, -0.5041583, 51.3554735 ], "geometry": { "type": "Point", "coordinates": [ -0.5041583, 51.3554735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04623974" }, "bbox": [ -0.5035646, 51.3546655, -0.5035646, 51.3546655 ], "geometry": { "type": "Point", "coordinates": [ -0.5035646, 51.3546655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04638518" }, "bbox": [ -0.4955401, 51.357797, -0.4955401, 51.357797 ], "geometry": { "type": "Point", "coordinates": [ -0.4955401, 51.357797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04635759" }, "bbox": [ -0.4994433, 51.3617102, -0.4994433, 51.3617102 ], "geometry": { "type": "Point", "coordinates": [ -0.4994433, 51.3617102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04635638" }, "bbox": [ -0.4996049, 51.3599436, -0.4996049, 51.3599436 ], "geometry": { "type": "Point", "coordinates": [ -0.4996049, 51.3599436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03629568" }, "bbox": [ -0.5087098, 51.3538675, -0.5087098, 51.3538675 ], "geometry": { "type": "Point", "coordinates": [ -0.5087098, 51.3538675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04634452" }, "bbox": [ -0.5008569, 51.3605456, -0.5008569, 51.3605456 ], "geometry": { "type": "Point", "coordinates": [ -0.5008569, 51.3605456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03629574" }, "bbox": [ -0.5085718, 51.3542858, -0.5085718, 51.3542858 ], "geometry": { "type": "Point", "coordinates": [ -0.5085718, 51.3542858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04636338" }, "bbox": [ -0.4986022, 51.3598373, -0.4986022, 51.3598373 ], "geometry": { "type": "Point", "coordinates": [ -0.4986022, 51.3598373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03622750" }, "bbox": [ -0.5179911, 51.3525401, -0.5179911, 51.3525401 ], "geometry": { "type": "Point", "coordinates": [ -0.5179911, 51.3525401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04636939" }, "bbox": [ -0.4978281, 51.3599595, -0.4978281, 51.3599595 ], "geometry": { "type": "Point", "coordinates": [ -0.4978281, 51.3599595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04634260" }, "bbox": [ -0.5015191, 51.3619187, -0.5015191, 51.3619187 ], "geometry": { "type": "Point", "coordinates": [ -0.5015191, 51.3619187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04634456" }, "bbox": [ -0.5013549, 51.3615083, -0.5013549, 51.3615083 ], "geometry": { "type": "Point", "coordinates": [ -0.5013549, 51.3615083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04635758" }, "bbox": [ -0.499434, 51.361571, -0.499434, 51.361571 ], "geometry": { "type": "Point", "coordinates": [ -0.499434, 51.361571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03628049" }, "bbox": [ -0.51064, 51.3520119, -0.51064, 51.3520119 ], "geometry": { "type": "Point", "coordinates": [ -0.51064, 51.3520119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04636710" }, "bbox": [ -0.497688, 51.3576, -0.497688, 51.3576 ], "geometry": { "type": "Point", "coordinates": [ -0.497688, 51.3576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03622957" }, "bbox": [ -0.518453, 51.3527389, -0.518453, 51.3527389 ], "geometry": { "type": "Point", "coordinates": [ -0.518453, 51.3527389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03628943" }, "bbox": [ -0.5092991, 51.3516058, -0.5092991, 51.3516058 ], "geometry": { "type": "Point", "coordinates": [ -0.5092991, 51.3516058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04635953" }, "bbox": [ -0.4991509, 51.3612318, -0.4991509, 51.3612318 ], "geometry": { "type": "Point", "coordinates": [ -0.4991509, 51.3612318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04626293" }, "bbox": [ -0.4988922, 51.3561385, -0.4988922, 51.3561385 ], "geometry": { "type": "Point", "coordinates": [ -0.4988922, 51.3561385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04628298" }, "bbox": [ -0.4958738, 51.356618, -0.4958738, 51.356618 ], "geometry": { "type": "Point", "coordinates": [ -0.4958738, 51.356618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03626782" }, "bbox": [ -0.5124243, 51.3550735, -0.5124243, 51.3550735 ], "geometry": { "type": "Point", "coordinates": [ -0.5124243, 51.3550735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03622855" }, "bbox": [ -0.5184594, 51.3525901, -0.5184594, 51.3525901 ], "geometry": { "type": "Point", "coordinates": [ -0.5184594, 51.3525901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03638215" }, "bbox": [ -0.5100856, 51.3578713, -0.5100856, 51.3578713 ], "geometry": { "type": "Point", "coordinates": [ -0.5100856, 51.3578713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11548061" }, "bbox": [ -0.3983204, 51.2797377, -0.3983204, 51.2797377 ], "geometry": { "type": "Point", "coordinates": [ -0.3983204, 51.2797377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11543976" }, "bbox": [ -0.4042842, 51.2812243, -0.4042842, 51.2812243 ], "geometry": { "type": "Point", "coordinates": [ -0.4042842, 51.2812243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569413" }, "bbox": [ -0.4388361, 51.2939836, -0.4388361, 51.2939836 ], "geometry": { "type": "Point", "coordinates": [ -0.4388361, 51.2939836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08568809" }, "bbox": [ -0.4398975, 51.2935271, -0.4398975, 51.2935271 ], "geometry": { "type": "Point", "coordinates": [ -0.4398975, 51.2935271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08568215" }, "bbox": [ -0.4406012, 51.2942069, -0.4406012, 51.2942069 ], "geometry": { "type": "Point", "coordinates": [ -0.4406012, 51.2942069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08567310" }, "bbox": [ -0.4418014, 51.2937367, -0.4418014, 51.2937367 ], "geometry": { "type": "Point", "coordinates": [ -0.4418014, 51.2937367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569015" }, "bbox": [ -0.4393829, 51.2943139, -0.4393829, 51.2943139 ], "geometry": { "type": "Point", "coordinates": [ -0.4393829, 51.2943139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11554669" }, "bbox": [ -0.4027697, 51.2896017, -0.4027697, 51.2896017 ], "geometry": { "type": "Point", "coordinates": [ -0.4027697, 51.2896017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11548151" }, "bbox": [ -0.3982123, 51.278817, -0.3982123, 51.278817 ], "geometry": { "type": "Point", "coordinates": [ -0.3982123, 51.278817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11559055" }, "bbox": [ -0.396978, 51.2879773, -0.396978, 51.2879773 ], "geometry": { "type": "Point", "coordinates": [ -0.396978, 51.2879773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11555806" }, "bbox": [ -0.4014357, 51.2839469, -0.4014357, 51.2839469 ], "geometry": { "type": "Point", "coordinates": [ -0.4014357, 51.2839469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11554707" }, "bbox": [ -0.4032157, 51.2843207, -0.4032157, 51.2843207 ], "geometry": { "type": "Point", "coordinates": [ -0.4032157, 51.2843207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12540162" }, "bbox": [ -0.3955016, 51.2797855, -0.3955016, 51.2797855 ], "geometry": { "type": "Point", "coordinates": [ -0.3955016, 51.2797855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12540091" }, "bbox": [ -0.395347, 51.2823059, -0.395347, 51.2823059 ], "geometry": { "type": "Point", "coordinates": [ -0.395347, 51.2823059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12552415" }, "bbox": [ -0.3917676, 51.2845367, -0.3917676, 51.2845367 ], "geometry": { "type": "Point", "coordinates": [ -0.3917676, 51.2845367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12553013" }, "bbox": [ -0.3910199, 51.2843215, -0.3910199, 51.2843215 ], "geometry": { "type": "Point", "coordinates": [ -0.3910199, 51.2843215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12553210" }, "bbox": [ -0.3909079, 51.2838741, -0.3909079, 51.2838741 ], "geometry": { "type": "Point", "coordinates": [ -0.3909079, 51.2838741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12551403" }, "bbox": [ -0.3937161, 51.2834497, -0.3937161, 51.2834497 ], "geometry": { "type": "Point", "coordinates": [ -0.3937161, 51.2834497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11552336" }, "bbox": [ -0.4063744, 51.2865678, -0.4063744, 51.2865678 ], "geometry": { "type": "Point", "coordinates": [ -0.4063744, 51.2865678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11559079" }, "bbox": [ -0.396614, 51.2904286, -0.396614, 51.2904286 ], "geometry": { "type": "Point", "coordinates": [ -0.396614, 51.2904286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569527" }, "bbox": [ -0.438745, 51.2951876, -0.438745, 51.2951876 ], "geometry": { "type": "Point", "coordinates": [ -0.438745, 51.2951876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569102" }, "bbox": [ -0.4393501, 51.2929725, -0.4393501, 51.2929725 ], "geometry": { "type": "Point", "coordinates": [ -0.4393501, 51.2929725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08555599" }, "bbox": [ -0.4444298, 51.2925029, -0.4444298, 51.2925029 ], "geometry": { "type": "Point", "coordinates": [ -0.4444298, 51.2925029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400830" }, "bbox": [ -0.3986771, 51.1510982, -0.3986771, 51.1510982 ], "geometry": { "type": "Point", "coordinates": [ -0.3986771, 51.1510982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21517610" }, "bbox": [ -0.2567538, 51.2461464, -0.2567538, 51.2461464 ], "geometry": { "type": "Point", "coordinates": [ -0.2567538, 51.2461464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24501112" }, "bbox": [ -0.2235143, 51.2367527, -0.2235143, 51.2367527 ], "geometry": { "type": "Point", "coordinates": [ -0.2235143, 51.2367527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466989" }, "bbox": [ -0.0018265, 51.2042294, -0.0018265, 51.2042294 ], "geometry": { "type": "Point", "coordinates": [ -0.0018265, 51.2042294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466779" }, "bbox": [ -0.0023688, 51.2031129, -0.0023688, 51.2031129 ], "geometry": { "type": "Point", "coordinates": [ -0.0023688, 51.2031129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466586" }, "bbox": [ -0.0021515, 51.2038901, -0.0021515, 51.2038901 ], "geometry": { "type": "Point", "coordinates": [ -0.0021515, 51.2038901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39467284" }, "bbox": [ -0.0014009, 51.203685, -0.0014009, 51.203685 ], "geometry": { "type": "Point", "coordinates": [ -0.0014009, 51.203685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39467683" }, "bbox": [ -0.0005069, 51.2037873, -0.0005069, 51.2037873 ], "geometry": { "type": "Point", "coordinates": [ -0.0005069, 51.2037873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466984" }, "bbox": [ -0.0017136, 51.2037357, -0.0017136, 51.2037357 ], "geometry": { "type": "Point", "coordinates": [ -0.0017136, 51.2037357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466979" }, "bbox": [ -0.001708, 51.2032681, -0.001708, 51.2032681 ], "geometry": { "type": "Point", "coordinates": [ -0.001708, 51.2032681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39467599" }, "bbox": [ -0.0011077, 51.2047572, -0.0011077, 51.2047572 ], "geometry": { "type": "Point", "coordinates": [ -0.0011077, 51.2047572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466791" }, "bbox": [ -0.0020137, 51.2043806, -0.0020137, 51.2043806 ], "geometry": { "type": "Point", "coordinates": [ -0.0020137, 51.2043806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39477603" }, "bbox": [ -0.0006139, 51.2054792, -0.0006139, 51.2054792 ], "geometry": { "type": "Point", "coordinates": [ -0.0006139, 51.2054792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12391490" }, "bbox": [ -0.3979769, 51.1474173, -0.3979769, 51.1474173 ], "geometry": { "type": "Point", "coordinates": [ -0.3979769, 51.1474173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409419" }, "bbox": [ -0.4007711, 51.1499987, -0.4007711, 51.1499987 ], "geometry": { "type": "Point", "coordinates": [ -0.4007711, 51.1499987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12401509" }, "bbox": [ -0.3978122, 51.1491402, -0.3978122, 51.1491402 ], "geometry": { "type": "Point", "coordinates": [ -0.3978122, 51.1491402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12402219" }, "bbox": [ -0.3967336, 51.1501952, -0.3967336, 51.1501952 ], "geometry": { "type": "Point", "coordinates": [ -0.3967336, 51.1501952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11397086" }, "bbox": [ -0.40448, 51.1473657, -0.40448, 51.1473657 ], "geometry": { "type": "Point", "coordinates": [ -0.40448, 51.1473657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409914" }, "bbox": [ -0.4001428, 51.149665, -0.4001428, 51.149665 ], "geometry": { "type": "Point", "coordinates": [ -0.4001428, 51.149665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409607" }, "bbox": [ -0.400534, 51.1490157, -0.400534, 51.1490157 ], "geometry": { "type": "Point", "coordinates": [ -0.400534, 51.1490157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409612" }, "bbox": [ -0.4007701, 51.1496398, -0.4007701, 51.1496398 ], "geometry": { "type": "Point", "coordinates": [ -0.4007701, 51.1496398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400811" }, "bbox": [ -0.3990438, 51.1493661, -0.3990438, 51.1493661 ], "geometry": { "type": "Point", "coordinates": [ -0.3990438, 51.1493661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400907" }, "bbox": [ -0.3993039, 51.1489017, -0.3993039, 51.1489017 ], "geometry": { "type": "Point", "coordinates": [ -0.3993039, 51.1489017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409130" }, "bbox": [ -0.4010933, 51.1511279, -0.4010933, 51.1511279 ], "geometry": { "type": "Point", "coordinates": [ -0.4010933, 51.1511279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400213" }, "bbox": [ -0.3996661, 51.1495342, -0.3996661, 51.1495342 ], "geometry": { "type": "Point", "coordinates": [ -0.3996661, 51.1495342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11408305" }, "bbox": [ -0.4024598, 51.1488102, -0.4024598, 51.1488102 ], "geometry": { "type": "Point", "coordinates": [ -0.4024598, 51.1488102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12403520" }, "bbox": [ -0.3949463, 51.1500864, -0.3949463, 51.1500864 ], "geometry": { "type": "Point", "coordinates": [ -0.3949463, 51.1500864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12401201" }, "bbox": [ -0.3984322, 51.1483721, -0.3984322, 51.1483721 ], "geometry": { "type": "Point", "coordinates": [ -0.3984322, 51.1483721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24501805" }, "bbox": [ -0.2229688, 51.2360103, -0.2229688, 51.2360103 ], "geometry": { "type": "Point", "coordinates": [ -0.2229688, 51.2360103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24502005" }, "bbox": [ -0.2222369, 51.2362632, -0.2222369, 51.2362632 ], "geometry": { "type": "Point", "coordinates": [ -0.2222369, 51.2362632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24501516" }, "bbox": [ -0.2229415, 51.2370034, -0.2229415, 51.2370034 ], "geometry": { "type": "Point", "coordinates": [ -0.2229415, 51.2370034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24500821" }, "bbox": [ -0.2238788, 51.2374554, -0.2238788, 51.2374554 ], "geometry": { "type": "Point", "coordinates": [ -0.2238788, 51.2374554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24501123" }, "bbox": [ -0.2234776, 51.2376536, -0.2234776, 51.2376536 ], "geometry": { "type": "Point", "coordinates": [ -0.2234776, 51.2376536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29485090" }, "bbox": [ -0.1468575, 51.2246709, -0.1468575, 51.2246709 ], "geometry": { "type": "Point", "coordinates": [ -0.1468575, 51.2246709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29483274" }, "bbox": [ -0.1487433, 51.2235415, -0.1487433, 51.2235415 ], "geometry": { "type": "Point", "coordinates": [ -0.1487433, 51.2235415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498301" }, "bbox": [ -0.1420071, 51.2255953, -0.1420071, 51.2255953 ], "geometry": { "type": "Point", "coordinates": [ -0.1420071, 51.2255953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497902" }, "bbox": [ -0.1426691, 51.2255867, -0.1426691, 51.2255867 ], "geometry": { "type": "Point", "coordinates": [ -0.1426691, 51.2255867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497903" }, "bbox": [ -0.1426759, 51.2258146, -0.1426759, 51.2258146 ], "geometry": { "type": "Point", "coordinates": [ -0.1426759, 51.2258146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497805" }, "bbox": [ -0.1426892, 51.226016, -0.1426892, 51.226016 ], "geometry": { "type": "Point", "coordinates": [ -0.1426892, 51.226016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02397298" }, "bbox": [ -0.5322796, 51.1500367, -0.5322796, 51.1500367 ], "geometry": { "type": "Point", "coordinates": [ -0.5322796, 51.1500367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10548664" }, "bbox": [ -0.4118443, 51.2801191, -0.4118443, 51.2801191 ], "geometry": { "type": "Point", "coordinates": [ -0.4118443, 51.2801191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10548959" }, "bbox": [ -0.411286, 51.2797368, -0.411286, 51.2797368 ], "geometry": { "type": "Point", "coordinates": [ -0.411286, 51.2797368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10540748" }, "bbox": [ -0.4232667, 51.2788422, -0.4232667, 51.2788422 ], "geometry": { "type": "Point", "coordinates": [ -0.4232667, 51.2788422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10546647" }, "bbox": [ -0.4155259, 51.2789839, -0.4155259, 51.2789839 ], "geometry": { "type": "Point", "coordinates": [ -0.4155259, 51.2789839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10541146" }, "bbox": [ -0.4225968, 51.2787341, -0.4225968, 51.2787341 ], "geometry": { "type": "Point", "coordinates": [ -0.4225968, 51.2787341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10540850" }, "bbox": [ -0.422882, 51.279088, -0.422882, 51.279088 ], "geometry": { "type": "Point", "coordinates": [ -0.422882, 51.279088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10541748" }, "bbox": [ -0.42125, 51.2789445, -0.42125, 51.2789445 ], "geometry": { "type": "Point", "coordinates": [ -0.42125, 51.2789445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10542337" }, "bbox": [ -0.4211, 51.2778999, -0.4211, 51.2778999 ], "geometry": { "type": "Point", "coordinates": [ -0.4211, 51.2778999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10548921" }, "bbox": [ -0.4118593, 51.2763015, -0.4118593, 51.2763015 ], "geometry": { "type": "Point", "coordinates": [ -0.4118593, 51.2763015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10548354" }, "bbox": [ -0.4124319, 51.2787463, -0.4124319, 51.2787463 ], "geometry": { "type": "Point", "coordinates": [ -0.4124319, 51.2787463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11543355" }, "bbox": [ -0.4050824, 51.2792296, -0.4050824, 51.2792296 ], "geometry": { "type": "Point", "coordinates": [ -0.4050824, 51.2792296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11542658" }, "bbox": [ -0.4061917, 51.2795905, -0.4061917, 51.2795905 ], "geometry": { "type": "Point", "coordinates": [ -0.4061917, 51.2795905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11541159" }, "bbox": [ -0.4082201, 51.2797031, -0.4082201, 51.2797031 ], "geometry": { "type": "Point", "coordinates": [ -0.4082201, 51.2797031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11542657" }, "bbox": [ -0.406009, 51.2794719, -0.406009, 51.2794719 ], "geometry": { "type": "Point", "coordinates": [ -0.406009, 51.2794719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41488507" }, "bbox": [ 0.029655, 51.2141624, 0.029655, 51.2141624 ], "geometry": { "type": "Point", "coordinates": [ 0.029655, 51.2141624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41488316" }, "bbox": [ 0.0293774, 51.2150932, 0.0293774, 51.2150932 ], "geometry": { "type": "Point", "coordinates": [ 0.0293774, 51.2150932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95551631" }, "bbox": [ -0.6368225, 51.2889307, -0.6368225, 51.2889307 ], "geometry": { "type": "Point", "coordinates": [ -0.6368225, 51.2889307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95552625" }, "bbox": [ -0.6352725, 51.2884273, -0.6352725, 51.2884273 ], "geometry": { "type": "Point", "coordinates": [ -0.6352725, 51.2884273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94559650" }, "bbox": [ -0.6396169, 51.2908527, -0.6396169, 51.2908527 ], "geometry": { "type": "Point", "coordinates": [ -0.6396169, 51.2908527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94559341" }, "bbox": [ -0.6400906, 51.2898739, -0.6400906, 51.2898739 ], "geometry": { "type": "Point", "coordinates": [ -0.6400906, 51.2898739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94559743" }, "bbox": [ -0.6394627, 51.2901313, -0.6394627, 51.2901313 ], "geometry": { "type": "Point", "coordinates": [ -0.6394627, 51.2901313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92330794" }, "bbox": [ -0.6865546, 51.0972514, -0.6865546, 51.0972514 ], "geometry": { "type": "Point", "coordinates": [ -0.6865546, 51.0972514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92341809" }, "bbox": [ -0.6848194, 51.0987048, -0.6848194, 51.0987048 ], "geometry": { "type": "Point", "coordinates": [ -0.6848194, 51.0987048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20468383" }, "bbox": [ -0.2715894, 51.2079363, -0.2715894, 51.2079363 ], "geometry": { "type": "Point", "coordinates": [ -0.2715894, 51.2079363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20466967" }, "bbox": [ -0.2733915, 51.2066081, -0.2733915, 51.2066081 ], "geometry": { "type": "Point", "coordinates": [ -0.2733915, 51.2066081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40415865" }, "bbox": [ 0.0088298, 51.156916, 0.0088298, 51.156916 ], "geometry": { "type": "Point", "coordinates": [ 0.0088298, 51.156916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40415258" }, "bbox": [ 0.0079214, 51.1562133, 0.0079214, 51.1562133 ], "geometry": { "type": "Point", "coordinates": [ 0.0079214, 51.1562133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40414271" }, "bbox": [ 0.0066651, 51.1573889, 0.0066651, 51.1573889 ], "geometry": { "type": "Point", "coordinates": [ 0.0066651, 51.1573889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40415170" }, "bbox": [ 0.0078582, 51.157306, 0.0078582, 51.157306 ], "geometry": { "type": "Point", "coordinates": [ 0.0078582, 51.157306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40413768" }, "bbox": [ 0.0058676, 51.1571153, 0.0058676, 51.1571153 ], "geometry": { "type": "Point", "coordinates": [ 0.0058676, 51.1571153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499975" }, "bbox": [ 0.0036687, 51.2298226, 0.0036687, 51.2298226 ], "geometry": { "type": "Point", "coordinates": [ 0.0036687, 51.2298226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499695" }, "bbox": [ 0.0031523, 51.2316946, 0.0031523, 51.2316946 ], "geometry": { "type": "Point", "coordinates": [ 0.0031523, 51.2316946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499981" }, "bbox": [ 0.0037136, 51.23035, 0.0037136, 51.23035 ], "geometry": { "type": "Point", "coordinates": [ 0.0037136, 51.23035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94445403" }, "bbox": [ -0.6485999, 51.1877703, -0.6485999, 51.1877703 ], "geometry": { "type": "Point", "coordinates": [ -0.6485999, 51.1877703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03658974" }, "bbox": [ -0.5084661, 51.3811594, -0.5084661, 51.3811594 ], "geometry": { "type": "Point", "coordinates": [ -0.5084661, 51.3811594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03659752" }, "bbox": [ -0.5079069, 51.3800422, -0.5079069, 51.3800422 ], "geometry": { "type": "Point", "coordinates": [ -0.5079069, 51.3800422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03659643" }, "bbox": [ -0.5075668, 51.3785469, -0.5075668, 51.3785469 ], "geometry": { "type": "Point", "coordinates": [ -0.5075668, 51.3785469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03658243" }, "bbox": [ -0.5096072, 51.3785958, -0.5096072, 51.3785958 ], "geometry": { "type": "Point", "coordinates": [ -0.5096072, 51.3785958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04651141" }, "bbox": [ -0.5052783, 51.37844, -0.5052783, 51.37844 ], "geometry": { "type": "Point", "coordinates": [ -0.5052783, 51.37844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04650858" }, "bbox": [ -0.5057693, 51.3796458, -0.5057693, 51.3796458 ], "geometry": { "type": "Point", "coordinates": [ -0.5057693, 51.3796458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403290" }, "bbox": [ -0.4239022, 51.1566932, -0.4239022, 51.1566932 ], "geometry": { "type": "Point", "coordinates": [ -0.4239022, 51.1566932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10402876" }, "bbox": [ -0.4244736, 51.1555029, -0.4244736, 51.1555029 ], "geometry": { "type": "Point", "coordinates": [ -0.4244736, 51.1555029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10392478" }, "bbox": [ -0.425637, 51.1464238, -0.425637, 51.1464238 ], "geometry": { "type": "Point", "coordinates": [ -0.425637, 51.1464238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10393395" }, "bbox": [ -0.4239053, 51.1481973, -0.4239053, 51.1481973 ], "geometry": { "type": "Point", "coordinates": [ -0.4239053, 51.1481973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11390595" }, "bbox": [ -0.4136489, 51.148009, -0.4136489, 51.148009 ], "geometry": { "type": "Point", "coordinates": [ -0.4136489, 51.148009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10396368" }, "bbox": [ -0.4197023, 51.1455941, -0.4197023, 51.1455941 ], "geometry": { "type": "Point", "coordinates": [ -0.4197023, 51.1455941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10402975" }, "bbox": [ -0.4241049, 51.1561499, -0.4241049, 51.1561499 ], "geometry": { "type": "Point", "coordinates": [ -0.4241049, 51.1561499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10402867" }, "bbox": [ -0.424486, 51.1548088, -0.424486, 51.1548088 ], "geometry": { "type": "Point", "coordinates": [ -0.424486, 51.1548088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539556" }, "bbox": [ 0.047648, 51.263655, 0.047648, 51.263655 ], "geometry": { "type": "Point", "coordinates": [ 0.047648, 51.263655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41473269" }, "bbox": [ 0.0218416, 51.2109683, 0.0218416, 51.2109683 ], "geometry": { "type": "Point", "coordinates": [ 0.0218416, 51.2109683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472966" }, "bbox": [ 0.0213768, 51.2106471, 0.0213768, 51.2106471 ], "geometry": { "type": "Point", "coordinates": [ 0.0213768, 51.2106471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41474067" }, "bbox": [ 0.0230954, 51.2108284, 0.0230954, 51.2108284 ], "geometry": { "type": "Point", "coordinates": [ 0.0230954, 51.2108284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472380" }, "bbox": [ 0.0206044, 51.211924, 0.0206044, 51.211924 ], "geometry": { "type": "Point", "coordinates": [ 0.0206044, 51.211924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41473978" }, "bbox": [ 0.0225156, 51.2118067, 0.0225156, 51.2118067 ], "geometry": { "type": "Point", "coordinates": [ 0.0225156, 51.2118067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41473677" }, "bbox": [ 0.0223776, 51.211709, 0.0223776, 51.211709 ], "geometry": { "type": "Point", "coordinates": [ 0.0223776, 51.211709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472982" }, "bbox": [ 0.0213415, 51.2121758, 0.0213415, 51.2121758 ], "geometry": { "type": "Point", "coordinates": [ 0.0213415, 51.2121758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472660" }, "bbox": [ 0.0205132, 51.2101272, 0.0205132, 51.2101272 ], "geometry": { "type": "Point", "coordinates": [ 0.0205132, 51.2101272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41471984" }, "bbox": [ 0.0205568, 51.2123412, 0.0205568, 51.2123412 ], "geometry": { "type": "Point", "coordinates": [ 0.0205568, 51.2123412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41471475" }, "bbox": [ 0.0191736, 51.2114787, 0.0191736, 51.2114787 ], "geometry": { "type": "Point", "coordinates": [ 0.0191736, 51.2114787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15393134" }, "bbox": [ -0.3533617, 51.1420086, -0.3533617, 51.1420086 ], "geometry": { "type": "Point", "coordinates": [ -0.3533617, 51.1420086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15391826" }, "bbox": [ -0.355026, 51.1412895, -0.355026, 51.1412895 ], "geometry": { "type": "Point", "coordinates": [ -0.355026, 51.1412895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472974" }, "bbox": [ 0.0216126, 51.2114783, 0.0216126, 51.2114783 ], "geometry": { "type": "Point", "coordinates": [ 0.0216126, 51.2114783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41471977" }, "bbox": [ 0.0199455, 51.2117116, 0.0199455, 51.2117116 ], "geometry": { "type": "Point", "coordinates": [ 0.0199455, 51.2117116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41473468" }, "bbox": [ 0.0219117, 51.2109272, 0.0219117, 51.2109272 ], "geometry": { "type": "Point", "coordinates": [ 0.0219117, 51.2109272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15392827" }, "bbox": [ -0.3535544, 51.1411917, -0.3535544, 51.1411917 ], "geometry": { "type": "Point", "coordinates": [ -0.3535544, 51.1411917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16470648" }, "bbox": [ -0.3395286, 51.2147584, -0.3395286, 51.2147584 ], "geometry": { "type": "Point", "coordinates": [ -0.3395286, 51.2147584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15479959" }, "bbox": [ -0.3407449, 51.2159414, -0.3407449, 51.2159414 ], "geometry": { "type": "Point", "coordinates": [ -0.3407449, 51.2159414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42510710" }, "bbox": [ 0.0340654, 51.2414743, 0.0340654, 51.2414743 ], "geometry": { "type": "Point", "coordinates": [ 0.0340654, 51.2414743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368617" }, "bbox": [ -0.517494, 51.115486, -0.517494, 51.115486 ], "geometry": { "type": "Point", "coordinates": [ -0.517494, 51.115486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458411" }, "bbox": [ -0.5868683, 51.1966541, -0.5868683, 51.1966541 ], "geometry": { "type": "Point", "coordinates": [ -0.5868683, 51.1966541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459108" }, "bbox": [ -0.585672, 51.1962712, -0.585672, 51.1962712 ], "geometry": { "type": "Point", "coordinates": [ -0.585672, 51.1962712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98457413" }, "bbox": [ -0.5877967, 51.1970239, -0.5877967, 51.1970239 ], "geometry": { "type": "Point", "coordinates": [ -0.5877967, 51.1970239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93443483" }, "bbox": [ -0.6654275, 51.1950401, -0.6654275, 51.1950401 ], "geometry": { "type": "Point", "coordinates": [ -0.6654275, 51.1950401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92453033" }, "bbox": [ -0.6788661, 51.1996433, -0.6788661, 51.1996433 ], "geometry": { "type": "Point", "coordinates": [ -0.6788661, 51.1996433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92454507" }, "bbox": [ -0.6779627, 51.1972822, -0.6779627, 51.1972822 ], "geometry": { "type": "Point", "coordinates": [ -0.6779627, 51.1972822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92454908" }, "bbox": [ -0.6775692, 51.197538, -0.6775692, 51.197538 ], "geometry": { "type": "Point", "coordinates": [ -0.6775692, 51.197538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92455508" }, "bbox": [ -0.6769822, 51.1976871, -0.6769822, 51.1976871 ], "geometry": { "type": "Point", "coordinates": [ -0.6769822, 51.1976871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92455503" }, "bbox": [ -0.6767008, 51.1970764, -0.6767008, 51.1970764 ], "geometry": { "type": "Point", "coordinates": [ -0.6767008, 51.1970764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92450105" }, "bbox": [ -0.6846576, 51.1972241, -0.6846576, 51.1972241 ], "geometry": { "type": "Point", "coordinates": [ -0.6846576, 51.1972241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92451030" }, "bbox": [ -0.6833708, 51.1994876, -0.6833708, 51.1994876 ], "geometry": { "type": "Point", "coordinates": [ -0.6833708, 51.1994876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92451021" }, "bbox": [ -0.6831333, 51.1988133, -0.6831333, 51.1988133 ], "geometry": { "type": "Point", "coordinates": [ -0.6831333, 51.1988133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23525041" }, "bbox": [ -0.2314293, 51.2575292, -0.2314293, 51.2575292 ], "geometry": { "type": "Point", "coordinates": [ -0.2314293, 51.2575292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00534072" }, "bbox": [ -0.5622091, 51.2737477, -0.5622091, 51.2737477 ], "geometry": { "type": "Point", "coordinates": [ -0.5622091, 51.2737477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00533874" }, "bbox": [ -0.5622087, 51.2741141, -0.5622087, 51.2741141 ], "geometry": { "type": "Point", "coordinates": [ -0.5622087, 51.2741141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00533469" }, "bbox": [ -0.5630028, 51.2739587, -0.5630028, 51.2739587 ], "geometry": { "type": "Point", "coordinates": [ -0.5630028, 51.2739587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00533296" }, "bbox": [ -0.5629541, 51.2759604, -0.5629541, 51.2759604 ], "geometry": { "type": "Point", "coordinates": [ -0.5629541, 51.2759604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00532683" }, "bbox": [ -0.5641666, 51.2746276, -0.5641666, 51.2746276 ], "geometry": { "type": "Point", "coordinates": [ -0.5641666, 51.2746276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00532972" }, "bbox": [ -0.5636209, 51.2738927, -0.5636209, 51.2738927 ], "geometry": { "type": "Point", "coordinates": [ -0.5636209, 51.2738927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00533581" }, "bbox": [ -0.5622385, 51.2751512, -0.5622385, 51.2751512 ], "geometry": { "type": "Point", "coordinates": [ -0.5622385, 51.2751512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00533086" }, "bbox": [ -0.5634096, 51.27513, -0.5634096, 51.27513 ], "geometry": { "type": "Point", "coordinates": [ -0.5634096, 51.27513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02462105" }, "bbox": [ -0.5382357, 51.2045601, -0.5382357, 51.2045601 ], "geometry": { "type": "Point", "coordinates": [ -0.5382357, 51.2045601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09356361" }, "bbox": [ -0.4352384, 51.1093371, -0.4352384, 51.1093371 ], "geometry": { "type": "Point", "coordinates": [ -0.4352384, 51.1093371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09352547" }, "bbox": [ -0.4408075, 51.1079918, -0.4408075, 51.1079918 ], "geometry": { "type": "Point", "coordinates": [ -0.4408075, 51.1079918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08358934" }, "bbox": [ -0.4458711, 51.1069392, -0.4458711, 51.1069392 ], "geometry": { "type": "Point", "coordinates": [ -0.4458711, 51.1069392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08358352" }, "bbox": [ -0.4466116, 51.1085377, -0.4466116, 51.1085377 ], "geometry": { "type": "Point", "coordinates": [ -0.4466116, 51.1085377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09358066" }, "bbox": [ -0.4328205, 51.1098874, -0.4328205, 51.1098874 ], "geometry": { "type": "Point", "coordinates": [ -0.4328205, 51.1098874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09351854" }, "bbox": [ -0.4416363, 51.1089414, -0.4416363, 51.1089414 ], "geometry": { "type": "Point", "coordinates": [ -0.4416363, 51.1089414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09351052" }, "bbox": [ -0.4427822, 51.108591, -0.4427822, 51.108591 ], "geometry": { "type": "Point", "coordinates": [ -0.4427822, 51.108591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09350252" }, "bbox": [ -0.4439388, 51.1087191, -0.4439388, 51.1087191 ], "geometry": { "type": "Point", "coordinates": [ -0.4439388, 51.1087191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09358052" }, "bbox": [ -0.4326571, 51.1085786, -0.4326571, 51.1085786 ], "geometry": { "type": "Point", "coordinates": [ -0.4326571, 51.1085786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09352677" }, "bbox": [ -0.440493, 51.1108974, -0.440493, 51.1108974 ], "geometry": { "type": "Point", "coordinates": [ -0.440493, 51.1108974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09355777" }, "bbox": [ -0.4363507, 51.1107188, -0.4363507, 51.1107188 ], "geometry": { "type": "Point", "coordinates": [ -0.4363507, 51.1107188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04551954" }, "bbox": [ -0.5070807, 51.2896082, -0.5070807, 51.2896082 ], "geometry": { "type": "Point", "coordinates": [ -0.5070807, 51.2896082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04551859" }, "bbox": [ -0.5074981, 51.2902771, -0.5074981, 51.2902771 ], "geometry": { "type": "Point", "coordinates": [ -0.5074981, 51.2902771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560255" }, "bbox": [ -0.5094006, 51.2985729, -0.5094006, 51.2985729 ], "geometry": { "type": "Point", "coordinates": [ -0.5094006, 51.2985729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560758" }, "bbox": [ -0.5087251, 51.2988574, -0.5087251, 51.2988574 ], "geometry": { "type": "Point", "coordinates": [ -0.5087251, 51.2988574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560675" }, "bbox": [ -0.5087186, 51.300388, -0.5087186, 51.300388 ], "geometry": { "type": "Point", "coordinates": [ -0.5087186, 51.300388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03557882" }, "bbox": [ -0.5128627, 51.292078, -0.5128627, 51.292078 ], "geometry": { "type": "Point", "coordinates": [ -0.5128627, 51.292078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03559577" }, "bbox": [ -0.5106088, 51.2916093, -0.5106088, 51.2916093 ], "geometry": { "type": "Point", "coordinates": [ -0.5106088, 51.2916093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560778" }, "bbox": [ -0.508653, 51.3006164, -0.508653, 51.3006164 ], "geometry": { "type": "Point", "coordinates": [ -0.508653, 51.3006164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03569750" }, "bbox": [ -0.510173, 51.2983365, -0.510173, 51.2983365 ], "geometry": { "type": "Point", "coordinates": [ -0.510173, 51.2983365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03569373" }, "bbox": [ -0.5106321, 51.3001974, -0.5106321, 51.3001974 ], "geometry": { "type": "Point", "coordinates": [ -0.5106321, 51.3001974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351764" }, "bbox": [ -0.6131558, 51.1118033, -0.6131558, 51.1118033 ], "geometry": { "type": "Point", "coordinates": [ -0.6131558, 51.1118033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351565" }, "bbox": [ -0.613566, 51.112153, -0.613566, 51.112153 ], "geometry": { "type": "Point", "coordinates": [ -0.613566, 51.112153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97352370" }, "bbox": [ -0.6123716, 51.1123801, -0.6123716, 51.1123801 ], "geometry": { "type": "Point", "coordinates": [ -0.6123716, 51.1123801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353162" }, "bbox": [ -0.6111124, 51.1116211, -0.6111124, 51.1116211 ], "geometry": { "type": "Point", "coordinates": [ -0.6111124, 51.1116211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353163" }, "bbox": [ -0.6111077, 51.1118428, -0.6111077, 51.1118428 ], "geometry": { "type": "Point", "coordinates": [ -0.6111077, 51.1118428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40412171" }, "bbox": [ 0.0035875, 51.1574544, 0.0035875, 51.1574544 ], "geometry": { "type": "Point", "coordinates": [ 0.0035875, 51.1574544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93556095" }, "bbox": [ -0.6588845, 51.2951156, -0.6588845, 51.2951156 ], "geometry": { "type": "Point", "coordinates": [ -0.6588845, 51.2951156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93555868" }, "bbox": [ -0.6592402, 51.2926659, -0.6592402, 51.2926659 ], "geometry": { "type": "Point", "coordinates": [ -0.6592402, 51.2926659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93563503" }, "bbox": [ -0.6624092, 51.2959304, -0.6624092, 51.2959304 ], "geometry": { "type": "Point", "coordinates": [ -0.6624092, 51.2959304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93562801" }, "bbox": [ -0.6633913, 51.2951279, -0.6633913, 51.2951279 ], "geometry": { "type": "Point", "coordinates": [ -0.6633913, 51.2951279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499745" }, "bbox": [ -0.3688909, 51.232797, -0.3688909, 51.232797 ], "geometry": { "type": "Point", "coordinates": [ -0.3688909, 51.232797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499548" }, "bbox": [ -0.3691703, 51.2330796, -0.3691703, 51.2330796 ], "geometry": { "type": "Point", "coordinates": [ -0.3691703, 51.2330796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91339954" }, "bbox": [ -0.6876637, 51.0938429, -0.6876637, 51.0938429 ], "geometry": { "type": "Point", "coordinates": [ -0.6876637, 51.0938429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96375978" }, "bbox": [ -0.6210644, 51.1313563, -0.6210644, 51.1313563 ], "geometry": { "type": "Point", "coordinates": [ -0.6210644, 51.1313563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96385305" }, "bbox": [ -0.6217996, 51.1336549, -0.6217996, 51.1336549 ], "geometry": { "type": "Point", "coordinates": [ -0.6217996, 51.1336549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96385303" }, "bbox": [ -0.6217068, 51.1333156, -0.6217068, 51.1333156 ], "geometry": { "type": "Point", "coordinates": [ -0.6217068, 51.1333156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05464634" }, "bbox": [ -0.4916928, 51.2065123, -0.4916928, 51.2065123 ], "geometry": { "type": "Point", "coordinates": [ -0.4916928, 51.2065123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83437742" }, "bbox": [ -0.8031683, 51.1838472, -0.8031683, 51.1838472 ], "geometry": { "type": "Point", "coordinates": [ -0.8031683, 51.1838472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25441989" }, "bbox": [ -0.2098798, 51.1895539, -0.2098798, 51.1895539 ], "geometry": { "type": "Point", "coordinates": [ -0.2098798, 51.1895539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24449492" }, "bbox": [ -0.2134902, 51.189936, -0.2134902, 51.189936 ], "geometry": { "type": "Point", "coordinates": [ -0.2134902, 51.189936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24448197" }, "bbox": [ -0.2141645, 51.1894456, -0.2141645, 51.1894456 ], "geometry": { "type": "Point", "coordinates": [ -0.2141645, 51.1894456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24447972" }, "bbox": [ -0.215533, 51.1880138, -0.215533, 51.1880138 ], "geometry": { "type": "Point", "coordinates": [ -0.215533, 51.1880138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24454534" }, "bbox": [ -0.217954, 51.1935901, -0.217954, 51.1935901 ], "geometry": { "type": "Point", "coordinates": [ -0.217954, 51.1935901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450318" }, "bbox": [ -0.2121384, 51.1922457, -0.2121384, 51.1922457 ], "geometry": { "type": "Point", "coordinates": [ -0.2121384, 51.1922457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25441378" }, "bbox": [ -0.2108783, 51.1882757, -0.2108783, 51.1882757 ], "geometry": { "type": "Point", "coordinates": [ -0.2108783, 51.1882757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24448488" }, "bbox": [ -0.2148634, 51.1895521, -0.2148634, 51.1895521 ], "geometry": { "type": "Point", "coordinates": [ -0.2148634, 51.1895521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459306" }, "bbox": [ -0.2137178, 51.1911004, -0.2137178, 51.1911004 ], "geometry": { "type": "Point", "coordinates": [ -0.2137178, 51.1911004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459715" }, "bbox": [ -0.2129841, 51.1920091, -0.2129841, 51.1920091 ], "geometry": { "type": "Point", "coordinates": [ -0.2129841, 51.1920091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450405" }, "bbox": [ -0.2117442, 51.1910946, -0.2117442, 51.1910946 ], "geometry": { "type": "Point", "coordinates": [ -0.2117442, 51.1910946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25451403" }, "bbox": [ -0.2105586, 51.1907356, -0.2105586, 51.1907356 ], "geometry": { "type": "Point", "coordinates": [ -0.2105586, 51.1907356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450703" }, "bbox": [ -0.2114818, 51.1908971, -0.2114818, 51.1908971 ], "geometry": { "type": "Point", "coordinates": [ -0.2114818, 51.1908971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450614" }, "bbox": [ -0.211619, 51.1918738, -0.211619, 51.1918738 ], "geometry": { "type": "Point", "coordinates": [ -0.211619, 51.1918738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459019" }, "bbox": [ -0.2133677, 51.1923655, -0.2133677, 51.1923655 ], "geometry": { "type": "Point", "coordinates": [ -0.2133677, 51.1923655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450801" }, "bbox": [ -0.2113044, 51.1907047, -0.2113044, 51.1907047 ], "geometry": { "type": "Point", "coordinates": [ -0.2113044, 51.1907047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440098" }, "bbox": [ -0.2124943, 51.1905016, -0.2124943, 51.1905016 ], "geometry": { "type": "Point", "coordinates": [ -0.2124943, 51.1905016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25441293" }, "bbox": [ -0.2107506, 51.1899889, -0.2107506, 51.1899889 ], "geometry": { "type": "Point", "coordinates": [ -0.2107506, 51.1899889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25441196" }, "bbox": [ -0.2109469, 51.1902873, -0.2109469, 51.1902873 ], "geometry": { "type": "Point", "coordinates": [ -0.2109469, 51.1902873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440687" }, "bbox": [ -0.2115318, 51.1894775, -0.2115318, 51.1894775 ], "geometry": { "type": "Point", "coordinates": [ -0.2115318, 51.1894775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440492" }, "bbox": [ -0.2119595, 51.1899531, -0.2119595, 51.1899531 ], "geometry": { "type": "Point", "coordinates": [ -0.2119595, 51.1899531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440598" }, "bbox": [ -0.2122354, 51.1902546, -0.2122354, 51.1902546 ], "geometry": { "type": "Point", "coordinates": [ -0.2122354, 51.1902546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25441098" }, "bbox": [ -0.2111346, 51.1904889, -0.2111346, 51.1904889 ], "geometry": { "type": "Point", "coordinates": [ -0.2111346, 51.1904889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458631" }, "bbox": [ -0.2146553, 51.1934231, -0.2146553, 51.1934231 ], "geometry": { "type": "Point", "coordinates": [ -0.2146553, 51.1934231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24456233" }, "bbox": [ -0.2178558, 51.1936339, -0.2178558, 51.1936339 ], "geometry": { "type": "Point", "coordinates": [ -0.2178558, 51.1936339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24456501" }, "bbox": [ -0.21738, 51.1908799, -0.21738, 51.1908799 ], "geometry": { "type": "Point", "coordinates": [ -0.21738, 51.1908799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24456118" }, "bbox": [ -0.2180365, 51.1922232, -0.2180365, 51.1922232 ], "geometry": { "type": "Point", "coordinates": [ -0.2180365, 51.1922232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459901" }, "bbox": [ -0.2126943, 51.1907267, -0.2126943, 51.1907267 ], "geometry": { "type": "Point", "coordinates": [ -0.2126943, 51.1907267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459604" }, "bbox": [ -0.2130617, 51.1910074, -0.2130617, 51.1910074 ], "geometry": { "type": "Point", "coordinates": [ -0.2130617, 51.1910074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94381342" }, "bbox": [ -0.6560732, 51.1369403, -0.6560732, 51.1369403 ], "geometry": { "type": "Point", "coordinates": [ -0.6560732, 51.1369403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94381174" }, "bbox": [ -0.656139, 51.140198, -0.656139, 51.140198 ], "geometry": { "type": "Point", "coordinates": [ -0.656139, 51.140198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94381457" }, "bbox": [ -0.655752, 51.1386536, -0.655752, 51.1386536 ], "geometry": { "type": "Point", "coordinates": [ -0.655752, 51.1386536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94380139" }, "bbox": [ -0.6576752, 51.1370599, -0.6576752, 51.1370599 ], "geometry": { "type": "Point", "coordinates": [ -0.6576752, 51.1370599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94380159" }, "bbox": [ -0.6575225, 51.1387551, -0.6575225, 51.1387551 ], "geometry": { "type": "Point", "coordinates": [ -0.6575225, 51.1387551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03646213" }, "bbox": [ -0.5126185, 51.3668487, -0.5126185, 51.3668487 ], "geometry": { "type": "Point", "coordinates": [ -0.5126185, 51.3668487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03644761" }, "bbox": [ -0.5155295, 51.3710655, -0.5155295, 51.3710655 ], "geometry": { "type": "Point", "coordinates": [ -0.5155295, 51.3710655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03648473" }, "bbox": [ -0.5099455, 51.3708631, -0.5099455, 51.3708631 ], "geometry": { "type": "Point", "coordinates": [ -0.5099455, 51.3708631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03644030" }, "bbox": [ -0.5153606, 51.3683247, -0.5153606, 51.3683247 ], "geometry": { "type": "Point", "coordinates": [ -0.5153606, 51.3683247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03647518" }, "bbox": [ -0.5109053, 51.3673321, -0.5109053, 51.3673321 ], "geometry": { "type": "Point", "coordinates": [ -0.5109053, 51.3673321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03647919" }, "bbox": [ -0.5103458, 51.3674229, -0.5103458, 51.3674229 ], "geometry": { "type": "Point", "coordinates": [ -0.5103458, 51.3674229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03641926" }, "bbox": [ -0.5190428, 51.3679672, -0.5190428, 51.3679672 ], "geometry": { "type": "Point", "coordinates": [ -0.5190428, 51.3679672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03641840" }, "bbox": [ -0.5190883, 51.3692373, -0.5190883, 51.3692373 ], "geometry": { "type": "Point", "coordinates": [ -0.5190883, 51.3692373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03646716" }, "bbox": [ -0.5120294, 51.3671442, -0.5120294, 51.3671442 ], "geometry": { "type": "Point", "coordinates": [ -0.5120294, 51.3671442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03646219" }, "bbox": [ -0.5127506, 51.3673962, -0.5127506, 51.3673962 ], "geometry": { "type": "Point", "coordinates": [ -0.5127506, 51.3673962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03648320" }, "bbox": [ -0.5097803, 51.3675026, -0.5097803, 51.3675026 ], "geometry": { "type": "Point", "coordinates": [ -0.5097803, 51.3675026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93501899" }, "bbox": [ -0.6662595, 51.2505785, -0.6662595, 51.2505785 ], "geometry": { "type": "Point", "coordinates": [ -0.6662595, 51.2505785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93512124" }, "bbox": [ -0.6659752, 51.2526869, -0.6659752, 51.2526869 ], "geometry": { "type": "Point", "coordinates": [ -0.6659752, 51.2526869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93511403" }, "bbox": [ -0.6667711, 51.2509292, -0.6667711, 51.2509292 ], "geometry": { "type": "Point", "coordinates": [ -0.6667711, 51.2509292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517027" }, "bbox": [ -0.6729769, 51.2529833, -0.6729769, 51.2529833 ], "geometry": { "type": "Point", "coordinates": [ -0.6729769, 51.2529833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15371445" }, "bbox": [ -0.3557161, 51.1248666, -0.3557161, 51.1248666 ], "geometry": { "type": "Point", "coordinates": [ -0.3557161, 51.1248666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15374285" }, "bbox": [ -0.3519404, 51.1283155, -0.3519404, 51.1283155 ], "geometry": { "type": "Point", "coordinates": [ -0.3519404, 51.1283155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15372860" }, "bbox": [ -0.3540354, 51.1260465, -0.3540354, 51.1260465 ], "geometry": { "type": "Point", "coordinates": [ -0.3540354, 51.1260465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06418782" }, "bbox": [ -0.4729512, 51.1656174, -0.4729512, 51.1656174 ], "geometry": { "type": "Point", "coordinates": [ -0.4729512, 51.1656174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06417787" }, "bbox": [ -0.4739358, 51.1661069, -0.4739358, 51.1661069 ], "geometry": { "type": "Point", "coordinates": [ -0.4739358, 51.1661069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06417888" }, "bbox": [ -0.4736068, 51.1660383, -0.4736068, 51.1660383 ], "geometry": { "type": "Point", "coordinates": [ -0.4736068, 51.1660383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06418589" }, "bbox": [ -0.4730952, 51.1663552, -0.4730952, 51.1663552 ], "geometry": { "type": "Point", "coordinates": [ -0.4730952, 51.1663552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09391046" }, "bbox": [ -0.4418214, 51.1440511, -0.4418214, 51.1440511 ], "geometry": { "type": "Point", "coordinates": [ -0.4418214, 51.1440511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08396744" }, "bbox": [ -0.4478826, 51.1438611, -0.4478826, 51.1438611 ], "geometry": { "type": "Point", "coordinates": [ -0.4478826, 51.1438611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397356" }, "bbox": [ -0.4470318, 51.1449825, -0.4470318, 51.1449825 ], "geometry": { "type": "Point", "coordinates": [ -0.4470318, 51.1449825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397057" }, "bbox": [ -0.4479092, 51.1451309, -0.4479092, 51.1451309 ], "geometry": { "type": "Point", "coordinates": [ -0.4479092, 51.1451309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397252" }, "bbox": [ -0.4471879, 51.1446172, -0.4471879, 51.1446172 ], "geometry": { "type": "Point", "coordinates": [ -0.4471879, 51.1446172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397835" }, "bbox": [ -0.4464136, 51.1430826, -0.4464136, 51.1430826 ], "geometry": { "type": "Point", "coordinates": [ -0.4464136, 51.1430826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397126" }, "bbox": [ -0.4473593, 51.142329, -0.4473593, 51.142329 ], "geometry": { "type": "Point", "coordinates": [ -0.4473593, 51.142329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397647" }, "bbox": [ -0.4465905, 51.1441071, -0.4465905, 51.1441071 ], "geometry": { "type": "Point", "coordinates": [ -0.4465905, 51.1441071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397552" }, "bbox": [ -0.4465458, 51.1448268, -0.4465458, 51.1448268 ], "geometry": { "type": "Point", "coordinates": [ -0.4465458, 51.1448268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397147" }, "bbox": [ -0.4472978, 51.1442194, -0.4472978, 51.1442194 ], "geometry": { "type": "Point", "coordinates": [ -0.4472978, 51.1442194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397650" }, "bbox": [ -0.4464994, 51.1444758, -0.4464994, 51.1444758 ], "geometry": { "type": "Point", "coordinates": [ -0.4464994, 51.1444758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397163" }, "bbox": [ -0.4469866, 51.1461815, -0.4469866, 51.1461815 ], "geometry": { "type": "Point", "coordinates": [ -0.4469866, 51.1461815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09391947" }, "bbox": [ -0.4399269, 51.1441129, -0.4399269, 51.1441129 ], "geometry": { "type": "Point", "coordinates": [ -0.4399269, 51.1441129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453598" }, "bbox": [ -0.1356992, 51.1981023, -0.1356992, 51.1981023 ], "geometry": { "type": "Point", "coordinates": [ -0.1356992, 51.1981023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30461211" }, "bbox": [ -0.1390498, 51.1993674, -0.1390498, 51.1993674 ], "geometry": { "type": "Point", "coordinates": [ -0.1390498, 51.1993674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20518554" }, "bbox": [ -0.2695271, 51.2503062, -0.2695271, 51.2503062 ], "geometry": { "type": "Point", "coordinates": [ -0.2695271, 51.2503062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11524123" }, "bbox": [ -0.4047374, 51.2583869, -0.4047374, 51.2583869 ], "geometry": { "type": "Point", "coordinates": [ -0.4047374, 51.2583869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11522976" }, "bbox": [ -0.4064093, 51.2632096, -0.4064093, 51.2632096 ], "geometry": { "type": "Point", "coordinates": [ -0.4064093, 51.2632096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11521767" }, "bbox": [ -0.4081472, 51.2623276, -0.4081472, 51.2623276 ], "geometry": { "type": "Point", "coordinates": [ -0.4081472, 51.2623276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11520058" }, "bbox": [ -0.4115509, 51.2614757, -0.4115509, 51.2614757 ], "geometry": { "type": "Point", "coordinates": [ -0.4115509, 51.2614757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11527641" }, "bbox": [ -0.3999577, 51.259856, -0.3999577, 51.259856 ], "geometry": { "type": "Point", "coordinates": [ -0.3999577, 51.259856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11527662" }, "bbox": [ -0.3998373, 51.2627595, -0.3998373, 51.2627595 ], "geometry": { "type": "Point", "coordinates": [ -0.3998373, 51.2627595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447008" }, "bbox": [ -0.5175571, 51.186625, -0.5175571, 51.186625 ], "geometry": { "type": "Point", "coordinates": [ -0.5175571, 51.186625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448801" }, "bbox": [ -0.5152462, 51.1854314, -0.5152462, 51.1854314 ], "geometry": { "type": "Point", "coordinates": [ -0.5152462, 51.1854314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03437598" }, "bbox": [ -0.5166142, 51.185489, -0.5166142, 51.185489 ], "geometry": { "type": "Point", "coordinates": [ -0.5166142, 51.185489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03436798" }, "bbox": [ -0.5180727, 51.185714, -0.5180727, 51.185714 ], "geometry": { "type": "Point", "coordinates": [ -0.5180727, 51.185714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11423898" }, "bbox": [ -0.4079651, 51.1752432, -0.4079651, 51.1752432 ], "geometry": { "type": "Point", "coordinates": [ -0.4079651, 51.1752432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13441235" }, "bbox": [ -0.3825993, 51.1872093, -0.3825993, 51.1872093 ], "geometry": { "type": "Point", "coordinates": [ -0.3825993, 51.1872093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13451991" }, "bbox": [ -0.3811038, 51.201085, -0.3811038, 51.201085 ], "geometry": { "type": "Point", "coordinates": [ -0.3811038, 51.201085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12457902" }, "bbox": [ -0.3872199, 51.1934912, -0.3872199, 51.1934912 ], "geometry": { "type": "Point", "coordinates": [ -0.3872199, 51.1934912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12448775" }, "bbox": [ -0.3862576, 51.1910694, -0.3862576, 51.1910694 ], "geometry": { "type": "Point", "coordinates": [ -0.3862576, 51.1910694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12468402" }, "bbox": [ -0.3853522, 51.2015592, -0.3853522, 51.2015592 ], "geometry": { "type": "Point", "coordinates": [ -0.3853522, 51.2015592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12446648" }, "bbox": [ -0.3890923, 51.1883985, -0.3890923, 51.1883985 ], "geometry": { "type": "Point", "coordinates": [ -0.3890923, 51.1883985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12416498" }, "bbox": [ -0.390365, 51.1660247, -0.390365, 51.1660247 ], "geometry": { "type": "Point", "coordinates": [ -0.390365, 51.1660247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11435301" }, "bbox": [ -0.405809, 51.1758213, -0.405809, 51.1758213 ], "geometry": { "type": "Point", "coordinates": [ -0.405809, 51.1758213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12424421" }, "bbox": [ -0.3930036, 51.1680922, -0.3930036, 51.1680922 ], "geometry": { "type": "Point", "coordinates": [ -0.3930036, 51.1680922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03544175" }, "bbox": [ -0.5185304, 51.2825911, -0.5185304, 51.2825911 ], "geometry": { "type": "Point", "coordinates": [ -0.5185304, 51.2825911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03543859" }, "bbox": [ -0.5190452, 51.2811138, -0.5190452, 51.2811138 ], "geometry": { "type": "Point", "coordinates": [ -0.5190452, 51.2811138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25554011" }, "bbox": [ -0.2033767, 51.2813506, -0.2033767, 51.2813506 ], "geometry": { "type": "Point", "coordinates": [ -0.2033767, 51.2813506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09397436" }, "bbox": [ -0.4325971, 51.1430171, -0.4325971, 51.1430171 ], "geometry": { "type": "Point", "coordinates": [ -0.4325971, 51.1430171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29421115" }, "bbox": [ -0.155095, 51.1640439, -0.155095, 51.1640439 ], "geometry": { "type": "Point", "coordinates": [ -0.155095, 51.1640439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28427601" }, "bbox": [ -0.15968, 51.1628266, -0.15968, 51.1628266 ], "geometry": { "type": "Point", "coordinates": [ -0.15968, 51.1628266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28428313" }, "bbox": [ -0.1584963, 51.1639791, -0.1584963, 51.1639791 ], "geometry": { "type": "Point", "coordinates": [ -0.1584963, 51.1639791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28427328" }, "bbox": [ -0.1599983, 51.1654853, -0.1599983, 51.1654853 ], "geometry": { "type": "Point", "coordinates": [ -0.1599983, 51.1654853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99616886" }, "bbox": [ -0.5700928, 51.3471182, -0.5700928, 51.3471182 ], "geometry": { "type": "Point", "coordinates": [ -0.5700928, 51.3471182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99616681" }, "bbox": [ -0.5703194, 51.3466336, -0.5703194, 51.3466336 ], "geometry": { "type": "Point", "coordinates": [ -0.5703194, 51.3466336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405331" }, "bbox": [ -0.2349708, 51.1487534, -0.2349708, 51.1487534 ], "geometry": { "type": "Point", "coordinates": [ -0.2349708, 51.1487534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406037" }, "bbox": [ -0.2344214, 51.1493439, -0.2344214, 51.1493439 ], "geometry": { "type": "Point", "coordinates": [ -0.2344214, 51.1493439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406337" }, "bbox": [ -0.2336193, 51.1493109, -0.2336193, 51.1493109 ], "geometry": { "type": "Point", "coordinates": [ -0.2336193, 51.1493109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405316" }, "bbox": [ -0.2350499, 51.1475239, -0.2350499, 51.1475239 ], "geometry": { "type": "Point", "coordinates": [ -0.2350499, 51.1475239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406533" }, "bbox": [ -0.2334492, 51.1489926, -0.2334492, 51.1489926 ], "geometry": { "type": "Point", "coordinates": [ -0.2334492, 51.1489926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406629" }, "bbox": [ -0.2333443, 51.1486371, -0.2333443, 51.1486371 ], "geometry": { "type": "Point", "coordinates": [ -0.2333443, 51.1486371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406727" }, "bbox": [ -0.2330618, 51.1483663, -0.2330618, 51.1483663 ], "geometry": { "type": "Point", "coordinates": [ -0.2330618, 51.1483663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406222" }, "bbox": [ -0.2334159, 51.1477886, -0.2334159, 51.1477886 ], "geometry": { "type": "Point", "coordinates": [ -0.2334159, 51.1477886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405427" }, "bbox": [ -0.2351712, 51.1481196, -0.2351712, 51.1481196 ], "geometry": { "type": "Point", "coordinates": [ -0.2351712, 51.1481196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23407351" }, "bbox": [ -0.232249, 51.1505477, -0.232249, 51.1505477 ], "geometry": { "type": "Point", "coordinates": [ -0.232249, 51.1505477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406448" }, "bbox": [ -0.2335008, 51.1500988, -0.2335008, 51.1500988 ], "geometry": { "type": "Point", "coordinates": [ -0.2335008, 51.1500988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02351127" }, "bbox": [ -0.5427113, 51.1076892, -0.5427113, 51.1076892 ], "geometry": { "type": "Point", "coordinates": [ -0.5427113, 51.1076892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02351021" }, "bbox": [ -0.542759, 51.1070849, -0.542759, 51.1070849 ], "geometry": { "type": "Point", "coordinates": [ -0.542759, 51.1070849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02350915" }, "bbox": [ -0.5431226, 51.1065759, -0.5431226, 51.1065759 ], "geometry": { "type": "Point", "coordinates": [ -0.5431226, 51.1065759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01357519" }, "bbox": [ -0.5477892, 51.1069506, -0.5477892, 51.1069506 ], "geometry": { "type": "Point", "coordinates": [ -0.5477892, 51.1069506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01357418" }, "bbox": [ -0.5481798, 51.1069029, -0.5481798, 51.1069029 ], "geometry": { "type": "Point", "coordinates": [ -0.5481798, 51.1069029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01358628" }, "bbox": [ -0.5463241, 51.1077932, -0.5463241, 51.1077932 ], "geometry": { "type": "Point", "coordinates": [ -0.5463241, 51.1077932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39509562" }, "bbox": [ 0.0035571, 51.2376367, 0.0035571, 51.2376367 ], "geometry": { "type": "Point", "coordinates": [ 0.0035571, 51.2376367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39508863" }, "bbox": [ 0.0023805, 51.237597, 0.0023805, 51.237597 ], "geometry": { "type": "Point", "coordinates": [ 0.0023805, 51.237597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19422753" }, "bbox": [ -0.2952556, 51.1695975, -0.2952556, 51.1695975 ], "geometry": { "type": "Point", "coordinates": [ -0.2952556, 51.1695975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19422555" }, "bbox": [ -0.2958625, 51.1697266, -0.2958625, 51.1697266 ], "geometry": { "type": "Point", "coordinates": [ -0.2958625, 51.1697266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20469499" }, "bbox": [ -0.2696198, 51.2091877, -0.2696198, 51.2091877 ], "geometry": { "type": "Point", "coordinates": [ -0.2696198, 51.2091877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395078" }, "bbox": [ -0.8218971, 51.151326, -0.8218971, 51.151326 ], "geometry": { "type": "Point", "coordinates": [ -0.8218971, 51.151326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395592" }, "bbox": [ -0.8210573, 51.1525914, -0.8210573, 51.1525914 ], "geometry": { "type": "Point", "coordinates": [ -0.8210573, 51.1525914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395492" }, "bbox": [ -0.8213378, 51.1526019, -0.8213378, 51.1526019 ], "geometry": { "type": "Point", "coordinates": [ -0.8213378, 51.1526019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82392687" }, "bbox": [ -0.8248917, 51.1522001, -0.8248917, 51.1522001 ], "geometry": { "type": "Point", "coordinates": [ -0.8248917, 51.1522001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82393081" }, "bbox": [ -0.8246137, 51.1516326, -0.8246137, 51.1516326 ], "geometry": { "type": "Point", "coordinates": [ -0.8246137, 51.1516326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82390966" }, "bbox": [ -0.8278851, 51.1503816, -0.8278851, 51.1503816 ], "geometry": { "type": "Point", "coordinates": [ -0.8278851, 51.1503816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82393389" }, "bbox": [ -0.8242052, 51.1523908, -0.8242052, 51.1523908 ], "geometry": { "type": "Point", "coordinates": [ -0.8242052, 51.1523908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82393392" }, "bbox": [ -0.8241992, 51.1526637, -0.8241992, 51.1526637 ], "geometry": { "type": "Point", "coordinates": [ -0.8241992, 51.1526637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82396484" }, "bbox": [ -0.819717, 51.1519159, -0.819717, 51.1519159 ], "geometry": { "type": "Point", "coordinates": [ -0.819717, 51.1519159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82394366" }, "bbox": [ -0.8228227, 51.1500848, -0.8228227, 51.1500848 ], "geometry": { "type": "Point", "coordinates": [ -0.8228227, 51.1500848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82396292" }, "bbox": [ -0.8198817, 51.1526492, -0.8198817, 51.1526492 ], "geometry": { "type": "Point", "coordinates": [ -0.8198817, 51.1526492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395792" }, "bbox": [ -0.8208432, 51.1525864, -0.8208432, 51.1525864 ], "geometry": { "type": "Point", "coordinates": [ -0.8208432, 51.1525864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395892" }, "bbox": [ -0.82067, 51.1526042, -0.82067, 51.1526042 ], "geometry": { "type": "Point", "coordinates": [ -0.82067, 51.1526042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82394681" }, "bbox": [ -0.8225214, 51.1518817, -0.8225214, 51.1518817 ], "geometry": { "type": "Point", "coordinates": [ -0.8225214, 51.1518817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82394798" }, "bbox": [ -0.8222569, 51.1530813, -0.8222569, 51.1530813 ], "geometry": { "type": "Point", "coordinates": [ -0.8222569, 51.1530813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82394196" }, "bbox": [ -0.822981, 51.1530146, -0.822981, 51.1530146 ], "geometry": { "type": "Point", "coordinates": [ -0.822981, 51.1530146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82404506" }, "bbox": [ -0.822456, 51.1540553, -0.822456, 51.1540553 ], "geometry": { "type": "Point", "coordinates": [ -0.822456, 51.1540553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82404900" }, "bbox": [ -0.8218312, 51.1533293, -0.8218312, 51.1533293 ], "geometry": { "type": "Point", "coordinates": [ -0.8218312, 51.1533293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81409213" }, "bbox": [ -0.8303747, 51.1546484, -0.8303747, 51.1546484 ], "geometry": { "type": "Point", "coordinates": [ -0.8303747, 51.1546484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20541863" }, "bbox": [ -0.2782163, 51.278285, -0.2782163, 51.278285 ], "geometry": { "type": "Point", "coordinates": [ -0.2782163, 51.278285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20541362" }, "bbox": [ -0.2788692, 51.2781197, -0.2788692, 51.2781197 ], "geometry": { "type": "Point", "coordinates": [ -0.2788692, 51.2781197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20542270" }, "bbox": [ -0.2778675, 51.2786738, -0.2778675, 51.2786738 ], "geometry": { "type": "Point", "coordinates": [ -0.2778675, 51.2786738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20541566" }, "bbox": [ -0.2787077, 51.278499, -0.2787077, 51.278499 ], "geometry": { "type": "Point", "coordinates": [ -0.2787077, 51.278499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29536494" }, "bbox": [ -0.143219, 51.2699161, -0.143219, 51.2699161 ], "geometry": { "type": "Point", "coordinates": [ -0.143219, 51.2699161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04335877" }, "bbox": [ -0.5081831, 51.0937874, -0.5081831, 51.0937874 ], "geometry": { "type": "Point", "coordinates": [ -0.5081831, 51.0937874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04331048" }, "bbox": [ -0.5149578, 51.0913363, -0.5149578, 51.0913363 ], "geometry": { "type": "Point", "coordinates": [ -0.5149578, 51.0913363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04340621" }, "bbox": [ -0.5152614, 51.0978233, -0.5152614, 51.0978233 ], "geometry": { "type": "Point", "coordinates": [ -0.5152614, 51.0978233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94475511" }, "bbox": [ -0.6476506, 51.2153851, -0.6476506, 51.2153851 ], "geometry": { "type": "Point", "coordinates": [ -0.6476506, 51.2153851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94472614" }, "bbox": [ -0.6517984, 51.2157162, -0.6517984, 51.2157162 ], "geometry": { "type": "Point", "coordinates": [ -0.6517984, 51.2157162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99447650" }, "bbox": [ -0.5737239, 51.1910973, -0.5737239, 51.1910973 ], "geometry": { "type": "Point", "coordinates": [ -0.5737239, 51.1910973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94465398" }, "bbox": [ -0.6480738, 51.214335, -0.6480738, 51.214335 ], "geometry": { "type": "Point", "coordinates": [ -0.6480738, 51.214335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94464896" }, "bbox": [ -0.6488952, 51.2140722, -0.6488952, 51.2140722 ], "geometry": { "type": "Point", "coordinates": [ -0.6488952, 51.2140722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94463797" }, "bbox": [ -0.6503187, 51.2141367, -0.6503187, 51.2141367 ], "geometry": { "type": "Point", "coordinates": [ -0.6503187, 51.2141367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413699" }, "bbox": [ -0.2942337, 51.1646987, -0.2942337, 51.1646987 ], "geometry": { "type": "Point", "coordinates": [ -0.2942337, 51.1646987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10368328" }, "bbox": [ -0.4179694, 51.1151451, -0.4179694, 51.1151451 ], "geometry": { "type": "Point", "coordinates": [ -0.4179694, 51.1151451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96356899" }, "bbox": [ -0.6201479, 51.1149664, -0.6201479, 51.1149664 ], "geometry": { "type": "Point", "coordinates": [ -0.6201479, 51.1149664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96365128" }, "bbox": [ -0.6225754, 51.1175838, -0.6225754, 51.1175838 ], "geometry": { "type": "Point", "coordinates": [ -0.6225754, 51.1175838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96365223" }, "bbox": [ -0.6222146, 51.1172931, -0.6222146, 51.1172931 ], "geometry": { "type": "Point", "coordinates": [ -0.6222146, 51.1172931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96366415" }, "bbox": [ -0.6206674, 51.116486, -0.6206674, 51.116486 ], "geometry": { "type": "Point", "coordinates": [ -0.6206674, 51.116486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367110" }, "bbox": [ -0.6196588, 51.1161331, -0.6196588, 51.1161331 ], "geometry": { "type": "Point", "coordinates": [ -0.6196588, 51.1161331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96365416" }, "bbox": [ -0.621947, 51.1166403, -0.621947, 51.1166403 ], "geometry": { "type": "Point", "coordinates": [ -0.621947, 51.1166403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09404010" }, "bbox": [ -0.4372018, 51.1497574, -0.4372018, 51.1497574 ], "geometry": { "type": "Point", "coordinates": [ -0.4372018, 51.1497574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91334542" }, "bbox": [ -0.695425, 51.0929134, -0.695425, 51.0929134 ], "geometry": { "type": "Point", "coordinates": [ -0.695425, 51.0929134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26552720" }, "bbox": [ -0.1895226, 51.2821502, -0.1895226, 51.2821502 ], "geometry": { "type": "Point", "coordinates": [ -0.1895226, 51.2821502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26555807" }, "bbox": [ -0.1864496, 51.2808049, -0.1864496, 51.2808049 ], "geometry": { "type": "Point", "coordinates": [ -0.1864496, 51.2808049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26555701" }, "bbox": [ -0.1865466, 51.2801558, -0.1865466, 51.2801558 ], "geometry": { "type": "Point", "coordinates": [ -0.1865466, 51.2801558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26545343" }, "bbox": [ -0.1873265, 51.2749225, -0.1873265, 51.2749225 ], "geometry": { "type": "Point", "coordinates": [ -0.1873265, 51.2749225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26545192" }, "bbox": [ -0.1874524, 51.2794317, -0.1874524, 51.2794317 ], "geometry": { "type": "Point", "coordinates": [ -0.1874524, 51.2794317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26546091" }, "bbox": [ -0.1862289, 51.2793244, -0.1862289, 51.2793244 ], "geometry": { "type": "Point", "coordinates": [ -0.1862289, 51.2793244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26544598" }, "bbox": [ -0.1883127, 51.280029, -0.1883127, 51.280029 ], "geometry": { "type": "Point", "coordinates": [ -0.1883127, 51.280029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26543959" }, "bbox": [ -0.1893993, 51.276435, -0.1893993, 51.276435 ], "geometry": { "type": "Point", "coordinates": [ -0.1893993, 51.276435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26544338" }, "bbox": [ -0.1887554, 51.274557, -0.1887554, 51.274557 ], "geometry": { "type": "Point", "coordinates": [ -0.1887554, 51.274557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93569717" }, "bbox": [ -0.6534633, 51.2968578, -0.6534633, 51.2968578 ], "geometry": { "type": "Point", "coordinates": [ -0.6534633, 51.2968578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93569716" }, "bbox": [ -0.653633, 51.2967697, -0.653633, 51.2967697 ], "geometry": { "type": "Point", "coordinates": [ -0.653633, 51.2967697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43401106" }, "bbox": [ 0.044162, 51.1419303, 0.044162, 51.1419303 ], "geometry": { "type": "Point", "coordinates": [ 0.044162, 51.1419303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43402411" }, "bbox": [ 0.0463884, 51.1423811, 0.0463884, 51.1423811 ], "geometry": { "type": "Point", "coordinates": [ 0.0463884, 51.1423811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08503355" }, "bbox": [ -0.4496007, 51.2440714, -0.4496007, 51.2440714 ], "geometry": { "type": "Point", "coordinates": [ -0.4496007, 51.2440714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08503953" }, "bbox": [ -0.4485044, 51.2436284, -0.4485044, 51.2436284 ], "geometry": { "type": "Point", "coordinates": [ -0.4485044, 51.2436284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12401191" }, "bbox": [ -0.3982832, 51.156409, -0.3982832, 51.156409 ], "geometry": { "type": "Point", "coordinates": [ -0.3982832, 51.156409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07509754" }, "bbox": [ -0.4543275, 51.2439466, -0.4543275, 51.2439466 ], "geometry": { "type": "Point", "coordinates": [ -0.4543275, 51.2439466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08500458" }, "bbox": [ -0.4530261, 51.2441565, -0.4530261, 51.2441565 ], "geometry": { "type": "Point", "coordinates": [ -0.4530261, 51.2441565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03409765" }, "bbox": [ -0.5146393, 51.1557184, -0.5146393, 51.1557184 ], "geometry": { "type": "Point", "coordinates": [ -0.5146393, 51.1557184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03405655" }, "bbox": [ -0.5186272, 51.1533163, -0.5186272, 51.1533163 ], "geometry": { "type": "Point", "coordinates": [ -0.5186272, 51.1533163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03409709" }, "bbox": [ -0.5149257, 51.1505475, -0.5149257, 51.1505475 ], "geometry": { "type": "Point", "coordinates": [ -0.5149257, 51.1505475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03409113" }, "bbox": [ -0.5156245, 51.1508641, -0.5156245, 51.1508641 ], "geometry": { "type": "Point", "coordinates": [ -0.5156245, 51.1508641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03405767" }, "bbox": [ -0.520442, 51.1560098, -0.520442, 51.1560098 ], "geometry": { "type": "Point", "coordinates": [ -0.520442, 51.1560098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03419723" }, "bbox": [ -0.5147099, 51.160927, -0.5147099, 51.160927 ], "geometry": { "type": "Point", "coordinates": [ -0.5147099, 51.160927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400686" }, "bbox": [ -0.5133302, 51.1575863, -0.5133302, 51.1575863 ], "geometry": { "type": "Point", "coordinates": [ -0.5133302, 51.1575863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418127" }, "bbox": [ -0.5168335, 51.1612591, -0.5168335, 51.1612591 ], "geometry": { "type": "Point", "coordinates": [ -0.5168335, 51.1612591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417549" }, "bbox": [ -0.5175137, 51.1633373, -0.5175137, 51.1633373 ], "geometry": { "type": "Point", "coordinates": [ -0.5175137, 51.1633373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417126" }, "bbox": [ -0.5181087, 51.1611896, -0.5181087, 51.1611896 ], "geometry": { "type": "Point", "coordinates": [ -0.5181087, 51.1611896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417943" }, "bbox": [ -0.5167507, 51.16263, -0.5167507, 51.16263 ], "geometry": { "type": "Point", "coordinates": [ -0.5167507, 51.16263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417431" }, "bbox": [ -0.5178621, 51.1616385, -0.5178621, 51.1616385 ], "geometry": { "type": "Point", "coordinates": [ -0.5178621, 51.1616385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04410820" }, "bbox": [ -0.5139686, 51.160349, -0.5139686, 51.160349 ], "geometry": { "type": "Point", "coordinates": [ -0.5139686, 51.160349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418243" }, "bbox": [ -0.5164896, 51.1627234, -0.5164896, 51.1627234 ], "geometry": { "type": "Point", "coordinates": [ -0.5164896, 51.1627234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03415003" }, "bbox": [ -0.521101, 51.1586349, -0.521101, 51.1586349 ], "geometry": { "type": "Point", "coordinates": [ -0.521101, 51.1586349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417037" }, "bbox": [ -0.5183219, 51.162211, -0.5183219, 51.162211 ], "geometry": { "type": "Point", "coordinates": [ -0.5183219, 51.162211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417236" }, "bbox": [ -0.5180002, 51.1621364, -0.5180002, 51.1621364 ], "geometry": { "type": "Point", "coordinates": [ -0.5180002, 51.1621364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04410105" }, "bbox": [ -0.5141092, 51.1592435, -0.5141092, 51.1592435 ], "geometry": { "type": "Point", "coordinates": [ -0.5141092, 51.1592435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29465746" }, "bbox": [ -0.1467631, 51.202767, -0.1467631, 51.202767 ], "geometry": { "type": "Point", "coordinates": [ -0.1467631, 51.202767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29467442" }, "bbox": [ -0.1443942, 51.2022558, -0.1443942, 51.2022558 ], "geometry": { "type": "Point", "coordinates": [ -0.1443942, 51.2022558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29467433" }, "bbox": [ -0.1444025, 51.2014885, -0.1444025, 51.2014885 ], "geometry": { "type": "Point", "coordinates": [ -0.1444025, 51.2014885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29466031" }, "bbox": [ -0.1463041, 51.2013448, -0.1463041, 51.2013448 ], "geometry": { "type": "Point", "coordinates": [ -0.1463041, 51.2013448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29466631" }, "bbox": [ -0.1453872, 51.201378, -0.1453872, 51.201378 ], "geometry": { "type": "Point", "coordinates": [ -0.1453872, 51.201378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92464790" }, "bbox": [ -0.6777843, 51.2137493, -0.6777843, 51.2137493 ], "geometry": { "type": "Point", "coordinates": [ -0.6777843, 51.2137493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92464890" }, "bbox": [ -0.6771788, 51.2139369, -0.6771788, 51.2139369 ], "geometry": { "type": "Point", "coordinates": [ -0.6771788, 51.2139369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92474601" }, "bbox": [ -0.6777871, 51.2147289, -0.6777871, 51.2147289 ], "geometry": { "type": "Point", "coordinates": [ -0.6777871, 51.2147289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92474800" }, "bbox": [ -0.6771969, 51.2148063, -0.6771969, 51.2148063 ], "geometry": { "type": "Point", "coordinates": [ -0.6771969, 51.2148063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99523665" }, "bbox": [ -0.5766344, 51.2643229, -0.5766344, 51.2643229 ], "geometry": { "type": "Point", "coordinates": [ -0.5766344, 51.2643229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17533724" }, "bbox": [ -0.3198078, 51.2659363, -0.3198078, 51.2659363 ], "geometry": { "type": "Point", "coordinates": [ -0.3198078, 51.2659363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10375459" }, "bbox": [ -0.4215689, 51.1269286, -0.4215689, 51.1269286 ], "geometry": { "type": "Point", "coordinates": [ -0.4215689, 51.1269286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10375551" }, "bbox": [ -0.4218339, 51.126234, -0.4218339, 51.126234 ], "geometry": { "type": "Point", "coordinates": [ -0.4218339, 51.126234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10371674" }, "bbox": [ -0.4272289, 51.1284219, -0.4272289, 51.1284219 ], "geometry": { "type": "Point", "coordinates": [ -0.4272289, 51.1284219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10371050" }, "bbox": [ -0.4272259, 51.1270956, -0.4272259, 51.1270956 ], "geometry": { "type": "Point", "coordinates": [ -0.4272259, 51.1270956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27466611" }, "bbox": [ -0.1741766, 51.1999511, -0.1741766, 51.1999511 ], "geometry": { "type": "Point", "coordinates": [ -0.1741766, 51.1999511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27456694" }, "bbox": [ -0.1746442, 51.1983821, -0.1746442, 51.1983821 ], "geometry": { "type": "Point", "coordinates": [ -0.1746442, 51.1983821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43500990" }, "bbox": [ 0.0475576, 51.239123, 0.0475576, 51.239123 ], "geometry": { "type": "Point", "coordinates": [ 0.0475576, 51.239123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43501889" }, "bbox": [ 0.0495608, 51.2391218, 0.0495608, 51.2391218 ], "geometry": { "type": "Point", "coordinates": [ 0.0495608, 51.2391218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43503691" }, "bbox": [ 0.0514839, 51.2392058, 0.0514839, 51.2392058 ], "geometry": { "type": "Point", "coordinates": [ 0.0514839, 51.2392058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98556583" }, "bbox": [ -0.5874016, 51.2932512, -0.5874016, 51.2932512 ], "geometry": { "type": "Point", "coordinates": [ -0.5874016, 51.2932512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98552383" }, "bbox": [ -0.5921683, 51.2921913, -0.5921683, 51.2921913 ], "geometry": { "type": "Point", "coordinates": [ -0.5921683, 51.2921913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98567109" }, "bbox": [ -0.5854981, 51.2954806, -0.5854981, 51.2954806 ], "geometry": { "type": "Point", "coordinates": [ -0.5854981, 51.2954806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41419271" }, "bbox": [ 0.0281511, 51.1570776, 0.0281511, 51.1570776 ], "geometry": { "type": "Point", "coordinates": [ 0.0281511, 51.1570776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41418381" }, "bbox": [ 0.0267957, 51.1578052, 0.0267957, 51.1578052 ], "geometry": { "type": "Point", "coordinates": [ 0.0267957, 51.1578052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41494451" }, "bbox": [ 0.024354, 51.2274247, 0.024354, 51.2274247 ], "geometry": { "type": "Point", "coordinates": [ 0.024354, 51.2274247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41495051" }, "bbox": [ 0.0251124, 51.2272793, 0.0251124, 51.2272793 ], "geometry": { "type": "Point", "coordinates": [ 0.0251124, 51.2272793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41495449" }, "bbox": [ 0.0258774, 51.2271555, 0.0258774, 51.2271555 ], "geometry": { "type": "Point", "coordinates": [ 0.0258774, 51.2271555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41495640" }, "bbox": [ 0.0256869, 51.2261941, 0.0256869, 51.2261941 ], "geometry": { "type": "Point", "coordinates": [ 0.0256869, 51.2261941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41494908" }, "bbox": [ 0.0250025, 51.2233755, 0.0250025, 51.2233755 ], "geometry": { "type": "Point", "coordinates": [ 0.0250025, 51.2233755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41495826" }, "bbox": [ 0.0259802, 51.2250784, 0.0259802, 51.2250784 ], "geometry": { "type": "Point", "coordinates": [ 0.0259802, 51.2250784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41494916" }, "bbox": [ 0.0249278, 51.2241855, 0.0249278, 51.2241855 ], "geometry": { "type": "Point", "coordinates": [ 0.0249278, 51.2241855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41494623" }, "bbox": [ 0.0245422, 51.2247652, 0.0245422, 51.2247652 ], "geometry": { "type": "Point", "coordinates": [ 0.0245422, 51.2247652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41494641" }, "bbox": [ 0.0246026, 51.2263682, 0.0246026, 51.2263682 ], "geometry": { "type": "Point", "coordinates": [ 0.0246026, 51.2263682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530867" }, "bbox": [ -0.366072, 51.2707327, -0.366072, 51.2707327 ], "geometry": { "type": "Point", "coordinates": [ -0.366072, 51.2707327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14531067" }, "bbox": [ -0.3655346, 51.2708466, -0.3655346, 51.2708466 ], "geometry": { "type": "Point", "coordinates": [ -0.3655346, 51.2708466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14531176" }, "bbox": [ -0.3655656, 51.2714782, -0.3655656, 51.2714782 ], "geometry": { "type": "Point", "coordinates": [ -0.3655656, 51.2714782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95388003" }, "bbox": [ -0.6319558, 51.1346978, -0.6319558, 51.1346978 ], "geometry": { "type": "Point", "coordinates": [ -0.6319558, 51.1346978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532077" }, "bbox": [ -0.3643083, 51.2718347, -0.3643083, 51.2718347 ], "geometry": { "type": "Point", "coordinates": [ -0.3643083, 51.2718347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532272" }, "bbox": [ -0.3639629, 51.2712676, -0.3639629, 51.2712676 ], "geometry": { "type": "Point", "coordinates": [ -0.3639629, 51.2712676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532362" }, "bbox": [ -0.3638465, 51.2703666, -0.3638465, 51.2703666 ], "geometry": { "type": "Point", "coordinates": [ -0.3638465, 51.2703666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14535370" }, "bbox": [ -0.3594992, 51.2715733, -0.3594992, 51.2715733 ], "geometry": { "type": "Point", "coordinates": [ -0.3594992, 51.2715733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533186" }, "bbox": [ -0.3626086, 51.2725399, -0.3626086, 51.2725399 ], "geometry": { "type": "Point", "coordinates": [ -0.3626086, 51.2725399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14535260" }, "bbox": [ -0.3598026, 51.2700868, -0.3598026, 51.2700868 ], "geometry": { "type": "Point", "coordinates": [ -0.3598026, 51.2700868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532684" }, "bbox": [ -0.3633137, 51.2723828, -0.3633137, 51.2723828 ], "geometry": { "type": "Point", "coordinates": [ -0.3633137, 51.2723828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14531438" }, "bbox": [ -0.3653343, 51.2681595, -0.3653343, 51.2681595 ], "geometry": { "type": "Point", "coordinates": [ -0.3653343, 51.2681595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14531783" }, "bbox": [ -0.3646266, 51.2722873, -0.3646266, 51.2722873 ], "geometry": { "type": "Point", "coordinates": [ -0.3646266, 51.2722873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530835" }, "bbox": [ -0.3660186, 51.2679875, -0.3660186, 51.2679875 ], "geometry": { "type": "Point", "coordinates": [ -0.3660186, 51.2679875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530356" }, "bbox": [ -0.3666955, 51.2697562, -0.3666955, 51.2697562 ], "geometry": { "type": "Point", "coordinates": [ -0.3666955, 51.2697562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533969" }, "bbox": [ -0.3616188, 51.2709436, -0.3616188, 51.2709436 ], "geometry": { "type": "Point", "coordinates": [ -0.3616188, 51.2709436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533276" }, "bbox": [ -0.3624353, 51.2716455, -0.3624353, 51.2716455 ], "geometry": { "type": "Point", "coordinates": [ -0.3624353, 51.2716455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530847" }, "bbox": [ -0.366025, 51.2691037, -0.366025, 51.2691037 ], "geometry": { "type": "Point", "coordinates": [ -0.366025, 51.2691037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533783" }, "bbox": [ -0.3619847, 51.2721228, -0.3619847, 51.2721228 ], "geometry": { "type": "Point", "coordinates": [ -0.3619847, 51.2721228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530179" }, "bbox": [ -0.3669357, 51.271901, -0.3669357, 51.271901 ], "geometry": { "type": "Point", "coordinates": [ -0.3669357, 51.271901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14534080" }, "bbox": [ -0.3612013, 51.2719873, -0.3612013, 51.2719873 ], "geometry": { "type": "Point", "coordinates": [ -0.3612013, 51.2719873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532449" }, "bbox": [ -0.3637962, 51.2691671, -0.3637962, 51.2691671 ], "geometry": { "type": "Point", "coordinates": [ -0.3637962, 51.2691671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533889" }, "bbox": [ -0.361603, 51.2727458, -0.361603, 51.2727458 ], "geometry": { "type": "Point", "coordinates": [ -0.361603, 51.2727458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533762" }, "bbox": [ -0.3618236, 51.270424, -0.3618236, 51.270424 ], "geometry": { "type": "Point", "coordinates": [ -0.3618236, 51.270424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530942" }, "bbox": [ -0.3658959, 51.2686546, -0.3658959, 51.2686546 ], "geometry": { "type": "Point", "coordinates": [ -0.3658959, 51.2686546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532965" }, "bbox": [ -0.3629969, 51.2706307, -0.3629969, 51.2706307 ], "geometry": { "type": "Point", "coordinates": [ -0.3629969, 51.2706307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530755" }, "bbox": [ -0.3660168, 51.2697348, -0.3660168, 51.2697348 ], "geometry": { "type": "Point", "coordinates": [ -0.3660168, 51.2697348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532957" }, "bbox": [ -0.3630184, 51.2698885, -0.3630184, 51.2698885 ], "geometry": { "type": "Point", "coordinates": [ -0.3630184, 51.2698885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14532950" }, "bbox": [ -0.3628251, 51.2693072, -0.3628251, 51.2693072 ], "geometry": { "type": "Point", "coordinates": [ -0.3628251, 51.2693072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530751" }, "bbox": [ -0.3661043, 51.2694191, -0.3661043, 51.2694191 ], "geometry": { "type": "Point", "coordinates": [ -0.3661043, 51.2694191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14533873" }, "bbox": [ -0.3617013, 51.2713095, -0.3617013, 51.2713095 ], "geometry": { "type": "Point", "coordinates": [ -0.3617013, 51.2713095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530361" }, "bbox": [ -0.3667601, 51.270256, -0.3667601, 51.270256 ], "geometry": { "type": "Point", "coordinates": [ -0.3667601, 51.270256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530560" }, "bbox": [ -0.3666306, 51.2703456, -0.3666306, 51.2703456 ], "geometry": { "type": "Point", "coordinates": [ -0.3666306, 51.2703456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530564" }, "bbox": [ -0.3664041, 51.2705674, -0.3664041, 51.2705674 ], "geometry": { "type": "Point", "coordinates": [ -0.3664041, 51.2705674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14530760" }, "bbox": [ -0.3661176, 51.2702097, -0.3661176, 51.2702097 ], "geometry": { "type": "Point", "coordinates": [ -0.3661176, 51.2702097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20528059" }, "bbox": [ -0.2701259, 51.2597497, -0.2701259, 51.2597497 ], "geometry": { "type": "Point", "coordinates": [ -0.2701259, 51.2597497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96405624" }, "bbox": [ -0.6207398, 51.1533526, -0.6207398, 51.1533526 ], "geometry": { "type": "Point", "coordinates": [ -0.6207398, 51.1533526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448965" }, "bbox": [ -0.5148196, 51.1916006, -0.5148196, 51.1916006 ], "geometry": { "type": "Point", "coordinates": [ -0.5148196, 51.1916006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07536906" }, "bbox": [ -0.4576931, 51.2666298, -0.4576931, 51.2666298 ], "geometry": { "type": "Point", "coordinates": [ -0.4576931, 51.2666298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07536405" }, "bbox": [ -0.458745, 51.2664242, -0.458745, 51.2664242 ], "geometry": { "type": "Point", "coordinates": [ -0.458745, 51.2664242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20465873" }, "bbox": [ -0.2750942, 51.2071947, -0.2750942, 51.2071947 ], "geometry": { "type": "Point", "coordinates": [ -0.2750942, 51.2071947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20466364" }, "bbox": [ -0.2745299, 51.2063642, -0.2745299, 51.2063642 ], "geometry": { "type": "Point", "coordinates": [ -0.2745299, 51.2063642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20466070" }, "bbox": [ -0.2747024, 51.2067792, -0.2747024, 51.2067792 ], "geometry": { "type": "Point", "coordinates": [ -0.2747024, 51.2067792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30511832" }, "bbox": [ -0.1363894, 51.2462805, -0.1363894, 51.2462805 ], "geometry": { "type": "Point", "coordinates": [ -0.1363894, 51.2462805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29518128" }, "bbox": [ -0.1412855, 51.2460888, -0.1412855, 51.2460888 ], "geometry": { "type": "Point", "coordinates": [ -0.1412855, 51.2460888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28506342" }, "bbox": [ -0.1586832, 51.2385647, -0.1586832, 51.2385647 ], "geometry": { "type": "Point", "coordinates": [ -0.1586832, 51.2385647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29517625" }, "bbox": [ -0.142192, 51.2457002, -0.142192, 51.2457002 ], "geometry": { "type": "Point", "coordinates": [ -0.142192, 51.2457002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29519439" }, "bbox": [ -0.1384899, 51.2469269, -0.1384899, 51.2469269 ], "geometry": { "type": "Point", "coordinates": [ -0.1384899, 51.2469269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29519139" }, "bbox": [ -0.1396498, 51.2469784, -0.1396498, 51.2469784 ], "geometry": { "type": "Point", "coordinates": [ -0.1396498, 51.2469784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30507281" }, "bbox": [ -0.1289569, 51.2415226, -0.1289569, 51.2415226 ], "geometry": { "type": "Point", "coordinates": [ -0.1289569, 51.2415226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30506472" }, "bbox": [ -0.129059, 51.2414564, -0.129059, 51.2414564 ], "geometry": { "type": "Point", "coordinates": [ -0.129059, 51.2414564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91458509" }, "bbox": [ -0.6867526, 51.1977989, -0.6867526, 51.1977989 ], "geometry": { "type": "Point", "coordinates": [ -0.6867526, 51.1977989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91459414" }, "bbox": [ -0.6860616, 51.1979604, -0.6860616, 51.1979604 ], "geometry": { "type": "Point", "coordinates": [ -0.6860616, 51.1979604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91458613" }, "bbox": [ -0.6867442, 51.1981012, -0.6867442, 51.1981012 ], "geometry": { "type": "Point", "coordinates": [ -0.6867442, 51.1981012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92450113" }, "bbox": [ -0.6856229, 51.1976812, -0.6856229, 51.1976812 ], "geometry": { "type": "Point", "coordinates": [ -0.6856229, 51.1976812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11435419" }, "bbox": [ -0.4056396, 51.1770639, -0.4056396, 51.1770639 ], "geometry": { "type": "Point", "coordinates": [ -0.4056396, 51.1770639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21505208" }, "bbox": [ -0.2605948, 51.2370629, -0.2605948, 51.2370629 ], "geometry": { "type": "Point", "coordinates": [ -0.2605948, 51.2370629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21504913" }, "bbox": [ -0.2610136, 51.2373573, -0.2610136, 51.2373573 ], "geometry": { "type": "Point", "coordinates": [ -0.2610136, 51.2373573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17554652" }, "bbox": [ -0.3167861, 51.2867096, -0.3167861, 51.2867096 ], "geometry": { "type": "Point", "coordinates": [ -0.3167861, 51.2867096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39460590" }, "bbox": [ -0.0109945, 51.2044103, -0.0109945, 51.2044103 ], "geometry": { "type": "Point", "coordinates": [ -0.0109945, 51.2044103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415525" }, "bbox": [ -0.4633854, 51.1604256, -0.4633854, 51.1604256 ], "geometry": { "type": "Point", "coordinates": [ -0.4633854, 51.1604256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07414045" }, "bbox": [ -0.4656734, 51.162327, -0.4656734, 51.162327 ], "geometry": { "type": "Point", "coordinates": [ -0.4656734, 51.162327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96545496" }, "bbox": [ -0.6168888, 51.2856597, -0.6168888, 51.2856597 ], "geometry": { "type": "Point", "coordinates": [ -0.6168888, 51.2856597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05507149" }, "bbox": [ -0.4869025, 51.2438167, -0.4869025, 51.2438167 ], "geometry": { "type": "Point", "coordinates": [ -0.4869025, 51.2438167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06500157" }, "bbox": [ -0.4830878, 51.2443422, -0.4830878, 51.2443422 ], "geometry": { "type": "Point", "coordinates": [ -0.4830878, 51.2443422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06507373" }, "bbox": [ -0.4722454, 51.2464224, -0.4722454, 51.2464224 ], "geometry": { "type": "Point", "coordinates": [ -0.4722454, 51.2464224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07503580" }, "bbox": [ -0.4633673, 51.246268, -0.4633673, 51.246268 ], "geometry": { "type": "Point", "coordinates": [ -0.4633673, 51.246268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07501760" }, "bbox": [ -0.4659316, 51.2445271, -0.4659316, 51.2445271 ], "geometry": { "type": "Point", "coordinates": [ -0.4659316, 51.2445271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06518930" }, "bbox": [ -0.4698702, 51.2508166, -0.4698702, 51.2508166 ], "geometry": { "type": "Point", "coordinates": [ -0.4698702, 51.2508166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07501923" }, "bbox": [ -0.4657485, 51.2411762, -0.4657485, 51.2411762 ], "geometry": { "type": "Point", "coordinates": [ -0.4657485, 51.2411762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07500997" }, "bbox": [ -0.4678797, 51.2485021, -0.4678797, 51.2485021 ], "geometry": { "type": "Point", "coordinates": [ -0.4678797, 51.2485021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510206" }, "bbox": [ -0.4680026, 51.2487162, -0.4680026, 51.2487162 ], "geometry": { "type": "Point", "coordinates": [ -0.4680026, 51.2487162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06501912" }, "bbox": [ -0.4800324, 51.2405752, -0.4800324, 51.2405752 ], "geometry": { "type": "Point", "coordinates": [ -0.4800324, 51.2405752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510426" }, "bbox": [ -0.4677529, 51.250625, -0.4677529, 51.250625 ], "geometry": { "type": "Point", "coordinates": [ -0.4677529, 51.250625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07503539" }, "bbox": [ -0.4634637, 51.2426177, -0.4634637, 51.2426177 ], "geometry": { "type": "Point", "coordinates": [ -0.4634637, 51.2426177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07511018" }, "bbox": [ -0.4665702, 51.2497013, -0.4665702, 51.2497013 ], "geometry": { "type": "Point", "coordinates": [ -0.4665702, 51.2497013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07503964" }, "bbox": [ -0.4628182, 51.244839, -0.4628182, 51.244839 ], "geometry": { "type": "Point", "coordinates": [ -0.4628182, 51.244839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07503569" }, "bbox": [ -0.4626322, 51.2448901, -0.4626322, 51.2448901 ], "geometry": { "type": "Point", "coordinates": [ -0.4626322, 51.2448901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510614" }, "bbox": [ -0.4675648, 51.2494056, -0.4675648, 51.2494056 ], "geometry": { "type": "Point", "coordinates": [ -0.4675648, 51.2494056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99363711" }, "bbox": [ -0.5814319, 51.1156322, -0.5814319, 51.1156322 ], "geometry": { "type": "Point", "coordinates": [ -0.5814319, 51.1156322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99362105" }, "bbox": [ -0.5837408, 51.1150053, -0.5837408, 51.1150053 ], "geometry": { "type": "Point", "coordinates": [ -0.5837408, 51.1150053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99364805" }, "bbox": [ -0.5805545, 51.1150893, -0.5805545, 51.1150893 ], "geometry": { "type": "Point", "coordinates": [ -0.5805545, 51.1150893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99355563" }, "bbox": [ -0.5791473, 51.1113529, -0.5791473, 51.1113529 ], "geometry": { "type": "Point", "coordinates": [ -0.5791473, 51.1113529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96475567" }, "bbox": [ -0.6188086, 51.2201651, -0.6188086, 51.2201651 ], "geometry": { "type": "Point", "coordinates": [ -0.6188086, 51.2201651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96473088" }, "bbox": [ -0.6223128, 51.2220124, -0.6223128, 51.2220124 ], "geometry": { "type": "Point", "coordinates": [ -0.6223128, 51.2220124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96475784" }, "bbox": [ -0.6185076, 51.221668, -0.6185076, 51.221668 ], "geometry": { "type": "Point", "coordinates": [ -0.6185076, 51.221668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96471273" }, "bbox": [ -0.6246788, 51.2207308, -0.6246788, 51.2207308 ], "geometry": { "type": "Point", "coordinates": [ -0.6246788, 51.2207308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96473967" }, "bbox": [ -0.6211351, 51.2201326, -0.6211351, 51.2201326 ], "geometry": { "type": "Point", "coordinates": [ -0.6211351, 51.2201326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96485739" }, "bbox": [ -0.6183721, 51.2261997, -0.6183721, 51.2261997 ], "geometry": { "type": "Point", "coordinates": [ -0.6183721, 51.2261997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96485515" }, "bbox": [ -0.6187627, 51.2244848, -0.6187627, 51.2244848 ], "geometry": { "type": "Point", "coordinates": [ -0.6187627, 51.2244848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16642585" }, "bbox": [ -0.3314091, 51.3700622, -0.3314091, 51.3700622 ], "geometry": { "type": "Point", "coordinates": [ -0.3314091, 51.3700622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16640699" }, "bbox": [ -0.3338377, 51.3722356, -0.3338377, 51.3722356 ], "geometry": { "type": "Point", "coordinates": [ -0.3338377, 51.3722356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85437225" }, "bbox": [ -0.7751238, 51.1820755, -0.7751238, 51.1820755 ], "geometry": { "type": "Point", "coordinates": [ -0.7751238, 51.1820755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85437304" }, "bbox": [ -0.7747411, 51.1801566, -0.7747411, 51.1801566 ], "geometry": { "type": "Point", "coordinates": [ -0.7747411, 51.1801566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85426403" }, "bbox": [ -0.7770661, 51.1706536, -0.7770661, 51.1706536 ], "geometry": { "type": "Point", "coordinates": [ -0.7770661, 51.1706536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85428735" }, "bbox": [ -0.7729971, 51.1739762, -0.7729971, 51.1739762 ], "geometry": { "type": "Point", "coordinates": [ -0.7729971, 51.1739762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85423921" }, "bbox": [ -0.7798112, 51.1727959, -0.7798112, 51.1727959 ], "geometry": { "type": "Point", "coordinates": [ -0.7798112, 51.1727959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85425442" }, "bbox": [ -0.7774808, 51.174712, -0.7774808, 51.174712 ], "geometry": { "type": "Point", "coordinates": [ -0.7774808, 51.174712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85428720" }, "bbox": [ -0.7730875, 51.1725718, -0.7730875, 51.1725718 ], "geometry": { "type": "Point", "coordinates": [ -0.7730875, 51.1725718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85429718" }, "bbox": [ -0.7714221, 51.1726986, -0.7714221, 51.1726986 ], "geometry": { "type": "Point", "coordinates": [ -0.7714221, 51.1726986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32395991" }, "bbox": [ -0.1058991, 51.1431293, -0.1058991, 51.1431293 ], "geometry": { "type": "Point", "coordinates": [ -0.1058991, 51.1431293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32397865" }, "bbox": [ -0.1032216, 51.1407557, -0.1032216, 51.1407557 ], "geometry": { "type": "Point", "coordinates": [ -0.1032216, 51.1407557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81458158" }, "bbox": [ -0.830259, 51.2036557, -0.830259, 51.2036557 ], "geometry": { "type": "Point", "coordinates": [ -0.830259, 51.2036557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81458284" }, "bbox": [ -0.8301341, 51.205995, -0.8301341, 51.205995 ], "geometry": { "type": "Point", "coordinates": [ -0.8301341, 51.205995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459184" }, "bbox": [ -0.8287487, 51.205857, -0.8287487, 51.205857 ], "geometry": { "type": "Point", "coordinates": [ -0.8287487, 51.205857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459994" }, "bbox": [ -0.8275548, 51.2068313, -0.8275548, 51.2068313 ], "geometry": { "type": "Point", "coordinates": [ -0.8275548, 51.2068313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455265" }, "bbox": [ -0.8345037, 51.2042917, -0.8345037, 51.2042917 ], "geometry": { "type": "Point", "coordinates": [ -0.8345037, 51.2042917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81456269" }, "bbox": [ -0.83313, 51.2047318, -0.83313, 51.2047318 ], "geometry": { "type": "Point", "coordinates": [ -0.83313, 51.2047318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81454735" }, "bbox": [ -0.8351164, 51.2016434, -0.8351164, 51.2016434 ], "geometry": { "type": "Point", "coordinates": [ -0.8351164, 51.2016434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455237" }, "bbox": [ -0.8338329, 51.2011643, -0.8338329, 51.2011643 ], "geometry": { "type": "Point", "coordinates": [ -0.8338329, 51.2011643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455169" }, "bbox": [ -0.8346122, 51.2045843, -0.8346122, 51.2045843 ], "geometry": { "type": "Point", "coordinates": [ -0.8346122, 51.2045843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455862" }, "bbox": [ -0.8337264, 51.204042, -0.8337264, 51.204042 ], "geometry": { "type": "Point", "coordinates": [ -0.8337264, 51.204042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455962" }, "bbox": [ -0.8333816, 51.2040622, -0.8333816, 51.2040622 ], "geometry": { "type": "Point", "coordinates": [ -0.8333816, 51.2040622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455653" }, "bbox": [ -0.834009, 51.2034166, -0.834009, 51.2034166 ], "geometry": { "type": "Point", "coordinates": [ -0.834009, 51.2034166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81468707" }, "bbox": [ -0.8291927, 51.2079941, -0.8291927, 51.2079941 ], "geometry": { "type": "Point", "coordinates": [ -0.8291927, 51.2079941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36555269" }, "bbox": [ -0.0437992, 51.2840074, -0.0437992, 51.2840074 ], "geometry": { "type": "Point", "coordinates": [ -0.0437992, 51.2840074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36551565" }, "bbox": [ -0.0490878, 51.2836852, -0.0490878, 51.2836852 ], "geometry": { "type": "Point", "coordinates": [ -0.0490878, 51.2836852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36574719" }, "bbox": [ -0.0438488, 51.2975217, -0.0438488, 51.2975217 ], "geometry": { "type": "Point", "coordinates": [ -0.0438488, 51.2975217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36569684" }, "bbox": [ -0.0369718, 51.2942684, -0.0369718, 51.2942684 ], "geometry": { "type": "Point", "coordinates": [ -0.0369718, 51.2942684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35568472" }, "bbox": [ -0.053173, 51.2934148, -0.053173, 51.2934148 ], "geometry": { "type": "Point", "coordinates": [ -0.053173, 51.2934148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37572877" }, "bbox": [ -0.0323389, 51.3027118, -0.0323389, 51.3027118 ], "geometry": { "type": "Point", "coordinates": [ -0.0323389, 51.3027118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37556578" }, "bbox": [ -0.0274718, 51.2845593, -0.0274718, 51.2845593 ], "geometry": { "type": "Point", "coordinates": [ -0.0274718, 51.2845593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37558875" }, "bbox": [ -0.0242111, 51.2842658, -0.0242111, 51.2842658 ], "geometry": { "type": "Point", "coordinates": [ -0.0242111, 51.2842658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37558585" }, "bbox": [ -0.0248465, 51.2850696, -0.0248465, 51.2850696 ], "geometry": { "type": "Point", "coordinates": [ -0.0248465, 51.2850696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37555572" }, "bbox": [ -0.0284651, 51.2840976, -0.0284651, 51.2840976 ], "geometry": { "type": "Point", "coordinates": [ -0.0284651, 51.2840976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37557082" }, "bbox": [ -0.0268783, 51.2850844, -0.0268783, 51.2850844 ], "geometry": { "type": "Point", "coordinates": [ -0.0268783, 51.2850844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03334141" }, "bbox": [ -0.5247189, 51.0907752, -0.5247189, 51.0907752 ], "geometry": { "type": "Point", "coordinates": [ -0.5247189, 51.0907752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98430158" }, "bbox": [ -0.5989718, 51.1831584, -0.5989718, 51.1831584 ], "geometry": { "type": "Point", "coordinates": [ -0.5989718, 51.1831584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98430850" }, "bbox": [ -0.5977674, 51.1822548, -0.5977674, 51.1822548 ], "geometry": { "type": "Point", "coordinates": [ -0.5977674, 51.1822548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97439862" }, "bbox": [ -0.599448, 51.1834854, -0.599448, 51.1834854 ], "geometry": { "type": "Point", "coordinates": [ -0.599448, 51.1834854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39507727" }, "bbox": [ 0.000453, 51.2344777, 0.000453, 51.2344777 ], "geometry": { "type": "Point", "coordinates": [ 0.000453, 51.2344777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90480137" }, "bbox": [ -0.7124267, 51.2274976, -0.7124267, 51.2274976 ], "geometry": { "type": "Point", "coordinates": [ -0.7124267, 51.2274976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89488735" }, "bbox": [ -0.7147872, 51.2272615, -0.7147872, 51.2272615 ], "geometry": { "type": "Point", "coordinates": [ -0.7147872, 51.2272615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499434" }, "bbox": [ -0.712982, 51.2361874, -0.712982, 51.2361874 ], "geometry": { "type": "Point", "coordinates": [ -0.712982, 51.2361874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499414" }, "bbox": [ -0.7128678, 51.234493, -0.7128678, 51.234493 ], "geometry": { "type": "Point", "coordinates": [ -0.7128678, 51.234493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499939" }, "bbox": [ -0.7128699, 51.2361255, -0.7128699, 51.2361255 ], "geometry": { "type": "Point", "coordinates": [ -0.7128699, 51.2361255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40519728" }, "bbox": [ 0.0185856, 51.2431543, 0.0185856, 51.2431543 ], "geometry": { "type": "Point", "coordinates": [ 0.0185856, 51.2431543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40515962" }, "bbox": [ 0.0129062, 51.2464504, 0.0129062, 51.2464504 ], "geometry": { "type": "Point", "coordinates": [ 0.0129062, 51.2464504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12514433" }, "bbox": [ -0.3901737, 51.250138, -0.3901737, 51.250138 ], "geometry": { "type": "Point", "coordinates": [ -0.3901737, 51.250138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12514008" }, "bbox": [ -0.3909966, 51.2478574, -0.3909966, 51.2478574 ], "geometry": { "type": "Point", "coordinates": [ -0.3909966, 51.2478574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12512130" }, "bbox": [ -0.3934975, 51.2498662, -0.3934975, 51.2498662 ], "geometry": { "type": "Point", "coordinates": [ -0.3934975, 51.2498662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12516102" }, "bbox": [ -0.3879089, 51.2472221, -0.3879089, 51.2472221 ], "geometry": { "type": "Point", "coordinates": [ -0.3879089, 51.2472221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12512953" }, "bbox": [ -0.3919461, 51.2517806, -0.3919461, 51.2517806 ], "geometry": { "type": "Point", "coordinates": [ -0.3919461, 51.2517806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12516554" }, "bbox": [ -0.387091, 51.2518731, -0.387091, 51.2518731 ], "geometry": { "type": "Point", "coordinates": [ -0.387091, 51.2518731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12513222" }, "bbox": [ -0.3919417, 51.249144, -0.3919417, 51.249144 ], "geometry": { "type": "Point", "coordinates": [ -0.3919417, 51.249144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12513322" }, "bbox": [ -0.3919694, 51.2490669, -0.3919694, 51.2490669 ], "geometry": { "type": "Point", "coordinates": [ -0.3919694, 51.2490669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467365" }, "bbox": [ -0.4590074, 51.2090821, -0.4590074, 51.2090821 ], "geometry": { "type": "Point", "coordinates": [ -0.4590074, 51.2090821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465629" }, "bbox": [ -0.4617583, 51.2057494, -0.4617583, 51.2057494 ], "geometry": { "type": "Point", "coordinates": [ -0.4617583, 51.2057494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07469469" }, "bbox": [ -0.4562972, 51.2093638, -0.4562972, 51.2093638 ], "geometry": { "type": "Point", "coordinates": [ -0.4562972, 51.2093638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07469868" }, "bbox": [ -0.4555376, 51.2091772, -0.4555376, 51.2091772 ], "geometry": { "type": "Point", "coordinates": [ -0.4555376, 51.2091772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467866" }, "bbox": [ -0.4583112, 51.2090583, -0.4583112, 51.2090583 ], "geometry": { "type": "Point", "coordinates": [ -0.4583112, 51.2090583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467674" }, "bbox": [ -0.4589198, 51.2097988, -0.4589198, 51.2097988 ], "geometry": { "type": "Point", "coordinates": [ -0.4589198, 51.2097988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465536" }, "bbox": [ -0.4617842, 51.2064613, -0.4617842, 51.2064613 ], "geometry": { "type": "Point", "coordinates": [ -0.4617842, 51.2064613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467265" }, "bbox": [ -0.4595855, 51.2088698, -0.4595855, 51.2088698 ], "geometry": { "type": "Point", "coordinates": [ -0.4595855, 51.2088698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01663293" }, "bbox": [ -0.5451371, 51.3923621, -0.5451371, 51.3923621 ], "geometry": { "type": "Point", "coordinates": [ -0.5451371, 51.3923621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01673504" }, "bbox": [ -0.5456981, 51.393454, -0.5456981, 51.393454 ], "geometry": { "type": "Point", "coordinates": [ -0.5456981, 51.393454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01674125" }, "bbox": [ -0.5433862, 51.3953937, -0.5433862, 51.3953937 ], "geometry": { "type": "Point", "coordinates": [ -0.5433862, 51.3953937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01672022" }, "bbox": [ -0.5466436, 51.3949369, -0.5466436, 51.3949369 ], "geometry": { "type": "Point", "coordinates": [ -0.5466436, 51.3949369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01678228" }, "bbox": [ -0.5378756, 51.3954954, -0.5378756, 51.3954954 ], "geometry": { "type": "Point", "coordinates": [ -0.5378756, 51.3954954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01673916" }, "bbox": [ -0.5438913, 51.3944444, -0.5438913, 51.3944444 ], "geometry": { "type": "Point", "coordinates": [ -0.5438913, 51.3944444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01678842" }, "bbox": [ -0.5369138, 51.3968244, -0.5369138, 51.3968244 ], "geometry": { "type": "Point", "coordinates": [ -0.5369138, 51.3968244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01674701" }, "bbox": [ -0.5427165, 51.3928645, -0.5427165, 51.3928645 ], "geometry": { "type": "Point", "coordinates": [ -0.5427165, 51.3928645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01673431" }, "bbox": [ -0.5444316, 51.395907, -0.5444316, 51.395907 ], "geometry": { "type": "Point", "coordinates": [ -0.5444316, 51.395907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01672825" }, "bbox": [ -0.5454258, 51.3954385, -0.5454258, 51.3954385 ], "geometry": { "type": "Point", "coordinates": [ -0.5454258, 51.3954385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02670563" }, "bbox": [ -0.5342605, 51.3986459, -0.5342605, 51.3986459 ], "geometry": { "type": "Point", "coordinates": [ -0.5342605, 51.3986459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02670755" }, "bbox": [ -0.5342225, 51.3977491, -0.5342225, 51.3977491 ], "geometry": { "type": "Point", "coordinates": [ -0.5342225, 51.3977491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02672755" }, "bbox": [ -0.531161, 51.3978468, -0.531161, 51.3978468 ], "geometry": { "type": "Point", "coordinates": [ -0.531161, 51.3978468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24420540" }, "bbox": [ -0.2271263, 51.1673661, -0.2271263, 51.1673661 ], "geometry": { "type": "Point", "coordinates": [ -0.2271263, 51.1673661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24420347" }, "bbox": [ -0.2275703, 51.1680139, -0.2275703, 51.1680139 ], "geometry": { "type": "Point", "coordinates": [ -0.2275703, 51.1680139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24420553" }, "bbox": [ -0.2269878, 51.1686877, -0.2269878, 51.1686877 ], "geometry": { "type": "Point", "coordinates": [ -0.2269878, 51.1686877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24425956" }, "bbox": [ -0.2193186, 51.1688353, -0.2193186, 51.1688353 ], "geometry": { "type": "Point", "coordinates": [ -0.2193186, 51.1688353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12561687" }, "bbox": [ -0.3924792, 51.3000056, -0.3924792, 51.3000056 ], "geometry": { "type": "Point", "coordinates": [ -0.3924792, 51.3000056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12560373" }, "bbox": [ -0.3952824, 51.2984597, -0.3952824, 51.2984597 ], "geometry": { "type": "Point", "coordinates": [ -0.3952824, 51.2984597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12572819" }, "bbox": [ -0.3907199, 51.3028126, -0.3907199, 51.3028126 ], "geometry": { "type": "Point", "coordinates": [ -0.3907199, 51.3028126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12571712" }, "bbox": [ -0.3922906, 51.3027889, -0.3922906, 51.3027889 ], "geometry": { "type": "Point", "coordinates": [ -0.3922906, 51.3027889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12571646" }, "bbox": [ -0.3925524, 51.3052412, -0.3925524, 51.3052412 ], "geometry": { "type": "Point", "coordinates": [ -0.3925524, 51.3052412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12571222" }, "bbox": [ -0.3930949, 51.3029129, -0.3930949, 51.3029129 ], "geometry": { "type": "Point", "coordinates": [ -0.3930949, 51.3029129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12571229" }, "bbox": [ -0.3931348, 51.3036551, -0.3931348, 51.3036551 ], "geometry": { "type": "Point", "coordinates": [ -0.3931348, 51.3036551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11569871" }, "bbox": [ -0.3956093, 51.2986232, -0.3956093, 51.2986232 ], "geometry": { "type": "Point", "coordinates": [ -0.3956093, 51.2986232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11569492" }, "bbox": [ -0.3956946, 51.3004058, -0.3956946, 51.3004058 ], "geometry": { "type": "Point", "coordinates": [ -0.3956946, 51.3004058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11577430" }, "bbox": [ -0.3983432, 51.3039517, -0.3983432, 51.3039517 ], "geometry": { "type": "Point", "coordinates": [ -0.3983432, 51.3039517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06469507" }, "bbox": [ -0.4701242, 51.2039352, -0.4701242, 51.2039352 ], "geometry": { "type": "Point", "coordinates": [ -0.4701242, 51.2039352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07463010" }, "bbox": [ -0.4654444, 51.2041045, -0.4654444, 51.2041045 ], "geometry": { "type": "Point", "coordinates": [ -0.4654444, 51.2041045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00360888" }, "bbox": [ -0.5712571, 51.122954, -0.5712571, 51.122954 ], "geometry": { "type": "Point", "coordinates": [ -0.5712571, 51.122954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04465168" }, "bbox": [ -0.5052349, 51.2096814, -0.5052349, 51.2096814 ], "geometry": { "type": "Point", "coordinates": [ -0.5052349, 51.2096814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00361370" }, "bbox": [ -0.570451, 51.1208661, -0.570451, 51.1208661 ], "geometry": { "type": "Point", "coordinates": [ -0.570451, 51.1208661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00360662" }, "bbox": [ -0.5717566, 51.1200269, -0.5717566, 51.1200269 ], "geometry": { "type": "Point", "coordinates": [ -0.5717566, 51.1200269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04467469" }, "bbox": [ -0.5018459, 51.2098629, -0.5018459, 51.2098629 ], "geometry": { "type": "Point", "coordinates": [ -0.5018459, 51.2098629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99361138" }, "bbox": [ -0.5852043, 51.1182368, -0.5852043, 51.1182368 ], "geometry": { "type": "Point", "coordinates": [ -0.5852043, 51.1182368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99360139" }, "bbox": [ -0.5875545, 51.1179023, -0.5875545, 51.1179023 ], "geometry": { "type": "Point", "coordinates": [ -0.5875545, 51.1179023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98369238" }, "bbox": [ -0.5870346, 51.1184411, -0.5870346, 51.1184411 ], "geometry": { "type": "Point", "coordinates": [ -0.5870346, 51.1184411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88389187" }, "bbox": [ -0.7302994, 51.1421959, -0.7302994, 51.1421959 ], "geometry": { "type": "Point", "coordinates": [ -0.7302994, 51.1421959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07442439" }, "bbox": [ -0.4665683, 51.1891197, -0.4665683, 51.1891197 ], "geometry": { "type": "Point", "coordinates": [ -0.4665683, 51.1891197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92639824" }, "bbox": [ -0.6660068, 51.360375, -0.6660068, 51.360375 ], "geometry": { "type": "Point", "coordinates": [ -0.6660068, 51.360375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92636560" }, "bbox": [ -0.6702966, 51.3641205, -0.6702966, 51.3641205 ], "geometry": { "type": "Point", "coordinates": [ -0.6702966, 51.3641205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92636013" }, "bbox": [ -0.6722745, 51.3596823, -0.6722745, 51.3596823 ], "geometry": { "type": "Point", "coordinates": [ -0.6722745, 51.3596823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93631932" }, "bbox": [ -0.6628303, 51.361109, -0.6628303, 51.361109 ], "geometry": { "type": "Point", "coordinates": [ -0.6628303, 51.361109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19405334" }, "bbox": [ -0.292433, 51.15003, -0.292433, 51.15003 ], "geometry": { "type": "Point", "coordinates": [ -0.292433, 51.15003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19406655" }, "bbox": [ -0.2901684, 51.151902, -0.2901684, 51.151902 ], "geometry": { "type": "Point", "coordinates": [ -0.2901684, 51.151902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21461595" }, "bbox": [ -0.2670546, 51.208906, -0.2670546, 51.208906 ], "geometry": { "type": "Point", "coordinates": [ -0.2670546, 51.208906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21465543" }, "bbox": [ -0.2615109, 51.2042082, -0.2615109, 51.2042082 ], "geometry": { "type": "Point", "coordinates": [ -0.2615109, 51.2042082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21462284" }, "bbox": [ -0.2659761, 51.2075723, -0.2659761, 51.2075723 ], "geometry": { "type": "Point", "coordinates": [ -0.2659761, 51.2075723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04455932" }, "bbox": [ -0.5044329, 51.1976124, -0.5044329, 51.1976124 ], "geometry": { "type": "Point", "coordinates": [ -0.5044329, 51.1976124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04456933" }, "bbox": [ -0.5025642, 51.1976106, -0.5025642, 51.1976106 ], "geometry": { "type": "Point", "coordinates": [ -0.5025642, 51.1976106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20395522" }, "bbox": [ -0.2782117, 51.1395491, -0.2782117, 51.1395491 ], "geometry": { "type": "Point", "coordinates": [ -0.2782117, 51.1395491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97397620" }, "bbox": [ -0.6038301, 51.1437906, -0.6038301, 51.1437906 ], "geometry": { "type": "Point", "coordinates": [ -0.6038301, 51.1437906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09467476" }, "bbox": [ -0.4304611, 51.2095629, -0.4304611, 51.2095629 ], "geometry": { "type": "Point", "coordinates": [ -0.4304611, 51.2095629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09467065" }, "bbox": [ -0.4310382, 51.2086318, -0.4310382, 51.2086318 ], "geometry": { "type": "Point", "coordinates": [ -0.4310382, 51.2086318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09467070" }, "bbox": [ -0.4312774, 51.2087904, -0.4312774, 51.2087904 ], "geometry": { "type": "Point", "coordinates": [ -0.4312774, 51.2087904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09467253" }, "bbox": [ -0.4306392, 51.2073783, -0.4306392, 51.2073783 ], "geometry": { "type": "Point", "coordinates": [ -0.4306392, 51.2073783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09469050" }, "bbox": [ -0.4283644, 51.2077928, -0.4283644, 51.2077928 ], "geometry": { "type": "Point", "coordinates": [ -0.4283644, 51.2077928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09467657" }, "bbox": [ -0.4300874, 51.207719, -0.4300874, 51.207719 ], "geometry": { "type": "Point", "coordinates": [ -0.4300874, 51.207719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12432840" }, "bbox": [ -0.3952196, 51.1789301, -0.3952196, 51.1789301 ], "geometry": { "type": "Point", "coordinates": [ -0.3952196, 51.1789301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16385775" }, "bbox": [ -0.3353334, 51.1360859, -0.3353334, 51.1360859 ], "geometry": { "type": "Point", "coordinates": [ -0.3353334, 51.1360859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16386285" }, "bbox": [ -0.334409, 51.1371433, -0.334409, 51.1371433 ], "geometry": { "type": "Point", "coordinates": [ -0.334409, 51.1371433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16386392" }, "bbox": [ -0.3340598, 51.1378264, -0.3340598, 51.1378264 ], "geometry": { "type": "Point", "coordinates": [ -0.3340598, 51.1378264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16386486" }, "bbox": [ -0.334244, 51.1371293, -0.334244, 51.1371293 ], "geometry": { "type": "Point", "coordinates": [ -0.334244, 51.1371293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16387577" }, "bbox": [ -0.3325971, 51.1363293, -0.3325971, 51.1363293 ], "geometry": { "type": "Point", "coordinates": [ -0.3325971, 51.1363293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87416079" }, "bbox": [ -0.7484756, 51.1687089, -0.7484756, 51.1687089 ], "geometry": { "type": "Point", "coordinates": [ -0.7484756, 51.1687089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86415737" }, "bbox": [ -0.7631997, 51.1650806, -0.7631997, 51.1650806 ], "geometry": { "type": "Point", "coordinates": [ -0.7631997, 51.1650806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86403787" }, "bbox": [ -0.7661907, 51.1606605, -0.7661907, 51.1606605 ], "geometry": { "type": "Point", "coordinates": [ -0.7661907, 51.1606605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99324494" }, "bbox": [ -0.5810599, 51.0868681, -0.5810599, 51.0868681 ], "geometry": { "type": "Point", "coordinates": [ -0.5810599, 51.0868681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98393270" }, "bbox": [ -0.5955446, 51.1481006, -0.5955446, 51.1481006 ], "geometry": { "type": "Point", "coordinates": [ -0.5955446, 51.1481006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05426935" }, "bbox": [ -0.4904767, 51.1707967, -0.4904767, 51.1707967 ], "geometry": { "type": "Point", "coordinates": [ -0.4904767, 51.1707967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41506410" }, "bbox": [ 0.0271732, 51.2324223, 0.0271732, 51.2324223 ], "geometry": { "type": "Point", "coordinates": [ 0.0271732, 51.2324223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05355285" }, "bbox": [ -0.4939491, 51.1120804, -0.4939491, 51.1120804 ], "geometry": { "type": "Point", "coordinates": [ -0.4939491, 51.1120804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05353195" }, "bbox": [ -0.496911, 51.1131805, -0.496911, 51.1131805 ], "geometry": { "type": "Point", "coordinates": [ -0.496911, 51.1131805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05363308" }, "bbox": [ -0.4967146, 51.1142637, -0.4967146, 51.1142637 ], "geometry": { "type": "Point", "coordinates": [ -0.4967146, 51.1142637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00335115" }, "bbox": [ -0.5661378, 51.0889377, -0.5661378, 51.0889377 ], "geometry": { "type": "Point", "coordinates": [ -0.5661378, 51.0889377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94351552" }, "bbox": [ -0.656525, 51.1111245, -0.656525, 51.1111245 ], "geometry": { "type": "Point", "coordinates": [ -0.656525, 51.1111245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94347689" }, "bbox": [ -0.6478887, 51.1055034, -0.6478887, 51.1055034 ], "geometry": { "type": "Point", "coordinates": [ -0.6478887, 51.1055034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344689" }, "bbox": [ -0.6516993, 51.1055523, -0.6516993, 51.1055523 ], "geometry": { "type": "Point", "coordinates": [ -0.6516993, 51.1055523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344873" }, "bbox": [ -0.6516957, 51.1041239, -0.6516957, 51.1041239 ], "geometry": { "type": "Point", "coordinates": [ -0.6516957, 51.1041239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344359" }, "bbox": [ -0.6528354, 51.1028693, -0.6528354, 51.1028693 ], "geometry": { "type": "Point", "coordinates": [ -0.6528354, 51.1028693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81463152" }, "bbox": [ -0.8373473, 51.2121544, -0.8373473, 51.2121544 ], "geometry": { "type": "Point", "coordinates": [ -0.8373473, 51.2121544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81462038" }, "bbox": [ -0.8388409, 51.2108869, -0.8388409, 51.2108869 ], "geometry": { "type": "Point", "coordinates": [ -0.8388409, 51.2108869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95478042" }, "bbox": [ -0.6295783, 51.2180365, -0.6295783, 51.2180365 ], "geometry": { "type": "Point", "coordinates": [ -0.6295783, 51.2180365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95477847" }, "bbox": [ -0.6299167, 51.2185196, -0.6299167, 51.2185196 ], "geometry": { "type": "Point", "coordinates": [ -0.6299167, 51.2185196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95477242" }, "bbox": [ -0.6308181, 51.2179079, -0.6308181, 51.2179079 ], "geometry": { "type": "Point", "coordinates": [ -0.6308181, 51.2179079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95479847" }, "bbox": [ -0.6270465, 51.2184649, -0.6270465, 51.2184649 ], "geometry": { "type": "Point", "coordinates": [ -0.6270465, 51.2184649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93545301" }, "bbox": [ -0.6605128, 51.2776125, -0.6605128, 51.2776125 ], "geometry": { "type": "Point", "coordinates": [ -0.6605128, 51.2776125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93545216" }, "bbox": [ -0.660713, 51.2791447, -0.660713, 51.2791447 ], "geometry": { "type": "Point", "coordinates": [ -0.660713, 51.2791447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27469487" }, "bbox": [ -0.1697696, 51.2068223, -0.1697696, 51.2068223 ], "geometry": { "type": "Point", "coordinates": [ -0.1697696, 51.2068223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27469290" }, "bbox": [ -0.1700465, 51.2070551, -0.1700465, 51.2070551 ], "geometry": { "type": "Point", "coordinates": [ -0.1700465, 51.2070551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27468991" }, "bbox": [ -0.1708823, 51.20734, -0.1708823, 51.20734 ], "geometry": { "type": "Point", "coordinates": [ -0.1708823, 51.20734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27469093" }, "bbox": [ -0.1703582, 51.2073368, -0.1703582, 51.2073368 ], "geometry": { "type": "Point", "coordinates": [ -0.1703582, 51.2073368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27468896" }, "bbox": [ -0.1706688, 51.2076456, -0.1706688, 51.2076456 ], "geometry": { "type": "Point", "coordinates": [ -0.1706688, 51.2076456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27468591" }, "bbox": [ -0.1711212, 51.2072291, -0.1711212, 51.2072291 ], "geometry": { "type": "Point", "coordinates": [ -0.1711212, 51.2072291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27467990" }, "bbox": [ -0.1719056, 51.2071158, -0.1719056, 51.2071158 ], "geometry": { "type": "Point", "coordinates": [ -0.1719056, 51.2071158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27468987" }, "bbox": [ -0.1706952, 51.2063686, -0.1706952, 51.2063686 ], "geometry": { "type": "Point", "coordinates": [ -0.1706952, 51.2063686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27468286" }, "bbox": [ -0.1715049, 51.2067435, -0.1715049, 51.2067435 ], "geometry": { "type": "Point", "coordinates": [ -0.1715049, 51.2067435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27469785" }, "bbox": [ -0.1695668, 51.2065961, -0.1695668, 51.2065961 ], "geometry": { "type": "Point", "coordinates": [ -0.1695668, 51.2065961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28460286" }, "bbox": [ -0.1696844, 51.2067821, -0.1696844, 51.2067821 ], "geometry": { "type": "Point", "coordinates": [ -0.1696844, 51.2067821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27479000" }, "bbox": [ -0.1704773, 51.2078589, -0.1704773, 51.2078589 ], "geometry": { "type": "Point", "coordinates": [ -0.1704773, 51.2078589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40450229" }, "bbox": [ 0.0024896, 51.189717, 0.0024896, 51.189717 ], "geometry": { "type": "Point", "coordinates": [ 0.0024896, 51.189717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40450029" }, "bbox": [ 0.0021096, 51.1897761, 0.0021096, 51.1897761 ], "geometry": { "type": "Point", "coordinates": [ 0.0021096, 51.1897761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39457443" }, "bbox": [ -0.0016247, 51.1910763, -0.0016247, 51.1910763 ], "geometry": { "type": "Point", "coordinates": [ -0.0016247, 51.1910763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39458640" }, "bbox": [ 0.000119, 51.1907826, 0.000119, 51.1907826 ], "geometry": { "type": "Point", "coordinates": [ 0.000119, 51.1907826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90359706" }, "bbox": [ -0.7019704, 51.1076754, -0.7019704, 51.1076754 ], "geometry": { "type": "Point", "coordinates": [ -0.7019704, 51.1076754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90359202" }, "bbox": [ -0.7027043, 51.1073134, -0.7027043, 51.1073134 ], "geometry": { "type": "Point", "coordinates": [ -0.7027043, 51.1073134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90349393" }, "bbox": [ -0.7025277, 51.1065077, -0.7025277, 51.1065077 ], "geometry": { "type": "Point", "coordinates": [ -0.7025277, 51.1065077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90349896" }, "bbox": [ -0.701803, 51.1067507, -0.701803, 51.1067507 ], "geometry": { "type": "Point", "coordinates": [ -0.701803, 51.1067507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341974" }, "bbox": [ -0.6987686, 51.1047938, -0.6987686, 51.1047938 ], "geometry": { "type": "Point", "coordinates": [ -0.6987686, 51.1047938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341873" }, "bbox": [ -0.6992421, 51.1047142, -0.6992421, 51.1047142 ], "geometry": { "type": "Point", "coordinates": [ -0.6992421, 51.1047142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341871" }, "bbox": [ -0.6989066, 51.1045007, -0.6989066, 51.1045007 ], "geometry": { "type": "Point", "coordinates": [ -0.6989066, 51.1045007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341874" }, "bbox": [ -0.6989435, 51.1046508, -0.6989435, 51.1046508 ], "geometry": { "type": "Point", "coordinates": [ -0.6989435, 51.1046508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341376" }, "bbox": [ -0.6996957, 51.105016, -0.6996957, 51.105016 ], "geometry": { "type": "Point", "coordinates": [ -0.6996957, 51.105016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341282" }, "bbox": [ -0.6998168, 51.1055129, -0.6998168, 51.1055129 ], "geometry": { "type": "Point", "coordinates": [ -0.6998168, 51.1055129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91340984" }, "bbox": [ -0.7000919, 51.1055887, -0.7000919, 51.1055887 ], "geometry": { "type": "Point", "coordinates": [ -0.7000919, 51.1055887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91340782" }, "bbox": [ -0.7012131, 51.1055646, -0.7012131, 51.1055646 ], "geometry": { "type": "Point", "coordinates": [ -0.7012131, 51.1055646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91340985" }, "bbox": [ -0.7002188, 51.1057714, -0.7002188, 51.1057714 ], "geometry": { "type": "Point", "coordinates": [ -0.7002188, 51.1057714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341683" }, "bbox": [ -0.6991641, 51.1056626, -0.6991641, 51.1056626 ], "geometry": { "type": "Point", "coordinates": [ -0.6991641, 51.1056626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341595" }, "bbox": [ -0.6993314, 51.1066098, -0.6993314, 51.1066098 ], "geometry": { "type": "Point", "coordinates": [ -0.6993314, 51.1066098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341589" }, "bbox": [ -0.6994097, 51.1061021, -0.6994097, 51.1061021 ], "geometry": { "type": "Point", "coordinates": [ -0.6994097, 51.1061021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91343188" }, "bbox": [ -0.6972662, 51.1058784, -0.6972662, 51.1058784 ], "geometry": { "type": "Point", "coordinates": [ -0.6972662, 51.1058784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91340287" }, "bbox": [ -0.7012412, 51.1058966, -0.7012412, 51.1058966 ], "geometry": { "type": "Point", "coordinates": [ -0.7012412, 51.1058966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91340791" }, "bbox": [ -0.7005031, 51.1063273, -0.7005031, 51.1063273 ], "geometry": { "type": "Point", "coordinates": [ -0.7005031, 51.1063273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01620550" }, "bbox": [ -0.5499643, 51.3527896, -0.5499643, 51.3527896 ], "geometry": { "type": "Point", "coordinates": [ -0.5499643, 51.3527896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511643" }, "bbox": [ -0.394075, 51.2510699, -0.394075, 51.2510699 ], "geometry": { "type": "Point", "coordinates": [ -0.394075, 51.2510699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511142" }, "bbox": [ -0.3947791, 51.2510054, -0.3947791, 51.2510054 ], "geometry": { "type": "Point", "coordinates": [ -0.3947791, 51.2510054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511438" }, "bbox": [ -0.3945722, 51.250172, -0.3945722, 51.250172 ], "geometry": { "type": "Point", "coordinates": [ -0.3945722, 51.250172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511937" }, "bbox": [ -0.3937326, 51.2505361, -0.3937326, 51.2505361 ], "geometry": { "type": "Point", "coordinates": [ -0.3937326, 51.2505361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04437245" }, "bbox": [ -0.5027719, 51.1803635, -0.5027719, 51.1803635 ], "geometry": { "type": "Point", "coordinates": [ -0.5027719, 51.1803635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04430963" }, "bbox": [ -0.512166, 51.1823968, -0.512166, 51.1823968 ], "geometry": { "type": "Point", "coordinates": [ -0.512166, 51.1823968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17397465" }, "bbox": [ -0.317513, 51.1447553, -0.317513, 51.1447553 ], "geometry": { "type": "Point", "coordinates": [ -0.317513, 51.1447553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18400415" }, "bbox": [ -0.3135792, 51.1489172, -0.3135792, 51.1489172 ], "geometry": { "type": "Point", "coordinates": [ -0.3135792, 51.1489172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35544161" }, "bbox": [ -0.0601559, 51.2745641, -0.0601559, 51.2745641 ], "geometry": { "type": "Point", "coordinates": [ -0.0601559, 51.2745641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35544251" }, "bbox": [ -0.0599757, 51.2735916, -0.0599757, 51.2735916 ], "geometry": { "type": "Point", "coordinates": [ -0.0599757, 51.2735916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30564251" }, "bbox": [ -0.131296, 51.2931079, -0.131296, 51.2931079 ], "geometry": { "type": "Point", "coordinates": [ -0.131296, 51.2931079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28563648" }, "bbox": [ -0.1601189, 51.2931199, -0.1601189, 51.2931199 ], "geometry": { "type": "Point", "coordinates": [ -0.1601189, 51.2931199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28563948" }, "bbox": [ -0.1601894, 51.2929514, -0.1601894, 51.2929514 ], "geometry": { "type": "Point", "coordinates": [ -0.1601894, 51.2929514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28560260" }, "bbox": [ -0.1650628, 51.2941129, -0.1650628, 51.2941129 ], "geometry": { "type": "Point", "coordinates": [ -0.1650628, 51.2941129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569462" }, "bbox": [ -0.1669848, 51.29401, -0.1669848, 51.29401 ], "geometry": { "type": "Point", "coordinates": [ -0.1669848, 51.29401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569155" }, "bbox": [ -0.1666054, 51.2939216, -0.1666054, 51.2939216 ], "geometry": { "type": "Point", "coordinates": [ -0.1666054, 51.2939216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569463" }, "bbox": [ -0.1661222, 51.2945271, -0.1661222, 51.2945271 ], "geometry": { "type": "Point", "coordinates": [ -0.1661222, 51.2945271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43400734" }, "bbox": [ 0.043936, 51.144508, 0.043936, 51.144508 ], "geometry": { "type": "Point", "coordinates": [ 0.043936, 51.144508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27566413" }, "bbox": [ -0.1708459, 51.2900461, -0.1708459, 51.2900461 ], "geometry": { "type": "Point", "coordinates": [ -0.1708459, 51.2900461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27566911" }, "bbox": [ -0.1700509, 51.289838, -0.1700509, 51.289838 ], "geometry": { "type": "Point", "coordinates": [ -0.1700509, 51.289838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27567422" }, "bbox": [ -0.1694679, 51.2907733, -0.1694679, 51.2907733 ], "geometry": { "type": "Point", "coordinates": [ -0.1694679, 51.2907733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98354282" }, "bbox": [ -0.5954014, 51.1132732, -0.5954014, 51.1132732 ], "geometry": { "type": "Point", "coordinates": [ -0.5954014, 51.1132732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448636" }, "bbox": [ -0.142598, 51.1836011, -0.142598, 51.1836011 ], "geometry": { "type": "Point", "coordinates": [ -0.142598, 51.1836011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29449418" }, "bbox": [ -0.1426515, 51.1821844, -0.1426515, 51.1821844 ], "geometry": { "type": "Point", "coordinates": [ -0.1426515, 51.1821844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448912" }, "bbox": [ -0.143094, 51.1814588, -0.143094, 51.1814588 ], "geometry": { "type": "Point", "coordinates": [ -0.143094, 51.1814588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29449225" }, "bbox": [ -0.1425314, 51.1828822, -0.1425314, 51.1828822 ], "geometry": { "type": "Point", "coordinates": [ -0.1425314, 51.1828822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30442105" }, "bbox": [ -0.1386796, 51.1807254, -0.1386796, 51.1807254 ], "geometry": { "type": "Point", "coordinates": [ -0.1386796, 51.1807254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30440108" }, "bbox": [ -0.141487, 51.1810256, -0.141487, 51.1810256 ], "geometry": { "type": "Point", "coordinates": [ -0.141487, 51.1810256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30431092" }, "bbox": [ -0.1404567, 51.1788535, -0.1404567, 51.1788535 ], "geometry": { "type": "Point", "coordinates": [ -0.1404567, 51.1788535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30430495" }, "bbox": [ -0.1411635, 51.1799243, -0.1411635, 51.1799243 ], "geometry": { "type": "Point", "coordinates": [ -0.1411635, 51.1799243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30432469" }, "bbox": [ -0.1382543, 51.17758, -0.1382543, 51.17758 ], "geometry": { "type": "Point", "coordinates": [ -0.1382543, 51.17758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30431375" }, "bbox": [ -0.1396643, 51.1781502, -0.1396643, 51.1781502 ], "geometry": { "type": "Point", "coordinates": [ -0.1396643, 51.1781502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91516722" }, "bbox": [ -0.6876807, 51.252751, -0.6876807, 51.252751 ], "geometry": { "type": "Point", "coordinates": [ -0.6876807, 51.252751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91508999" }, "bbox": [ -0.6848224, 51.2506591, -0.6848224, 51.2506591 ], "geometry": { "type": "Point", "coordinates": [ -0.6848224, 51.2506591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91507852" }, "bbox": [ -0.6863046, 51.2465217, -0.6863046, 51.2465217 ], "geometry": { "type": "Point", "coordinates": [ -0.6863046, 51.2465217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91507070" }, "bbox": [ -0.6874817, 51.2481044, -0.6874817, 51.2481044 ], "geometry": { "type": "Point", "coordinates": [ -0.6874817, 51.2481044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02427379" }, "bbox": [ -0.5318158, 51.1752589, -0.5318158, 51.1752589 ], "geometry": { "type": "Point", "coordinates": [ -0.5318158, 51.1752589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02426693" }, "bbox": [ -0.5326386, 51.1764396, -0.5326386, 51.1764396 ], "geometry": { "type": "Point", "coordinates": [ -0.5326386, 51.1764396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02426288" }, "bbox": [ -0.5334034, 51.1759766, -0.5334034, 51.1759766 ], "geometry": { "type": "Point", "coordinates": [ -0.5334034, 51.1759766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02437101" }, "bbox": [ -0.5320598, 51.1770807, -0.5320598, 51.1770807 ], "geometry": { "type": "Point", "coordinates": [ -0.5320598, 51.1770807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19439056" }, "bbox": [ -0.2859077, 51.1785414, -0.2859077, 51.1785414 ], "geometry": { "type": "Point", "coordinates": [ -0.2859077, 51.1785414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12410477" }, "bbox": [ -0.3990352, 51.1641977, -0.3990352, 51.1641977 ], "geometry": { "type": "Point", "coordinates": [ -0.3990352, 51.1641977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12411276" }, "bbox": [ -0.3978664, 51.1636032, -0.3978664, 51.1636032 ], "geometry": { "type": "Point", "coordinates": [ -0.3978664, 51.1636032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12411692" }, "bbox": [ -0.3975788, 51.1652831, -0.3975788, 51.1652831 ], "geometry": { "type": "Point", "coordinates": [ -0.3975788, 51.1652831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12412485" }, "bbox": [ -0.3961033, 51.1650188, -0.3961033, 51.1650188 ], "geometry": { "type": "Point", "coordinates": [ -0.3961033, 51.1650188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24493034" }, "bbox": [ -0.2206779, 51.2299308, -0.2206779, 51.2299308 ], "geometry": { "type": "Point", "coordinates": [ -0.2206779, 51.2299308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354915" }, "bbox": [ -0.69449, 51.1084114, -0.69449, 51.1084114 ], "geometry": { "type": "Point", "coordinates": [ -0.69449, 51.1084114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91357144" }, "bbox": [ -0.6912669, 51.1109007, -0.6912669, 51.1109007 ], "geometry": { "type": "Point", "coordinates": [ -0.6912669, 51.1109007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91355019" }, "bbox": [ -0.6944919, 51.1087505, -0.6944919, 51.1087505 ], "geometry": { "type": "Point", "coordinates": [ -0.6944919, 51.1087505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91356550" }, "bbox": [ -0.6923018, 51.1115228, -0.6923018, 51.1115228 ], "geometry": { "type": "Point", "coordinates": [ -0.6923018, 51.1115228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91355858" }, "bbox": [ -0.6931224, 51.112112, -0.6931224, 51.112112 ], "geometry": { "type": "Point", "coordinates": [ -0.6931224, 51.112112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91355956" }, "bbox": [ -0.6928202, 51.1118327, -0.6928202, 51.1118327 ], "geometry": { "type": "Point", "coordinates": [ -0.6928202, 51.1118327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91358756" }, "bbox": [ -0.6890402, 51.1120631, -0.6890402, 51.1120631 ], "geometry": { "type": "Point", "coordinates": [ -0.6890402, 51.1120631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00400471" }, "bbox": [ -0.5710272, 51.1569703, -0.5710272, 51.1569703 ], "geometry": { "type": "Point", "coordinates": [ -0.5710272, 51.1569703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11433833" }, "bbox": [ -0.4078681, 51.1782991, -0.4078681, 51.1782991 ], "geometry": { "type": "Point", "coordinates": [ -0.4078681, 51.1782991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11434432" }, "bbox": [ -0.4071252, 51.1781704, -0.4071252, 51.1781704 ], "geometry": { "type": "Point", "coordinates": [ -0.4071252, 51.1781704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12442332" }, "bbox": [ -0.3947326, 51.1861673, -0.3947326, 51.1861673 ], "geometry": { "type": "Point", "coordinates": [ -0.3947326, 51.1861673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12437502" }, "bbox": [ -0.3880454, 51.1756135, -0.3880454, 51.1756135 ], "geometry": { "type": "Point", "coordinates": [ -0.3880454, 51.1756135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12420043" }, "bbox": [ -0.3984385, 51.1697495, -0.3984385, 51.1697495 ], "geometry": { "type": "Point", "coordinates": [ -0.3984385, 51.1697495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11433638" }, "bbox": [ -0.4082801, 51.1788128, -0.4082801, 51.1788128 ], "geometry": { "type": "Point", "coordinates": [ -0.4082801, 51.1788128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12421845" }, "bbox": [ -0.3966738, 51.1703907, -0.3966738, 51.1703907 ], "geometry": { "type": "Point", "coordinates": [ -0.3966738, 51.1703907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12420322" }, "bbox": [ -0.3990011, 51.1682472, -0.3990011, 51.1682472 ], "geometry": { "type": "Point", "coordinates": [ -0.3990011, 51.1682472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12426260" }, "bbox": [ -0.3908018, 51.171387, -0.3908018, 51.171387 ], "geometry": { "type": "Point", "coordinates": [ -0.3908018, 51.171387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99544010" }, "bbox": [ -0.5765533, 51.2768403, -0.5765533, 51.2768403 ], "geometry": { "type": "Point", "coordinates": [ -0.5765533, 51.2768403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22412081" }, "bbox": [ -0.253751, 51.1625525, -0.253751, 51.1625525 ], "geometry": { "type": "Point", "coordinates": [ -0.253751, 51.1625525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22410182" }, "bbox": [ -0.2560623, 51.1625321, -0.2560623, 51.1625321 ], "geometry": { "type": "Point", "coordinates": [ -0.2560623, 51.1625321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05367588" }, "bbox": [ -0.4903265, 51.121483, -0.4903265, 51.121483 ], "geometry": { "type": "Point", "coordinates": [ -0.4903265, 51.121483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05371677" }, "bbox": [ -0.498594, 51.1295767, -0.498594, 51.1295767 ], "geometry": { "type": "Point", "coordinates": [ -0.498594, 51.1295767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05374568" }, "bbox": [ -0.4942728, 51.1288043, -0.4942728, 51.1288043 ], "geometry": { "type": "Point", "coordinates": [ -0.4942728, 51.1288043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05382801" }, "bbox": [ -0.4966894, 51.1315994, -0.4966894, 51.1315994 ], "geometry": { "type": "Point", "coordinates": [ -0.4966894, 51.1315994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05381013" }, "bbox": [ -0.4993813, 51.1327104, -0.4993813, 51.1327104 ], "geometry": { "type": "Point", "coordinates": [ -0.4993813, 51.1327104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04435803" }, "bbox": [ -0.5053027, 51.1770271, -0.5053027, 51.1770271 ], "geometry": { "type": "Point", "coordinates": [ -0.5053027, 51.1770271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04424084" }, "bbox": [ -0.5084017, 51.1751192, -0.5084017, 51.1751192 ], "geometry": { "type": "Point", "coordinates": [ -0.5084017, 51.1751192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04425597" }, "bbox": [ -0.5060504, 51.1764234, -0.5060504, 51.1764234 ], "geometry": { "type": "Point", "coordinates": [ -0.5060504, 51.1764234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04426291" }, "bbox": [ -0.5045095, 51.1758498, -0.5045095, 51.1758498 ], "geometry": { "type": "Point", "coordinates": [ -0.5045095, 51.1758498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98439202" }, "bbox": [ -0.5863375, 51.1778102, -0.5863375, 51.1778102 ], "geometry": { "type": "Point", "coordinates": [ -0.5863375, 51.1778102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98438937" }, "bbox": [ -0.5869321, 51.1801638, -0.5869321, 51.1801638 ], "geometry": { "type": "Point", "coordinates": [ -0.5869321, 51.1801638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98437550" }, "bbox": [ -0.5883231, 51.1821694, -0.5883231, 51.1821694 ], "geometry": { "type": "Point", "coordinates": [ -0.5883231, 51.1821694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98438542" }, "bbox": [ -0.5870129, 51.1815482, -0.5870129, 51.1815482 ], "geometry": { "type": "Point", "coordinates": [ -0.5870129, 51.1815482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98438353" }, "bbox": [ -0.5874113, 51.182599, -0.5874113, 51.182599 ], "geometry": { "type": "Point", "coordinates": [ -0.5874113, 51.182599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10360481" }, "bbox": [ -0.4291796, 51.1200135, -0.4291796, 51.1200135 ], "geometry": { "type": "Point", "coordinates": [ -0.4291796, 51.1200135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10373310" }, "bbox": [ -0.4248032, 51.1225821, -0.4248032, 51.1225821 ], "geometry": { "type": "Point", "coordinates": [ -0.4248032, 51.1225821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09378901" }, "bbox": [ -0.4311348, 51.1218347, -0.4311348, 51.1218347 ], "geometry": { "type": "Point", "coordinates": [ -0.4311348, 51.1218347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09379803" }, "bbox": [ -0.4298599, 51.1220541, -0.4298599, 51.1220541 ], "geometry": { "type": "Point", "coordinates": [ -0.4298599, 51.1220541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28562438" }, "bbox": [ -0.1620915, 51.2921723, -0.1620915, 51.2921723 ], "geometry": { "type": "Point", "coordinates": [ -0.1620915, 51.2921723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28562246" }, "bbox": [ -0.1625205, 51.2928537, -0.1625205, 51.2928537 ], "geometry": { "type": "Point", "coordinates": [ -0.1625205, 51.2928537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28560917" }, "bbox": [ -0.1644735, 51.2902616, -0.1644735, 51.2902616 ], "geometry": { "type": "Point", "coordinates": [ -0.1644735, 51.2902616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569517" }, "bbox": [ -0.1662965, 51.2904397, -0.1662965, 51.2904397 ], "geometry": { "type": "Point", "coordinates": [ -0.1662965, 51.2904397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569318" }, "bbox": [ -0.1666679, 51.2903315, -0.1666679, 51.2903315 ], "geometry": { "type": "Point", "coordinates": [ -0.1666679, 51.2903315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27568613" }, "bbox": [ -0.1678248, 51.2900483, -0.1678248, 51.2900483 ], "geometry": { "type": "Point", "coordinates": [ -0.1678248, 51.2900483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18397537" }, "bbox": [ -0.3036164, 51.1414149, -0.3036164, 51.1414149 ], "geometry": { "type": "Point", "coordinates": [ -0.3036164, 51.1414149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19390517" }, "bbox": [ -0.2997892, 51.1392773, -0.2997892, 51.1392773 ], "geometry": { "type": "Point", "coordinates": [ -0.2997892, 51.1392773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388492" }, "bbox": [ -0.3027632, 51.1371487, -0.3027632, 51.1371487 ], "geometry": { "type": "Point", "coordinates": [ -0.3027632, 51.1371487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15401910" }, "bbox": [ -0.3544127, 51.1486346, -0.3544127, 51.1486346 ], "geometry": { "type": "Point", "coordinates": [ -0.3544127, 51.1486346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463763" }, "bbox": [ -0.1931156, 51.204837, -0.1931156, 51.204837 ], "geometry": { "type": "Point", "coordinates": [ -0.1931156, 51.204837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26466482" }, "bbox": [ -0.1884285, 51.2066321, -0.1884285, 51.2066321 ], "geometry": { "type": "Point", "coordinates": [ -0.1884285, 51.2066321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26466079" }, "bbox": [ -0.1892821, 51.2065174, -0.1892821, 51.2065174 ], "geometry": { "type": "Point", "coordinates": [ -0.1892821, 51.2065174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26465589" }, "bbox": [ -0.1895375, 51.2072886, -0.1895375, 51.2072886 ], "geometry": { "type": "Point", "coordinates": [ -0.1895375, 51.2072886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26465577" }, "bbox": [ -0.1890939, 51.2058506, -0.1890939, 51.2058506 ], "geometry": { "type": "Point", "coordinates": [ -0.1890939, 51.2058506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26465966" }, "bbox": [ -0.1892338, 51.20519, -0.1892338, 51.20519 ], "geometry": { "type": "Point", "coordinates": [ -0.1892338, 51.20519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463495" }, "bbox": [ -0.1928887, 51.2078144, -0.1928887, 51.2078144 ], "geometry": { "type": "Point", "coordinates": [ -0.1928887, 51.2078144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463985" }, "bbox": [ -0.1919386, 51.2070075, -0.1919386, 51.2070075 ], "geometry": { "type": "Point", "coordinates": [ -0.1919386, 51.2070075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463787" }, "bbox": [ -0.1925734, 51.2070659, -0.1925734, 51.2070659 ], "geometry": { "type": "Point", "coordinates": [ -0.1925734, 51.2070659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473304" }, "bbox": [ -0.1930098, 51.208536, -0.1930098, 51.208536 ], "geometry": { "type": "Point", "coordinates": [ -0.1930098, 51.208536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473806" }, "bbox": [ -0.1923807, 51.2087394, -0.1923807, 51.2087394 ], "geometry": { "type": "Point", "coordinates": [ -0.1923807, 51.2087394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473717" }, "bbox": [ -0.1907048, 51.2098989, -0.1907048, 51.2098989 ], "geometry": { "type": "Point", "coordinates": [ -0.1907048, 51.2098989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26474715" }, "bbox": [ -0.1909799, 51.2094623, -0.1909799, 51.2094623 ], "geometry": { "type": "Point", "coordinates": [ -0.1909799, 51.2094623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473820" }, "bbox": [ -0.1901393, 51.2101844, -0.1901393, 51.2101844 ], "geometry": { "type": "Point", "coordinates": [ -0.1901393, 51.2101844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02348746" }, "bbox": [ -0.5322255, 51.1002046, -0.5322255, 51.1002046 ], "geometry": { "type": "Point", "coordinates": [ -0.5322255, 51.1002046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02349020" }, "bbox": [ -0.5319332, 51.0983522, -0.5319332, 51.0983522 ], "geometry": { "type": "Point", "coordinates": [ -0.5319332, 51.0983522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02349311" }, "bbox": [ -0.5314059, 51.097063, -0.5314059, 51.097063 ], "geometry": { "type": "Point", "coordinates": [ -0.5314059, 51.097063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02339895" }, "bbox": [ -0.5307463, 51.0956802, -0.5307463, 51.0956802 ], "geometry": { "type": "Point", "coordinates": [ -0.5307463, 51.0956802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21558620" }, "bbox": [ -0.2538106, 51.2830046, -0.2538106, 51.2830046 ], "geometry": { "type": "Point", "coordinates": [ -0.2538106, 51.2830046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09409518" }, "bbox": [ -0.4294703, 51.1508807, -0.4294703, 51.1508807 ], "geometry": { "type": "Point", "coordinates": [ -0.4294703, 51.1508807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09408907" }, "bbox": [ -0.4301055, 51.1494182, -0.4301055, 51.1494182 ], "geometry": { "type": "Point", "coordinates": [ -0.4301055, 51.1494182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09408801" }, "bbox": [ -0.4303264, 51.1488505, -0.4303264, 51.1488505 ], "geometry": { "type": "Point", "coordinates": [ -0.4303264, 51.1488505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09398993" }, "bbox": [ -0.4302116, 51.1481986, -0.4302116, 51.1481986 ], "geometry": { "type": "Point", "coordinates": [ -0.4302116, 51.1481986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04449848" }, "bbox": [ -0.4988204, 51.1903068, -0.4988204, 51.1903068 ], "geometry": { "type": "Point", "coordinates": [ -0.4988204, 51.1903068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04446241" }, "bbox": [ -0.5018372, 51.19032, -0.5018372, 51.19032 ], "geometry": { "type": "Point", "coordinates": [ -0.5018372, 51.19032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04444357" }, "bbox": [ -0.5069317, 51.1909337, -0.5069317, 51.1909337 ], "geometry": { "type": "Point", "coordinates": [ -0.5069317, 51.1909337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04442642" }, "bbox": [ -0.509206, 51.189566, -0.509206, 51.189566 ], "geometry": { "type": "Point", "coordinates": [ -0.509206, 51.189566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04443259" }, "bbox": [ -0.5084096, 51.1911062, -0.5084096, 51.1911062 ], "geometry": { "type": "Point", "coordinates": [ -0.5084096, 51.1911062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04445334" }, "bbox": [ -0.506655, 51.1885027, -0.506655, 51.1885027 ], "geometry": { "type": "Point", "coordinates": [ -0.506655, 51.1885027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94446222" }, "bbox": [ -0.6473196, 51.1894229, -0.6473196, 51.1894229 ], "geometry": { "type": "Point", "coordinates": [ -0.6473196, 51.1894229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94446604" }, "bbox": [ -0.6467321, 51.1879374, -0.6467321, 51.1879374 ], "geometry": { "type": "Point", "coordinates": [ -0.6467321, 51.1879374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94448118" }, "bbox": [ -0.6444496, 51.1890739, -0.6444496, 51.1890739 ], "geometry": { "type": "Point", "coordinates": [ -0.6444496, 51.1890739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94447805" }, "bbox": [ -0.6450927, 51.1879251, -0.6450927, 51.1879251 ], "geometry": { "type": "Point", "coordinates": [ -0.6450927, 51.1879251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94449749" }, "bbox": [ -0.6418077, 51.1917089, -0.6418077, 51.1917089 ], "geometry": { "type": "Point", "coordinates": [ -0.6418077, 51.1917089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94447842" }, "bbox": [ -0.6452076, 51.1911877, -0.6452076, 51.1911877 ], "geometry": { "type": "Point", "coordinates": [ -0.6452076, 51.1911877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94437497" }, "bbox": [ -0.6457531, 51.1871511, -0.6457531, 51.1871511 ], "geometry": { "type": "Point", "coordinates": [ -0.6457531, 51.1871511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94458514" }, "bbox": [ -0.6438446, 51.1976669, -0.6438446, 51.1976669 ], "geometry": { "type": "Point", "coordinates": [ -0.6438446, 51.1976669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94445701" }, "bbox": [ -0.6481886, 51.1875384, -0.6481886, 51.1875384 ], "geometry": { "type": "Point", "coordinates": [ -0.6481886, 51.1875384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94445908" }, "bbox": [ -0.6477887, 51.1882462, -0.6477887, 51.1882462 ], "geometry": { "type": "Point", "coordinates": [ -0.6477887, 51.1882462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94447736" }, "bbox": [ -0.645181, 51.190667, -0.645181, 51.190667 ], "geometry": { "type": "Point", "coordinates": [ -0.645181, 51.190667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529243" }, "bbox": [ -0.4116653, 51.2602191, -0.4116653, 51.2602191 ], "geometry": { "type": "Point", "coordinates": [ -0.4116653, 51.2602191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08399200" }, "bbox": [ -0.4445551, 51.1399272, -0.4445551, 51.1399272 ], "geometry": { "type": "Point", "coordinates": [ -0.4445551, 51.1399272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14476948" }, "bbox": [ -0.3591115, 51.2151243, -0.3591115, 51.2151243 ], "geometry": { "type": "Point", "coordinates": [ -0.3591115, 51.2151243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20460963" }, "bbox": [ -0.2822919, 51.2064242, -0.2822919, 51.2064242 ], "geometry": { "type": "Point", "coordinates": [ -0.2822919, 51.2064242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20460770" }, "bbox": [ -0.2825505, 51.2068957, -0.2825505, 51.2068957 ], "geometry": { "type": "Point", "coordinates": [ -0.2825505, 51.2068957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20461572" }, "bbox": [ -0.2815926, 51.2070184, -0.2815926, 51.2070184 ], "geometry": { "type": "Point", "coordinates": [ -0.2815926, 51.2070184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43403863" }, "bbox": [ 0.0485729, 51.1469135, 0.0485729, 51.1469135 ], "geometry": { "type": "Point", "coordinates": [ 0.0485729, 51.1469135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43403972" }, "bbox": [ 0.0486978, 51.1477324, 0.0486978, 51.1477324 ], "geometry": { "type": "Point", "coordinates": [ 0.0486978, 51.1477324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43402697" }, "bbox": [ 0.0469391, 51.1501313, 0.0469391, 51.1501313 ], "geometry": { "type": "Point", "coordinates": [ 0.0469391, 51.1501313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43405074" }, "bbox": [ 0.0502579, 51.1479554, 0.0502579, 51.1479554 ], "geometry": { "type": "Point", "coordinates": [ 0.0502579, 51.1479554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43415043" }, "bbox": [ 0.0506242, 51.1541637, 0.0506242, 51.1541637 ], "geometry": { "type": "Point", "coordinates": [ 0.0506242, 51.1541637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30435901" }, "bbox": [ -0.133397, 51.1714214, -0.133397, 51.1714214 ], "geometry": { "type": "Point", "coordinates": [ -0.133397, 51.1714214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30435025" }, "bbox": [ -0.134478, 51.1734747, -0.134478, 51.1734747 ], "geometry": { "type": "Point", "coordinates": [ -0.134478, 51.1734747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00445141" }, "bbox": [ -0.5631682, 51.1900679, -0.5631682, 51.1900679 ], "geometry": { "type": "Point", "coordinates": [ -0.5631682, 51.1900679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00443649" }, "bbox": [ -0.5652441, 51.1907883, -0.5652441, 51.1907883 ], "geometry": { "type": "Point", "coordinates": [ -0.5652441, 51.1907883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421738" }, "bbox": [ -0.5542463, 51.1717133, -0.5542463, 51.1717133 ], "geometry": { "type": "Point", "coordinates": [ -0.5542463, 51.1717133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01431435" }, "bbox": [ -0.5543501, 51.1804405, -0.5543501, 51.1804405 ], "geometry": { "type": "Point", "coordinates": [ -0.5543501, 51.1804405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01440117" }, "bbox": [ -0.5560905, 51.1878645, -0.5560905, 51.1878645 ], "geometry": { "type": "Point", "coordinates": [ -0.5560905, 51.1878645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01440604" }, "bbox": [ -0.5553179, 51.186668, -0.5553179, 51.186668 ], "geometry": { "type": "Point", "coordinates": [ -0.5553179, 51.186668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00442831" }, "bbox": [ -0.5664894, 51.1892592, -0.5664894, 51.1892592 ], "geometry": { "type": "Point", "coordinates": [ -0.5664894, 51.1892592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00446335" }, "bbox": [ -0.5616035, 51.1896152, -0.5616035, 51.1896152 ], "geometry": { "type": "Point", "coordinates": [ -0.5616035, 51.1896152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00446635" }, "bbox": [ -0.5610419, 51.1895171, -0.5610419, 51.1895171 ], "geometry": { "type": "Point", "coordinates": [ -0.5610419, 51.1895171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00442415" }, "bbox": [ -0.5671078, 51.187779, -0.5671078, 51.187779 ], "geometry": { "type": "Point", "coordinates": [ -0.5671078, 51.187779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00441824" }, "bbox": [ -0.5678074, 51.1886955, -0.5678074, 51.1886955 ], "geometry": { "type": "Point", "coordinates": [ -0.5678074, 51.1886955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01426896" }, "bbox": [ -0.5467481, 51.1768801, -0.5467481, 51.1768801 ], "geometry": { "type": "Point", "coordinates": [ -0.5467481, 51.1768801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01429290" }, "bbox": [ -0.5434149, 51.1764362, -0.5434149, 51.1764362 ], "geometry": { "type": "Point", "coordinates": [ -0.5434149, 51.1764362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01429294" }, "bbox": [ -0.5432403, 51.1764274, -0.5432403, 51.1764274 ], "geometry": { "type": "Point", "coordinates": [ -0.5432403, 51.1764274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01429387" }, "bbox": [ -0.5435312, 51.1760186, -0.5435312, 51.1760186 ], "geometry": { "type": "Point", "coordinates": [ -0.5435312, 51.1760186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96370331" }, "bbox": [ -0.6292193, 51.1271868, -0.6292193, 51.1271868 ], "geometry": { "type": "Point", "coordinates": [ -0.6292193, 51.1271868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95379815" }, "bbox": [ -0.6299999, 51.1256649, -0.6299999, 51.1256649 ], "geometry": { "type": "Point", "coordinates": [ -0.6299999, 51.1256649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95378623" }, "bbox": [ -0.6322913, 51.1264577, -0.6322913, 51.1264577 ], "geometry": { "type": "Point", "coordinates": [ -0.6322913, 51.1264577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96370917" }, "bbox": [ -0.6281641, 51.1257648, -0.6281641, 51.1257648 ], "geometry": { "type": "Point", "coordinates": [ -0.6281641, 51.1257648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87474093" }, "bbox": [ -0.7496688, 51.2239037, -0.7496688, 51.2239037 ], "geometry": { "type": "Point", "coordinates": [ -0.7496688, 51.2239037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87475078" }, "bbox": [ -0.7485174, 51.222514, -0.7485174, 51.222514 ], "geometry": { "type": "Point", "coordinates": [ -0.7485174, 51.222514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87474893" }, "bbox": [ -0.74866, 51.2238778, -0.74866, 51.2238778 ], "geometry": { "type": "Point", "coordinates": [ -0.74866, 51.2238778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87474182" }, "bbox": [ -0.7496089, 51.2229776, -0.7496089, 51.2229776 ], "geometry": { "type": "Point", "coordinates": [ -0.7496089, 51.2229776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87474598" }, "bbox": [ -0.7490509, 51.2243897, -0.7490509, 51.2243897 ], "geometry": { "type": "Point", "coordinates": [ -0.7490509, 51.2243897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87484007" }, "bbox": [ -0.749678, 51.2251941, -0.749678, 51.2251941 ], "geometry": { "type": "Point", "coordinates": [ -0.749678, 51.2251941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87484203" }, "bbox": [ -0.7493811, 51.2248145, -0.7493811, 51.2248145 ], "geometry": { "type": "Point", "coordinates": [ -0.7493811, 51.2248145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92344687" }, "bbox": [ -0.6807291, 51.1057248, -0.6807291, 51.1057248 ], "geometry": { "type": "Point", "coordinates": [ -0.6807291, 51.1057248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92344197" }, "bbox": [ -0.6815017, 51.1066824, -0.6815017, 51.1066824 ], "geometry": { "type": "Point", "coordinates": [ -0.6815017, 51.1066824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96388924" }, "bbox": [ -0.6165418, 51.1352993, -0.6165418, 51.1352993 ], "geometry": { "type": "Point", "coordinates": [ -0.6165418, 51.1352993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389534" }, "bbox": [ -0.6154063, 51.1362662, -0.6154063, 51.1362662 ], "geometry": { "type": "Point", "coordinates": [ -0.6154063, 51.1362662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97381716" }, "bbox": [ -0.6124051, 51.1345594, -0.6124051, 51.1345594 ], "geometry": { "type": "Point", "coordinates": [ -0.6124051, 51.1345594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97380237" }, "bbox": [ -0.6145283, 51.13642, -0.6145283, 51.13642 ], "geometry": { "type": "Point", "coordinates": [ -0.6145283, 51.13642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97381640" }, "bbox": [ -0.6130062, 51.1368423, -0.6130062, 51.1368423 ], "geometry": { "type": "Point", "coordinates": [ -0.6130062, 51.1368423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94351205" }, "bbox": [ -0.6569315, 51.1070319, -0.6569315, 51.1070319 ], "geometry": { "type": "Point", "coordinates": [ -0.6569315, 51.1070319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94340983" }, "bbox": [ -0.6574957, 51.1051523, -0.6574957, 51.1051523 ], "geometry": { "type": "Point", "coordinates": [ -0.6574957, 51.1051523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665119" }, "bbox": [ -0.5283347, 51.3855445, -0.5283347, 51.3855445 ], "geometry": { "type": "Point", "coordinates": [ -0.5283347, 51.3855445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02664425" }, "bbox": [ -0.529213, 51.3862039, -0.529213, 51.3862039 ], "geometry": { "type": "Point", "coordinates": [ -0.529213, 51.3862039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95481109" }, "bbox": [ -0.639239, 51.2241795, -0.639239, 51.2241795 ], "geometry": { "type": "Point", "coordinates": [ -0.639239, 51.2241795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18479466" }, "bbox": [ -0.2982148, 51.215806, -0.2982148, 51.215806 ], "geometry": { "type": "Point", "coordinates": [ -0.2982148, 51.215806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18479542" }, "bbox": [ -0.2981865, 51.2133187, -0.2981865, 51.2133187 ], "geometry": { "type": "Point", "coordinates": [ -0.2981865, 51.2133187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19470456" }, "bbox": [ -0.2969425, 51.214977, -0.2969425, 51.214977 ], "geometry": { "type": "Point", "coordinates": [ -0.2969425, 51.214977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12411295" }, "bbox": [ -0.3983757, 51.1660269, -0.3983757, 51.1660269 ], "geometry": { "type": "Point", "coordinates": [ -0.3983757, 51.1660269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04335641" }, "bbox": [ -0.5089784, 51.0896596, -0.5089784, 51.0896596 ], "geometry": { "type": "Point", "coordinates": [ -0.5089784, 51.0896596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04337892" }, "bbox": [ -0.5047717, 51.0944002, -0.5047717, 51.0944002 ], "geometry": { "type": "Point", "coordinates": [ -0.5047717, 51.0944002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04336534" }, "bbox": [ -0.5072777, 51.0894897, -0.5072777, 51.0894897 ], "geometry": { "type": "Point", "coordinates": [ -0.5072777, 51.0894897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04336929" }, "bbox": [ -0.5065797, 51.089416, -0.5065797, 51.089416 ], "geometry": { "type": "Point", "coordinates": [ -0.5065797, 51.089416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04335559" }, "bbox": [ -0.5072223, 51.0922221, -0.5072223, 51.0922221 ], "geometry": { "type": "Point", "coordinates": [ -0.5072223, 51.0922221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04336622" }, "bbox": [ -0.5070036, 51.0888149, -0.5070036, 51.0888149 ], "geometry": { "type": "Point", "coordinates": [ -0.5070036, 51.0888149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04337523" }, "bbox": [ -0.5057345, 51.088973, -0.5057345, 51.088973 ], "geometry": { "type": "Point", "coordinates": [ -0.5057345, 51.088973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04339540" }, "bbox": [ -0.5027323, 51.090312, -0.5027323, 51.090312 ], "geometry": { "type": "Point", "coordinates": [ -0.5027323, 51.090312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04337244" }, "bbox": [ -0.5060661, 51.0907416, -0.5060661, 51.0907416 ], "geometry": { "type": "Point", "coordinates": [ -0.5060661, 51.0907416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12410297" }, "bbox": [ -0.3991414, 51.1660271, -0.3991414, 51.1660271 ], "geometry": { "type": "Point", "coordinates": [ -0.3991414, 51.1660271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04345330" }, "bbox": [ -0.5083243, 51.0984828, -0.5083243, 51.0984828 ], "geometry": { "type": "Point", "coordinates": [ -0.5083243, 51.0984828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04340975" }, "bbox": [ -0.514692, 51.1025335, -0.514692, 51.1025335 ], "geometry": { "type": "Point", "coordinates": [ -0.514692, 51.1025335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24446825" }, "bbox": [ -0.2173537, 51.1840334, -0.2173537, 51.1840334 ], "geometry": { "type": "Point", "coordinates": [ -0.2173537, 51.1840334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24447218" }, "bbox": [ -0.2167065, 51.1833809, -0.2167065, 51.1833809 ], "geometry": { "type": "Point", "coordinates": [ -0.2167065, 51.1833809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24447323" }, "bbox": [ -0.2165255, 51.1837676, -0.2165255, 51.1837676 ], "geometry": { "type": "Point", "coordinates": [ -0.2165255, 51.1837676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24447127" }, "bbox": [ -0.216937, 51.1841532, -0.216937, 51.1841532 ], "geometry": { "type": "Point", "coordinates": [ -0.216937, 51.1841532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436596" }, "bbox": [ -0.2177861, 51.1813326, -0.2177861, 51.1813326 ], "geometry": { "type": "Point", "coordinates": [ -0.2177861, 51.1813326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04345244" }, "bbox": [ -0.5088111, 51.0997819, -0.5088111, 51.0997819 ], "geometry": { "type": "Point", "coordinates": [ -0.5088111, 51.0997819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17377874" }, "bbox": [ -0.3179374, 51.1267517, -0.3179374, 51.1267517 ], "geometry": { "type": "Point", "coordinates": [ -0.3179374, 51.1267517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18370174" }, "bbox": [ -0.3153889, 51.1268322, -0.3153889, 51.1268322 ], "geometry": { "type": "Point", "coordinates": [ -0.3153889, 51.1268322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26459169" }, "bbox": [ -0.1852336, 51.1963644, -0.1852336, 51.1963644 ], "geometry": { "type": "Point", "coordinates": [ -0.1852336, 51.1963644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469614" }, "bbox": [ -0.2270353, 51.2010695, -0.2270353, 51.2010695 ], "geometry": { "type": "Point", "coordinates": [ -0.2270353, 51.2010695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23459699" }, "bbox": [ -0.2270497, 51.199562, -0.2270497, 51.199562 ], "geometry": { "type": "Point", "coordinates": [ -0.2270497, 51.199562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410213" }, "bbox": [ -0.4567013, 51.1592627, -0.4567013, 51.1592627 ], "geometry": { "type": "Point", "coordinates": [ -0.4567013, 51.1592627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07417064" }, "bbox": [ -0.461138, 51.1638959, -0.461138, 51.1638959 ], "geometry": { "type": "Point", "coordinates": [ -0.461138, 51.1638959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415941" }, "bbox": [ -0.4626911, 51.1618393, -0.4626911, 51.1618393 ], "geometry": { "type": "Point", "coordinates": [ -0.4626911, 51.1618393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03421856" }, "bbox": [ -0.5255414, 51.1731272, -0.5255414, 51.1731272 ], "geometry": { "type": "Point", "coordinates": [ -0.5255414, 51.1731272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424461" }, "bbox": [ -0.5215959, 51.1734656, -0.5215959, 51.1734656 ], "geometry": { "type": "Point", "coordinates": [ -0.5215959, 51.1734656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03415799" }, "bbox": [ -0.5199818, 51.1678417, -0.5199818, 51.1678417 ], "geometry": { "type": "Point", "coordinates": [ -0.5199818, 51.1678417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25411298" }, "bbox": [ -0.2119004, 51.1634268, -0.2119004, 51.1634268 ], "geometry": { "type": "Point", "coordinates": [ -0.2119004, 51.1634268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25415261" }, "bbox": [ -0.2063812, 51.1599049, -0.2063812, 51.1599049 ], "geometry": { "type": "Point", "coordinates": [ -0.2063812, 51.1599049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25415578" }, "bbox": [ -0.2058105, 51.16145, -0.2058105, 51.16145 ], "geometry": { "type": "Point", "coordinates": [ -0.2058105, 51.16145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25410996" }, "bbox": [ -0.2125392, 51.1629643, -0.2125392, 51.1629643 ], "geometry": { "type": "Point", "coordinates": [ -0.2125392, 51.1629643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25410584" }, "bbox": [ -0.213006, 51.1621168, -0.213006, 51.1621168 ], "geometry": { "type": "Point", "coordinates": [ -0.213006, 51.1621168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12421692" }, "bbox": [ -0.3967386, 51.1746371, -0.3967386, 51.1746371 ], "geometry": { "type": "Point", "coordinates": [ -0.3967386, 51.1746371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12423272" }, "bbox": [ -0.3951607, 51.1726453, -0.3951607, 51.1726453 ], "geometry": { "type": "Point", "coordinates": [ -0.3951607, 51.1726453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09679934" }, "bbox": [ -0.4204817, 51.3944628, -0.4204817, 51.3944628 ], "geometry": { "type": "Point", "coordinates": [ -0.4204817, 51.3944628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07566312" }, "bbox": [ -0.4578809, 51.2941905, -0.4578809, 51.2941905 ], "geometry": { "type": "Point", "coordinates": [ -0.4578809, 51.2941905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07566001" }, "bbox": [ -0.4582769, 51.2930844, -0.4582769, 51.2930844 ], "geometry": { "type": "Point", "coordinates": [ -0.4582769, 51.2930844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07566010" }, "bbox": [ -0.4581457, 51.2939392, -0.4581457, 51.2939392 ], "geometry": { "type": "Point", "coordinates": [ -0.4581457, 51.2939392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07555080" }, "bbox": [ -0.4592031, 51.2912715, -0.4592031, 51.2912715 ], "geometry": { "type": "Point", "coordinates": [ -0.4592031, 51.2912715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12353388" }, "bbox": [ -0.3966044, 51.1111497, -0.3966044, 51.1111497 ], "geometry": { "type": "Point", "coordinates": [ -0.3966044, 51.1111497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24463658" }, "bbox": [ -0.2209578, 51.2050334, -0.2209578, 51.2050334 ], "geometry": { "type": "Point", "coordinates": [ -0.2209578, 51.2050334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24465971" }, "bbox": [ -0.2178009, 51.2061346, -0.2178009, 51.2061346 ], "geometry": { "type": "Point", "coordinates": [ -0.2178009, 51.2061346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23470320" }, "bbox": [ -0.2400041, 51.2108673, -0.2400041, 51.2108673 ], "geometry": { "type": "Point", "coordinates": [ -0.2400041, 51.2108673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23466883" }, "bbox": [ -0.2325923, 51.2071563, -0.2325923, 51.2071563 ], "geometry": { "type": "Point", "coordinates": [ -0.2325923, 51.2071563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23465260" }, "bbox": [ -0.2334342, 51.2053626, -0.2334342, 51.2053626 ], "geometry": { "type": "Point", "coordinates": [ -0.2334342, 51.2053626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25472916" }, "bbox": [ -0.2075962, 51.2098918, -0.2075962, 51.2098918 ], "geometry": { "type": "Point", "coordinates": [ -0.2075962, 51.2098918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12374438" }, "bbox": [ -0.3936936, 51.1247243, -0.3936936, 51.1247243 ], "geometry": { "type": "Point", "coordinates": [ -0.3936936, 51.1247243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14411802" }, "bbox": [ -0.3687501, 51.1570807, -0.3687501, 51.1570807 ], "geometry": { "type": "Point", "coordinates": [ -0.3687501, 51.1570807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13415121" }, "bbox": [ -0.3781374, 51.1589043, -0.3781374, 51.1589043 ], "geometry": { "type": "Point", "coordinates": [ -0.3781374, 51.1589043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13382704" }, "bbox": [ -0.3828955, 51.1304403, -0.3828955, 51.1304403 ], "geometry": { "type": "Point", "coordinates": [ -0.3828955, 51.1304403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13382723" }, "bbox": [ -0.3823992, 51.1322048, -0.3823992, 51.1322048 ], "geometry": { "type": "Point", "coordinates": [ -0.3823992, 51.1322048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13407658" }, "bbox": [ -0.3747641, 51.1532059, -0.3747641, 51.1532059 ], "geometry": { "type": "Point", "coordinates": [ -0.3747641, 51.1532059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94421163" }, "bbox": [ -0.6551303, 51.1751083, -0.6551303, 51.1751083 ], "geometry": { "type": "Point", "coordinates": [ -0.6551303, 51.1751083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94420967" }, "bbox": [ -0.6553639, 51.1755599, -0.6553639, 51.1755599 ], "geometry": { "type": "Point", "coordinates": [ -0.6553639, 51.1755599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83420641" }, "bbox": [ -0.813026, 51.1749593, -0.813026, 51.1749593 ], "geometry": { "type": "Point", "coordinates": [ -0.813026, 51.1749593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83411188" }, "bbox": [ -0.8126195, 51.1701733, -0.8126195, 51.1701733 ], "geometry": { "type": "Point", "coordinates": [ -0.8126195, 51.1701733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83411987" }, "bbox": [ -0.8113856, 51.1701034, -0.8113856, 51.1701034 ], "geometry": { "type": "Point", "coordinates": [ -0.8113856, 51.1701034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03341908" }, "bbox": [ -0.5277424, 51.0968071, -0.5277424, 51.0968071 ], "geometry": { "type": "Point", "coordinates": [ -0.5277424, 51.0968071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96406883" }, "bbox": [ -0.6189175, 51.1584154, -0.6189175, 51.1584154 ], "geometry": { "type": "Point", "coordinates": [ -0.6189175, 51.1584154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96406293" }, "bbox": [ -0.6196688, 51.1596615, -0.6196688, 51.1596615 ], "geometry": { "type": "Point", "coordinates": [ -0.6196688, 51.1596615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389801" }, "bbox": [ -0.6152402, 51.1332147, -0.6152402, 51.1332147 ], "geometry": { "type": "Point", "coordinates": [ -0.6152402, 51.1332147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389804" }, "bbox": [ -0.6154762, 51.1334483, -0.6154762, 51.1334483 ], "geometry": { "type": "Point", "coordinates": [ -0.6154762, 51.1334483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97380305" }, "bbox": [ -0.6145682, 51.1335133, -0.6145682, 51.1335133 ], "geometry": { "type": "Point", "coordinates": [ -0.6145682, 51.1335133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97380103" }, "bbox": [ -0.6148495, 51.1333449, -0.6148495, 51.1333449 ], "geometry": { "type": "Point", "coordinates": [ -0.6148495, 51.1333449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02462310" }, "bbox": [ -0.5379016, 51.205011, -0.5379016, 51.205011 ], "geometry": { "type": "Point", "coordinates": [ -0.5379016, 51.205011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30506995" }, "bbox": [ -0.1304407, 51.2445817, -0.1304407, 51.2445817 ], "geometry": { "type": "Point", "coordinates": [ -0.1304407, 51.2445817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91505483" }, "bbox": [ -0.6898018, 51.2491983, -0.6898018, 51.2491983 ], "geometry": { "type": "Point", "coordinates": [ -0.6898018, 51.2491983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86439948" }, "bbox": [ -0.7567556, 51.1839285, -0.7567556, 51.1839285 ], "geometry": { "type": "Point", "coordinates": [ -0.7567556, 51.1839285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86439486" }, "bbox": [ -0.7574604, 51.1873285, -0.7574604, 51.1873285 ], "geometry": { "type": "Point", "coordinates": [ -0.7574604, 51.1873285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22425823" }, "bbox": [ -0.2480847, 51.1662159, -0.2480847, 51.1662159 ], "geometry": { "type": "Point", "coordinates": [ -0.2480847, 51.1662159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22424806" }, "bbox": [ -0.2497981, 51.1651406, -0.2497981, 51.1651406 ], "geometry": { "type": "Point", "coordinates": [ -0.2497981, 51.1651406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22426104" }, "bbox": [ -0.2479895, 51.1647645, -0.2479895, 51.1647645 ], "geometry": { "type": "Point", "coordinates": [ -0.2479895, 51.1647645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22425731" }, "bbox": [ -0.2480822, 51.1669245, -0.2480822, 51.1669245 ], "geometry": { "type": "Point", "coordinates": [ -0.2480822, 51.1669245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22424426" }, "bbox": [ -0.2499601, 51.1665566, -0.2499601, 51.1665566 ], "geometry": { "type": "Point", "coordinates": [ -0.2499601, 51.1665566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19477955" }, "bbox": [ -0.2857042, 51.2148477, -0.2857042, 51.2148477 ], "geometry": { "type": "Point", "coordinates": [ -0.2857042, 51.2148477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21507903" }, "bbox": [ -0.256218, 51.235968, -0.256218, 51.235968 ], "geometry": { "type": "Point", "coordinates": [ -0.256218, 51.235968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477912" }, "bbox": [ -0.2721102, 51.2105649, -0.2721102, 51.2105649 ], "geometry": { "type": "Point", "coordinates": [ -0.2721102, 51.2105649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20478839" }, "bbox": [ -0.2709534, 51.2128874, -0.2709534, 51.2128874 ], "geometry": { "type": "Point", "coordinates": [ -0.2709534, 51.2128874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20479874" }, "bbox": [ -0.2691402, 51.2160864, -0.2691402, 51.2160864 ], "geometry": { "type": "Point", "coordinates": [ -0.2691402, 51.2160864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471771" }, "bbox": [ -0.2810014, 51.2166417, -0.2810014, 51.2166417 ], "geometry": { "type": "Point", "coordinates": [ -0.2810014, 51.2166417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477267" }, "bbox": [ -0.2729094, 51.2154047, -0.2729094, 51.2154047 ], "geometry": { "type": "Point", "coordinates": [ -0.2729094, 51.2154047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21485558" }, "bbox": [ -0.2607661, 51.2234438, -0.2607661, 51.2234438 ], "geometry": { "type": "Point", "coordinates": [ -0.2607661, 51.2234438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21486974" }, "bbox": [ -0.2587997, 51.225018, -0.2587997, 51.225018 ], "geometry": { "type": "Point", "coordinates": [ -0.2587997, 51.225018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20493198" }, "bbox": [ -0.27801, 51.2363707, -0.27801, 51.2363707 ], "geometry": { "type": "Point", "coordinates": [ -0.27801, 51.2363707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20515312" }, "bbox": [ -0.2744831, 51.2466056, -0.2744831, 51.2466056 ], "geometry": { "type": "Point", "coordinates": [ -0.2744831, 51.2466056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20504525" }, "bbox": [ -0.2760303, 51.2386547, -0.2760303, 51.2386547 ], "geometry": { "type": "Point", "coordinates": [ -0.2760303, 51.2386547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20474669" }, "bbox": [ -0.2769302, 51.2156906, -0.2769302, 51.2156906 ], "geometry": { "type": "Point", "coordinates": [ -0.2769302, 51.2156906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20474651" }, "bbox": [ -0.2764744, 51.2139531, -0.2764744, 51.2139531 ], "geometry": { "type": "Point", "coordinates": [ -0.2764744, 51.2139531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20488966" }, "bbox": [ -0.2700772, 51.2243149, -0.2700772, 51.2243149 ], "geometry": { "type": "Point", "coordinates": [ -0.2700772, 51.2243149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20489445" }, "bbox": [ -0.2696124, 51.2225158, -0.2696124, 51.2225158 ], "geometry": { "type": "Point", "coordinates": [ -0.2696124, 51.2225158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21493938" }, "bbox": [ -0.262741, 51.2307996, -0.262741, 51.2307996 ], "geometry": { "type": "Point", "coordinates": [ -0.262741, 51.2307996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20494928" }, "bbox": [ -0.275949, 51.2293539, -0.275949, 51.2293539 ], "geometry": { "type": "Point", "coordinates": [ -0.275949, 51.2293539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21494936" }, "bbox": [ -0.2620027, 51.2316851, -0.2620027, 51.2316851 ], "geometry": { "type": "Point", "coordinates": [ -0.2620027, 51.2316851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20499036" }, "bbox": [ -0.2697498, 51.2306064, -0.2697498, 51.2306064 ], "geometry": { "type": "Point", "coordinates": [ -0.2697498, 51.2306064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21482351" }, "bbox": [ -0.2654001, 51.2230098, -0.2654001, 51.2230098 ], "geometry": { "type": "Point", "coordinates": [ -0.2654001, 51.2230098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21480489" }, "bbox": [ -0.2687001, 51.2266428, -0.2687001, 51.2266428 ], "geometry": { "type": "Point", "coordinates": [ -0.2687001, 51.2266428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21482163" }, "bbox": [ -0.2650642, 51.2239575, -0.2650642, 51.2239575 ], "geometry": { "type": "Point", "coordinates": [ -0.2650642, 51.2239575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21480951" }, "bbox": [ -0.2673848, 51.2229688, -0.2673848, 51.2229688 ], "geometry": { "type": "Point", "coordinates": [ -0.2673848, 51.2229688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21498205" }, "bbox": [ -0.2565722, 51.2276541, -0.2565722, 51.2276541 ], "geometry": { "type": "Point", "coordinates": [ -0.2565722, 51.2276541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21499411" }, "bbox": [ -0.2551099, 51.2281853, -0.2551099, 51.2281853 ], "geometry": { "type": "Point", "coordinates": [ -0.2551099, 51.2281853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00355093" }, "bbox": [ -0.5656173, 51.1139151, -0.5656173, 51.1139151 ], "geometry": { "type": "Point", "coordinates": [ -0.5656173, 51.1139151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00356063" }, "bbox": [ -0.5643299, 51.1109808, -0.5643299, 51.1109808 ], "geometry": { "type": "Point", "coordinates": [ -0.5643299, 51.1109808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00357696" }, "bbox": [ -0.5607609, 51.1136117, -0.5607609, 51.1136117 ], "geometry": { "type": "Point", "coordinates": [ -0.5607609, 51.1136117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00355374" }, "bbox": [ -0.5652091, 51.1119933, -0.5652091, 51.1119933 ], "geometry": { "type": "Point", "coordinates": [ -0.5652091, 51.1119933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366550" }, "bbox": [ -0.5631524, 51.1190742, -0.5631524, 51.1190742 ], "geometry": { "type": "Point", "coordinates": [ -0.5631524, 51.1190742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366916" }, "bbox": [ -0.562812, 51.1159227, -0.562812, 51.1159227 ], "geometry": { "type": "Point", "coordinates": [ -0.562812, 51.1159227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00365946" }, "bbox": [ -0.5641166, 51.1187422, -0.5641166, 51.1187422 ], "geometry": { "type": "Point", "coordinates": [ -0.5641166, 51.1187422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366911" }, "bbox": [ -0.5628446, 51.1154742, -0.5628446, 51.1154742 ], "geometry": { "type": "Point", "coordinates": [ -0.5628446, 51.1154742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366529" }, "bbox": [ -0.563314, 51.1170922, -0.563314, 51.1170922 ], "geometry": { "type": "Point", "coordinates": [ -0.563314, 51.1170922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00357351" }, "bbox": [ -0.5621867, 51.1099593, -0.5621867, 51.1099593 ], "geometry": { "type": "Point", "coordinates": [ -0.5621867, 51.1099593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00356196" }, "bbox": [ -0.5639841, 51.114229, -0.5639841, 51.114229 ], "geometry": { "type": "Point", "coordinates": [ -0.5639841, 51.114229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00355087" }, "bbox": [ -0.5656208, 51.1132737, -0.5656208, 51.1132737 ], "geometry": { "type": "Point", "coordinates": [ -0.5656208, 51.1132737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366723" }, "bbox": [ -0.5630464, 51.1165617, -0.5630464, 51.1165617 ], "geometry": { "type": "Point", "coordinates": [ -0.5630464, 51.1165617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00357979" }, "bbox": [ -0.5617282, 51.1124193, -0.5617282, 51.1124193 ], "geometry": { "type": "Point", "coordinates": [ -0.5617282, 51.1124193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00355787" }, "bbox": [ -0.5645562, 51.1134206, -0.5645562, 51.1134206 ], "geometry": { "type": "Point", "coordinates": [ -0.5645562, 51.1134206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366805" }, "bbox": [ -0.5628513, 51.1150142, -0.5628513, 51.1150142 ], "geometry": { "type": "Point", "coordinates": [ -0.5628513, 51.1150142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405722" }, "bbox": [ -0.463341, 51.151117, -0.463341, 51.151117 ], "geometry": { "type": "Point", "coordinates": [ -0.463341, 51.151117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02453426" }, "bbox": [ -0.5365651, 51.1974608, -0.5365651, 51.1974608 ], "geometry": { "type": "Point", "coordinates": [ -0.5365651, 51.1974608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02453039" }, "bbox": [ -0.5376079, 51.1984417, -0.5376079, 51.1984417 ], "geometry": { "type": "Point", "coordinates": [ -0.5376079, 51.1984417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35397161" }, "bbox": [ -0.061412, 51.1396812, -0.061412, 51.1396812 ], "geometry": { "type": "Point", "coordinates": [ -0.061412, 51.1396812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448666" }, "bbox": [ -0.157356, 51.1866876, -0.157356, 51.1866876 ], "geometry": { "type": "Point", "coordinates": [ -0.157356, 51.1866876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19393095" }, "bbox": [ -0.2956824, 51.1463218, -0.2956824, 51.1463218 ], "geometry": { "type": "Point", "coordinates": [ -0.2956824, 51.1463218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19394190" }, "bbox": [ -0.2943808, 51.1460156, -0.2943808, 51.1460156 ], "geometry": { "type": "Point", "coordinates": [ -0.2943808, 51.1460156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444501" }, "bbox": [ -0.6927493, 51.1880762, -0.6927493, 51.1880762 ], "geometry": { "type": "Point", "coordinates": [ -0.6927493, 51.1880762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444700" }, "bbox": [ -0.6923955, 51.1879832, -0.6923955, 51.1879832 ], "geometry": { "type": "Point", "coordinates": [ -0.6923955, 51.1879832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91447700" }, "bbox": [ -0.6881884, 51.1879793, -0.6881884, 51.1879793 ], "geometry": { "type": "Point", "coordinates": [ -0.6881884, 51.1879793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91437499" }, "bbox": [ -0.6884864, 51.1877861, -0.6884864, 51.1877861 ], "geometry": { "type": "Point", "coordinates": [ -0.6884864, 51.1877861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91437397" }, "bbox": [ -0.6887124, 51.1876003, -0.6887124, 51.1876003 ], "geometry": { "type": "Point", "coordinates": [ -0.6887124, 51.1876003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91437295" }, "bbox": [ -0.6888877, 51.1874506, -0.6888877, 51.1874506 ], "geometry": { "type": "Point", "coordinates": [ -0.6888877, 51.1874506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91436991" }, "bbox": [ -0.689308, 51.1871084, -0.689308, 51.1871084 ], "geometry": { "type": "Point", "coordinates": [ -0.689308, 51.1871084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91436788" }, "bbox": [ -0.6896123, 51.1869083, -0.6896123, 51.1869083 ], "geometry": { "type": "Point", "coordinates": [ -0.6896123, 51.1869083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434296" }, "bbox": [ -0.6931834, 51.1876233, -0.6931834, 51.1876233 ], "geometry": { "type": "Point", "coordinates": [ -0.6931834, 51.1876233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91435391" }, "bbox": [ -0.6916268, 51.1872111, -0.6916268, 51.1872111 ], "geometry": { "type": "Point", "coordinates": [ -0.6916268, 51.1872111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91435690" }, "bbox": [ -0.6911011, 51.1870798, -0.6911011, 51.1870798 ], "geometry": { "type": "Point", "coordinates": [ -0.6911011, 51.1870798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434395" }, "bbox": [ -0.6929975, 51.1875941, -0.6929975, 51.1875941 ], "geometry": { "type": "Point", "coordinates": [ -0.6929975, 51.1875941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434595" }, "bbox": [ -0.6927583, 51.1875249, -0.6927583, 51.1875249 ], "geometry": { "type": "Point", "coordinates": [ -0.6927583, 51.1875249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91435097" }, "bbox": [ -0.6920328, 51.1877248, -0.6920328, 51.1877248 ], "geometry": { "type": "Point", "coordinates": [ -0.6920328, 51.1877248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434993" }, "bbox": [ -0.6921162, 51.1873291, -0.6921162, 51.1873291 ], "geometry": { "type": "Point", "coordinates": [ -0.6921162, 51.1873291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91435595" }, "bbox": [ -0.6912755, 51.1875797, -0.6912755, 51.1875797 ], "geometry": { "type": "Point", "coordinates": [ -0.6912755, 51.1875797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99467917" }, "bbox": [ -0.572908, 51.2059379, -0.572908, 51.2059379 ], "geometry": { "type": "Point", "coordinates": [ -0.572908, 51.2059379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99469837" }, "bbox": [ -0.5700411, 51.2078492, -0.5700411, 51.2078492 ], "geometry": { "type": "Point", "coordinates": [ -0.5700411, 51.2078492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99465901" }, "bbox": [ -0.575919, 51.2046028, -0.575919, 51.2046028 ], "geometry": { "type": "Point", "coordinates": [ -0.575919, 51.2046028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99461164" }, "bbox": [ -0.5824422, 51.2104039, -0.5824422, 51.2104039 ], "geometry": { "type": "Point", "coordinates": [ -0.5824422, 51.2104039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99469849" }, "bbox": [ -0.5699629, 51.2087564, -0.5699629, 51.2087564 ], "geometry": { "type": "Point", "coordinates": [ -0.5699629, 51.2087564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99469576" }, "bbox": [ -0.5705326, 51.2109718, -0.5705326, 51.2109718 ], "geometry": { "type": "Point", "coordinates": [ -0.5705326, 51.2109718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99460641" }, "bbox": [ -0.5835283, 51.2083, -0.5835283, 51.2083 ], "geometry": { "type": "Point", "coordinates": [ -0.5835283, 51.2083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99469747" }, "bbox": [ -0.570206, 51.2086267, -0.570206, 51.2086267 ], "geometry": { "type": "Point", "coordinates": [ -0.570206, 51.2086267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99456197" }, "bbox": [ -0.5752954, 51.204144, -0.5752954, 51.204144 ], "geometry": { "type": "Point", "coordinates": [ -0.5752954, 51.204144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458563" }, "bbox": [ -0.5863869, 51.2013043, -0.5863869, 51.2013043 ], "geometry": { "type": "Point", "coordinates": [ -0.5863869, 51.2013043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98457988" }, "bbox": [ -0.5872988, 51.2035471, -0.5872988, 51.2035471 ], "geometry": { "type": "Point", "coordinates": [ -0.5872988, 51.2035471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98455196" }, "bbox": [ -0.5911878, 51.2043749, -0.5911878, 51.2043749 ], "geometry": { "type": "Point", "coordinates": [ -0.5911878, 51.2043749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98457769" }, "bbox": [ -0.5876171, 51.2019265, -0.5876171, 51.2019265 ], "geometry": { "type": "Point", "coordinates": [ -0.5876171, 51.2019265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98465601" }, "bbox": [ -0.5905585, 51.2047581, -0.5905585, 51.2047581 ], "geometry": { "type": "Point", "coordinates": [ -0.5905585, 51.2047581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11672606" }, "bbox": [ -0.4017407, 51.3926248, -0.4017407, 51.3926248 ], "geometry": { "type": "Point", "coordinates": [ -0.4017407, 51.3926248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18569084" }, "bbox": [ -0.2958743, 51.2982427, -0.2958743, 51.2982427 ], "geometry": { "type": "Point", "coordinates": [ -0.2958743, 51.2982427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567582" }, "bbox": [ -0.2982122, 51.2976993, -0.2982122, 51.2976993 ], "geometry": { "type": "Point", "coordinates": [ -0.2982122, 51.2976993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567494" }, "bbox": [ -0.2981248, 51.2991304, -0.2981248, 51.2991304 ], "geometry": { "type": "Point", "coordinates": [ -0.2981248, 51.2991304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567590" }, "bbox": [ -0.2982612, 51.2988379, -0.2982612, 51.2988379 ], "geometry": { "type": "Point", "coordinates": [ -0.2982612, 51.2988379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567291" }, "bbox": [ -0.2984929, 51.2990279, -0.2984929, 51.2990279 ], "geometry": { "type": "Point", "coordinates": [ -0.2984929, 51.2990279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18566688" }, "bbox": [ -0.2992408, 51.2987841, -0.2992408, 51.2987841 ], "geometry": { "type": "Point", "coordinates": [ -0.2992408, 51.2987841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18577210" }, "bbox": [ -0.2983229, 51.3007252, -0.2983229, 51.3007252 ], "geometry": { "type": "Point", "coordinates": [ -0.2983229, 51.3007252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18577002" }, "bbox": [ -0.2988689, 51.2997004, -0.2988689, 51.2997004 ], "geometry": { "type": "Point", "coordinates": [ -0.2988689, 51.2997004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18579207" }, "bbox": [ -0.2950671, 51.300236, -0.2950671, 51.300236 ], "geometry": { "type": "Point", "coordinates": [ -0.2950671, 51.300236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18578812" }, "bbox": [ -0.2961057, 51.3009033, -0.2961057, 51.3009033 ], "geometry": { "type": "Point", "coordinates": [ -0.2961057, 51.3009033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19561691" }, "bbox": [ -0.2953525, 51.2978363, -0.2953525, 51.2978363 ], "geometry": { "type": "Point", "coordinates": [ -0.2953525, 51.2978363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19560192" }, "bbox": [ -0.2942182, 51.2990172, -0.2942182, 51.2990172 ], "geometry": { "type": "Point", "coordinates": [ -0.2942182, 51.2990172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19570506" }, "bbox": [ -0.2936615, 51.300293, -0.2936615, 51.300293 ], "geometry": { "type": "Point", "coordinates": [ -0.2936615, 51.300293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464011" }, "bbox": [ -0.4639141, 51.2040871, -0.4639141, 51.2040871 ], "geometry": { "type": "Point", "coordinates": [ -0.4639141, 51.2040871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25427251" }, "bbox": [ -0.2030481, 51.1680276, -0.2030481, 51.1680276 ], "geometry": { "type": "Point", "coordinates": [ -0.2030481, 51.1680276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25426221" }, "bbox": [ -0.204777, 51.1652882, -0.204777, 51.1652882 ], "geometry": { "type": "Point", "coordinates": [ -0.204777, 51.1652882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25426730" }, "bbox": [ -0.2040929, 51.1663053, -0.2040929, 51.1663053 ], "geometry": { "type": "Point", "coordinates": [ -0.2040929, 51.1663053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26411183" }, "bbox": [ -0.1978305, 51.1618743, -0.1978305, 51.1618743 ], "geometry": { "type": "Point", "coordinates": [ -0.1978305, 51.1618743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20459314" }, "bbox": [ -0.270712, 51.1928539, -0.270712, 51.1928539 ], "geometry": { "type": "Point", "coordinates": [ -0.270712, 51.1928539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03748593" }, "bbox": [ -0.5060672, 51.4638709, -0.5060672, 51.4638709 ], "geometry": { "type": "Point", "coordinates": [ -0.5060672, 51.4638709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03748190" }, "bbox": [ -0.5069503, 51.4636641, -0.5069503, 51.4636641 ], "geometry": { "type": "Point", "coordinates": [ -0.5069503, 51.4636641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03748096" }, "bbox": [ -0.50712, 51.4642599, -0.50712, 51.4642599 ], "geometry": { "type": "Point", "coordinates": [ -0.50712, 51.4642599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03748282" }, "bbox": [ -0.506778, 51.4629431, -0.506778, 51.4629431 ], "geometry": { "type": "Point", "coordinates": [ -0.506778, 51.4629431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07461617" }, "bbox": [ -0.4672747, 51.2047993, -0.4672747, 51.2047993 ], "geometry": { "type": "Point", "coordinates": [ -0.4672747, 51.2047993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07462518" }, "bbox": [ -0.4658099, 51.2048076, -0.4658099, 51.2048076 ], "geometry": { "type": "Point", "coordinates": [ -0.4658099, 51.2048076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04741499" }, "bbox": [ -0.5022503, 51.4643359, -0.5022503, 51.4643359 ], "geometry": { "type": "Point", "coordinates": [ -0.5022503, 51.4643359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04750705" }, "bbox": [ -0.5030825, 51.465055, -0.5030825, 51.465055 ], "geometry": { "type": "Point", "coordinates": [ -0.5030825, 51.465055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94438395" }, "bbox": [ -0.6445906, 51.186829, -0.6445906, 51.186829 ], "geometry": { "type": "Point", "coordinates": [ -0.6445906, 51.186829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94439491" }, "bbox": [ -0.6428539, 51.1865928, -0.6428539, 51.1865928 ], "geometry": { "type": "Point", "coordinates": [ -0.6428539, 51.1865928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01540562" }, "bbox": [ -0.5524888, 51.2816842, -0.5524888, 51.2816842 ], "geometry": { "type": "Point", "coordinates": [ -0.5524888, 51.2816842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01540263" }, "bbox": [ -0.5528431, 51.281881, -0.5528431, 51.281881 ], "geometry": { "type": "Point", "coordinates": [ -0.5528431, 51.281881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01540864" }, "bbox": [ -0.5519847, 51.2820702, -0.5519847, 51.2820702 ], "geometry": { "type": "Point", "coordinates": [ -0.5519847, 51.2820702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01542179" }, "bbox": [ -0.5502767, 51.28344, -0.5502767, 51.28344 ], "geometry": { "type": "Point", "coordinates": [ -0.5502767, 51.28344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01541385" }, "bbox": [ -0.5518229, 51.2839843, -0.5518229, 51.2839843 ], "geometry": { "type": "Point", "coordinates": [ -0.5518229, 51.2839843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01541769" }, "bbox": [ -0.5506792, 51.2823781, -0.5506792, 51.2823781 ], "geometry": { "type": "Point", "coordinates": [ -0.5506792, 51.2823781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95527331" }, "bbox": [ -0.6293423, 51.2620323, -0.6293423, 51.2620323 ], "geometry": { "type": "Point", "coordinates": [ -0.6293423, 51.2620323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529410" }, "bbox": [ -0.6264051, 51.259963, -0.6264051, 51.259963 ], "geometry": { "type": "Point", "coordinates": [ -0.6264051, 51.259963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529308" }, "bbox": [ -0.6266648, 51.2599417, -0.6266648, 51.2599417 ], "geometry": { "type": "Point", "coordinates": [ -0.6266648, 51.2599417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529213" }, "bbox": [ -0.6260445, 51.2601869, -0.6260445, 51.2601869 ], "geometry": { "type": "Point", "coordinates": [ -0.6260445, 51.2601869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521416" }, "bbox": [ -0.6234805, 51.2605412, -0.6234805, 51.2605412 ], "geometry": { "type": "Point", "coordinates": [ -0.6234805, 51.2605412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521114" }, "bbox": [ -0.6238633, 51.2605723, -0.6238633, 51.2605723 ], "geometry": { "type": "Point", "coordinates": [ -0.6238633, 51.2605723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520209" }, "bbox": [ -0.6251968, 51.2598584, -0.6251968, 51.2598584 ], "geometry": { "type": "Point", "coordinates": [ -0.6251968, 51.2598584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520102" }, "bbox": [ -0.6255779, 51.2592887, -0.6255779, 51.2592887 ], "geometry": { "type": "Point", "coordinates": [ -0.6255779, 51.2592887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521009" }, "bbox": [ -0.62409, 51.2599228, -0.62409, 51.2599228 ], "geometry": { "type": "Point", "coordinates": [ -0.62409, 51.2599228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520124" }, "bbox": [ -0.6254195, 51.2612729, -0.6254195, 51.2612729 ], "geometry": { "type": "Point", "coordinates": [ -0.6254195, 51.2612729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99362041" }, "bbox": [ -0.5841241, 51.1182978, -0.5841241, 51.1182978 ], "geometry": { "type": "Point", "coordinates": [ -0.5841241, 51.1182978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99361849" }, "bbox": [ -0.584503, 51.1192987, -0.584503, 51.1192987 ], "geometry": { "type": "Point", "coordinates": [ -0.584503, 51.1192987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99361663" }, "bbox": [ -0.5846066, 51.1203763, -0.5846066, 51.1203763 ], "geometry": { "type": "Point", "coordinates": [ -0.5846066, 51.1203763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99360173" }, "bbox": [ -0.5866472, 51.1212578, -0.5866472, 51.1212578 ], "geometry": { "type": "Point", "coordinates": [ -0.5866472, 51.1212578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98369350" }, "bbox": [ -0.5876924, 51.1197435, -0.5876924, 51.1197435 ], "geometry": { "type": "Point", "coordinates": [ -0.5876924, 51.1197435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442313" }, "bbox": [ -0.6959493, 51.1891664, -0.6959493, 51.1891664 ], "geometry": { "type": "Point", "coordinates": [ -0.6959493, 51.1891664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442212" }, "bbox": [ -0.695959, 51.1890199, -0.695959, 51.1890199 ], "geometry": { "type": "Point", "coordinates": [ -0.695959, 51.1890199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442315" }, "bbox": [ -0.6959162, 51.1893075, -0.6959162, 51.1893075 ], "geometry": { "type": "Point", "coordinates": [ -0.6959162, 51.1893075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442317" }, "bbox": [ -0.6958976, 51.1894515, -0.6958976, 51.1894515 ], "geometry": { "type": "Point", "coordinates": [ -0.6958976, 51.1894515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434099" }, "bbox": [ -0.6935256, 51.1879315, -0.6935256, 51.1879315 ], "geometry": { "type": "Point", "coordinates": [ -0.6935256, 51.1879315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433896" }, "bbox": [ -0.6937723, 51.1875666, -0.6937723, 51.1875666 ], "geometry": { "type": "Point", "coordinates": [ -0.6937723, 51.1875666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433998" }, "bbox": [ -0.693668, 51.1877195, -0.693668, 51.1877195 ], "geometry": { "type": "Point", "coordinates": [ -0.693668, 51.1877195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434287" }, "bbox": [ -0.6932542, 51.1867757, -0.6932542, 51.1867757 ], "geometry": { "type": "Point", "coordinates": [ -0.6932542, 51.1867757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91434286" }, "bbox": [ -0.6934119, 51.1866174, -0.6934119, 51.1866174 ], "geometry": { "type": "Point", "coordinates": [ -0.6934119, 51.1866174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94517205" }, "bbox": [ -0.6442437, 51.2507538, -0.6442437, 51.2507538 ], "geometry": { "type": "Point", "coordinates": [ -0.6442437, 51.2507538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82418970" }, "bbox": [ -0.8156902, 51.1685999, -0.8156902, 51.1685999 ], "geometry": { "type": "Point", "coordinates": [ -0.8156902, 51.1685999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82419874" }, "bbox": [ -0.8145028, 51.1689776, -0.8145028, 51.1689776 ], "geometry": { "type": "Point", "coordinates": [ -0.8145028, 51.1689776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06448272" }, "bbox": [ -0.4728096, 51.191827, -0.4728096, 51.191827 ], "geometry": { "type": "Point", "coordinates": [ -0.4728096, 51.191827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06447491" }, "bbox": [ -0.4733909, 51.1930182, -0.4733909, 51.1930182 ], "geometry": { "type": "Point", "coordinates": [ -0.4733909, 51.1930182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25414633" }, "bbox": [ -0.2075063, 51.1575035, -0.2075063, 51.1575035 ], "geometry": { "type": "Point", "coordinates": [ -0.2075063, 51.1575035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99397031" }, "bbox": [ -0.5758935, 51.1444717, -0.5758935, 51.1444717 ], "geometry": { "type": "Point", "coordinates": [ -0.5758935, 51.1444717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99398709" }, "bbox": [ -0.5738271, 51.1428332, -0.5738271, 51.1428332 ], "geometry": { "type": "Point", "coordinates": [ -0.5738271, 51.1428332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399320" }, "bbox": [ -0.5730578, 51.1435678, -0.5730578, 51.1435678 ], "geometry": { "type": "Point", "coordinates": [ -0.5730578, 51.1435678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99386958" }, "bbox": [ -0.5761101, 51.1379599, -0.5761101, 51.1379599 ], "geometry": { "type": "Point", "coordinates": [ -0.5761101, 51.1379599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99385635" }, "bbox": [ -0.5781326, 51.1360826, -0.5781326, 51.1360826 ], "geometry": { "type": "Point", "coordinates": [ -0.5781326, 51.1360826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99386430" }, "bbox": [ -0.5770061, 51.1353765, -0.5770061, 51.1353765 ], "geometry": { "type": "Point", "coordinates": [ -0.5770061, 51.1353765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99388987" }, "bbox": [ -0.5735103, 51.1404358, -0.5735103, 51.1404358 ], "geometry": { "type": "Point", "coordinates": [ -0.5735103, 51.1404358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99382350" }, "bbox": [ -0.5828802, 51.137202, -0.5828802, 51.137202 ], "geometry": { "type": "Point", "coordinates": [ -0.5828802, 51.137202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99384830" }, "bbox": [ -0.5794817, 51.1354409, -0.5794817, 51.1354409 ], "geometry": { "type": "Point", "coordinates": [ -0.5794817, 51.1354409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99388756" }, "bbox": [ -0.5750928, 51.1371096, -0.5750928, 51.1371096 ], "geometry": { "type": "Point", "coordinates": [ -0.5750928, 51.1371096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396908" }, "bbox": [ -0.5903085, 51.1428454, -0.5903085, 51.1428454 ], "geometry": { "type": "Point", "coordinates": [ -0.5903085, 51.1428454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98388777" }, "bbox": [ -0.5878608, 51.1396461, -0.5878608, 51.1396461 ], "geometry": { "type": "Point", "coordinates": [ -0.5878608, 51.1396461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41550997" }, "bbox": [ 0.0217194, 51.2854658, 0.0217194, 51.2854658 ], "geometry": { "type": "Point", "coordinates": [ 0.0217194, 51.2854658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40558799" }, "bbox": [ 0.0185801, 51.2857115, 0.0185801, 51.2857115 ], "geometry": { "type": "Point", "coordinates": [ 0.0185801, 51.2857115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460792" }, "bbox": [ -0.3682148, 51.2101655, -0.3682148, 51.2101655 ], "geometry": { "type": "Point", "coordinates": [ -0.3682148, 51.2101655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460297" }, "bbox": [ -0.3690025, 51.2106658, -0.3690025, 51.2106658 ], "geometry": { "type": "Point", "coordinates": [ -0.3690025, 51.2106658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13479900" }, "bbox": [ -0.3692547, 51.2108394, -0.3692547, 51.2108394 ], "geometry": { "type": "Point", "coordinates": [ -0.3692547, 51.2108394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13468083" }, "bbox": [ -0.3722253, 51.2093216, -0.3722253, 51.2093216 ], "geometry": { "type": "Point", "coordinates": [ -0.3722253, 51.2093216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13467774" }, "bbox": [ -0.3727169, 51.2085782, -0.3727169, 51.2085782 ], "geometry": { "type": "Point", "coordinates": [ -0.3727169, 51.2085782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13469281" }, "bbox": [ -0.3703443, 51.2091647, -0.3703443, 51.2091647 ], "geometry": { "type": "Point", "coordinates": [ -0.3703443, 51.2091647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13469176" }, "bbox": [ -0.3707249, 51.2086403, -0.3707249, 51.2086403 ], "geometry": { "type": "Point", "coordinates": [ -0.3707249, 51.2086403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13469783" }, "bbox": [ -0.3697123, 51.2093556, -0.3697123, 51.2093556 ], "geometry": { "type": "Point", "coordinates": [ -0.3697123, 51.2093556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13469687" }, "bbox": [ -0.3697995, 51.209654, -0.3697995, 51.209654 ], "geometry": { "type": "Point", "coordinates": [ -0.3697995, 51.209654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95337230" }, "bbox": [ -0.6346508, 51.0910803, -0.6346508, 51.0910803 ], "geometry": { "type": "Point", "coordinates": [ -0.6346508, 51.0910803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32530168" }, "bbox": [ -0.1092398, 51.2670316, -0.1092398, 51.2670316 ], "geometry": { "type": "Point", "coordinates": [ -0.1092398, 51.2670316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89444524" }, "bbox": [ -0.7213021, 51.1904092, -0.7213021, 51.1904092 ], "geometry": { "type": "Point", "coordinates": [ -0.7213021, 51.1904092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21508932" }, "bbox": [ -0.2552065, 51.239123, -0.2552065, 51.239123 ], "geometry": { "type": "Point", "coordinates": [ -0.2552065, 51.239123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35571201" }, "bbox": [ -0.0632458, 51.2962635, -0.0632458, 51.2962635 ], "geometry": { "type": "Point", "coordinates": [ -0.0632458, 51.2962635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12667781" }, "bbox": [ -0.3807128, 51.3891729, -0.3807128, 51.3891729 ], "geometry": { "type": "Point", "coordinates": [ -0.3807128, 51.3891729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12667487" }, "bbox": [ -0.3810872, 51.3897172, -0.3810872, 51.3897172 ], "geometry": { "type": "Point", "coordinates": [ -0.3810872, 51.3897172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12667092" }, "bbox": [ -0.3817168, 51.3901809, -0.3817168, 51.3901809 ], "geometry": { "type": "Point", "coordinates": [ -0.3817168, 51.3901809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12668583" }, "bbox": [ -0.3794308, 51.3893656, -0.3794308, 51.3893656 ], "geometry": { "type": "Point", "coordinates": [ -0.3794308, 51.3893656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09408039" }, "bbox": [ -0.4315002, 51.1522306, -0.4315002, 51.1522306 ], "geometry": { "type": "Point", "coordinates": [ -0.4315002, 51.1522306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10686566" }, "bbox": [ -0.4105259, 51.4061388, -0.4105259, 51.4061388 ], "geometry": { "type": "Point", "coordinates": [ -0.4105259, 51.4061388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10686858" }, "bbox": [ -0.4102471, 51.405546, -0.4102471, 51.405546 ], "geometry": { "type": "Point", "coordinates": [ -0.4102471, 51.405546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10686674" }, "bbox": [ -0.4109272, 51.4075678, -0.4109272, 51.4075678 ], "geometry": { "type": "Point", "coordinates": [ -0.4109272, 51.4075678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10685364" }, "bbox": [ -0.4122871, 51.4060639, -0.4122871, 51.4060639 ], "geometry": { "type": "Point", "coordinates": [ -0.4122871, 51.4060639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99519115" }, "bbox": [ -0.5698147, 51.2508416, -0.5698147, 51.2508416 ], "geometry": { "type": "Point", "coordinates": [ -0.5698147, 51.2508416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99518908" }, "bbox": [ -0.5697462, 51.2502595, -0.5697462, 51.2502595 ], "geometry": { "type": "Point", "coordinates": [ -0.5697462, 51.2502595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499742" }, "bbox": [ 0.0031494, 51.2268869, 0.0031494, 51.2268869 ], "geometry": { "type": "Point", "coordinates": [ 0.0031494, 51.2268869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12377615" }, "bbox": [ -0.3896369, 51.122453, -0.3896369, 51.122453 ], "geometry": { "type": "Point", "coordinates": [ -0.3896369, 51.122453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35476708" }, "bbox": [ -0.0593579, 51.2069832, -0.0593579, 51.2069832 ], "geometry": { "type": "Point", "coordinates": [ -0.0593579, 51.2069832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35474615" }, "bbox": [ -0.061999, 51.2074647, -0.061999, 51.2074647 ], "geometry": { "type": "Point", "coordinates": [ -0.061999, 51.2074647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22495374" }, "bbox": [ -0.2462245, 51.2338954, -0.2462245, 51.2338954 ], "geometry": { "type": "Point", "coordinates": [ -0.2462245, 51.2338954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22497480" }, "bbox": [ -0.2434519, 51.2342104, -0.2434519, 51.2342104 ], "geometry": { "type": "Point", "coordinates": [ -0.2434519, 51.2342104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22496570" }, "bbox": [ -0.2448829, 51.2335445, -0.2448829, 51.2335445 ], "geometry": { "type": "Point", "coordinates": [ -0.2448829, 51.2335445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20410644" }, "bbox": [ -0.2841704, 51.1595983, -0.2841704, 51.1595983 ], "geometry": { "type": "Point", "coordinates": [ -0.2841704, 51.1595983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04624997" }, "bbox": [ -0.5007218, 51.3562756, -0.5007218, 51.3562756 ], "geometry": { "type": "Point", "coordinates": [ -0.5007218, 51.3562756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06661212" }, "bbox": [ -0.4772732, 51.3841907, -0.4772732, 51.3841907 ], "geometry": { "type": "Point", "coordinates": [ -0.4772732, 51.3841907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05669971" }, "bbox": [ -0.4780622, 51.3895977, -0.4780622, 51.3895977 ], "geometry": { "type": "Point", "coordinates": [ -0.4780622, 51.3895977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14657879" }, "bbox": [ -0.3519364, 51.3796302, -0.3519364, 51.3796302 ], "geometry": { "type": "Point", "coordinates": [ -0.3519364, 51.3796302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93615658" }, "bbox": [ -0.6583829, 51.3454469, -0.6583829, 51.3454469 ], "geometry": { "type": "Point", "coordinates": [ -0.6583829, 51.3454469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07633279" }, "bbox": [ -0.4597522, 51.3631192, -0.4597522, 51.3631192 ], "geometry": { "type": "Point", "coordinates": [ -0.4597522, 51.3631192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07637263" }, "bbox": [ -0.4542283, 51.3617471, -0.4542283, 51.3617471 ], "geometry": { "type": "Point", "coordinates": [ -0.4542283, 51.3617471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23518645" }, "bbox": [ -0.2266104, 51.2485625, -0.2266104, 51.2485625 ], "geometry": { "type": "Point", "coordinates": [ -0.2266104, 51.2485625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23505098" }, "bbox": [ -0.2319964, 51.2447051, -0.2319964, 51.2447051 ], "geometry": { "type": "Point", "coordinates": [ -0.2319964, 51.2447051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22509035" }, "bbox": [ -0.2408435, 51.2390958, -0.2408435, 51.2390958 ], "geometry": { "type": "Point", "coordinates": [ -0.2408435, 51.2390958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22508144" }, "bbox": [ -0.2418959, 51.2399925, -0.2418959, 51.2399925 ], "geometry": { "type": "Point", "coordinates": [ -0.2418959, 51.2399925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22509030" }, "bbox": [ -0.2407384, 51.2386797, -0.2407384, 51.2386797 ], "geometry": { "type": "Point", "coordinates": [ -0.2407384, 51.2386797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95487131" }, "bbox": [ -0.6307706, 51.2259616, -0.6307706, 51.2259616 ], "geometry": { "type": "Point", "coordinates": [ -0.6307706, 51.2259616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95484031" }, "bbox": [ -0.6351109, 51.225991, -0.6351109, 51.225991 ], "geometry": { "type": "Point", "coordinates": [ -0.6351109, 51.225991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20402920" }, "bbox": [ -0.2812182, 51.148511, -0.2812182, 51.148511 ], "geometry": { "type": "Point", "coordinates": [ -0.2812182, 51.148511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15439797" }, "bbox": [ -0.3419436, 51.1832507, -0.3419436, 51.1832507 ], "geometry": { "type": "Point", "coordinates": [ -0.3419436, 51.1832507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35596173" }, "bbox": [ -0.055315, 51.3205171, -0.055315, 51.3205171 ], "geometry": { "type": "Point", "coordinates": [ -0.055315, 51.3205171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35596031" }, "bbox": [ -0.0556853, 51.316718, -0.0556853, 51.316718 ], "geometry": { "type": "Point", "coordinates": [ -0.0556853, 51.316718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32448194" }, "bbox": [ -0.1008504, 51.1882535, -0.1008504, 51.1882535 ], "geometry": { "type": "Point", "coordinates": [ -0.1008504, 51.1882535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32446478" }, "bbox": [ -0.1035657, 51.1868467, -0.1035657, 51.1868467 ], "geometry": { "type": "Point", "coordinates": [ -0.1035657, 51.1868467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32446883" }, "bbox": [ -0.1028366, 51.1872511, -0.1028366, 51.1872511 ], "geometry": { "type": "Point", "coordinates": [ -0.1028366, 51.1872511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21535999" }, "bbox": [ -0.2579555, 51.2719634, -0.2579555, 51.2719634 ], "geometry": { "type": "Point", "coordinates": [ -0.2579555, 51.2719634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19462824" }, "bbox": [ -0.294178, 51.2029229, -0.294178, 51.2029229 ], "geometry": { "type": "Point", "coordinates": [ -0.294178, 51.2029229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10413181" }, "bbox": [ -0.4238104, 51.1649089, -0.4238104, 51.1649089 ], "geometry": { "type": "Point", "coordinates": [ -0.4238104, 51.1649089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87420179" }, "bbox": [ -0.7566693, 51.1777785, -0.7566693, 51.1777785 ], "geometry": { "type": "Point", "coordinates": [ -0.7566693, 51.1777785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86427859" }, "bbox": [ -0.7591715, 51.1759853, -0.7591715, 51.1759853 ], "geometry": { "type": "Point", "coordinates": [ -0.7591715, 51.1759853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86436362" }, "bbox": [ -0.7619594, 51.1853171, -0.7619594, 51.1853171 ], "geometry": { "type": "Point", "coordinates": [ -0.7619594, 51.1853171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86437151" }, "bbox": [ -0.7605686, 51.1843378, -0.7605686, 51.1843378 ], "geometry": { "type": "Point", "coordinates": [ -0.7605686, 51.1843378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438967" }, "bbox": [ -0.7580545, 51.1855424, -0.7580545, 51.1855424 ], "geometry": { "type": "Point", "coordinates": [ -0.7580545, 51.1855424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86436373" }, "bbox": [ -0.7617319, 51.1862755, -0.7617319, 51.1862755 ], "geometry": { "type": "Point", "coordinates": [ -0.7617319, 51.1862755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86436153" }, "bbox": [ -0.7625346, 51.1849611, -0.7625346, 51.1849611 ], "geometry": { "type": "Point", "coordinates": [ -0.7625346, 51.1849611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86437060" }, "bbox": [ -0.7607604, 51.1851098, -0.7607604, 51.1851098 ], "geometry": { "type": "Point", "coordinates": [ -0.7607604, 51.1851098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25529885" }, "bbox": [ -0.1948245, 51.2610898, -0.1948245, 51.2610898 ], "geometry": { "type": "Point", "coordinates": [ -0.1948245, 51.2610898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23508624" }, "bbox": [ -0.2271772, 51.2378817, -0.2271772, 51.2378817 ], "geometry": { "type": "Point", "coordinates": [ -0.2271772, 51.2378817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23507559" }, "bbox": [ -0.2286345, 51.2410972, -0.2286345, 51.2410972 ], "geometry": { "type": "Point", "coordinates": [ -0.2286345, 51.2410972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10373704" }, "bbox": [ -0.4240639, 51.1220995, -0.4240639, 51.1220995 ], "geometry": { "type": "Point", "coordinates": [ -0.4240639, 51.1220995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10373701" }, "bbox": [ -0.4242974, 51.1218001, -0.4242974, 51.1218001 ], "geometry": { "type": "Point", "coordinates": [ -0.4242974, 51.1218001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35420612" }, "bbox": [ -0.0698207, 51.162451, -0.0698207, 51.162451 ], "geometry": { "type": "Point", "coordinates": [ -0.0698207, 51.162451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39419975" }, "bbox": [ 0.000469, 51.1578215, 0.000469, 51.1578215 ], "geometry": { "type": "Point", "coordinates": [ 0.000469, 51.1578215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475134" }, "bbox": [ -0.0621127, 51.2094349, -0.0621127, 51.2094349 ], "geometry": { "type": "Point", "coordinates": [ -0.0621127, 51.2094349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475837" }, "bbox": [ -0.0602676, 51.2094939, -0.0602676, 51.2094939 ], "geometry": { "type": "Point", "coordinates": [ -0.0602676, 51.2094939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35472922" }, "bbox": [ -0.0648128, 51.2081784, -0.0648128, 51.2081784 ], "geometry": { "type": "Point", "coordinates": [ -0.0648128, 51.2081784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35470630" }, "bbox": [ -0.0677629, 51.2089155, -0.0677629, 51.2089155 ], "geometry": { "type": "Point", "coordinates": [ -0.0677629, 51.2089155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35470511" }, "bbox": [ -0.0680921, 51.2074518, -0.0680921, 51.2074518 ], "geometry": { "type": "Point", "coordinates": [ -0.0680921, 51.2074518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35471845" }, "bbox": [ -0.0663535, 51.2102413, -0.0663535, 51.2102413 ], "geometry": { "type": "Point", "coordinates": [ -0.0663535, 51.2102413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35470348" }, "bbox": [ -0.0681856, 51.2106247, -0.0681856, 51.2106247 ], "geometry": { "type": "Point", "coordinates": [ -0.0681856, 51.2106247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35463693" }, "bbox": [ -0.0637854, 51.2056319, -0.0637854, 51.2056319 ], "geometry": { "type": "Point", "coordinates": [ -0.0637854, 51.2056319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26541064" }, "bbox": [ -0.1934858, 51.2770072, -0.1934858, 51.2770072 ], "geometry": { "type": "Point", "coordinates": [ -0.1934858, 51.2770072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549868" }, "bbox": [ -0.1952159, 51.2773032, -0.1952159, 51.2773032 ], "geometry": { "type": "Point", "coordinates": [ -0.1952159, 51.2773032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95357603" }, "bbox": [ -0.6335862, 51.1066154, -0.6335862, 51.1066154 ], "geometry": { "type": "Point", "coordinates": [ -0.6335862, 51.1066154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07549864" }, "bbox": [ -0.4534672, 51.2806544, -0.4534672, 51.2806544 ], "geometry": { "type": "Point", "coordinates": [ -0.4534672, 51.2806544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07549557" }, "bbox": [ -0.4530185, 51.2802105, -0.4530185, 51.2802105 ], "geometry": { "type": "Point", "coordinates": [ -0.4530185, 51.2802105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08510742" }, "bbox": [ -0.4528139, 51.2517366, -0.4528139, 51.2517366 ], "geometry": { "type": "Point", "coordinates": [ -0.4528139, 51.2517366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08511743" }, "bbox": [ -0.4513568, 51.2518146, -0.4513568, 51.2518146 ], "geometry": { "type": "Point", "coordinates": [ -0.4513568, 51.2518146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07507590" }, "bbox": [ -0.457473, 51.2470501, -0.457473, 51.2470501 ], "geometry": { "type": "Point", "coordinates": [ -0.457473, 51.2470501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07509574" }, "bbox": [ -0.4546347, 51.2456082, -0.4546347, 51.2456082 ], "geometry": { "type": "Point", "coordinates": [ -0.4546347, 51.2456082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517905" }, "bbox": [ -0.4579759, 51.2479311, -0.4579759, 51.2479311 ], "geometry": { "type": "Point", "coordinates": [ -0.4579759, 51.2479311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07518409" }, "bbox": [ -0.4557892, 51.2490705, -0.4557892, 51.2490705 ], "geometry": { "type": "Point", "coordinates": [ -0.4557892, 51.2490705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09451622" }, "bbox": [ -0.4394007, 51.1954939, -0.4394007, 51.1954939 ], "geometry": { "type": "Point", "coordinates": [ -0.4394007, 51.1954939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09454349" }, "bbox": [ -0.4351212, 51.1981603, -0.4351212, 51.1981603 ], "geometry": { "type": "Point", "coordinates": [ -0.4351212, 51.1981603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13408986" }, "bbox": [ -0.3731495, 51.1557571, -0.3731495, 51.1557571 ], "geometry": { "type": "Point", "coordinates": [ -0.3731495, 51.1557571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07440792" }, "bbox": [ -0.4690621, 51.1934869, -0.4690621, 51.1934869 ], "geometry": { "type": "Point", "coordinates": [ -0.4690621, 51.1934869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07440893" }, "bbox": [ -0.4687133, 51.1934533, -0.4687133, 51.1934533 ], "geometry": { "type": "Point", "coordinates": [ -0.4687133, 51.1934533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07442775" }, "bbox": [ -0.4664263, 51.1920603, -0.4664263, 51.1920603 ], "geometry": { "type": "Point", "coordinates": [ -0.4664263, 51.1920603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98430514" }, "bbox": [ -0.5985602, 51.1790788, -0.5985602, 51.1790788 ], "geometry": { "type": "Point", "coordinates": [ -0.5985602, 51.1790788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93344979" }, "bbox": [ -0.6659584, 51.1048464, -0.6659584, 51.1048464 ], "geometry": { "type": "Point", "coordinates": [ -0.6659584, 51.1048464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05634707" }, "bbox": [ -0.4866202, 51.3569876, -0.4866202, 51.3569876 ], "geometry": { "type": "Point", "coordinates": [ -0.4866202, 51.3569876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475404" }, "bbox": [ -0.0611869, 51.2064245, -0.0611869, 51.2064245 ], "geometry": { "type": "Point", "coordinates": [ -0.0611869, 51.2064245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35474610" }, "bbox": [ -0.0609333, 51.2070469, -0.0609333, 51.2070469 ], "geometry": { "type": "Point", "coordinates": [ -0.0609333, 51.2070469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38541315" }, "bbox": [ -0.0212968, 51.2697799, -0.0212968, 51.2697799 ], "geometry": { "type": "Point", "coordinates": [ -0.0212968, 51.2697799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18399789" }, "bbox": [ -0.3004987, 51.14592, -0.3004987, 51.14592 ], "geometry": { "type": "Point", "coordinates": [ -0.3004987, 51.14592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93456297" }, "bbox": [ -0.6612592, 51.2052923, -0.6612592, 51.2052923 ], "geometry": { "type": "Point", "coordinates": [ -0.6612592, 51.2052923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93453485" }, "bbox": [ -0.6653401, 51.2042475, -0.6653401, 51.2042475 ], "geometry": { "type": "Point", "coordinates": [ -0.6653401, 51.2042475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460219" }, "bbox": [ -0.6696853, 51.207329, -0.6696853, 51.207329 ], "geometry": { "type": "Point", "coordinates": [ -0.6696853, 51.207329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461025" }, "bbox": [ -0.6686517, 51.2079282, -0.6686517, 51.2079282 ], "geometry": { "type": "Point", "coordinates": [ -0.6686517, 51.2079282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461222" }, "bbox": [ -0.6683315, 51.2076882, -0.6683315, 51.2076882 ], "geometry": { "type": "Point", "coordinates": [ -0.6683315, 51.2076882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461120" }, "bbox": [ -0.6684092, 51.2075272, -0.6684092, 51.2075272 ], "geometry": { "type": "Point", "coordinates": [ -0.6684092, 51.2075272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461935" }, "bbox": [ -0.6672587, 51.2080986, -0.6672587, 51.2080986 ], "geometry": { "type": "Point", "coordinates": [ -0.6672587, 51.2080986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13673024" }, "bbox": [ -0.3731216, 51.3928812, -0.3731216, 51.3928812 ], "geometry": { "type": "Point", "coordinates": [ -0.3731216, 51.3928812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05666958" }, "bbox": [ -0.4824506, 51.3884752, -0.4824506, 51.3884752 ], "geometry": { "type": "Point", "coordinates": [ -0.4824506, 51.3884752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04453715" }, "bbox": [ -0.5075662, 51.1961086, -0.5075662, 51.1961086 ], "geometry": { "type": "Point", "coordinates": [ -0.5075662, 51.1961086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04452820" }, "bbox": [ -0.5091967, 51.1965044, -0.5091967, 51.1965044 ], "geometry": { "type": "Point", "coordinates": [ -0.5091967, 51.1965044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04453511" }, "bbox": [ -0.5078929, 51.1957705, -0.5078929, 51.1957705 ], "geometry": { "type": "Point", "coordinates": [ -0.5078929, 51.1957705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37411113" }, "bbox": [ -0.0408906, 51.153019, -0.0408906, 51.153019 ], "geometry": { "type": "Point", "coordinates": [ -0.0408906, 51.153019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03398217" }, "bbox": [ -0.5172952, 51.1422546, -0.5172952, 51.1422546 ], "geometry": { "type": "Point", "coordinates": [ -0.5172952, 51.1422546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03397914" }, "bbox": [ -0.5177189, 51.142239, -0.5177189, 51.142239 ], "geometry": { "type": "Point", "coordinates": [ -0.5177189, 51.142239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95532865" }, "bbox": [ -0.6355188, 51.2740025, -0.6355188, 51.2740025 ], "geometry": { "type": "Point", "coordinates": [ -0.6355188, 51.2740025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81440896" }, "bbox": [ -0.8408207, 51.1982288, -0.8408207, 51.1982288 ], "geometry": { "type": "Point", "coordinates": [ -0.8408207, 51.1982288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81450928" }, "bbox": [ -0.8407022, 51.2010027, -0.8407022, 51.2010027 ], "geometry": { "type": "Point", "coordinates": [ -0.8407022, 51.2010027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81452217" }, "bbox": [ -0.8392335, 51.2000165, -0.8392335, 51.2000165 ], "geometry": { "type": "Point", "coordinates": [ -0.8392335, 51.2000165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01611327" }, "bbox": [ -0.5495743, 51.341757, -0.5495743, 51.341757 ], "geometry": { "type": "Point", "coordinates": [ -0.5495743, 51.341757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01610329" }, "bbox": [ -0.5508919, 51.3417346, -0.5508919, 51.3417346 ], "geometry": { "type": "Point", "coordinates": [ -0.5508919, 51.3417346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33479403" }, "bbox": [ -0.0840279, 51.2067494, -0.0840279, 51.2067494 ], "geometry": { "type": "Point", "coordinates": [ -0.0840279, 51.2067494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33479211" }, "bbox": [ -0.0842597, 51.2074829, -0.0842597, 51.2074829 ], "geometry": { "type": "Point", "coordinates": [ -0.0842597, 51.2074829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19511865" }, "bbox": [ -0.2938168, 51.2516594, -0.2938168, 51.2516594 ], "geometry": { "type": "Point", "coordinates": [ -0.2938168, 51.2516594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18519952" }, "bbox": [ -0.296785, 51.2506669, -0.296785, 51.2506669 ], "geometry": { "type": "Point", "coordinates": [ -0.296785, 51.2506669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10373080" }, "bbox": [ -0.4252146, 51.129587, -0.4252146, 51.129587 ], "geometry": { "type": "Point", "coordinates": [ -0.4252146, 51.129587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11363389" }, "bbox": [ -0.4110896, 51.121211, -0.4110896, 51.121211 ], "geometry": { "type": "Point", "coordinates": [ -0.4110896, 51.121211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11362881" }, "bbox": [ -0.4114004, 51.1198781, -0.4114004, 51.1198781 ], "geometry": { "type": "Point", "coordinates": [ -0.4114004, 51.1198781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11362671" }, "bbox": [ -0.4118386, 51.1189994, -0.4118386, 51.1189994 ], "geometry": { "type": "Point", "coordinates": [ -0.4118386, 51.1189994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94449621" }, "bbox": [ -0.6427678, 51.1891228, -0.6427678, 51.1891228 ], "geometry": { "type": "Point", "coordinates": [ -0.6427678, 51.1891228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95431134" }, "bbox": [ -0.6408527, 51.1813906, -0.6408527, 51.1813906 ], "geometry": { "type": "Point", "coordinates": [ -0.6408527, 51.1813906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95444955" }, "bbox": [ -0.63515, 51.1923122, -0.63515, 51.1923122 ], "geometry": { "type": "Point", "coordinates": [ -0.63515, 51.1923122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95444348" }, "bbox": [ -0.6357196, 51.1915938, -0.6357196, 51.1915938 ], "geometry": { "type": "Point", "coordinates": [ -0.6357196, 51.1915938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95441608" }, "bbox": [ -0.639511, 51.1882137, -0.639511, 51.1882137 ], "geometry": { "type": "Point", "coordinates": [ -0.639511, 51.1882137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95443946" }, "bbox": [ -0.6363963, 51.1914266, -0.6363963, 51.1914266 ], "geometry": { "type": "Point", "coordinates": [ -0.6363963, 51.1914266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95441312" }, "bbox": [ -0.6397292, 51.1887147, -0.6397292, 51.1887147 ], "geometry": { "type": "Point", "coordinates": [ -0.6397292, 51.1887147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95441009" }, "bbox": [ -0.6406253, 51.1881058, -0.6406253, 51.1881058 ], "geometry": { "type": "Point", "coordinates": [ -0.6406253, 51.1881058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36484822" }, "bbox": [ -0.0471781, 51.2168239, -0.0471781, 51.2168239 ], "geometry": { "type": "Point", "coordinates": [ -0.0471781, 51.2168239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36484711" }, "bbox": [ -0.0475847, 51.2158275, -0.0475847, 51.2158275 ], "geometry": { "type": "Point", "coordinates": [ -0.0475847, 51.2158275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36487412" }, "bbox": [ -0.043718, 51.2160284, -0.043718, 51.2160284 ], "geometry": { "type": "Point", "coordinates": [ -0.043718, 51.2160284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36474590" }, "bbox": [ -0.0478178, 51.2140377, -0.0478178, 51.2140377 ], "geometry": { "type": "Point", "coordinates": [ -0.0478178, 51.2140377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36475676" }, "bbox": [ -0.0462081, 51.2127311, -0.0462081, 51.2127311 ], "geometry": { "type": "Point", "coordinates": [ -0.0462081, 51.2127311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02547294" }, "bbox": [ -0.5283884, 51.2843887, -0.5283884, 51.2843887 ], "geometry": { "type": "Point", "coordinates": [ -0.5283884, 51.2843887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02547896" }, "bbox": [ -0.528819, 51.2852143, -0.528819, 51.2852143 ], "geometry": { "type": "Point", "coordinates": [ -0.528819, 51.2852143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02546596" }, "bbox": [ -0.5299526, 51.2844557, -0.5299526, 51.2844557 ], "geometry": { "type": "Point", "coordinates": [ -0.5299526, 51.2844557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498269" }, "bbox": [ -0.1419414, 51.2315248, -0.1419414, 51.2315248 ], "geometry": { "type": "Point", "coordinates": [ -0.1419414, 51.2315248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00415459" }, "bbox": [ -0.5632687, 51.1646714, -0.5632687, 51.1646714 ], "geometry": { "type": "Point", "coordinates": [ -0.5632687, 51.1646714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00414756" }, "bbox": [ -0.5644082, 51.1644789, -0.5644082, 51.1644789 ], "geometry": { "type": "Point", "coordinates": [ -0.5644082, 51.1644789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00412476" }, "bbox": [ -0.5677193, 51.1662979, -0.5677193, 51.1662979 ], "geometry": { "type": "Point", "coordinates": [ -0.5677193, 51.1662979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411374" }, "bbox": [ -0.5692712, 51.1662144, -0.5692712, 51.1662144 ], "geometry": { "type": "Point", "coordinates": [ -0.5692712, 51.1662144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00412477" }, "bbox": [ -0.5679718, 51.1663535, -0.5679718, 51.1663535 ], "geometry": { "type": "Point", "coordinates": [ -0.5679718, 51.1663535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00417019" }, "bbox": [ -0.5611133, 51.1610296, -0.5611133, 51.1610296 ], "geometry": { "type": "Point", "coordinates": [ -0.5611133, 51.1610296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00416015" }, "bbox": [ -0.5625992, 51.1608701, -0.5625992, 51.1608701 ], "geometry": { "type": "Point", "coordinates": [ -0.5625992, 51.1608701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00414356" }, "bbox": [ -0.5650198, 51.1644903, -0.5650198, 51.1644903 ], "geometry": { "type": "Point", "coordinates": [ -0.5650198, 51.1644903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00413758" }, "bbox": [ -0.5662237, 51.1648418, -0.5662237, 51.1648418 ], "geometry": { "type": "Point", "coordinates": [ -0.5662237, 51.1648418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00416061" }, "bbox": [ -0.5623482, 51.1649915, -0.5623482, 51.1649915 ], "geometry": { "type": "Point", "coordinates": [ -0.5623482, 51.1649915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00415659" }, "bbox": [ -0.5630851, 51.1647423, -0.5630851, 51.1647423 ], "geometry": { "type": "Point", "coordinates": [ -0.5630851, 51.1647423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00427229" }, "bbox": [ -0.5599656, 51.1704405, -0.5599656, 51.1704405 ], "geometry": { "type": "Point", "coordinates": [ -0.5599656, 51.1704405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00426926" }, "bbox": [ -0.5610551, 51.1708215, -0.5610551, 51.1708215 ], "geometry": { "type": "Point", "coordinates": [ -0.5610551, 51.1708215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00427634" }, "bbox": [ -0.5601387, 51.1715223, -0.5601387, 51.1715223 ], "geometry": { "type": "Point", "coordinates": [ -0.5601387, 51.1715223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00428561" }, "bbox": [ -0.5583159, 51.174106, -0.5583159, 51.174106 ], "geometry": { "type": "Point", "coordinates": [ -0.5583159, 51.174106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00428351" }, "bbox": [ -0.5593421, 51.1726328, -0.5593421, 51.1726328 ], "geometry": { "type": "Point", "coordinates": [ -0.5593421, 51.1726328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00426527" }, "bbox": [ -0.561658, 51.1709706, -0.561658, 51.1709706 ], "geometry": { "type": "Point", "coordinates": [ -0.561658, 51.1709706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32424089" }, "bbox": [ -0.1075039, 51.1698832, -0.1075039, 51.1698832 ], "geometry": { "type": "Point", "coordinates": [ -0.1075039, 51.1698832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32422984" }, "bbox": [ -0.1092344, 51.169556, -0.1092344, 51.169556 ], "geometry": { "type": "Point", "coordinates": [ -0.1092344, 51.169556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32418785" }, "bbox": [ -0.1011656, 51.1604703, -0.1011656, 51.1604703 ], "geometry": { "type": "Point", "coordinates": [ -0.1011656, 51.1604703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32418888" }, "bbox": [ -0.1009785, 51.1607921, -0.1009785, 51.1607921 ], "geometry": { "type": "Point", "coordinates": [ -0.1009785, 51.1607921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06534422" }, "bbox": [ -0.4750072, 51.2683303, -0.4750072, 51.2683303 ], "geometry": { "type": "Point", "coordinates": [ -0.4750072, 51.2683303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18409795" }, "bbox": [ -0.3001796, 51.1554219, -0.3001796, 51.1554219 ], "geometry": { "type": "Point", "coordinates": [ -0.3001796, 51.1554219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18403533" }, "bbox": [ -0.3091598, 51.150043, -0.3091598, 51.150043 ], "geometry": { "type": "Point", "coordinates": [ -0.3091598, 51.150043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18403599" }, "bbox": [ -0.3090983, 51.155926, -0.3090983, 51.155926 ], "geometry": { "type": "Point", "coordinates": [ -0.3090983, 51.155926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18403572" }, "bbox": [ -0.3091077, 51.1535001, -0.3091077, 51.1535001 ], "geometry": { "type": "Point", "coordinates": [ -0.3091077, 51.1535001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18403859" }, "bbox": [ -0.3086933, 51.152387, -0.3086933, 51.152387 ], "geometry": { "type": "Point", "coordinates": [ -0.3086933, 51.152387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19410101" }, "bbox": [ -0.3028501, 51.1560092, -0.3028501, 51.1560092 ], "geometry": { "type": "Point", "coordinates": [ -0.3028501, 51.1560092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404153" }, "bbox": [ -0.2942231, 51.1515842, -0.2942231, 51.1515842 ], "geometry": { "type": "Point", "coordinates": [ -0.2942231, 51.1515842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19403258" }, "bbox": [ -0.2955013, 51.1520502, -0.2955013, 51.1520502 ], "geometry": { "type": "Point", "coordinates": [ -0.2955013, 51.1520502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19402379" }, "bbox": [ -0.2969726, 51.1541166, -0.2969726, 51.1541166 ], "geometry": { "type": "Point", "coordinates": [ -0.2969726, 51.1541166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19403170" }, "bbox": [ -0.2954036, 51.1531423, -0.2954036, 51.1531423 ], "geometry": { "type": "Point", "coordinates": [ -0.2954036, 51.1531423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00445924" }, "bbox": [ -0.5620355, 51.1885893, -0.5620355, 51.1885893 ], "geometry": { "type": "Point", "coordinates": [ -0.5620355, 51.1885893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01690690" }, "bbox": [ -0.5481529, 51.419117, -0.5481529, 51.419117 ], "geometry": { "type": "Point", "coordinates": [ -0.5481529, 51.419117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30524965" }, "bbox": [ -0.1309219, 51.2580386, -0.1309219, 51.2580386 ], "geometry": { "type": "Point", "coordinates": [ -0.1309219, 51.2580386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30525165" }, "bbox": [ -0.1309624, 51.2581591, -0.1309624, 51.2581591 ], "geometry": { "type": "Point", "coordinates": [ -0.1309624, 51.2581591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361536" }, "bbox": [ -0.4704658, 51.1164865, -0.4704658, 51.1164865 ], "geometry": { "type": "Point", "coordinates": [ -0.4704658, 51.1164865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361537" }, "bbox": [ -0.4705854, 51.1166188, -0.4705854, 51.1166188 ], "geometry": { "type": "Point", "coordinates": [ -0.4705854, 51.1166188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14368490" }, "bbox": [ -0.3605282, 51.1197816, -0.3605282, 51.1197816 ], "geometry": { "type": "Point", "coordinates": [ -0.3605282, 51.1197816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14374603" }, "bbox": [ -0.3658753, 51.1211751, -0.3658753, 51.1211751 ], "geometry": { "type": "Point", "coordinates": [ -0.3658753, 51.1211751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87340926" }, "bbox": [ -0.7574838, 51.101144, -0.7574838, 51.101144 ], "geometry": { "type": "Point", "coordinates": [ -0.7574838, 51.101144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87341521" }, "bbox": [ -0.7560361, 51.1003215, -0.7560361, 51.1003215 ], "geometry": { "type": "Point", "coordinates": [ -0.7560361, 51.1003215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87341913" }, "bbox": [ -0.7556542, 51.0999131, -0.7556542, 51.0999131 ], "geometry": { "type": "Point", "coordinates": [ -0.7556542, 51.0999131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378579" }, "bbox": [ -0.3313727, 51.1275415, -0.3313727, 51.1275415 ], "geometry": { "type": "Point", "coordinates": [ -0.3313727, 51.1275415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16422974" }, "bbox": [ -0.3379328, 51.1721889, -0.3379328, 51.1721889 ], "geometry": { "type": "Point", "coordinates": [ -0.3379328, 51.1721889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04478325" }, "bbox": [ -0.5004346, 51.2147287, -0.5004346, 51.2147287 ], "geometry": { "type": "Point", "coordinates": [ -0.5004346, 51.2147287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08662116" }, "bbox": [ -0.4464174, 51.3842033, -0.4464174, 51.3842033 ], "geometry": { "type": "Point", "coordinates": [ -0.4464174, 51.3842033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08663029" }, "bbox": [ -0.4451414, 51.3852961, -0.4451414, 51.3852961 ], "geometry": { "type": "Point", "coordinates": [ -0.4451414, 51.3852961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08661319" }, "bbox": [ -0.4482782, 51.384691, -0.4482782, 51.384691 ], "geometry": { "type": "Point", "coordinates": [ -0.4482782, 51.384691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16659488" }, "bbox": [ -0.3209055, 51.380035, -0.3209055, 51.380035 ], "geometry": { "type": "Point", "coordinates": [ -0.3209055, 51.380035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16658094" }, "bbox": [ -0.3229496, 51.3805687, -0.3229496, 51.3805687 ], "geometry": { "type": "Point", "coordinates": [ -0.3229496, 51.3805687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16656979" }, "bbox": [ -0.3245872, 51.3793131, -0.3245872, 51.3793131 ], "geometry": { "type": "Point", "coordinates": [ -0.3245872, 51.3793131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15652481" }, "bbox": [ -0.3461453, 51.379753, -0.3461453, 51.379753 ], "geometry": { "type": "Point", "coordinates": [ -0.3461453, 51.379753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15661621" }, "bbox": [ -0.3464893, 51.3833223, -0.3464893, 51.3833223 ], "geometry": { "type": "Point", "coordinates": [ -0.3464893, 51.3833223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15665505" }, "bbox": [ -0.3411124, 51.3818761, -0.3411124, 51.3818761 ], "geometry": { "type": "Point", "coordinates": [ -0.3411124, 51.3818761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15664047" }, "bbox": [ -0.34288, 51.3854885, -0.34288, 51.3854885 ], "geometry": { "type": "Point", "coordinates": [ -0.34288, 51.3854885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24435873" }, "bbox": [ -0.2189663, 51.1792844, -0.2189663, 51.1792844 ], "geometry": { "type": "Point", "coordinates": [ -0.2189663, 51.1792844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436970" }, "bbox": [ -0.2174812, 51.179019, -0.2174812, 51.179019 ], "geometry": { "type": "Point", "coordinates": [ -0.2174812, 51.179019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24435473" }, "bbox": [ -0.219637, 51.1792794, -0.219637, 51.1792794 ], "geometry": { "type": "Point", "coordinates": [ -0.219637, 51.1792794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24435958" }, "bbox": [ -0.2186142, 51.1782858, -0.2186142, 51.1782858 ], "geometry": { "type": "Point", "coordinates": [ -0.2186142, 51.1782858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24437668" }, "bbox": [ -0.2163221, 51.1787015, -0.2163221, 51.1787015 ], "geometry": { "type": "Point", "coordinates": [ -0.2163221, 51.1787015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05695614" }, "bbox": [ -0.4835023, 51.4114755, -0.4835023, 51.4114755 ], "geometry": { "type": "Point", "coordinates": [ -0.4835023, 51.4114755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02730767" }, "bbox": [ -0.5324395, 51.4528602, -0.5324395, 51.4528602 ], "geometry": { "type": "Point", "coordinates": [ -0.5324395, 51.4528602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28518430" }, "bbox": [ -0.1553446, 51.2463296, -0.1553446, 51.2463296 ], "geometry": { "type": "Point", "coordinates": [ -0.1553446, 51.2463296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29510644" }, "bbox": [ -0.1521893, 51.2476157, -0.1521893, 51.2476157 ], "geometry": { "type": "Point", "coordinates": [ -0.1521893, 51.2476157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97545652" }, "bbox": [ -0.6024336, 51.2815164, -0.6024336, 51.2815164 ], "geometry": { "type": "Point", "coordinates": [ -0.6024336, 51.2815164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544462" }, "bbox": [ -0.6042109, 51.2824225, -0.6042109, 51.2824225 ], "geometry": { "type": "Point", "coordinates": [ -0.6042109, 51.2824225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96549244" }, "bbox": [ -0.6116504, 51.2808774, -0.6116504, 51.2808774 ], "geometry": { "type": "Point", "coordinates": [ -0.6116504, 51.2808774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39441288" }, "bbox": [ -0.0109045, 51.1861797, -0.0109045, 51.1861797 ], "geometry": { "type": "Point", "coordinates": [ -0.0109045, 51.1861797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03452804" }, "bbox": [ -0.5232297, 51.1952729, -0.5232297, 51.1952729 ], "geometry": { "type": "Point", "coordinates": [ -0.5232297, 51.1952729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93472034" }, "bbox": [ -0.6668702, 51.2179475, -0.6668702, 51.2179475 ], "geometry": { "type": "Point", "coordinates": [ -0.6668702, 51.2179475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93471637" }, "bbox": [ -0.6674376, 51.2179953, -0.6674376, 51.2179953 ], "geometry": { "type": "Point", "coordinates": [ -0.6674376, 51.2179953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93470718" }, "bbox": [ -0.6683153, 51.2161745, -0.6683153, 51.2161745 ], "geometry": { "type": "Point", "coordinates": [ -0.6683153, 51.2161745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460730" }, "bbox": [ -0.6688648, 51.2082585, -0.6688648, 51.2082585 ], "geometry": { "type": "Point", "coordinates": [ -0.6688648, 51.2082585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460927" }, "bbox": [ -0.6686303, 51.2081118, -0.6686303, 51.2081118 ], "geometry": { "type": "Point", "coordinates": [ -0.6686303, 51.2081118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460673" }, "bbox": [ -0.668993, 51.2122564, -0.668993, 51.2122564 ], "geometry": { "type": "Point", "coordinates": [ -0.668993, 51.2122564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460759" }, "bbox": [ -0.6688429, 51.2109659, -0.6688429, 51.2109659 ], "geometry": { "type": "Point", "coordinates": [ -0.6688429, 51.2109659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460688" }, "bbox": [ -0.6689575, 51.2135392, -0.6689575, 51.2135392 ], "geometry": { "type": "Point", "coordinates": [ -0.6689575, 51.2135392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92465047" }, "bbox": [ -0.6772595, 51.2099114, -0.6772595, 51.2099114 ], "geometry": { "type": "Point", "coordinates": [ -0.6772595, 51.2099114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92467205" }, "bbox": [ -0.6741315, 51.2061926, -0.6741315, 51.2061926 ], "geometry": { "type": "Point", "coordinates": [ -0.6741315, 51.2061926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92466459" }, "bbox": [ -0.6751786, 51.2110385, -0.6751786, 51.2110385 ], "geometry": { "type": "Point", "coordinates": [ -0.6751786, 51.2110385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92466449" }, "bbox": [ -0.6752153, 51.2101564, -0.6752153, 51.2101564 ], "geometry": { "type": "Point", "coordinates": [ -0.6752153, 51.2101564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92463803" }, "bbox": [ -0.678942, 51.206111, -0.678942, 51.206111 ], "geometry": { "type": "Point", "coordinates": [ -0.678942, 51.206111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92467050" }, "bbox": [ -0.6745813, 51.2102362, -0.6745813, 51.2102362 ], "geometry": { "type": "Point", "coordinates": [ -0.6745813, 51.2102362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92463526" }, "bbox": [ -0.6793906, 51.2080383, -0.6793906, 51.2080383 ], "geometry": { "type": "Point", "coordinates": [ -0.6793906, 51.2080383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98419271" }, "bbox": [ -0.586073, 51.1660799, -0.586073, 51.1660799 ], "geometry": { "type": "Point", "coordinates": [ -0.586073, 51.1660799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98419672" }, "bbox": [ -0.5859155, 51.1662727, -0.5859155, 51.1662727 ], "geometry": { "type": "Point", "coordinates": [ -0.5859155, 51.1662727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98419575" }, "bbox": [ -0.5860873, 51.1664414, -0.5860873, 51.1664414 ], "geometry": { "type": "Point", "coordinates": [ -0.5860873, 51.1664414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99410373" }, "bbox": [ -0.5847448, 51.1662541, -0.5847448, 51.1662541 ], "geometry": { "type": "Point", "coordinates": [ -0.5847448, 51.1662541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99423020" }, "bbox": [ -0.5808975, 51.1704969, -0.5808975, 51.1704969 ], "geometry": { "type": "Point", "coordinates": [ -0.5808975, 51.1704969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99423225" }, "bbox": [ -0.5808324, 51.1709214, -0.5808324, 51.1709214 ], "geometry": { "type": "Point", "coordinates": [ -0.5808324, 51.1709214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99421124" }, "bbox": [ -0.583591, 51.1708726, -0.583591, 51.1708726 ], "geometry": { "type": "Point", "coordinates": [ -0.583591, 51.1708726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99421321" }, "bbox": [ -0.5836948, 51.1703577, -0.5836948, 51.1703577 ], "geometry": { "type": "Point", "coordinates": [ -0.5836948, 51.1703577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99423322" }, "bbox": [ -0.5803244, 51.1706409, -0.5803244, 51.1706409 ], "geometry": { "type": "Point", "coordinates": [ -0.5803244, 51.1706409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02479873" }, "bbox": [ -0.5272783, 51.2195117, -0.5272783, 51.2195117 ], "geometry": { "type": "Point", "coordinates": [ -0.5272783, 51.2195117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470967" }, "bbox": [ -0.5252022, 51.21888, -0.5252022, 51.21888 ], "geometry": { "type": "Point", "coordinates": [ -0.5252022, 51.21888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97437980" }, "bbox": [ -0.6023707, 51.1835048, -0.6023707, 51.1835048 ], "geometry": { "type": "Point", "coordinates": [ -0.6023707, 51.1835048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399505" }, "bbox": [ -0.6152706, 51.142621, -0.6152706, 51.142621 ], "geometry": { "type": "Point", "coordinates": [ -0.6152706, 51.142621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96398505" }, "bbox": [ -0.6170763, 51.1424363, -0.6170763, 51.1424363 ], "geometry": { "type": "Point", "coordinates": [ -0.6170763, 51.1424363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390407" }, "bbox": [ -0.6140805, 51.1426812, -0.6140805, 51.1426812 ], "geometry": { "type": "Point", "coordinates": [ -0.6140805, 51.1426812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437958" }, "bbox": [ -0.7169703, 51.1844461, -0.7169703, 51.1844461 ], "geometry": { "type": "Point", "coordinates": [ -0.7169703, 51.1844461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437878" }, "bbox": [ -0.7167661, 51.1862011, -0.7167661, 51.1862011 ], "geometry": { "type": "Point", "coordinates": [ -0.7167661, 51.1862011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89436970" }, "bbox": [ -0.7184116, 51.1853285, -0.7184116, 51.1853285 ], "geometry": { "type": "Point", "coordinates": [ -0.7184116, 51.1853285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437670" }, "bbox": [ -0.7172418, 51.1852687, -0.7172418, 51.1852687 ], "geometry": { "type": "Point", "coordinates": [ -0.7172418, 51.1852687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89439074" }, "bbox": [ -0.7151894, 51.1858169, -0.7151894, 51.1858169 ], "geometry": { "type": "Point", "coordinates": [ -0.7151894, 51.1858169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89436061" }, "bbox": [ -0.7194324, 51.1847539, -0.7194324, 51.1847539 ], "geometry": { "type": "Point", "coordinates": [ -0.7194324, 51.1847539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89438963" }, "bbox": [ -0.7153676, 51.1848064, -0.7153676, 51.1848064 ], "geometry": { "type": "Point", "coordinates": [ -0.7153676, 51.1848064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89435766" }, "bbox": [ -0.719713, 51.1851855, -0.719713, 51.1851855 ], "geometry": { "type": "Point", "coordinates": [ -0.719713, 51.1851855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89431571" }, "bbox": [ -0.726005, 51.1856009, -0.726005, 51.1856009 ], "geometry": { "type": "Point", "coordinates": [ -0.726005, 51.1856009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89436067" }, "bbox": [ -0.7195169, 51.1851634, -0.7195169, 51.1851634 ], "geometry": { "type": "Point", "coordinates": [ -0.7195169, 51.1851634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437970" }, "bbox": [ -0.7164265, 51.1856067, -0.7164265, 51.1856067 ], "geometry": { "type": "Point", "coordinates": [ -0.7164265, 51.1856067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18495532" }, "bbox": [ -0.3017473, 51.2307219, -0.3017473, 51.2307219 ], "geometry": { "type": "Point", "coordinates": [ -0.3017473, 51.2307219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18497732" }, "bbox": [ -0.3003692, 51.2307462, -0.3003692, 51.2307462 ], "geometry": { "type": "Point", "coordinates": [ -0.3003692, 51.2307462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18496553" }, "bbox": [ -0.3020914, 51.2325834, -0.3020914, 51.2325834 ], "geometry": { "type": "Point", "coordinates": [ -0.3020914, 51.2325834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96559921" }, "bbox": [ -0.610418, 51.2876155, -0.610418, 51.2876155 ], "geometry": { "type": "Point", "coordinates": [ -0.610418, 51.2876155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96558715" }, "bbox": [ -0.6123025, 51.2872464, -0.6123025, 51.2872464 ], "geometry": { "type": "Point", "coordinates": [ -0.6123025, 51.2872464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486411" }, "bbox": [ -0.8180447, 51.2261035, -0.8180447, 51.2261035 ], "geometry": { "type": "Point", "coordinates": [ -0.8180447, 51.2261035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486524" }, "bbox": [ -0.8177351, 51.2274262, -0.8177351, 51.2274262 ], "geometry": { "type": "Point", "coordinates": [ -0.8177351, 51.2274262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486838" }, "bbox": [ -0.81742, 51.2285955, -0.81742, 51.2285955 ], "geometry": { "type": "Point", "coordinates": [ -0.81742, 51.2285955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486438" }, "bbox": [ -0.8169359, 51.2287263, -0.8169359, 51.2287263 ], "geometry": { "type": "Point", "coordinates": [ -0.8169359, 51.2287263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82488142" }, "bbox": [ -0.815648, 51.2290518, -0.815648, 51.2290518 ], "geometry": { "type": "Point", "coordinates": [ -0.815648, 51.2290518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82487741" }, "bbox": [ -0.8159252, 51.2289147, -0.8159252, 51.2289147 ], "geometry": { "type": "Point", "coordinates": [ -0.8159252, 51.2289147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82488531" }, "bbox": [ -0.8147362, 51.2279529, -0.8147362, 51.2279529 ], "geometry": { "type": "Point", "coordinates": [ -0.8147362, 51.2279529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36435534" }, "bbox": [ -0.048064, 51.173036, -0.048064, 51.173036 ], "geometry": { "type": "Point", "coordinates": [ -0.048064, 51.173036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41421020" }, "bbox": [ 0.0163336, 51.1616028, 0.0163336, 51.1616028 ], "geometry": { "type": "Point", "coordinates": [ 0.0163336, 51.1616028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40419593" }, "bbox": [ 0.0139527, 51.1593922, 0.0139527, 51.1593922 ], "geometry": { "type": "Point", "coordinates": [ 0.0139527, 51.1593922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41423311" }, "bbox": [ 0.0198651, 51.1609761, 0.0198651, 51.1609761 ], "geometry": { "type": "Point", "coordinates": [ 0.0198651, 51.1609761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41423146" }, "bbox": [ 0.0196514, 51.163972, 0.0196514, 51.163972 ], "geometry": { "type": "Point", "coordinates": [ 0.0196514, 51.163972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41424737" }, "bbox": [ 0.0219676, 51.1631481, 0.0219676, 51.1631481 ], "geometry": { "type": "Point", "coordinates": [ 0.0219676, 51.1631481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41426053" }, "bbox": [ 0.023802, 51.1645297, 0.023802, 51.1645297 ], "geometry": { "type": "Point", "coordinates": [ 0.023802, 51.1645297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41422009" }, "bbox": [ 0.0180369, 51.1605923, 0.0180369, 51.1605923 ], "geometry": { "type": "Point", "coordinates": [ 0.0180369, 51.1605923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32417496" }, "bbox": [ -0.1030357, 51.1616073, -0.1030357, 51.1616073 ], "geometry": { "type": "Point", "coordinates": [ -0.1030357, 51.1616073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05601893" }, "bbox": [ -0.4916708, 51.3376437, -0.4916708, 51.3376437 ], "geometry": { "type": "Point", "coordinates": [ -0.4916708, 51.3376437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95467389" }, "bbox": [ -0.6312433, 51.2132953, -0.6312433, 51.2132953 ], "geometry": { "type": "Point", "coordinates": [ -0.6312433, 51.2132953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96464140" }, "bbox": [ -0.6212431, 51.2087299, -0.6212431, 51.2087299 ], "geometry": { "type": "Point", "coordinates": [ -0.6212431, 51.2087299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96461861" }, "bbox": [ -0.6243651, 51.2105506, -0.6243651, 51.2105506 ], "geometry": { "type": "Point", "coordinates": [ -0.6243651, 51.2105506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96463349" }, "bbox": [ -0.6238311, 51.2105458, -0.6238311, 51.2105458 ], "geometry": { "type": "Point", "coordinates": [ -0.6238311, 51.2105458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96462270" }, "bbox": [ -0.6237357, 51.2118435, -0.6237357, 51.2118435 ], "geometry": { "type": "Point", "coordinates": [ -0.6237357, 51.2118435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12501974" }, "bbox": [ -0.3941073, 51.2447089, -0.3941073, 51.2447089 ], "geometry": { "type": "Point", "coordinates": [ -0.3941073, 51.2447089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97632999" }, "bbox": [ -0.6038003, 51.366644, -0.6038003, 51.366644 ], "geometry": { "type": "Point", "coordinates": [ -0.6038003, 51.366644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17448560" }, "bbox": [ -0.3147431, 51.1884665, -0.3147431, 51.1884665 ], "geometry": { "type": "Point", "coordinates": [ -0.3147431, 51.1884665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18442365" }, "bbox": [ -0.3096112, 51.1888688, -0.3096112, 51.1888688 ], "geometry": { "type": "Point", "coordinates": [ -0.3096112, 51.1888688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18443567" }, "bbox": [ -0.3078109, 51.1889192, -0.3078109, 51.1889192 ], "geometry": { "type": "Point", "coordinates": [ -0.3078109, 51.1889192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82482585" }, "bbox": [ -0.8227837, 51.2328055, -0.8227837, 51.2328055 ], "geometry": { "type": "Point", "coordinates": [ -0.8227837, 51.2328055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82480689" }, "bbox": [ -0.8258859, 51.2331901, -0.8258859, 51.2331901 ], "geometry": { "type": "Point", "coordinates": [ -0.8258859, 51.2331901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25445716" }, "bbox": [ -0.2050831, 51.1830016, -0.2050831, 51.1830016 ], "geometry": { "type": "Point", "coordinates": [ -0.2050831, 51.1830016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00383476" }, "bbox": [ -0.5672495, 51.1393196, -0.5672495, 51.1393196 ], "geometry": { "type": "Point", "coordinates": [ -0.5672495, 51.1393196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00381285" }, "bbox": [ -0.5702223, 51.1401712, -0.5702223, 51.1401712 ], "geometry": { "type": "Point", "coordinates": [ -0.5702223, 51.1401712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00389177" }, "bbox": [ -0.5586094, 51.1395898, -0.5586094, 51.1395898 ], "geometry": { "type": "Point", "coordinates": [ -0.5586094, 51.1395898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00381969" }, "bbox": [ -0.5692746, 51.1387398, -0.5692746, 51.1387398 ], "geometry": { "type": "Point", "coordinates": [ -0.5692746, 51.1387398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00398918" }, "bbox": [ -0.5591943, 51.143077, -0.5591943, 51.143077 ], "geometry": { "type": "Point", "coordinates": [ -0.5591943, 51.143077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00399305" }, "bbox": [ -0.5584169, 51.142236, -0.5584169, 51.142236 ], "geometry": { "type": "Point", "coordinates": [ -0.5584169, 51.142236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00397506" }, "bbox": [ -0.5615962, 51.1419482, -0.5615962, 51.1419482 ], "geometry": { "type": "Point", "coordinates": [ -0.5615962, 51.1419482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00396705" }, "bbox": [ -0.5624513, 51.1418778, -0.5624513, 51.1418778 ], "geometry": { "type": "Point", "coordinates": [ -0.5624513, 51.1418778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01391509" }, "bbox": [ -0.5554238, 51.1422716, -0.5554238, 51.1422716 ], "geometry": { "type": "Point", "coordinates": [ -0.5554238, 51.1422716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01382992" }, "bbox": [ -0.5534712, 51.1405389, -0.5534712, 51.1405389 ], "geometry": { "type": "Point", "coordinates": [ -0.5534712, 51.1405389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01382795" }, "bbox": [ -0.553779, 51.1408145, -0.553779, 51.1408145 ], "geometry": { "type": "Point", "coordinates": [ -0.553779, 51.1408145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13398799" }, "bbox": [ -0.3720612, 51.1475619, -0.3720612, 51.1475619 ], "geometry": { "type": "Point", "coordinates": [ -0.3720612, 51.1475619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14393350" }, "bbox": [ -0.3669111, 51.1433699, -0.3669111, 51.1433699 ], "geometry": { "type": "Point", "coordinates": [ -0.3669111, 51.1433699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14392450" }, "bbox": [ -0.370149, 51.1437292, -0.370149, 51.1437292 ], "geometry": { "type": "Point", "coordinates": [ -0.370149, 51.1437292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14391796" }, "bbox": [ -0.3718519, 51.1473741, -0.3718519, 51.1473741 ], "geometry": { "type": "Point", "coordinates": [ -0.3718519, 51.1473741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14393351" }, "bbox": [ -0.3670834, 51.1434748, -0.3670834, 51.1434748 ], "geometry": { "type": "Point", "coordinates": [ -0.3670834, 51.1434748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93455532" }, "bbox": [ -0.6626203, 51.1994627, -0.6626203, 51.1994627 ], "geometry": { "type": "Point", "coordinates": [ -0.6626203, 51.1994627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93452960" }, "bbox": [ -0.6659627, 51.2020516, -0.6659627, 51.2020516 ], "geometry": { "type": "Point", "coordinates": [ -0.6659627, 51.2020516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93451761" }, "bbox": [ -0.6676867, 51.2021755, -0.6676867, 51.2021755 ], "geometry": { "type": "Point", "coordinates": [ -0.6676867, 51.2021755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93453275" }, "bbox": [ -0.6655398, 51.2033672, -0.6655398, 51.2033672 ], "geometry": { "type": "Point", "coordinates": [ -0.6655398, 51.2033672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93451964" }, "bbox": [ -0.6676891, 51.2024029, -0.6676891, 51.2024029 ], "geometry": { "type": "Point", "coordinates": [ -0.6676891, 51.2024029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92469901" }, "bbox": [ -0.6700987, 51.2058657, -0.6700987, 51.2058657 ], "geometry": { "type": "Point", "coordinates": [ -0.6700987, 51.2058657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457686" }, "bbox": [ -0.6737016, 51.2045755, -0.6737016, 51.2045755 ], "geometry": { "type": "Point", "coordinates": [ -0.6737016, 51.2045755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92454869" }, "bbox": [ -0.6775935, 51.2029945, -0.6775935, 51.2029945 ], "geometry": { "type": "Point", "coordinates": [ -0.6775935, 51.2029945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92455274" }, "bbox": [ -0.6756603, 51.2040474, -0.6756603, 51.2040474 ], "geometry": { "type": "Point", "coordinates": [ -0.6756603, 51.2040474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372971" }, "bbox": [ -0.3396247, 51.1268656, -0.3396247, 51.1268656 ], "geometry": { "type": "Point", "coordinates": [ -0.3396247, 51.1268656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16376861" }, "bbox": [ -0.3340935, 51.1258699, -0.3340935, 51.1258699 ], "geometry": { "type": "Point", "coordinates": [ -0.3340935, 51.1258699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372086" }, "bbox": [ -0.3408363, 51.1282342, -0.3408363, 51.1282342 ], "geometry": { "type": "Point", "coordinates": [ -0.3408363, 51.1282342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16379452" }, "bbox": [ -0.3298721, 51.1250474, -0.3298721, 51.1250474 ], "geometry": { "type": "Point", "coordinates": [ -0.3298721, 51.1250474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378562" }, "bbox": [ -0.3314751, 51.1261746, -0.3314751, 51.1261746 ], "geometry": { "type": "Point", "coordinates": [ -0.3314751, 51.1261746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378764" }, "bbox": [ -0.3312157, 51.1261295, -0.3312157, 51.1261295 ], "geometry": { "type": "Point", "coordinates": [ -0.3312157, 51.1261295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16377952" }, "bbox": [ -0.3324336, 51.1252116, -0.3324336, 51.1252116 ], "geometry": { "type": "Point", "coordinates": [ -0.3324336, 51.1252116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378454" }, "bbox": [ -0.3316962, 51.1252782, -0.3316962, 51.1252782 ], "geometry": { "type": "Point", "coordinates": [ -0.3316962, 51.1252782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14363780" }, "bbox": [ -0.3670866, 51.1192623, -0.3670866, 51.1192623 ], "geometry": { "type": "Point", "coordinates": [ -0.3670866, 51.1192623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14364797" }, "bbox": [ -0.3656816, 51.1205631, -0.3656816, 51.1205631 ], "geometry": { "type": "Point", "coordinates": [ -0.3656816, 51.1205631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14365191" }, "bbox": [ -0.3650675, 51.1197685, -0.3650675, 51.1197685 ], "geometry": { "type": "Point", "coordinates": [ -0.3650675, 51.1197685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15372833" }, "bbox": [ -0.3539901, 51.1238605, -0.3539901, 51.1238605 ], "geometry": { "type": "Point", "coordinates": [ -0.3539901, 51.1238605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15373934" }, "bbox": [ -0.3525119, 51.1236513, -0.3525119, 51.1236513 ], "geometry": { "type": "Point", "coordinates": [ -0.3525119, 51.1236513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15372127" }, "bbox": [ -0.3551118, 51.1229283, -0.3551118, 51.1229283 ], "geometry": { "type": "Point", "coordinates": [ -0.3551118, 51.1229283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331074" }, "bbox": [ -0.6432783, 51.0951567, -0.6432783, 51.0951567 ], "geometry": { "type": "Point", "coordinates": [ -0.6432783, 51.0951567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331240" }, "bbox": [ -0.6430334, 51.0920731, -0.6430334, 51.0920731 ], "geometry": { "type": "Point", "coordinates": [ -0.6430334, 51.0920731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344900" }, "bbox": [ -0.651869, 51.0976201, -0.651869, 51.0976201 ], "geometry": { "type": "Point", "coordinates": [ -0.651869, 51.0976201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94346226" }, "bbox": [ -0.6500343, 51.1000416, -0.6500343, 51.1000416 ], "geometry": { "type": "Point", "coordinates": [ -0.6500343, 51.1000416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344746" }, "bbox": [ -0.6521034, 51.1016546, -0.6521034, 51.1016546 ], "geometry": { "type": "Point", "coordinates": [ -0.6521034, 51.1016546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94344044" }, "bbox": [ -0.6531067, 51.1014909, -0.6531067, 51.1014909 ], "geometry": { "type": "Point", "coordinates": [ -0.6531067, 51.1014909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94345507" }, "bbox": [ -0.6509447, 51.0982148, -0.6509447, 51.0982148 ], "geometry": { "type": "Point", "coordinates": [ -0.6509447, 51.0982148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94345324" }, "bbox": [ -0.6509834, 51.0995856, -0.6509834, 51.0995856 ], "geometry": { "type": "Point", "coordinates": [ -0.6509834, 51.0995856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94347608" }, "bbox": [ -0.6478483, 51.0984121, -0.6478483, 51.0984121 ], "geometry": { "type": "Point", "coordinates": [ -0.6478483, 51.0984121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94339933" }, "bbox": [ -0.6449114, 51.091422, -0.6449114, 51.091422 ], "geometry": { "type": "Point", "coordinates": [ -0.6449114, 51.091422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94335096" }, "bbox": [ -0.6515587, 51.097141, -0.6515587, 51.097141 ], "geometry": { "type": "Point", "coordinates": [ -0.6515587, 51.097141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94339931" }, "bbox": [ -0.644852, 51.0912901, -0.644852, 51.0912901 ], "geometry": { "type": "Point", "coordinates": [ -0.644852, 51.0912901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94339827" }, "bbox": [ -0.6450577, 51.0909718, -0.6450577, 51.0909718 ], "geometry": { "type": "Point", "coordinates": [ -0.6450577, 51.0909718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94334092" }, "bbox": [ -0.6530975, 51.0969567, -0.6530975, 51.0969567 ], "geometry": { "type": "Point", "coordinates": [ -0.6530975, 51.0969567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94333690" }, "bbox": [ -0.653636, 51.096663, -0.653636, 51.096663 ], "geometry": { "type": "Point", "coordinates": [ -0.653636, 51.096663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36483221" }, "bbox": [ -0.0495916, 51.2168119, -0.0495916, 51.2168119 ], "geometry": { "type": "Point", "coordinates": [ -0.0495916, 51.2168119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96369551" }, "bbox": [ -0.6159163, 51.1197381, -0.6159163, 51.1197381 ], "geometry": { "type": "Point", "coordinates": [ -0.6159163, 51.1197381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97365033" }, "bbox": [ -0.6083054, 51.1180609, -0.6083054, 51.1180609 ], "geometry": { "type": "Point", "coordinates": [ -0.6083054, 51.1180609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97364041" }, "bbox": [ -0.6095941, 51.1186939, -0.6095941, 51.1186939 ], "geometry": { "type": "Point", "coordinates": [ -0.6095941, 51.1186939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362719" }, "bbox": [ -0.6113805, 51.1169473, -0.6113805, 51.1169473 ], "geometry": { "type": "Point", "coordinates": [ -0.6113805, 51.1169473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97363632" }, "bbox": [ -0.6101901, 51.1180102, -0.6101901, 51.1180102 ], "geometry": { "type": "Point", "coordinates": [ -0.6101901, 51.1180102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362454" }, "bbox": [ -0.6117682, 51.1200267, -0.6117682, 51.1200267 ], "geometry": { "type": "Point", "coordinates": [ -0.6117682, 51.1200267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97363143" }, "bbox": [ -0.6110775, 51.1189361, -0.6110775, 51.1189361 ], "geometry": { "type": "Point", "coordinates": [ -0.6110775, 51.1189361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362649" }, "bbox": [ -0.6115662, 51.1194983, -0.6115662, 51.1194983 ], "geometry": { "type": "Point", "coordinates": [ -0.6115662, 51.1194983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97366164" }, "bbox": [ -0.6064413, 51.1206897, -0.6064413, 51.1206897 ], "geometry": { "type": "Point", "coordinates": [ -0.6064413, 51.1206897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97364316" }, "bbox": [ -0.6102489, 51.115916, -0.6102489, 51.115916 ], "geometry": { "type": "Point", "coordinates": [ -0.6102489, 51.115916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362254" }, "bbox": [ -0.6126695, 51.1198086, -0.6126695, 51.1198086 ], "geometry": { "type": "Point", "coordinates": [ -0.6126695, 51.1198086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362256" }, "bbox": [ -0.6122169, 51.1201737, -0.6122169, 51.1201737 ], "geometry": { "type": "Point", "coordinates": [ -0.6122169, 51.1201737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97364438" }, "bbox": [ -0.6088383, 51.1189733, -0.6088383, 51.1189733 ], "geometry": { "type": "Point", "coordinates": [ -0.6088383, 51.1189733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17526768" }, "bbox": [ -0.3148274, 51.2611611, -0.3148274, 51.2611611 ], "geometry": { "type": "Point", "coordinates": [ -0.3148274, 51.2611611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18535730" }, "bbox": [ -0.3019649, 51.2664745, -0.3019649, 51.2664745 ], "geometry": { "type": "Point", "coordinates": [ -0.3019649, 51.2664745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97554977" }, "bbox": [ -0.6028611, 51.2928476, -0.6028611, 51.2928476 ], "geometry": { "type": "Point", "coordinates": [ -0.6028611, 51.2928476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550152" }, "bbox": [ -0.6102309, 51.2906125, -0.6102309, 51.2906125 ], "geometry": { "type": "Point", "coordinates": [ -0.6102309, 51.2906125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29471060" }, "bbox": [ -0.1525168, 51.2130187, -0.1525168, 51.2130187 ], "geometry": { "type": "Point", "coordinates": [ -0.1525168, 51.2130187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90340909" }, "bbox": [ -0.7147237, 51.0990493, -0.7147237, 51.0990493 ], "geometry": { "type": "Point", "coordinates": [ -0.7147237, 51.0990493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10377636" }, "bbox": [ -0.4183422, 51.1247889, -0.4183422, 51.1247889 ], "geometry": { "type": "Point", "coordinates": [ -0.4183422, 51.1247889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10377050" }, "bbox": [ -0.4188838, 51.1270552, -0.4188838, 51.1270552 ], "geometry": { "type": "Point", "coordinates": [ -0.4188838, 51.1270552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12459383" }, "bbox": [ -0.3847789, 51.2003747, -0.3847789, 51.2003747 ], "geometry": { "type": "Point", "coordinates": [ -0.3847789, 51.2003747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37411101" }, "bbox": [ -0.0408827, 51.1520127, -0.0408827, 51.1520127 ], "geometry": { "type": "Point", "coordinates": [ -0.0408827, 51.1520127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37410303" }, "bbox": [ -0.0419503, 51.1521953, -0.0419503, 51.1521953 ], "geometry": { "type": "Point", "coordinates": [ -0.0419503, 51.1521953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18391919" }, "bbox": [ -0.3111616, 51.13967, -0.3111616, 51.13967 ], "geometry": { "type": "Point", "coordinates": [ -0.3111616, 51.13967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34503046" }, "bbox": [ -0.0773292, 51.2375285, -0.0773292, 51.2375285 ], "geometry": { "type": "Point", "coordinates": [ -0.0773292, 51.2375285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34502962" }, "bbox": [ -0.0775706, 51.2394635, -0.0775706, 51.2394635 ], "geometry": { "type": "Point", "coordinates": [ -0.0775706, 51.2394635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36602744" }, "bbox": [ -0.0455151, 51.3268058, -0.0455151, 51.3268058 ], "geometry": { "type": "Point", "coordinates": [ -0.0455151, 51.3268058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36604744" }, "bbox": [ -0.0426956, 51.3265546, -0.0426956, 51.3265546 ], "geometry": { "type": "Point", "coordinates": [ -0.0426956, 51.3265546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11401154" }, "bbox": [ -0.4126445, 51.1533226, -0.4126445, 51.1533226 ], "geometry": { "type": "Point", "coordinates": [ -0.4126445, 51.1533226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25419795" }, "bbox": [ -0.1997523, 51.1631159, -0.1997523, 51.1631159 ], "geometry": { "type": "Point", "coordinates": [ -0.1997523, 51.1631159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25429715" }, "bbox": [ -0.1996338, 51.1647803, -0.1996338, 51.1647803 ], "geometry": { "type": "Point", "coordinates": [ -0.1996338, 51.1647803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08488974" }, "bbox": [ -0.4418652, 51.2275043, -0.4418652, 51.2275043 ], "geometry": { "type": "Point", "coordinates": [ -0.4418652, 51.2275043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08488591" }, "bbox": [ -0.4419988, 51.2290903, -0.4419988, 51.2290903 ], "geometry": { "type": "Point", "coordinates": [ -0.4419988, 51.2290903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09480253" }, "bbox": [ -0.4400209, 51.2249484, -0.4400209, 51.2249484 ], "geometry": { "type": "Point", "coordinates": [ -0.4400209, 51.2249484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372624" }, "bbox": [ -0.3400049, 51.1227849, -0.3400049, 51.1227849 ], "geometry": { "type": "Point", "coordinates": [ -0.3400049, 51.1227849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03452580" }, "bbox": [ -0.5240761, 51.2024814, -0.5240761, 51.2024814 ], "geometry": { "type": "Point", "coordinates": [ -0.5240761, 51.2024814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03458587" }, "bbox": [ -0.5153179, 51.203185, -0.5153179, 51.203185 ], "geometry": { "type": "Point", "coordinates": [ -0.5153179, 51.203185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03460632" }, "bbox": [ -0.5255973, 51.2070412, -0.5255973, 51.2070412 ], "geometry": { "type": "Point", "coordinates": [ -0.5255973, 51.2070412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03462019" }, "bbox": [ -0.5240305, 51.2057266, -0.5240305, 51.2057266 ], "geometry": { "type": "Point", "coordinates": [ -0.5240305, 51.2057266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99349137" }, "bbox": [ -0.5738935, 51.1000659, -0.5738935, 51.1000659 ], "geometry": { "type": "Point", "coordinates": [ -0.5738935, 51.1000659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99348740" }, "bbox": [ -0.5747502, 51.1003035, -0.5747502, 51.1003035 ], "geometry": { "type": "Point", "coordinates": [ -0.5747502, 51.1003035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99348434" }, "bbox": [ -0.575429, 51.0997761, -0.575429, 51.0997761 ], "geometry": { "type": "Point", "coordinates": [ -0.575429, 51.0997761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99349032" }, "bbox": [ -0.5746813, 51.0995259, -0.5746813, 51.0995259 ], "geometry": { "type": "Point", "coordinates": [ -0.5746813, 51.0995259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99349631" }, "bbox": [ -0.5737868, 51.0993903, -0.5737868, 51.0993903 ], "geometry": { "type": "Point", "coordinates": [ -0.5737868, 51.0993903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01675628" }, "bbox": [ -0.5414927, 51.3954787, -0.5414927, 51.3954787 ], "geometry": { "type": "Point", "coordinates": [ -0.5414927, 51.3954787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25544184" }, "bbox": [ -0.2034033, 51.278996, -0.2034033, 51.278996 ], "geometry": { "type": "Point", "coordinates": [ -0.2034033, 51.278996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25553402" }, "bbox": [ -0.2041413, 51.280498, -0.2041413, 51.280498 ], "geometry": { "type": "Point", "coordinates": [ -0.2041413, 51.280498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25554202" }, "bbox": [ -0.2029405, 51.2805141, -0.2029405, 51.2805141 ], "geometry": { "type": "Point", "coordinates": [ -0.2029405, 51.2805141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41428509" }, "bbox": [ 0.0274012, 51.1605259, 0.0274012, 51.1605259 ], "geometry": { "type": "Point", "coordinates": [ 0.0274012, 51.1605259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41415895" }, "bbox": [ 0.0235347, 51.1590854, 0.0235347, 51.1590854 ], "geometry": { "type": "Point", "coordinates": [ 0.0235347, 51.1590854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41417879" }, "bbox": [ 0.0266113, 51.1581437, 0.0266113, 51.1581437 ], "geometry": { "type": "Point", "coordinates": [ 0.0266113, 51.1581437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14361890" }, "bbox": [ -0.3697073, 51.1200853, -0.3697073, 51.1200853 ], "geometry": { "type": "Point", "coordinates": [ -0.3697073, 51.1200853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14361167" }, "bbox": [ -0.3707119, 51.1186493, -0.3707119, 51.1186493 ], "geometry": { "type": "Point", "coordinates": [ -0.3707119, 51.1186493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14360991" }, "bbox": [ -0.3711693, 51.1200909, -0.3711693, 51.1200909 ], "geometry": { "type": "Point", "coordinates": [ -0.3711693, 51.1200909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378335" }, "bbox": [ -0.360655, 51.1237488, -0.360655, 51.1237488 ], "geometry": { "type": "Point", "coordinates": [ -0.360655, 51.1237488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377226" }, "bbox": [ -0.3617133, 51.1230563, -0.3617133, 51.1230563 ], "geometry": { "type": "Point", "coordinates": [ -0.3617133, 51.1230563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377225" }, "bbox": [ -0.3618333, 51.1230057, -0.3618333, 51.1230057 ], "geometry": { "type": "Point", "coordinates": [ -0.3618333, 51.1230057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14376317" }, "bbox": [ -0.3629679, 51.121991, -0.3629679, 51.121991 ], "geometry": { "type": "Point", "coordinates": [ -0.3629679, 51.121991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377715" }, "bbox": [ -0.3612328, 51.1222759, -0.3612328, 51.1222759 ], "geometry": { "type": "Point", "coordinates": [ -0.3612328, 51.1222759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14379723" }, "bbox": [ -0.3584763, 51.1227828, -0.3584763, 51.1227828 ], "geometry": { "type": "Point", "coordinates": [ -0.3584763, 51.1227828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378633" }, "bbox": [ -0.3601096, 51.1238833, -0.3601096, 51.1238833 ], "geometry": { "type": "Point", "coordinates": [ -0.3601096, 51.1238833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378303" }, "bbox": [ -0.3607138, 51.1212557, -0.3607138, 51.1212557 ], "geometry": { "type": "Point", "coordinates": [ -0.3607138, 51.1212557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378532" }, "bbox": [ -0.360679, 51.1235392, -0.360679, 51.1235392 ], "geometry": { "type": "Point", "coordinates": [ -0.360679, 51.1235392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378612" }, "bbox": [ -0.3596135, 51.1222433, -0.3596135, 51.1222433 ], "geometry": { "type": "Point", "coordinates": [ -0.3596135, 51.1222433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92479736" }, "bbox": [ -0.6700843, 51.2180026, -0.6700843, 51.2180026 ], "geometry": { "type": "Point", "coordinates": [ -0.6700843, 51.2180026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93470433" }, "bbox": [ -0.6690885, 51.2177207, -0.6690885, 51.2177207 ], "geometry": { "type": "Point", "coordinates": [ -0.6690885, 51.2177207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360070" }, "bbox": [ -0.6866954, 51.1222129, -0.6866954, 51.1222129 ], "geometry": { "type": "Point", "coordinates": [ -0.6866954, 51.1222129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360269" }, "bbox": [ -0.6863702, 51.1221077, -0.6863702, 51.1221077 ], "geometry": { "type": "Point", "coordinates": [ -0.6863702, 51.1221077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360372" }, "bbox": [ -0.6864926, 51.1224495, -0.6864926, 51.1224495 ], "geometry": { "type": "Point", "coordinates": [ -0.6864926, 51.1224495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360471" }, "bbox": [ -0.6861672, 51.1223448, -0.6861672, 51.1223448 ], "geometry": { "type": "Point", "coordinates": [ -0.6861672, 51.1223448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360573" }, "bbox": [ -0.686003, 51.1225448, -0.686003, 51.1225448 ], "geometry": { "type": "Point", "coordinates": [ -0.686003, 51.1225448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360279" }, "bbox": [ -0.6863903, 51.123071, -0.6863903, 51.123071 ], "geometry": { "type": "Point", "coordinates": [ -0.6863903, 51.123071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360477" }, "bbox": [ -0.6860977, 51.122929, -0.6860977, 51.122929 ], "geometry": { "type": "Point", "coordinates": [ -0.6860977, 51.122929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360191" }, "bbox": [ -0.6867362, 51.1241517, -0.6867362, 51.1241517 ], "geometry": { "type": "Point", "coordinates": [ -0.6867362, 51.1241517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360882" }, "bbox": [ -0.6854669, 51.1232664, -0.6854669, 51.1232664 ], "geometry": { "type": "Point", "coordinates": [ -0.6854669, 51.1232664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360780" }, "bbox": [ -0.6856597, 51.1230749, -0.6856597, 51.1230749 ], "geometry": { "type": "Point", "coordinates": [ -0.6856597, 51.1230749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360684" }, "bbox": [ -0.6857703, 51.1234777, -0.6857703, 51.1234777 ], "geometry": { "type": "Point", "coordinates": [ -0.6857703, 51.1234777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360582" }, "bbox": [ -0.6859819, 51.1232991, -0.6859819, 51.1232991 ], "geometry": { "type": "Point", "coordinates": [ -0.6859819, 51.1232991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360486" }, "bbox": [ -0.6860127, 51.1236462, -0.6860127, 51.1236462 ], "geometry": { "type": "Point", "coordinates": [ -0.6860127, 51.1236462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360384" }, "bbox": [ -0.6862289, 51.1234677, -0.6862289, 51.1234677 ], "geometry": { "type": "Point", "coordinates": [ -0.6862289, 51.1234677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360387" }, "bbox": [ -0.6862568, 51.1238177, -0.6862568, 51.1238177 ], "geometry": { "type": "Point", "coordinates": [ -0.6862568, 51.1238177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360186" }, "bbox": [ -0.6864726, 51.1236375, -0.6864726, 51.1236375 ], "geometry": { "type": "Point", "coordinates": [ -0.6864726, 51.1236375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360062" }, "bbox": [ -0.6868729, 51.1215289, -0.6868729, 51.1215289 ], "geometry": { "type": "Point", "coordinates": [ -0.6868729, 51.1215289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360064" }, "bbox": [ -0.6878587, 51.1217377, -0.6878587, 51.1217377 ], "geometry": { "type": "Point", "coordinates": [ -0.6878587, 51.1217377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360058" }, "bbox": [ -0.6867396, 51.1211943, -0.6867396, 51.1211943 ], "geometry": { "type": "Point", "coordinates": [ -0.6867396, 51.1211943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360261" }, "bbox": [ -0.6865716, 51.1214222, -0.6865716, 51.1214222 ], "geometry": { "type": "Point", "coordinates": [ -0.6865716, 51.1214222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360688" }, "bbox": [ -0.6859381, 51.1238242, -0.6859381, 51.1238242 ], "geometry": { "type": "Point", "coordinates": [ -0.6859381, 51.1238242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361444" }, "bbox": [ -0.6856278, 51.1194724, -0.6856278, 51.1194724 ], "geometry": { "type": "Point", "coordinates": [ -0.6856278, 51.1194724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360547" }, "bbox": [ -0.6860527, 51.1201716, -0.6860527, 51.1201716 ], "geometry": { "type": "Point", "coordinates": [ -0.6860527, 51.1201716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361483" }, "bbox": [ -0.6846138, 51.1234089, -0.6846138, 51.1234089 ], "geometry": { "type": "Point", "coordinates": [ -0.6846138, 51.1234089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361574" }, "bbox": [ -0.6844928, 51.1226052, -0.6844928, 51.1226052 ], "geometry": { "type": "Point", "coordinates": [ -0.6844928, 51.1226052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361073" }, "bbox": [ -0.6848833, 51.1220935, -0.6848833, 51.1220935 ], "geometry": { "type": "Point", "coordinates": [ -0.6848833, 51.1220935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361062" }, "bbox": [ -0.6852665, 51.1215323, -0.6852665, 51.1215323 ], "geometry": { "type": "Point", "coordinates": [ -0.6852665, 51.1215323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360777" }, "bbox": [ -0.6857853, 51.1228082, -0.6857853, 51.1228082 ], "geometry": { "type": "Point", "coordinates": [ -0.6857853, 51.1228082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360176" }, "bbox": [ -0.6866461, 51.1227541, -0.6866461, 51.1227541 ], "geometry": { "type": "Point", "coordinates": [ -0.6866461, 51.1227541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360375" }, "bbox": [ -0.6863285, 51.1226496, -0.6863285, 51.1226496 ], "geometry": { "type": "Point", "coordinates": [ -0.6863285, 51.1226496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360187" }, "bbox": [ -0.6867138, 51.1238047, -0.6867138, 51.1238047 ], "geometry": { "type": "Point", "coordinates": [ -0.6867138, 51.1238047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360190" }, "bbox": [ -0.6864981, 51.1239856, -0.6864981, 51.1239856 ], "geometry": { "type": "Point", "coordinates": [ -0.6864981, 51.1239856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92375364" }, "bbox": [ -0.6793072, 51.1305943, -0.6793072, 51.1305943 ], "geometry": { "type": "Point", "coordinates": [ -0.6793072, 51.1305943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92374169" }, "bbox": [ -0.6802429, 51.1307935, -0.6802429, 51.1307935 ], "geometry": { "type": "Point", "coordinates": [ -0.6802429, 51.1307935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92372162" }, "bbox": [ -0.6837669, 51.1305263, -0.6837669, 51.1305263 ], "geometry": { "type": "Point", "coordinates": [ -0.6837669, 51.1305263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369258" }, "bbox": [ -0.6879643, 51.1210968, -0.6879643, 51.1210968 ], "geometry": { "type": "Point", "coordinates": [ -0.6879643, 51.1210968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368940" }, "bbox": [ -0.6885129, 51.1194552, -0.6885129, 51.1194552 ], "geometry": { "type": "Point", "coordinates": [ -0.6885129, 51.1194552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369960" }, "bbox": [ -0.6870462, 51.1213056, -0.6870462, 51.1213056 ], "geometry": { "type": "Point", "coordinates": [ -0.6870462, 51.1213056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369661" }, "bbox": [ -0.6873554, 51.1214102, -0.6873554, 51.1214102 ], "geometry": { "type": "Point", "coordinates": [ -0.6873554, 51.1214102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369864" }, "bbox": [ -0.687183, 51.1216318, -0.687183, 51.1216318 ], "geometry": { "type": "Point", "coordinates": [ -0.687183, 51.1216318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369462" }, "bbox": [ -0.6876589, 51.1215127, -0.6876589, 51.1215127 ], "geometry": { "type": "Point", "coordinates": [ -0.6876589, 51.1215127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369565" }, "bbox": [ -0.6874857, 51.1217329, -0.6874857, 51.1217329 ], "geometry": { "type": "Point", "coordinates": [ -0.6874857, 51.1217329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369263" }, "bbox": [ -0.6879645, 51.1216148, -0.6879645, 51.1216148 ], "geometry": { "type": "Point", "coordinates": [ -0.6879645, 51.1216148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369366" }, "bbox": [ -0.6877888, 51.1218331, -0.6877888, 51.1218331 ], "geometry": { "type": "Point", "coordinates": [ -0.6877888, 51.1218331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369064" }, "bbox": [ -0.6882745, 51.1217172, -0.6882745, 51.1217172 ], "geometry": { "type": "Point", "coordinates": [ -0.6882745, 51.1217172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369167" }, "bbox": [ -0.6880959, 51.1219361, -0.6880959, 51.1219361 ], "geometry": { "type": "Point", "coordinates": [ -0.6880959, 51.1219361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368968" }, "bbox": [ -0.6884335, 51.122021, -0.6884335, 51.122021 ], "geometry": { "type": "Point", "coordinates": [ -0.6884335, 51.122021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368865" }, "bbox": [ -0.6885899, 51.1218199, -0.6885899, 51.1218199 ], "geometry": { "type": "Point", "coordinates": [ -0.6885899, 51.1218199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91366463" }, "bbox": [ -0.6919491, 51.1216522, -0.6919491, 51.1216522 ], "geometry": { "type": "Point", "coordinates": [ -0.6919491, 51.1216522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91367453" }, "bbox": [ -0.6902541, 51.1211829, -0.6902541, 51.1211829 ], "geometry": { "type": "Point", "coordinates": [ -0.6902541, 51.1211829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369871" }, "bbox": [ -0.6870096, 51.1223162, -0.6870096, 51.1223162 ], "geometry": { "type": "Point", "coordinates": [ -0.6870096, 51.1223162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369768" }, "bbox": [ -0.6871789, 51.1221159, -0.6871789, 51.1221159 ], "geometry": { "type": "Point", "coordinates": [ -0.6871789, 51.1221159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369967" }, "bbox": [ -0.6868645, 51.1220125, -0.6868645, 51.1220125 ], "geometry": { "type": "Point", "coordinates": [ -0.6868645, 51.1220125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91362493" }, "bbox": [ -0.6976764, 51.1244777, -0.6976764, 51.1244777 ], "geometry": { "type": "Point", "coordinates": [ -0.6976764, 51.1244777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369750" }, "bbox": [ -0.688253, 51.1205333, -0.688253, 51.1205333 ], "geometry": { "type": "Point", "coordinates": [ -0.688253, 51.1205333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368254" }, "bbox": [ -0.6893554, 51.120942, -0.6893554, 51.120942 ], "geometry": { "type": "Point", "coordinates": [ -0.6893554, 51.120942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368745" }, "bbox": [ -0.6885087, 51.120076, -0.6885087, 51.120076 ], "geometry": { "type": "Point", "coordinates": [ -0.6885087, 51.120076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369889" }, "bbox": [ -0.6869489, 51.123969, -0.6869489, 51.123969 ], "geometry": { "type": "Point", "coordinates": [ -0.6869489, 51.123969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369974" }, "bbox": [ -0.6868128, 51.1225539, -0.6868128, 51.1225539 ], "geometry": { "type": "Point", "coordinates": [ -0.6868128, 51.1225539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27523615" }, "bbox": [ -0.1764698, 51.2554366, -0.1764698, 51.2554366 ], "geometry": { "type": "Point", "coordinates": [ -0.1764698, 51.2554366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10365559" }, "bbox": [ -0.4220929, 51.1180352, -0.4220929, 51.1180352 ], "geometry": { "type": "Point", "coordinates": [ -0.4220929, 51.1180352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19386858" }, "bbox": [ -0.2907707, 51.1340086, -0.2907707, 51.1340086 ], "geometry": { "type": "Point", "coordinates": [ -0.2907707, 51.1340086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395953" }, "bbox": [ -0.2915762, 51.1425224, -0.2915762, 51.1425224 ], "geometry": { "type": "Point", "coordinates": [ -0.2915762, 51.1425224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544990" }, "bbox": [ -0.603376, 51.2849968, -0.603376, 51.2849968 ], "geometry": { "type": "Point", "coordinates": [ -0.603376, 51.2849968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544285" }, "bbox": [ -0.6046651, 51.2844506, -0.6046651, 51.2844506 ], "geometry": { "type": "Point", "coordinates": [ -0.6046651, 51.2844506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544681" }, "bbox": [ -0.6040826, 51.2842694, -0.6040826, 51.2842694 ], "geometry": { "type": "Point", "coordinates": [ -0.6040826, 51.2842694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388031" }, "bbox": [ -0.3031374, 51.1319337, -0.3031374, 51.1319337 ], "geometry": { "type": "Point", "coordinates": [ -0.3031374, 51.1319337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25419971" }, "bbox": [ -0.2004208, 51.1608945, -0.2004208, 51.1608945 ], "geometry": { "type": "Point", "coordinates": [ -0.2004208, 51.1608945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25418758" }, "bbox": [ -0.2013058, 51.1597, -0.2013058, 51.1597 ], "geometry": { "type": "Point", "coordinates": [ -0.2013058, 51.1597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25420236" }, "bbox": [ -0.2131615, 51.1668041, -0.2131615, 51.1668041 ], "geometry": { "type": "Point", "coordinates": [ -0.2131615, 51.1668041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25421031" }, "bbox": [ -0.2122308, 51.166284, -0.2122308, 51.166284 ], "geometry": { "type": "Point", "coordinates": [ -0.2122308, 51.166284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429436" }, "bbox": [ -0.2140063, 51.166511, -0.2140063, 51.166511 ], "geometry": { "type": "Point", "coordinates": [ -0.2140063, 51.166511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429645" }, "bbox": [ -0.2141625, 51.1677181, -0.2141625, 51.1677181 ], "geometry": { "type": "Point", "coordinates": [ -0.2141625, 51.1677181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03658736" }, "bbox": [ -0.5090393, 51.3777459, -0.5090393, 51.3777459 ], "geometry": { "type": "Point", "coordinates": [ -0.5090393, 51.3777459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03659635" }, "bbox": [ -0.5077157, 51.3776303, -0.5077157, 51.3776303 ], "geometry": { "type": "Point", "coordinates": [ -0.5077157, 51.3776303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35476866" }, "bbox": [ -0.0588344, 51.2119629, -0.0588344, 51.2119629 ], "geometry": { "type": "Point", "coordinates": [ -0.0588344, 51.2119629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475465" }, "bbox": [ -0.0602372, 51.2119147, -0.0602372, 51.2119147 ], "geometry": { "type": "Point", "coordinates": [ -0.0602372, 51.2119147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22560119" }, "bbox": [ -0.2516294, 51.2917114, -0.2516294, 51.2917114 ], "geometry": { "type": "Point", "coordinates": [ -0.2516294, 51.2917114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21569912" }, "bbox": [ -0.2516192, 51.291017, -0.2516192, 51.291017 ], "geometry": { "type": "Point", "coordinates": [ -0.2516192, 51.291017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41461301" }, "bbox": [ 0.0184665, 51.1958498, 0.0184665, 51.1958498 ], "geometry": { "type": "Point", "coordinates": [ 0.0184665, 51.1958498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36591294" }, "bbox": [ -0.0476087, 51.3223817, -0.0476087, 51.3223817 ], "geometry": { "type": "Point", "coordinates": [ -0.0476087, 51.3223817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36602111" }, "bbox": [ -0.046496, 51.3239344, -0.046496, 51.3239344 ], "geometry": { "type": "Point", "coordinates": [ -0.046496, 51.3239344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36601906" }, "bbox": [ -0.0471269, 51.3232325, -0.0471269, 51.3232325 ], "geometry": { "type": "Point", "coordinates": [ -0.0471269, 51.3232325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20460286" }, "bbox": [ -0.2831129, 51.2083896, -0.2831129, 51.2083896 ], "geometry": { "type": "Point", "coordinates": [ -0.2831129, 51.2083896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468176" }, "bbox": [ -0.2860955, 51.2074711, -0.2860955, 51.2074711 ], "geometry": { "type": "Point", "coordinates": [ -0.2860955, 51.2074711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468193" }, "bbox": [ -0.2861258, 51.2090101, -0.2861258, 51.2090101 ], "geometry": { "type": "Point", "coordinates": [ -0.2861258, 51.2090101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468190" }, "bbox": [ -0.2860978, 51.2088468, -0.2860978, 51.2088468 ], "geometry": { "type": "Point", "coordinates": [ -0.2860978, 51.2088468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468185" }, "bbox": [ -0.2860433, 51.208376, -0.2860433, 51.208376 ], "geometry": { "type": "Point", "coordinates": [ -0.2860433, 51.208376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468584" }, "bbox": [ -0.2855698, 51.2082931, -0.2855698, 51.2082931 ], "geometry": { "type": "Point", "coordinates": [ -0.2855698, 51.2082931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468487" }, "bbox": [ -0.2856055, 51.2085326, -0.2856055, 51.2085326 ], "geometry": { "type": "Point", "coordinates": [ -0.2856055, 51.2085326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468582" }, "bbox": [ -0.2855311, 51.2080793, -0.2855311, 51.2080793 ], "geometry": { "type": "Point", "coordinates": [ -0.2855311, 51.2080793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468975" }, "bbox": [ -0.2850276, 51.2074813, -0.2850276, 51.2074813 ], "geometry": { "type": "Point", "coordinates": [ -0.2850276, 51.2074813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468580" }, "bbox": [ -0.2855096, 51.2078759, -0.2855096, 51.2078759 ], "geometry": { "type": "Point", "coordinates": [ -0.2855096, 51.2078759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468675" }, "bbox": [ -0.2854671, 51.2074057, -0.2854671, 51.2074057 ], "geometry": { "type": "Point", "coordinates": [ -0.2854671, 51.2074057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468574" }, "bbox": [ -0.2859301, 51.2070356, -0.2859301, 51.2070356 ], "geometry": { "type": "Point", "coordinates": [ -0.2859301, 51.2070356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19469282" }, "bbox": [ -0.28465, 51.2081084, -0.28465, 51.2081084 ], "geometry": { "type": "Point", "coordinates": [ -0.28465, 51.2081084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19469377" }, "bbox": [ -0.2844278, 51.2076611, -0.2844278, 51.2076611 ], "geometry": { "type": "Point", "coordinates": [ -0.2844278, 51.2076611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468071" }, "bbox": [ -0.286364, 51.2075246, -0.286364, 51.2075246 ], "geometry": { "type": "Point", "coordinates": [ -0.286364, 51.2075246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07709239" }, "bbox": [ -0.4493596, 51.4222107, -0.4493596, 51.4222107 ], "geometry": { "type": "Point", "coordinates": [ -0.4493596, 51.4222107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00399426" }, "bbox": [ -0.5582592, 51.1435172, -0.5582592, 51.1435172 ], "geometry": { "type": "Point", "coordinates": [ -0.5582592, 51.1435172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00395822" }, "bbox": [ -0.5636819, 51.1435706, -0.5636819, 51.1435706 ], "geometry": { "type": "Point", "coordinates": [ -0.5636819, 51.1435706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14369493" }, "bbox": [ -0.3593285, 51.1199525, -0.3593285, 51.1199525 ], "geometry": { "type": "Point", "coordinates": [ -0.3593285, 51.1199525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15370408" }, "bbox": [ -0.3573301, 51.1214218, -0.3573301, 51.1214218 ], "geometry": { "type": "Point", "coordinates": [ -0.3573301, 51.1214218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95528834" }, "bbox": [ -0.6270697, 51.2623327, -0.6270697, 51.2623327 ], "geometry": { "type": "Point", "coordinates": [ -0.6270697, 51.2623327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529028" }, "bbox": [ -0.6270422, 51.2618137, -0.6270422, 51.2618137 ], "geometry": { "type": "Point", "coordinates": [ -0.6270422, 51.2618137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95528720" }, "bbox": [ -0.6273251, 51.2611345, -0.6273251, 51.2611345 ], "geometry": { "type": "Point", "coordinates": [ -0.6273251, 51.2611345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529018" }, "bbox": [ -0.6268534, 51.2606973, -0.6268534, 51.2606973 ], "geometry": { "type": "Point", "coordinates": [ -0.6268534, 51.2606973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529224" }, "bbox": [ -0.6265493, 51.2613197, -0.6265493, 51.2613197 ], "geometry": { "type": "Point", "coordinates": [ -0.6265493, 51.2613197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529317" }, "bbox": [ -0.6263729, 51.2607324, -0.6263729, 51.2607324 ], "geometry": { "type": "Point", "coordinates": [ -0.6263729, 51.2607324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00621001" }, "bbox": [ -0.5640678, 51.3484662, -0.5640678, 51.3484662 ], "geometry": { "type": "Point", "coordinates": [ -0.5640678, 51.3484662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00621108" }, "bbox": [ -0.563749, 51.3489514, -0.563749, 51.3489514 ], "geometry": { "type": "Point", "coordinates": [ -0.563749, 51.3489514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610890" }, "bbox": [ -0.5644126, 51.3475343, -0.5644126, 51.3475343 ], "geometry": { "type": "Point", "coordinates": [ -0.5644126, 51.3475343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610564" }, "bbox": [ -0.564858, 51.3450826, -0.564858, 51.3450826 ], "geometry": { "type": "Point", "coordinates": [ -0.564858, 51.3450826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610269" }, "bbox": [ -0.5651682, 51.3456163, -0.5651682, 51.3456163 ], "geometry": { "type": "Point", "coordinates": [ -0.5651682, 51.3456163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38583785" }, "bbox": [ -0.0160036, 51.3121312, -0.0160036, 51.3121312 ], "geometry": { "type": "Point", "coordinates": [ -0.0160036, 51.3121312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38596206" }, "bbox": [ -0.0124675, 51.3135353, -0.0124675, 51.3135353 ], "geometry": { "type": "Point", "coordinates": [ -0.0124675, 51.3135353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40440295" }, "bbox": [ 0.0037583, 51.1862796, 0.0037583, 51.1862796 ], "geometry": { "type": "Point", "coordinates": [ 0.0037583, 51.1862796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39449388" }, "bbox": [ 0.0006697, 51.1860437, 0.0006697, 51.1860437 ], "geometry": { "type": "Point", "coordinates": [ 0.0006697, 51.1860437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41509106" }, "bbox": [ 0.0310518, 51.2321488, 0.0310518, 51.2321488 ], "geometry": { "type": "Point", "coordinates": [ 0.0310518, 51.2321488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41487518" }, "bbox": [ 0.0280495, 51.2152043, 0.0280495, 51.2152043 ], "geometry": { "type": "Point", "coordinates": [ 0.0280495, 51.2152043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24456995" }, "bbox": [ -0.2167958, 51.1990721, -0.2167958, 51.1990721 ], "geometry": { "type": "Point", "coordinates": [ -0.2167958, 51.1990721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24460328" }, "bbox": [ -0.2260287, 51.2022463, -0.2260287, 51.2022463 ], "geometry": { "type": "Point", "coordinates": [ -0.2260287, 51.2022463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00661337" }, "bbox": [ -0.5624863, 51.3874869, -0.5624863, 51.3874869 ], "geometry": { "type": "Point", "coordinates": [ -0.5624863, 51.3874869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00664217" }, "bbox": [ -0.5575897, 51.3852799, -0.5575897, 51.3852799 ], "geometry": { "type": "Point", "coordinates": [ -0.5575897, 51.3852799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35420828" }, "bbox": [ -0.0695336, 51.1638458, -0.0695336, 51.1638458 ], "geometry": { "type": "Point", "coordinates": [ -0.0695336, 51.1638458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42421104" }, "bbox": [ 0.0305116, 51.1599794, 0.0305116, 51.1599794 ], "geometry": { "type": "Point", "coordinates": [ 0.0305116, 51.1599794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425429" }, "bbox": [ 0.037226, 51.162082, 0.037226, 51.162082 ], "geometry": { "type": "Point", "coordinates": [ 0.037226, 51.162082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42416430" }, "bbox": [ 0.0382511, 51.1533331, 0.0382511, 51.1533331 ], "geometry": { "type": "Point", "coordinates": [ 0.0382511, 51.1533331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41498684" }, "bbox": [ 0.0304387, 51.2301074, 0.0304387, 51.2301074 ], "geometry": { "type": "Point", "coordinates": [ 0.0304387, 51.2301074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41496078" }, "bbox": [ 0.0265756, 51.2297797, 0.0265756, 51.2297797 ], "geometry": { "type": "Point", "coordinates": [ 0.0265756, 51.2297797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41509819" }, "bbox": [ 0.0321384, 51.2332525, 0.0321384, 51.2332525 ], "geometry": { "type": "Point", "coordinates": [ 0.0321384, 51.2332525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35410999" }, "bbox": [ -0.0694775, 51.1611007, -0.0694775, 51.1611007 ], "geometry": { "type": "Point", "coordinates": [ -0.0694775, 51.1611007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35420139" }, "bbox": [ -0.0703491, 51.1648074, -0.0703491, 51.1648074 ], "geometry": { "type": "Point", "coordinates": [ -0.0703491, 51.1648074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460262" }, "bbox": [ -0.56946, 51.2100353, -0.56946, 51.2100353 ], "geometry": { "type": "Point", "coordinates": [ -0.56946, 51.2100353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460678" }, "bbox": [ -0.5688149, 51.2115065, -0.5688149, 51.2115065 ], "geometry": { "type": "Point", "coordinates": [ -0.5688149, 51.2115065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00461399" }, "bbox": [ -0.5677902, 51.2134123, -0.5677902, 51.2134123 ], "geometry": { "type": "Point", "coordinates": [ -0.5677902, 51.2134123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460247" }, "bbox": [ -0.569412, 51.2087317, -0.569412, 51.2087317 ], "geometry": { "type": "Point", "coordinates": [ -0.569412, 51.2087317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41505832" }, "bbox": [ 0.0265527, 51.2344032, 0.0265527, 51.2344032 ], "geometry": { "type": "Point", "coordinates": [ 0.0265527, 51.2344032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99343538" }, "bbox": [ -0.5832248, 51.1001471, -0.5832248, 51.1001471 ], "geometry": { "type": "Point", "coordinates": [ -0.5832248, 51.1001471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475777" }, "bbox": [ -0.0603815, 51.2130563, -0.0603815, 51.2130563 ], "geometry": { "type": "Point", "coordinates": [ -0.0603815, 51.2130563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411599" }, "bbox": [ 0.0313976, 51.1596001, 0.0313976, 51.1596001 ], "geometry": { "type": "Point", "coordinates": [ 0.0313976, 51.1596001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411573" }, "bbox": [ 0.0315169, 51.1572294, 0.0315169, 51.1572294 ], "geometry": { "type": "Point", "coordinates": [ 0.0315169, 51.1572294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42424801" }, "bbox": [ 0.0355776, 51.1593178, 0.0355776, 51.1593178 ], "geometry": { "type": "Point", "coordinates": [ 0.0355776, 51.1593178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36436688" }, "bbox": [ -0.0463373, 51.1778243, -0.0463373, 51.1778243 ], "geometry": { "type": "Point", "coordinates": [ -0.0463373, 51.1778243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511312" }, "bbox": [ -0.3805422, 51.2482193, -0.3805422, 51.2482193 ], "geometry": { "type": "Point", "coordinates": [ -0.3805422, 51.2482193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13518373" }, "bbox": [ -0.3699745, 51.2534911, -0.3699745, 51.2534911 ], "geometry": { "type": "Point", "coordinates": [ -0.3699745, 51.2534911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13510739" }, "bbox": [ -0.3814792, 51.2504591, -0.3814792, 51.2504591 ], "geometry": { "type": "Point", "coordinates": [ -0.3814792, 51.2504591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511250" }, "bbox": [ -0.3804441, 51.2514192, -0.3804441, 51.2514192 ], "geometry": { "type": "Point", "coordinates": [ -0.3804441, 51.2514192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13513836" }, "bbox": [ -0.3768772, 51.2503483, -0.3768772, 51.2503483 ], "geometry": { "type": "Point", "coordinates": [ -0.3768772, 51.2503483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13513147" }, "bbox": [ -0.3776116, 51.2512579, -0.3776116, 51.2512579 ], "geometry": { "type": "Point", "coordinates": [ -0.3776116, 51.2512579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13512246" }, "bbox": [ -0.3788298, 51.2512476, -0.3788298, 51.2512476 ], "geometry": { "type": "Point", "coordinates": [ -0.3788298, 51.2512476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13510958" }, "bbox": [ -0.3811577, 51.2521654, -0.3811577, 51.2521654 ], "geometry": { "type": "Point", "coordinates": [ -0.3811577, 51.2521654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14513785" }, "bbox": [ -0.3627047, 51.2546442, -0.3627047, 51.2546442 ], "geometry": { "type": "Point", "coordinates": [ -0.3627047, 51.2546442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14511542" }, "bbox": [ -0.3650344, 51.2508099, -0.3650344, 51.2508099 ], "geometry": { "type": "Point", "coordinates": [ -0.3650344, 51.2508099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12519827" }, "bbox": [ -0.3826387, 51.2494301, -0.3826387, 51.2494301 ], "geometry": { "type": "Point", "coordinates": [ -0.3826387, 51.2494301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12519904" }, "bbox": [ -0.3827918, 51.2482478, -0.3827918, 51.2482478 ], "geometry": { "type": "Point", "coordinates": [ -0.3827918, 51.2482478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12518633" }, "bbox": [ -0.3832905, 51.249008, -0.3832905, 51.249008 ], "geometry": { "type": "Point", "coordinates": [ -0.3832905, 51.249008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01702148" }, "bbox": [ -0.5457383, 51.4243392, -0.5457383, 51.4243392 ], "geometry": { "type": "Point", "coordinates": [ -0.5457383, 51.4243392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01701006" }, "bbox": [ -0.5472323, 51.4205926, -0.5472323, 51.4205926 ], "geometry": { "type": "Point", "coordinates": [ -0.5472323, 51.4205926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01700433" }, "bbox": [ -0.5481218, 51.4230565, -0.5481218, 51.4230565 ], "geometry": { "type": "Point", "coordinates": [ -0.5481218, 51.4230565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21392701" }, "bbox": [ -0.2681052, 51.1375164, -0.2681052, 51.1375164 ], "geometry": { "type": "Point", "coordinates": [ -0.2681052, 51.1375164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21384589" }, "bbox": [ -0.2652686, 51.1363914, -0.2652686, 51.1363914 ], "geometry": { "type": "Point", "coordinates": [ -0.2652686, 51.1363914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21384196" }, "bbox": [ -0.2666258, 51.1372599, -0.2666258, 51.1372599 ], "geometry": { "type": "Point", "coordinates": [ -0.2666258, 51.1372599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08444613" }, "bbox": [ -0.4495816, 51.1858924, -0.4495816, 51.1858924 ], "geometry": { "type": "Point", "coordinates": [ -0.4495816, 51.1858924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08442846" }, "bbox": [ -0.4519302, 51.1893246, -0.4519302, 51.1893246 ], "geometry": { "type": "Point", "coordinates": [ -0.4519302, 51.1893246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08443154" }, "bbox": [ -0.4510222, 51.1899429, -0.4510222, 51.1899429 ], "geometry": { "type": "Point", "coordinates": [ -0.4510222, 51.1899429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08442638" }, "bbox": [ -0.4522588, 51.1883491, -0.4522588, 51.1883491 ], "geometry": { "type": "Point", "coordinates": [ -0.4522588, 51.1883491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09431758" }, "bbox": [ -0.4393968, 51.1809623, -0.4393968, 51.1809623 ], "geometry": { "type": "Point", "coordinates": [ -0.4393968, 51.1809623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413223" }, "bbox": [ -0.2949786, 51.1579625, -0.2949786, 51.1579625 ], "geometry": { "type": "Point", "coordinates": [ -0.2949786, 51.1579625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413215" }, "bbox": [ -0.2952678, 51.1573122, -0.2952678, 51.1573122 ], "geometry": { "type": "Point", "coordinates": [ -0.2952678, 51.1573122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413611" }, "bbox": [ -0.2944493, 51.1567367, -0.2944493, 51.1567367 ], "geometry": { "type": "Point", "coordinates": [ -0.2944493, 51.1567367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19411454" }, "bbox": [ -0.2977004, 51.1608193, -0.2977004, 51.1608193 ], "geometry": { "type": "Point", "coordinates": [ -0.2977004, 51.1608193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413436" }, "bbox": [ -0.2939736, 51.1581755, -0.2939736, 51.1581755 ], "geometry": { "type": "Point", "coordinates": [ -0.2939736, 51.1581755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03377697" }, "bbox": [ -0.5182339, 51.1316397, -0.5182339, 51.1316397 ], "geometry": { "type": "Point", "coordinates": [ -0.5182339, 51.1316397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01465936" }, "bbox": [ -0.5471743, 51.2073416, -0.5471743, 51.2073416 ], "geometry": { "type": "Point", "coordinates": [ -0.5471743, 51.2073416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42459428" }, "bbox": [ 0.0440492, 51.1888782, 0.0440492, 51.1888782 ], "geometry": { "type": "Point", "coordinates": [ 0.0440492, 51.1888782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21519626" }, "bbox": [ -0.2539056, 51.2476667, -0.2539056, 51.2476667 ], "geometry": { "type": "Point", "coordinates": [ -0.2539056, 51.2476667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21516423" }, "bbox": [ -0.2585054, 51.2473184, -0.2585054, 51.2473184 ], "geometry": { "type": "Point", "coordinates": [ -0.2585054, 51.2473184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22526635" }, "bbox": [ -0.2433914, 51.2571321, -0.2433914, 51.2571321 ], "geometry": { "type": "Point", "coordinates": [ -0.2433914, 51.2571321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22529441" }, "bbox": [ -0.2409595, 51.2578191, -0.2409595, 51.2578191 ], "geometry": { "type": "Point", "coordinates": [ -0.2409595, 51.2578191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22519661" }, "bbox": [ -0.2407125, 51.2508409, -0.2407125, 51.2508409 ], "geometry": { "type": "Point", "coordinates": [ -0.2407125, 51.2508409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22515140" }, "bbox": [ -0.2461178, 51.2486381, -0.2461178, 51.2486381 ], "geometry": { "type": "Point", "coordinates": [ -0.2461178, 51.2486381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22517331" }, "bbox": [ -0.2426291, 51.2476991, -0.2426291, 51.2476991 ], "geometry": { "type": "Point", "coordinates": [ -0.2426291, 51.2476991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22515576" }, "bbox": [ -0.2452024, 51.2521589, -0.2452024, 51.2521589 ], "geometry": { "type": "Point", "coordinates": [ -0.2452024, 51.2521589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22511743" }, "bbox": [ -0.2506952, 51.2488115, -0.2506952, 51.2488115 ], "geometry": { "type": "Point", "coordinates": [ -0.2506952, 51.2488115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21546778" }, "bbox": [ -0.2568432, 51.2791509, -0.2568432, 51.2791509 ], "geometry": { "type": "Point", "coordinates": [ -0.2568432, 51.2791509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21547684" }, "bbox": [ -0.255509, 51.2796981, -0.255509, 51.2796981 ], "geometry": { "type": "Point", "coordinates": [ -0.255509, 51.2796981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08399319" }, "bbox": [ -0.4448044, 51.1418241, -0.4448044, 51.1418241 ], "geometry": { "type": "Point", "coordinates": [ -0.4448044, 51.1418241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41513652" }, "bbox": [ 0.0238365, 51.2452778, 0.0238365, 51.2452778 ], "geometry": { "type": "Point", "coordinates": [ 0.0238365, 51.2452778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42410798" }, "bbox": [ 0.0303246, 51.159468, 0.0303246, 51.159468 ], "geometry": { "type": "Point", "coordinates": [ 0.0303246, 51.159468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42410095" }, "bbox": [ 0.0300223, 51.1589258, 0.0300223, 51.1589258 ], "geometry": { "type": "Point", "coordinates": [ 0.0300223, 51.1589258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05656477" }, "bbox": [ -0.4830868, 51.3810767, -0.4830868, 51.3810767 ], "geometry": { "type": "Point", "coordinates": [ -0.4830868, 51.3810767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27564694" }, "bbox": [ -0.1732951, 51.2971882, -0.1732951, 51.2971882 ], "geometry": { "type": "Point", "coordinates": [ -0.1732951, 51.2971882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24439437" }, "bbox": [ -0.2139199, 51.1760065, -0.2139199, 51.1760065 ], "geometry": { "type": "Point", "coordinates": [ -0.2139199, 51.1760065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94447190" }, "bbox": [ -0.6459304, 51.1954554, -0.6459304, 51.1954554 ], "geometry": { "type": "Point", "coordinates": [ -0.6459304, 51.1954554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22521267" }, "bbox": [ -0.2512286, 51.2600943, -0.2512286, 51.2600943 ], "geometry": { "type": "Point", "coordinates": [ -0.2512286, 51.2600943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21529755" }, "bbox": [ -0.2535926, 51.2589971, -0.2535926, 51.2589971 ], "geometry": { "type": "Point", "coordinates": [ -0.2535926, 51.2589971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97553552" }, "bbox": [ -0.6051158, 51.2906905, -0.6051158, 51.2906905 ], "geometry": { "type": "Point", "coordinates": [ -0.6051158, 51.2906905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97552868" }, "bbox": [ -0.6061191, 51.2920246, -0.6061191, 51.2920246 ], "geometry": { "type": "Point", "coordinates": [ -0.6061191, 51.2920246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97551243" }, "bbox": [ -0.6087127, 51.289911, -0.6087127, 51.289911 ], "geometry": { "type": "Point", "coordinates": [ -0.6087127, 51.289911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97552227" }, "bbox": [ -0.6072815, 51.2882105, -0.6072815, 51.2882105 ], "geometry": { "type": "Point", "coordinates": [ -0.6072815, 51.2882105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97551837" }, "bbox": [ -0.6075862, 51.2893183, -0.6075862, 51.2893183 ], "geometry": { "type": "Point", "coordinates": [ -0.6075862, 51.2893183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97551754" }, "bbox": [ -0.6077874, 51.2907663, -0.6077874, 51.2907663 ], "geometry": { "type": "Point", "coordinates": [ -0.6077874, 51.2907663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550649" }, "bbox": [ -0.6087614, 51.2907572, -0.6087614, 51.2907572 ], "geometry": { "type": "Point", "coordinates": [ -0.6087614, 51.2907572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550969" }, "bbox": [ -0.6093126, 51.2919683, -0.6093126, 51.2919683 ], "geometry": { "type": "Point", "coordinates": [ -0.6093126, 51.2919683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97551568" }, "bbox": [ -0.607961, 51.2920885, -0.607961, 51.2920885 ], "geometry": { "type": "Point", "coordinates": [ -0.607961, 51.2920885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97552163" }, "bbox": [ -0.6073145, 51.2917639, -0.6073145, 51.2917639 ], "geometry": { "type": "Point", "coordinates": [ -0.6073145, 51.2917639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97551138" }, "bbox": [ -0.6086116, 51.2893294, -0.6086116, 51.2893294 ], "geometry": { "type": "Point", "coordinates": [ -0.6086116, 51.2893294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07535281" }, "bbox": [ -0.4601812, 51.2733741, -0.4601812, 51.2733741 ], "geometry": { "type": "Point", "coordinates": [ -0.4601812, 51.2733741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25433406" }, "bbox": [ -0.2086187, 51.1735465, -0.2086187, 51.1735465 ], "geometry": { "type": "Point", "coordinates": [ -0.2086187, 51.1735465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05603628" }, "bbox": [ -0.4888862, 51.3320188, -0.4888862, 51.3320188 ], "geometry": { "type": "Point", "coordinates": [ -0.4888862, 51.3320188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05600346" }, "bbox": [ -0.4933975, 51.3339016, -0.4933975, 51.3339016 ], "geometry": { "type": "Point", "coordinates": [ -0.4933975, 51.3339016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05601128" }, "bbox": [ -0.4919644, 51.3316918, -0.4919644, 51.3316918 ], "geometry": { "type": "Point", "coordinates": [ -0.4919644, 51.3316918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05600531" }, "bbox": [ -0.4935009, 51.332189, -0.4935009, 51.332189 ], "geometry": { "type": "Point", "coordinates": [ -0.4935009, 51.332189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05605574" }, "bbox": [ -0.4861427, 51.3359243, -0.4861427, 51.3359243 ], "geometry": { "type": "Point", "coordinates": [ -0.4861427, 51.3359243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26450231" }, "bbox": [ -0.1984147, 51.1930628, -0.1984147, 51.1930628 ], "geometry": { "type": "Point", "coordinates": [ -0.1984147, 51.1930628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25465043" }, "bbox": [ -0.2049419, 51.2035998, -0.2049419, 51.2035998 ], "geometry": { "type": "Point", "coordinates": [ -0.2049419, 51.2035998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25454114" }, "bbox": [ -0.2066007, 51.1917285, -0.2066007, 51.1917285 ], "geometry": { "type": "Point", "coordinates": [ -0.2066007, 51.1917285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25459464" }, "bbox": [ -0.1990127, 51.1961473, -0.1990127, 51.1961473 ], "geometry": { "type": "Point", "coordinates": [ -0.1990127, 51.1961473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25458780" }, "bbox": [ -0.1997335, 51.197409, -0.1997335, 51.197409 ], "geometry": { "type": "Point", "coordinates": [ -0.1997335, 51.197409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00342333" }, "bbox": [ -0.5693673, 51.0996667, -0.5693673, 51.0996667 ], "geometry": { "type": "Point", "coordinates": [ -0.5693673, 51.0996667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00342027" }, "bbox": [ -0.5702945, 51.0990548, -0.5702945, 51.0990548 ], "geometry": { "type": "Point", "coordinates": [ -0.5702945, 51.0990548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00341931" }, "bbox": [ -0.5706521, 51.0994589, -0.5706521, 51.0994589 ], "geometry": { "type": "Point", "coordinates": [ -0.5706521, 51.0994589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409320" }, "bbox": [ -0.4011363, 51.1500674, -0.4011363, 51.1500674 ], "geometry": { "type": "Point", "coordinates": [ -0.4011363, 51.1500674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15490442" }, "bbox": [ -0.3539985, 51.2322488, -0.3539985, 51.2322488 ], "geometry": { "type": "Point", "coordinates": [ -0.3539985, 51.2322488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41455365" }, "bbox": [ 0.0242997, 51.1925773, 0.0242997, 51.1925773 ], "geometry": { "type": "Point", "coordinates": [ 0.0242997, 51.1925773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41454855" }, "bbox": [ 0.0232976, 51.1917294, 0.0232976, 51.1917294 ], "geometry": { "type": "Point", "coordinates": [ 0.0232976, 51.1917294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20380948" }, "bbox": [ -0.284807, 51.1332419, -0.284807, 51.1332419 ], "geometry": { "type": "Point", "coordinates": [ -0.284807, 51.1332419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20383136" }, "bbox": [ -0.2819097, 51.1318134, -0.2819097, 51.1318134 ], "geometry": { "type": "Point", "coordinates": [ -0.2819097, 51.1318134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20393902" }, "bbox": [ -0.2810618, 51.1382356, -0.2810618, 51.1382356 ], "geometry": { "type": "Point", "coordinates": [ -0.2810618, 51.1382356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99540349" }, "bbox": [ -0.5811872, 51.281167, -0.5811872, 51.281167 ], "geometry": { "type": "Point", "coordinates": [ -0.5811872, 51.281167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99540360" }, "bbox": [ -0.5815171, 51.2819976, -0.5815171, 51.2819976 ], "geometry": { "type": "Point", "coordinates": [ -0.5815171, 51.2819976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99541740" }, "bbox": [ -0.5803823, 51.2804235, -0.5803823, 51.2804235 ], "geometry": { "type": "Point", "coordinates": [ -0.5803823, 51.2804235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99542666" }, "bbox": [ -0.5783243, 51.2823399, -0.5783243, 51.2823399 ], "geometry": { "type": "Point", "coordinates": [ -0.5783243, 51.2823399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99540055" }, "bbox": [ -0.5820595, 51.2809834, -0.5820595, 51.2809834 ], "geometry": { "type": "Point", "coordinates": [ -0.5820595, 51.2809834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549447" }, "bbox": [ -0.5831626, 51.2806595, -0.5831626, 51.2806595 ], "geometry": { "type": "Point", "coordinates": [ -0.5831626, 51.2806595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549536" }, "bbox": [ -0.5828871, 51.2798611, -0.5828871, 51.2798611 ], "geometry": { "type": "Point", "coordinates": [ -0.5828871, 51.2798611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549760" }, "bbox": [ -0.5822366, 51.2820075, -0.5822366, 51.2820075 ], "geometry": { "type": "Point", "coordinates": [ -0.5822366, 51.2820075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549423" }, "bbox": [ -0.5829938, 51.2787147, -0.5829938, 51.2787147 ], "geometry": { "type": "Point", "coordinates": [ -0.5829938, 51.2787147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549741" }, "bbox": [ -0.5823593, 51.2798023, -0.5823593, 51.2798023 ], "geometry": { "type": "Point", "coordinates": [ -0.5823593, 51.2798023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08381964" }, "bbox": [ -0.4549659, 51.1368513, -0.4549659, 51.1368513 ], "geometry": { "type": "Point", "coordinates": [ -0.4549659, 51.1368513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08381968" }, "bbox": [ -0.4548282, 51.1372981, -0.4548282, 51.1372981 ], "geometry": { "type": "Point", "coordinates": [ -0.4548282, 51.1372981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08384862" }, "bbox": [ -0.4510723, 51.1371615, -0.4510723, 51.1371615 ], "geometry": { "type": "Point", "coordinates": [ -0.4510723, 51.1371615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99646796" }, "bbox": [ -0.5694656, 51.374974, -0.5694656, 51.374974 ], "geometry": { "type": "Point", "coordinates": [ -0.5694656, 51.374974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99645791" }, "bbox": [ -0.5708252, 51.3745851, -0.5708252, 51.3745851 ], "geometry": { "type": "Point", "coordinates": [ -0.5708252, 51.3745851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09375173" }, "bbox": [ -0.4364779, 51.1284504, -0.4364779, 51.1284504 ], "geometry": { "type": "Point", "coordinates": [ -0.4364779, 51.1284504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11560987" }, "bbox": [ -0.4078672, 51.3001819, -0.4078672, 51.3001819 ], "geometry": { "type": "Point", "coordinates": [ -0.4078672, 51.3001819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10565165" }, "bbox": [ -0.4159795, 51.2981896, -0.4159795, 51.2981896 ], "geometry": { "type": "Point", "coordinates": [ -0.4159795, 51.2981896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10566017" }, "bbox": [ -0.4151071, 51.2939154, -0.4151071, 51.2939154 ], "geometry": { "type": "Point", "coordinates": [ -0.4151071, 51.2939154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10564465" }, "bbox": [ -0.4172712, 51.2983133, -0.4172712, 51.2983133 ], "geometry": { "type": "Point", "coordinates": [ -0.4172712, 51.2983133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10566460" }, "bbox": [ -0.4144885, 51.2977115, -0.4144885, 51.2977115 ], "geometry": { "type": "Point", "coordinates": [ -0.4144885, 51.2977115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10568147" }, "bbox": [ -0.411733, 51.2965774, -0.411733, 51.2965774 ], "geometry": { "type": "Point", "coordinates": [ -0.411733, 51.2965774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23423104" }, "bbox": [ -0.2375439, 51.1644152, -0.2375439, 51.1644152 ], "geometry": { "type": "Point", "coordinates": [ -0.2375439, 51.1644152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20384639" }, "bbox": [ -0.2799137, 51.1316691, -0.2799137, 51.1316691 ], "geometry": { "type": "Point", "coordinates": [ -0.2799137, 51.1316691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386066" }, "bbox": [ -0.2776319, 51.1344638, -0.2776319, 51.1344638 ], "geometry": { "type": "Point", "coordinates": [ -0.2776319, 51.1344638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386767" }, "bbox": [ -0.2766748, 51.1347097, -0.2766748, 51.1347097 ], "geometry": { "type": "Point", "coordinates": [ -0.2766748, 51.1347097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97419776" }, "bbox": [ -0.6001195, 51.1669655, -0.6001195, 51.1669655 ], "geometry": { "type": "Point", "coordinates": [ -0.6001195, 51.1669655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97419585" }, "bbox": [ -0.6004075, 51.1676192, -0.6004075, 51.1676192 ], "geometry": { "type": "Point", "coordinates": [ -0.6004075, 51.1676192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98411178" }, "bbox": [ -0.5981932, 51.1667587, -0.5981932, 51.1667587 ], "geometry": { "type": "Point", "coordinates": [ -0.5981932, 51.1667587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98413176" }, "bbox": [ -0.5951621, 51.1666651, -0.5951621, 51.1666651 ], "geometry": { "type": "Point", "coordinates": [ -0.5951621, 51.1666651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18380562" }, "bbox": [ -0.3140098, 51.1348037, -0.3140098, 51.1348037 ], "geometry": { "type": "Point", "coordinates": [ -0.3140098, 51.1348037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18380657" }, "bbox": [ -0.3139571, 51.1339998, -0.3139571, 51.1339998 ], "geometry": { "type": "Point", "coordinates": [ -0.3139571, 51.1339998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90405553" }, "bbox": [ -0.7066011, 51.1569376, -0.7066011, 51.1569376 ], "geometry": { "type": "Point", "coordinates": [ -0.7066011, 51.1569376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08459250" }, "bbox": [ -0.4426006, 51.1985126, -0.4426006, 51.1985126 ], "geometry": { "type": "Point", "coordinates": [ -0.4426006, 51.1985126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08456992" }, "bbox": [ -0.4455555, 51.202203, -0.4455555, 51.202203 ], "geometry": { "type": "Point", "coordinates": [ -0.4455555, 51.202203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08466901" }, "bbox": [ -0.4455334, 51.203341, -0.4455334, 51.203341 ], "geometry": { "type": "Point", "coordinates": [ -0.4455334, 51.203341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14524385" }, "bbox": [ -0.3610056, 51.2634252, -0.3610056, 51.2634252 ], "geometry": { "type": "Point", "coordinates": [ -0.3610056, 51.2634252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94336538" }, "bbox": [ -0.6499328, 51.0918505, -0.6499328, 51.0918505 ], "geometry": { "type": "Point", "coordinates": [ -0.6499328, 51.0918505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94332485" }, "bbox": [ -0.6554013, 51.0962771, -0.6554013, 51.0962771 ], "geometry": { "type": "Point", "coordinates": [ -0.6554013, 51.0962771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05454582" }, "bbox": [ -0.4916575, 51.2019053, -0.4916575, 51.2019053 ], "geometry": { "type": "Point", "coordinates": [ -0.4916575, 51.2019053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02484621" }, "bbox": [ -0.5340689, 51.2239907, -0.5340689, 51.2239907 ], "geometry": { "type": "Point", "coordinates": [ -0.5340689, 51.2239907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05487335" }, "bbox": [ -0.4874106, 51.2245742, -0.4874106, 51.2245742 ], "geometry": { "type": "Point", "coordinates": [ -0.4874106, 51.2245742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05487141" }, "bbox": [ -0.4875849, 51.2252075, -0.4875849, 51.2252075 ], "geometry": { "type": "Point", "coordinates": [ -0.4875849, 51.2252075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06471667" }, "bbox": [ -0.4814337, 51.2181843, -0.4814337, 51.2181843 ], "geometry": { "type": "Point", "coordinates": [ -0.4814337, 51.2181843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06475005" }, "bbox": [ -0.4765169, 51.2127973, -0.4765169, 51.2127973 ], "geometry": { "type": "Point", "coordinates": [ -0.4765169, 51.2127973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04481263" }, "bbox": [ -0.5102229, 51.2273989, -0.5102229, 51.2273989 ], "geometry": { "type": "Point", "coordinates": [ -0.5102229, 51.2273989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04481037" }, "bbox": [ -0.5105635, 51.2251182, -0.5105635, 51.2251182 ], "geometry": { "type": "Point", "coordinates": [ -0.5105635, 51.2251182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04485538" }, "bbox": [ -0.5040733, 51.2251078, -0.5040733, 51.2251078 ], "geometry": { "type": "Point", "coordinates": [ -0.5040733, 51.2251078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04483338" }, "bbox": [ -0.5072871, 51.2251701, -0.5072871, 51.2251701 ], "geometry": { "type": "Point", "coordinates": [ -0.5072871, 51.2251701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04493134" }, "bbox": [ -0.5073548, 51.2336572, -0.5073548, 51.2336572 ], "geometry": { "type": "Point", "coordinates": [ -0.5073548, 51.2336572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04448278" }, "bbox": [ -0.500895, 51.1927161, -0.500895, 51.1927161 ], "geometry": { "type": "Point", "coordinates": [ -0.500895, 51.1927161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04446477" }, "bbox": [ -0.5039678, 51.192611, -0.5039678, 51.192611 ], "geometry": { "type": "Point", "coordinates": [ -0.5039678, 51.192611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04445198" }, "bbox": [ -0.5054729, 51.1946026, -0.5054729, 51.1946026 ], "geometry": { "type": "Point", "coordinates": [ -0.5054729, 51.1946026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04456782" }, "bbox": [ -0.5030569, 51.2021315, -0.5030569, 51.2021315 ], "geometry": { "type": "Point", "coordinates": [ -0.5030569, 51.2021315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04466257" }, "bbox": [ -0.5029217, 51.2089048, -0.5029217, 51.2089048 ], "geometry": { "type": "Point", "coordinates": [ -0.5029217, 51.2089048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04466367" }, "bbox": [ -0.5033508, 51.2097108, -0.5033508, 51.2097108 ], "geometry": { "type": "Point", "coordinates": [ -0.5033508, 51.2097108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04465773" }, "bbox": [ -0.5033163, 51.2100572, -0.5033163, 51.2100572 ], "geometry": { "type": "Point", "coordinates": [ -0.5033163, 51.2100572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04475721" }, "bbox": [ -0.5041305, 51.2145284, -0.5041305, 51.2145284 ], "geometry": { "type": "Point", "coordinates": [ -0.5041305, 51.2145284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03498836" }, "bbox": [ -0.5161189, 51.2336976, -0.5161189, 51.2336976 ], "geometry": { "type": "Point", "coordinates": [ -0.5161189, 51.2336976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365988" }, "bbox": [ -0.492625, 51.1210773, -0.492625, 51.1210773 ], "geometry": { "type": "Point", "coordinates": [ -0.492625, 51.1210773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543853" }, "bbox": [ -0.6623757, 51.2821908, -0.6623757, 51.2821908 ], "geometry": { "type": "Point", "coordinates": [ -0.6623757, 51.2821908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543753" }, "bbox": [ -0.6625858, 51.28219, -0.6625858, 51.28219 ], "geometry": { "type": "Point", "coordinates": [ -0.6625858, 51.28219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543551" }, "bbox": [ -0.6628399, 51.2819625, -0.6628399, 51.2819625 ], "geometry": { "type": "Point", "coordinates": [ -0.6628399, 51.2819625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543557" }, "bbox": [ -0.6627605, 51.282684, -0.6627605, 51.282684 ], "geometry": { "type": "Point", "coordinates": [ -0.6627605, 51.282684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543051" }, "bbox": [ -0.6633845, 51.2821786, -0.6633845, 51.2821786 ], "geometry": { "type": "Point", "coordinates": [ -0.6633845, 51.2821786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541533" }, "bbox": [ -0.6658437, 51.2805945, -0.6658437, 51.2805945 ], "geometry": { "type": "Point", "coordinates": [ -0.6658437, 51.2805945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541135" }, "bbox": [ -0.6664544, 51.2807935, -0.6664544, 51.2807935 ], "geometry": { "type": "Point", "coordinates": [ -0.6664544, 51.2807935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93540538" }, "bbox": [ -0.6670858, 51.2810461, -0.6670858, 51.2810461 ], "geometry": { "type": "Point", "coordinates": [ -0.6670858, 51.2810461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07412430" }, "bbox": [ -0.4681179, 51.1612485, -0.4681179, 51.1612485 ], "geometry": { "type": "Point", "coordinates": [ -0.4681179, 51.1612485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30444088" }, "bbox": [ -0.1354222, 51.1883364, -0.1354222, 51.1883364 ], "geometry": { "type": "Point", "coordinates": [ -0.1354222, 51.1883364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453704" }, "bbox": [ -0.1358691, 51.1898066, -0.1358691, 51.1898066 ], "geometry": { "type": "Point", "coordinates": [ -0.1358691, 51.1898066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28575803" }, "bbox": [ -0.1570147, 51.2978753, -0.1570147, 51.2978753 ], "geometry": { "type": "Point", "coordinates": [ -0.1570147, 51.2978753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28575715" }, "bbox": [ -0.1574256, 51.2990191, -0.1574256, 51.2990191 ], "geometry": { "type": "Point", "coordinates": [ -0.1574256, 51.2990191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28579328" }, "bbox": [ -0.1520835, 51.3001283, -0.1520835, 51.3001283 ], "geometry": { "type": "Point", "coordinates": [ -0.1520835, 51.3001283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28578711" }, "bbox": [ -0.1527565, 51.2986215, -0.1527565, 51.2986215 ], "geometry": { "type": "Point", "coordinates": [ -0.1527565, 51.2986215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27574018" }, "bbox": [ -0.1738639, 51.2995376, -0.1738639, 51.2995376 ], "geometry": { "type": "Point", "coordinates": [ -0.1738639, 51.2995376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27573918" }, "bbox": [ -0.1745212, 51.2992261, -0.1745212, 51.2992261 ], "geometry": { "type": "Point", "coordinates": [ -0.1745212, 51.2992261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27573010" }, "bbox": [ -0.1751856, 51.2988807, -0.1751856, 51.2988807 ], "geometry": { "type": "Point", "coordinates": [ -0.1751856, 51.2988807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32524970" }, "bbox": [ -0.1025053, 51.2580468, -0.1025053, 51.2580468 ], "geometry": { "type": "Point", "coordinates": [ -0.1025053, 51.2580468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32524966" }, "bbox": [ -0.1027975, 51.2576455, -0.1027975, 51.2576455 ], "geometry": { "type": "Point", "coordinates": [ -0.1027975, 51.2576455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25444479" }, "bbox": [ -0.2064359, 51.1884651, -0.2064359, 51.1884651 ], "geometry": { "type": "Point", "coordinates": [ -0.2064359, 51.1884651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20537361" }, "bbox": [ -0.2701009, 51.2686699, -0.2701009, 51.2686699 ], "geometry": { "type": "Point", "coordinates": [ -0.2701009, 51.2686699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89322551" }, "bbox": [ -0.7279592, 51.0846572, -0.7279592, 51.0846572 ], "geometry": { "type": "Point", "coordinates": [ -0.7279592, 51.0846572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95469135" }, "bbox": [ -0.6293394, 51.2081073, -0.6293394, 51.2081073 ], "geometry": { "type": "Point", "coordinates": [ -0.6293394, 51.2081073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95466368" }, "bbox": [ -0.6321523, 51.2114488, -0.6321523, 51.2114488 ], "geometry": { "type": "Point", "coordinates": [ -0.6321523, 51.2114488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95461574" }, "bbox": [ -0.6392572, 51.2123365, -0.6392572, 51.2123365 ], "geometry": { "type": "Point", "coordinates": [ -0.6392572, 51.2123365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95460390" }, "bbox": [ -0.6403294, 51.2135138, -0.6403294, 51.2135138 ], "geometry": { "type": "Point", "coordinates": [ -0.6403294, 51.2135138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95461293" }, "bbox": [ -0.6390965, 51.2137451, -0.6390965, 51.2137451 ], "geometry": { "type": "Point", "coordinates": [ -0.6390965, 51.2137451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95472208" }, "bbox": [ -0.6381696, 51.2150543, -0.6381696, 51.2150543 ], "geometry": { "type": "Point", "coordinates": [ -0.6381696, 51.2150543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11564899" }, "bbox": [ -0.4022371, 51.3011304, -0.4022371, 51.3011304 ], "geometry": { "type": "Point", "coordinates": [ -0.4022371, 51.3011304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11567366" }, "bbox": [ -0.3989234, 51.2982264, -0.3989234, 51.2982264 ], "geometry": { "type": "Point", "coordinates": [ -0.3989234, 51.2982264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11566266" }, "bbox": [ -0.4003167, 51.2981467, -0.4003167, 51.2981467 ], "geometry": { "type": "Point", "coordinates": [ -0.4003167, 51.2981467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11565556" }, "bbox": [ -0.401365, 51.2972604, -0.401365, 51.2972604 ], "geometry": { "type": "Point", "coordinates": [ -0.401365, 51.2972604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28540348" }, "bbox": [ -0.1661225, 51.2751762, -0.1661225, 51.2751762 ], "geometry": { "type": "Point", "coordinates": [ -0.1661225, 51.2751762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27549741" }, "bbox": [ -0.1668187, 51.2746147, -0.1668187, 51.2746147 ], "geometry": { "type": "Point", "coordinates": [ -0.1668187, 51.2746147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05379262" }, "bbox": [ -0.4876411, 51.1281482, -0.4876411, 51.1281482 ], "geometry": { "type": "Point", "coordinates": [ -0.4876411, 51.1281482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07371817" }, "bbox": [ -0.4699315, 51.1238302, -0.4699315, 51.1238302 ], "geometry": { "type": "Point", "coordinates": [ -0.4699315, 51.1238302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00541918" }, "bbox": [ -0.565021, 51.2780985, -0.565021, 51.2780985 ], "geometry": { "type": "Point", "coordinates": [ -0.565021, 51.2780985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29469529" }, "bbox": [ -0.1412328, 51.2010546, -0.1412328, 51.2010546 ], "geometry": { "type": "Point", "coordinates": [ -0.1412328, 51.2010546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03740515" }, "bbox": [ -0.5182967, 51.4567923, -0.5182967, 51.4567923 ], "geometry": { "type": "Point", "coordinates": [ -0.5182967, 51.4567923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03741343" }, "bbox": [ -0.5168892, 51.4595233, -0.5168892, 51.4595233 ], "geometry": { "type": "Point", "coordinates": [ -0.5168892, 51.4595233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03740929" }, "bbox": [ -0.5177121, 51.4580444, -0.5177121, 51.4580444 ], "geometry": { "type": "Point", "coordinates": [ -0.5177121, 51.4580444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04477103" }, "bbox": [ -0.5018043, 51.2135294, -0.5018043, 51.2135294 ], "geometry": { "type": "Point", "coordinates": [ -0.5018043, 51.2135294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98553013" }, "bbox": [ -0.591692, 51.2867516, -0.591692, 51.2867516 ], "geometry": { "type": "Point", "coordinates": [ -0.591692, 51.2867516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98552209" }, "bbox": [ -0.5928036, 51.286634, -0.5928036, 51.286634 ], "geometry": { "type": "Point", "coordinates": [ -0.5928036, 51.286634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98552214" }, "bbox": [ -0.5927574, 51.2870033, -0.5927574, 51.2870033 ], "geometry": { "type": "Point", "coordinates": [ -0.5927574, 51.2870033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550612" }, "bbox": [ -0.5950449, 51.2865531, -0.5950449, 51.2865531 ], "geometry": { "type": "Point", "coordinates": [ -0.5950449, 51.2865531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98556371" }, "bbox": [ -0.5867349, 51.291964, -0.5867349, 51.291964 ], "geometry": { "type": "Point", "coordinates": [ -0.5867349, 51.291964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98552202" }, "bbox": [ -0.5929432, 51.2859453, -0.5929432, 51.2859453 ], "geometry": { "type": "Point", "coordinates": [ -0.5929432, 51.2859453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550312" }, "bbox": [ -0.5957882, 51.2868026, -0.5957882, 51.2868026 ], "geometry": { "type": "Point", "coordinates": [ -0.5957882, 51.2868026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550726" }, "bbox": [ -0.5949674, 51.2881467, -0.5949674, 51.2881467 ], "geometry": { "type": "Point", "coordinates": [ -0.5949674, 51.2881467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550819" }, "bbox": [ -0.5947338, 51.2874623, -0.5947338, 51.2874623 ], "geometry": { "type": "Point", "coordinates": [ -0.5947338, 51.2874623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550504" }, "bbox": [ -0.5952424, 51.2861207, -0.5952424, 51.2861207 ], "geometry": { "type": "Point", "coordinates": [ -0.5952424, 51.2861207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98554623" }, "bbox": [ -0.5893778, 51.2878518, -0.5893778, 51.2878518 ], "geometry": { "type": "Point", "coordinates": [ -0.5893778, 51.2878518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550126" }, "bbox": [ -0.5957381, 51.2881159, -0.5957381, 51.2881159 ], "geometry": { "type": "Point", "coordinates": [ -0.5957381, 51.2881159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98551100" }, "bbox": [ -0.5943696, 51.285795, -0.5943696, 51.285795 ], "geometry": { "type": "Point", "coordinates": [ -0.5943696, 51.285795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97558316" }, "bbox": [ -0.5982706, 51.2873569, -0.5982706, 51.2873569 ], "geometry": { "type": "Point", "coordinates": [ -0.5982706, 51.2873569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97557604" }, "bbox": [ -0.5995223, 51.2861579, -0.5995223, 51.2861579 ], "geometry": { "type": "Point", "coordinates": [ -0.5995223, 51.2861579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97557301" }, "bbox": [ -0.5996689, 51.2857699, -0.5996689, 51.2857699 ], "geometry": { "type": "Point", "coordinates": [ -0.5996689, 51.2857699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97558303" }, "bbox": [ -0.5983292, 51.2857972, -0.5983292, 51.2857972 ], "geometry": { "type": "Point", "coordinates": [ -0.5983292, 51.2857972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97558105" }, "bbox": [ -0.5987017, 51.2862925, -0.5987017, 51.2862925 ], "geometry": { "type": "Point", "coordinates": [ -0.5987017, 51.2862925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97559221" }, "bbox": [ -0.5969583, 51.2876525, -0.5969583, 51.2876525 ], "geometry": { "type": "Point", "coordinates": [ -0.5969583, 51.2876525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97559725" }, "bbox": [ -0.5963836, 51.28804, -0.5963836, 51.28804 ], "geometry": { "type": "Point", "coordinates": [ -0.5963836, 51.28804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97549497" }, "bbox": [ -0.5967251, 51.2855551, -0.5967251, 51.2855551 ], "geometry": { "type": "Point", "coordinates": [ -0.5967251, 51.2855551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98542498" }, "bbox": [ -0.5925164, 51.2856273, -0.5925164, 51.2856273 ], "geometry": { "type": "Point", "coordinates": [ -0.5925164, 51.2856273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98541393" }, "bbox": [ -0.5940726, 51.2851329, -0.5940726, 51.2851329 ], "geometry": { "type": "Point", "coordinates": [ -0.5940726, 51.2851329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00390966" }, "bbox": [ -0.57048, 51.1475932, -0.57048, 51.1475932 ], "geometry": { "type": "Point", "coordinates": [ -0.57048, 51.1475932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28553530" }, "bbox": [ -0.1607947, 51.2821379, -0.1607947, 51.2821379 ], "geometry": { "type": "Point", "coordinates": [ -0.1607947, 51.2821379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03749759" }, "bbox": [ -0.5056744, 51.4607241, -0.5056744, 51.4607241 ], "geometry": { "type": "Point", "coordinates": [ -0.5056744, 51.4607241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18423875" }, "bbox": [ -0.3080798, 51.1717052, -0.3080798, 51.1717052 ], "geometry": { "type": "Point", "coordinates": [ -0.3080798, 51.1717052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18429748" }, "bbox": [ -0.2997767, 51.1692102, -0.2997767, 51.1692102 ], "geometry": { "type": "Point", "coordinates": [ -0.2997767, 51.1692102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16418422" }, "bbox": [ -0.3307627, 51.1589746, -0.3307627, 51.1589746 ], "geometry": { "type": "Point", "coordinates": [ -0.3307627, 51.1589746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16418154" }, "bbox": [ -0.3309716, 51.1611737, -0.3309716, 51.1611737 ], "geometry": { "type": "Point", "coordinates": [ -0.3309716, 51.1611737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437037" }, "bbox": [ -0.3031285, 51.1773539, -0.3031285, 51.1773539 ], "geometry": { "type": "Point", "coordinates": [ -0.3031285, 51.1773539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01561165" }, "bbox": [ -0.5515483, 51.2997125, -0.5515483, 51.2997125 ], "geometry": { "type": "Point", "coordinates": [ -0.5515483, 51.2997125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09463959" }, "bbox": [ -0.4354401, 51.20812, -0.4354401, 51.20812 ], "geometry": { "type": "Point", "coordinates": [ -0.4354401, 51.20812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81444061" }, "bbox": [ -0.8367072, 51.1950365, -0.8367072, 51.1950365 ], "geometry": { "type": "Point", "coordinates": [ -0.8367072, 51.1950365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81446390" }, "bbox": [ -0.8333256, 51.1972295, -0.8333256, 51.1972295 ], "geometry": { "type": "Point", "coordinates": [ -0.8333256, 51.1972295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81448096" }, "bbox": [ -0.8302226, 51.1982026, -0.8302226, 51.1982026 ], "geometry": { "type": "Point", "coordinates": [ -0.8302226, 51.1982026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81444291" }, "bbox": [ -0.836077, 51.1973709, -0.836077, 51.1973709 ], "geometry": { "type": "Point", "coordinates": [ -0.836077, 51.1973709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81442567" }, "bbox": [ -0.8383229, 51.1954731, -0.8383229, 51.1954731 ], "geometry": { "type": "Point", "coordinates": [ -0.8383229, 51.1954731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21422202" }, "bbox": [ -0.2677921, 51.1644591, -0.2677921, 51.1644591 ], "geometry": { "type": "Point", "coordinates": [ -0.2677921, 51.1644591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512447" }, "bbox": [ -0.2356077, 51.2490871, -0.2356077, 51.2490871 ], "geometry": { "type": "Point", "coordinates": [ -0.2356077, 51.2490871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16438794" }, "bbox": [ -0.3290426, 51.182836, -0.3290426, 51.182836 ], "geometry": { "type": "Point", "coordinates": [ -0.3290426, 51.182836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16433085" }, "bbox": [ -0.33736, 51.1821221, -0.33736, 51.1821221 ], "geometry": { "type": "Point", "coordinates": [ -0.33736, 51.1821221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24460522" }, "bbox": [ -0.2257602, 51.2016663, -0.2257602, 51.2016663 ], "geometry": { "type": "Point", "coordinates": [ -0.2257602, 51.2016663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92446300" }, "bbox": [ -0.6758401, 51.1876914, -0.6758401, 51.1876914 ], "geometry": { "type": "Point", "coordinates": [ -0.6758401, 51.1876914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92437699" }, "bbox": [ -0.6742041, 51.1874531, -0.6742041, 51.1874531 ], "geometry": { "type": "Point", "coordinates": [ -0.6742041, 51.1874531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02363437" }, "bbox": [ -0.5391836, 51.1174596, -0.5391836, 51.1174596 ], "geometry": { "type": "Point", "coordinates": [ -0.5391836, 51.1174596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356380" }, "bbox": [ -0.5353205, 51.1123738, -0.5353205, 51.1123738 ], "geometry": { "type": "Point", "coordinates": [ -0.5353205, 51.1123738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356048" }, "bbox": [ -0.5356558, 51.1094647, -0.5356558, 51.1094647 ], "geometry": { "type": "Point", "coordinates": [ -0.5356558, 51.1094647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02355682" }, "bbox": [ -0.536921, 51.1122663, -0.536921, 51.1122663 ], "geometry": { "type": "Point", "coordinates": [ -0.536921, 51.1122663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02357272" }, "bbox": [ -0.5338591, 51.1115998, -0.5338591, 51.1115998 ], "geometry": { "type": "Point", "coordinates": [ -0.5338591, 51.1115998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03350668" }, "bbox": [ -0.5291754, 51.111138, -0.5291754, 51.111138 ], "geometry": { "type": "Point", "coordinates": [ -0.5291754, 51.111138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91366265" }, "bbox": [ -0.6930747, 51.1224112, -0.6930747, 51.1224112 ], "geometry": { "type": "Point", "coordinates": [ -0.6930747, 51.1224112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91373405" }, "bbox": [ -0.6960966, 51.1252371, -0.6960966, 51.1252371 ], "geometry": { "type": "Point", "coordinates": [ -0.6960966, 51.1252371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91370211" }, "bbox": [ -0.7003684, 51.1261473, -0.7003684, 51.1261473 ], "geometry": { "type": "Point", "coordinates": [ -0.7003684, 51.1261473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91372806" }, "bbox": [ -0.6977473, 51.1258154, -0.6977473, 51.1258154 ], "geometry": { "type": "Point", "coordinates": [ -0.6977473, 51.1258154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91372716" }, "bbox": [ -0.6971138, 51.126451, -0.6971138, 51.126451 ], "geometry": { "type": "Point", "coordinates": [ -0.6971138, 51.126451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91371415" }, "bbox": [ -0.6979878, 51.1262336, -0.6979878, 51.1262336 ], "geometry": { "type": "Point", "coordinates": [ -0.6979878, 51.1262336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91371212" }, "bbox": [ -0.6994385, 51.126254, -0.6994385, 51.126254 ], "geometry": { "type": "Point", "coordinates": [ -0.6994385, 51.126254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98605330" }, "bbox": [ -0.587293, 51.3332819, -0.587293, 51.3332819 ], "geometry": { "type": "Point", "coordinates": [ -0.587293, 51.3332819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99614405" }, "bbox": [ -0.5737412, 51.3398835, -0.5737412, 51.3398835 ], "geometry": { "type": "Point", "coordinates": [ -0.5737412, 51.3398835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99604596" }, "bbox": [ -0.5735661, 51.3391452, -0.5735661, 51.3391452 ], "geometry": { "type": "Point", "coordinates": [ -0.5735661, 51.3391452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16435664" }, "bbox": [ -0.3336137, 51.180052, -0.3336137, 51.180052 ], "geometry": { "type": "Point", "coordinates": [ -0.3336137, 51.180052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16434160" }, "bbox": [ -0.3357896, 51.1796909, -0.3357896, 51.1796909 ], "geometry": { "type": "Point", "coordinates": [ -0.3357896, 51.1796909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16433568" }, "bbox": [ -0.3365503, 51.1803282, -0.3365503, 51.1803282 ], "geometry": { "type": "Point", "coordinates": [ -0.3365503, 51.1803282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12422015" }, "bbox": [ -0.3966764, 51.1676095, -0.3966764, 51.1676095 ], "geometry": { "type": "Point", "coordinates": [ -0.3966764, 51.1676095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09408673" }, "bbox": [ -0.4303237, 51.1554501, -0.4303237, 51.1554501 ], "geometry": { "type": "Point", "coordinates": [ -0.4303237, 51.1554501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04380233" }, "bbox": [ -0.5145959, 51.1348291, -0.5145959, 51.1348291 ], "geometry": { "type": "Point", "coordinates": [ -0.5145959, 51.1348291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04380637" }, "bbox": [ -0.5138657, 51.1352254, -0.5138657, 51.1352254 ], "geometry": { "type": "Point", "coordinates": [ -0.5138657, 51.1352254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03388923" }, "bbox": [ -0.5165136, 51.1339835, -0.5165136, 51.1339835 ], "geometry": { "type": "Point", "coordinates": [ -0.5165136, 51.1339835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35501812" }, "bbox": [ -0.0664187, 51.2339495, -0.0664187, 51.2339495 ], "geometry": { "type": "Point", "coordinates": [ -0.0664187, 51.2339495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503415" }, "bbox": [ -0.0627167, 51.2338185, -0.0627167, 51.2338185 ], "geometry": { "type": "Point", "coordinates": [ -0.0627167, 51.2338185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39581951" }, "bbox": [ -0.0042553, 51.3088287, -0.0042553, 51.3088287 ], "geometry": { "type": "Point", "coordinates": [ -0.0042553, 51.3088287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39580035" }, "bbox": [ -0.0063792, 51.3074101, -0.0063792, 51.3074101 ], "geometry": { "type": "Point", "coordinates": [ -0.0063792, 51.3074101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00660173" }, "bbox": [ -0.5633662, 51.3908347, -0.5633662, 51.3908347 ], "geometry": { "type": "Point", "coordinates": [ -0.5633662, 51.3908347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99669764" }, "bbox": [ -0.5645184, 51.390038, -0.5645184, 51.390038 ], "geometry": { "type": "Point", "coordinates": [ -0.5645184, 51.390038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10365297" }, "bbox": [ -0.4223873, 51.1214005, -0.4223873, 51.1214005 ], "geometry": { "type": "Point", "coordinates": [ -0.4223873, 51.1214005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10366097" }, "bbox": [ -0.4210541, 51.1214122, -0.4210541, 51.1214122 ], "geometry": { "type": "Point", "coordinates": [ -0.4210541, 51.1214122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10363972" }, "bbox": [ -0.4244352, 51.1191217, -0.4244352, 51.1191217 ], "geometry": { "type": "Point", "coordinates": [ -0.4244352, 51.1191217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10370998" }, "bbox": [ -0.4281808, 51.130476, -0.4281808, 51.130476 ], "geometry": { "type": "Point", "coordinates": [ -0.4281808, 51.130476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10375013" }, "bbox": [ -0.4223616, 51.1228772, -0.4223616, 51.1228772 ], "geometry": { "type": "Point", "coordinates": [ -0.4223616, 51.1228772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21522039" }, "bbox": [ -0.2647564, 51.2578453, -0.2647564, 51.2578453 ], "geometry": { "type": "Point", "coordinates": [ -0.2647564, 51.2578453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09380501" }, "bbox": [ -0.4426971, 51.1312223, -0.4426971, 51.1312223 ], "geometry": { "type": "Point", "coordinates": [ -0.4426971, 51.1312223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09370496" }, "bbox": [ -0.4427313, 51.1308362, -0.4427313, 51.1308362 ], "geometry": { "type": "Point", "coordinates": [ -0.4427313, 51.1308362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39405295" }, "bbox": [ -0.0065166, 51.1509115, -0.0065166, 51.1509115 ], "geometry": { "type": "Point", "coordinates": [ -0.0065166, 51.1509115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39414709" }, "bbox": [ -0.0073337, 51.1520114, -0.0073337, 51.1520114 ], "geometry": { "type": "Point", "coordinates": [ -0.0073337, 51.1520114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39414604" }, "bbox": [ -0.0074214, 51.1515832, -0.0074214, 51.1515832 ], "geometry": { "type": "Point", "coordinates": [ -0.0074214, 51.1515832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39415209" }, "bbox": [ -0.0064739, 51.1520475, -0.0064739, 51.1520475 ], "geometry": { "type": "Point", "coordinates": [ -0.0064739, 51.1520475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39414526" }, "bbox": [ -0.0074541, 51.1533004, -0.0074541, 51.1533004 ], "geometry": { "type": "Point", "coordinates": [ -0.0074541, 51.1533004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39415502" }, "bbox": [ -0.0061363, 51.1514679, -0.0061363, 51.1514679 ], "geometry": { "type": "Point", "coordinates": [ -0.0061363, 51.1514679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39414233" }, "bbox": [ -0.0078304, 51.1543084, -0.0078304, 51.1543084 ], "geometry": { "type": "Point", "coordinates": [ -0.0078304, 51.1543084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450329" }, "bbox": [ -0.0262747, 51.1902568, -0.0262747, 51.1902568 ], "geometry": { "type": "Point", "coordinates": [ -0.0262747, 51.1902568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452125" }, "bbox": [ -0.0236165, 51.1898785, -0.0236165, 51.1898785 ], "geometry": { "type": "Point", "coordinates": [ -0.0236165, 51.1898785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452211" }, "bbox": [ -0.0235437, 51.1886473, -0.0235437, 51.1886473 ], "geometry": { "type": "Point", "coordinates": [ -0.0235437, 51.1886473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37456442" }, "bbox": [ -0.031653, 51.1915082, -0.031653, 51.1915082 ], "geometry": { "type": "Point", "coordinates": [ -0.031653, 51.1915082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459909" }, "bbox": [ -0.0269289, 51.188377, -0.0269289, 51.188377 ], "geometry": { "type": "Point", "coordinates": [ -0.0269289, 51.188377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459109" }, "bbox": [ -0.0278857, 51.1884597, -0.0278857, 51.1884597 ], "geometry": { "type": "Point", "coordinates": [ -0.0278857, 51.1884597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37458737" }, "bbox": [ -0.0284757, 51.1909352, -0.0284757, 51.1909352 ], "geometry": { "type": "Point", "coordinates": [ -0.0284757, 51.1909352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37458616" }, "bbox": [ -0.0285597, 51.1891425, -0.0285597, 51.1891425 ], "geometry": { "type": "Point", "coordinates": [ -0.0285597, 51.1891425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37457040" }, "bbox": [ -0.0307164, 51.1912192, -0.0307164, 51.1912192 ], "geometry": { "type": "Point", "coordinates": [ -0.0307164, 51.1912192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37451737" }, "bbox": [ -0.0382397, 51.1911875, -0.0382397, 51.1911875 ], "geometry": { "type": "Point", "coordinates": [ -0.0382397, 51.1911875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37452834" }, "bbox": [ -0.0367416, 51.190928, -0.0367416, 51.190928 ], "geometry": { "type": "Point", "coordinates": [ -0.0367416, 51.190928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37451054" }, "bbox": [ -0.0394596, 51.1928102, -0.0394596, 51.1928102 ], "geometry": { "type": "Point", "coordinates": [ -0.0394596, 51.1928102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37454657" }, "bbox": [ -0.0308116, 51.192542, -0.0308116, 51.192542 ], "geometry": { "type": "Point", "coordinates": [ -0.0308116, 51.192542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37455626" }, "bbox": [ -0.0328109, 51.1901041, -0.0328109, 51.1901041 ], "geometry": { "type": "Point", "coordinates": [ -0.0328109, 51.1901041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37453531" }, "bbox": [ -0.0357121, 51.190632, -0.0357121, 51.190632 ], "geometry": { "type": "Point", "coordinates": [ -0.0357121, 51.190632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37453051" }, "bbox": [ -0.0365695, 51.1922852, -0.0365695, 51.1922852 ], "geometry": { "type": "Point", "coordinates": [ -0.0365695, 51.1922852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37457224" }, "bbox": [ -0.0305062, 51.1898287, -0.0305062, 51.1898287 ], "geometry": { "type": "Point", "coordinates": [ -0.0305062, 51.1898287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459619" }, "bbox": [ -0.0271187, 51.1892012, -0.0271187, 51.1892012 ], "geometry": { "type": "Point", "coordinates": [ -0.0271187, 51.1892012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37456421" }, "bbox": [ -0.0319171, 51.1895826, -0.0319171, 51.1895826 ], "geometry": { "type": "Point", "coordinates": [ -0.0319171, 51.1895826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37455206" }, "bbox": [ -0.0334878, 51.1882784, -0.0334878, 51.1882784 ], "geometry": { "type": "Point", "coordinates": [ -0.0334878, 51.1882784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37455609" }, "bbox": [ -0.0331622, 51.1884453, -0.0331622, 51.1884453 ], "geometry": { "type": "Point", "coordinates": [ -0.0331622, 51.1884453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37455553" }, "bbox": [ -0.0329633, 51.1925, -0.0329633, 51.1925 ], "geometry": { "type": "Point", "coordinates": [ -0.0329633, 51.1925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37454948" }, "bbox": [ -0.0338118, 51.1919179, -0.0338118, 51.1919179 ], "geometry": { "type": "Point", "coordinates": [ -0.0338118, 51.1919179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459415" }, "bbox": [ -0.0277014, 51.1889168, -0.0277014, 51.1889168 ], "geometry": { "type": "Point", "coordinates": [ -0.0277014, 51.1889168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37457340" }, "bbox": [ -0.0307515, 51.1906487, -0.0307515, 51.1906487 ], "geometry": { "type": "Point", "coordinates": [ -0.0307515, 51.1906487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98563655" }, "bbox": [ -0.5900239, 51.2996638, -0.5900239, 51.2996638 ], "geometry": { "type": "Point", "coordinates": [ -0.5900239, 51.2996638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98562356" }, "bbox": [ -0.5923116, 51.2997483, -0.5923116, 51.2997483 ], "geometry": { "type": "Point", "coordinates": [ -0.5923116, 51.2997483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98562852" }, "bbox": [ -0.5916314, 51.2993569, -0.5916314, 51.2993569 ], "geometry": { "type": "Point", "coordinates": [ -0.5916314, 51.2993569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90431730" }, "bbox": [ -0.7111129, 51.181978, -0.7111129, 51.181978 ], "geometry": { "type": "Point", "coordinates": [ -0.7111129, 51.181978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90432096" }, "bbox": [ -0.7108544, 51.1877484, -0.7108544, 51.1877484 ], "geometry": { "type": "Point", "coordinates": [ -0.7108544, 51.1877484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90440707" }, "bbox": [ -0.7124733, 51.1888275, -0.7124733, 51.1888275 ], "geometry": { "type": "Point", "coordinates": [ -0.7124733, 51.1888275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90442559" }, "bbox": [ -0.7098322, 51.1932902, -0.7098322, 51.1932902 ], "geometry": { "type": "Point", "coordinates": [ -0.7098322, 51.1932902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441610" }, "bbox": [ -0.71118, 51.1890294, -0.71118, 51.1890294 ], "geometry": { "type": "Point", "coordinates": [ -0.71118, 51.1890294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441406" }, "bbox": [ -0.7115838, 51.188706, -0.7115838, 51.188706 ], "geometry": { "type": "Point", "coordinates": [ -0.7115838, 51.188706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441604" }, "bbox": [ -0.7111608, 51.1885171, -0.7111608, 51.1885171 ], "geometry": { "type": "Point", "coordinates": [ -0.7111608, 51.1885171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441707" }, "bbox": [ -0.7111207, 51.188776, -0.7111207, 51.188776 ], "geometry": { "type": "Point", "coordinates": [ -0.7111207, 51.188776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441253" }, "bbox": [ -0.7114887, 51.1928396, -0.7114887, 51.1928396 ], "geometry": { "type": "Point", "coordinates": [ -0.7114887, 51.1928396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90442845" }, "bbox": [ -0.7093866, 51.1922746, -0.7093866, 51.1922746 ], "geometry": { "type": "Point", "coordinates": [ -0.7093866, 51.1922746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441712" }, "bbox": [ -0.7112185, 51.1891786, -0.7112185, 51.1891786 ], "geometry": { "type": "Point", "coordinates": [ -0.7112185, 51.1891786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441007" }, "bbox": [ -0.7120893, 51.1887542, -0.7120893, 51.1887542 ], "geometry": { "type": "Point", "coordinates": [ -0.7120893, 51.1887542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441715" }, "bbox": [ -0.7110235, 51.1895496, -0.7110235, 51.1895496 ], "geometry": { "type": "Point", "coordinates": [ -0.7110235, 51.1895496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441326" }, "bbox": [ -0.7117191, 51.1904553, -0.7117191, 51.1904553 ], "geometry": { "type": "Point", "coordinates": [ -0.7117191, 51.1904553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90441431" }, "bbox": [ -0.7112959, 51.1909145, -0.7112959, 51.1909145 ], "geometry": { "type": "Point", "coordinates": [ -0.7112959, 51.1909145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89461958" }, "bbox": [ -0.7251179, 51.2113874, -0.7251179, 51.2113874 ], "geometry": { "type": "Point", "coordinates": [ -0.7251179, 51.2113874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89462388" }, "bbox": [ -0.7234908, 51.2141099, -0.7234908, 51.2141099 ], "geometry": { "type": "Point", "coordinates": [ -0.7234908, 51.2141099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89462264" }, "bbox": [ -0.7244618, 51.2121922, -0.7244618, 51.2121922 ], "geometry": { "type": "Point", "coordinates": [ -0.7244618, 51.2121922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89465792" }, "bbox": [ -0.7186179, 51.2146334, -0.7186179, 51.2146334 ], "geometry": { "type": "Point", "coordinates": [ -0.7186179, 51.2146334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89464684" }, "bbox": [ -0.7204503, 51.2139071, -0.7204503, 51.2139071 ], "geometry": { "type": "Point", "coordinates": [ -0.7204503, 51.2139071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89484407" }, "bbox": [ -0.720687, 51.2248244, -0.720687, 51.2248244 ], "geometry": { "type": "Point", "coordinates": [ -0.720687, 51.2248244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89482910" }, "bbox": [ -0.721871, 51.2252433, -0.721871, 51.2252433 ], "geometry": { "type": "Point", "coordinates": [ -0.721871, 51.2252433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89455145" }, "bbox": [ -0.7201401, 51.201325, -0.7201401, 51.201325 ], "geometry": { "type": "Point", "coordinates": [ -0.7201401, 51.201325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89454747" }, "bbox": [ -0.720678, 51.2014828, -0.720678, 51.2014828 ], "geometry": { "type": "Point", "coordinates": [ -0.720678, 51.2014828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89455654" }, "bbox": [ -0.7193728, 51.2021215, -0.7193728, 51.2021215 ], "geometry": { "type": "Point", "coordinates": [ -0.7193728, 51.2021215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89455560" }, "bbox": [ -0.7194209, 51.2026626, -0.7194209, 51.2026626 ], "geometry": { "type": "Point", "coordinates": [ -0.7194209, 51.2026626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89454657" }, "bbox": [ -0.7206961, 51.2024753, -0.7206961, 51.2024753 ], "geometry": { "type": "Point", "coordinates": [ -0.7206961, 51.2024753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89454751" }, "bbox": [ -0.7205842, 51.2018705, -0.7205842, 51.2018705 ], "geometry": { "type": "Point", "coordinates": [ -0.7205842, 51.2018705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81476245" }, "bbox": [ -0.8326769, 51.2205113, -0.8326769, 51.2205113 ], "geometry": { "type": "Point", "coordinates": [ -0.8326769, 51.2205113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81476829" }, "bbox": [ -0.8317344, 51.2190153, -0.8317344, 51.2190153 ], "geometry": { "type": "Point", "coordinates": [ -0.8317344, 51.2190153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81475732" }, "bbox": [ -0.8336454, 51.2193271, -0.8336454, 51.2193271 ], "geometry": { "type": "Point", "coordinates": [ -0.8336454, 51.2193271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83472640" }, "bbox": [ -0.8090164, 51.2196741, -0.8090164, 51.2196741 ], "geometry": { "type": "Point", "coordinates": [ -0.8090164, 51.2196741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83473774" }, "bbox": [ -0.8074965, 51.2228454, -0.8074965, 51.2228454 ], "geometry": { "type": "Point", "coordinates": [ -0.8074965, 51.2228454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83473486" }, "bbox": [ -0.8079078, 51.2239165, -0.8079078, 51.2239165 ], "geometry": { "type": "Point", "coordinates": [ -0.8079078, 51.2239165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83489065" }, "bbox": [ -0.7991532, 51.2306881, -0.7991532, 51.2306881 ], "geometry": { "type": "Point", "coordinates": [ -0.7991532, 51.2306881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83485129" }, "bbox": [ -0.8053188, 51.2277591, -0.8053188, 51.2277591 ], "geometry": { "type": "Point", "coordinates": [ -0.8053188, 51.2277591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83476691" }, "bbox": [ -0.803401, 51.224188, -0.803401, 51.224188 ], "geometry": { "type": "Point", "coordinates": [ -0.803401, 51.224188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27464226" }, "bbox": [ -0.1785618, 51.2010533, -0.1785618, 51.2010533 ], "geometry": { "type": "Point", "coordinates": [ -0.1785618, 51.2010533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30418186" }, "bbox": [ -0.1299738, 51.1609477, -0.1299738, 51.1609477 ], "geometry": { "type": "Point", "coordinates": [ -0.1299738, 51.1609477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30418553" }, "bbox": [ -0.1298304, 51.1584702, -0.1298304, 51.1584702 ], "geometry": { "type": "Point", "coordinates": [ -0.1298304, 51.1584702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39552900" }, "bbox": [ -0.0041847, 51.2772057, -0.0041847, 51.2772057 ], "geometry": { "type": "Point", "coordinates": [ -0.0041847, 51.2772057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41442719" }, "bbox": [ 0.0198464, 51.1795381, 0.0198464, 51.1795381 ], "geometry": { "type": "Point", "coordinates": [ 0.0198464, 51.1795381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40449514" }, "bbox": [ 0.0149857, 51.1791046, 0.0149857, 51.1791046 ], "geometry": { "type": "Point", "coordinates": [ 0.0149857, 51.1791046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40449603" }, "bbox": [ 0.0151948, 51.178082, 0.0151948, 51.178082 ], "geometry": { "type": "Point", "coordinates": [ 0.0151948, 51.178082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406206" }, "bbox": [ -0.5341789, 51.1506994, -0.5341789, 51.1506994 ], "geometry": { "type": "Point", "coordinates": [ -0.5341789, 51.1506994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02418036" }, "bbox": [ -0.5312993, 51.1623454, -0.5312993, 51.1623454 ], "geometry": { "type": "Point", "coordinates": [ -0.5312993, 51.1623454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15567534" }, "bbox": [ -0.3419432, 51.2944107, -0.3419432, 51.2944107 ], "geometry": { "type": "Point", "coordinates": [ -0.3419432, 51.2944107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13524392" }, "bbox": [ -0.3756106, 51.2641642, -0.3756106, 51.2641642 ], "geometry": { "type": "Point", "coordinates": [ -0.3756106, 51.2641642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89484746" }, "bbox": [ -0.7198455, 51.2283725, -0.7198455, 51.2283725 ], "geometry": { "type": "Point", "coordinates": [ -0.7198455, 51.2283725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89484333" }, "bbox": [ -0.7205832, 51.227206, -0.7205832, 51.227206 ], "geometry": { "type": "Point", "coordinates": [ -0.7205832, 51.227206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89488484" }, "bbox": [ -0.7146107, 51.2313609, -0.7146107, 51.2313609 ], "geometry": { "type": "Point", "coordinates": [ -0.7146107, 51.2313609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89484893" }, "bbox": [ -0.7199193, 51.2326157, -0.7199193, 51.2326157 ], "geometry": { "type": "Point", "coordinates": [ -0.7199193, 51.2326157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89485430" }, "bbox": [ -0.7189549, 51.2268805, -0.7189549, 51.2268805 ], "geometry": { "type": "Point", "coordinates": [ -0.7189549, 51.2268805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89487951" }, "bbox": [ -0.7153481, 51.228693, -0.7153481, 51.228693 ], "geometry": { "type": "Point", "coordinates": [ -0.7153481, 51.228693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89484244" }, "bbox": [ -0.7216396, 51.2279379, -0.7216396, 51.2279379 ], "geometry": { "type": "Point", "coordinates": [ -0.7216396, 51.2279379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03471808" }, "bbox": [ -0.5242098, 51.2136156, -0.5242098, 51.2136156 ], "geometry": { "type": "Point", "coordinates": [ -0.5242098, 51.2136156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03471310" }, "bbox": [ -0.524931, 51.2137125, -0.524931, 51.2137125 ], "geometry": { "type": "Point", "coordinates": [ -0.524931, 51.2137125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03471610" }, "bbox": [ -0.5243352, 51.2138657, -0.5243352, 51.2138657 ], "geometry": { "type": "Point", "coordinates": [ -0.5243352, 51.2138657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15437813" }, "bbox": [ -0.3450734, 51.1758525, -0.3450734, 51.1758525 ], "geometry": { "type": "Point", "coordinates": [ -0.3450734, 51.1758525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361542" }, "bbox": [ -0.4700609, 51.1167657, -0.4700609, 51.1167657 ], "geometry": { "type": "Point", "coordinates": [ -0.4700609, 51.1167657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07364728" }, "bbox": [ -0.4661531, 51.1159663, -0.4661531, 51.1159663 ], "geometry": { "type": "Point", "coordinates": [ -0.4661531, 51.1159663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29485691" }, "bbox": [ -0.1458307, 51.2246364, -0.1458307, 51.2246364 ], "geometry": { "type": "Point", "coordinates": [ -0.1458307, 51.2246364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29487293" }, "bbox": [ -0.1437501, 51.2248278, -0.1437501, 51.2248278 ], "geometry": { "type": "Point", "coordinates": [ -0.1437501, 51.2248278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29487688" }, "bbox": [ -0.1442887, 51.224259, -0.1442887, 51.224259 ], "geometry": { "type": "Point", "coordinates": [ -0.1442887, 51.224259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04371429" }, "bbox": [ -0.5124424, 51.1245766, -0.5124424, 51.1245766 ], "geometry": { "type": "Point", "coordinates": [ -0.5124424, 51.1245766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04373007" }, "bbox": [ -0.5128599, 51.123828, -0.5128599, 51.123828 ], "geometry": { "type": "Point", "coordinates": [ -0.5128599, 51.123828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04361694" }, "bbox": [ -0.5133373, 51.1222155, -0.5133373, 51.1222155 ], "geometry": { "type": "Point", "coordinates": [ -0.5133373, 51.1222155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03365940" }, "bbox": [ -0.5215594, 51.1175455, -0.5215594, 51.1175455 ], "geometry": { "type": "Point", "coordinates": [ -0.5215594, 51.1175455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368784" }, "bbox": [ -0.5174171, 51.1214283, -0.5174171, 51.1214283 ], "geometry": { "type": "Point", "coordinates": [ -0.5174171, 51.1214283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03377806" }, "bbox": [ -0.518698, 51.1232381, -0.518698, 51.1232381 ], "geometry": { "type": "Point", "coordinates": [ -0.518698, 51.1232381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03377942" }, "bbox": [ -0.5181562, 51.1267448, -0.5181562, 51.1267448 ], "geometry": { "type": "Point", "coordinates": [ -0.5181562, 51.1267448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03378945" }, "bbox": [ -0.516668, 51.127068, -0.516668, 51.127068 ], "geometry": { "type": "Point", "coordinates": [ -0.516668, 51.127068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410489" }, "bbox": [ -0.427598, 51.1656864, -0.427598, 51.1656864 ], "geometry": { "type": "Point", "coordinates": [ -0.427598, 51.1656864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10390791" }, "bbox": [ -0.4279171, 51.1477462, -0.4279171, 51.1477462 ], "geometry": { "type": "Point", "coordinates": [ -0.4279171, 51.1477462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89451807" }, "bbox": [ -0.7250017, 51.1978206, -0.7250017, 51.1978206 ], "geometry": { "type": "Point", "coordinates": [ -0.7250017, 51.1978206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89454503" }, "bbox": [ -0.721013, 51.1974915, -0.721013, 51.1974915 ], "geometry": { "type": "Point", "coordinates": [ -0.721013, 51.1974915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89444658" }, "bbox": [ -0.7210097, 51.1935862, -0.7210097, 51.1935862 ], "geometry": { "type": "Point", "coordinates": [ -0.7210097, 51.1935862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89442367" }, "bbox": [ -0.7242582, 51.194433, -0.7242582, 51.194433 ], "geometry": { "type": "Point", "coordinates": [ -0.7242582, 51.194433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89443450" }, "bbox": [ -0.7226736, 51.1926897, -0.7226736, 51.1926897 ], "geometry": { "type": "Point", "coordinates": [ -0.7226736, 51.1926897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89447084" }, "bbox": [ -0.7175477, 51.1958282, -0.7175477, 51.1958282 ], "geometry": { "type": "Point", "coordinates": [ -0.7175477, 51.1958282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89446659" }, "bbox": [ -0.7182822, 51.1935132, -0.7182822, 51.1935132 ], "geometry": { "type": "Point", "coordinates": [ -0.7182822, 51.1935132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89441687" }, "bbox": [ -0.725335, 51.1961665, -0.725335, 51.1961665 ], "geometry": { "type": "Point", "coordinates": [ -0.725335, 51.1961665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89444892" }, "bbox": [ -0.7207655, 51.1965413, -0.7207655, 51.1965413 ], "geometry": { "type": "Point", "coordinates": [ -0.7207655, 51.1965413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89447964" }, "bbox": [ -0.7165955, 51.1938411, -0.7165955, 51.1938411 ], "geometry": { "type": "Point", "coordinates": [ -0.7165955, 51.1938411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89443054" }, "bbox": [ -0.7233777, 51.1931547, -0.7233777, 51.1931547 ], "geometry": { "type": "Point", "coordinates": [ -0.7233777, 51.1931547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89443194" }, "bbox": [ -0.7230401, 51.1965818, -0.7230401, 51.1965818 ], "geometry": { "type": "Point", "coordinates": [ -0.7230401, 51.1965818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89442462" }, "bbox": [ -0.7239238, 51.1937898, -0.7239238, 51.1937898 ], "geometry": { "type": "Point", "coordinates": [ -0.7239238, 51.1937898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89446177" }, "bbox": [ -0.718912, 51.1951317, -0.718912, 51.1951317 ], "geometry": { "type": "Point", "coordinates": [ -0.718912, 51.1951317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89445763" }, "bbox": [ -0.7194623, 51.1940051, -0.7194623, 51.1940051 ], "geometry": { "type": "Point", "coordinates": [ -0.7194623, 51.1940051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89442961" }, "bbox": [ -0.7234642, 51.1937629, -0.7234642, 51.1937629 ], "geometry": { "type": "Point", "coordinates": [ -0.7234642, 51.1937629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89442974" }, "bbox": [ -0.72346, 51.1951055, -0.72346, 51.1951055 ], "geometry": { "type": "Point", "coordinates": [ -0.72346, 51.1951055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36539713" }, "bbox": [ -0.0383687, 51.2609187, -0.0383687, 51.2609187 ], "geometry": { "type": "Point", "coordinates": [ -0.0383687, 51.2609187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95591103" }, "bbox": [ -0.6367784, 51.322533, -0.6367784, 51.322533 ], "geometry": { "type": "Point", "coordinates": [ -0.6367784, 51.322533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94588680" }, "bbox": [ -0.6401316, 51.3204395, -0.6401316, 51.3204395 ], "geometry": { "type": "Point", "coordinates": [ -0.6401316, 51.3204395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94589484" }, "bbox": [ -0.638909, 51.3207978, -0.638909, 51.3207978 ], "geometry": { "type": "Point", "coordinates": [ -0.638909, 51.3207978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90426653" }, "bbox": [ -0.7045837, 51.1748404, -0.7045837, 51.1748404 ], "geometry": { "type": "Point", "coordinates": [ -0.7045837, 51.1748404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18398423" }, "bbox": [ -0.302158, 51.1402587, -0.302158, 51.1402587 ], "geometry": { "type": "Point", "coordinates": [ -0.302158, 51.1402587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18397322" }, "bbox": [ -0.305328, 51.1396409, -0.305328, 51.1396409 ], "geometry": { "type": "Point", "coordinates": [ -0.305328, 51.1396409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09483660" }, "bbox": [ -0.4356486, 51.2267109, -0.4356486, 51.2267109 ], "geometry": { "type": "Point", "coordinates": [ -0.4356486, 51.2267109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09482656" }, "bbox": [ -0.4367699, 51.2259146, -0.4367699, 51.2259146 ], "geometry": { "type": "Point", "coordinates": [ -0.4367699, 51.2259146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93477418" }, "bbox": [ -0.6590434, 51.2161259, -0.6590434, 51.2161259 ], "geometry": { "type": "Point", "coordinates": [ -0.6590434, 51.2161259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85414184" }, "bbox": [ -0.7810589, 51.1692644, -0.7810589, 51.1692644 ], "geometry": { "type": "Point", "coordinates": [ -0.7810589, 51.1692644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85438601" }, "bbox": [ -0.7715793, 51.180178, -0.7715793, 51.180178 ], "geometry": { "type": "Point", "coordinates": [ -0.7715793, 51.180178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85429243" }, "bbox": [ -0.7720157, 51.1746387, -0.7720157, 51.1746387 ], "geometry": { "type": "Point", "coordinates": [ -0.7720157, 51.1746387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85428751" }, "bbox": [ -0.7734486, 51.1755672, -0.7734486, 51.1755672 ], "geometry": { "type": "Point", "coordinates": [ -0.7734486, 51.1755672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85428061" }, "bbox": [ -0.7752646, 51.1768133, -0.7752646, 51.1768133 ], "geometry": { "type": "Point", "coordinates": [ -0.7752646, 51.1768133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87459909" }, "bbox": [ -0.7421228, 51.1983221, -0.7421228, 51.1983221 ], "geometry": { "type": "Point", "coordinates": [ -0.7421228, 51.1983221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87458808" }, "bbox": [ -0.7434525, 51.1982756, -0.7434525, 51.1982756 ], "geometry": { "type": "Point", "coordinates": [ -0.7434525, 51.1982756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87458811" }, "bbox": [ -0.7436688, 51.198458, -0.7436688, 51.198458 ], "geometry": { "type": "Point", "coordinates": [ -0.7436688, 51.198458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88453010" }, "bbox": [ -0.7370847, 51.1987007, -0.7370847, 51.1987007 ], "geometry": { "type": "Point", "coordinates": [ -0.7370847, 51.1987007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88450400" }, "bbox": [ -0.7409894, 51.1973551, -0.7409894, 51.1973551 ], "geometry": { "type": "Point", "coordinates": [ -0.7409894, 51.1973551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11369229" }, "bbox": [ -0.4021087, 51.1153683, -0.4021087, 51.1153683 ], "geometry": { "type": "Point", "coordinates": [ -0.4021087, 51.1153683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41457827" }, "bbox": [ 0.0274633, 51.1889681, 0.0274633, 51.1889681 ], "geometry": { "type": "Point", "coordinates": [ 0.0274633, 51.1889681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41456525" }, "bbox": [ 0.0257965, 51.1888714, 0.0257965, 51.1888714 ], "geometry": { "type": "Point", "coordinates": [ 0.0257965, 51.1888714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40458873" }, "bbox": [ 0.0146621, 51.1934504, 0.0146621, 51.1934504 ], "geometry": { "type": "Point", "coordinates": [ 0.0146621, 51.1934504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40458478" }, "bbox": [ 0.0142524, 51.1943626, 0.0142524, 51.1943626 ], "geometry": { "type": "Point", "coordinates": [ 0.0142524, 51.1943626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26462529" }, "bbox": [ -0.1941615, 51.2020795, -0.1941615, 51.2020795 ], "geometry": { "type": "Point", "coordinates": [ -0.1941615, 51.2020795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13664261" }, "bbox": [ -0.3713721, 51.3872054, -0.3713721, 51.3872054 ], "geometry": { "type": "Point", "coordinates": [ -0.3713721, 51.3872054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13666263" }, "bbox": [ -0.3685867, 51.387376, -0.3685867, 51.387376 ], "geometry": { "type": "Point", "coordinates": [ -0.3685867, 51.387376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15468599" }, "bbox": [ -0.3425485, 51.2105716, -0.3425485, 51.2105716 ], "geometry": { "type": "Point", "coordinates": [ -0.3425485, 51.2105716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36514162" }, "bbox": [ -0.0468068, 51.2474084, -0.0468068, 51.2474084 ], "geometry": { "type": "Point", "coordinates": [ -0.0468068, 51.2474084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36514163" }, "bbox": [ -0.0468302, 51.2476328, -0.0468302, 51.2476328 ], "geometry": { "type": "Point", "coordinates": [ -0.0468302, 51.2476328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00340468" }, "bbox": [ -0.5725689, 51.1027175, -0.5725689, 51.1027175 ], "geometry": { "type": "Point", "coordinates": [ -0.5725689, 51.1027175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97366268" }, "bbox": [ -0.6064624, 51.1209599, -0.6064624, 51.1209599 ], "geometry": { "type": "Point", "coordinates": [ -0.6064624, 51.1209599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31410993" }, "bbox": [ -0.1270105, 51.1613845, -0.1270105, 51.1613845 ], "geometry": { "type": "Point", "coordinates": [ -0.1270105, 51.1613845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31411776" }, "bbox": [ -0.1255236, 51.1600316, -0.1255236, 51.1600316 ], "geometry": { "type": "Point", "coordinates": [ -0.1255236, 51.1600316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31410162" }, "bbox": [ -0.1282783, 51.1589439, -0.1282783, 51.1589439 ], "geometry": { "type": "Point", "coordinates": [ -0.1282783, 51.1589439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31410640" }, "bbox": [ -0.1278567, 51.1572535, -0.1278567, 51.1572535 ], "geometry": { "type": "Point", "coordinates": [ -0.1278567, 51.1572535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31423222" }, "bbox": [ -0.1233229, 51.1642331, -0.1233229, 51.1642331 ], "geometry": { "type": "Point", "coordinates": [ -0.1233229, 51.1642331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31422921" }, "bbox": [ -0.1236664, 51.1641307, -0.1236664, 51.1641307 ], "geometry": { "type": "Point", "coordinates": [ -0.1236664, 51.1641307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31422316" }, "bbox": [ -0.1243205, 51.1635862, -0.1243205, 51.1635862 ], "geometry": { "type": "Point", "coordinates": [ -0.1243205, 51.1635862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31422019" }, "bbox": [ -0.1248721, 51.1639925, -0.1248721, 51.1639925 ], "geometry": { "type": "Point", "coordinates": [ -0.1248721, 51.1639925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07564537" }, "bbox": [ -0.4601236, 51.2963287, -0.4601236, 51.2963287 ], "geometry": { "type": "Point", "coordinates": [ -0.4601236, 51.2963287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00534759" }, "bbox": [ -0.5614035, 51.2724992, -0.5614035, 51.2724992 ], "geometry": { "type": "Point", "coordinates": [ -0.5614035, 51.2724992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00533746" }, "bbox": [ -0.5624194, 51.2714981, -0.5624194, 51.2714981 ], "geometry": { "type": "Point", "coordinates": [ -0.5624194, 51.2714981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00534657" }, "bbox": [ -0.5616977, 51.2725968, -0.5616977, 51.2725968 ], "geometry": { "type": "Point", "coordinates": [ -0.5616977, 51.2725968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00534967" }, "bbox": [ -0.5606354, 51.2734069, -0.5606354, 51.2734069 ], "geometry": { "type": "Point", "coordinates": [ -0.5606354, 51.2734069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42504841" }, "bbox": [ 0.0395555, 51.2350836, 0.0395555, 51.2350836 ], "geometry": { "type": "Point", "coordinates": [ 0.0395555, 51.2350836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399098" }, "bbox": [ -0.2877655, 51.1463158, -0.2877655, 51.1463158 ], "geometry": { "type": "Point", "coordinates": [ -0.2877655, 51.1463158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399696" }, "bbox": [ -0.2863247, 51.146483, -0.2863247, 51.146483 ], "geometry": { "type": "Point", "coordinates": [ -0.2863247, 51.146483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19409506" }, "bbox": [ -0.2863613, 51.1471833, -0.2863613, 51.1471833 ], "geometry": { "type": "Point", "coordinates": [ -0.2863613, 51.1471833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05598779" }, "bbox": [ -0.4857633, 51.3281331, -0.4857633, 51.3281331 ], "geometry": { "type": "Point", "coordinates": [ -0.4857633, 51.3281331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521840" }, "bbox": [ -0.60834, 51.2624134, -0.60834, 51.2624134 ], "geometry": { "type": "Point", "coordinates": [ -0.60834, 51.2624134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522142" }, "bbox": [ -0.6080578, 51.2628495, -0.6080578, 51.2628495 ], "geometry": { "type": "Point", "coordinates": [ -0.6080578, 51.2628495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521736" }, "bbox": [ -0.6086039, 51.2622346, -0.6086039, 51.2622346 ], "geometry": { "type": "Point", "coordinates": [ -0.6086039, 51.2622346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03435044" }, "bbox": [ -0.5205641, 51.1804886, -0.5205641, 51.1804886 ], "geometry": { "type": "Point", "coordinates": [ -0.5205641, 51.1804886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03433757" }, "bbox": [ -0.5223214, 51.1820909, -0.5223214, 51.1820909 ], "geometry": { "type": "Point", "coordinates": [ -0.5223214, 51.1820909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03425653" }, "bbox": [ -0.5206579, 51.1724481, -0.5206579, 51.1724481 ], "geometry": { "type": "Point", "coordinates": [ -0.5206579, 51.1724481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03426908" }, "bbox": [ -0.518177, 51.1684998, -0.518177, 51.1684998 ], "geometry": { "type": "Point", "coordinates": [ -0.518177, 51.1684998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427109" }, "bbox": [ -0.518016, 51.1687791, -0.518016, 51.1687791 ], "geometry": { "type": "Point", "coordinates": [ -0.518016, 51.1687791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03423443" }, "bbox": [ -0.5229442, 51.1717594, -0.5229442, 51.1717594 ], "geometry": { "type": "Point", "coordinates": [ -0.5229442, 51.1717594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21453367" }, "bbox": [ -0.2649592, 51.1971274, -0.2649592, 51.1971274 ], "geometry": { "type": "Point", "coordinates": [ -0.2649592, 51.1971274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456550" }, "bbox": [ -0.2600905, 51.1959966, -0.2600905, 51.1959966 ], "geometry": { "type": "Point", "coordinates": [ -0.2600905, 51.1959966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456252" }, "bbox": [ -0.2611324, 51.1960773, -0.2611324, 51.1960773 ], "geometry": { "type": "Point", "coordinates": [ -0.2611324, 51.1960773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456160" }, "bbox": [ -0.2608889, 51.1967585, -0.2608889, 51.1967585 ], "geometry": { "type": "Point", "coordinates": [ -0.2608889, 51.1967585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456342" }, "bbox": [ -0.2605721, 51.1951308, -0.2605721, 51.1951308 ], "geometry": { "type": "Point", "coordinates": [ -0.2605721, 51.1951308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21455942" }, "bbox": [ -0.2611449, 51.1952616, -0.2611449, 51.1952616 ], "geometry": { "type": "Point", "coordinates": [ -0.2611449, 51.1952616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21467648" }, "bbox": [ -0.2579981, 51.204165, -0.2579981, 51.204165 ], "geometry": { "type": "Point", "coordinates": [ -0.2579981, 51.204165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21466562" }, "bbox": [ -0.2597288, 51.2060238, -0.2597288, 51.2060238 ], "geometry": { "type": "Point", "coordinates": [ -0.2597288, 51.2060238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21467657" }, "bbox": [ -0.2583148, 51.2054619, -0.2583148, 51.2054619 ], "geometry": { "type": "Point", "coordinates": [ -0.2583148, 51.2054619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22436258" }, "bbox": [ -0.2474717, 51.1784965, -0.2474717, 51.1784965 ], "geometry": { "type": "Point", "coordinates": [ -0.2474717, 51.1784965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22435294" }, "bbox": [ -0.2483541, 51.1816584, -0.2483541, 51.1816584 ], "geometry": { "type": "Point", "coordinates": [ -0.2483541, 51.1816584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22435493" }, "bbox": [ -0.2480613, 51.1814961, -0.2480613, 51.1814961 ], "geometry": { "type": "Point", "coordinates": [ -0.2480613, 51.1814961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455090" }, "bbox": [ -0.2481826, 51.198984, -0.2481826, 51.198984 ], "geometry": { "type": "Point", "coordinates": [ -0.2481826, 51.198984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22443778" }, "bbox": [ -0.2506127, 51.1893999, -0.2506127, 51.1893999 ], "geometry": { "type": "Point", "coordinates": [ -0.2506127, 51.1893999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22443694" }, "bbox": [ -0.2501942, 51.1906866, -0.2501942, 51.1906866 ], "geometry": { "type": "Point", "coordinates": [ -0.2501942, 51.1906866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22443983" }, "bbox": [ -0.249918, 51.1897106, -0.249918, 51.1897106 ], "geometry": { "type": "Point", "coordinates": [ -0.249918, 51.1897106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22447974" }, "bbox": [ -0.2442624, 51.1887347, -0.2442624, 51.1887347 ], "geometry": { "type": "Point", "coordinates": [ -0.2442624, 51.1887347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03757712" }, "bbox": [ -0.5068403, 51.4657485, -0.5068403, 51.4657485 ], "geometry": { "type": "Point", "coordinates": [ -0.5068403, 51.4657485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03758011" }, "bbox": [ -0.5069136, 51.4654779, -0.5069136, 51.4654779 ], "geometry": { "type": "Point", "coordinates": [ -0.5069136, 51.4654779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02738209" }, "bbox": [ -0.5218744, 51.447467, -0.5218744, 51.447467 ], "geometry": { "type": "Point", "coordinates": [ -0.5218744, 51.447467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02728294" }, "bbox": [ -0.5216777, 51.4456596, -0.5216777, 51.4456596 ], "geometry": { "type": "Point", "coordinates": [ -0.5216777, 51.4456596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24500744" }, "bbox": [ -0.2241536, 51.2396117, -0.2241536, 51.2396117 ], "geometry": { "type": "Point", "coordinates": [ -0.2241536, 51.2396117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00568641" }, "bbox": [ -0.5546225, 51.2979986, -0.5546225, 51.2979986 ], "geometry": { "type": "Point", "coordinates": [ -0.5546225, 51.2979986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01563033" }, "bbox": [ -0.5485257, 51.2968976, -0.5485257, 51.2968976 ], "geometry": { "type": "Point", "coordinates": [ -0.5485257, 51.2968976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01566425" }, "bbox": [ -0.5434619, 51.2959273, -0.5434619, 51.2959273 ], "geometry": { "type": "Point", "coordinates": [ -0.5434619, 51.2959273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09416269" }, "bbox": [ -0.4337391, 51.1642672, -0.4337391, 51.1642672 ], "geometry": { "type": "Point", "coordinates": [ -0.4337391, 51.1642672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09416365" }, "bbox": [ -0.4333472, 51.1634984, -0.4333472, 51.1634984 ], "geometry": { "type": "Point", "coordinates": [ -0.4333472, 51.1634984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569529" }, "bbox": [ -0.4386743, 51.2952785, -0.4386743, 51.2952785 ], "geometry": { "type": "Point", "coordinates": [ -0.4386743, 51.2952785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569531" }, "bbox": [ -0.4387299, 51.2956032, -0.4387299, 51.2956032 ], "geometry": { "type": "Point", "coordinates": [ -0.4387299, 51.2956032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09560848" }, "bbox": [ -0.4367306, 51.2967599, -0.4367306, 51.2967599 ], "geometry": { "type": "Point", "coordinates": [ -0.4367306, 51.2967599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09560134" }, "bbox": [ -0.4380071, 51.2957982, -0.4380071, 51.2957982 ], "geometry": { "type": "Point", "coordinates": [ -0.4380071, 51.2957982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02542927" }, "bbox": [ -0.5349684, 51.2789479, -0.5349684, 51.2789479 ], "geometry": { "type": "Point", "coordinates": [ -0.5349684, 51.2789479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02544628" }, "bbox": [ -0.5325072, 51.2785682, -0.5325072, 51.2785682 ], "geometry": { "type": "Point", "coordinates": [ -0.5325072, 51.2785682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02543826" }, "bbox": [ -0.5336494, 51.2783542, -0.5336494, 51.2783542 ], "geometry": { "type": "Point", "coordinates": [ -0.5336494, 51.2783542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418636" }, "bbox": [ -0.5159746, 51.1620609, -0.5159746, 51.1620609 ], "geometry": { "type": "Point", "coordinates": [ -0.5159746, 51.1620609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418630" }, "bbox": [ -0.5160836, 51.1615718, -0.5160836, 51.1615718 ], "geometry": { "type": "Point", "coordinates": [ -0.5160836, 51.1615718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400892" }, "bbox": [ -0.516446, 51.1579612, -0.516446, 51.1579612 ], "geometry": { "type": "Point", "coordinates": [ -0.516446, 51.1579612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20560371" }, "bbox": [ -0.2799951, 51.297921, -0.2799951, 51.297921 ], "geometry": { "type": "Point", "coordinates": [ -0.2799951, 51.297921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19569177" }, "bbox": [ -0.2803095, 51.297602, -0.2803095, 51.297602 ], "geometry": { "type": "Point", "coordinates": [ -0.2803095, 51.297602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24524505" }, "bbox": [ -0.2203734, 51.2542672, -0.2203734, 51.2542672 ], "geometry": { "type": "Point", "coordinates": [ -0.2203734, 51.2542672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24528116" }, "bbox": [ -0.2179631, 51.2562409, -0.2179631, 51.2562409 ], "geometry": { "type": "Point", "coordinates": [ -0.2179631, 51.2562409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14521816" }, "bbox": [ -0.365106, 51.2572571, -0.365106, 51.2572571 ], "geometry": { "type": "Point", "coordinates": [ -0.365106, 51.2572571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91485381" }, "bbox": [ -0.6904094, 51.2311262, -0.6904094, 51.2311262 ], "geometry": { "type": "Point", "coordinates": [ -0.6904094, 51.2311262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91484377" }, "bbox": [ -0.6918909, 51.2307483, -0.6918909, 51.2307483 ], "geometry": { "type": "Point", "coordinates": [ -0.6918909, 51.2307483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34556755" }, "bbox": [ -0.0704393, 51.2832937, -0.0704393, 51.2832937 ], "geometry": { "type": "Point", "coordinates": [ -0.0704393, 51.2832937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34556734" }, "bbox": [ -0.0703635, 51.2813649, -0.0703635, 51.2813649 ], "geometry": { "type": "Point", "coordinates": [ -0.0703635, 51.2813649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34578021" }, "bbox": [ -0.0677763, 51.2981201, -0.0677763, 51.2981201 ], "geometry": { "type": "Point", "coordinates": [ -0.0677763, 51.2981201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34578117" }, "bbox": [ -0.0675448, 51.2977646, -0.0675448, 51.2977646 ], "geometry": { "type": "Point", "coordinates": [ -0.0675448, 51.2977646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34577522" }, "bbox": [ -0.0688238, 51.2985764, -0.0688238, 51.2985764 ], "geometry": { "type": "Point", "coordinates": [ -0.0688238, 51.2985764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34558460" }, "bbox": [ -0.0678065, 51.283752, -0.0678065, 51.283752 ], "geometry": { "type": "Point", "coordinates": [ -0.0678065, 51.283752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34487470" }, "bbox": [ -0.0719705, 51.22135, -0.0719705, 51.22135 ], "geometry": { "type": "Point", "coordinates": [ -0.0719705, 51.22135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34489764" }, "bbox": [ -0.0685738, 51.2209085, -0.0685738, 51.2209085 ], "geometry": { "type": "Point", "coordinates": [ -0.0685738, 51.2209085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12630101" }, "bbox": [ -0.3929013, 51.3551512, -0.3929013, 51.3551512 ], "geometry": { "type": "Point", "coordinates": [ -0.3929013, 51.3551512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12620196" }, "bbox": [ -0.3928687, 51.3546553, -0.3928687, 51.3546553 ], "geometry": { "type": "Point", "coordinates": [ -0.3928687, 51.3546553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11627197" }, "bbox": [ -0.3969988, 51.3549007, -0.3969988, 51.3549007 ], "geometry": { "type": "Point", "coordinates": [ -0.3969988, 51.3549007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11627498" }, "bbox": [ -0.3966237, 51.3549751, -0.3966237, 51.3549751 ], "geometry": { "type": "Point", "coordinates": [ -0.3966237, 51.3549751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11629296" }, "bbox": [ -0.3941542, 51.3547328, -0.3941542, 51.3547328 ], "geometry": { "type": "Point", "coordinates": [ -0.3941542, 51.3547328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11629099" }, "bbox": [ -0.3943523, 51.3549924, -0.3943523, 51.3549924 ], "geometry": { "type": "Point", "coordinates": [ -0.3943523, 51.3549924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11626789" }, "bbox": [ -0.3976112, 51.3542326, -0.3976112, 51.3542326 ], "geometry": { "type": "Point", "coordinates": [ -0.3976112, 51.3542326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11626694" }, "bbox": [ -0.398107, 51.3547822, -0.398107, 51.3547822 ], "geometry": { "type": "Point", "coordinates": [ -0.398107, 51.3547822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11626697" }, "bbox": [ -0.3976029, 51.3549233, -0.3976029, 51.3549233 ], "geometry": { "type": "Point", "coordinates": [ -0.3976029, 51.3549233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11637805" }, "bbox": [ -0.3959684, 51.3554417, -0.3959684, 51.3554417 ], "geometry": { "type": "Point", "coordinates": [ -0.3959684, 51.3554417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11637901" }, "bbox": [ -0.3959501, 51.3550817, -0.3959501, 51.3550817 ], "geometry": { "type": "Point", "coordinates": [ -0.3959501, 51.3550817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11638902" }, "bbox": [ -0.394547, 51.3552476, -0.394547, 51.3552476 ], "geometry": { "type": "Point", "coordinates": [ -0.394547, 51.3552476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11638205" }, "bbox": [ -0.3954555, 51.355521, -0.3954555, 51.355521 ], "geometry": { "type": "Point", "coordinates": [ -0.3954555, 51.355521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11638004" }, "bbox": [ -0.3957233, 51.355502, -0.3957233, 51.355502 ], "geometry": { "type": "Point", "coordinates": [ -0.3957233, 51.355502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11638301" }, "bbox": [ -0.3952979, 51.3552057, -0.3952979, 51.3552057 ], "geometry": { "type": "Point", "coordinates": [ -0.3952979, 51.3552057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11638101" }, "bbox": [ -0.3955441, 51.3551515, -0.3955441, 51.3551515 ], "geometry": { "type": "Point", "coordinates": [ -0.3955441, 51.3551515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11637402" }, "bbox": [ -0.3968637, 51.3552898, -0.3968637, 51.3552898 ], "geometry": { "type": "Point", "coordinates": [ -0.3968637, 51.3552898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89414492" }, "bbox": [ -0.7220954, 51.1694857, -0.7220954, 51.1694857 ], "geometry": { "type": "Point", "coordinates": [ -0.7220954, 51.1694857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89416983" }, "bbox": [ -0.7187416, 51.1687932, -0.7187416, 51.1687932 ], "geometry": { "type": "Point", "coordinates": [ -0.7187416, 51.1687932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89417384" }, "bbox": [ -0.7180134, 51.1687933, -0.7180134, 51.1687933 ], "geometry": { "type": "Point", "coordinates": [ -0.7180134, 51.1687933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89417481" }, "bbox": [ -0.7178081, 51.1684969, -0.7178081, 51.1684969 ], "geometry": { "type": "Point", "coordinates": [ -0.7178081, 51.1684969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426314" }, "bbox": [ -0.7193295, 51.1715269, -0.7193295, 51.1715269 ], "geometry": { "type": "Point", "coordinates": [ -0.7193295, 51.1715269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426616" }, "bbox": [ -0.7189298, 51.1716186, -0.7189298, 51.1716186 ], "geometry": { "type": "Point", "coordinates": [ -0.7189298, 51.1716186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89427016" }, "bbox": [ -0.718365, 51.1716304, -0.718365, 51.1716304 ], "geometry": { "type": "Point", "coordinates": [ -0.718365, 51.1716304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426720" }, "bbox": [ -0.7187493, 51.172048, -0.7187493, 51.172048 ], "geometry": { "type": "Point", "coordinates": [ -0.7187493, 51.172048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426625" }, "bbox": [ -0.7188518, 51.1724523, -0.7188518, 51.1724523 ], "geometry": { "type": "Point", "coordinates": [ -0.7188518, 51.1724523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426217" }, "bbox": [ -0.7194515, 51.1718425, -0.7194515, 51.1718425 ], "geometry": { "type": "Point", "coordinates": [ -0.7194515, 51.1718425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426225" }, "bbox": [ -0.7194402, 51.1724586, -0.7194402, 51.1724586 ], "geometry": { "type": "Point", "coordinates": [ -0.7194402, 51.1724586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426432" }, "bbox": [ -0.7190623, 51.173015, -0.7190623, 51.173015 ], "geometry": { "type": "Point", "coordinates": [ -0.7190623, 51.173015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426132" }, "bbox": [ -0.7195145, 51.1730784, -0.7195145, 51.1730784 ], "geometry": { "type": "Point", "coordinates": [ -0.7195145, 51.1730784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426423" }, "bbox": [ -0.7191817, 51.1722926, -0.7191817, 51.1722926 ], "geometry": { "type": "Point", "coordinates": [ -0.7191817, 51.1722926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42414929" }, "bbox": [ 0.0346062, 51.1536692, 0.0346062, 51.1536692 ], "geometry": { "type": "Point", "coordinates": [ 0.0346062, 51.1536692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09463534" }, "bbox": [ -0.4359792, 51.2058773, -0.4359792, 51.2058773 ], "geometry": { "type": "Point", "coordinates": [ -0.4359792, 51.2058773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25451223" }, "bbox": [ -0.2102194, 51.1925153, -0.2102194, 51.1925153 ], "geometry": { "type": "Point", "coordinates": [ -0.2102194, 51.1925153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32483148" }, "bbox": [ -0.1068525, 51.2202953, -0.1068525, 51.2202953 ], "geometry": { "type": "Point", "coordinates": [ -0.1068525, 51.2202953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32485075" }, "bbox": [ -0.1039007, 51.2226837, -0.1039007, 51.2226837 ], "geometry": { "type": "Point", "coordinates": [ -0.1039007, 51.2226837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32482565" }, "bbox": [ -0.1076824, 51.2217671, -0.1076824, 51.2217671 ], "geometry": { "type": "Point", "coordinates": [ -0.1076824, 51.2217671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32483573" }, "bbox": [ -0.1062469, 51.2225716, -0.1062469, 51.2225716 ], "geometry": { "type": "Point", "coordinates": [ -0.1062469, 51.2225716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31475093" }, "bbox": [ -0.1184254, 51.2156298, -0.1184254, 51.2156298 ], "geometry": { "type": "Point", "coordinates": [ -0.1184254, 51.2156298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31476299" }, "bbox": [ -0.1163895, 51.2160545, -0.1163895, 51.2160545 ], "geometry": { "type": "Point", "coordinates": [ -0.1163895, 51.2160545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31487023" }, "bbox": [ -0.1157119, 51.2177704, -0.1157119, 51.2177704 ], "geometry": { "type": "Point", "coordinates": [ -0.1157119, 51.2177704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31485720" }, "bbox": [ -0.1174492, 51.2178299, -0.1174492, 51.2178299 ], "geometry": { "type": "Point", "coordinates": [ -0.1174492, 51.2178299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00477236" }, "bbox": [ -0.5594352, 51.2165827, -0.5594352, 51.2165827 ], "geometry": { "type": "Point", "coordinates": [ -0.5594352, 51.2165827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01479140" }, "bbox": [ -0.5409318, 51.2168291, -0.5409318, 51.2168291 ], "geometry": { "type": "Point", "coordinates": [ -0.5409318, 51.2168291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01471125" }, "bbox": [ -0.5539423, 51.2155596, -0.5539423, 51.2155596 ], "geometry": { "type": "Point", "coordinates": [ -0.5539423, 51.2155596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99461373" }, "bbox": [ -0.5817529, 51.211171, -0.5817529, 51.211171 ], "geometry": { "type": "Point", "coordinates": [ -0.5817529, 51.211171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99464185" }, "bbox": [ -0.5775412, 51.2121932, -0.5775412, 51.2121932 ], "geometry": { "type": "Point", "coordinates": [ -0.5775412, 51.2121932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99463065" }, "bbox": [ -0.5798788, 51.2104645, -0.5798788, 51.2104645 ], "geometry": { "type": "Point", "coordinates": [ -0.5798788, 51.2104645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99474883" }, "bbox": [ -0.5768531, 51.2209133, -0.5768531, 51.2209133 ], "geometry": { "type": "Point", "coordinates": [ -0.5768531, 51.2209133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99474412" }, "bbox": [ -0.5772793, 51.2146784, -0.5772793, 51.2146784 ], "geometry": { "type": "Point", "coordinates": [ -0.5772793, 51.2146784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99472709" }, "bbox": [ -0.5800187, 51.2144637, -0.5800187, 51.2144637 ], "geometry": { "type": "Point", "coordinates": [ -0.5800187, 51.2144637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99472401" }, "bbox": [ -0.5803641, 51.2136941, -0.5803641, 51.2136941 ], "geometry": { "type": "Point", "coordinates": [ -0.5803641, 51.2136941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99474716" }, "bbox": [ -0.5768163, 51.2151454, -0.5768163, 51.2151454 ], "geometry": { "type": "Point", "coordinates": [ -0.5768163, 51.2151454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98478666" }, "bbox": [ -0.5865146, 51.2196967, -0.5865146, 51.2196967 ], "geometry": { "type": "Point", "coordinates": [ -0.5865146, 51.2196967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497441" }, "bbox": [ -0.7158081, 51.2369233, -0.7158081, 51.2369233 ], "geometry": { "type": "Point", "coordinates": [ -0.7158081, 51.2369233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89498334" }, "bbox": [ -0.7145536, 51.2362133, -0.7145536, 51.2362133 ], "geometry": { "type": "Point", "coordinates": [ -0.7145536, 51.2362133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497432" }, "bbox": [ -0.7159329, 51.2361182, -0.7159329, 51.2361182 ], "geometry": { "type": "Point", "coordinates": [ -0.7159329, 51.2361182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497324" }, "bbox": [ -0.7160358, 51.2353534, -0.7160358, 51.2353534 ], "geometry": { "type": "Point", "coordinates": [ -0.7160358, 51.2353534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497118" }, "bbox": [ -0.7162714, 51.2348804, -0.7162714, 51.2348804 ], "geometry": { "type": "Point", "coordinates": [ -0.7162714, 51.2348804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35496904" }, "bbox": [ -0.0583059, 51.2243301, -0.0583059, 51.2243301 ], "geometry": { "type": "Point", "coordinates": [ -0.0583059, 51.2243301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495805" }, "bbox": [ -0.0597528, 51.2246016, -0.0597528, 51.2246016 ], "geometry": { "type": "Point", "coordinates": [ -0.0597528, 51.2246016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21566087" }, "bbox": [ -0.2572759, 51.2980657, -0.2572759, 51.2980657 ], "geometry": { "type": "Point", "coordinates": [ -0.2572759, 51.2980657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21566172" }, "bbox": [ -0.2571362, 51.2966417, -0.2571362, 51.2966417 ], "geometry": { "type": "Point", "coordinates": [ -0.2571362, 51.2966417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10377090" }, "bbox": [ -0.4182874, 51.129962, -0.4182874, 51.129962 ], "geometry": { "type": "Point", "coordinates": [ -0.4182874, 51.129962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11370110" }, "bbox": [ -0.4148808, 51.12239, -0.4148808, 51.12239 ], "geometry": { "type": "Point", "coordinates": [ -0.4148808, 51.12239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32493871" }, "bbox": [ -0.106098, 51.231337, -0.106098, 51.231337 ], "geometry": { "type": "Point", "coordinates": [ -0.106098, 51.231337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32493372" }, "bbox": [ -0.106042, 51.2313733, -0.106042, 51.2313733 ], "geometry": { "type": "Point", "coordinates": [ -0.106042, 51.2313733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32493261" }, "bbox": [ -0.1062072, 51.2304209, -0.1062072, 51.2304209 ], "geometry": { "type": "Point", "coordinates": [ -0.1062072, 51.2304209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06360937" }, "bbox": [ -0.4856482, 51.1168857, -0.4856482, 51.1168857 ], "geometry": { "type": "Point", "coordinates": [ -0.4856482, 51.1168857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06367762" }, "bbox": [ -0.4764125, 51.1192925, -0.4764125, 51.1192925 ], "geometry": { "type": "Point", "coordinates": [ -0.4764125, 51.1192925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06370491" }, "bbox": [ -0.4859253, 51.1306678, -0.4859253, 51.1306678 ], "geometry": { "type": "Point", "coordinates": [ -0.4859253, 51.1306678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06375964" }, "bbox": [ -0.4779136, 51.1282096, -0.4779136, 51.1282096 ], "geometry": { "type": "Point", "coordinates": [ -0.4779136, 51.1282096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06378094" }, "bbox": [ -0.4750224, 51.1308529, -0.4750224, 51.1308529 ], "geometry": { "type": "Point", "coordinates": [ -0.4750224, 51.1308529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06372721" }, "bbox": [ -0.482718, 51.1243469, -0.482718, 51.1243469 ], "geometry": { "type": "Point", "coordinates": [ -0.482718, 51.1243469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06373713" }, "bbox": [ -0.4812047, 51.1236308, -0.4812047, 51.1236308 ], "geometry": { "type": "Point", "coordinates": [ -0.4812047, 51.1236308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06375043" }, "bbox": [ -0.4795863, 51.1261094, -0.4795863, 51.1261094 ], "geometry": { "type": "Point", "coordinates": [ -0.4795863, 51.1261094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19383662" }, "bbox": [ -0.2954523, 51.1344515, -0.2954523, 51.1344515 ], "geometry": { "type": "Point", "coordinates": [ -0.2954523, 51.1344515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19384084" }, "bbox": [ -0.2944925, 51.136847, -0.2944925, 51.136847 ], "geometry": { "type": "Point", "coordinates": [ -0.2944925, 51.136847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19392349" }, "bbox": [ -0.2969231, 51.1421466, -0.2969231, 51.1421466 ], "geometry": { "type": "Point", "coordinates": [ -0.2969231, 51.1421466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395151" }, "bbox": [ -0.292955, 51.1424754, -0.292955, 51.1424754 ], "geometry": { "type": "Point", "coordinates": [ -0.292955, 51.1424754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18387865" }, "bbox": [ -0.3037001, 51.1347926, -0.3037001, 51.1347926 ], "geometry": { "type": "Point", "coordinates": [ -0.3037001, 51.1347926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388468" }, "bbox": [ -0.3027061, 51.1350545, -0.3027061, 51.1350545 ], "geometry": { "type": "Point", "coordinates": [ -0.3027061, 51.1350545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470598" }, "bbox": [ -0.654475, 51.2234109, -0.654475, 51.2234109 ], "geometry": { "type": "Point", "coordinates": [ -0.654475, 51.2234109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470495" }, "bbox": [ -0.654551, 51.2231262, -0.654551, 51.2231262 ], "geometry": { "type": "Point", "coordinates": [ -0.654551, 51.2231262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470195" }, "bbox": [ -0.6550824, 51.2230774, -0.6550824, 51.2230774 ], "geometry": { "type": "Point", "coordinates": [ -0.6550824, 51.2230774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470198" }, "bbox": [ -0.6550214, 51.2233714, -0.6550214, 51.2233714 ], "geometry": { "type": "Point", "coordinates": [ -0.6550214, 51.2233714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470979" }, "bbox": [ -0.6540856, 51.2216224, -0.6540856, 51.2216224 ], "geometry": { "type": "Point", "coordinates": [ -0.6540856, 51.2216224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479194" }, "bbox": [ -0.6556403, 51.2232434, -0.6556403, 51.2232434 ], "geometry": { "type": "Point", "coordinates": [ -0.6556403, 51.2232434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479695" }, "bbox": [ -0.6557215, 51.2230259, -0.6557215, 51.2230259 ], "geometry": { "type": "Point", "coordinates": [ -0.6557215, 51.2230259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479697" }, "bbox": [ -0.65569, 51.2232667, -0.65569, 51.2232667 ], "geometry": { "type": "Point", "coordinates": [ -0.65569, 51.2232667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479691" }, "bbox": [ -0.6559513, 51.2226353, -0.6559513, 51.2226353 ], "geometry": { "type": "Point", "coordinates": [ -0.6559513, 51.2226353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479683" }, "bbox": [ -0.6558196, 51.2218401, -0.6558196, 51.2218401 ], "geometry": { "type": "Point", "coordinates": [ -0.6558196, 51.2218401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93489701" }, "bbox": [ -0.6556473, 51.2236036, -0.6556473, 51.2236036 ], "geometry": { "type": "Point", "coordinates": [ -0.6556473, 51.2236036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93489704" }, "bbox": [ -0.6556204, 51.2239188, -0.6556204, 51.2239188 ], "geometry": { "type": "Point", "coordinates": [ -0.6556204, 51.2239188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93487010" }, "bbox": [ -0.6587963, 51.2253458, -0.6587963, 51.2253458 ], "geometry": { "type": "Point", "coordinates": [ -0.6587963, 51.2253458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94480502" }, "bbox": [ -0.6543737, 51.2237577, -0.6543737, 51.2237577 ], "geometry": { "type": "Point", "coordinates": [ -0.6543737, 51.2237577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94480102" }, "bbox": [ -0.6549442, 51.2237323, -0.6549442, 51.2237323 ], "geometry": { "type": "Point", "coordinates": [ -0.6549442, 51.2237323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416100" }, "bbox": [ -0.4202103, 51.1574703, -0.4202103, 51.1574703 ], "geometry": { "type": "Point", "coordinates": [ -0.4202103, 51.1574703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10417201" }, "bbox": [ -0.4181634, 51.1577491, -0.4181634, 51.1577491 ], "geometry": { "type": "Point", "coordinates": [ -0.4181634, 51.1577491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403471" }, "bbox": [ -0.4232611, 51.154969, -0.4232611, 51.154969 ], "geometry": { "type": "Point", "coordinates": [ -0.4232611, 51.154969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10408290" }, "bbox": [ -0.4167227, 51.156605, -0.4167227, 51.156605 ], "geometry": { "type": "Point", "coordinates": [ -0.4167227, 51.156605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404590" }, "bbox": [ -0.4219989, 51.1567456, -0.4219989, 51.1567456 ], "geometry": { "type": "Point", "coordinates": [ -0.4219989, 51.1567456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403985" }, "bbox": [ -0.4229193, 51.156206, -0.4229193, 51.156206 ], "geometry": { "type": "Point", "coordinates": [ -0.4229193, 51.156206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404279" }, "bbox": [ -0.4224362, 51.1556466, -0.4224362, 51.1556466 ], "geometry": { "type": "Point", "coordinates": [ -0.4224362, 51.1556466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10408478" }, "bbox": [ -0.4164142, 51.1555342, -0.4164142, 51.1555342 ], "geometry": { "type": "Point", "coordinates": [ -0.4164142, 51.1555342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10405489" }, "bbox": [ -0.421379, 51.1564828, -0.421379, 51.1564828 ], "geometry": { "type": "Point", "coordinates": [ -0.421379, 51.1564828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404984" }, "bbox": [ -0.4215051, 51.156164, -0.4215051, 51.156164 ], "geometry": { "type": "Point", "coordinates": [ -0.4215051, 51.156164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10406787" }, "bbox": [ -0.4189392, 51.1563309, -0.4189392, 51.1563309 ], "geometry": { "type": "Point", "coordinates": [ -0.4189392, 51.1563309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403623" }, "bbox": [ -0.4233831, 51.1507477, -0.4233831, 51.1507477 ], "geometry": { "type": "Point", "coordinates": [ -0.4233831, 51.1507477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10407467" }, "bbox": [ -0.4177629, 51.1546257, -0.4177629, 51.1546257 ], "geometry": { "type": "Point", "coordinates": [ -0.4177629, 51.1546257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10406596" }, "bbox": [ -0.4192254, 51.1567501, -0.4192254, 51.1567501 ], "geometry": { "type": "Point", "coordinates": [ -0.4192254, 51.1567501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15377104" }, "bbox": [ -0.3480017, 51.1210592, -0.3480017, 51.1210592 ], "geometry": { "type": "Point", "coordinates": [ -0.3480017, 51.1210592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375301" }, "bbox": [ -0.3503763, 51.1211429, -0.3503763, 51.1211429 ], "geometry": { "type": "Point", "coordinates": [ -0.3503763, 51.1211429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375223" }, "bbox": [ -0.3503971, 51.1227621, -0.3503971, 51.1227621 ], "geometry": { "type": "Point", "coordinates": [ -0.3503971, 51.1227621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15365183" }, "bbox": [ -0.3503166, 51.1189649, -0.3503166, 51.1189649 ], "geometry": { "type": "Point", "coordinates": [ -0.3503166, 51.1189649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16371595" }, "bbox": [ -0.3414344, 51.1290872, -0.3414344, 51.1290872 ], "geometry": { "type": "Point", "coordinates": [ -0.3414344, 51.1290872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05437058" }, "bbox": [ -0.4900081, 51.1818571, -0.4900081, 51.1818571 ], "geometry": { "type": "Point", "coordinates": [ -0.4900081, 51.1818571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05437517" }, "bbox": [ -0.4884064, 51.1779906, -0.4884064, 51.1779906 ], "geometry": { "type": "Point", "coordinates": [ -0.4884064, 51.1779906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431952" }, "bbox": [ -0.4965031, 51.1813868, -0.4965031, 51.1813868 ], "geometry": { "type": "Point", "coordinates": [ -0.4965031, 51.1813868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05433906" }, "bbox": [ -0.4935347, 51.1768957, -0.4935347, 51.1768957 ], "geometry": { "type": "Point", "coordinates": [ -0.4935347, 51.1768957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04428097" }, "bbox": [ -0.5023563, 51.1764616, -0.5023563, 51.1764616 ], "geometry": { "type": "Point", "coordinates": [ -0.5023563, 51.1764616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05420289" }, "bbox": [ -0.4992721, 51.1757933, -0.4992721, 51.1757933 ], "geometry": { "type": "Point", "coordinates": [ -0.4992721, 51.1757933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05412891" }, "bbox": [ -0.4957045, 51.1670349, -0.4957045, 51.1670349 ], "geometry": { "type": "Point", "coordinates": [ -0.4957045, 51.1670349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91389601" }, "bbox": [ -0.6869824, 51.1340946, -0.6869824, 51.1340946 ], "geometry": { "type": "Point", "coordinates": [ -0.6869824, 51.1340946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93431815" }, "bbox": [ -0.6679979, 51.1799593, -0.6679979, 51.1799593 ], "geometry": { "type": "Point", "coordinates": [ -0.6679979, 51.1799593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93431615" }, "bbox": [ -0.668408, 51.1800708, -0.668408, 51.1800708 ], "geometry": { "type": "Point", "coordinates": [ -0.668408, 51.1800708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93431316" }, "bbox": [ -0.6696443, 51.1800057, -0.6696443, 51.1800057 ], "geometry": { "type": "Point", "coordinates": [ -0.6696443, 51.1800057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84401690" }, "bbox": [ -0.7975085, 51.1611887, -0.7975085, 51.1611887 ], "geometry": { "type": "Point", "coordinates": [ -0.7975085, 51.1611887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84401236" }, "bbox": [ -0.7983455, 51.1563566, -0.7983455, 51.1563566 ], "geometry": { "type": "Point", "coordinates": [ -0.7983455, 51.1563566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407072" }, "bbox": [ -0.8042555, 51.1596478, -0.8042555, 51.1596478 ], "geometry": { "type": "Point", "coordinates": [ -0.8042555, 51.1596478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83409526" }, "bbox": [ -0.8014334, 51.1556032, -0.8014334, 51.1556032 ], "geometry": { "type": "Point", "coordinates": [ -0.8014334, 51.1556032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83406855" }, "bbox": [ -0.8044285, 51.1582411, -0.8044285, 51.1582411 ], "geometry": { "type": "Point", "coordinates": [ -0.8044285, 51.1582411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83406664" }, "bbox": [ -0.8049631, 51.1589913, -0.8049631, 51.1589913 ], "geometry": { "type": "Point", "coordinates": [ -0.8049631, 51.1589913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83405653" }, "bbox": [ -0.8063849, 51.1580194, -0.8063849, 51.1580194 ], "geometry": { "type": "Point", "coordinates": [ -0.8063849, 51.1580194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83405960" }, "bbox": [ -0.805982, 51.1586391, -0.805982, 51.1586391 ], "geometry": { "type": "Point", "coordinates": [ -0.805982, 51.1586391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93357296" }, "bbox": [ -0.6623279, 51.1153925, -0.6623279, 51.1153925 ], "geometry": { "type": "Point", "coordinates": [ -0.6623279, 51.1153925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93358396" }, "bbox": [ -0.6610006, 51.1152273, -0.6610006, 51.1152273 ], "geometry": { "type": "Point", "coordinates": [ -0.6610006, 51.1152273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93358087" }, "bbox": [ -0.6612863, 51.1144266, -0.6612863, 51.1144266 ], "geometry": { "type": "Point", "coordinates": [ -0.6612863, 51.1144266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93356076" }, "bbox": [ -0.6642467, 51.1132594, -0.6642467, 51.1132594 ], "geometry": { "type": "Point", "coordinates": [ -0.6642467, 51.1132594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93358894" }, "bbox": [ -0.6599532, 51.115101, -0.6599532, 51.115101 ], "geometry": { "type": "Point", "coordinates": [ -0.6599532, 51.115101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93357387" }, "bbox": [ -0.66213, 51.1146706, -0.66213, 51.1146706 ], "geometry": { "type": "Point", "coordinates": [ -0.66213, 51.1146706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93369912" }, "bbox": [ -0.6585258, 51.1167313, -0.6585258, 51.1167313 ], "geometry": { "type": "Point", "coordinates": [ -0.6585258, 51.1167313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93368901" }, "bbox": [ -0.6598747, 51.1157957, -0.6598747, 51.1157957 ], "geometry": { "type": "Point", "coordinates": [ -0.6598747, 51.1157957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94360015" }, "bbox": [ -0.6583632, 51.1169157, -0.6583632, 51.1169157 ], "geometry": { "type": "Point", "coordinates": [ -0.6583632, 51.1169157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94350998" }, "bbox": [ -0.6571109, 51.1153832, -0.6571109, 51.1153832 ], "geometry": { "type": "Point", "coordinates": [ -0.6571109, 51.1153832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499401" }, "bbox": [ 0.002396, 51.2230737, 0.002396, 51.2230737 ], "geometry": { "type": "Point", "coordinates": [ 0.002396, 51.2230737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499711" }, "bbox": [ 0.0029748, 51.2240246, 0.0029748, 51.2240246 ], "geometry": { "type": "Point", "coordinates": [ 0.0029748, 51.2240246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39498226" }, "bbox": [ 0.001006, 51.2260665, 0.001006, 51.2260665 ], "geometry": { "type": "Point", "coordinates": [ 0.001006, 51.2260665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499143" }, "bbox": [ 0.0025239, 51.226979, 0.0025239, 51.226979 ], "geometry": { "type": "Point", "coordinates": [ 0.0025239, 51.226979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39497719" }, "bbox": [ 0.0001289, 51.2247229, 0.0001289, 51.2247229 ], "geometry": { "type": "Point", "coordinates": [ 0.0001289, 51.2247229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24400397" }, "bbox": [ -0.2279751, 51.1542644, -0.2279751, 51.1542644 ], "geometry": { "type": "Point", "coordinates": [ -0.2279751, 51.1542644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24416458" }, "bbox": [ -0.2187088, 51.1598178, -0.2187088, 51.1598178 ], "geometry": { "type": "Point", "coordinates": [ -0.2187088, 51.1598178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24418565" }, "bbox": [ -0.2160841, 51.1605234, -0.2160841, 51.1605234 ], "geometry": { "type": "Point", "coordinates": [ -0.2160841, 51.1605234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24415767" }, "bbox": [ -0.2200122, 51.1607444, -0.2200122, 51.1607444 ], "geometry": { "type": "Point", "coordinates": [ -0.2200122, 51.1607444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24415080" }, "bbox": [ -0.2207439, 51.1620266, -0.2207439, 51.1620266 ], "geometry": { "type": "Point", "coordinates": [ -0.2207439, 51.1620266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24415076" }, "bbox": [ -0.2207467, 51.1614473, -0.2207467, 51.1614473 ], "geometry": { "type": "Point", "coordinates": [ -0.2207467, 51.1614473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414982" }, "bbox": [ -0.2210029, 51.1621946, -0.2210029, 51.1621946 ], "geometry": { "type": "Point", "coordinates": [ -0.2210029, 51.1621946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467635" }, "bbox": [ -0.458896, 51.2062484, -0.458896, 51.2062484 ], "geometry": { "type": "Point", "coordinates": [ -0.458896, 51.2062484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464436" }, "bbox": [ -0.4634241, 51.2063566, -0.4634241, 51.2063566 ], "geometry": { "type": "Point", "coordinates": [ -0.4634241, 51.2063566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465919" }, "bbox": [ -0.4612647, 51.2047675, -0.4612647, 51.2047675 ], "geometry": { "type": "Point", "coordinates": [ -0.4612647, 51.2047675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07463463" }, "bbox": [ -0.4648104, 51.2088374, -0.4648104, 51.2088374 ], "geometry": { "type": "Point", "coordinates": [ -0.4648104, 51.2088374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464157" }, "bbox": [ -0.4637239, 51.2081832, -0.4637239, 51.2081832 ], "geometry": { "type": "Point", "coordinates": [ -0.4637239, 51.2081832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07468038" }, "bbox": [ -0.4576544, 51.2066231, -0.4576544, 51.2066231 ], "geometry": { "type": "Point", "coordinates": [ -0.4576544, 51.2066231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97541640" }, "bbox": [ -0.6082968, 51.2805201, -0.6082968, 51.2805201 ], "geometry": { "type": "Point", "coordinates": [ -0.6082968, 51.2805201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97541924" }, "bbox": [ -0.6091641, 51.2791079, -0.6091641, 51.2791079 ], "geometry": { "type": "Point", "coordinates": [ -0.6091641, 51.2791079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97543343" }, "bbox": [ -0.6054947, 51.2807733, -0.6054947, 51.2807733 ], "geometry": { "type": "Point", "coordinates": [ -0.6054947, 51.2807733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41498944" }, "bbox": [ 0.0305697, 51.2265736, 0.0305697, 51.2265736 ], "geometry": { "type": "Point", "coordinates": [ 0.0305697, 51.2265736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41498962" }, "bbox": [ 0.030542, 51.2281361, 0.030542, 51.2281361 ], "geometry": { "type": "Point", "coordinates": [ 0.030542, 51.2281361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22447958" }, "bbox": [ -0.2441901, 51.187282, -0.2441901, 51.187282 ], "geometry": { "type": "Point", "coordinates": [ -0.2441901, 51.187282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22449166" }, "bbox": [ -0.242283, 51.1880144, -0.242283, 51.1880144 ], "geometry": { "type": "Point", "coordinates": [ -0.242283, 51.1880144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23443168" }, "bbox": [ -0.2367472, 51.1880287, -0.2367472, 51.1880287 ], "geometry": { "type": "Point", "coordinates": [ -0.2367472, 51.1880287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23440666" }, "bbox": [ -0.2394963, 51.1879092, -0.2394963, 51.1879092 ], "geometry": { "type": "Point", "coordinates": [ -0.2394963, 51.1879092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23444959" }, "bbox": [ -0.234384, 51.1871545, -0.234384, 51.1871545 ], "geometry": { "type": "Point", "coordinates": [ -0.234384, 51.1871545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23446208" }, "bbox": [ -0.2328913, 51.1826273, -0.2328913, 51.1826273 ], "geometry": { "type": "Point", "coordinates": [ -0.2328913, 51.1826273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10514201" }, "bbox": [ -0.4192039, 51.2473949, -0.4192039, 51.2473949 ], "geometry": { "type": "Point", "coordinates": [ -0.4192039, 51.2473949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10514104" }, "bbox": [ -0.4193098, 51.2479169, -0.4193098, 51.2479169 ], "geometry": { "type": "Point", "coordinates": [ -0.4193098, 51.2479169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10503069" }, "bbox": [ -0.420929, 51.2445341, -0.420929, 51.2445341 ], "geometry": { "type": "Point", "coordinates": [ -0.420929, 51.2445341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10501392" }, "bbox": [ -0.4234654, 51.246824, -0.4234654, 51.246824 ], "geometry": { "type": "Point", "coordinates": [ -0.4234654, 51.246824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10506485" }, "bbox": [ -0.4162838, 51.2461274, -0.4162838, 51.2461274 ], "geometry": { "type": "Point", "coordinates": [ -0.4162838, 51.2461274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10505281" }, "bbox": [ -0.4179058, 51.2458503, -0.4179058, 51.2458503 ], "geometry": { "type": "Point", "coordinates": [ -0.4179058, 51.2458503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10503855" }, "bbox": [ -0.4192887, 51.2426815, -0.4192887, 51.2426815 ], "geometry": { "type": "Point", "coordinates": [ -0.4192887, 51.2426815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529683" }, "bbox": [ -0.5112887, 51.2650723, -0.5112887, 51.2650723 ], "geometry": { "type": "Point", "coordinates": [ -0.5112887, 51.2650723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529365" }, "bbox": [ -0.5116868, 51.2636422, -0.5116868, 51.2636422 ], "geometry": { "type": "Point", "coordinates": [ -0.5116868, 51.2636422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529169" }, "bbox": [ -0.512913, 51.2637156, -0.512913, 51.2637156 ], "geometry": { "type": "Point", "coordinates": [ -0.512913, 51.2637156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529883" }, "bbox": [ -0.510982, 51.2650318, -0.510982, 51.2650318 ], "geometry": { "type": "Point", "coordinates": [ -0.510982, 51.2650318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22608842" }, "bbox": [ -0.2376948, 51.3296352, -0.2376948, 51.3296352 ], "geometry": { "type": "Point", "coordinates": [ -0.2376948, 51.3296352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15374788" }, "bbox": [ -0.351021, 51.1285708, -0.351021, 51.1285708 ], "geometry": { "type": "Point", "coordinates": [ -0.351021, 51.1285708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15387000" }, "bbox": [ -0.3482634, 51.1295899, -0.3482634, 51.1295899 ], "geometry": { "type": "Point", "coordinates": [ -0.3482634, 51.1295899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16380074" }, "bbox": [ -0.3431883, 51.1363137, -0.3431883, 51.1363137 ], "geometry": { "type": "Point", "coordinates": [ -0.3431883, 51.1363137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451388" }, "bbox": [ -0.1531913, 51.1976962, -0.1531913, 51.1976962 ], "geometry": { "type": "Point", "coordinates": [ -0.1531913, 51.1976962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99371509" }, "bbox": [ -0.5844923, 51.1244857, -0.5844923, 51.1244857 ], "geometry": { "type": "Point", "coordinates": [ -0.5844923, 51.1244857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99360592" }, "bbox": [ -0.5861231, 51.1230606, -0.5861231, 51.1230606 ], "geometry": { "type": "Point", "coordinates": [ -0.5861231, 51.1230606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98379914" }, "bbox": [ -0.5870112, 51.1251402, -0.5870112, 51.1251402 ], "geometry": { "type": "Point", "coordinates": [ -0.5870112, 51.1251402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98379903" }, "bbox": [ -0.5869437, 51.1238365, -0.5869437, 51.1238365 ], "geometry": { "type": "Point", "coordinates": [ -0.5869437, 51.1238365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21494819" }, "bbox": [ -0.2612935, 51.2288042, -0.2612935, 51.2288042 ], "geometry": { "type": "Point", "coordinates": [ -0.2612935, 51.2288042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477994" }, "bbox": [ -0.2718511, 51.2179587, -0.2718511, 51.2179587 ], "geometry": { "type": "Point", "coordinates": [ -0.2718511, 51.2179587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477486" }, "bbox": [ -0.2726322, 51.2172757, -0.2726322, 51.2172757 ], "geometry": { "type": "Point", "coordinates": [ -0.2726322, 51.2172757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20475592" }, "bbox": [ -0.2751805, 51.2177137, -0.2751805, 51.2177137 ], "geometry": { "type": "Point", "coordinates": [ -0.2751805, 51.2177137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471173" }, "bbox": [ -0.2816516, 51.2161127, -0.2816516, 51.2161127 ], "geometry": { "type": "Point", "coordinates": [ -0.2816516, 51.2161127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471285" }, "bbox": [ -0.2815243, 51.2172601, -0.2815243, 51.2172601 ], "geometry": { "type": "Point", "coordinates": [ -0.2815243, 51.2172601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21470869" }, "bbox": [ -0.2679848, 51.2156665, -0.2679848, 51.2156665 ], "geometry": { "type": "Point", "coordinates": [ -0.2679848, 51.2156665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21482040" }, "bbox": [ -0.265796, 51.2219007, -0.265796, 51.2219007 ], "geometry": { "type": "Point", "coordinates": [ -0.265796, 51.2219007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21483550" }, "bbox": [ -0.2636805, 51.2228443, -0.2636805, 51.2228443 ], "geometry": { "type": "Point", "coordinates": [ -0.2636805, 51.2228443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21481069" }, "bbox": [ -0.2671342, 51.2245777, -0.2671342, 51.2245777 ], "geometry": { "type": "Point", "coordinates": [ -0.2671342, 51.2245777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21488495" }, "bbox": [ -0.2558069, 51.2267029, -0.2558069, 51.2267029 ], "geometry": { "type": "Point", "coordinates": [ -0.2558069, 51.2267029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14573006" }, "bbox": [ -0.3619964, 51.3011012, -0.3619964, 51.3011012 ], "geometry": { "type": "Point", "coordinates": [ -0.3619964, 51.3011012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14563693" }, "bbox": [ -0.3610273, 51.3000318, -0.3610273, 51.3000318 ], "geometry": { "type": "Point", "coordinates": [ -0.3610273, 51.3000318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517999" }, "bbox": [ -0.6713198, 51.2596086, -0.6713198, 51.2596086 ], "geometry": { "type": "Point", "coordinates": [ -0.6713198, 51.2596086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517795" }, "bbox": [ -0.6718132, 51.2592404, -0.6718132, 51.2592404 ], "geometry": { "type": "Point", "coordinates": [ -0.6718132, 51.2592404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92526101" }, "bbox": [ -0.6740819, 51.2596981, -0.6740819, 51.2596981 ], "geometry": { "type": "Point", "coordinates": [ -0.6740819, 51.2596981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92525903" }, "bbox": [ -0.6742587, 51.2599852, -0.6742587, 51.2599852 ], "geometry": { "type": "Point", "coordinates": [ -0.6742587, 51.2599852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92526901" }, "bbox": [ -0.6729465, 51.2597871, -0.6729465, 51.2597871 ], "geometry": { "type": "Point", "coordinates": [ -0.6729465, 51.2597871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39431169" }, "bbox": [ -0.0112915, 51.1755498, -0.0112915, 51.1755498 ], "geometry": { "type": "Point", "coordinates": [ -0.0112915, 51.1755498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39433257" }, "bbox": [ -0.0084311, 51.174422, -0.0084311, 51.174422 ], "geometry": { "type": "Point", "coordinates": [ -0.0084311, 51.174422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01354093" }, "bbox": [ -0.5524604, 51.1135734, -0.5524604, 51.1135734 ], "geometry": { "type": "Point", "coordinates": [ -0.5524604, 51.1135734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01365118" }, "bbox": [ -0.5510765, 51.1158792, -0.5510765, 51.1158792 ], "geometry": { "type": "Point", "coordinates": [ -0.5510765, 51.1158792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01365933" }, "bbox": [ -0.5498561, 51.1173932, -0.5498561, 51.1173932 ], "geometry": { "type": "Point", "coordinates": [ -0.5498561, 51.1173932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01364920" }, "bbox": [ -0.5514512, 51.1160616, -0.5514512, 51.1160616 ], "geometry": { "type": "Point", "coordinates": [ -0.5514512, 51.1160616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01361205" }, "bbox": [ -0.5566508, 51.114996, -0.5566508, 51.114996 ], "geometry": { "type": "Point", "coordinates": [ -0.5566508, 51.114996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01364703" }, "bbox": [ -0.5522407, 51.1139456, -0.5522407, 51.1139456 ], "geometry": { "type": "Point", "coordinates": [ -0.5522407, 51.1139456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01364007" }, "bbox": [ -0.553136, 51.1149524, -0.553136, 51.1149524 ], "geometry": { "type": "Point", "coordinates": [ -0.553136, 51.1149524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457877" }, "bbox": [ -0.6734349, 51.2037251, -0.6734349, 51.2037251 ], "geometry": { "type": "Point", "coordinates": [ -0.6734349, 51.2037251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92459075" }, "bbox": [ -0.6715655, 51.2032937, -0.6715655, 51.2032937 ], "geometry": { "type": "Point", "coordinates": [ -0.6715655, 51.2032937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457481" }, "bbox": [ -0.6739627, 51.2039384, -0.6739627, 51.2039384 ], "geometry": { "type": "Point", "coordinates": [ -0.6739627, 51.2039384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457680" }, "bbox": [ -0.6736972, 51.2039378, -0.6736972, 51.2039378 ], "geometry": { "type": "Point", "coordinates": [ -0.6736972, 51.2039378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457776" }, "bbox": [ -0.6736138, 51.2036605, -0.6736138, 51.2036605 ], "geometry": { "type": "Point", "coordinates": [ -0.6736138, 51.2036605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439275" }, "bbox": [ -0.7291511, 51.1861622, -0.7291511, 51.1861622 ], "geometry": { "type": "Point", "coordinates": [ -0.7291511, 51.1861622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439386" }, "bbox": [ -0.7287293, 51.187119, -0.7287293, 51.187119 ], "geometry": { "type": "Point", "coordinates": [ -0.7287293, 51.187119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439978" }, "bbox": [ -0.7281561, 51.1864167, -0.7281561, 51.1864167 ], "geometry": { "type": "Point", "coordinates": [ -0.7281561, 51.1864167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89432288" }, "bbox": [ -0.7245571, 51.1872163, -0.7245571, 51.1872163 ], "geometry": { "type": "Point", "coordinates": [ -0.7245571, 51.1872163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433088" }, "bbox": [ -0.7236472, 51.1873344, -0.7236472, 51.1873344 ], "geometry": { "type": "Point", "coordinates": [ -0.7236472, 51.1873344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433188" }, "bbox": [ -0.7232956, 51.187199, -0.7232956, 51.187199 ], "geometry": { "type": "Point", "coordinates": [ -0.7232956, 51.187199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433683" }, "bbox": [ -0.7226261, 51.1868591, -0.7226261, 51.1868591 ], "geometry": { "type": "Point", "coordinates": [ -0.7226261, 51.1868591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89434187" }, "bbox": [ -0.7223469, 51.1871378, -0.7223469, 51.1871378 ], "geometry": { "type": "Point", "coordinates": [ -0.7223469, 51.1871378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89430076" }, "bbox": [ -0.7278996, 51.1861104, -0.7278996, 51.1861104 ], "geometry": { "type": "Point", "coordinates": [ -0.7278996, 51.1861104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89430078" }, "bbox": [ -0.7278947, 51.1862476, -0.7278947, 51.1862476 ], "geometry": { "type": "Point", "coordinates": [ -0.7278947, 51.1862476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03404172" }, "bbox": [ -0.5225656, 51.1564642, -0.5225656, 51.1564642 ], "geometry": { "type": "Point", "coordinates": [ -0.5225656, 51.1564642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03401484" }, "bbox": [ -0.5267823, 51.1573813, -0.5267823, 51.1573813 ], "geometry": { "type": "Point", "coordinates": [ -0.5267823, 51.1573813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405683" }, "bbox": [ -0.53483, 51.1575344, -0.53483, 51.1575344 ], "geometry": { "type": "Point", "coordinates": [ -0.53483, 51.1575344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405789" }, "bbox": [ -0.5346464, 51.1581745, -0.5346464, 51.1581745 ], "geometry": { "type": "Point", "coordinates": [ -0.5346464, 51.1581745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22461836" }, "bbox": [ -0.2524901, 51.2034678, -0.2524901, 51.2034678 ], "geometry": { "type": "Point", "coordinates": [ -0.2524901, 51.2034678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32472398" }, "bbox": [ -0.106832, 51.2157158, -0.106832, 51.2157158 ], "geometry": { "type": "Point", "coordinates": [ -0.106832, 51.2157158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31489004" }, "bbox": [ -0.1123503, 51.2163664, -0.1123503, 51.2163664 ], "geometry": { "type": "Point", "coordinates": [ -0.1123503, 51.2163664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32483620" }, "bbox": [ -0.106442, 51.2177089, -0.106442, 51.2177089 ], "geometry": { "type": "Point", "coordinates": [ -0.106442, 51.2177089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32482506" }, "bbox": [ -0.1077779, 51.2163505, -0.1077779, 51.2163505 ], "geometry": { "type": "Point", "coordinates": [ -0.1077779, 51.2163505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99378105" }, "bbox": [ -0.5751375, 51.1240999, -0.5751375, 51.1240999 ], "geometry": { "type": "Point", "coordinates": [ -0.5751375, 51.1240999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99364530" }, "bbox": [ -0.580301, 51.1171963, -0.580301, 51.1171963 ], "geometry": { "type": "Point", "coordinates": [ -0.580301, 51.1171963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99367994" }, "bbox": [ -0.5754817, 51.1230082, -0.5754817, 51.1230082 ], "geometry": { "type": "Point", "coordinates": [ -0.5754817, 51.1230082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99366654" }, "bbox": [ -0.5772533, 51.1195055, -0.5772533, 51.1195055 ], "geometry": { "type": "Point", "coordinates": [ -0.5772533, 51.1195055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32476683" }, "bbox": [ -0.1023038, 51.2141424, -0.1023038, 51.2141424 ], "geometry": { "type": "Point", "coordinates": [ -0.1023038, 51.2141424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31477580" }, "bbox": [ -0.114907, 51.2138347, -0.114907, 51.2138347 ], "geometry": { "type": "Point", "coordinates": [ -0.114907, 51.2138347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388234" }, "bbox": [ -0.5313737, 51.135149, -0.5313737, 51.135149 ], "geometry": { "type": "Point", "coordinates": [ -0.5313737, 51.135149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93437047" }, "bbox": [ -0.6608054, 51.182798, -0.6608054, 51.182798 ], "geometry": { "type": "Point", "coordinates": [ -0.6608054, 51.182798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93438748" }, "bbox": [ -0.6583099, 51.1828608, -0.6583099, 51.1828608 ], "geometry": { "type": "Point", "coordinates": [ -0.6583099, 51.1828608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93444346" }, "bbox": [ -0.6642828, 51.1918583, -0.6642828, 51.1918583 ], "geometry": { "type": "Point", "coordinates": [ -0.6642828, 51.1918583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93448232" }, "bbox": [ -0.6590852, 51.1907186, -0.6590852, 51.1907186 ], "geometry": { "type": "Point", "coordinates": [ -0.6590852, 51.1907186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93444822" }, "bbox": [ -0.6637059, 51.1893715, -0.6637059, 51.1893715 ], "geometry": { "type": "Point", "coordinates": [ -0.6637059, 51.1893715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93442926" }, "bbox": [ -0.6662502, 51.1900588, -0.6662502, 51.1900588 ], "geometry": { "type": "Point", "coordinates": [ -0.6662502, 51.1900588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93443023" }, "bbox": [ -0.6663079, 51.1896887, -0.6663079, 51.1896887 ], "geometry": { "type": "Point", "coordinates": [ -0.6663079, 51.1896887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94430144" }, "bbox": [ -0.6568327, 51.182676, -0.6568327, 51.182676 ], "geometry": { "type": "Point", "coordinates": [ -0.6568327, 51.182676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94431740" }, "bbox": [ -0.654251, 51.1823833, -0.654251, 51.1823833 ], "geometry": { "type": "Point", "coordinates": [ -0.654251, 51.1823833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94430386" }, "bbox": [ -0.6559523, 51.1862842, -0.6559523, 51.1862842 ], "geometry": { "type": "Point", "coordinates": [ -0.6559523, 51.1862842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94431770" }, "bbox": [ -0.6539088, 51.1847543, -0.6539088, 51.1847543 ], "geometry": { "type": "Point", "coordinates": [ -0.6539088, 51.1847543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35574649" }, "bbox": [ -0.0581136, 51.300564, -0.0581136, 51.300564 ], "geometry": { "type": "Point", "coordinates": [ -0.0581136, 51.300564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18413523" }, "bbox": [ -0.3088097, 51.1580351, -0.3088097, 51.1580351 ], "geometry": { "type": "Point", "coordinates": [ -0.3088097, 51.1580351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500992" }, "bbox": [ -0.3954994, 51.2463895, -0.3954994, 51.2463895 ], "geometry": { "type": "Point", "coordinates": [ -0.3954994, 51.2463895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12513805" }, "bbox": [ -0.3913137, 51.2476025, -0.3913137, 51.2476025 ], "geometry": { "type": "Point", "coordinates": [ -0.3913137, 51.2476025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11509564" }, "bbox": [ -0.3975012, 51.2444876, -0.3975012, 51.2444876 ], "geometry": { "type": "Point", "coordinates": [ -0.3975012, 51.2444876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90498874" }, "bbox": [ -0.6995631, 51.2395227, -0.6995631, 51.2395227 ], "geometry": { "type": "Point", "coordinates": [ -0.6995631, 51.2395227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496479" }, "bbox": [ -0.7028877, 51.2400998, -0.7028877, 51.2400998 ], "geometry": { "type": "Point", "coordinates": [ -0.7028877, 51.2400998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496168" }, "bbox": [ -0.7032602, 51.2390554, -0.7032602, 51.2390554 ], "geometry": { "type": "Point", "coordinates": [ -0.7032602, 51.2390554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496572" }, "bbox": [ -0.7027553, 51.2394419, -0.7027553, 51.2394419 ], "geometry": { "type": "Point", "coordinates": [ -0.7027553, 51.2394419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496780" }, "bbox": [ -0.7025574, 51.2401699, -0.7025574, 51.2401699 ], "geometry": { "type": "Point", "coordinates": [ -0.7025574, 51.2401699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496679" }, "bbox": [ -0.7027352, 51.2401318, -0.7027352, 51.2401318 ], "geometry": { "type": "Point", "coordinates": [ -0.7027352, 51.2401318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90497265" }, "bbox": [ -0.7018177, 51.2387926, -0.7018177, 51.2387926 ], "geometry": { "type": "Point", "coordinates": [ -0.7018177, 51.2387926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496970" }, "bbox": [ -0.7022579, 51.2393225, -0.7022579, 51.2393225 ], "geometry": { "type": "Point", "coordinates": [ -0.7022579, 51.2393225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496468" }, "bbox": [ -0.7028449, 51.2391682, -0.7028449, 51.2391682 ], "geometry": { "type": "Point", "coordinates": [ -0.7028449, 51.2391682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496864" }, "bbox": [ -0.7023687, 51.238785, -0.7023687, 51.238785 ], "geometry": { "type": "Point", "coordinates": [ -0.7023687, 51.238785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496676" }, "bbox": [ -0.702998, 51.2397634, -0.702998, 51.2397634 ], "geometry": { "type": "Point", "coordinates": [ -0.702998, 51.2397634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12515010" }, "bbox": [ -0.3894934, 51.2479302, -0.3894934, 51.2479302 ], "geometry": { "type": "Point", "coordinates": [ -0.3894934, 51.2479302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23455827" }, "bbox": [ -0.2330663, 51.1932134, -0.2330663, 51.1932134 ], "geometry": { "type": "Point", "coordinates": [ -0.2330663, 51.1932134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17418255" }, "bbox": [ -0.3163224, 51.1609138, -0.3163224, 51.1609138 ], "geometry": { "type": "Point", "coordinates": [ -0.3163224, 51.1609138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18411714" }, "bbox": [ -0.3116384, 51.157208, -0.3116384, 51.157208 ], "geometry": { "type": "Point", "coordinates": [ -0.3116384, 51.157208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18401590" }, "bbox": [ -0.3118353, 51.1551692, -0.3118353, 51.1551692 ], "geometry": { "type": "Point", "coordinates": [ -0.3118353, 51.1551692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18401395" }, "bbox": [ -0.3122889, 51.1557034, -0.3122889, 51.1557034 ], "geometry": { "type": "Point", "coordinates": [ -0.3122889, 51.1557034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18402098" }, "bbox": [ -0.3112865, 51.1558698, -0.3112865, 51.1558698 ], "geometry": { "type": "Point", "coordinates": [ -0.3112865, 51.1558698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18402093" }, "bbox": [ -0.3110863, 51.1552874, -0.3110863, 51.1552874 ], "geometry": { "type": "Point", "coordinates": [ -0.3110863, 51.1552874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11521328" }, "bbox": [ -0.408476, 51.258941, -0.408476, 51.258941 ], "geometry": { "type": "Point", "coordinates": [ -0.408476, 51.258941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13523048" }, "bbox": [ -0.3780097, 51.260134, -0.3780097, 51.260134 ], "geometry": { "type": "Point", "coordinates": [ -0.3780097, 51.260134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13524565" }, "bbox": [ -0.3756173, 51.2616183, -0.3756173, 51.2616183 ], "geometry": { "type": "Point", "coordinates": [ -0.3756173, 51.2616183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19405459" }, "bbox": [ -0.2921945, 51.1521392, -0.2921945, 51.1521392 ], "geometry": { "type": "Point", "coordinates": [ -0.2921945, 51.1521392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19402111" }, "bbox": [ -0.2973385, 51.1481558, -0.2973385, 51.1481558 ], "geometry": { "type": "Point", "coordinates": [ -0.2973385, 51.1481558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438356" }, "bbox": [ -0.558714, 51.1824358, -0.558714, 51.1824358 ], "geometry": { "type": "Point", "coordinates": [ -0.558714, 51.1824358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438153" }, "bbox": [ -0.5589502, 51.182213, -0.5589502, 51.182213 ], "geometry": { "type": "Point", "coordinates": [ -0.5589502, 51.182213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00437849" }, "bbox": [ -0.5592895, 51.1818605, -0.5592895, 51.1818605 ], "geometry": { "type": "Point", "coordinates": [ -0.5592895, 51.1818605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438256" }, "bbox": [ -0.5589393, 51.1823943, -0.5589393, 51.1823943 ], "geometry": { "type": "Point", "coordinates": [ -0.5589393, 51.1823943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00448401" }, "bbox": [ -0.5584374, 51.1864578, -0.5584374, 51.1864578 ], "geometry": { "type": "Point", "coordinates": [ -0.5584374, 51.1864578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00444446" }, "bbox": [ -0.5641407, 51.1904472, -0.5641407, 51.1904472 ], "geometry": { "type": "Point", "coordinates": [ -0.5641407, 51.1904472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12393968" }, "bbox": [ -0.3946002, 51.1453746, -0.3946002, 51.1453746 ], "geometry": { "type": "Point", "coordinates": [ -0.3946002, 51.1453746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12393757" }, "bbox": [ -0.3950722, 51.14442, -0.3950722, 51.14442 ], "geometry": { "type": "Point", "coordinates": [ -0.3950722, 51.14442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43445539" }, "bbox": [ 0.0521608, 51.1807977, 0.0521608, 51.1807977 ], "geometry": { "type": "Point", "coordinates": [ 0.0521608, 51.1807977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43445016" }, "bbox": [ 0.0516559, 51.1786087, 0.0516559, 51.1786087 ], "geometry": { "type": "Point", "coordinates": [ 0.0516559, 51.1786087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43443172" }, "bbox": [ 0.0490036, 51.1837349, 0.0490036, 51.1837349 ], "geometry": { "type": "Point", "coordinates": [ 0.0490036, 51.1837349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28524959" }, "bbox": [ -0.1603263, 51.2586724, -0.1603263, 51.2586724 ], "geometry": { "type": "Point", "coordinates": [ -0.1603263, 51.2586724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28522128" }, "bbox": [ -0.164004, 51.2552292, -0.164004, 51.2552292 ], "geometry": { "type": "Point", "coordinates": [ -0.164004, 51.2552292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28521572" }, "bbox": [ -0.1650172, 51.2596108, -0.1650172, 51.2596108 ], "geometry": { "type": "Point", "coordinates": [ -0.1650172, 51.2596108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25432789" }, "bbox": [ -0.2090655, 51.1801943, -0.2090655, 51.1801943 ], "geometry": { "type": "Point", "coordinates": [ -0.2090655, 51.1801943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25431894" }, "bbox": [ -0.2103928, 51.1811024, -0.2103928, 51.1811024 ], "geometry": { "type": "Point", "coordinates": [ -0.2103928, 51.1811024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40473684" }, "bbox": [ 0.0079567, 51.212389, 0.0079567, 51.212389 ], "geometry": { "type": "Point", "coordinates": [ 0.0079567, 51.212389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33488988" }, "bbox": [ -0.0826003, 51.2235326, -0.0826003, 51.2235326 ], "geometry": { "type": "Point", "coordinates": [ -0.0826003, 51.2235326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34483074" }, "bbox": [ -0.0782851, 51.2220936, -0.0782851, 51.2220936 ], "geometry": { "type": "Point", "coordinates": [ -0.0782851, 51.2220936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39419655" }, "bbox": [ 0.000036, 51.1559846, 0.000036, 51.1559846 ], "geometry": { "type": "Point", "coordinates": [ 0.000036, 51.1559846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36449185" }, "bbox": [ -0.0422137, 51.1866126, -0.0422137, 51.1866126 ], "geometry": { "type": "Point", "coordinates": [ -0.0422137, 51.1866126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37440365" }, "bbox": [ -0.0406816, 51.1848023, -0.0406816, 51.1848023 ], "geometry": { "type": "Point", "coordinates": [ -0.0406816, 51.1848023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09350250" }, "bbox": [ -0.4441596, 51.1083181, -0.4441596, 51.1083181 ], "geometry": { "type": "Point", "coordinates": [ -0.4441596, 51.1083181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08512005" }, "bbox": [ -0.4510636, 51.2478195, -0.4510636, 51.2478195 ], "geometry": { "type": "Point", "coordinates": [ -0.4510636, 51.2478195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16549213" }, "bbox": [ -0.3249455, 51.2744112, -0.3249455, 51.2744112 ], "geometry": { "type": "Point", "coordinates": [ -0.3249455, 51.2744112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42500942" }, "bbox": [ 0.0339336, 51.2353131, 0.0339336, 51.2353131 ], "geometry": { "type": "Point", "coordinates": [ 0.0339336, 51.2353131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40495260" }, "bbox": [ 0.0109528, 51.2284139, 0.0109528, 51.2284139 ], "geometry": { "type": "Point", "coordinates": [ 0.0109528, 51.2284139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37460469" }, "bbox": [ -0.0396364, 51.2028795, -0.0396364, 51.2028795 ], "geometry": { "type": "Point", "coordinates": [ -0.0396364, 51.2028795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38470811" }, "bbox": [ -0.0247123, 51.2065563, -0.0247123, 51.2065563 ], "geometry": { "type": "Point", "coordinates": [ -0.0247123, 51.2065563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38461285" }, "bbox": [ -0.0242605, 51.2041075, -0.0242605, 51.2041075 ], "geometry": { "type": "Point", "coordinates": [ -0.0242605, 51.2041075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37477322" }, "bbox": [ -0.0298736, 51.2075279, -0.0298736, 51.2075279 ], "geometry": { "type": "Point", "coordinates": [ -0.0298736, 51.2075279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37476918" }, "bbox": [ -0.0302551, 51.2072267, -0.0302551, 51.2072267 ], "geometry": { "type": "Point", "coordinates": [ -0.0302551, 51.2072267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37462551" }, "bbox": [ -0.0367233, 51.2013494, -0.0367233, 51.2013494 ], "geometry": { "type": "Point", "coordinates": [ -0.0367233, 51.2013494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87381436" }, "bbox": [ -0.7557363, 51.1379602, -0.7557363, 51.1379602 ], "geometry": { "type": "Point", "coordinates": [ -0.7557363, 51.1379602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380518" }, "bbox": [ -0.7571226, 51.1365234, -0.7571226, 51.1365234 ], "geometry": { "type": "Point", "coordinates": [ -0.7571226, 51.1365234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380109" }, "bbox": [ -0.7576823, 51.1354922, -0.7576823, 51.1354922 ], "geometry": { "type": "Point", "coordinates": [ -0.7576823, 51.1354922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86388365" }, "bbox": [ -0.760298, 51.1405331, -0.760298, 51.1405331 ], "geometry": { "type": "Point", "coordinates": [ -0.760298, 51.1405331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86388271" }, "bbox": [ -0.7602273, 51.1410941, -0.7602273, 51.1410941 ], "geometry": { "type": "Point", "coordinates": [ -0.7602273, 51.1410941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389809" }, "bbox": [ -0.7580654, 51.1355016, -0.7580654, 51.1355016 ], "geometry": { "type": "Point", "coordinates": [ -0.7580654, 51.1355016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86388929" }, "bbox": [ -0.7593955, 51.1373389, -0.7593955, 51.1373389 ], "geometry": { "type": "Point", "coordinates": [ -0.7593955, 51.1373389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389323" }, "bbox": [ -0.7587977, 51.1367431, -0.7587977, 51.1367431 ], "geometry": { "type": "Point", "coordinates": [ -0.7587977, 51.1367431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37465479" }, "bbox": [ -0.0327006, 51.2038851, -0.0327006, 51.2038851 ], "geometry": { "type": "Point", "coordinates": [ -0.0327006, 51.2038851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38463670" }, "bbox": [ -0.0208766, 51.202736, -0.0208766, 51.202736 ], "geometry": { "type": "Point", "coordinates": [ -0.0208766, 51.202736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37469961" }, "bbox": [ -0.0258288, 51.2025007, -0.0258288, 51.2025007 ], "geometry": { "type": "Point", "coordinates": [ -0.0258288, 51.2025007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38454159" }, "bbox": [ -0.0207169, 51.1928552, -0.0207169, 51.1928552 ], "geometry": { "type": "Point", "coordinates": [ -0.0207169, 51.1928552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37451598" }, "bbox": [ -0.0387638, 51.1965421, -0.0387638, 51.1965421 ], "geometry": { "type": "Point", "coordinates": [ -0.0387638, 51.1965421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37464915" }, "bbox": [ -0.0338027, 51.1978924, -0.0338027, 51.1978924 ], "geometry": { "type": "Point", "coordinates": [ -0.0338027, 51.1978924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18539634" }, "bbox": [ -0.2968373, 51.266756, -0.2968373, 51.266756 ], "geometry": { "type": "Point", "coordinates": [ -0.2968373, 51.266756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19530636" }, "bbox": [ -0.2949436, 51.2669707, -0.2949436, 51.2669707 ], "geometry": { "type": "Point", "coordinates": [ -0.2949436, 51.2669707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19531646" }, "bbox": [ -0.2932284, 51.2679185, -0.2932284, 51.2679185 ], "geometry": { "type": "Point", "coordinates": [ -0.2932284, 51.2679185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19532740" }, "bbox": [ -0.2919528, 51.2675256, -0.2919528, 51.2675256 ], "geometry": { "type": "Point", "coordinates": [ -0.2919528, 51.2675256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19531819" }, "bbox": [ -0.293018, 51.2654596, -0.293018, 51.2654596 ], "geometry": { "type": "Point", "coordinates": [ -0.293018, 51.2654596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19533945" }, "bbox": [ -0.2897685, 51.2678018, -0.2897685, 51.2678018 ], "geometry": { "type": "Point", "coordinates": [ -0.2897685, 51.2678018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19534378" }, "bbox": [ -0.2879324, 51.2707443, -0.2879324, 51.2707443 ], "geometry": { "type": "Point", "coordinates": [ -0.2879324, 51.2707443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19533480" }, "bbox": [ -0.2904043, 51.2708731, -0.2904043, 51.2708731 ], "geometry": { "type": "Point", "coordinates": [ -0.2904043, 51.2708731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97350959" }, "bbox": [ -0.6142034, 51.1115902, -0.6142034, 51.1115902 ], "geometry": { "type": "Point", "coordinates": [ -0.6142034, 51.1115902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28550571" }, "bbox": [ -0.1651962, 51.2861995, -0.1651962, 51.2861995 ], "geometry": { "type": "Point", "coordinates": [ -0.1651962, 51.2861995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28551079" }, "bbox": [ -0.1641607, 51.2867625, -0.1641607, 51.2867625 ], "geometry": { "type": "Point", "coordinates": [ -0.1641607, 51.2867625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27558847" }, "bbox": [ -0.1675807, 51.2840294, -0.1675807, 51.2840294 ], "geometry": { "type": "Point", "coordinates": [ -0.1675807, 51.2840294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37399176" }, "bbox": [ -0.0296382, 51.1405985, -0.0296382, 51.1405985 ], "geometry": { "type": "Point", "coordinates": [ -0.0296382, 51.1405985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96380483" }, "bbox": [ -0.6285692, 51.1405969, -0.6285692, 51.1405969 ], "geometry": { "type": "Point", "coordinates": [ -0.6285692, 51.1405969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96380497" }, "bbox": [ -0.6284327, 51.1417486, -0.6284327, 51.1417486 ], "geometry": { "type": "Point", "coordinates": [ -0.6284327, 51.1417486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40495477" }, "bbox": [ 0.0114267, 51.2297815, 0.0114267, 51.2297815 ], "geometry": { "type": "Point", "coordinates": [ 0.0114267, 51.2297815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33499251" }, "bbox": [ -0.0835972, 51.2287923, -0.0835972, 51.2287923 ], "geometry": { "type": "Point", "coordinates": [ -0.0835972, 51.2287923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34490234" }, "bbox": [ -0.0819754, 51.2275623, -0.0819754, 51.2275623 ], "geometry": { "type": "Point", "coordinates": [ -0.0819754, 51.2275623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33489748" }, "bbox": [ -0.0834039, 51.2196925, -0.0834039, 51.2196925 ], "geometry": { "type": "Point", "coordinates": [ -0.0834039, 51.2196925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33489934" }, "bbox": [ -0.0830686, 51.2184827, -0.0830686, 51.2184827 ], "geometry": { "type": "Point", "coordinates": [ -0.0830686, 51.2184827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23438579" }, "bbox": [ -0.2294495, 51.1799692, -0.2294495, 51.1799692 ], "geometry": { "type": "Point", "coordinates": [ -0.2294495, 51.1799692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23439478" }, "bbox": [ -0.228281, 51.1799285, -0.228281, 51.1799285 ], "geometry": { "type": "Point", "coordinates": [ -0.228281, 51.1799285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40474859" }, "bbox": [ 0.0099696, 51.210221, 0.0099696, 51.210221 ], "geometry": { "type": "Point", "coordinates": [ 0.0099696, 51.210221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00431830" }, "bbox": [ -0.5683318, 51.1802169, -0.5683318, 51.1802169 ], "geometry": { "type": "Point", "coordinates": [ -0.5683318, 51.1802169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00424097" }, "bbox": [ -0.5649901, 51.1771494, -0.5649901, 51.1771494 ], "geometry": { "type": "Point", "coordinates": [ -0.5649901, 51.1771494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00425191" }, "bbox": [ -0.5633991, 51.1765562, -0.5633991, 51.1765562 ], "geometry": { "type": "Point", "coordinates": [ -0.5633991, 51.1765562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96497404" }, "bbox": [ -0.6163527, 51.2321651, -0.6163527, 51.2321651 ], "geometry": { "type": "Point", "coordinates": [ -0.6163527, 51.2321651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38410775" }, "bbox": [ -0.0268945, 51.1585056, -0.0268945, 51.1585056 ], "geometry": { "type": "Point", "coordinates": [ -0.0268945, 51.1585056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40410166" }, "bbox": [ 0.0008225, 51.1570798, 0.0008225, 51.1570798 ], "geometry": { "type": "Point", "coordinates": [ 0.0008225, 51.1570798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38427448" }, "bbox": [ -0.0173484, 51.1647786, -0.0173484, 51.1647786 ], "geometry": { "type": "Point", "coordinates": [ -0.0173484, 51.1647786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33487862" }, "bbox": [ -0.0851417, 51.2213899, -0.0851417, 51.2213899 ], "geometry": { "type": "Point", "coordinates": [ -0.0851417, 51.2213899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31475715" }, "bbox": [ -0.1179373, 51.2084209, -0.1179373, 51.2084209 ], "geometry": { "type": "Point", "coordinates": [ -0.1179373, 51.2084209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31479780" }, "bbox": [ -0.1118304, 51.2137494, -0.1118304, 51.2137494 ], "geometry": { "type": "Point", "coordinates": [ -0.1118304, 51.2137494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32465378" }, "bbox": [ -0.1041681, 51.204843, -0.1041681, 51.204843 ], "geometry": { "type": "Point", "coordinates": [ -0.1041681, 51.204843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32467594" }, "bbox": [ -0.1013037, 51.2060397, -0.1013037, 51.2060397 ], "geometry": { "type": "Point", "coordinates": [ -0.1013037, 51.2060397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32461772" }, "bbox": [ -0.1094978, 51.2043106, -0.1094978, 51.2043106 ], "geometry": { "type": "Point", "coordinates": [ -0.1094978, 51.2043106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32463676" }, "bbox": [ -0.1067185, 51.2047763, -0.1067185, 51.2047763 ], "geometry": { "type": "Point", "coordinates": [ -0.1067185, 51.2047763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32474422" }, "bbox": [ -0.1053066, 51.2087598, -0.1053066, 51.2087598 ], "geometry": { "type": "Point", "coordinates": [ -0.1053066, 51.2087598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32474079" }, "bbox": [ -0.1060459, 51.2138501, -0.1060459, 51.2138501 ], "geometry": { "type": "Point", "coordinates": [ -0.1060459, 51.2138501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32473947" }, "bbox": [ -0.1061883, 51.2109831, -0.1061883, 51.2109831 ], "geometry": { "type": "Point", "coordinates": [ -0.1061883, 51.2109831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32476851" }, "bbox": [ -0.102028, 51.2114001, -0.102028, 51.2114001 ], "geometry": { "type": "Point", "coordinates": [ -0.102028, 51.2114001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42460866" }, "bbox": [ 0.0325299, 51.2012294, 0.0325299, 51.2012294 ], "geometry": { "type": "Point", "coordinates": [ 0.0325299, 51.2012294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35506909" }, "bbox": [ -0.0583122, 51.233737, -0.0583122, 51.233737 ], "geometry": { "type": "Point", "coordinates": [ -0.0583122, 51.233737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35499188" }, "bbox": [ -0.0544665, 51.2320196, -0.0544665, 51.2320196 ], "geometry": { "type": "Point", "coordinates": [ -0.0544665, 51.2320196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36490586" }, "bbox": [ -0.0517432, 51.2317542, -0.0517432, 51.2317542 ], "geometry": { "type": "Point", "coordinates": [ -0.0517432, 51.2317542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36501413" }, "bbox": [ -0.0514081, 51.2341174, -0.0514081, 51.2341174 ], "geometry": { "type": "Point", "coordinates": [ -0.0514081, 51.2341174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41508022" }, "bbox": [ 0.0297258, 51.2335929, 0.0297258, 51.2335929 ], "geometry": { "type": "Point", "coordinates": [ 0.0297258, 51.2335929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33488780" }, "bbox": [ -0.0841936, 51.2227808, -0.0841936, 51.2227808 ], "geometry": { "type": "Point", "coordinates": [ -0.0841936, 51.2227808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33488476" }, "bbox": [ -0.0847474, 51.222375, -0.0847474, 51.222375 ], "geometry": { "type": "Point", "coordinates": [ -0.0847474, 51.222375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34480576" }, "bbox": [ -0.0817903, 51.2222877, -0.0817903, 51.2222877 ], "geometry": { "type": "Point", "coordinates": [ -0.0817903, 51.2222877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34480578" }, "bbox": [ -0.0817916, 51.2224621, -0.0817916, 51.2224621 ], "geometry": { "type": "Point", "coordinates": [ -0.0817916, 51.2224621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40487313" }, "bbox": [ 0.0134781, 51.2150275, 0.0134781, 51.2150275 ], "geometry": { "type": "Point", "coordinates": [ 0.0134781, 51.2150275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465237" }, "bbox": [ -0.247403, 51.2034401, -0.247403, 51.2034401 ], "geometry": { "type": "Point", "coordinates": [ -0.247403, 51.2034401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36466174" }, "bbox": [ -0.045702, 51.2035078, -0.045702, 51.2035078 ], "geometry": { "type": "Point", "coordinates": [ -0.045702, 51.2035078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37479221" }, "bbox": [ -0.0268083, 51.2075679, -0.0268083, 51.2075679 ], "geometry": { "type": "Point", "coordinates": [ -0.0268083, 51.2075679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37462018" }, "bbox": [ -0.0377198, 51.1983596, -0.0377198, 51.1983596 ], "geometry": { "type": "Point", "coordinates": [ -0.0377198, 51.1983596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41469876" }, "bbox": [ 0.0308505, 51.2024116, 0.0308505, 51.2024116 ], "geometry": { "type": "Point", "coordinates": [ 0.0308505, 51.2024116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07474501" }, "bbox": [ -0.462946, 51.2122648, -0.462946, 51.2122648 ], "geometry": { "type": "Point", "coordinates": [ -0.462946, 51.2122648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24439266" }, "bbox": [ -0.21425, 51.1785933, -0.21425, 51.1785933 ], "geometry": { "type": "Point", "coordinates": [ -0.21425, 51.1785933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42495724" }, "bbox": [ 0.0408964, 51.2240739, 0.0408964, 51.2240739 ], "geometry": { "type": "Point", "coordinates": [ 0.0408964, 51.2240739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42496729" }, "bbox": [ 0.0420875, 51.2250886, 0.0420875, 51.2250886 ], "geometry": { "type": "Point", "coordinates": [ 0.0420875, 51.2250886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42452973" }, "bbox": [ 0.0349516, 51.1931341, 0.0349516, 51.1931341 ], "geometry": { "type": "Point", "coordinates": [ 0.0349516, 51.1931341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42452279" }, "bbox": [ 0.0347965, 51.193869, 0.0347965, 51.193869 ], "geometry": { "type": "Point", "coordinates": [ 0.0347965, 51.193869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42463742" }, "bbox": [ 0.0365209, 51.2003265, 0.0365209, 51.2003265 ], "geometry": { "type": "Point", "coordinates": [ 0.0365209, 51.2003265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40447686" }, "bbox": [ 0.0127581, 51.1856008, 0.0127581, 51.1856008 ], "geometry": { "type": "Point", "coordinates": [ 0.0127581, 51.1856008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41441176" }, "bbox": [ 0.0176024, 51.1845288, 0.0176024, 51.1845288 ], "geometry": { "type": "Point", "coordinates": [ 0.0176024, 51.1845288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40454916" }, "bbox": [ 0.00895, 51.1883941, 0.00895, 51.1883941 ], "geometry": { "type": "Point", "coordinates": [ 0.00895, 51.1883941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40456321" }, "bbox": [ 0.0108538, 51.1886282, 0.0108538, 51.1886282 ], "geometry": { "type": "Point", "coordinates": [ 0.0108538, 51.1886282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457709" }, "bbox": [ 0.0121735, 51.1875572, 0.0121735, 51.1875572 ], "geometry": { "type": "Point", "coordinates": [ 0.0121735, 51.1875572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40453015" }, "bbox": [ 0.0062945, 51.1883869, 0.0062945, 51.1883869 ], "geometry": { "type": "Point", "coordinates": [ 0.0062945, 51.1883869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41442378" }, "bbox": [ 0.0192907, 51.1847835, 0.0192907, 51.1847835 ], "geometry": { "type": "Point", "coordinates": [ 0.0192907, 51.1847835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440644" }, "bbox": [ 0.0167678, 51.1817736, 0.0167678, 51.1817736 ], "geometry": { "type": "Point", "coordinates": [ 0.0167678, 51.1817736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440432" }, "bbox": [ 0.0165081, 51.180723, 0.0165081, 51.180723 ], "geometry": { "type": "Point", "coordinates": [ 0.0165081, 51.180723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08448620" }, "bbox": [ -0.4424485, 51.1854079, -0.4424485, 51.1854079 ], "geometry": { "type": "Point", "coordinates": [ -0.4424485, 51.1854079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09431777" }, "bbox": [ -0.4393973, 51.1828126, -0.4393973, 51.1828126 ], "geometry": { "type": "Point", "coordinates": [ -0.4393973, 51.1828126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08421166" }, "bbox": [ -0.4547518, 51.1729037, -0.4547518, 51.1729037 ], "geometry": { "type": "Point", "coordinates": [ -0.4547518, 51.1729037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35497585" }, "bbox": [ -0.0568216, 51.2316677, -0.0568216, 51.2316677 ], "geometry": { "type": "Point", "coordinates": [ -0.0568216, 51.2316677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35497955" }, "bbox": [ -0.0565572, 51.2289432, -0.0565572, 51.2289432 ], "geometry": { "type": "Point", "coordinates": [ -0.0565572, 51.2289432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37465537" }, "bbox": [ -0.0325231, 51.2000598, -0.0325231, 51.2000598 ], "geometry": { "type": "Point", "coordinates": [ -0.0325231, 51.2000598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37463463" }, "bbox": [ -0.0354806, 51.2024205, -0.0354806, 51.2024205 ], "geometry": { "type": "Point", "coordinates": [ -0.0354806, 51.2024205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33468782" }, "bbox": [ -0.0849375, 51.2050502, -0.0849375, 51.2050502 ], "geometry": { "type": "Point", "coordinates": [ -0.0849375, 51.2050502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33469382" }, "bbox": [ -0.0841757, 51.2048077, -0.0841757, 51.2048077 ], "geometry": { "type": "Point", "coordinates": [ -0.0841757, 51.2048077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34450676" }, "bbox": [ -0.0830765, 51.1955081, -0.0830765, 51.1955081 ], "geometry": { "type": "Point", "coordinates": [ -0.0830765, 51.1955081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14381421" }, "bbox": [ -0.3709365, 51.1317137, -0.3709365, 51.1317137 ], "geometry": { "type": "Point", "coordinates": [ -0.3709365, 51.1317137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05362766" }, "bbox": [ -0.4972042, 51.1195463, -0.4972042, 51.1195463 ], "geometry": { "type": "Point", "coordinates": [ -0.4972042, 51.1195463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05362168" }, "bbox": [ -0.4989781, 51.1197594, -0.4989781, 51.1197594 ], "geometry": { "type": "Point", "coordinates": [ -0.4989781, 51.1197594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05364691" }, "bbox": [ -0.4944366, 51.1217549, -0.4944366, 51.1217549 ], "geometry": { "type": "Point", "coordinates": [ -0.4944366, 51.1217549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05362265" }, "bbox": [ -0.4979415, 51.1193583, -0.4979415, 51.1193583 ], "geometry": { "type": "Point", "coordinates": [ -0.4979415, 51.1193583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04369967" }, "bbox": [ -0.5011597, 51.1197187, -0.5011597, 51.1197187 ], "geometry": { "type": "Point", "coordinates": [ -0.5011597, 51.1197187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04369770" }, "bbox": [ -0.501339, 51.1200634, -0.501339, 51.1200634 ], "geometry": { "type": "Point", "coordinates": [ -0.501339, 51.1200634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27557964" }, "bbox": [ -0.1687829, 51.2855613, -0.1687829, 51.2855613 ], "geometry": { "type": "Point", "coordinates": [ -0.1687829, 51.2855613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33392173" }, "bbox": [ -0.0971838, 51.141311, -0.0971838, 51.141311 ], "geometry": { "type": "Point", "coordinates": [ -0.0971838, 51.141311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95503524" }, "bbox": [ -0.6354867, 51.2433098, -0.6354867, 51.2433098 ], "geometry": { "type": "Point", "coordinates": [ -0.6354867, 51.2433098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26423769" }, "bbox": [ -0.1941121, 51.1699117, -0.1941121, 51.1699117 ], "geometry": { "type": "Point", "coordinates": [ -0.1941121, 51.1699117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07478627" }, "bbox": [ -0.4567854, 51.2146566, -0.4567854, 51.2146566 ], "geometry": { "type": "Point", "coordinates": [ -0.4567854, 51.2146566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34482244" }, "bbox": [ -0.0795283, 51.2194516, -0.0795283, 51.2194516 ], "geometry": { "type": "Point", "coordinates": [ -0.0795283, 51.2194516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40462304" }, "bbox": [ 0.0055014, 51.1958946, 0.0055014, 51.1958946 ], "geometry": { "type": "Point", "coordinates": [ 0.0055014, 51.1958946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33468295" }, "bbox": [ -0.0861991, 51.2061357, -0.0861991, 51.2061357 ], "geometry": { "type": "Point", "coordinates": [ -0.0861991, 51.2061357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34485996" }, "bbox": [ -0.0738974, 51.223706, -0.0738974, 51.223706 ], "geometry": { "type": "Point", "coordinates": [ -0.0738974, 51.223706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37462918" }, "bbox": [ -0.0365254, 51.1983219, -0.0365254, 51.1983219 ], "geometry": { "type": "Point", "coordinates": [ -0.0365254, 51.1983219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38460623" }, "bbox": [ -0.0251576, 51.1987866, -0.0251576, 51.1987866 ], "geometry": { "type": "Point", "coordinates": [ -0.0251576, 51.1987866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37469828" }, "bbox": [ -0.0246876, 51.1989239, -0.0246876, 51.1989239 ], "geometry": { "type": "Point", "coordinates": [ -0.0246876, 51.1989239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37461846" }, "bbox": [ -0.0380071, 51.2008622, -0.0380071, 51.2008622 ], "geometry": { "type": "Point", "coordinates": [ -0.0380071, 51.2008622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38421017" }, "bbox": [ -0.0264862, 51.1620977, -0.0264862, 51.1620977 ], "geometry": { "type": "Point", "coordinates": [ -0.0264862, 51.1620977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41468754" }, "bbox": [ 0.0293612, 51.2006037, 0.0293612, 51.2006037 ], "geometry": { "type": "Point", "coordinates": [ 0.0293612, 51.2006037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42452954" }, "bbox": [ 0.0349043, 51.1914242, 0.0349043, 51.1914242 ], "geometry": { "type": "Point", "coordinates": [ 0.0349043, 51.1914242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32438334" }, "bbox": [ -0.1012219, 51.1739464, -0.1012219, 51.1739464 ], "geometry": { "type": "Point", "coordinates": [ -0.1012219, 51.1739464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08470110" }, "bbox": [ -0.4553293, 51.2129491, -0.4553293, 51.2129491 ], "geometry": { "type": "Point", "coordinates": [ -0.4553293, 51.2129491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08470729" }, "bbox": [ -0.4542767, 51.2146189, -0.4542767, 51.2146189 ], "geometry": { "type": "Point", "coordinates": [ -0.4542767, 51.2146189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39497193" }, "bbox": [ -0.0003707, 51.2314299, -0.0003707, 51.2314299 ], "geometry": { "type": "Point", "coordinates": [ -0.0003707, 51.2314299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28551365" }, "bbox": [ -0.1644091, 51.2854627, -0.1644091, 51.2854627 ], "geometry": { "type": "Point", "coordinates": [ -0.1644091, 51.2854627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28550657" }, "bbox": [ -0.16491, 51.2849009, -0.16491, 51.2849009 ], "geometry": { "type": "Point", "coordinates": [ -0.16491, 51.2849009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28550065" }, "bbox": [ -0.1657279, 51.2855579, -0.1657279, 51.2855579 ], "geometry": { "type": "Point", "coordinates": [ -0.1657279, 51.2855579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27558961" }, "bbox": [ -0.1675964, 51.2851464, -0.1675964, 51.2851464 ], "geometry": { "type": "Point", "coordinates": [ -0.1675964, 51.2851464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29426701" }, "bbox": [ -0.1469031, 51.1612928, -0.1469031, 51.1612928 ], "geometry": { "type": "Point", "coordinates": [ -0.1469031, 51.1612928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26425368" }, "bbox": [ -0.1914983, 51.1694273, -0.1914983, 51.1694273 ], "geometry": { "type": "Point", "coordinates": [ -0.1914983, 51.1694273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29462452" }, "bbox": [ -0.1511643, 51.2032599, -0.1511643, 51.2032599 ], "geometry": { "type": "Point", "coordinates": [ -0.1511643, 51.2032599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29462737" }, "bbox": [ -0.1511287, 51.2022858, -0.1511287, 51.2022858 ], "geometry": { "type": "Point", "coordinates": [ -0.1511287, 51.2022858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32437833" }, "bbox": [ -0.1017994, 51.173676, -0.1017994, 51.173676 ], "geometry": { "type": "Point", "coordinates": [ -0.1017994, 51.173676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32437731" }, "bbox": [ -0.1024166, 51.1735813, -0.1024166, 51.1735813 ], "geometry": { "type": "Point", "coordinates": [ -0.1024166, 51.1735813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27557969" }, "bbox": [ -0.1687515, 51.2860435, -0.1687515, 51.2860435 ], "geometry": { "type": "Point", "coordinates": [ -0.1687515, 51.2860435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28551667" }, "bbox": [ -0.1634384, 51.2860676, -0.1634384, 51.2860676 ], "geometry": { "type": "Point", "coordinates": [ -0.1634384, 51.2860676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28550844" }, "bbox": [ -0.1648127, 51.2837067, -0.1648127, 51.2837067 ], "geometry": { "type": "Point", "coordinates": [ -0.1648127, 51.2837067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28551783" }, "bbox": [ -0.1631295, 51.2876278, -0.1631295, 51.2876278 ], "geometry": { "type": "Point", "coordinates": [ -0.1631295, 51.2876278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27559953" }, "bbox": [ -0.1659777, 51.2846447, -0.1659777, 51.2846447 ], "geometry": { "type": "Point", "coordinates": [ -0.1659777, 51.2846447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33486827" }, "bbox": [ -0.087482, 51.218058, -0.087482, 51.218058 ], "geometry": { "type": "Point", "coordinates": [ -0.087482, 51.218058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33484622" }, "bbox": [ -0.0903147, 51.2176898, -0.0903147, 51.2176898 ], "geometry": { "type": "Point", "coordinates": [ -0.0903147, 51.2176898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33486112" }, "bbox": [ -0.0882498, 51.2166903, -0.0882498, 51.2166903 ], "geometry": { "type": "Point", "coordinates": [ -0.0882498, 51.2166903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33494555" }, "bbox": [ -0.0903122, 51.2297757, -0.0903122, 51.2297757 ], "geometry": { "type": "Point", "coordinates": [ -0.0903122, 51.2297757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422443" }, "bbox": [ -0.553112, 51.1722742, -0.553112, 51.1722742 ], "geometry": { "type": "Point", "coordinates": [ -0.553112, 51.1722742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422940" }, "bbox": [ -0.552531, 51.1718702, -0.552531, 51.1718702 ], "geometry": { "type": "Point", "coordinates": [ -0.552531, 51.1718702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421345" }, "bbox": [ -0.55487, 51.1722871, -0.55487, 51.1722871 ], "geometry": { "type": "Point", "coordinates": [ -0.55487, 51.1722871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95613756" }, "bbox": [ -0.6319362, 51.3451356, -0.6319362, 51.3451356 ], "geometry": { "type": "Point", "coordinates": [ -0.6319362, 51.3451356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95614168" }, "bbox": [ -0.6316023, 51.3462681, -0.6316023, 51.3462681 ], "geometry": { "type": "Point", "coordinates": [ -0.6316023, 51.3462681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351156" }, "bbox": [ -0.6137907, 51.1112974, -0.6137907, 51.1112974 ], "geometry": { "type": "Point", "coordinates": [ -0.6137907, 51.1112974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33460921" }, "bbox": [ -0.0965505, 51.1995093, -0.0965505, 51.1995093 ], "geometry": { "type": "Point", "coordinates": [ -0.0965505, 51.1995093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33462407" }, "bbox": [ -0.0944197, 51.1984771, -0.0944197, 51.1984771 ], "geometry": { "type": "Point", "coordinates": [ -0.0944197, 51.1984771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33450558" }, "bbox": [ -0.0984246, 51.1938851, -0.0984246, 51.1938851 ], "geometry": { "type": "Point", "coordinates": [ -0.0984246, 51.1938851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33454774" }, "bbox": [ -0.0914838, 51.19532, -0.0914838, 51.19532 ], "geometry": { "type": "Point", "coordinates": [ -0.0914838, 51.19532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33452973" }, "bbox": [ -0.0935353, 51.1955098, -0.0935353, 51.1955098 ], "geometry": { "type": "Point", "coordinates": [ -0.0935353, 51.1955098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33456072" }, "bbox": [ -0.0892052, 51.1952374, -0.0892052, 51.1952374 ], "geometry": { "type": "Point", "coordinates": [ -0.0892052, 51.1952374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33451257" }, "bbox": [ -0.0961198, 51.1940673, -0.0961198, 51.1940673 ], "geometry": { "type": "Point", "coordinates": [ -0.0961198, 51.1940673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37462128" }, "bbox": [ -0.0373244, 51.1993002, -0.0373244, 51.1993002 ], "geometry": { "type": "Point", "coordinates": [ -0.0373244, 51.1993002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37461332" }, "bbox": [ -0.0386665, 51.1996312, -0.0386665, 51.1996312 ], "geometry": { "type": "Point", "coordinates": [ -0.0386665, 51.1996312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41468713" }, "bbox": [ 0.0291382, 51.196903, 0.0291382, 51.196903 ], "geometry": { "type": "Point", "coordinates": [ 0.0291382, 51.196903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41469235" }, "bbox": [ 0.0299601, 51.1986008, 0.0299601, 51.1986008 ], "geometry": { "type": "Point", "coordinates": [ 0.0299601, 51.1986008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36466859" }, "bbox": [ -0.0449068, 51.202184, -0.0449068, 51.202184 ], "geometry": { "type": "Point", "coordinates": [ -0.0449068, 51.202184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41496906" }, "bbox": [ 0.0272985, 51.2231217, 0.0272985, 51.2231217 ], "geometry": { "type": "Point", "coordinates": [ 0.0272985, 51.2231217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40478384" }, "bbox": [ 0.0146817, 51.2123153, 0.0146817, 51.2123153 ], "geometry": { "type": "Point", "coordinates": [ 0.0146817, 51.2123153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40481536" }, "bbox": [ 0.0055069, 51.2172901, 0.0055069, 51.2172901 ], "geometry": { "type": "Point", "coordinates": [ 0.0055069, 51.2172901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37468756" }, "bbox": [ -0.0281046, 51.2015058, -0.0281046, 51.2015058 ], "geometry": { "type": "Point", "coordinates": [ -0.0281046, 51.2015058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37477707" }, "bbox": [ -0.0291631, 51.2062549, -0.0291631, 51.2062549 ], "geometry": { "type": "Point", "coordinates": [ -0.0291631, 51.2062549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40397497" }, "bbox": [ 0.0106557, 51.1415538, 0.0106557, 51.1415538 ], "geometry": { "type": "Point", "coordinates": [ 0.0106557, 51.1415538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42448221" }, "bbox": [ 0.0422899, 51.1780426, 0.0422899, 51.1780426 ], "geometry": { "type": "Point", "coordinates": [ 0.0422899, 51.1780426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17371181" }, "bbox": [ -0.3280558, 51.127601, -0.3280558, 51.127601 ], "geometry": { "type": "Point", "coordinates": [ -0.3280558, 51.127601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16376987" }, "bbox": [ -0.3332305, 51.1281691, -0.3332305, 51.1281691 ], "geometry": { "type": "Point", "coordinates": [ -0.3332305, 51.1281691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16377387" }, "bbox": [ -0.3332693, 51.1282422, -0.3332693, 51.1282422 ], "geometry": { "type": "Point", "coordinates": [ -0.3332693, 51.1282422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16376175" }, "bbox": [ -0.3349783, 51.1272006, -0.3349783, 51.1272006 ], "geometry": { "type": "Point", "coordinates": [ -0.3349783, 51.1272006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378057" }, "bbox": [ -0.3322851, 51.125582, -0.3322851, 51.125582 ], "geometry": { "type": "Point", "coordinates": [ -0.3322851, 51.125582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491753" }, "bbox": [ -0.6953472, 51.2377908, -0.6953472, 51.2377908 ], "geometry": { "type": "Point", "coordinates": [ -0.6953472, 51.2377908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491853" }, "bbox": [ -0.6952419, 51.2377145, -0.6952419, 51.2377145 ], "geometry": { "type": "Point", "coordinates": [ -0.6952419, 51.2377145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491351" }, "bbox": [ -0.6959209, 51.2375413, -0.6959209, 51.2375413 ], "geometry": { "type": "Point", "coordinates": [ -0.6959209, 51.2375413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91492446" }, "bbox": [ -0.6943974, 51.2371583, -0.6943974, 51.2371583 ], "geometry": { "type": "Point", "coordinates": [ -0.6943974, 51.2371583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491349" }, "bbox": [ -0.6953628, 51.2371512, -0.6953628, 51.2371512 ], "geometry": { "type": "Point", "coordinates": [ -0.6953628, 51.2371512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91490034" }, "bbox": [ -0.6979266, 51.2360905, -0.6979266, 51.2360905 ], "geometry": { "type": "Point", "coordinates": [ -0.6979266, 51.2360905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491653" }, "bbox": [ -0.6956712, 51.2376765, -0.6956712, 51.2376765 ], "geometry": { "type": "Point", "coordinates": [ -0.6956712, 51.2376765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91492644" }, "bbox": [ -0.6940432, 51.2369577, -0.6940432, 51.2369577 ], "geometry": { "type": "Point", "coordinates": [ -0.6940432, 51.2369577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91490440" }, "bbox": [ -0.6972337, 51.2366245, -0.6972337, 51.2366245 ], "geometry": { "type": "Point", "coordinates": [ -0.6972337, 51.2366245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90499048" }, "bbox": [ -0.6994983, 51.2376422, -0.6994983, 51.2376422 ], "geometry": { "type": "Point", "coordinates": [ -0.6994983, 51.2376422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40474882" }, "bbox": [ 0.0097663, 51.2123056, 0.0097663, 51.2123056 ], "geometry": { "type": "Point", "coordinates": [ 0.0097663, 51.2123056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39483093" }, "bbox": [ -0.0066159, 51.2226214, -0.0066159, 51.2226214 ], "geometry": { "type": "Point", "coordinates": [ -0.0066159, 51.2226214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89410708" }, "bbox": [ -0.7274709, 51.162039, -0.7274709, 51.162039 ], "geometry": { "type": "Point", "coordinates": [ -0.7274709, 51.162039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89413924" }, "bbox": [ -0.7229813, 51.1634518, -0.7229813, 51.1634518 ], "geometry": { "type": "Point", "coordinates": [ -0.7229813, 51.1634518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89390189" }, "bbox": [ -0.7288042, 51.1513101, -0.7288042, 51.1513101 ], "geometry": { "type": "Point", "coordinates": [ -0.7288042, 51.1513101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95347072" }, "bbox": [ -0.6346955, 51.103794, -0.6346955, 51.103794 ], "geometry": { "type": "Point", "coordinates": [ -0.6346955, 51.103794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98367726" }, "bbox": [ -0.5902366, 51.1171879, -0.5902366, 51.1171879 ], "geometry": { "type": "Point", "coordinates": [ -0.5902366, 51.1171879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363527" }, "bbox": [ -0.5960564, 51.1174522, -0.5960564, 51.1174522 ], "geometry": { "type": "Point", "coordinates": [ -0.5960564, 51.1174522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363743" }, "bbox": [ -0.5974185, 51.1198203, -0.5974185, 51.1198203 ], "geometry": { "type": "Point", "coordinates": [ -0.5974185, 51.1198203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94377607" }, "bbox": [ -0.6471344, 51.1252813, -0.6471344, 51.1252813 ], "geometry": { "type": "Point", "coordinates": [ -0.6471344, 51.1252813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34460810" }, "bbox": [ -0.0827695, 51.1981978, -0.0827695, 51.1981978 ], "geometry": { "type": "Point", "coordinates": [ -0.0827695, 51.1981978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40479533" }, "bbox": [ 0.0164834, 51.2078393, 0.0164834, 51.2078393 ], "geometry": { "type": "Point", "coordinates": [ 0.0164834, 51.2078393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42461244" }, "bbox": [ 0.0328799, 51.1995082, 0.0328799, 51.1995082 ], "geometry": { "type": "Point", "coordinates": [ 0.0328799, 51.1995082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40459191" }, "bbox": [ 0.0152662, 51.1950392, 0.0152662, 51.1950392 ], "geometry": { "type": "Point", "coordinates": [ 0.0152662, 51.1950392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01427067" }, "bbox": [ -0.546585, 51.174303, -0.546585, 51.174303 ], "geometry": { "type": "Point", "coordinates": [ -0.546585, 51.174303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01427383" }, "bbox": [ -0.5463406, 51.1755533, -0.5463406, 51.1755533 ], "geometry": { "type": "Point", "coordinates": [ -0.5463406, 51.1755533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39469228" }, "bbox": [ 0.0012018, 51.1986341, 0.0012018, 51.1986341 ], "geometry": { "type": "Point", "coordinates": [ 0.0012018, 51.1986341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14639628" }, "bbox": [ -0.3504105, 51.3570322, -0.3504105, 51.3570322 ], "geometry": { "type": "Point", "coordinates": [ -0.3504105, 51.3570322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14638738" }, "bbox": [ -0.3518504, 51.3576315, -0.3518504, 51.3576315 ], "geometry": { "type": "Point", "coordinates": [ -0.3518504, 51.3576315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14637638" }, "bbox": [ -0.3532169, 51.3579386, -0.3532169, 51.3579386 ], "geometry": { "type": "Point", "coordinates": [ -0.3532169, 51.3579386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17385697" }, "bbox": [ -0.3208652, 51.1379222, -0.3208652, 51.1379222 ], "geometry": { "type": "Point", "coordinates": [ -0.3208652, 51.1379222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14592455" }, "bbox": [ -0.3619074, 51.3235484, -0.3619074, 51.3235484 ], "geometry": { "type": "Point", "coordinates": [ -0.3619074, 51.3235484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14591847" }, "bbox": [ -0.3628695, 51.3231451, -0.3628695, 51.3231451 ], "geometry": { "type": "Point", "coordinates": [ -0.3628695, 51.3231451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14591262" }, "bbox": [ -0.3637052, 51.3240933, -0.3637052, 51.3240933 ], "geometry": { "type": "Point", "coordinates": [ -0.3637052, 51.3240933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13599866" }, "bbox": [ -0.3655159, 51.324519, -0.3655159, 51.324519 ], "geometry": { "type": "Point", "coordinates": [ -0.3655159, 51.324519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13598168" }, "bbox": [ -0.3677261, 51.3248113, -0.3677261, 51.3248113 ], "geometry": { "type": "Point", "coordinates": [ -0.3677261, 51.3248113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13598273" }, "bbox": [ -0.3673478, 51.3253688, -0.3673478, 51.3253688 ], "geometry": { "type": "Point", "coordinates": [ -0.3673478, 51.3253688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97330391" }, "bbox": [ -0.6145457, 51.0961538, -0.6145457, 51.0961538 ], "geometry": { "type": "Point", "coordinates": [ -0.6145457, 51.0961538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38393372" }, "bbox": [ -0.0241065, 51.1399311, -0.0241065, 51.1399311 ], "geometry": { "type": "Point", "coordinates": [ -0.0241065, 51.1399311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40466289" }, "bbox": [ 0.0116024, 51.2038911, 0.0116024, 51.2038911 ], "geometry": { "type": "Point", "coordinates": [ 0.0116024, 51.2038911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41441645" }, "bbox": [ 0.0180982, 51.1818761, 0.0180982, 51.1818761 ], "geometry": { "type": "Point", "coordinates": [ 0.0180982, 51.1818761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34411637" }, "bbox": [ -0.0829012, 51.1560434, -0.0829012, 51.1560434 ], "geometry": { "type": "Point", "coordinates": [ -0.0829012, 51.1560434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24527248" }, "bbox": [ -0.2140975, 51.2578789, -0.2140975, 51.2578789 ], "geometry": { "type": "Point", "coordinates": [ -0.2140975, 51.2578789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40442309" }, "bbox": [ 0.004835, 51.1789104, 0.004835, 51.1789104 ], "geometry": { "type": "Point", "coordinates": [ 0.004835, 51.1789104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40430249" }, "bbox": [ 0.0015643, 51.1735051, 0.0015643, 51.1735051 ], "geometry": { "type": "Point", "coordinates": [ 0.0015643, 51.1735051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40446948" }, "bbox": [ 0.0114905, 51.1822346, 0.0114905, 51.1822346 ], "geometry": { "type": "Point", "coordinates": [ 0.0114905, 51.1822346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40444649" }, "bbox": [ 0.0081079, 51.1824022, 0.0081079, 51.1824022 ], "geometry": { "type": "Point", "coordinates": [ 0.0081079, 51.1824022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40483096" }, "bbox": [ 0.0081137, 51.2228325, 0.0081137, 51.2228325 ], "geometry": { "type": "Point", "coordinates": [ 0.0081137, 51.2228325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40485109" }, "bbox": [ 0.0102498, 51.2146466, 0.0102498, 51.2146466 ], "geometry": { "type": "Point", "coordinates": [ 0.0102498, 51.2146466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39494392" }, "bbox": [ -0.0043742, 51.2314572, -0.0043742, 51.2314572 ], "geometry": { "type": "Point", "coordinates": [ -0.0043742, 51.2314572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40468984" }, "bbox": [ 0.0154048, 51.2031286, 0.0154048, 51.2031286 ], "geometry": { "type": "Point", "coordinates": [ 0.0154048, 51.2031286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40479718" }, "bbox": [ 0.0167364, 51.2064631, 0.0167364, 51.2064631 ], "geometry": { "type": "Point", "coordinates": [ 0.0167364, 51.2064631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34483208" }, "bbox": [ -0.0782492, 51.2160567, -0.0782492, 51.2160567 ], "geometry": { "type": "Point", "coordinates": [ -0.0782492, 51.2160567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34483026" }, "bbox": [ -0.0783983, 51.217756, -0.0783983, 51.217756 ], "geometry": { "type": "Point", "coordinates": [ -0.0783983, 51.217756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09413594" }, "bbox": [ -0.4396708, 51.1667965, -0.4396708, 51.1667965 ], "geometry": { "type": "Point", "coordinates": [ -0.4396708, 51.1667965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24576781" }, "bbox": [ -0.2128785, 51.3058763, -0.2128785, 51.3058763 ], "geometry": { "type": "Point", "coordinates": [ -0.2128785, 51.3058763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24589233" }, "bbox": [ -0.2091497, 51.3104338, -0.2091497, 51.3104338 ], "geometry": { "type": "Point", "coordinates": [ -0.2091497, 51.3104338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93325819" }, "bbox": [ -0.6652377, 51.0815419, -0.6652377, 51.0815419 ], "geometry": { "type": "Point", "coordinates": [ -0.6652377, 51.0815419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13593350" }, "bbox": [ -0.3746688, 51.3231966, -0.3746688, 51.3231966 ], "geometry": { "type": "Point", "coordinates": [ -0.3746688, 51.3231966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11617475" }, "bbox": [ -0.3971518, 51.3439288, -0.3971518, 51.3439288 ], "geometry": { "type": "Point", "coordinates": [ -0.3971518, 51.3439288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11617576" }, "bbox": [ -0.3966917, 51.3439687, -0.3966917, 51.3439687 ], "geometry": { "type": "Point", "coordinates": [ -0.3966917, 51.3439687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12646036" }, "bbox": [ -0.383951, 51.3671472, -0.383951, 51.3671472 ], "geometry": { "type": "Point", "coordinates": [ -0.383951, 51.3671472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12643434" }, "bbox": [ -0.3874161, 51.3669983, -0.3874161, 51.3669983 ], "geometry": { "type": "Point", "coordinates": [ -0.3874161, 51.3669983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11615686" }, "bbox": [ -0.399728, 51.344997, -0.399728, 51.344997 ], "geometry": { "type": "Point", "coordinates": [ -0.399728, 51.344997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12644045" }, "bbox": [ -0.3866149, 51.3680254, -0.3866149, 51.3680254 ], "geometry": { "type": "Point", "coordinates": [ -0.3866149, 51.3680254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12642443" }, "bbox": [ -0.3890644, 51.3678919, -0.3890644, 51.3678919 ], "geometry": { "type": "Point", "coordinates": [ -0.3890644, 51.3678919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12621441" }, "bbox": [ -0.390256, 51.3507989, -0.390256, 51.3507989 ], "geometry": { "type": "Point", "coordinates": [ -0.390256, 51.3507989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10615522" }, "bbox": [ -0.4144044, 51.3392293, -0.4144044, 51.3392293 ], "geometry": { "type": "Point", "coordinates": [ -0.4144044, 51.3392293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10614944" }, "bbox": [ -0.4149946, 51.3412783, -0.4149946, 51.3412783 ], "geometry": { "type": "Point", "coordinates": [ -0.4149946, 51.3412783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14598153" }, "bbox": [ -0.3540748, 51.3232752, -0.3540748, 51.3232752 ], "geometry": { "type": "Point", "coordinates": [ -0.3540748, 51.3232752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14597347" }, "bbox": [ -0.3549331, 51.3226948, -0.3549331, 51.3226948 ], "geometry": { "type": "Point", "coordinates": [ -0.3549331, 51.3226948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15647816" }, "bbox": [ -0.3382412, 51.3646762, -0.3382412, 51.3646762 ], "geometry": { "type": "Point", "coordinates": [ -0.3382412, 51.3646762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42506817" }, "bbox": [ 0.0425359, 51.2326781, 0.0425359, 51.2326781 ], "geometry": { "type": "Point", "coordinates": [ 0.0425359, 51.2326781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39507508" }, "bbox": [ 0.000179, 51.2327534, 0.000179, 51.2327534 ], "geometry": { "type": "Point", "coordinates": [ 0.000179, 51.2327534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42496146" }, "bbox": [ 0.0413312, 51.2264795, 0.0413312, 51.2264795 ], "geometry": { "type": "Point", "coordinates": [ 0.0413312, 51.2264795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33473636" }, "bbox": [ -0.0922493, 51.2099131, -0.0922493, 51.2099131 ], "geometry": { "type": "Point", "coordinates": [ -0.0922493, 51.2099131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37411945" }, "bbox": [ -0.0401724, 51.1561924, -0.0401724, 51.1561924 ], "geometry": { "type": "Point", "coordinates": [ -0.0401724, 51.1561924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41460869" }, "bbox": [ 0.0179729, 51.2022851, 0.0179729, 51.2022851 ], "geometry": { "type": "Point", "coordinates": [ 0.0179729, 51.2022851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87370749" }, "bbox": [ -0.7575731, 51.1299784, -0.7575731, 51.1299784 ], "geometry": { "type": "Point", "coordinates": [ -0.7575731, 51.1299784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87371936" }, "bbox": [ -0.7558105, 51.1290037, -0.7558105, 51.1290037 ], "geometry": { "type": "Point", "coordinates": [ -0.7558105, 51.1290037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37411169" }, "bbox": [ -0.0407846, 51.1581747, -0.0407846, 51.1581747 ], "geometry": { "type": "Point", "coordinates": [ -0.0407846, 51.1581747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39456423" }, "bbox": [ -0.0030654, 51.1892588, -0.0030654, 51.1892588 ], "geometry": { "type": "Point", "coordinates": [ -0.0030654, 51.1892588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94509695" }, "bbox": [ -0.6407125, 51.2499042, -0.6407125, 51.2499042 ], "geometry": { "type": "Point", "coordinates": [ -0.6407125, 51.2499042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94509799" }, "bbox": [ -0.6408052, 51.2503079, -0.6408052, 51.2503079 ], "geometry": { "type": "Point", "coordinates": [ -0.6408052, 51.2503079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94509999" }, "bbox": [ -0.6401884, 51.25025, -0.6401884, 51.25025 ], "geometry": { "type": "Point", "coordinates": [ -0.6401884, 51.25025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95500296" }, "bbox": [ -0.6400005, 51.2498809, -0.6400005, 51.2498809 ], "geometry": { "type": "Point", "coordinates": [ -0.6400005, 51.2498809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95347137" }, "bbox": [ -0.6342412, 51.1008192, -0.6342412, 51.1008192 ], "geometry": { "type": "Point", "coordinates": [ -0.6342412, 51.1008192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95346542" }, "bbox": [ -0.6354672, 51.1011213, -0.6354672, 51.1011213 ], "geometry": { "type": "Point", "coordinates": [ -0.6354672, 51.1011213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00528087" }, "bbox": [ -0.5559468, 51.265919, -0.5559468, 51.265919 ], "geometry": { "type": "Point", "coordinates": [ -0.5559468, 51.265919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00526361" }, "bbox": [ -0.5589349, 51.2638538, -0.5589349, 51.2638538 ], "geometry": { "type": "Point", "coordinates": [ -0.5589349, 51.2638538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00526069" }, "bbox": [ -0.5592817, 51.2644498, -0.5592817, 51.2644498 ], "geometry": { "type": "Point", "coordinates": [ -0.5592817, 51.2644498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00529369" }, "bbox": [ -0.5549313, 51.264477, -0.5549313, 51.264477 ], "geometry": { "type": "Point", "coordinates": [ -0.5549313, 51.264477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00527182" }, "bbox": [ -0.5577292, 51.2654811, -0.5577292, 51.2654811 ], "geometry": { "type": "Point", "coordinates": [ -0.5577292, 51.2654811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00522978" }, "bbox": [ -0.5640057, 51.2654798, -0.5640057, 51.2654798 ], "geometry": { "type": "Point", "coordinates": [ -0.5640057, 51.2654798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00524765" }, "bbox": [ -0.5613636, 51.2643318, -0.5613636, 51.2643318 ], "geometry": { "type": "Point", "coordinates": [ -0.5613636, 51.2643318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01392986" }, "bbox": [ -0.5534827, 51.1490649, -0.5534827, 51.1490649 ], "geometry": { "type": "Point", "coordinates": [ -0.5534827, 51.1490649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39421585" }, "bbox": [ -0.0110137, 51.1680643, -0.0110137, 51.1680643 ], "geometry": { "type": "Point", "coordinates": [ -0.0110137, 51.1680643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30499768" }, "bbox": [ -0.1254726, 51.2313538, -0.1254726, 51.2313538 ], "geometry": { "type": "Point", "coordinates": [ -0.1254726, 51.2313538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12617270" }, "bbox": [ -0.3826004, 51.3433265, -0.3826004, 51.3433265 ], "geometry": { "type": "Point", "coordinates": [ -0.3826004, 51.3433265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13618709" }, "bbox": [ -0.3669429, 51.3377938, -0.3669429, 51.3377938 ], "geometry": { "type": "Point", "coordinates": [ -0.3669429, 51.3377938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14613024" }, "bbox": [ -0.3606035, 51.3390691, -0.3606035, 51.3390691 ], "geometry": { "type": "Point", "coordinates": [ -0.3606035, 51.3390691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15420579" }, "bbox": [ -0.3554483, 51.172778, -0.3554483, 51.172778 ], "geometry": { "type": "Point", "coordinates": [ -0.3554483, 51.172778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15429172" }, "bbox": [ -0.3431937, 51.1719909, -0.3431937, 51.1719909 ], "geometry": { "type": "Point", "coordinates": [ -0.3431937, 51.1719909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14428477" }, "bbox": [ -0.358591, 51.1727538, -0.358591, 51.1727538 ], "geometry": { "type": "Point", "coordinates": [ -0.358591, 51.1727538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31524365" }, "bbox": [ -0.1179664, 51.2577713, -0.1179664, 51.2577713 ], "geometry": { "type": "Point", "coordinates": [ -0.1179664, 51.2577713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31528763" }, "bbox": [ -0.1114636, 51.2576531, -0.1114636, 51.2576531 ], "geometry": { "type": "Point", "coordinates": [ -0.1114636, 51.2576531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31529067" }, "bbox": [ -0.1109979, 51.2579722, -0.1109979, 51.2579722 ], "geometry": { "type": "Point", "coordinates": [ -0.1109979, 51.2579722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31528865" }, "bbox": [ -0.1112934, 51.2577465, -0.1112934, 51.2577465 ], "geometry": { "type": "Point", "coordinates": [ -0.1112934, 51.2577465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32487660" }, "bbox": [ -0.1013787, 51.2215023, -0.1013787, 51.2215023 ], "geometry": { "type": "Point", "coordinates": [ -0.1013787, 51.2215023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32486056" }, "bbox": [ -0.1025253, 51.2207578, -0.1025253, 51.2207578 ], "geometry": { "type": "Point", "coordinates": [ -0.1025253, 51.2207578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26435176" }, "bbox": [ -0.1914242, 51.1791848, -0.1914242, 51.1791848 ], "geometry": { "type": "Point", "coordinates": [ -0.1914242, 51.1791848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26435981" }, "bbox": [ -0.1901532, 51.179453, -0.1901532, 51.179453 ], "geometry": { "type": "Point", "coordinates": [ -0.1901532, 51.179453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26435479" }, "bbox": [ -0.1908326, 51.17945, -0.1908326, 51.17945 ], "geometry": { "type": "Point", "coordinates": [ -0.1908326, 51.17945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23615263" }, "bbox": [ -0.227576, 51.3405549, -0.227576, 51.3405549 ], "geometry": { "type": "Point", "coordinates": [ -0.227576, 51.3405549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23613172" }, "bbox": [ -0.2310216, 51.3411313, -0.2310216, 51.3411313 ], "geometry": { "type": "Point", "coordinates": [ -0.2310216, 51.3411313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22624783" }, "bbox": [ -0.2409553, 51.3518802, -0.2409553, 51.3518802 ], "geometry": { "type": "Point", "coordinates": [ -0.2409553, 51.3518802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22624279" }, "bbox": [ -0.2432919, 51.3510156, -0.2432919, 51.3510156 ], "geometry": { "type": "Point", "coordinates": [ -0.2432919, 51.3510156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23636285" }, "bbox": [ -0.2264081, 51.3603899, -0.2264081, 51.3603899 ], "geometry": { "type": "Point", "coordinates": [ -0.2264081, 51.3603899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23635396" }, "bbox": [ -0.2264235, 51.3606151, -0.2264235, 51.3606151 ], "geometry": { "type": "Point", "coordinates": [ -0.2264235, 51.3606151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36459918" }, "bbox": [ -0.0410376, 51.1894725, -0.0410376, 51.1894725 ], "geometry": { "type": "Point", "coordinates": [ -0.0410376, 51.1894725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98422109" }, "bbox": [ -0.5966426, 51.1695055, -0.5966426, 51.1695055 ], "geometry": { "type": "Point", "coordinates": [ -0.5966426, 51.1695055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98421914" }, "bbox": [ -0.5967531, 51.1701702, -0.5967531, 51.1701702 ], "geometry": { "type": "Point", "coordinates": [ -0.5967531, 51.1701702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98421201" }, "bbox": [ -0.5978282, 51.1688939, -0.5978282, 51.1688939 ], "geometry": { "type": "Point", "coordinates": [ -0.5978282, 51.1688939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98421104" }, "bbox": [ -0.5978917, 51.1691489, -0.5978917, 51.1691489 ], "geometry": { "type": "Point", "coordinates": [ -0.5978917, 51.1691489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88371979" }, "bbox": [ -0.7410173, 51.1326308, -0.7410173, 51.1326308 ], "geometry": { "type": "Point", "coordinates": [ -0.7410173, 51.1326308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23613427" }, "bbox": [ -0.2307889, 51.3371138, -0.2307889, 51.3371138 ], "geometry": { "type": "Point", "coordinates": [ -0.2307889, 51.3371138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98609051" }, "bbox": [ -0.5815816, 51.3351155, -0.5815816, 51.3351155 ], "geometry": { "type": "Point", "coordinates": [ -0.5815816, 51.3351155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98609145" }, "bbox": [ -0.5814469, 51.3346144, -0.5814469, 51.3346144 ], "geometry": { "type": "Point", "coordinates": [ -0.5814469, 51.3346144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98609845" }, "bbox": [ -0.5803543, 51.3346187, -0.5803543, 51.3346187 ], "geometry": { "type": "Point", "coordinates": [ -0.5803543, 51.3346187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99601353" }, "bbox": [ -0.5784882, 51.3351747, -0.5784882, 51.3351747 ], "geometry": { "type": "Point", "coordinates": [ -0.5784882, 51.3351747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99437573" }, "bbox": [ -0.5741698, 51.1841199, -0.5741698, 51.1841199 ], "geometry": { "type": "Point", "coordinates": [ -0.5741698, 51.1841199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95476947" }, "bbox": [ -0.6308492, 51.2184767, -0.6308492, 51.2184767 ], "geometry": { "type": "Point", "coordinates": [ -0.6308492, 51.2184767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560377" }, "bbox": [ -0.5091835, 51.3005406, -0.5091835, 51.3005406 ], "geometry": { "type": "Point", "coordinates": [ -0.5091835, 51.3005406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03569578" }, "bbox": [ -0.5103126, 51.3007205, -0.5103126, 51.3007205 ], "geometry": { "type": "Point", "coordinates": [ -0.5103126, 51.3007205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521384" }, "bbox": [ -0.6085246, 51.266701, -0.6085246, 51.266701 ], "geometry": { "type": "Point", "coordinates": [ -0.6085246, 51.266701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96491835" }, "bbox": [ -0.6232486, 51.235232, -0.6232486, 51.235232 ], "geometry": { "type": "Point", "coordinates": [ -0.6232486, 51.235232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37429801" }, "bbox": [ -0.0280672, 51.1607658, -0.0280672, 51.1607658 ], "geometry": { "type": "Point", "coordinates": [ -0.0280672, 51.1607658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40464198" }, "bbox": [ 0.0084639, 51.2046872, 0.0084639, 51.2046872 ], "geometry": { "type": "Point", "coordinates": [ 0.0084639, 51.2046872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40462192" }, "bbox": [ 0.005877, 51.2043466, 0.005877, 51.2043466 ], "geometry": { "type": "Point", "coordinates": [ 0.005877, 51.2043466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40471532" }, "bbox": [ 0.0049921, 51.2079447, 0.0049921, 51.2079447 ], "geometry": { "type": "Point", "coordinates": [ 0.0049921, 51.2079447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40472091" }, "bbox": [ 0.0058169, 51.2131819, 0.0058169, 51.2131819 ], "geometry": { "type": "Point", "coordinates": [ 0.0058169, 51.2131819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40472003" }, "bbox": [ 0.0054913, 51.2053101, 0.0054913, 51.2053101 ], "geometry": { "type": "Point", "coordinates": [ 0.0054913, 51.2053101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92365892" }, "bbox": [ -0.6780269, 51.1241611, -0.6780269, 51.1241611 ], "geometry": { "type": "Point", "coordinates": [ -0.6780269, 51.1241611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92368483" }, "bbox": [ -0.6750347, 51.1231931, -0.6750347, 51.1231931 ], "geometry": { "type": "Point", "coordinates": [ -0.6750347, 51.1231931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91364128" }, "bbox": [ -0.6948346, 51.118741, -0.6948346, 51.118741 ], "geometry": { "type": "Point", "coordinates": [ -0.6948346, 51.118741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91357573" }, "bbox": [ -0.6906729, 51.1136415, -0.6906729, 51.1136415 ], "geometry": { "type": "Point", "coordinates": [ -0.6906729, 51.1136415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14505020" }, "bbox": [ -0.3610828, 51.239498, -0.3610828, 51.239498 ], "geometry": { "type": "Point", "coordinates": [ -0.3610828, 51.239498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18373357" }, "bbox": [ -0.3105116, 51.1252403, -0.3105116, 51.1252403 ], "geometry": { "type": "Point", "coordinates": [ -0.3105116, 51.1252403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18372655" }, "bbox": [ -0.311776, 51.1249776, -0.311776, 51.1249776 ], "geometry": { "type": "Point", "coordinates": [ -0.311776, 51.1249776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371044" }, "bbox": [ -0.3136866, 51.1240482, -0.3136866, 51.1240482 ], "geometry": { "type": "Point", "coordinates": [ -0.3136866, 51.1240482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371145" }, "bbox": [ -0.3135698, 51.1242207, -0.3135698, 51.1242207 ], "geometry": { "type": "Point", "coordinates": [ -0.3135698, 51.1242207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98345341" }, "bbox": [ -0.5940378, 51.1004767, -0.5940378, 51.1004767 ], "geometry": { "type": "Point", "coordinates": [ -0.5940378, 51.1004767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98344140" }, "bbox": [ -0.5957269, 51.1003768, -0.5957269, 51.1003768 ], "geometry": { "type": "Point", "coordinates": [ -0.5957269, 51.1003768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98356311" }, "bbox": [ -0.5939211, 51.1071365, -0.5939211, 51.1071365 ], "geometry": { "type": "Point", "coordinates": [ -0.5939211, 51.1071365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98355714" }, "bbox": [ -0.5944584, 51.1078203, -0.5944584, 51.1078203 ], "geometry": { "type": "Point", "coordinates": [ -0.5944584, 51.1078203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98345387" }, "bbox": [ -0.5933241, 51.1050495, -0.5933241, 51.1050495 ], "geometry": { "type": "Point", "coordinates": [ -0.5933241, 51.1050495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98346674" }, "bbox": [ -0.5921955, 51.1035824, -0.5921955, 51.1035824 ], "geometry": { "type": "Point", "coordinates": [ -0.5921955, 51.1035824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21454755" }, "bbox": [ -0.2637385, 51.1963297, -0.2637385, 51.1963297 ], "geometry": { "type": "Point", "coordinates": [ -0.2637385, 51.1963297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21452645" }, "bbox": [ -0.2658651, 51.1954116, -0.2658651, 51.1954116 ], "geometry": { "type": "Point", "coordinates": [ -0.2658651, 51.1954116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22444413" }, "bbox": [ -0.2494857, 51.183144, -0.2494857, 51.183144 ], "geometry": { "type": "Point", "coordinates": [ -0.2494857, 51.183144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22440258" }, "bbox": [ -0.2553297, 51.1874855, -0.2553297, 51.1874855 ], "geometry": { "type": "Point", "coordinates": [ -0.2553297, 51.1874855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22442876" }, "bbox": [ -0.25155, 51.1889827, -0.25155, 51.1889827 ], "geometry": { "type": "Point", "coordinates": [ -0.25155, 51.1889827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22443676" }, "bbox": [ -0.2503551, 51.1889961, -0.2503551, 51.1889961 ], "geometry": { "type": "Point", "coordinates": [ -0.2503551, 51.1889961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91515850" }, "bbox": [ -0.6891469, 51.255221, -0.6891469, 51.255221 ], "geometry": { "type": "Point", "coordinates": [ -0.6891469, 51.255221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91514246" }, "bbox": [ -0.6914617, 51.2549624, -0.6914617, 51.2549624 ], "geometry": { "type": "Point", "coordinates": [ -0.6914617, 51.2549624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91514245" }, "bbox": [ -0.6912442, 51.2548484, -0.6912442, 51.2548484 ], "geometry": { "type": "Point", "coordinates": [ -0.6912442, 51.2548484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91514549" }, "bbox": [ -0.690819, 51.2553017, -0.690819, 51.2553017 ], "geometry": { "type": "Point", "coordinates": [ -0.690819, 51.2553017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05684831" }, "bbox": [ -0.4848001, 51.404164, -0.4848001, 51.404164 ], "geometry": { "type": "Point", "coordinates": [ -0.4848001, 51.404164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05685004" }, "bbox": [ -0.4847386, 51.4015743, -0.4847386, 51.4015743 ], "geometry": { "type": "Point", "coordinates": [ -0.4847386, 51.4015743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85485755" }, "bbox": [ -0.775798, 51.2298039, -0.775798, 51.2298039 ], "geometry": { "type": "Point", "coordinates": [ -0.775798, 51.2298039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13416346" }, "bbox": [ -0.3762668, 51.1612599, -0.3762668, 51.1612599 ], "geometry": { "type": "Point", "coordinates": [ -0.3762668, 51.1612599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15484285" }, "bbox": [ -0.3483876, 51.2269747, -0.3483876, 51.2269747 ], "geometry": { "type": "Point", "coordinates": [ -0.3483876, 51.2269747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00408025" }, "bbox": [ -0.560237, 51.1525411, -0.560237, 51.1525411 ], "geometry": { "type": "Point", "coordinates": [ -0.560237, 51.1525411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02403565" }, "bbox": [ -0.5379402, 51.1560519, -0.5379402, 51.1560519 ], "geometry": { "type": "Point", "coordinates": [ -0.5379402, 51.1560519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02400125" }, "bbox": [ -0.5431009, 51.1527251, -0.5431009, 51.1527251 ], "geometry": { "type": "Point", "coordinates": [ -0.5431009, 51.1527251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455134" }, "bbox": [ -0.248233, 51.1941981, -0.248233, 51.1941981 ], "geometry": { "type": "Point", "coordinates": [ -0.248233, 51.1941981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455345" }, "bbox": [ -0.247655, 51.1952211, -0.247655, 51.1952211 ], "geometry": { "type": "Point", "coordinates": [ -0.247655, 51.1952211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454662" }, "bbox": [ -0.2486731, 51.1968248, -0.2486731, 51.1968248 ], "geometry": { "type": "Point", "coordinates": [ -0.2486731, 51.1968248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454960" }, "bbox": [ -0.2484266, 51.1965287, -0.2484266, 51.1965287 ], "geometry": { "type": "Point", "coordinates": [ -0.2484266, 51.1965287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455737" }, "bbox": [ -0.2472955, 51.1944019, -0.2472955, 51.1944019 ], "geometry": { "type": "Point", "coordinates": [ -0.2472955, 51.1944019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438166" }, "bbox": [ -0.7307808, 51.1851998, -0.7307808, 51.1851998 ], "geometry": { "type": "Point", "coordinates": [ -0.7307808, 51.1851998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438352" }, "bbox": [ -0.7303892, 51.183948, -0.7303892, 51.183948 ], "geometry": { "type": "Point", "coordinates": [ -0.7303892, 51.183948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439093" }, "bbox": [ -0.729351, 51.1873657, -0.729351, 51.1873657 ], "geometry": { "type": "Point", "coordinates": [ -0.729351, 51.1873657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438455" }, "bbox": [ -0.730192, 51.1841935, -0.730192, 51.1841935 ], "geometry": { "type": "Point", "coordinates": [ -0.730192, 51.1841935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89430479" }, "bbox": [ -0.7274221, 51.1863611, -0.7274221, 51.1863611 ], "geometry": { "type": "Point", "coordinates": [ -0.7274221, 51.1863611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20621285" }, "bbox": [ -0.2763392, 51.3519337, -0.2763392, 51.3519337 ], "geometry": { "type": "Point", "coordinates": [ -0.2763392, 51.3519337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01408924" }, "bbox": [ -0.5445551, 51.1523962, -0.5445551, 51.1523962 ], "geometry": { "type": "Point", "coordinates": [ -0.5445551, 51.1523962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01408907" }, "bbox": [ -0.5445581, 51.1508684, -0.5445581, 51.1508684 ], "geometry": { "type": "Point", "coordinates": [ -0.5445581, 51.1508684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90460463" }, "bbox": [ -0.7121045, 51.2118631, -0.7121045, 51.2118631 ], "geometry": { "type": "Point", "coordinates": [ -0.7121045, 51.2118631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90460459" }, "bbox": [ -0.7120761, 51.2115081, -0.7120761, 51.2115081 ], "geometry": { "type": "Point", "coordinates": [ -0.7120761, 51.2115081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82415803" }, "bbox": [ -0.8194073, 51.1623048, -0.8194073, 51.1623048 ], "geometry": { "type": "Point", "coordinates": [ -0.8194073, 51.1623048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82419213" }, "bbox": [ -0.815303, 51.163205, -0.815303, 51.163205 ], "geometry": { "type": "Point", "coordinates": [ -0.815303, 51.163205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03760762" }, "bbox": [ -0.5170031, 51.4791492, -0.5170031, 51.4791492 ], "geometry": { "type": "Point", "coordinates": [ -0.5170031, 51.4791492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03761065" }, "bbox": [ -0.5165845, 51.4793958, -0.5165845, 51.4793958 ], "geometry": { "type": "Point", "coordinates": [ -0.5165845, 51.4793958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04749916" }, "bbox": [ -0.4932061, 51.4555648, -0.4932061, 51.4555648 ], "geometry": { "type": "Point", "coordinates": [ -0.4932061, 51.4555648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05720626" }, "bbox": [ -0.489562, 51.4396598, -0.489562, 51.4396598 ], "geometry": { "type": "Point", "coordinates": [ -0.489562, 51.4396598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05733371" }, "bbox": [ -0.4849689, 51.4533879, -0.4849689, 51.4533879 ], "geometry": { "type": "Point", "coordinates": [ -0.4849689, 51.4533879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95471179" }, "bbox": [ -0.6392886, 51.2213397, -0.6392886, 51.2213397 ], "geometry": { "type": "Point", "coordinates": [ -0.6392886, 51.2213397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92469414" }, "bbox": [ -0.6710609, 51.2065069, -0.6710609, 51.2065069 ], "geometry": { "type": "Point", "coordinates": [ -0.6710609, 51.2065069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92469116" }, "bbox": [ -0.671413, 51.2072177, -0.671413, 51.2072177 ], "geometry": { "type": "Point", "coordinates": [ -0.671413, 51.2072177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460414" }, "bbox": [ -0.6695957, 51.2069686, -0.6695957, 51.2069686 ], "geometry": { "type": "Point", "coordinates": [ -0.6695957, 51.2069686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01541463" }, "bbox": [ -0.550897, 51.282064, -0.550897, 51.282064 ], "geometry": { "type": "Point", "coordinates": [ -0.550897, 51.282064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90478767" }, "bbox": [ -0.7000507, 51.221065, -0.7000507, 51.221065 ], "geometry": { "type": "Point", "coordinates": [ -0.7000507, 51.221065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90479468" }, "bbox": [ -0.6983893, 51.2213121, -0.6983893, 51.2213121 ], "geometry": { "type": "Point", "coordinates": [ -0.6983893, 51.2213121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90479864" }, "bbox": [ -0.6985223, 51.2208308, -0.6985223, 51.2208308 ], "geometry": { "type": "Point", "coordinates": [ -0.6985223, 51.2208308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02479066" }, "bbox": [ -0.5278492, 51.2189578, -0.5278492, 51.2189578 ], "geometry": { "type": "Point", "coordinates": [ -0.5278492, 51.2189578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92459092" }, "bbox": [ -0.6715735, 51.2049162, -0.6715735, 51.2049162 ], "geometry": { "type": "Point", "coordinates": [ -0.6715735, 51.2049162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93451883" }, "bbox": [ -0.6679283, 51.2043683, -0.6679283, 51.2043683 ], "geometry": { "type": "Point", "coordinates": [ -0.6679283, 51.2043683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93451631" }, "bbox": [ -0.6681667, 51.1994394, -0.6681667, 51.1994394 ], "geometry": { "type": "Point", "coordinates": [ -0.6681667, 51.1994394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95487234" }, "bbox": [ -0.6301682, 51.2261955, -0.6301682, 51.2261955 ], "geometry": { "type": "Point", "coordinates": [ -0.6301682, 51.2261955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97435437" }, "bbox": [ -0.6055359, 51.1811524, -0.6055359, 51.1811524 ], "geometry": { "type": "Point", "coordinates": [ -0.6055359, 51.1811524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509952" }, "bbox": [ -0.6978529, 51.2467321, -0.6978529, 51.2467321 ], "geometry": { "type": "Point", "coordinates": [ -0.6978529, 51.2467321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91501458" }, "bbox": [ -0.6953332, 51.246922, -0.6953332, 51.246922 ], "geometry": { "type": "Point", "coordinates": [ -0.6953332, 51.246922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89620180" }, "bbox": [ -0.718979, 51.3567027, -0.718979, 51.3567027 ], "geometry": { "type": "Point", "coordinates": [ -0.718979, 51.3567027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88633779" }, "bbox": [ -0.7318302, 51.3663992, -0.7318302, 51.3663992 ], "geometry": { "type": "Point", "coordinates": [ -0.7318302, 51.3663992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88635574" }, "bbox": [ -0.7310544, 51.3658733, -0.7310544, 51.3658733 ], "geometry": { "type": "Point", "coordinates": [ -0.7310544, 51.3658733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90464329" }, "bbox": [ -0.7069163, 51.2087295, -0.7069163, 51.2087295 ], "geometry": { "type": "Point", "coordinates": [ -0.7069163, 51.2087295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90464529" }, "bbox": [ -0.7061551, 51.2086506, -0.7061551, 51.2086506 ], "geometry": { "type": "Point", "coordinates": [ -0.7061551, 51.2086506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90473459" }, "bbox": [ -0.708942, 51.2203982, -0.708942, 51.2203982 ], "geometry": { "type": "Point", "coordinates": [ -0.708942, 51.2203982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90474761" }, "bbox": [ -0.705827, 51.2207001, -0.705827, 51.2207001 ], "geometry": { "type": "Point", "coordinates": [ -0.705827, 51.2207001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02758695" }, "bbox": [ -0.520418, 51.4732385, -0.520418, 51.4732385 ], "geometry": { "type": "Point", "coordinates": [ -0.520418, 51.4732385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02766407" }, "bbox": [ -0.5234311, 51.4743579, -0.5234311, 51.4743579 ], "geometry": { "type": "Point", "coordinates": [ -0.5234311, 51.4743579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02768501" }, "bbox": [ -0.5205379, 51.4733691, -0.5205379, 51.4733691 ], "geometry": { "type": "Point", "coordinates": [ -0.5205379, 51.4733691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04741482" }, "bbox": [ -0.5021701, 51.462768, -0.5021701, 51.462768 ], "geometry": { "type": "Point", "coordinates": [ -0.5021701, 51.462768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02526560" }, "bbox": [ -0.5310849, 51.2634063, -0.5310849, 51.2634063 ], "geometry": { "type": "Point", "coordinates": [ -0.5310849, 51.2634063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91477553" }, "bbox": [ -0.6877168, 51.2196919, -0.6877168, 51.2196919 ], "geometry": { "type": "Point", "coordinates": [ -0.6877168, 51.2196919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91476469" }, "bbox": [ -0.6890391, 51.2211675, -0.6890391, 51.2211675 ], "geometry": { "type": "Point", "coordinates": [ -0.6890391, 51.2211675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20402120" }, "bbox": [ -0.2822581, 51.148452, -0.2822581, 51.148452 ], "geometry": { "type": "Point", "coordinates": [ -0.2822581, 51.148452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96461594" }, "bbox": [ -0.6246816, 51.2136162, -0.6246816, 51.2136162 ], "geometry": { "type": "Point", "coordinates": [ -0.6246816, 51.2136162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96461399" }, "bbox": [ -0.6253045, 51.2140704, -0.6253045, 51.2140704 ], "geometry": { "type": "Point", "coordinates": [ -0.6253045, 51.2140704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03759424" }, "bbox": [ -0.5050726, 51.4666083, -0.5050726, 51.4666083 ], "geometry": { "type": "Point", "coordinates": [ -0.5050726, 51.4666083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542943" }, "bbox": [ -0.6634428, 51.2811056, -0.6634428, 51.2811056 ], "geometry": { "type": "Point", "coordinates": [ -0.6634428, 51.2811056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00462494" }, "bbox": [ -0.5648183, 51.2124514, -0.5648183, 51.2124514 ], "geometry": { "type": "Point", "coordinates": [ -0.5648183, 51.2124514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04453927" }, "bbox": [ -0.5070287, 51.1980622, -0.5070287, 51.1980622 ], "geometry": { "type": "Point", "coordinates": [ -0.5070287, 51.1980622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90465715" }, "bbox": [ -0.704784, 51.2073698, -0.704784, 51.2073698 ], "geometry": { "type": "Point", "coordinates": [ -0.704784, 51.2073698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91483211" }, "bbox": [ -0.6929614, 51.2248259, -0.6929614, 51.2248259 ], "geometry": { "type": "Point", "coordinates": [ -0.6929614, 51.2248259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90476292" }, "bbox": [ -0.7045895, 51.2232523, -0.7045895, 51.2232523 ], "geometry": { "type": "Point", "coordinates": [ -0.7045895, 51.2232523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521364" }, "bbox": [ -0.2081199, 51.2592276, -0.2081199, 51.2592276 ], "geometry": { "type": "Point", "coordinates": [ -0.2081199, 51.2592276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02402946" }, "bbox": [ -0.5387888, 51.1543, -0.5387888, 51.1543 ], "geometry": { "type": "Point", "coordinates": [ -0.5387888, 51.1543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33473065" }, "bbox": [ -0.0928877, 51.2123131, -0.0928877, 51.2123131 ], "geometry": { "type": "Point", "coordinates": [ -0.0928877, 51.2123131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33471897" }, "bbox": [ -0.0947005, 51.2153134, -0.0947005, 51.2153134 ], "geometry": { "type": "Point", "coordinates": [ -0.0947005, 51.2153134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33471767" }, "bbox": [ -0.0947696, 51.2128482, -0.0947696, 51.2128482 ], "geometry": { "type": "Point", "coordinates": [ -0.0947696, 51.2128482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33471350" }, "bbox": [ -0.0957486, 51.2111164, -0.0957486, 51.2111164 ], "geometry": { "type": "Point", "coordinates": [ -0.0957486, 51.2111164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32478175" }, "bbox": [ -0.0999097, 51.2134484, -0.0999097, 51.2134484 ], "geometry": { "type": "Point", "coordinates": [ -0.0999097, 51.2134484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32479245" }, "bbox": [ -0.098377, 51.2108447, -0.098377, 51.2108447 ], "geometry": { "type": "Point", "coordinates": [ -0.098377, 51.2108447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32478243" }, "bbox": [ -0.0996534, 51.2106135, -0.0996534, 51.2106135 ], "geometry": { "type": "Point", "coordinates": [ -0.0996534, 51.2106135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32479575" }, "bbox": [ -0.098075, 51.2133431, -0.098075, 51.2133431 ], "geometry": { "type": "Point", "coordinates": [ -0.098075, 51.2133431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31466802" }, "bbox": [ -0.1165722, 51.1983049, -0.1165722, 51.1983049 ], "geometry": { "type": "Point", "coordinates": [ -0.1165722, 51.1983049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89423902" }, "bbox": [ -0.722874, 51.1704375, -0.722874, 51.1704375 ], "geometry": { "type": "Point", "coordinates": [ -0.722874, 51.1704375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32452159" }, "bbox": [ -0.10913, 51.1943041, -0.10913, 51.1943041 ], "geometry": { "type": "Point", "coordinates": [ -0.10913, 51.1943041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91441153" }, "bbox": [ -0.6974868, 51.1927664, -0.6974868, 51.1927664 ], "geometry": { "type": "Point", "coordinates": [ -0.6974868, 51.1927664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91441569" }, "bbox": [ -0.6968747, 51.1942185, -0.6968747, 51.1942185 ], "geometry": { "type": "Point", "coordinates": [ -0.6968747, 51.1942185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31466101" }, "bbox": [ -0.1175191, 51.1981426, -0.1175191, 51.1981426 ], "geometry": { "type": "Point", "coordinates": [ -0.1175191, 51.1981426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31457593" }, "bbox": [ -0.1157156, 51.1975063, -0.1157156, 51.1975063 ], "geometry": { "type": "Point", "coordinates": [ -0.1157156, 51.1975063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32464203" }, "bbox": [ -0.1060122, 51.198195, -0.1060122, 51.198195 ], "geometry": { "type": "Point", "coordinates": [ -0.1060122, 51.198195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32460257" }, "bbox": [ -0.1119376, 51.2029971, -0.1119376, 51.2029971 ], "geometry": { "type": "Point", "coordinates": [ -0.1119376, 51.2029971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32464812" }, "bbox": [ -0.1051756, 51.1990002, -0.1051756, 51.1990002 ], "geometry": { "type": "Point", "coordinates": [ -0.1051756, 51.1990002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32461830" }, "bbox": [ -0.1094779, 51.2005126, -0.1094779, 51.2005126 ], "geometry": { "type": "Point", "coordinates": [ -0.1094779, 51.2005126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32463330" }, "bbox": [ -0.1082564, 51.2012191, -0.1082564, 51.2012191 ], "geometry": { "type": "Point", "coordinates": [ -0.1082564, 51.2012191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32460231" }, "bbox": [ -0.1118937, 51.2007083, -0.1118937, 51.2007083 ], "geometry": { "type": "Point", "coordinates": [ -0.1118937, 51.2007083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32463116" }, "bbox": [ -0.1077739, 51.1993592, -0.1077739, 51.1993592 ], "geometry": { "type": "Point", "coordinates": [ -0.1077739, 51.1993592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31465441" }, "bbox": [ -0.1184627, 51.2018329, -0.1184627, 51.2018329 ], "geometry": { "type": "Point", "coordinates": [ -0.1184627, 51.2018329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31466965" }, "bbox": [ -0.116222, 51.2038564, -0.116222, 51.2038564 ], "geometry": { "type": "Point", "coordinates": [ -0.116222, 51.2038564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31467544" }, "bbox": [ -0.1154355, 51.2019946, -0.1154355, 51.2019946 ], "geometry": { "type": "Point", "coordinates": [ -0.1154355, 51.2019946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31464537" }, "bbox": [ -0.1199359, 51.2014434, -0.1199359, 51.2014434 ], "geometry": { "type": "Point", "coordinates": [ -0.1199359, 51.2014434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31463950" }, "bbox": [ -0.1206659, 51.2026283, -0.1206659, 51.2026283 ], "geometry": { "type": "Point", "coordinates": [ -0.1206659, 51.2026283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31466120" }, "bbox": [ -0.117934, 51.1997416, -0.117934, 51.1997416 ], "geometry": { "type": "Point", "coordinates": [ -0.117934, 51.1997416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31465320" }, "bbox": [ -0.11887, 51.1999156, -0.11887, 51.1999156 ], "geometry": { "type": "Point", "coordinates": [ -0.11887, 51.1999156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31464417" }, "bbox": [ -0.1199786, 51.1998913, -0.1199786, 51.1998913 ], "geometry": { "type": "Point", "coordinates": [ -0.1199786, 51.1998913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31469146" }, "bbox": [ -0.1132885, 51.2022308, -0.1132885, 51.2022308 ], "geometry": { "type": "Point", "coordinates": [ -0.1132885, 51.2022308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31463937" }, "bbox": [ -0.1206651, 51.2014667, -0.1206651, 51.2014667 ], "geometry": { "type": "Point", "coordinates": [ -0.1206651, 51.2014667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32450481" }, "bbox": [ -0.1116199, 51.1962603, -0.1116199, 51.1962603 ], "geometry": { "type": "Point", "coordinates": [ -0.1116199, 51.1962603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32452776" }, "bbox": [ -0.1083075, 51.1958008, -0.1083075, 51.1958008 ], "geometry": { "type": "Point", "coordinates": [ -0.1083075, 51.1958008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32469105" }, "bbox": [ -0.0990729, 51.1981865, -0.0990729, 51.1981865 ], "geometry": { "type": "Point", "coordinates": [ -0.0990729, 51.1981865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32465906" }, "bbox": [ -0.1035573, 51.1984228, -0.1035573, 51.1984228 ], "geometry": { "type": "Point", "coordinates": [ -0.1035573, 51.1984228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32463339" }, "bbox": [ -0.1072467, 51.2014821, -0.1072467, 51.2014821 ], "geometry": { "type": "Point", "coordinates": [ -0.1072467, 51.2014821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32464444" }, "bbox": [ -0.1058185, 51.2018558, -0.1058185, 51.2018558 ], "geometry": { "type": "Point", "coordinates": [ -0.1058185, 51.2018558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32466809" }, "bbox": [ -0.1023907, 51.198736, -0.1023907, 51.198736 ], "geometry": { "type": "Point", "coordinates": [ -0.1023907, 51.198736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32466230" }, "bbox": [ -0.1031242, 51.2005947, -0.1031242, 51.2005947 ], "geometry": { "type": "Point", "coordinates": [ -0.1031242, 51.2005947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32466010" }, "bbox": [ -0.1033249, 51.1987759, -0.1033249, 51.1987759 ], "geometry": { "type": "Point", "coordinates": [ -0.1033249, 51.1987759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95496340" }, "bbox": [ -0.6317829, 51.2361159, -0.6317829, 51.2361159 ], "geometry": { "type": "Point", "coordinates": [ -0.6317829, 51.2361159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31455295" }, "bbox": [ -0.1188494, 51.1975152, -0.1188494, 51.1975152 ], "geometry": { "type": "Point", "coordinates": [ -0.1188494, 51.1975152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32468973" }, "bbox": [ -0.0990171, 51.2045553, -0.0990171, 51.2045553 ], "geometry": { "type": "Point", "coordinates": [ -0.0990171, 51.2045553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32469143" }, "bbox": [ -0.0988404, 51.2014405, -0.0988404, 51.2014405 ], "geometry": { "type": "Point", "coordinates": [ -0.0988404, 51.2014405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31464169" }, "bbox": [ -0.1204567, 51.2044074, -0.1204567, 51.2044074 ], "geometry": { "type": "Point", "coordinates": [ -0.1204567, 51.2044074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31490659" }, "bbox": [ -0.1241637, 51.2305123, -0.1241637, 51.2305123 ], "geometry": { "type": "Point", "coordinates": [ -0.1241637, 51.2305123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33393463" }, "bbox": [ -0.0953724, 51.1404302, -0.0953724, 51.1404302 ], "geometry": { "type": "Point", "coordinates": [ -0.0953724, 51.1404302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32451067" }, "bbox": [ -0.1108877, 51.1949731, -0.1108877, 51.1949731 ], "geometry": { "type": "Point", "coordinates": [ -0.1108877, 51.1949731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32450565" }, "bbox": [ -0.1116324, 51.1950829, -0.1116324, 51.1950829 ], "geometry": { "type": "Point", "coordinates": [ -0.1116324, 51.1950829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31453292" }, "bbox": [ -0.1216881, 51.1974904, -0.1216881, 51.1974904 ], "geometry": { "type": "Point", "coordinates": [ -0.1216881, 51.1974904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31454572" }, "bbox": [ -0.1201058, 51.1955454, -0.1201058, 51.1955454 ], "geometry": { "type": "Point", "coordinates": [ -0.1201058, 51.1955454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31453094" }, "bbox": [ -0.1222311, 51.1974867, -0.1222311, 51.1974867 ], "geometry": { "type": "Point", "coordinates": [ -0.1222311, 51.1974867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31455083" }, "bbox": [ -0.1194473, 51.1965919, -0.1194473, 51.1965919 ], "geometry": { "type": "Point", "coordinates": [ -0.1194473, 51.1965919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31456060" }, "bbox": [ -0.1179704, 51.1946024, -0.1179704, 51.1946024 ], "geometry": { "type": "Point", "coordinates": [ -0.1179704, 51.1946024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21554073" }, "bbox": [ -0.2604705, 51.2877921, -0.2604705, 51.2877921 ], "geometry": { "type": "Point", "coordinates": [ -0.2604705, 51.2877921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423547" }, "bbox": [ -0.823379, 51.175513, -0.823379, 51.175513 ], "geometry": { "type": "Point", "coordinates": [ -0.823379, 51.175513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96533175" }, "bbox": [ -0.6205914, 51.2748202, -0.6205914, 51.2748202 ], "geometry": { "type": "Point", "coordinates": [ -0.6205914, 51.2748202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96538089" }, "bbox": [ -0.6136735, 51.275907, -0.6136735, 51.275907 ], "geometry": { "type": "Point", "coordinates": [ -0.6136735, 51.275907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537941" }, "bbox": [ -0.6138854, 51.271692, -0.6138854, 51.271692 ], "geometry": { "type": "Point", "coordinates": [ -0.6138854, 51.271692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96535678" }, "bbox": [ -0.6171415, 51.2749652, -0.6171415, 51.2749652 ], "geometry": { "type": "Point", "coordinates": [ -0.6171415, 51.2749652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16420860" }, "bbox": [ -0.3411488, 51.1707496, -0.3411488, 51.1707496 ], "geometry": { "type": "Point", "coordinates": [ -0.3411488, 51.1707496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16421756" }, "bbox": [ -0.3396387, 51.1706146, -0.3396387, 51.1706146 ], "geometry": { "type": "Point", "coordinates": [ -0.3396387, 51.1706146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95440213" }, "bbox": [ -0.6416741, 51.1885383, -0.6416741, 51.1885383 ], "geometry": { "type": "Point", "coordinates": [ -0.6416741, 51.1885383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95440615" }, "bbox": [ -0.640951, 51.1887146, -0.640951, 51.1887146 ], "geometry": { "type": "Point", "coordinates": [ -0.640951, 51.1887146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09414538" }, "bbox": [ -0.4370173, 51.1609797, -0.4370173, 51.1609797 ], "geometry": { "type": "Point", "coordinates": [ -0.4370173, 51.1609797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09413260" }, "bbox": [ -0.4378491, 51.1630835, -0.4378491, 51.1630835 ], "geometry": { "type": "Point", "coordinates": [ -0.4378491, 51.1630835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38453601" }, "bbox": [ -0.0216615, 51.1875147, -0.0216615, 51.1875147 ], "geometry": { "type": "Point", "coordinates": [ -0.0216615, 51.1875147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38454013" }, "bbox": [ -0.020765, 51.1886392, -0.020765, 51.1886392 ], "geometry": { "type": "Point", "coordinates": [ -0.020765, 51.1886392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452807" }, "bbox": [ -0.0225787, 51.1881069, -0.0225787, 51.1881069 ], "geometry": { "type": "Point", "coordinates": [ -0.0225787, 51.1881069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28546466" }, "bbox": [ -0.1570596, 51.2765993, -0.1570596, 51.2765993 ], "geometry": { "type": "Point", "coordinates": [ -0.1570596, 51.2765993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08485946" }, "bbox": [ -0.4464652, 51.2251182, -0.4464652, 51.2251182 ], "geometry": { "type": "Point", "coordinates": [ -0.4464652, 51.2251182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82457098" }, "bbox": [ -0.8174431, 51.2070334, -0.8174431, 51.2070334 ], "geometry": { "type": "Point", "coordinates": [ -0.8174431, 51.2070334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82463874" }, "bbox": [ -0.8219254, 51.2138659, -0.8219254, 51.2138659 ], "geometry": { "type": "Point", "coordinates": [ -0.8219254, 51.2138659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82462537" }, "bbox": [ -0.8218051, 51.210441, -0.8218051, 51.210441 ], "geometry": { "type": "Point", "coordinates": [ -0.8218051, 51.210441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82465615" }, "bbox": [ -0.8199283, 51.2087489, -0.8199283, 51.2087489 ], "geometry": { "type": "Point", "coordinates": [ -0.8199283, 51.2087489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82465924" }, "bbox": [ -0.8186888, 51.2089626, -0.8186888, 51.2089626 ], "geometry": { "type": "Point", "coordinates": [ -0.8186888, 51.2089626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82465557" }, "bbox": [ -0.8197013, 51.2122844, -0.8197013, 51.2122844 ], "geometry": { "type": "Point", "coordinates": [ -0.8197013, 51.2122844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82465434" }, "bbox": [ -0.8197418, 51.210219, -0.8197418, 51.210219 ], "geometry": { "type": "Point", "coordinates": [ -0.8197418, 51.210219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82462682" }, "bbox": [ -0.8237435, 51.2146427, -0.8237435, 51.2146427 ], "geometry": { "type": "Point", "coordinates": [ -0.8237435, 51.2146427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82463071" }, "bbox": [ -0.8226727, 51.2137, -0.8226727, 51.2137 ], "geometry": { "type": "Point", "coordinates": [ -0.8226727, 51.2137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03428892" }, "bbox": [ -0.5152729, 51.1763253, -0.5152729, 51.1763253 ], "geometry": { "type": "Point", "coordinates": [ -0.5152729, 51.1763253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427986" }, "bbox": [ -0.5166093, 51.1755353, -0.5166093, 51.1755353 ], "geometry": { "type": "Point", "coordinates": [ -0.5166093, 51.1755353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38556631" }, "bbox": [ -0.0132781, 51.2801445, -0.0132781, 51.2801445 ], "geometry": { "type": "Point", "coordinates": [ -0.0132781, 51.2801445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38556616" }, "bbox": [ -0.0132581, 51.2787574, -0.0132581, 51.2787574 ], "geometry": { "type": "Point", "coordinates": [ -0.0132581, 51.2787574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38559141" }, "bbox": [ -0.0095618, 51.280934, -0.0095618, 51.280934 ], "geometry": { "type": "Point", "coordinates": [ -0.0095618, 51.280934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39556452" }, "bbox": [ 0.0009855, 51.2817669, 0.0009855, 51.2817669 ], "geometry": { "type": "Point", "coordinates": [ 0.0009855, 51.2817669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39552136" }, "bbox": [ -0.00493, 51.2806131, -0.00493, 51.2806131 ], "geometry": { "type": "Point", "coordinates": [ -0.00493, 51.2806131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39551532" }, "bbox": [ -0.0062141, 51.2801862, -0.0062141, 51.2801862 ], "geometry": { "type": "Point", "coordinates": [ -0.0062141, 51.2801862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39553661" }, "bbox": [ -0.0029914, 51.2825159, -0.0029914, 51.2825159 ], "geometry": { "type": "Point", "coordinates": [ -0.0029914, 51.2825159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22501937" }, "bbox": [ -0.2515293, 51.2393263, -0.2515293, 51.2393263 ], "geometry": { "type": "Point", "coordinates": [ -0.2515293, 51.2393263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22503231" }, "bbox": [ -0.2492726, 51.2388447, -0.2492726, 51.2388447 ], "geometry": { "type": "Point", "coordinates": [ -0.2492726, 51.2388447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37513922" }, "bbox": [ -0.0328619, 51.2437248, -0.0328619, 51.2437248 ], "geometry": { "type": "Point", "coordinates": [ -0.0328619, 51.2437248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37510776" }, "bbox": [ -0.0376883, 51.2474878, -0.0376883, 51.2474878 ], "geometry": { "type": "Point", "coordinates": [ -0.0376883, 51.2474878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36511564" }, "bbox": [ -0.0506323, 51.2475972, -0.0506323, 51.2475972 ], "geometry": { "type": "Point", "coordinates": [ -0.0506323, 51.2475972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36511667" }, "bbox": [ -0.0504099, 51.2476612, -0.0504099, 51.2476612 ], "geometry": { "type": "Point", "coordinates": [ -0.0504099, 51.2476612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92339269" }, "bbox": [ -0.6743428, 51.0951005, -0.6743428, 51.0951005 ], "geometry": { "type": "Point", "coordinates": [ -0.6743428, 51.0951005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97489028" }, "bbox": [ -0.5992512, 51.2253446, -0.5992512, 51.2253446 ], "geometry": { "type": "Point", "coordinates": [ -0.5992512, 51.2253446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00370536" }, "bbox": [ -0.5715272, 51.126844, -0.5715272, 51.126844 ], "geometry": { "type": "Point", "coordinates": [ -0.5715272, 51.126844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00370726" }, "bbox": [ -0.571338, 51.1258592, -0.571338, 51.1258592 ], "geometry": { "type": "Point", "coordinates": [ -0.571338, 51.1258592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35561415" }, "bbox": [ -0.0634578, 51.2885673, -0.0634578, 51.2885673 ], "geometry": { "type": "Point", "coordinates": [ -0.0634578, 51.2885673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35551660" }, "bbox": [ -0.0630328, 51.2834545, -0.0630328, 51.2834545 ], "geometry": { "type": "Point", "coordinates": [ -0.0630328, 51.2834545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20486279" }, "bbox": [ -0.2741093, 51.2253075, -0.2741093, 51.2253075 ], "geometry": { "type": "Point", "coordinates": [ -0.2741093, 51.2253075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91474185" }, "bbox": [ -0.6922861, 51.2225379, -0.6922861, 51.2225379 ], "geometry": { "type": "Point", "coordinates": [ -0.6922861, 51.2225379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91476379" }, "bbox": [ -0.6891887, 51.2220005, -0.6891887, 51.2220005 ], "geometry": { "type": "Point", "coordinates": [ -0.6891887, 51.2220005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10576833" }, "bbox": [ -0.4135033, 51.3044097, -0.4135033, 51.3044097 ], "geometry": { "type": "Point", "coordinates": [ -0.4135033, 51.3044097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10575327" }, "bbox": [ -0.4157494, 51.3038739, -0.4157494, 51.3038739 ], "geometry": { "type": "Point", "coordinates": [ -0.4157494, 51.3038739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10576519" }, "bbox": [ -0.414073, 51.3031338, -0.414073, 51.3031338 ], "geometry": { "type": "Point", "coordinates": [ -0.414073, 51.3031338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10563627" }, "bbox": [ -0.4176748, 51.2949521, -0.4176748, 51.2949521 ], "geometry": { "type": "Point", "coordinates": [ -0.4176748, 51.2949521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543362" }, "bbox": [ -0.6631169, 51.2830455, -0.6631169, 51.2830455 ], "geometry": { "type": "Point", "coordinates": [ -0.6631169, 51.2830455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543261" }, "bbox": [ -0.6633681, 51.2830382, -0.6633681, 51.2830382 ], "geometry": { "type": "Point", "coordinates": [ -0.6633681, 51.2830382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542758" }, "bbox": [ -0.6638946, 51.2828112, -0.6638946, 51.2828112 ], "geometry": { "type": "Point", "coordinates": [ -0.6638946, 51.2828112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543061" }, "bbox": [ -0.6636214, 51.2826765, -0.6636214, 51.2826765 ], "geometry": { "type": "Point", "coordinates": [ -0.6636214, 51.2826765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543467" }, "bbox": [ -0.6628589, 51.2835663, -0.6628589, 51.2835663 ], "geometry": { "type": "Point", "coordinates": [ -0.6628589, 51.2835663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543566" }, "bbox": [ -0.6626833, 51.2833452, -0.6626833, 51.2833452 ], "geometry": { "type": "Point", "coordinates": [ -0.6626833, 51.2833452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542460" }, "bbox": [ -0.664185, 51.2829752, -0.664185, 51.2829752 ], "geometry": { "type": "Point", "coordinates": [ -0.664185, 51.2829752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20475786" }, "bbox": [ -0.2748891, 51.2172923, -0.2748891, 51.2172923 ], "geometry": { "type": "Point", "coordinates": [ -0.2748891, 51.2172923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92368947" }, "bbox": [ -0.6740989, 51.1200047, -0.6740989, 51.1200047 ], "geometry": { "type": "Point", "coordinates": [ -0.6740989, 51.1200047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92369927" }, "bbox": [ -0.6728356, 51.1180161, -0.6728356, 51.1180161 ], "geometry": { "type": "Point", "coordinates": [ -0.6728356, 51.1180161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13422231" }, "bbox": [ -0.3820921, 51.1688865, -0.3820921, 51.1688865 ], "geometry": { "type": "Point", "coordinates": [ -0.3820921, 51.1688865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13413967" }, "bbox": [ -0.3795819, 51.1629916, -0.3795819, 51.1629916 ], "geometry": { "type": "Point", "coordinates": [ -0.3795819, 51.1629916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13416068" }, "bbox": [ -0.3770351, 51.163288, -0.3770351, 51.163288 ], "geometry": { "type": "Point", "coordinates": [ -0.3770351, 51.163288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13417843" }, "bbox": [ -0.3740971, 51.1602507, -0.3740971, 51.1602507 ], "geometry": { "type": "Point", "coordinates": [ -0.3740971, 51.1602507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13417551" }, "bbox": [ -0.374563, 51.161551, -0.374563, 51.161551 ], "geometry": { "type": "Point", "coordinates": [ -0.374563, 51.161551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13414648" }, "bbox": [ -0.3787349, 51.1614148, -0.3787349, 51.1614148 ], "geometry": { "type": "Point", "coordinates": [ -0.3787349, 51.1614148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35451532" }, "bbox": [ -0.0672885, 51.1911212, -0.0672885, 51.1911212 ], "geometry": { "type": "Point", "coordinates": [ -0.0672885, 51.1911212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35454224" }, "bbox": [ -0.0633571, 51.190184, -0.0633571, 51.190184 ], "geometry": { "type": "Point", "coordinates": [ -0.0633571, 51.190184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35454154" }, "bbox": [ -0.0634279, 51.193159, -0.0634279, 51.193159 ], "geometry": { "type": "Point", "coordinates": [ -0.0634279, 51.193159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35453953" }, "bbox": [ -0.0640666, 51.1927848, -0.0640666, 51.1927848 ], "geometry": { "type": "Point", "coordinates": [ -0.0640666, 51.1927848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35453453" }, "bbox": [ -0.0644336, 51.1930717, -0.0644336, 51.1930717 ], "geometry": { "type": "Point", "coordinates": [ -0.0644336, 51.1930717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09461632" }, "bbox": [ -0.438753, 51.2056881, -0.438753, 51.2056881 ], "geometry": { "type": "Point", "coordinates": [ -0.438753, 51.2056881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13446275" }, "bbox": [ -0.375709, 51.1903337, -0.375709, 51.1903337 ], "geometry": { "type": "Point", "coordinates": [ -0.375709, 51.1903337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93369454" }, "bbox": [ -0.6602021, 51.1199316, -0.6602021, 51.1199316 ], "geometry": { "type": "Point", "coordinates": [ -0.6602021, 51.1199316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93369674" }, "bbox": [ -0.6587403, 51.1223434, -0.6587403, 51.1223434 ], "geometry": { "type": "Point", "coordinates": [ -0.6587403, 51.1223434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93369234" }, "bbox": [ -0.6594564, 51.1186587, -0.6594564, 51.1186587 ], "geometry": { "type": "Point", "coordinates": [ -0.6594564, 51.1186587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368881" }, "bbox": [ -0.6455215, 51.1227912, -0.6455215, 51.1227912 ], "geometry": { "type": "Point", "coordinates": [ -0.6455215, 51.1227912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94365356" }, "bbox": [ -0.6508776, 51.1202904, -0.6508776, 51.1202904 ], "geometry": { "type": "Point", "coordinates": [ -0.6508776, 51.1202904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368878" }, "bbox": [ -0.6453524, 51.1227032, -0.6453524, 51.1227032 ], "geometry": { "type": "Point", "coordinates": [ -0.6453524, 51.1227032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94367653" }, "bbox": [ -0.6473315, 51.1203385, -0.6473315, 51.1203385 ], "geometry": { "type": "Point", "coordinates": [ -0.6473315, 51.1203385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94363587" }, "bbox": [ -0.6532648, 51.1233523, -0.6532648, 51.1233523 ], "geometry": { "type": "Point", "coordinates": [ -0.6532648, 51.1233523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368050" }, "bbox": [ -0.647252, 51.1193291, -0.647252, 51.1193291 ], "geometry": { "type": "Point", "coordinates": [ -0.647252, 51.1193291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94365428" }, "bbox": [ -0.6508078, 51.1182524, -0.6508078, 51.1182524 ], "geometry": { "type": "Point", "coordinates": [ -0.6508078, 51.1182524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94365737" }, "bbox": [ -0.6500718, 51.1188395, -0.6500718, 51.1188395 ], "geometry": { "type": "Point", "coordinates": [ -0.6500718, 51.1188395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94367274" }, "bbox": [ -0.6478592, 51.1222229, -0.6478592, 51.1222229 ], "geometry": { "type": "Point", "coordinates": [ -0.6478592, 51.1222229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94364569" }, "bbox": [ -0.6517007, 51.1218053, -0.6517007, 51.1218053 ], "geometry": { "type": "Point", "coordinates": [ -0.6517007, 51.1218053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368661" }, "bbox": [ -0.6458999, 51.1211398, -0.6458999, 51.1211398 ], "geometry": { "type": "Point", "coordinates": [ -0.6458999, 51.1211398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91487426" }, "bbox": [ -0.6876489, 51.2261506, -0.6876489, 51.2261506 ], "geometry": { "type": "Point", "coordinates": [ -0.6876489, 51.2261506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93361781" }, "bbox": [ -0.6700403, 51.12303, -0.6700403, 51.12303 ], "geometry": { "type": "Point", "coordinates": [ -0.6700403, 51.12303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14522090" }, "bbox": [ -0.3652118, 51.2640559, -0.3652118, 51.2640559 ], "geometry": { "type": "Point", "coordinates": [ -0.3652118, 51.2640559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14524050" }, "bbox": [ -0.3622651, 51.2601445, -0.3622651, 51.2601445 ], "geometry": { "type": "Point", "coordinates": [ -0.3622651, 51.2601445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02393749" }, "bbox": [ -0.5383576, 51.1453044, -0.5383576, 51.1453044 ], "geometry": { "type": "Point", "coordinates": [ -0.5383576, 51.1453044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01387655" }, "bbox": [ -0.5466683, 51.1372033, -0.5466683, 51.1372033 ], "geometry": { "type": "Point", "coordinates": [ -0.5466683, 51.1372033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439063" }, "bbox": [ -0.5433885, 51.1828833, -0.5433885, 51.1828833 ], "geometry": { "type": "Point", "coordinates": [ -0.5433885, 51.1828833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01438374" }, "bbox": [ -0.5445597, 51.1838969, -0.5445597, 51.1838969 ], "geometry": { "type": "Point", "coordinates": [ -0.5445597, 51.1838969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01438448" }, "bbox": [ -0.5442644, 51.1816186, -0.5442644, 51.1816186 ], "geometry": { "type": "Point", "coordinates": [ -0.5442644, 51.1816186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439050" }, "bbox": [ -0.5436206, 51.1816433, -0.5436206, 51.1816433 ], "geometry": { "type": "Point", "coordinates": [ -0.5436206, 51.1816433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01439344" }, "bbox": [ -0.5431265, 51.1811244, -0.5431265, 51.1811244 ], "geometry": { "type": "Point", "coordinates": [ -0.5431265, 51.1811244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01449001" }, "bbox": [ -0.5434303, 51.1861697, -0.5434303, 51.1861697 ], "geometry": { "type": "Point", "coordinates": [ -0.5434303, 51.1861697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01449108" }, "bbox": [ -0.5430694, 51.1869096, -0.5430694, 51.1869096 ], "geometry": { "type": "Point", "coordinates": [ -0.5430694, 51.1869096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431694" }, "bbox": [ -0.5394788, 51.1855684, -0.5394788, 51.1855684 ], "geometry": { "type": "Point", "coordinates": [ -0.5394788, 51.1855684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35470477" }, "bbox": [ -0.067656, 51.2130306, -0.067656, 51.2130306 ], "geometry": { "type": "Point", "coordinates": [ -0.067656, 51.2130306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34487403" }, "bbox": [ -0.0720812, 51.2155655, -0.0720812, 51.2155655 ], "geometry": { "type": "Point", "coordinates": [ -0.0720812, 51.2155655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34488603" }, "bbox": [ -0.0702987, 51.215727, -0.0702987, 51.215727 ], "geometry": { "type": "Point", "coordinates": [ -0.0702987, 51.215727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34488512" }, "bbox": [ -0.0707246, 51.2167196, -0.0707246, 51.2167196 ], "geometry": { "type": "Point", "coordinates": [ -0.0707246, 51.2167196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35481201" }, "bbox": [ -0.0671064, 51.2151926, -0.0671064, 51.2151926 ], "geometry": { "type": "Point", "coordinates": [ -0.0671064, 51.2151926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35473196" }, "bbox": [ -0.0641705, 51.2148741, -0.0641705, 51.2148741 ], "geometry": { "type": "Point", "coordinates": [ -0.0641705, 51.2148741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01396553" }, "bbox": [ -0.5481112, 51.1460553, -0.5481112, 51.1460553 ], "geometry": { "type": "Point", "coordinates": [ -0.5481112, 51.1460553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01395276" }, "bbox": [ -0.5499402, 51.1481162, -0.5499402, 51.1481162 ], "geometry": { "type": "Point", "coordinates": [ -0.5499402, 51.1481162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38460296" }, "bbox": [ -0.0255347, 51.2052189, -0.0255347, 51.2052189 ], "geometry": { "type": "Point", "coordinates": [ -0.0255347, 51.2052189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37469585" }, "bbox": [ -0.026709, 51.2041486, -0.026709, 51.2041486 ], "geometry": { "type": "Point", "coordinates": [ -0.026709, 51.2041486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17404401" }, "bbox": [ -0.3223668, 51.1471419, -0.3223668, 51.1471419 ], "geometry": { "type": "Point", "coordinates": [ -0.3223668, 51.1471419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17394278" }, "bbox": [ -0.3227816, 51.1449408, -0.3227816, 51.1449408 ], "geometry": { "type": "Point", "coordinates": [ -0.3227816, 51.1449408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17395782" }, "bbox": [ -0.3202947, 51.1454374, -0.3202947, 51.1454374 ], "geometry": { "type": "Point", "coordinates": [ -0.3202947, 51.1454374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30450988" }, "bbox": [ -0.139066, 51.1977162, -0.139066, 51.1977162 ], "geometry": { "type": "Point", "coordinates": [ -0.139066, 51.1977162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12483482" }, "bbox": [ -0.3925514, 51.2275746, -0.3925514, 51.2275746 ], "geometry": { "type": "Point", "coordinates": [ -0.3925514, 51.2275746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13492478" }, "bbox": [ -0.3788411, 51.2360877, -0.3788411, 51.2360877 ], "geometry": { "type": "Point", "coordinates": [ -0.3788411, 51.2360877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13494798" }, "bbox": [ -0.375486, 51.2378644, -0.375486, 51.2378644 ], "geometry": { "type": "Point", "coordinates": [ -0.375486, 51.2378644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576932" }, "bbox": [ -0.4277314, 51.3046564, -0.4277314, 51.3046564 ], "geometry": { "type": "Point", "coordinates": [ -0.4277314, 51.3046564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571935" }, "bbox": [ -0.4349964, 51.3047804, -0.4349964, 51.3047804 ], "geometry": { "type": "Point", "coordinates": [ -0.4349964, 51.3047804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571743" }, "bbox": [ -0.4353684, 51.3055379, -0.4353684, 51.3055379 ], "geometry": { "type": "Point", "coordinates": [ -0.4353684, 51.3055379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571437" }, "bbox": [ -0.4359314, 51.3052818, -0.4359314, 51.3052818 ], "geometry": { "type": "Point", "coordinates": [ -0.4359314, 51.3052818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570938" }, "bbox": [ -0.4364578, 51.3050261, -0.4364578, 51.3050261 ], "geometry": { "type": "Point", "coordinates": [ -0.4364578, 51.3050261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09572335" }, "bbox": [ -0.4344209, 51.3048189, -0.4344209, 51.3048189 ], "geometry": { "type": "Point", "coordinates": [ -0.4344209, 51.3048189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09572631" }, "bbox": [ -0.4339537, 51.3044491, -0.4339537, 51.3044491 ], "geometry": { "type": "Point", "coordinates": [ -0.4339537, 51.3044491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571729" }, "bbox": [ -0.4353163, 51.3042456, -0.4353163, 51.3042456 ], "geometry": { "type": "Point", "coordinates": [ -0.4353163, 51.3042456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10575260" }, "bbox": [ -0.4157085, 51.3068696, -0.4157085, 51.3068696 ], "geometry": { "type": "Point", "coordinates": [ -0.4157085, 51.3068696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10570279" }, "bbox": [ -0.4228004, 51.3082482, -0.4228004, 51.3082482 ], "geometry": { "type": "Point", "coordinates": [ -0.4228004, 51.3082482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10570869" }, "bbox": [ -0.4221084, 51.307763, -0.4221084, 51.307763 ], "geometry": { "type": "Point", "coordinates": [ -0.4221084, 51.307763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571472" }, "bbox": [ -0.4208982, 51.3080774, -0.4208982, 51.3080774 ], "geometry": { "type": "Point", "coordinates": [ -0.4208982, 51.3080774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10574367" }, "bbox": [ -0.4178137, 51.3076269, -0.4178137, 51.3076269 ], "geometry": { "type": "Point", "coordinates": [ -0.4178137, 51.3076269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12621573" }, "bbox": [ -0.3958442, 51.3515585, -0.3958442, 51.3515585 ], "geometry": { "type": "Point", "coordinates": [ -0.3958442, 51.3515585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11622484" }, "bbox": [ -0.4043238, 51.3536843, -0.4043238, 51.3536843 ], "geometry": { "type": "Point", "coordinates": [ -0.4043238, 51.3536843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11629170" }, "bbox": [ -0.3942362, 51.3523873, -0.3942362, 51.3523873 ], "geometry": { "type": "Point", "coordinates": [ -0.3942362, 51.3523873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13423223" }, "bbox": [ -0.3805495, 51.1681101, -0.3805495, 51.1681101 ], "geometry": { "type": "Point", "coordinates": [ -0.3805495, 51.1681101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13422330" }, "bbox": [ -0.3817559, 51.1687461, -0.3817559, 51.1687461 ], "geometry": { "type": "Point", "coordinates": [ -0.3817559, 51.1687461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13423117" }, "bbox": [ -0.3812757, 51.1670322, -0.3812757, 51.1670322 ], "geometry": { "type": "Point", "coordinates": [ -0.3812757, 51.1670322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38470108" }, "bbox": [ -0.0257783, 51.2063063, -0.0257783, 51.2063063 ], "geometry": { "type": "Point", "coordinates": [ -0.0257783, 51.2063063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37479508" }, "bbox": [ -0.0266084, 51.2062408, -0.0266084, 51.2062408 ], "geometry": { "type": "Point", "coordinates": [ -0.0266084, 51.2062408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37479109" }, "bbox": [ -0.0272068, 51.2063856, -0.0272068, 51.2063856 ], "geometry": { "type": "Point", "coordinates": [ -0.0272068, 51.2063856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37479402" }, "bbox": [ -0.0268377, 51.2056962, -0.0268377, 51.2056962 ], "geometry": { "type": "Point", "coordinates": [ -0.0268377, 51.2056962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37469696" }, "bbox": [ -0.0264973, 51.2052985, -0.0264973, 51.2052985 ], "geometry": { "type": "Point", "coordinates": [ -0.0264973, 51.2052985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12517330" }, "bbox": [ -0.3861702, 51.2496928, -0.3861702, 51.2496928 ], "geometry": { "type": "Point", "coordinates": [ -0.3861702, 51.2496928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12516424" }, "bbox": [ -0.3875796, 51.2489813, -0.3875796, 51.2489813 ], "geometry": { "type": "Point", "coordinates": [ -0.3875796, 51.2489813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12514704" }, "bbox": [ -0.3900319, 51.2474353, -0.3900319, 51.2474353 ], "geometry": { "type": "Point", "coordinates": [ -0.3900319, 51.2474353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12518351" }, "bbox": [ -0.384753, 51.2516874, -0.384753, 51.2516874 ], "geometry": { "type": "Point", "coordinates": [ -0.384753, 51.2516874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36487991" }, "bbox": [ -0.0438798, 51.2227533, -0.0438798, 51.2227533 ], "geometry": { "type": "Point", "coordinates": [ -0.0438798, 51.2227533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36484893" }, "bbox": [ -0.0469844, 51.2232272, -0.0469844, 51.2232272 ], "geometry": { "type": "Point", "coordinates": [ -0.0469844, 51.2232272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36494818" }, "bbox": [ -0.0469121, 51.2254824, -0.0469121, 51.2254824 ], "geometry": { "type": "Point", "coordinates": [ -0.0469121, 51.2254824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36492230" }, "bbox": [ -0.0505253, 51.2266262, -0.0505253, 51.2266262 ], "geometry": { "type": "Point", "coordinates": [ -0.0505253, 51.2266262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97386386" }, "bbox": [ -0.6056844, 51.1406326, -0.6056844, 51.1406326 ], "geometry": { "type": "Point", "coordinates": [ -0.6056844, 51.1406326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97393801" }, "bbox": [ -0.6094898, 51.1421277, -0.6094898, 51.1421277 ], "geometry": { "type": "Point", "coordinates": [ -0.6094898, 51.1421277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97391826" }, "bbox": [ -0.612172, 51.1444679, -0.612172, 51.1444679 ], "geometry": { "type": "Point", "coordinates": [ -0.612172, 51.1444679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37480638" }, "bbox": [ -0.0387741, 51.2181795, -0.0387741, 51.2181795 ], "geometry": { "type": "Point", "coordinates": [ -0.0387741, 51.2181795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33486795" }, "bbox": [ -0.0871135, 51.2241732, -0.0871135, 51.2241732 ], "geometry": { "type": "Point", "coordinates": [ -0.0871135, 51.2241732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33487184" }, "bbox": [ -0.0869609, 51.2230776, -0.0869609, 51.2230776 ], "geometry": { "type": "Point", "coordinates": [ -0.0869609, 51.2230776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33481442" }, "bbox": [ -0.0947751, 51.2194069, -0.0947751, 51.2194069 ], "geometry": { "type": "Point", "coordinates": [ -0.0947751, 51.2194069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33490712" }, "bbox": [ -0.0952864, 51.2256606, -0.0952864, 51.2256606 ], "geometry": { "type": "Point", "coordinates": [ -0.0952864, 51.2256606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32488944" }, "bbox": [ -0.0985533, 51.2197382, -0.0985533, 51.2197382 ], "geometry": { "type": "Point", "coordinates": [ -0.0985533, 51.2197382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32497754" }, "bbox": [ -0.0996574, 51.2294565, -0.0996574, 51.2294565 ], "geometry": { "type": "Point", "coordinates": [ -0.0996574, 51.2294565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16500131" }, "bbox": [ -0.3395789, 51.2401776, -0.3395789, 51.2401776 ], "geometry": { "type": "Point", "coordinates": [ -0.3395789, 51.2401776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12483854" }, "bbox": [ -0.3922163, 51.2249613, -0.3922163, 51.2249613 ], "geometry": { "type": "Point", "coordinates": [ -0.3922163, 51.2249613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12478733" }, "bbox": [ -0.3850679, 51.2139202, -0.3850679, 51.2139202 ], "geometry": { "type": "Point", "coordinates": [ -0.3850679, 51.2139202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12478416" }, "bbox": [ -0.3854445, 51.2126585, -0.3854445, 51.2126585 ], "geometry": { "type": "Point", "coordinates": [ -0.3854445, 51.2126585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12476643" }, "bbox": [ -0.3882709, 51.2149596, -0.3882709, 51.2149596 ], "geometry": { "type": "Point", "coordinates": [ -0.3882709, 51.2149596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14501627" }, "bbox": [ -0.3660589, 51.2400864, -0.3660589, 51.2400864 ], "geometry": { "type": "Point", "coordinates": [ -0.3660589, 51.2400864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41552288" }, "bbox": [ 0.0235037, 51.2846262, 0.0235037, 51.2846262 ], "geometry": { "type": "Point", "coordinates": [ 0.0235037, 51.2846262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37605408" }, "bbox": [ -0.0277133, 51.3231922, -0.0277133, 51.3231922 ], "geometry": { "type": "Point", "coordinates": [ -0.0277133, 51.3231922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37602413" }, "bbox": [ -0.0319215, 51.3237027, -0.0319215, 51.3237027 ], "geometry": { "type": "Point", "coordinates": [ -0.0319215, 51.3237027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37602614" }, "bbox": [ -0.0316049, 51.3237581, -0.0316049, 51.3237581 ], "geometry": { "type": "Point", "coordinates": [ -0.0316049, 51.3237581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37603315" }, "bbox": [ -0.0306547, 51.3236733, -0.0306547, 51.3236733 ], "geometry": { "type": "Point", "coordinates": [ -0.0306547, 51.3236733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37603219" }, "bbox": [ -0.030508, 51.3243513, -0.030508, 51.3243513 ], "geometry": { "type": "Point", "coordinates": [ -0.030508, 51.3243513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01477393" }, "bbox": [ -0.5451288, 51.2212988, -0.5451288, 51.2212988 ], "geometry": { "type": "Point", "coordinates": [ -0.5451288, 51.2212988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96652127" }, "bbox": [ -0.6247134, 51.377191, -0.6247134, 51.377191 ], "geometry": { "type": "Point", "coordinates": [ -0.6247134, 51.377191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34499045" }, "bbox": [ -0.0694158, 51.2282206, -0.0694158, 51.2282206 ], "geometry": { "type": "Point", "coordinates": [ -0.0694158, 51.2282206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498351" }, "bbox": [ -0.0705373, 51.2288357, -0.0705373, 51.2288357 ], "geometry": { "type": "Point", "coordinates": [ -0.0705373, 51.2288357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34497271" }, "bbox": [ -0.0723482, 51.2306512, -0.0723482, 51.2306512 ], "geometry": { "type": "Point", "coordinates": [ -0.0723482, 51.2306512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18401313" }, "bbox": [ -0.3121896, 51.1476869, -0.3121896, 51.1476869 ], "geometry": { "type": "Point", "coordinates": [ -0.3121896, 51.1476869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28575751" }, "bbox": [ -0.156879, 51.3021762, -0.156879, 51.3021762 ], "geometry": { "type": "Point", "coordinates": [ -0.156879, 51.3021762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28571430" }, "bbox": [ -0.1631126, 51.3005152, -0.1631126, 51.3005152 ], "geometry": { "type": "Point", "coordinates": [ -0.1631126, 51.3005152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24461631" }, "bbox": [ -0.2240865, 51.2026106, -0.2240865, 51.2026106 ], "geometry": { "type": "Point", "coordinates": [ -0.2240865, 51.2026106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450156" }, "bbox": [ -0.0263106, 51.1926279, -0.0263106, 51.1926279 ], "geometry": { "type": "Point", "coordinates": [ -0.0263106, 51.1926279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450181" }, "bbox": [ -0.0262253, 51.1949629, -0.0262253, 51.1949629 ], "geometry": { "type": "Point", "coordinates": [ -0.0262253, 51.1949629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452264" }, "bbox": [ -0.0235541, 51.1931203, -0.0235541, 51.1931203 ], "geometry": { "type": "Point", "coordinates": [ -0.0235541, 51.1931203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450243" }, "bbox": [ -0.0263599, 51.1914708, -0.0263599, 51.1914708 ], "geometry": { "type": "Point", "coordinates": [ -0.0263599, 51.1914708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38455384" }, "bbox": [ -0.0187983, 51.1950891, -0.0187983, 51.1950891 ], "geometry": { "type": "Point", "coordinates": [ -0.0187983, 51.1950891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450878" }, "bbox": [ -0.0254104, 51.1949327, -0.0254104, 51.1949327 ], "geometry": { "type": "Point", "coordinates": [ -0.0254104, 51.1949327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38455099" }, "bbox": [ -0.0191083, 51.1963627, -0.0191083, 51.1963627 ], "geometry": { "type": "Point", "coordinates": [ -0.0191083, 51.1963627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37458090" }, "bbox": [ -0.0292306, 51.1957042, -0.0292306, 51.1957042 ], "geometry": { "type": "Point", "coordinates": [ -0.0292306, 51.1957042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459188" }, "bbox": [ -0.0272602, 51.1955993, -0.0272602, 51.1955993 ], "geometry": { "type": "Point", "coordinates": [ -0.0272602, 51.1955993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43415229" }, "bbox": [ 0.0507778, 51.1528326, 0.0507778, 51.1528326 ], "geometry": { "type": "Point", "coordinates": [ 0.0507778, 51.1528326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43415041" }, "bbox": [ 0.050582, 51.1537717, 0.050582, 51.1537717 ], "geometry": { "type": "Point", "coordinates": [ 0.050582, 51.1537717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20557262" }, "bbox": [ -0.2700447, 51.2868732, -0.2700447, 51.2868732 ], "geometry": { "type": "Point", "coordinates": [ -0.2700447, 51.2868732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30524528" }, "bbox": [ -0.1312221, 51.2548478, -0.1312221, 51.2548478 ], "geometry": { "type": "Point", "coordinates": [ -0.1312221, 51.2548478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30525225" }, "bbox": [ -0.1308516, 51.2545054, -0.1308516, 51.2545054 ], "geometry": { "type": "Point", "coordinates": [ -0.1308516, 51.2545054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17406616" }, "bbox": [ -0.3191471, 51.1485938, -0.3191471, 51.1485938 ], "geometry": { "type": "Point", "coordinates": [ -0.3191471, 51.1485938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17405933" }, "bbox": [ -0.3203457, 51.1502211, -0.3203457, 51.1502211 ], "geometry": { "type": "Point", "coordinates": [ -0.3203457, 51.1502211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98559809" }, "bbox": [ -0.5820438, 51.286337, -0.5820438, 51.286337 ], "geometry": { "type": "Point", "coordinates": [ -0.5820438, 51.286337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43415078" }, "bbox": [ 0.0504236, 51.1572215, 0.0504236, 51.1572215 ], "geometry": { "type": "Point", "coordinates": [ 0.0504236, 51.1572215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29437806" }, "bbox": [ -0.1450291, 51.1720751, -0.1450291, 51.1720751 ], "geometry": { "type": "Point", "coordinates": [ -0.1450291, 51.1720751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36470187" }, "bbox": [ -0.0546029, 51.2137723, -0.0546029, 51.2137723 ], "geometry": { "type": "Point", "coordinates": [ -0.0546029, 51.2137723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36470174" }, "bbox": [ -0.0542141, 51.2126849, -0.0542141, 51.2126849 ], "geometry": { "type": "Point", "coordinates": [ -0.0542141, 51.2126849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35479864" }, "bbox": [ -0.0545005, 51.2118934, -0.0545005, 51.2118934 ], "geometry": { "type": "Point", "coordinates": [ -0.0545005, 51.2118934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08535536" }, "bbox": [ -0.4433809, 51.2687301, -0.4433809, 51.2687301 ], "geometry": { "type": "Point", "coordinates": [ -0.4433809, 51.2687301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08522890" }, "bbox": [ -0.4457199, 51.263462, -0.4457199, 51.263462 ], "geometry": { "type": "Point", "coordinates": [ -0.4457199, 51.263462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08522699" }, "bbox": [ -0.4495897, 51.2656942, -0.4495897, 51.2656942 ], "geometry": { "type": "Point", "coordinates": [ -0.4495897, 51.2656942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04581717" }, "bbox": [ -0.5067588, 51.3131202, -0.5067588, 51.3131202 ], "geometry": { "type": "Point", "coordinates": [ -0.5067588, 51.3131202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04585080" }, "bbox": [ -0.5016368, 51.3191505, -0.5016368, 51.3191505 ], "geometry": { "type": "Point", "coordinates": [ -0.5016368, 51.3191505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03571212" }, "bbox": [ -0.5221825, 51.3036664, -0.5221825, 51.3036664 ], "geometry": { "type": "Point", "coordinates": [ -0.5221825, 51.3036664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03574837" }, "bbox": [ -0.5168977, 51.3060396, -0.5168977, 51.3060396 ], "geometry": { "type": "Point", "coordinates": [ -0.5168977, 51.3060396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03574013" }, "bbox": [ -0.5181382, 51.3040068, -0.5181382, 51.3040068 ], "geometry": { "type": "Point", "coordinates": [ -0.5181382, 51.3040068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03573231" }, "bbox": [ -0.5191941, 51.3054849, -0.5191941, 51.3054849 ], "geometry": { "type": "Point", "coordinates": [ -0.5191941, 51.3054849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03575418" }, "bbox": [ -0.5159362, 51.3044091, -0.5159362, 51.3044091 ], "geometry": { "type": "Point", "coordinates": [ -0.5159362, 51.3044091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587626" }, "bbox": [ -0.5124461, 51.3140408, -0.5124461, 51.3140408 ], "geometry": { "type": "Point", "coordinates": [ -0.5124461, 51.3140408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36493357" }, "bbox": [ -0.0488801, 51.2290073, -0.0488801, 51.2290073 ], "geometry": { "type": "Point", "coordinates": [ -0.0488801, 51.2290073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36493562" }, "bbox": [ -0.048377, 51.2295221, -0.048377, 51.2295221 ], "geometry": { "type": "Point", "coordinates": [ -0.048377, 51.2295221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35450367" }, "bbox": [ -0.0688744, 51.1943979, -0.0688744, 51.1943979 ], "geometry": { "type": "Point", "coordinates": [ -0.0688744, 51.1943979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34459362" }, "bbox": [ -0.0701911, 51.193501, -0.0701911, 51.193501 ], "geometry": { "type": "Point", "coordinates": [ -0.0701911, 51.193501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18491510" }, "bbox": [ -0.3091854, 51.2289627, -0.3091854, 51.2289627 ], "geometry": { "type": "Point", "coordinates": [ -0.3091854, 51.2289627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18491409" }, "bbox": [ -0.3095019, 51.2288254, -0.3095019, 51.2288254 ], "geometry": { "type": "Point", "coordinates": [ -0.3095019, 51.2288254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18490302" }, "bbox": [ -0.3110214, 51.2284847, -0.3110214, 51.2284847 ], "geometry": { "type": "Point", "coordinates": [ -0.3110214, 51.2284847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18491401" }, "bbox": [ -0.3095701, 51.2281187, -0.3095701, 51.2281187 ], "geometry": { "type": "Point", "coordinates": [ -0.3095701, 51.2281187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18491109" }, "bbox": [ -0.3096808, 51.2289306, -0.3096808, 51.2289306 ], "geometry": { "type": "Point", "coordinates": [ -0.3096808, 51.2289306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18480491" }, "bbox": [ -0.3110984, 51.2271329, -0.3110984, 51.2271329 ], "geometry": { "type": "Point", "coordinates": [ -0.3110984, 51.2271329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18480895" }, "bbox": [ -0.3103018, 51.2275785, -0.3103018, 51.2275785 ], "geometry": { "type": "Point", "coordinates": [ -0.3103018, 51.2275785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18481391" }, "bbox": [ -0.309554, 51.2272617, -0.309554, 51.2272617 ], "geometry": { "type": "Point", "coordinates": [ -0.309554, 51.2272617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18481691" }, "bbox": [ -0.3090065, 51.2272357, -0.3090065, 51.2272357 ], "geometry": { "type": "Point", "coordinates": [ -0.3090065, 51.2272357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17489687" }, "bbox": [ -0.311992, 51.2268191, -0.311992, 51.2268191 ], "geometry": { "type": "Point", "coordinates": [ -0.311992, 51.2268191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39601893" }, "bbox": [ -0.0035781, 51.3303301, -0.0035781, 51.3303301 ], "geometry": { "type": "Point", "coordinates": [ -0.0035781, 51.3303301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600560" }, "bbox": [ -0.0057487, 51.3275998, -0.0057487, 51.3275998 ], "geometry": { "type": "Point", "coordinates": [ -0.0057487, 51.3275998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600555" }, "bbox": [ -0.0057357, 51.3272061, -0.0057357, 51.3272061 ], "geometry": { "type": "Point", "coordinates": [ -0.0057357, 51.3272061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600358" }, "bbox": [ -0.0059631, 51.3274351, -0.0059631, 51.3274351 ], "geometry": { "type": "Point", "coordinates": [ -0.0059631, 51.3274351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600159" }, "bbox": [ -0.006484, 51.3275689, -0.006484, 51.3275689 ], "geometry": { "type": "Point", "coordinates": [ -0.006484, 51.3275689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39601167" }, "bbox": [ -0.0040969, 51.3277281, -0.0040969, 51.3277281 ], "geometry": { "type": "Point", "coordinates": [ -0.0040969, 51.3277281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38609739" }, "bbox": [ -0.0067066, 51.3257322, -0.0067066, 51.3257322 ], "geometry": { "type": "Point", "coordinates": [ -0.0067066, 51.3257322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38609957" }, "bbox": [ -0.0063919, 51.3272774, -0.0063919, 51.3272774 ], "geometry": { "type": "Point", "coordinates": [ -0.0063919, 51.3272774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82472248" }, "bbox": [ -0.8237773, 51.2205411, -0.8237773, 51.2205411 ], "geometry": { "type": "Point", "coordinates": [ -0.8237773, 51.2205411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82472442" }, "bbox": [ -0.8233717, 51.2193039, -0.8233717, 51.2193039 ], "geometry": { "type": "Point", "coordinates": [ -0.8233717, 51.2193039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82473312" }, "bbox": [ -0.822961, 51.2174246, -0.822961, 51.2174246 ], "geometry": { "type": "Point", "coordinates": [ -0.822961, 51.2174246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82472033" }, "bbox": [ -0.8243633, 51.2192875, -0.8243633, 51.2192875 ], "geometry": { "type": "Point", "coordinates": [ -0.8243633, 51.2192875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82473764" }, "bbox": [ -0.8211871, 51.2222502, -0.8211871, 51.2222502 ], "geometry": { "type": "Point", "coordinates": [ -0.8211871, 51.2222502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82472761" }, "bbox": [ -0.8231696, 51.2218694, -0.8231696, 51.2218694 ], "geometry": { "type": "Point", "coordinates": [ -0.8231696, 51.2218694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82474663" }, "bbox": [ -0.8203625, 51.2220369, -0.8203625, 51.2220369 ], "geometry": { "type": "Point", "coordinates": [ -0.8203625, 51.2220369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82474914" }, "bbox": [ -0.8202343, 51.2175621, -0.8202343, 51.2175621 ], "geometry": { "type": "Point", "coordinates": [ -0.8202343, 51.2175621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82485073" }, "bbox": [ -0.8194929, 51.2317457, -0.8194929, 51.2317457 ], "geometry": { "type": "Point", "coordinates": [ -0.8194929, 51.2317457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82483938" }, "bbox": [ -0.8213824, 51.2286288, -0.8213824, 51.2286288 ], "geometry": { "type": "Point", "coordinates": [ -0.8213824, 51.2286288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81477701" }, "bbox": [ -0.8306263, 51.21658, -0.8306263, 51.21658 ], "geometry": { "type": "Point", "coordinates": [ -0.8306263, 51.21658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81475451" }, "bbox": [ -0.8334102, 51.2210848, -0.8334102, 51.2210848 ], "geometry": { "type": "Point", "coordinates": [ -0.8334102, 51.2210848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81489301" }, "bbox": [ -0.8278342, 51.225356, -0.8278342, 51.225356 ], "geometry": { "type": "Point", "coordinates": [ -0.8278342, 51.225356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81489629" }, "bbox": [ -0.8273602, 51.2279959, -0.8273602, 51.2279959 ], "geometry": { "type": "Point", "coordinates": [ -0.8273602, 51.2279959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99373582" }, "bbox": [ -0.5814379, 51.1310612, -0.5814379, 51.1310612 ], "geometry": { "type": "Point", "coordinates": [ -0.5814379, 51.1310612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00363054" }, "bbox": [ -0.5692896, 51.1190382, -0.5692896, 51.1190382 ], "geometry": { "type": "Point", "coordinates": [ -0.5692896, 51.1190382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00364049" }, "bbox": [ -0.5669923, 51.1189468, -0.5669923, 51.1189468 ], "geometry": { "type": "Point", "coordinates": [ -0.5669923, 51.1189468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02391185" }, "bbox": [ -0.5423481, 51.1483312, -0.5423481, 51.1483312 ], "geometry": { "type": "Point", "coordinates": [ -0.5423481, 51.1483312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02392588" }, "bbox": [ -0.5389244, 51.1491308, -0.5389244, 51.1491308 ], "geometry": { "type": "Point", "coordinates": [ -0.5389244, 51.1491308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02391984" }, "bbox": [ -0.5403774, 51.1486956, -0.5403774, 51.1486956 ], "geometry": { "type": "Point", "coordinates": [ -0.5403774, 51.1486956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02395192" }, "bbox": [ -0.5358178, 51.1493594, -0.5358178, 51.1493594 ], "geometry": { "type": "Point", "coordinates": [ -0.5358178, 51.1493594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02394395" }, "bbox": [ -0.5369999, 51.1495656, -0.5369999, 51.1495656 ], "geometry": { "type": "Point", "coordinates": [ -0.5369999, 51.1495656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02394495" }, "bbox": [ -0.5367941, 51.1495991, -0.5367941, 51.1495991 ], "geometry": { "type": "Point", "coordinates": [ -0.5367941, 51.1495991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93513198" }, "bbox": [ -0.6647253, 51.2594371, -0.6647253, 51.2594371 ], "geometry": { "type": "Point", "coordinates": [ -0.6647253, 51.2594371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93524011" }, "bbox": [ -0.6626717, 51.260593, -0.6626717, 51.260593 ], "geometry": { "type": "Point", "coordinates": [ -0.6626717, 51.260593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93524804" }, "bbox": [ -0.6615383, 51.2597581, -0.6615383, 51.2597581 ], "geometry": { "type": "Point", "coordinates": [ -0.6615383, 51.2597581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93525016" }, "bbox": [ -0.6611458, 51.2607525, -0.6611458, 51.2607525 ], "geometry": { "type": "Point", "coordinates": [ -0.6611458, 51.2607525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93525718" }, "bbox": [ -0.6602967, 51.26123, -0.6602967, 51.26123 ], "geometry": { "type": "Point", "coordinates": [ -0.6602967, 51.26123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93525351" }, "bbox": [ -0.6608026, 51.2637655, -0.6608026, 51.2637655 ], "geometry": { "type": "Point", "coordinates": [ -0.6608026, 51.2637655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93526059" }, "bbox": [ -0.6599589, 51.2647581, -0.6599589, 51.2647581 ], "geometry": { "type": "Point", "coordinates": [ -0.6599589, 51.2647581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93526840" }, "bbox": [ -0.6584873, 51.2630902, -0.6584873, 51.2630902 ], "geometry": { "type": "Point", "coordinates": [ -0.6584873, 51.2630902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93521857" }, "bbox": [ -0.6658507, 51.2646799, -0.6658507, 51.2646799 ], "geometry": { "type": "Point", "coordinates": [ -0.6658507, 51.2646799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93523151" }, "bbox": [ -0.6650584, 51.2640287, -0.6650584, 51.2640287 ], "geometry": { "type": "Point", "coordinates": [ -0.6650584, 51.2640287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00423711" }, "bbox": [ -0.5657099, 51.1693921, -0.5657099, 51.1693921 ], "geometry": { "type": "Point", "coordinates": [ -0.5657099, 51.1693921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00423910" }, "bbox": [ -0.5653484, 51.1693624, -0.5653484, 51.1693624 ], "geometry": { "type": "Point", "coordinates": [ -0.5653484, 51.1693624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00473342" }, "bbox": [ -0.5647697, 51.2172009, -0.5647697, 51.2172009 ], "geometry": { "type": "Point", "coordinates": [ -0.5647697, 51.2172009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00479772" }, "bbox": [ -0.5557051, 51.219477, -0.5557051, 51.219477 ], "geometry": { "type": "Point", "coordinates": [ -0.5557051, 51.219477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10486037" }, "bbox": [ -0.4173185, 51.2238411, -0.4173185, 51.2238411 ], "geometry": { "type": "Point", "coordinates": [ -0.4173185, 51.2238411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05488437" }, "bbox": [ -0.4852112, 51.2247092, -0.4852112, 51.2247092 ], "geometry": { "type": "Point", "coordinates": [ -0.4852112, 51.2247092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16446764" }, "bbox": [ -0.3317238, 51.1891048, -0.3317238, 51.1891048 ], "geometry": { "type": "Point", "coordinates": [ -0.3317238, 51.1891048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99366827" }, "bbox": [ -0.5771384, 51.1168247, -0.5771384, 51.1168247 ], "geometry": { "type": "Point", "coordinates": [ -0.5771384, 51.1168247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91380062" }, "bbox": [ -0.700504, 51.1396362, -0.700504, 51.1396362 ], "geometry": { "type": "Point", "coordinates": [ -0.700504, 51.1396362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91380160" }, "bbox": [ -0.7004287, 51.1394256, -0.7004287, 51.1394256 ], "geometry": { "type": "Point", "coordinates": [ -0.7004287, 51.1394256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90389455" }, "bbox": [ -0.7010867, 51.1390633, -0.7010867, 51.1390633 ], "geometry": { "type": "Point", "coordinates": [ -0.7010867, 51.1390633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99376413" }, "bbox": [ -0.5777147, 51.1247963, -0.5777147, 51.1247963 ], "geometry": { "type": "Point", "coordinates": [ -0.5777147, 51.1247963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99366583" }, "bbox": [ -0.5774297, 51.1221184, -0.5774297, 51.1221184 ], "geometry": { "type": "Point", "coordinates": [ -0.5774297, 51.1221184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34476043" }, "bbox": [ -0.0745692, 51.2100639, -0.0745692, 51.2100639 ], "geometry": { "type": "Point", "coordinates": [ -0.0745692, 51.2100639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34473903" }, "bbox": [ -0.0772626, 51.2068546, -0.0772626, 51.2068546 ], "geometry": { "type": "Point", "coordinates": [ -0.0772626, 51.2068546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34474844" }, "bbox": [ -0.0761923, 51.2103339, -0.0761923, 51.2103339 ], "geometry": { "type": "Point", "coordinates": [ -0.0761923, 51.2103339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34475052" }, "bbox": [ -0.0762011, 51.2110336, -0.0762011, 51.2110336 ], "geometry": { "type": "Point", "coordinates": [ -0.0762011, 51.2110336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03576809" }, "bbox": [ -0.5142944, 51.3035737, -0.5142944, 51.3035737 ], "geometry": { "type": "Point", "coordinates": [ -0.5142944, 51.3035737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03566684" }, "bbox": [ -0.5129327, 51.3024281, -0.5129327, 51.3024281 ], "geometry": { "type": "Point", "coordinates": [ -0.5129327, 51.3024281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03565483" }, "bbox": [ -0.5164396, 51.3013273, -0.5164396, 51.3013273 ], "geometry": { "type": "Point", "coordinates": [ -0.5164396, 51.3013273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567070" }, "bbox": [ -0.5136159, 51.3000988, -0.5136159, 51.3000988 ], "geometry": { "type": "Point", "coordinates": [ -0.5136159, 51.3000988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03564081" }, "bbox": [ -0.5181163, 51.3011195, -0.5181163, 51.3011195 ], "geometry": { "type": "Point", "coordinates": [ -0.5181163, 51.3011195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38545422" }, "bbox": [ -0.0153958, 51.2702795, -0.0153958, 51.2702795 ], "geometry": { "type": "Point", "coordinates": [ -0.0153958, 51.2702795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39548166" }, "bbox": [ 0.0029841, 51.2740084, 0.0029841, 51.2740084 ], "geometry": { "type": "Point", "coordinates": [ 0.0029841, 51.2740084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37507160" }, "bbox": [ -0.0285103, 51.2379955, -0.0285103, 51.2379955 ], "geometry": { "type": "Point", "coordinates": [ -0.0285103, 51.2379955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37507949" }, "bbox": [ -0.0275513, 51.2370642, -0.0275513, 51.2370642 ], "geometry": { "type": "Point", "coordinates": [ -0.0275513, 51.2370642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37504155" }, "bbox": [ -0.0328709, 51.2376582, -0.0328709, 51.2376582 ], "geometry": { "type": "Point", "coordinates": [ -0.0328709, 51.2376582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470104" }, "bbox": [ -0.654557, 51.2147033, -0.654557, 51.2147033 ], "geometry": { "type": "Point", "coordinates": [ -0.654557, 51.2147033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470221" }, "bbox": [ -0.6551772, 51.2159951, -0.6551772, 51.2159951 ], "geometry": { "type": "Point", "coordinates": [ -0.6551772, 51.2159951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94460792" }, "bbox": [ -0.6543809, 51.2139501, -0.6543809, 51.2139501 ], "geometry": { "type": "Point", "coordinates": [ -0.6543809, 51.2139501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479520" }, "bbox": [ -0.6559806, 51.2160005, -0.6559806, 51.2160005 ], "geometry": { "type": "Point", "coordinates": [ -0.6559806, 51.2160005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479423" }, "bbox": [ -0.6563323, 51.2166791, -0.6563323, 51.2166791 ], "geometry": { "type": "Point", "coordinates": [ -0.6563323, 51.2166791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479908" }, "bbox": [ -0.6555302, 51.2152381, -0.6555302, 51.2152381 ], "geometry": { "type": "Point", "coordinates": [ -0.6555302, 51.2152381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93478918" }, "bbox": [ -0.656787, 51.2158061, -0.656787, 51.2158061 ], "geometry": { "type": "Point", "coordinates": [ -0.656787, 51.2158061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479017" }, "bbox": [ -0.6568147, 51.2162029, -0.6568147, 51.2162029 ], "geometry": { "type": "Point", "coordinates": [ -0.6568147, 51.2162029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15467178" }, "bbox": [ -0.3448327, 51.208472, -0.3448327, 51.208472 ], "geometry": { "type": "Point", "coordinates": [ -0.3448327, 51.208472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570632" }, "bbox": [ -0.4366974, 51.304369, -0.4366974, 51.304369 ], "geometry": { "type": "Point", "coordinates": [ -0.4366974, 51.304369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570707" }, "bbox": [ -0.4367383, 51.3023834, -0.4367383, 51.3023834 ], "geometry": { "type": "Point", "coordinates": [ -0.4367383, 51.3023834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570400" }, "bbox": [ -0.4372464, 51.3016962, -0.4372464, 51.3016962 ], "geometry": { "type": "Point", "coordinates": [ -0.4372464, 51.3016962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570109" }, "bbox": [ -0.4376912, 51.3022012, -0.4376912, 51.3022012 ], "geometry": { "type": "Point", "coordinates": [ -0.4376912, 51.3022012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571329" }, "bbox": [ -0.4358847, 51.3043222, -0.4358847, 51.3043222 ], "geometry": { "type": "Point", "coordinates": [ -0.4358847, 51.3043222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571425" }, "bbox": [ -0.4357439, 51.3039252, -0.4357439, 51.3039252 ], "geometry": { "type": "Point", "coordinates": [ -0.4357439, 51.3039252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570535" }, "bbox": [ -0.4370262, 51.3048525, -0.4370262, 51.3048525 ], "geometry": { "type": "Point", "coordinates": [ -0.4370262, 51.3048525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08579726" }, "bbox": [ -0.4381633, 51.3040455, -0.4381633, 51.3040455 ], "geometry": { "type": "Point", "coordinates": [ -0.4381633, 51.3040455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569958" }, "bbox": [ -0.4381952, 51.2980181, -0.4381952, 51.2980181 ], "geometry": { "type": "Point", "coordinates": [ -0.4381952, 51.2980181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569358" }, "bbox": [ -0.4389172, 51.2979457, -0.4389172, 51.2979457 ], "geometry": { "type": "Point", "coordinates": [ -0.4389172, 51.2979457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93466870" }, "bbox": [ -0.6604123, 51.2117184, -0.6604123, 51.2117184 ], "geometry": { "type": "Point", "coordinates": [ -0.6604123, 51.2117184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93378101" }, "bbox": [ -0.6609446, 51.1247085, -0.6609446, 51.1247085 ], "geometry": { "type": "Point", "coordinates": [ -0.6609446, 51.1247085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93379008" }, "bbox": [ -0.6594216, 51.1254604, -0.6594216, 51.1254604 ], "geometry": { "type": "Point", "coordinates": [ -0.6594216, 51.1254604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94375714" }, "bbox": [ -0.6500085, 51.125603, -0.6500085, 51.125603 ], "geometry": { "type": "Point", "coordinates": [ -0.6500085, 51.125603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94376571" }, "bbox": [ -0.6487435, 51.1308859, -0.6487435, 51.1308859 ], "geometry": { "type": "Point", "coordinates": [ -0.6487435, 51.1308859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94377758" }, "bbox": [ -0.6468782, 51.1297517, -0.6468782, 51.1297517 ], "geometry": { "type": "Point", "coordinates": [ -0.6468782, 51.1297517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94376363" }, "bbox": [ -0.6488262, 51.1302189, -0.6488262, 51.1302189 ], "geometry": { "type": "Point", "coordinates": [ -0.6488262, 51.1302189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15501514" }, "bbox": [ -0.3518476, 51.2389146, -0.3518476, 51.2389146 ], "geometry": { "type": "Point", "coordinates": [ -0.3518476, 51.2389146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21588197" }, "bbox": [ -0.253178, 51.316576, -0.253178, 51.316576 ], "geometry": { "type": "Point", "coordinates": [ -0.253178, 51.316576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21597601" }, "bbox": [ -0.253902, 51.3173561, -0.253902, 51.3173561 ], "geometry": { "type": "Point", "coordinates": [ -0.253902, 51.3173561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93379707" }, "bbox": [ -0.6586277, 51.1252873, -0.6586277, 51.1252873 ], "geometry": { "type": "Point", "coordinates": [ -0.6586277, 51.1252873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30456122" }, "bbox": [ -0.1322439, 51.1910203, -0.1322439, 51.1910203 ], "geometry": { "type": "Point", "coordinates": [ -0.1322439, 51.1910203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92426931" }, "bbox": [ -0.675897, 51.1726512, -0.675897, 51.1726512 ], "geometry": { "type": "Point", "coordinates": [ -0.675897, 51.1726512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10366494" }, "bbox": [ -0.4204904, 51.1210466, -0.4204904, 51.1210466 ], "geometry": { "type": "Point", "coordinates": [ -0.4204904, 51.1210466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37595816" }, "bbox": [ -0.0273842, 51.3151392, -0.0273842, 51.3151392 ], "geometry": { "type": "Point", "coordinates": [ -0.0273842, 51.3151392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11350529" }, "bbox": [ -0.4151135, 51.1061791, -0.4151135, 51.1061791 ], "geometry": { "type": "Point", "coordinates": [ -0.4151135, 51.1061791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18529983" }, "bbox": [ -0.2968254, 51.2624942, -0.2968254, 51.2624942 ], "geometry": { "type": "Point", "coordinates": [ -0.2968254, 51.2624942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10585664" }, "bbox": [ -0.4148976, 51.3161596, -0.4148976, 51.3161596 ], "geometry": { "type": "Point", "coordinates": [ -0.4148976, 51.3161596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10584748" }, "bbox": [ -0.416011, 51.3148931, -0.416011, 51.3148931 ], "geometry": { "type": "Point", "coordinates": [ -0.416011, 51.3148931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10584247" }, "bbox": [ -0.4169962, 51.3146944, -0.4169962, 51.3146944 ], "geometry": { "type": "Point", "coordinates": [ -0.4169962, 51.3146944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10582256" }, "bbox": [ -0.4193864, 51.3156639, -0.4193864, 51.3156639 ], "geometry": { "type": "Point", "coordinates": [ -0.4193864, 51.3156639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423518" }, "bbox": [ -0.8235786, 51.1730379, -0.8235786, 51.1730379 ], "geometry": { "type": "Point", "coordinates": [ -0.8235786, 51.1730379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422819" }, "bbox": [ -0.8242695, 51.1730933, -0.8242695, 51.1730933 ], "geometry": { "type": "Point", "coordinates": [ -0.8242695, 51.1730933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423118" }, "bbox": [ -0.8237276, 51.1729666, -0.8237276, 51.1729666 ], "geometry": { "type": "Point", "coordinates": [ -0.8237276, 51.1729666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423830" }, "bbox": [ -0.8228738, 51.1741219, -0.8228738, 51.1741219 ], "geometry": { "type": "Point", "coordinates": [ -0.8228738, 51.1741219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423431" }, "bbox": [ -0.823597, 51.1741351, -0.823597, 51.1741351 ], "geometry": { "type": "Point", "coordinates": [ -0.823597, 51.1741351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423423" }, "bbox": [ -0.8235417, 51.173476, -0.8235417, 51.173476 ], "geometry": { "type": "Point", "coordinates": [ -0.8235417, 51.173476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423817" }, "bbox": [ -0.8231483, 51.1728982, -0.8231483, 51.1728982 ], "geometry": { "type": "Point", "coordinates": [ -0.8231483, 51.1728982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478231" }, "bbox": [ -0.0433058, 51.2086523, -0.0433058, 51.2086523 ], "geometry": { "type": "Point", "coordinates": [ -0.0433058, 51.2086523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478617" }, "bbox": [ -0.0421543, 51.2073823, -0.0421543, 51.2073823 ], "geometry": { "type": "Point", "coordinates": [ -0.0421543, 51.2073823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36477430" }, "bbox": [ -0.0442497, 51.2085855, -0.0442497, 51.2085855 ], "geometry": { "type": "Point", "coordinates": [ -0.0442497, 51.2085855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36476919" }, "bbox": [ -0.0444751, 51.2075437, -0.0444751, 51.2075437 ], "geometry": { "type": "Point", "coordinates": [ -0.0444751, 51.2075437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96415393" }, "bbox": [ -0.6206386, 51.1685822, -0.6206386, 51.1685822 ], "geometry": { "type": "Point", "coordinates": [ -0.6206386, 51.1685822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96413550" }, "bbox": [ -0.6234706, 51.1644344, -0.6234706, 51.1644344 ], "geometry": { "type": "Point", "coordinates": [ -0.6234706, 51.1644344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96414337" }, "bbox": [ -0.6221088, 51.163498, -0.6221088, 51.163498 ], "geometry": { "type": "Point", "coordinates": [ -0.6221088, 51.163498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13536604" }, "bbox": [ -0.3723334, 51.265299, -0.3723334, 51.265299 ], "geometry": { "type": "Point", "coordinates": [ -0.3723334, 51.265299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04367172" }, "bbox": [ -0.5052597, 51.1202759, -0.5052597, 51.1202759 ], "geometry": { "type": "Point", "coordinates": [ -0.5052597, 51.1202759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04366673" }, "bbox": [ -0.5059603, 51.1203257, -0.5059603, 51.1203257 ], "geometry": { "type": "Point", "coordinates": [ -0.5059603, 51.1203257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493343" }, "bbox": [ -0.0631782, 51.2279964, -0.0631782, 51.2279964 ], "geometry": { "type": "Point", "coordinates": [ -0.0631782, 51.2279964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35492556" }, "bbox": [ -0.0641584, 51.2292409, -0.0641584, 51.2292409 ], "geometry": { "type": "Point", "coordinates": [ -0.0641584, 51.2292409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93473939" }, "bbox": [ -0.6645564, 51.2176703, -0.6645564, 51.2176703 ], "geometry": { "type": "Point", "coordinates": [ -0.6645564, 51.2176703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93464570" }, "bbox": [ -0.6636006, 51.211817, -0.6636006, 51.211817 ], "geometry": { "type": "Point", "coordinates": [ -0.6636006, 51.211817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93464555" }, "bbox": [ -0.6636801, 51.2111029, -0.6636801, 51.2111029 ], "geometry": { "type": "Point", "coordinates": [ -0.6636801, 51.2111029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18374099" }, "bbox": [ -0.309308, 51.1289565, -0.309308, 51.1289565 ], "geometry": { "type": "Point", "coordinates": [ -0.309308, 51.1289565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371683" }, "bbox": [ -0.3124459, 51.1273363, -0.3124459, 51.1273363 ], "geometry": { "type": "Point", "coordinates": [ -0.3124459, 51.1273363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371890" }, "bbox": [ -0.3124699, 51.1282348, -0.3124699, 51.1282348 ], "geometry": { "type": "Point", "coordinates": [ -0.3124699, 51.1282348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17389249" }, "bbox": [ -0.3159896, 51.1336785, -0.3159896, 51.1336785 ], "geometry": { "type": "Point", "coordinates": [ -0.3159896, 51.1336785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30528928" }, "bbox": [ -0.1258121, 51.2546986, -0.1258121, 51.2546986 ], "geometry": { "type": "Point", "coordinates": [ -0.1258121, 51.2546986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30527422" }, "bbox": [ -0.1279616, 51.2541712, -0.1279616, 51.2541712 ], "geometry": { "type": "Point", "coordinates": [ -0.1279616, 51.2541712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30519197" }, "bbox": [ -0.1246176, 51.2520839, -0.1246176, 51.2520839 ], "geometry": { "type": "Point", "coordinates": [ -0.1246176, 51.2520839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10356413" }, "bbox": [ -0.4210849, 51.1049696, -0.4210849, 51.1049696 ], "geometry": { "type": "Point", "coordinates": [ -0.4210849, 51.1049696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10352811" }, "bbox": [ -0.4260871, 51.1047985, -0.4260871, 51.1047985 ], "geometry": { "type": "Point", "coordinates": [ -0.4260871, 51.1047985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10353812" }, "bbox": [ -0.4246487, 51.1048777, -0.4246487, 51.1048777 ], "geometry": { "type": "Point", "coordinates": [ -0.4246487, 51.1048777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10354613" }, "bbox": [ -0.4228085, 51.1050219, -0.4228085, 51.1050219 ], "geometry": { "type": "Point", "coordinates": [ -0.4228085, 51.1050219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02380292" }, "bbox": [ -0.5430036, 51.1404472, -0.5430036, 51.1404472 ], "geometry": { "type": "Point", "coordinates": [ -0.5430036, 51.1404472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02390112" }, "bbox": [ -0.5430761, 51.1423286, -0.5430761, 51.1423286 ], "geometry": { "type": "Point", "coordinates": [ -0.5430761, 51.1423286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97559145" }, "bbox": [ -0.5988056, 51.2896633, -0.5988056, 51.2896633 ], "geometry": { "type": "Point", "coordinates": [ -0.5988056, 51.2896633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97557759" }, "bbox": [ -0.5987747, 51.2908524, -0.5987747, 51.2908524 ], "geometry": { "type": "Point", "coordinates": [ -0.5987747, 51.2908524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97559259" }, "bbox": [ -0.5971918, 51.2911334, -0.5971918, 51.2911334 ], "geometry": { "type": "Point", "coordinates": [ -0.5971918, 51.2911334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92355539" }, "bbox": [ -0.6790044, 51.1103598, -0.6790044, 51.1103598 ], "geometry": { "type": "Point", "coordinates": [ -0.6790044, 51.1103598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92353942" }, "bbox": [ -0.6799164, 51.1107617, -0.6799164, 51.1107617 ], "geometry": { "type": "Point", "coordinates": [ -0.6799164, 51.1107617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92355533" }, "bbox": [ -0.6796128, 51.1098417, -0.6796128, 51.1098417 ], "geometry": { "type": "Point", "coordinates": [ -0.6796128, 51.1098417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92359710" }, "bbox": [ -0.6731053, 51.1077068, -0.6731053, 51.1077068 ], "geometry": { "type": "Point", "coordinates": [ -0.6731053, 51.1077068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01408261" }, "bbox": [ -0.5455142, 51.1556551, -0.5455142, 51.1556551 ], "geometry": { "type": "Point", "coordinates": [ -0.5455142, 51.1556551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01406773" }, "bbox": [ -0.5473354, 51.1568872, -0.5473354, 51.1568872 ], "geometry": { "type": "Point", "coordinates": [ -0.5473354, 51.1568872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405153" }, "bbox": [ -0.5353371, 51.1544534, -0.5353371, 51.1544534 ], "geometry": { "type": "Point", "coordinates": [ -0.5353371, 51.1544534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405062" }, "bbox": [ -0.5359427, 51.1558016, -0.5359427, 51.1558016 ], "geometry": { "type": "Point", "coordinates": [ -0.5359427, 51.1558016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07571221" }, "bbox": [ -0.4660936, 51.3038006, -0.4660936, 51.3038006 ], "geometry": { "type": "Point", "coordinates": [ -0.4660936, 51.3038006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96640721" }, "bbox": [ -0.6230105, 51.3675074, -0.6230105, 51.3675074 ], "geometry": { "type": "Point", "coordinates": [ -0.6230105, 51.3675074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96648644" }, "bbox": [ -0.6079505, 51.3716402, -0.6079505, 51.3716402 ], "geometry": { "type": "Point", "coordinates": [ -0.6079505, 51.3716402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91472860" }, "bbox": [ -0.69424, 51.2203524, -0.69424, 51.2203524 ], "geometry": { "type": "Point", "coordinates": [ -0.69424, 51.2203524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90469207" }, "bbox": [ -0.6997518, 51.2065534, -0.6997518, 51.2065534 ], "geometry": { "type": "Point", "coordinates": [ -0.6997518, 51.2065534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90469565" }, "bbox": [ -0.6989434, 51.2119866, -0.6989434, 51.2119866 ], "geometry": { "type": "Point", "coordinates": [ -0.6989434, 51.2119866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93352310" }, "bbox": [ -0.6697856, 51.1075625, -0.6697856, 51.1075625 ], "geometry": { "type": "Point", "coordinates": [ -0.6697856, 51.1075625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93351735" }, "bbox": [ -0.6703057, 51.1101392, -0.6703057, 51.1101392 ], "geometry": { "type": "Point", "coordinates": [ -0.6703057, 51.1101392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93351402" }, "bbox": [ -0.6710461, 51.1068629, -0.6710461, 51.1068629 ], "geometry": { "type": "Point", "coordinates": [ -0.6710461, 51.1068629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93351413" }, "bbox": [ -0.6709041, 51.1078679, -0.6709041, 51.1078679 ], "geometry": { "type": "Point", "coordinates": [ -0.6709041, 51.1078679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93351790" }, "bbox": [ -0.6701798, 51.1147933, -0.6701798, 51.1147933 ], "geometry": { "type": "Point", "coordinates": [ -0.6701798, 51.1147933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93364917" }, "bbox": [ -0.6656642, 51.1173103, -0.6656642, 51.1173103 ], "geometry": { "type": "Point", "coordinates": [ -0.6656642, 51.1173103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93364606" }, "bbox": [ -0.6670886, 51.1153399, -0.6670886, 51.1153399 ], "geometry": { "type": "Point", "coordinates": [ -0.6670886, 51.1153399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37443497" }, "bbox": [ -0.0361273, 51.1874201, -0.0361273, 51.1874201 ], "geometry": { "type": "Point", "coordinates": [ -0.0361273, 51.1874201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31495454" }, "bbox": [ -0.1175396, 51.2297279, -0.1175396, 51.2297279 ], "geometry": { "type": "Point", "coordinates": [ -0.1175396, 51.2297279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34456492" }, "bbox": [ -0.0744791, 51.1966247, -0.0744791, 51.1966247 ], "geometry": { "type": "Point", "coordinates": [ -0.0744791, 51.1966247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34454196" }, "bbox": [ -0.0777955, 51.1969637, -0.0777955, 51.1969637 ], "geometry": { "type": "Point", "coordinates": [ -0.0777955, 51.1969637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02380751" }, "bbox": [ -0.5426225, 51.1370332, -0.5426225, 51.1370332 ], "geometry": { "type": "Point", "coordinates": [ -0.5426225, 51.1370332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01389551" }, "bbox": [ -0.5441216, 51.1369446, -0.5441216, 51.1369446 ], "geometry": { "type": "Point", "coordinates": [ -0.5441216, 51.1369446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99463910" }, "bbox": [ -0.5783319, 51.205529, -0.5783319, 51.205529 ], "geometry": { "type": "Point", "coordinates": [ -0.5783319, 51.205529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99453031" }, "bbox": [ -0.5802159, 51.1983697, -0.5802159, 51.1983697 ], "geometry": { "type": "Point", "coordinates": [ -0.5802159, 51.1983697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99452736" }, "bbox": [ -0.5804069, 51.1988472, -0.5804069, 51.1988472 ], "geometry": { "type": "Point", "coordinates": [ -0.5804069, 51.1988472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99453995" }, "bbox": [ -0.5786719, 51.2041424, -0.5786719, 51.2041424 ], "geometry": { "type": "Point", "coordinates": [ -0.5786719, 51.2041424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99454595" }, "bbox": [ -0.5779351, 51.2040466, -0.5779351, 51.2040466 ], "geometry": { "type": "Point", "coordinates": [ -0.5779351, 51.2040466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99454898" }, "bbox": [ -0.577354, 51.2043496, -0.577354, 51.2043496 ], "geometry": { "type": "Point", "coordinates": [ -0.577354, 51.2043496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99452748" }, "bbox": [ -0.580617, 51.1999042, -0.580617, 51.1999042 ], "geometry": { "type": "Point", "coordinates": [ -0.580617, 51.1999042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99453598" }, "bbox": [ -0.5791914, 51.2044615, -0.5791914, 51.2044615 ], "geometry": { "type": "Point", "coordinates": [ -0.5791914, 51.2044615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10472266" }, "bbox": [ -0.4234932, 51.2175778, -0.4234932, 51.2175778 ], "geometry": { "type": "Point", "coordinates": [ -0.4234932, 51.2175778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10472044" }, "bbox": [ -0.4235365, 51.215557, -0.4235365, 51.215557 ], "geometry": { "type": "Point", "coordinates": [ -0.4235365, 51.215557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10477415" }, "bbox": [ -0.4167103, 51.21297, -0.4167103, 51.21297 ], "geometry": { "type": "Point", "coordinates": [ -0.4167103, 51.21297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10479019" }, "bbox": [ -0.4135557, 51.2131581, -0.4135557, 51.2131581 ], "geometry": { "type": "Point", "coordinates": [ -0.4135557, 51.2131581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10477629" }, "bbox": [ -0.4160657, 51.2140573, -0.4160657, 51.2140573 ], "geometry": { "type": "Point", "coordinates": [ -0.4160657, 51.2140573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10473908" }, "bbox": [ -0.4210217, 51.2122845, -0.4210217, 51.2122845 ], "geometry": { "type": "Point", "coordinates": [ -0.4210217, 51.2122845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10472411" }, "bbox": [ -0.4229537, 51.2124923, -0.4229537, 51.2124923 ], "geometry": { "type": "Point", "coordinates": [ -0.4229537, 51.2124923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10480807" }, "bbox": [ -0.4250464, 51.2212956, -0.4250464, 51.2212956 ], "geometry": { "type": "Point", "coordinates": [ -0.4250464, 51.2212956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10466179" }, "bbox": [ -0.419884, 51.2085047, -0.419884, 51.2085047 ], "geometry": { "type": "Point", "coordinates": [ -0.419884, 51.2085047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10465599" }, "bbox": [ -0.4192094, 51.2113802, -0.4192094, 51.2113802 ], "geometry": { "type": "Point", "coordinates": [ -0.4192094, 51.2113802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00470869" }, "bbox": [ -0.5682451, 51.2197638, -0.5682451, 51.2197638 ], "geometry": { "type": "Point", "coordinates": [ -0.5682451, 51.2197638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00471773" }, "bbox": [ -0.5664679, 51.2201605, -0.5664679, 51.2201605 ], "geometry": { "type": "Point", "coordinates": [ -0.5664679, 51.2201605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02382482" }, "bbox": [ -0.5403173, 51.139692, -0.5403173, 51.139692 ], "geometry": { "type": "Point", "coordinates": [ -0.5403173, 51.139692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02393030" }, "bbox": [ -0.5391879, 51.1438648, -0.5391879, 51.1438648 ], "geometry": { "type": "Point", "coordinates": [ -0.5391879, 51.1438648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01387070" }, "bbox": [ -0.548161, 51.1382169, -0.548161, 51.1382169 ], "geometry": { "type": "Point", "coordinates": [ -0.548161, 51.1382169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90428713" }, "bbox": [ -0.7014059, 51.1714516, -0.7014059, 51.1714516 ], "geometry": { "type": "Point", "coordinates": [ -0.7014059, 51.1714516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91427167" }, "bbox": [ -0.6898958, 51.1760836, -0.6898958, 51.1760836 ], "geometry": { "type": "Point", "coordinates": [ -0.6898958, 51.1760836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91424867" }, "bbox": [ -0.6925572, 51.1761141, -0.6925572, 51.1761141 ], "geometry": { "type": "Point", "coordinates": [ -0.6925572, 51.1761141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91426375" }, "bbox": [ -0.6906269, 51.1769835, -0.6906269, 51.1769835 ], "geometry": { "type": "Point", "coordinates": [ -0.6906269, 51.1769835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00477394" }, "bbox": [ -0.5598919, 51.222006, -0.5598919, 51.222006 ], "geometry": { "type": "Point", "coordinates": [ -0.5598919, 51.222006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29538144" }, "bbox": [ -0.1406081, 51.2653511, -0.1406081, 51.2653511 ], "geometry": { "type": "Point", "coordinates": [ -0.1406081, 51.2653511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29537844" }, "bbox": [ -0.1413221, 51.2653983, -0.1413221, 51.2653983 ], "geometry": { "type": "Point", "coordinates": [ -0.1413221, 51.2653983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29535851" }, "bbox": [ -0.1441995, 51.2660813, -0.1441995, 51.2660813 ], "geometry": { "type": "Point", "coordinates": [ -0.1441995, 51.2660813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29533552" }, "bbox": [ -0.1473, 51.2661917, -0.1473, 51.2661917 ], "geometry": { "type": "Point", "coordinates": [ -0.1473, 51.2661917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29533352" }, "bbox": [ -0.1475209, 51.2661543, -0.1475209, 51.2661543 ], "geometry": { "type": "Point", "coordinates": [ -0.1475209, 51.2661543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29533461" }, "bbox": [ -0.1473844, 51.2670897, -0.1473844, 51.2670897 ], "geometry": { "type": "Point", "coordinates": [ -0.1473844, 51.2670897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29533260" }, "bbox": [ -0.147679, 51.2669184, -0.147679, 51.2669184 ], "geometry": { "type": "Point", "coordinates": [ -0.147679, 51.2669184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29536146" }, "bbox": [ -0.1431803, 51.2655265, -0.1431803, 51.2655265 ], "geometry": { "type": "Point", "coordinates": [ -0.1431803, 51.2655265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29534948" }, "bbox": [ -0.14519, 51.2657874, -0.14519, 51.2657874 ], "geometry": { "type": "Point", "coordinates": [ -0.14519, 51.2657874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29537452" }, "bbox": [ -0.1415724, 51.2661698, -0.1415724, 51.2661698 ], "geometry": { "type": "Point", "coordinates": [ -0.1415724, 51.2661698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29539842" }, "bbox": [ -0.1381725, 51.265245, -0.1381725, 51.265245 ], "geometry": { "type": "Point", "coordinates": [ -0.1381725, 51.265245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29539444" }, "bbox": [ -0.1387666, 51.2653201, -0.1387666, 51.2653201 ], "geometry": { "type": "Point", "coordinates": [ -0.1387666, 51.2653201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30530245" }, "bbox": [ -0.1375967, 51.2654619, -0.1375967, 51.2654619 ], "geometry": { "type": "Point", "coordinates": [ -0.1375967, 51.2654619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30531343" }, "bbox": [ -0.1365354, 51.2652084, -0.1365354, 51.2652084 ], "geometry": { "type": "Point", "coordinates": [ -0.1365354, 51.2652084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42421448" }, "bbox": [ 0.0314981, 51.1638504, 0.0314981, 51.1638504 ], "geometry": { "type": "Point", "coordinates": [ 0.0314981, 51.1638504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425884" }, "bbox": [ 0.0378454, 51.1673325, 0.0378454, 51.1673325 ], "geometry": { "type": "Point", "coordinates": [ 0.0378454, 51.1673325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42422239" }, "bbox": [ 0.0326627, 51.1631213, 0.0326627, 51.1631213 ], "geometry": { "type": "Point", "coordinates": [ 0.0326627, 51.1631213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42426671" }, "bbox": [ 0.0391497, 51.1658686, 0.0391497, 51.1658686 ], "geometry": { "type": "Point", "coordinates": [ 0.0391497, 51.1658686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42423982" }, "bbox": [ 0.0351301, 51.1670377, 0.0351301, 51.1670377 ], "geometry": { "type": "Point", "coordinates": [ 0.0351301, 51.1670377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02383392" }, "bbox": [ -0.5386916, 51.1402407, -0.5386916, 51.1402407 ], "geometry": { "type": "Point", "coordinates": [ -0.5386916, 51.1402407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01388784" }, "bbox": [ -0.5446004, 51.1392238, -0.5446004, 51.1392238 ], "geometry": { "type": "Point", "coordinates": [ -0.5446004, 51.1392238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36573789" }, "bbox": [ -0.0451021, 51.3038308, -0.0451021, 51.3038308 ], "geometry": { "type": "Point", "coordinates": [ -0.0451021, 51.3038308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36576090" }, "bbox": [ -0.0424432, 51.3037055, -0.0424432, 51.3037055 ], "geometry": { "type": "Point", "coordinates": [ -0.0424432, 51.3037055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36576195" }, "bbox": [ -0.0415512, 51.3042952, -0.0415512, 51.3042952 ], "geometry": { "type": "Point", "coordinates": [ -0.0415512, 51.3042952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36574394" }, "bbox": [ -0.0440462, 51.3041904, -0.0440462, 51.3041904 ], "geometry": { "type": "Point", "coordinates": [ -0.0440462, 51.3041904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36574094" }, "bbox": [ -0.0443641, 51.3042414, -0.0443641, 51.3042414 ], "geometry": { "type": "Point", "coordinates": [ -0.0443641, 51.3042414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36579987" }, "bbox": [ -0.0363246, 51.3035195, -0.0363246, 51.3035195 ], "geometry": { "type": "Point", "coordinates": [ -0.0363246, 51.3035195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36589001" }, "bbox": [ -0.0370938, 51.3045645, -0.0370938, 51.3045645 ], "geometry": { "type": "Point", "coordinates": [ -0.0370938, 51.3045645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37571079" }, "bbox": [ -0.0344566, 51.3029052, -0.0344566, 51.3029052 ], "geometry": { "type": "Point", "coordinates": [ -0.0344566, 51.3029052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37571891" }, "bbox": [ -0.0335253, 51.3039651, -0.0335253, 51.3039651 ], "geometry": { "type": "Point", "coordinates": [ -0.0335253, 51.3039651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37570389" }, "bbox": [ -0.0356477, 51.3036117, -0.0356477, 51.3036117 ], "geometry": { "type": "Point", "coordinates": [ -0.0356477, 51.3036117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37580919" }, "bbox": [ -0.0350451, 51.3060345, -0.0350451, 51.3060345 ], "geometry": { "type": "Point", "coordinates": [ -0.0350451, 51.3060345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37586014" }, "bbox": [ -0.0273848, 51.30578, -0.0273848, 51.30578 ], "geometry": { "type": "Point", "coordinates": [ -0.0273848, 51.30578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37584508" }, "bbox": [ -0.0295123, 51.3051822, -0.0295123, 51.3051822 ], "geometry": { "type": "Point", "coordinates": [ -0.0295123, 51.3051822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37575992" }, "bbox": [ -0.0276266, 51.3042913, -0.0276266, 51.3042913 ], "geometry": { "type": "Point", "coordinates": [ -0.0276266, 51.3042913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33459510" }, "bbox": [ -0.084597, 51.1893401, -0.084597, 51.1893401 ], "geometry": { "type": "Point", "coordinates": [ -0.084597, 51.1893401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33458836" }, "bbox": [ -0.0854837, 51.1917418, -0.0854837, 51.1917418 ], "geometry": { "type": "Point", "coordinates": [ -0.0854837, 51.1917418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33455851" }, "bbox": [ -0.0897342, 51.1931718, -0.0897342, 51.1931718 ], "geometry": { "type": "Point", "coordinates": [ -0.0897342, 51.1931718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34451304" }, "bbox": [ -0.081612, 51.1887799, -0.081612, 51.1887799 ], "geometry": { "type": "Point", "coordinates": [ -0.081612, 51.1887799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34450549" }, "bbox": [ -0.0831001, 51.1930519, -0.0831001, 51.1930519 ], "geometry": { "type": "Point", "coordinates": [ -0.0831001, 51.1930519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34450932" }, "bbox": [ -0.0826884, 51.1913493, -0.0826884, 51.1913493 ], "geometry": { "type": "Point", "coordinates": [ -0.0826884, 51.1913493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34453114" }, "bbox": [ -0.0792954, 51.1895455, -0.0792954, 51.1895455 ], "geometry": { "type": "Point", "coordinates": [ -0.0792954, 51.1895455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92440196" }, "bbox": [ -0.6849063, 51.1962402, -0.6849063, 51.1962402 ], "geometry": { "type": "Point", "coordinates": [ -0.6849063, 51.1962402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96511589" }, "bbox": [ -0.6234843, 51.2580104, -0.6234843, 51.2580104 ], "geometry": { "type": "Point", "coordinates": [ -0.6234843, 51.2580104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95527505" }, "bbox": [ -0.6310446, 51.2589641, -0.6310446, 51.2589641 ], "geometry": { "type": "Point", "coordinates": [ -0.6310446, 51.2589641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95518484" }, "bbox": [ -0.627756, 51.2578676, -0.627756, 51.2578676 ], "geometry": { "type": "Point", "coordinates": [ -0.627756, 51.2578676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93521169" }, "bbox": [ -0.666653, 51.2658759, -0.666653, 51.2658759 ], "geometry": { "type": "Point", "coordinates": [ -0.666653, 51.2658759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18628128" }, "bbox": [ -0.2952355, 51.3472235, -0.2952355, 51.3472235 ], "geometry": { "type": "Point", "coordinates": [ -0.2952355, 51.3472235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18628021" }, "bbox": [ -0.2956148, 51.346289, -0.2956148, 51.346289 ], "geometry": { "type": "Point", "coordinates": [ -0.2956148, 51.346289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18617862" }, "bbox": [ -0.2960122, 51.3412172, -0.2960122, 51.3412172 ], "geometry": { "type": "Point", "coordinates": [ -0.2960122, 51.3412172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571837" }, "bbox": [ -0.4208313, 51.3047647, -0.4208313, 51.3047647 ], "geometry": { "type": "Point", "coordinates": [ -0.4208313, 51.3047647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580808" }, "bbox": [ -0.3634824, 51.3106848, -0.3634824, 51.3106848 ], "geometry": { "type": "Point", "coordinates": [ -0.3634824, 51.3106848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14570817" }, "bbox": [ -0.3650113, 51.3016976, -0.3650113, 51.3016976 ], "geometry": { "type": "Point", "coordinates": [ -0.3650113, 51.3016976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13588005" }, "bbox": [ -0.3688304, 51.3101756, -0.3688304, 51.3101756 ], "geometry": { "type": "Point", "coordinates": [ -0.3688304, 51.3101756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13577299" }, "bbox": [ -0.3683148, 51.3086, -0.3683148, 51.3086 ], "geometry": { "type": "Point", "coordinates": [ -0.3683148, 51.3086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13574145" }, "bbox": [ -0.3746387, 51.3049135, -0.3746387, 51.3049135 ], "geometry": { "type": "Point", "coordinates": [ -0.3746387, 51.3049135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13575540" }, "bbox": [ -0.3714442, 51.304447, -0.3714442, 51.304447 ], "geometry": { "type": "Point", "coordinates": [ -0.3714442, 51.304447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01375805" }, "bbox": [ -0.5500599, 51.1233998, -0.5500599, 51.1233998 ], "geometry": { "type": "Point", "coordinates": [ -0.5500599, 51.1233998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01367593" }, "bbox": [ -0.5473459, 51.1226246, -0.5473459, 51.1226246 ], "geometry": { "type": "Point", "coordinates": [ -0.5473459, 51.1226246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01369392" }, "bbox": [ -0.5448662, 51.1225906, -0.5448662, 51.1225906 ], "geometry": { "type": "Point", "coordinates": [ -0.5448662, 51.1225906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01369395" }, "bbox": [ -0.5450555, 51.1227955, -0.5450555, 51.1227955 ], "geometry": { "type": "Point", "coordinates": [ -0.5450555, 51.1227955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92443401" }, "bbox": [ -0.6800358, 51.1880131, -0.6800358, 51.1880131 ], "geometry": { "type": "Point", "coordinates": [ -0.6800358, 51.1880131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92427813" }, "bbox": [ -0.6743076, 51.1709389, -0.6743076, 51.1709389 ], "geometry": { "type": "Point", "coordinates": [ -0.6743076, 51.1709389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92427210" }, "bbox": [ -0.675021, 51.1706656, -0.675021, 51.1706656 ], "geometry": { "type": "Point", "coordinates": [ -0.675021, 51.1706656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92428518" }, "bbox": [ -0.6731454, 51.1713858, -0.6731454, 51.1713858 ], "geometry": { "type": "Point", "coordinates": [ -0.6731454, 51.1713858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92436722" }, "bbox": [ -0.6752169, 51.180889, -0.6752169, 51.180889 ], "geometry": { "type": "Point", "coordinates": [ -0.6752169, 51.180889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92433498" }, "bbox": [ -0.6799711, 51.1876152, -0.6799711, 51.1876152 ], "geometry": { "type": "Point", "coordinates": [ -0.6799711, 51.1876152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92417298" }, "bbox": [ -0.6751276, 51.1695778, -0.6751276, 51.1695778 ], "geometry": { "type": "Point", "coordinates": [ -0.6751276, 51.1695778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96647016" }, "bbox": [ -0.612266, 51.3682804, -0.612266, 51.3682804 ], "geometry": { "type": "Point", "coordinates": [ -0.612266, 51.3682804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96647515" }, "bbox": [ -0.6118337, 51.3681852, -0.6118337, 51.3681852 ], "geometry": { "type": "Point", "coordinates": [ -0.6118337, 51.3681852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96648118" }, "bbox": [ -0.6105674, 51.3684144, -0.6105674, 51.3684144 ], "geometry": { "type": "Point", "coordinates": [ -0.6105674, 51.3684144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02387894" }, "bbox": [ -0.5320743, 51.1406646, -0.5320743, 51.1406646 ], "geometry": { "type": "Point", "coordinates": [ -0.5320743, 51.1406646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30469462" }, "bbox": [ -0.1270105, 51.2038877, -0.1270105, 51.2038877 ], "geometry": { "type": "Point", "coordinates": [ -0.1270105, 51.2038877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82397955" }, "bbox": [ -0.8176901, 51.1485329, -0.8176901, 51.1485329 ], "geometry": { "type": "Point", "coordinates": [ -0.8176901, 51.1485329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09487311" }, "bbox": [ -0.4298592, 51.2217321, -0.4298592, 51.2217321 ], "geometry": { "type": "Point", "coordinates": [ -0.4298592, 51.2217321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08486019" }, "bbox": [ -0.4461863, 51.2225807, -0.4461863, 51.2225807 ], "geometry": { "type": "Point", "coordinates": [ -0.4461863, 51.2225807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21553281" }, "bbox": [ -0.2615268, 51.2884492, -0.2615268, 51.2884492 ], "geometry": { "type": "Point", "coordinates": [ -0.2615268, 51.2884492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21553388" }, "bbox": [ -0.261827, 51.2896314, -0.261827, 51.2896314 ], "geometry": { "type": "Point", "coordinates": [ -0.261827, 51.2896314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21553387" }, "bbox": [ -0.2619073, 51.2893352, -0.2619073, 51.2893352 ], "geometry": { "type": "Point", "coordinates": [ -0.2619073, 51.2893352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05351206" }, "bbox": [ -0.500507, 51.1053612, -0.500507, 51.1053612 ], "geometry": { "type": "Point", "coordinates": [ -0.500507, 51.1053612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05351002" }, "bbox": [ -0.4999404, 51.1048513, -0.4999404, 51.1048513 ], "geometry": { "type": "Point", "coordinates": [ -0.4999404, 51.1048513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05351407" }, "bbox": [ -0.4993819, 51.105659, -0.4993819, 51.105659 ], "geometry": { "type": "Point", "coordinates": [ -0.4993819, 51.105659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09482338" }, "bbox": [ -0.4372279, 51.2242153, -0.4372279, 51.2242153 ], "geometry": { "type": "Point", "coordinates": [ -0.4372279, 51.2242153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09477609" }, "bbox": [ -0.4301891, 51.212509, -0.4301891, 51.212509 ], "geometry": { "type": "Point", "coordinates": [ -0.4301891, 51.212509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07485528" }, "bbox": [ -0.4614937, 51.2235736, -0.4614937, 51.2235736 ], "geometry": { "type": "Point", "coordinates": [ -0.4614937, 51.2235736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06569098" }, "bbox": [ -0.4678301, 51.3018003, -0.4678301, 51.3018003 ], "geometry": { "type": "Point", "coordinates": [ -0.4678301, 51.3018003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06567984" }, "bbox": [ -0.4694652, 51.3006723, -0.4694652, 51.3006723 ], "geometry": { "type": "Point", "coordinates": [ -0.4694652, 51.3006723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06567596" }, "bbox": [ -0.4699208, 51.3016354, -0.4699208, 51.3016354 ], "geometry": { "type": "Point", "coordinates": [ -0.4699208, 51.3016354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06565798" }, "bbox": [ -0.4724184, 51.3017243, -0.4724184, 51.3017243 ], "geometry": { "type": "Point", "coordinates": [ -0.4724184, 51.3017243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06567092" }, "bbox": [ -0.4704078, 51.3012527, -0.4704078, 51.3012527 ], "geometry": { "type": "Point", "coordinates": [ -0.4704078, 51.3012527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06578209" }, "bbox": [ -0.4689906, 51.3027837, -0.4689906, 51.3027837 ], "geometry": { "type": "Point", "coordinates": [ -0.4689906, 51.3027837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06576704" }, "bbox": [ -0.4712276, 51.3025459, -0.4712276, 51.3025459 ], "geometry": { "type": "Point", "coordinates": [ -0.4712276, 51.3025459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06579202" }, "bbox": [ -0.4677786, 51.3024391, -0.4677786, 51.3024391 ], "geometry": { "type": "Point", "coordinates": [ -0.4677786, 51.3024391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06578313" }, "bbox": [ -0.4689566, 51.3033322, -0.4689566, 51.3033322 ], "geometry": { "type": "Point", "coordinates": [ -0.4689566, 51.3033322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06577714" }, "bbox": [ -0.4697761, 51.3033781, -0.4697761, 51.3033781 ], "geometry": { "type": "Point", "coordinates": [ -0.4697761, 51.3033781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06577508" }, "bbox": [ -0.4695675, 51.3025305, -0.4695675, 51.3025305 ], "geometry": { "type": "Point", "coordinates": [ -0.4695675, 51.3025305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06576911" }, "bbox": [ -0.4707708, 51.3032163, -0.4707708, 51.3032163 ], "geometry": { "type": "Point", "coordinates": [ -0.4707708, 51.3032163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06577416" }, "bbox": [ -0.47046, 51.3036267, -0.47046, 51.3036267 ], "geometry": { "type": "Point", "coordinates": [ -0.47046, 51.3036267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08588807" }, "bbox": [ -0.4389689, 51.3113728, -0.4389689, 51.3113728 ], "geometry": { "type": "Point", "coordinates": [ -0.4389689, 51.3113728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08577786" }, "bbox": [ -0.4409242, 51.3094745, -0.4409242, 51.3094745 ], "geometry": { "type": "Point", "coordinates": [ -0.4409242, 51.3094745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08578172" }, "bbox": [ -0.4402544, 51.3082832, -0.4402544, 51.3082832 ], "geometry": { "type": "Point", "coordinates": [ -0.4402544, 51.3082832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08579884" }, "bbox": [ -0.4378749, 51.309234, -0.4378749, 51.309234 ], "geometry": { "type": "Point", "coordinates": [ -0.4378749, 51.309234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08577381" }, "bbox": [ -0.4421353, 51.3089021, -0.4421353, 51.3089021 ], "geometry": { "type": "Point", "coordinates": [ -0.4421353, 51.3089021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08578375" }, "bbox": [ -0.4399513, 51.3084267, -0.4399513, 51.3084267 ], "geometry": { "type": "Point", "coordinates": [ -0.4399513, 51.3084267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08579599" }, "bbox": [ -0.4381472, 51.3106135, -0.4381472, 51.3106135 ], "geometry": { "type": "Point", "coordinates": [ -0.4381472, 51.3106135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571178" }, "bbox": [ -0.4361745, 51.3087988, -0.4361745, 51.3087988 ], "geometry": { "type": "Point", "coordinates": [ -0.4361745, 51.3087988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22514807" }, "bbox": [ -0.2466059, 51.2453894, -0.2466059, 51.2453894 ], "geometry": { "type": "Point", "coordinates": [ -0.2466059, 51.2453894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512008" }, "bbox": [ -0.2357247, 51.2459652, -0.2357247, 51.2459652 ], "geometry": { "type": "Point", "coordinates": [ -0.2357247, 51.2459652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22508402" }, "bbox": [ -0.2417581, 51.2361899, -0.2417581, 51.2361899 ], "geometry": { "type": "Point", "coordinates": [ -0.2417581, 51.2361899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22508274" }, "bbox": [ -0.2417515, 51.2427107, -0.2417515, 51.2427107 ], "geometry": { "type": "Point", "coordinates": [ -0.2417515, 51.2427107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14362456" }, "bbox": [ -0.3694744, 51.1171843, -0.3694744, 51.1171843 ], "geometry": { "type": "Point", "coordinates": [ -0.3694744, 51.1171843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11517452" }, "bbox": [ -0.4000824, 51.2519303, -0.4000824, 51.2519303 ], "geometry": { "type": "Point", "coordinates": [ -0.4000824, 51.2519303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13593402" }, "bbox": [ -0.3778742, 51.31909, -0.3778742, 51.31909 ], "geometry": { "type": "Point", "coordinates": [ -0.3778742, 51.31909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13590609" }, "bbox": [ -0.3787397, 51.3198002, -0.3787397, 51.3198002 ], "geometry": { "type": "Point", "coordinates": [ -0.3787397, 51.3198002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13590206" }, "bbox": [ -0.3794583, 51.319535, -0.3794583, 51.319535 ], "geometry": { "type": "Point", "coordinates": [ -0.3794583, 51.319535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13592902" }, "bbox": [ -0.3758868, 51.3191098, -0.3758868, 51.3191098 ], "geometry": { "type": "Point", "coordinates": [ -0.3758868, 51.3191098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13590800" }, "bbox": [ -0.3781854, 51.3189326, -0.3781854, 51.3189326 ], "geometry": { "type": "Point", "coordinates": [ -0.3781854, 51.3189326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13591505" }, "bbox": [ -0.3778295, 51.3195141, -0.3778295, 51.3195141 ], "geometry": { "type": "Point", "coordinates": [ -0.3778295, 51.3195141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13591715" }, "bbox": [ -0.3772667, 51.3202944, -0.3772667, 51.3202944 ], "geometry": { "type": "Point", "coordinates": [ -0.3772667, 51.3202944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13591112" }, "bbox": [ -0.3780494, 51.32004, -0.3780494, 51.32004 ], "geometry": { "type": "Point", "coordinates": [ -0.3780494, 51.32004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13582578" }, "bbox": [ -0.3764407, 51.3167417, -0.3764407, 51.3167417 ], "geometry": { "type": "Point", "coordinates": [ -0.3764407, 51.3167417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13580791" }, "bbox": [ -0.3789356, 51.318321, -0.3789356, 51.318321 ], "geometry": { "type": "Point", "coordinates": [ -0.3789356, 51.318321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12599603" }, "bbox": [ -0.3803119, 51.3192298, -0.3803119, 51.3192298 ], "geometry": { "type": "Point", "coordinates": [ -0.3803119, 51.3192298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25573918" }, "bbox": [ -0.202662, 51.2999526, -0.202662, 51.2999526 ], "geometry": { "type": "Point", "coordinates": [ -0.202662, 51.2999526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25577026" }, "bbox": [ -0.1980652, 51.300739, -0.1980652, 51.300739 ], "geometry": { "type": "Point", "coordinates": [ -0.1980652, 51.300739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12479452" }, "bbox": [ -0.3843186, 51.2157291, -0.3843186, 51.2157291 ], "geometry": { "type": "Point", "coordinates": [ -0.3843186, 51.2157291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12474606" }, "bbox": [ -0.3910595, 51.2119643, -0.3910595, 51.2119643 ], "geometry": { "type": "Point", "coordinates": [ -0.3910595, 51.2119643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12479645" }, "bbox": [ -0.3839151, 51.2151846, -0.3839151, 51.2151846 ], "geometry": { "type": "Point", "coordinates": [ -0.3839151, 51.2151846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12496411" }, "bbox": [ -0.3878799, 51.2294816, -0.3878799, 51.2294816 ], "geometry": { "type": "Point", "coordinates": [ -0.3878799, 51.2294816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470449" }, "bbox": [ -0.3832141, 51.2153755, -0.3832141, 51.2153755 ], "geometry": { "type": "Point", "coordinates": [ -0.3832141, 51.2153755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470042" }, "bbox": [ -0.383356, 51.2149413, -0.383356, 51.2149413 ], "geometry": { "type": "Point", "coordinates": [ -0.383356, 51.2149413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13471151" }, "bbox": [ -0.3818807, 51.2156849, -0.3818807, 51.2156849 ], "geometry": { "type": "Point", "coordinates": [ -0.3818807, 51.2156849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470648" }, "bbox": [ -0.3825195, 51.2154212, -0.3825195, 51.2154212 ], "geometry": { "type": "Point", "coordinates": [ -0.3825195, 51.2154212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13476873" }, "bbox": [ -0.3735867, 51.217498, -0.3735867, 51.217498 ], "geometry": { "type": "Point", "coordinates": [ -0.3735867, 51.217498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470756" }, "bbox": [ -0.3824752, 51.2160889, -0.3824752, 51.2160889 ], "geometry": { "type": "Point", "coordinates": [ -0.3824752, 51.2160889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470554" }, "bbox": [ -0.382568, 51.215968, -0.382568, 51.215968 ], "geometry": { "type": "Point", "coordinates": [ -0.382568, 51.215968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13476095" }, "bbox": [ -0.3749592, 51.2194539, -0.3749592, 51.2194539 ], "geometry": { "type": "Point", "coordinates": [ -0.3749592, 51.2194539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13490328" }, "bbox": [ -0.3824639, 51.2318314, -0.3824639, 51.2318314 ], "geometry": { "type": "Point", "coordinates": [ -0.3824639, 51.2318314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13490118" }, "bbox": [ -0.383555, 51.2297281, -0.383555, 51.2297281 ], "geometry": { "type": "Point", "coordinates": [ -0.383555, 51.2297281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11455969" }, "bbox": [ -0.4041452, 51.1995801, -0.4041452, 51.1995801 ], "geometry": { "type": "Point", "coordinates": [ -0.4041452, 51.1995801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41500131" }, "bbox": [ 0.0183392, 51.2345838, 0.0183392, 51.2345838 ], "geometry": { "type": "Point", "coordinates": [ 0.0183392, 51.2345838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40509032" }, "bbox": [ 0.0167816, 51.2348047, 0.0167816, 51.2348047 ], "geometry": { "type": "Point", "coordinates": [ 0.0167816, 51.2348047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40509229" }, "bbox": [ 0.0171394, 51.2344644, 0.0171394, 51.2344644 ], "geometry": { "type": "Point", "coordinates": [ 0.0171394, 51.2344644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40507037" }, "bbox": [ 0.0139325, 51.2351778, 0.0139325, 51.2351778 ], "geometry": { "type": "Point", "coordinates": [ 0.0139325, 51.2351778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17425531" }, "bbox": [ -0.3205459, 51.1677844, -0.3205459, 51.1677844 ], "geometry": { "type": "Point", "coordinates": [ -0.3205459, 51.1677844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05588406" }, "bbox": [ -0.4817048, 51.3127264, -0.4817048, 51.3127264 ], "geometry": { "type": "Point", "coordinates": [ -0.4817048, 51.3127264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05577085" }, "bbox": [ -0.4846796, 51.3101553, -0.4846796, 51.3101553 ], "geometry": { "type": "Point", "coordinates": [ -0.4846796, 51.3101553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05579379" }, "bbox": [ -0.4818566, 51.3093609, -0.4818566, 51.3093609 ], "geometry": { "type": "Point", "coordinates": [ -0.4818566, 51.3093609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32514945" }, "bbox": [ -0.1033501, 51.2468718, -0.1033501, 51.2468718 ], "geometry": { "type": "Point", "coordinates": [ -0.1033501, 51.2468718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32510486" }, "bbox": [ -0.1089242, 51.2506365, -0.1089242, 51.2506365 ], "geometry": { "type": "Point", "coordinates": [ -0.1089242, 51.2506365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32512337" }, "bbox": [ -0.1067992, 51.2462619, -0.1067992, 51.2462619 ], "geometry": { "type": "Point", "coordinates": [ -0.1067992, 51.2462619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32511642" }, "bbox": [ -0.1079073, 51.2471649, -0.1079073, 51.2471649 ], "geometry": { "type": "Point", "coordinates": [ -0.1079073, 51.2471649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33508474" }, "bbox": [ -0.084447, 51.2402668, -0.084447, 51.2402668 ], "geometry": { "type": "Point", "coordinates": [ -0.084447, 51.2402668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38604729" }, "bbox": [ -0.0141113, 51.3248034, -0.0141113, 51.3248034 ], "geometry": { "type": "Point", "coordinates": [ -0.0141113, 51.3248034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19385017" }, "bbox": [ -0.2934204, 51.1303289, -0.2934204, 51.1303289 ], "geometry": { "type": "Point", "coordinates": [ -0.2934204, 51.1303289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19385210" }, "bbox": [ -0.2932777, 51.1298095, -0.2932777, 51.1298095 ], "geometry": { "type": "Point", "coordinates": [ -0.2932777, 51.1298095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19371593" }, "bbox": [ -0.2982621, 51.1288495, -0.2982621, 51.1288495 ], "geometry": { "type": "Point", "coordinates": [ -0.2982621, 51.1288495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19371478" }, "bbox": [ -0.2988813, 51.1270666, -0.2988813, 51.1270666 ], "geometry": { "type": "Point", "coordinates": [ -0.2988813, 51.1270666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19371665" }, "bbox": [ -0.2985107, 51.1258835, -0.2985107, 51.1258835 ], "geometry": { "type": "Point", "coordinates": [ -0.2985107, 51.1258835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02405507" }, "bbox": [ -0.5350324, 51.1507241, -0.5350324, 51.1507241 ], "geometry": { "type": "Point", "coordinates": [ -0.5350324, 51.1507241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22561776" }, "bbox": [ -0.2490171, 51.2970888, -0.2490171, 51.2970888 ], "geometry": { "type": "Point", "coordinates": [ -0.2490171, 51.2970888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05411931" }, "bbox": [ -0.4964296, 51.1625379, -0.4964296, 51.1625379 ], "geometry": { "type": "Point", "coordinates": [ -0.4964296, 51.1625379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05412409" }, "bbox": [ -0.496468, 51.1593777, -0.496468, 51.1593777 ], "geometry": { "type": "Point", "coordinates": [ -0.496468, 51.1593777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05413206" }, "bbox": [ -0.4949819, 51.1591539, -0.4949819, 51.1591539 ], "geometry": { "type": "Point", "coordinates": [ -0.4949819, 51.1591539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16556833" }, "bbox": [ -0.3282975, 51.2850976, -0.3282975, 51.2850976 ], "geometry": { "type": "Point", "coordinates": [ -0.3282975, 51.2850976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28566984" }, "bbox": [ -0.1556224, 51.2961984, -0.1556224, 51.2961984 ], "geometry": { "type": "Point", "coordinates": [ -0.1556224, 51.2961984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28567092" }, "bbox": [ -0.1548508, 51.2975184, -0.1548508, 51.2975184 ], "geometry": { "type": "Point", "coordinates": [ -0.1548508, 51.2975184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42446834" }, "bbox": [ 0.0398635, 51.1804154, 0.0398635, 51.1804154 ], "geometry": { "type": "Point", "coordinates": [ 0.0398635, 51.1804154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42447033" }, "bbox": [ 0.0403289, 51.1804214, 0.0403289, 51.1804214 ], "geometry": { "type": "Point", "coordinates": [ 0.0403289, 51.1804214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43421248" }, "bbox": [ 0.0453985, 51.1637374, 0.0453985, 51.1637374 ], "geometry": { "type": "Point", "coordinates": [ 0.0453985, 51.1637374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42429768" }, "bbox": [ 0.0436084, 51.165831, 0.0436084, 51.165831 ], "geometry": { "type": "Point", "coordinates": [ 0.0436084, 51.165831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34493442" }, "bbox": [ -0.0771058, 51.2282172, -0.0771058, 51.2282172 ], "geometry": { "type": "Point", "coordinates": [ -0.0771058, 51.2282172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17449009" }, "bbox": [ -0.3144327, 51.1839219, -0.3144327, 51.1839219 ], "geometry": { "type": "Point", "coordinates": [ -0.3144327, 51.1839219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17439499" }, "bbox": [ -0.3135685, 51.1831743, -0.3135685, 51.1831743 ], "geometry": { "type": "Point", "coordinates": [ -0.3135685, 51.1831743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17438896" }, "bbox": [ -0.3146053, 51.1828213, -0.3146053, 51.1828213 ], "geometry": { "type": "Point", "coordinates": [ -0.3146053, 51.1828213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08578316" }, "bbox": [ -0.4398359, 51.3031197, -0.4398359, 51.3031197 ], "geometry": { "type": "Point", "coordinates": [ -0.4398359, 51.3031197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588717" }, "bbox": [ -0.4248737, 51.3120126, -0.4248737, 51.3120126 ], "geometry": { "type": "Point", "coordinates": [ -0.4248737, 51.3120126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09585220" }, "bbox": [ -0.4300773, 51.3123212, -0.4300773, 51.3123212 ], "geometry": { "type": "Point", "coordinates": [ -0.4300773, 51.3123212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09589015" }, "bbox": [ -0.4245236, 51.3118151, -0.4245236, 51.3118151 ], "geometry": { "type": "Point", "coordinates": [ -0.4245236, 51.3118151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18416939" }, "bbox": [ -0.3039468, 51.1595165, -0.3039468, 51.1595165 ], "geometry": { "type": "Point", "coordinates": [ -0.3039468, 51.1595165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18417822" }, "bbox": [ -0.302096, 51.1573124, -0.302096, 51.1573124 ], "geometry": { "type": "Point", "coordinates": [ -0.302096, 51.1573124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18418725" }, "bbox": [ -0.3015121, 51.1582547, -0.3015121, 51.1582547 ], "geometry": { "type": "Point", "coordinates": [ -0.3015121, 51.1582547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35477079" }, "bbox": [ -0.0585502, 51.2133814, -0.0585502, 51.2133814 ], "geometry": { "type": "Point", "coordinates": [ -0.0585502, 51.2133814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35478172" }, "bbox": [ -0.0568025, 51.2125523, -0.0568025, 51.2125523 ], "geometry": { "type": "Point", "coordinates": [ -0.0568025, 51.2125523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10585091" }, "bbox": [ -0.4156242, 51.318576, -0.4156242, 51.318576 ], "geometry": { "type": "Point", "coordinates": [ -0.4156242, 51.318576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30512794" }, "bbox": [ -0.1344223, 51.2517527, -0.1344223, 51.2517527 ], "geometry": { "type": "Point", "coordinates": [ -0.1344223, 51.2517527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36538923" }, "bbox": [ -0.0391482, 51.2616885, -0.0391482, 51.2616885 ], "geometry": { "type": "Point", "coordinates": [ -0.0391482, 51.2616885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36539545" }, "bbox": [ -0.0385106, 51.263717, -0.0385106, 51.263717 ], "geometry": { "type": "Point", "coordinates": [ -0.0385106, 51.263717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20400399" }, "bbox": [ -0.2848718, 51.1556067, -0.2848718, 51.1556067 ], "geometry": { "type": "Point", "coordinates": [ -0.2848718, 51.1556067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20411022" }, "bbox": [ -0.2844052, 51.1575016, -0.2844052, 51.1575016 ], "geometry": { "type": "Point", "coordinates": [ -0.2844052, 51.1575016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37462395" }, "bbox": [ -0.0369406, 51.2052808, -0.0369406, 51.2052808 ], "geometry": { "type": "Point", "coordinates": [ -0.0369406, 51.2052808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16542075" }, "bbox": [ -0.3359185, 51.2804914, -0.3359185, 51.2804914 ], "geometry": { "type": "Point", "coordinates": [ -0.3359185, 51.2804914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05352019" }, "bbox": [ -0.4986178, 51.1064438, -0.4986178, 51.1064438 ], "geometry": { "type": "Point", "coordinates": [ -0.4986178, 51.1064438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91517001" }, "bbox": [ -0.6872744, 51.2508426, -0.6872744, 51.2508426 ], "geometry": { "type": "Point", "coordinates": [ -0.6872744, 51.2508426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91516303" }, "bbox": [ -0.6883448, 51.2511648, -0.6883448, 51.2511648 ], "geometry": { "type": "Point", "coordinates": [ -0.6883448, 51.2511648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91518202" }, "bbox": [ -0.6857694, 51.25112, -0.6857694, 51.25112 ], "geometry": { "type": "Point", "coordinates": [ -0.6857694, 51.25112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91519411" }, "bbox": [ -0.6843467, 51.2521549, -0.6843467, 51.2521549 ], "geometry": { "type": "Point", "coordinates": [ -0.6843467, 51.2521549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91519304" }, "bbox": [ -0.6841482, 51.2512858, -0.6841482, 51.2512858 ], "geometry": { "type": "Point", "coordinates": [ -0.6841482, 51.2512858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91515801" }, "bbox": [ -0.6890051, 51.2510487, -0.6890051, 51.2510487 ], "geometry": { "type": "Point", "coordinates": [ -0.6890051, 51.2510487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91516802" }, "bbox": [ -0.687457, 51.2509279, -0.687457, 51.2509279 ], "geometry": { "type": "Point", "coordinates": [ -0.687457, 51.2509279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91517502" }, "bbox": [ -0.6865968, 51.2511023, -0.6865968, 51.2511023 ], "geometry": { "type": "Point", "coordinates": [ -0.6865968, 51.2511023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91517005" }, "bbox": [ -0.6872879, 51.251325, -0.6872879, 51.251325 ], "geometry": { "type": "Point", "coordinates": [ -0.6872879, 51.251325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91516704" }, "bbox": [ -0.6877958, 51.2512628, -0.6877958, 51.2512628 ], "geometry": { "type": "Point", "coordinates": [ -0.6877958, 51.2512628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91509569" }, "bbox": [ -0.6840169, 51.2478084, -0.6840169, 51.2478084 ], "geometry": { "type": "Point", "coordinates": [ -0.6840169, 51.2478084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91505358" }, "bbox": [ -0.6899062, 51.2471085, -0.6899062, 51.2471085 ], "geometry": { "type": "Point", "coordinates": [ -0.6899062, 51.2471085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91507986" }, "bbox": [ -0.6861289, 51.2496592, -0.6861289, 51.2496592 ], "geometry": { "type": "Point", "coordinates": [ -0.6861289, 51.2496592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91505967" }, "bbox": [ -0.689178, 51.2478688, -0.689178, 51.2478688 ], "geometry": { "type": "Point", "coordinates": [ -0.689178, 51.2478688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91508287" }, "bbox": [ -0.6855716, 51.2496194, -0.6855716, 51.2496194 ], "geometry": { "type": "Point", "coordinates": [ -0.6855716, 51.2496194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91507792" }, "bbox": [ -0.6863018, 51.2501273, -0.6863018, 51.2501273 ], "geometry": { "type": "Point", "coordinates": [ -0.6863018, 51.2501273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91506997" }, "bbox": [ -0.6875628, 51.2505985, -0.6875628, 51.2505985 ], "geometry": { "type": "Point", "coordinates": [ -0.6875628, 51.2505985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91508291" }, "bbox": [ -0.6856136, 51.2501101, -0.6856136, 51.2501101 ], "geometry": { "type": "Point", "coordinates": [ -0.6856136, 51.2501101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91509466" }, "bbox": [ -0.6841167, 51.2477656, -0.6841167, 51.2477656 ], "geometry": { "type": "Point", "coordinates": [ -0.6841167, 51.2477656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91508676" }, "bbox": [ -0.6851255, 51.2486282, -0.6851255, 51.2486282 ], "geometry": { "type": "Point", "coordinates": [ -0.6851255, 51.2486282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92500686" }, "bbox": [ -0.6821306, 51.2494376, -0.6821306, 51.2494376 ], "geometry": { "type": "Point", "coordinates": [ -0.6821306, 51.2494376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92500583" }, "bbox": [ -0.6823585, 51.2492113, -0.6823585, 51.2492113 ], "geometry": { "type": "Point", "coordinates": [ -0.6823585, 51.2492113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501282" }, "bbox": [ -0.6812641, 51.2491794, -0.6812641, 51.2491794 ], "geometry": { "type": "Point", "coordinates": [ -0.6812641, 51.2491794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501485" }, "bbox": [ -0.681128, 51.2493864, -0.681128, 51.2493864 ], "geometry": { "type": "Point", "coordinates": [ -0.681128, 51.2493864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501894" }, "bbox": [ -0.6807552, 51.2501363, -0.6807552, 51.2501363 ], "geometry": { "type": "Point", "coordinates": [ -0.6807552, 51.2501363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501993" }, "bbox": [ -0.6803393, 51.2502052, -0.6803393, 51.2502052 ], "geometry": { "type": "Point", "coordinates": [ -0.6803393, 51.2502052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501393" }, "bbox": [ -0.6811802, 51.2501297, -0.6811802, 51.2501297 ], "geometry": { "type": "Point", "coordinates": [ -0.6811802, 51.2501297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502681" }, "bbox": [ -0.6793776, 51.2491211, -0.6793776, 51.2491211 ], "geometry": { "type": "Point", "coordinates": [ -0.6793776, 51.2491211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502586" }, "bbox": [ -0.6794405, 51.2494998, -0.6794405, 51.2494998 ], "geometry": { "type": "Point", "coordinates": [ -0.6794405, 51.2494998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502081" }, "bbox": [ -0.6802521, 51.2491474, -0.6802521, 51.2491474 ], "geometry": { "type": "Point", "coordinates": [ -0.6802521, 51.2491474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501784" }, "bbox": [ -0.6805307, 51.2493522, -0.6805307, 51.2493522 ], "geometry": { "type": "Point", "coordinates": [ -0.6805307, 51.2493522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502286" }, "bbox": [ -0.6802858, 51.2495293, -0.6802858, 51.2495293 ], "geometry": { "type": "Point", "coordinates": [ -0.6802858, 51.2495293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501285" }, "bbox": [ -0.6813075, 51.2495256, -0.6813075, 51.2495256 ], "geometry": { "type": "Point", "coordinates": [ -0.6813075, 51.2495256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92502390" }, "bbox": [ -0.6800535, 51.2498881, -0.6800535, 51.2498881 ], "geometry": { "type": "Point", "coordinates": [ -0.6800535, 51.2498881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92510209" }, "bbox": [ -0.6827611, 51.2515046, -0.6827611, 51.2515046 ], "geometry": { "type": "Point", "coordinates": [ -0.6827611, 51.2515046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92510005" }, "bbox": [ -0.6830327, 51.2512024, -0.6830327, 51.2512024 ], "geometry": { "type": "Point", "coordinates": [ -0.6830327, 51.2512024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89446513" }, "bbox": [ -0.7182742, 51.1893673, -0.7182742, 51.1893673 ], "geometry": { "type": "Point", "coordinates": [ -0.7182742, 51.1893673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89446306" }, "bbox": [ -0.7188785, 51.1885244, -0.7188785, 51.1885244 ], "geometry": { "type": "Point", "coordinates": [ -0.7188785, 51.1885244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89446216" }, "bbox": [ -0.7188261, 51.189754, -0.7188261, 51.189754 ], "geometry": { "type": "Point", "coordinates": [ -0.7188261, 51.189754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04382032" }, "bbox": [ -0.5124614, 51.1339644, -0.5124614, 51.1339644 ], "geometry": { "type": "Point", "coordinates": [ -0.5124614, 51.1339644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04381260" }, "bbox": [ -0.5130383, 51.1371204, -0.5130383, 51.1371204 ], "geometry": { "type": "Point", "coordinates": [ -0.5130383, 51.1371204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03379479" }, "bbox": [ -0.5157918, 51.1300057, -0.5157918, 51.1300057 ], "geometry": { "type": "Point", "coordinates": [ -0.5157918, 51.1300057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513580" }, "bbox": [ -0.2335933, 51.2521268, -0.2335933, 51.2521268 ], "geometry": { "type": "Point", "coordinates": [ -0.2335933, 51.2521268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512771" }, "bbox": [ -0.2350849, 51.2513666, -0.2350849, 51.2513666 ], "geometry": { "type": "Point", "coordinates": [ -0.2350849, 51.2513666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512974" }, "bbox": [ -0.2346735, 51.2514922, -0.2346735, 51.2514922 ], "geometry": { "type": "Point", "coordinates": [ -0.2346735, 51.2514922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91626026" }, "bbox": [ -0.6858919, 51.3521125, -0.6858919, 51.3521125 ], "geometry": { "type": "Point", "coordinates": [ -0.6858919, 51.3521125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91623309" }, "bbox": [ -0.6913578, 51.3498699, -0.6913578, 51.3498699 ], "geometry": { "type": "Point", "coordinates": [ -0.6913578, 51.3498699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91628222" }, "bbox": [ -0.682911, 51.3516508, -0.682911, 51.3516508 ], "geometry": { "type": "Point", "coordinates": [ -0.682911, 51.3516508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91614892" }, "bbox": [ -0.6876795, 51.3490779, -0.6876795, 51.3490779 ], "geometry": { "type": "Point", "coordinates": [ -0.6876795, 51.3490779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91611985" }, "bbox": [ -0.6921693, 51.3483336, -0.6921693, 51.3483336 ], "geometry": { "type": "Point", "coordinates": [ -0.6921693, 51.3483336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91615187" }, "bbox": [ -0.687615, 51.3483969, -0.687615, 51.3483969 ], "geometry": { "type": "Point", "coordinates": [ -0.687615, 51.3483969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91611468" }, "bbox": [ -0.6928151, 51.3468825, -0.6928151, 51.3468825 ], "geometry": { "type": "Point", "coordinates": [ -0.6928151, 51.3468825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14549437" }, "bbox": [ -0.3530188, 51.2774978, -0.3530188, 51.2774978 ], "geometry": { "type": "Point", "coordinates": [ -0.3530188, 51.2774978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01472732" }, "bbox": [ -0.5515747, 51.2160978, -0.5515747, 51.2160978 ], "geometry": { "type": "Point", "coordinates": [ -0.5515747, 51.2160978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23440282" }, "bbox": [ -0.2401948, 51.1893749, -0.2401948, 51.1893749 ], "geometry": { "type": "Point", "coordinates": [ -0.2401948, 51.1893749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12488819" }, "bbox": [ -0.3851969, 51.2220393, -0.3851969, 51.2220393 ], "geometry": { "type": "Point", "coordinates": [ -0.3851969, 51.2220393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19401086" }, "bbox": [ -0.2985806, 51.1546586, -0.2985806, 51.1546586 ], "geometry": { "type": "Point", "coordinates": [ -0.2985806, 51.1546586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19402382" }, "bbox": [ -0.296513, 51.1542099, -0.296513, 51.1542099 ], "geometry": { "type": "Point", "coordinates": [ -0.296513, 51.1542099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404374" }, "bbox": [ -0.2936647, 51.1534295, -0.2936647, 51.1534295 ], "geometry": { "type": "Point", "coordinates": [ -0.2936647, 51.1534295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10489545" }, "bbox": [ -0.4121079, 51.2244722, -0.4121079, 51.2244722 ], "geometry": { "type": "Point", "coordinates": [ -0.4121079, 51.2244722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86431288" }, "bbox": [ -0.7694235, 51.1869314, -0.7694235, 51.1869314 ], "geometry": { "type": "Point", "coordinates": [ -0.7694235, 51.1869314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13421470" }, "bbox": [ -0.3829095, 51.1724129, -0.3829095, 51.1724129 ], "geometry": { "type": "Point", "coordinates": [ -0.3829095, 51.1724129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13421676" }, "bbox": [ -0.3828234, 51.172847, -0.3828234, 51.172847 ], "geometry": { "type": "Point", "coordinates": [ -0.3828234, 51.172847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421997" }, "bbox": [ -0.3677864, 51.1744793, -0.3677864, 51.1744793 ], "geometry": { "type": "Point", "coordinates": [ -0.3677864, 51.1744793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22481272" }, "bbox": [ -0.2523114, 51.2245831, -0.2523114, 51.2245831 ], "geometry": { "type": "Point", "coordinates": [ -0.2523114, 51.2245831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21489460" }, "bbox": [ -0.2550928, 51.2237391, -0.2550928, 51.2237391 ], "geometry": { "type": "Point", "coordinates": [ -0.2550928, 51.2237391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20489672" }, "bbox": [ -0.269375, 51.2251218, -0.269375, 51.2251218 ], "geometry": { "type": "Point", "coordinates": [ -0.269375, 51.2251218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20489870" }, "bbox": [ -0.2687286, 51.2247171, -0.2687286, 51.2247171 ], "geometry": { "type": "Point", "coordinates": [ -0.2687286, 51.2247171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20508816" }, "bbox": [ -0.2693341, 51.2369104, -0.2693341, 51.2369104 ], "geometry": { "type": "Point", "coordinates": [ -0.2693341, 51.2369104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10374259" }, "bbox": [ -0.4235801, 51.1269835, -0.4235801, 51.1269835 ], "geometry": { "type": "Point", "coordinates": [ -0.4235801, 51.1269835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40480578" }, "bbox": [ 0.0040432, 51.2211226, 0.0040432, 51.2211226 ], "geometry": { "type": "Point", "coordinates": [ 0.0040432, 51.2211226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90399850" }, "bbox": [ -0.7007936, 51.1472752, -0.7007936, 51.1472752 ], "geometry": { "type": "Point", "coordinates": [ -0.7007936, 51.1472752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37466867" }, "bbox": [ -0.0305817, 51.2026848, -0.0305817, 51.2026848 ], "geometry": { "type": "Point", "coordinates": [ -0.0305817, 51.2026848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15540683" }, "bbox": [ -0.3522378, 51.2813947, -0.3522378, 51.2813947 ], "geometry": { "type": "Point", "coordinates": [ -0.3522378, 51.2813947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41552335" }, "bbox": [ 0.0233887, 51.2798225, 0.0233887, 51.2798225 ], "geometry": { "type": "Point", "coordinates": [ 0.0233887, 51.2798225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438168" }, "bbox": [ -0.7591539, 51.1858384, -0.7591539, 51.1858384 ], "geometry": { "type": "Point", "coordinates": [ -0.7591539, 51.1858384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08383856" }, "bbox": [ -0.4522537, 51.1360884, -0.4522537, 51.1360884 ], "geometry": { "type": "Point", "coordinates": [ -0.4522537, 51.1360884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14497142" }, "bbox": [ -0.3585015, 51.2324806, -0.3585015, 51.2324806 ], "geometry": { "type": "Point", "coordinates": [ -0.3585015, 51.2324806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10381909" }, "bbox": [ -0.4263441, 51.1313679, -0.4263441, 51.1313679 ], "geometry": { "type": "Point", "coordinates": [ -0.4263441, 51.1313679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15472768" }, "bbox": [ -0.3508977, 51.2167418, -0.3508977, 51.2167418 ], "geometry": { "type": "Point", "coordinates": [ -0.3508977, 51.2167418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93456220" }, "bbox": [ -0.6615971, 51.1983642, -0.6615971, 51.1983642 ], "geometry": { "type": "Point", "coordinates": [ -0.6615971, 51.1983642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07384516" }, "bbox": [ -0.4657588, 51.1326527, -0.4657588, 51.1326527 ], "geometry": { "type": "Point", "coordinates": [ -0.4657588, 51.1326527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14497827" }, "bbox": [ -0.3574865, 51.2310857, -0.3574865, 51.2310857 ], "geometry": { "type": "Point", "coordinates": [ -0.3574865, 51.2310857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17448581" }, "bbox": [ -0.3150206, 51.1905076, -0.3150206, 51.1905076 ], "geometry": { "type": "Point", "coordinates": [ -0.3150206, 51.1905076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32429440" }, "bbox": [ -0.0997815, 51.1651767, -0.0997815, 51.1651767 ], "geometry": { "type": "Point", "coordinates": [ -0.0997815, 51.1651767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33423136" }, "bbox": [ -0.0948695, 51.1650071, -0.0948695, 51.1650071 ], "geometry": { "type": "Point", "coordinates": [ -0.0948695, 51.1650071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38443280" }, "bbox": [ -0.0223148, 51.1855743, -0.0223148, 51.1855743 ], "geometry": { "type": "Point", "coordinates": [ -0.0223148, 51.1855743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38440769" }, "bbox": [ -0.025756, 51.1847901, -0.025756, 51.1847901 ], "geometry": { "type": "Point", "coordinates": [ -0.025756, 51.1847901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34465912" }, "bbox": [ -0.0751655, 51.198597, -0.0751655, 51.198597 ], "geometry": { "type": "Point", "coordinates": [ -0.0751655, 51.198597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434273" }, "bbox": [ -0.0643183, 51.1767085, -0.0643183, 51.1767085 ], "geometry": { "type": "Point", "coordinates": [ -0.0643183, 51.1767085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434477" }, "bbox": [ -0.0638294, 51.1771114, -0.0638294, 51.1771114 ], "geometry": { "type": "Point", "coordinates": [ -0.0638294, 51.1771114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434375" }, "bbox": [ -0.0639496, 51.1769807, -0.0639496, 51.1769807 ], "geometry": { "type": "Point", "coordinates": [ -0.0639496, 51.1769807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35436093" }, "bbox": [ -0.0614668, 51.178551, -0.0614668, 51.178551 ], "geometry": { "type": "Point", "coordinates": [ -0.0614668, 51.178551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434981" }, "bbox": [ -0.0629629, 51.1775753, -0.0629629, 51.1775753 ], "geometry": { "type": "Point", "coordinates": [ -0.0629629, 51.1775753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35433586" }, "bbox": [ -0.0652025, 51.1778921, -0.0652025, 51.1778921 ], "geometry": { "type": "Point", "coordinates": [ -0.0652025, 51.1778921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34439078" }, "bbox": [ -0.0715165, 51.1774016, -0.0715165, 51.1774016 ], "geometry": { "type": "Point", "coordinates": [ -0.0715165, 51.1774016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35431774" }, "bbox": [ -0.0678291, 51.1770692, -0.0678291, 51.1770692 ], "geometry": { "type": "Point", "coordinates": [ -0.0678291, 51.1770692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434149" }, "bbox": [ -0.0642871, 51.1745553, -0.0642871, 51.1745553 ], "geometry": { "type": "Point", "coordinates": [ -0.0642871, 51.1745553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35432460" }, "bbox": [ -0.0669938, 51.1755435, -0.0669938, 51.1755435 ], "geometry": { "type": "Point", "coordinates": [ -0.0669938, 51.1755435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35430458" }, "bbox": [ -0.0700764, 51.1759249, -0.0700764, 51.1759249 ], "geometry": { "type": "Point", "coordinates": [ -0.0700764, 51.1759249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31447737" }, "bbox": [ -0.1163018, 51.1833716, -0.1163018, 51.1833716 ], "geometry": { "type": "Point", "coordinates": [ -0.1163018, 51.1833716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31447615" }, "bbox": [ -0.1162574, 51.1814801, -0.1162574, 51.1814801 ], "geometry": { "type": "Point", "coordinates": [ -0.1162574, 51.1814801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434836" }, "bbox": [ -0.0634005, 51.1733804, -0.0634005, 51.1733804 ], "geometry": { "type": "Point", "coordinates": [ -0.0634005, 51.1733804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35434928" }, "bbox": [ -0.0634484, 51.1726385, -0.0634484, 51.1726385 ], "geometry": { "type": "Point", "coordinates": [ -0.0634484, 51.1726385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35436022" }, "bbox": [ -0.0616748, 51.1721652, -0.0616748, 51.1721652 ], "geometry": { "type": "Point", "coordinates": [ -0.0616748, 51.1721652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35439302" }, "bbox": [ -0.0577982, 51.1704929, -0.0577982, 51.1704929 ], "geometry": { "type": "Point", "coordinates": [ -0.0577982, 51.1704929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35435641" }, "bbox": [ -0.0621716, 51.1739018, -0.0621716, 51.1739018 ], "geometry": { "type": "Point", "coordinates": [ -0.0621716, 51.1739018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37401274" }, "bbox": [ -0.0409479, 51.1494679, -0.0409479, 51.1494679 ], "geometry": { "type": "Point", "coordinates": [ -0.0409479, 51.1494679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36400256" }, "bbox": [ -0.0563377, 51.1482207, -0.0563377, 51.1482207 ], "geometry": { "type": "Point", "coordinates": [ -0.0563377, 51.1482207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14529339" }, "bbox": [ -0.3545599, 51.2585649, -0.3545599, 51.2585649 ], "geometry": { "type": "Point", "coordinates": [ -0.3545599, 51.2585649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35446549" }, "bbox": [ -0.0604612, 51.1836483, -0.0604612, 51.1836483 ], "geometry": { "type": "Point", "coordinates": [ -0.0604612, 51.1836483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35448171" }, "bbox": [ -0.0581346, 51.185455, -0.0581346, 51.185455 ], "geometry": { "type": "Point", "coordinates": [ -0.0581346, 51.185455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35446937" }, "bbox": [ -0.0599756, 51.1824617, -0.0599756, 51.1824617 ], "geometry": { "type": "Point", "coordinates": [ -0.0599756, 51.1824617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35456407" }, "bbox": [ -0.0603685, 51.1886768, -0.0603685, 51.1886768 ], "geometry": { "type": "Point", "coordinates": [ -0.0603685, 51.1886768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36440587" }, "bbox": [ -0.054516, 51.1869781, -0.054516, 51.1869781 ], "geometry": { "type": "Point", "coordinates": [ -0.054516, 51.1869781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33425586" }, "bbox": [ -0.0910523, 51.169465, -0.0910523, 51.169465 ], "geometry": { "type": "Point", "coordinates": [ -0.0910523, 51.169465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33425186" }, "bbox": [ -0.0914941, 51.1693823, -0.0914941, 51.1693823 ], "geometry": { "type": "Point", "coordinates": [ -0.0914941, 51.1693823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33425887" }, "bbox": [ -0.0905228, 51.1695608, -0.0905228, 51.1695608 ], "geometry": { "type": "Point", "coordinates": [ -0.0905228, 51.1695608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33426978" }, "bbox": [ -0.0890128, 51.1686862, -0.0890128, 51.1686862 ], "geometry": { "type": "Point", "coordinates": [ -0.0890128, 51.1686862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33434516" }, "bbox": [ -0.0923586, 51.1720714, -0.0923586, 51.1720714 ], "geometry": { "type": "Point", "coordinates": [ -0.0923586, 51.1720714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33437222" }, "bbox": [ -0.0874374, 51.17274, -0.0874374, 51.17274 ], "geometry": { "type": "Point", "coordinates": [ -0.0874374, 51.17274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07420323" }, "bbox": [ -0.4705403, 51.1692838, -0.4705403, 51.1692838 ], "geometry": { "type": "Point", "coordinates": [ -0.4705403, 51.1692838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34435619" }, "bbox": [ -0.0765082, 51.1721723, -0.0765082, 51.1721723 ], "geometry": { "type": "Point", "coordinates": [ -0.0765082, 51.1721723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34439109" }, "bbox": [ -0.0711978, 51.1713683, -0.0711978, 51.1713683 ], "geometry": { "type": "Point", "coordinates": [ -0.0711978, 51.1713683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34434534" }, "bbox": [ -0.078151, 51.1734569, -0.078151, 51.1734569 ], "geometry": { "type": "Point", "coordinates": [ -0.078151, 51.1734569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34433948" }, "bbox": [ -0.0789934, 51.1749017, -0.0789934, 51.1749017 ], "geometry": { "type": "Point", "coordinates": [ -0.0789934, 51.1749017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33410710" }, "bbox": [ -0.0986519, 51.1536843, -0.0986519, 51.1536843 ], "geometry": { "type": "Point", "coordinates": [ -0.0986519, 51.1536843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31424631" }, "bbox": [ -0.1202573, 51.1651639, -0.1202573, 51.1651639 ], "geometry": { "type": "Point", "coordinates": [ -0.1202573, 51.1651639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31425524" }, "bbox": [ -0.1192657, 51.1641898, -0.1192657, 51.1641898 ], "geometry": { "type": "Point", "coordinates": [ -0.1192657, 51.1641898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31424722" }, "bbox": [ -0.1210675, 51.1641182, -0.1210675, 51.1641182 ], "geometry": { "type": "Point", "coordinates": [ -0.1210675, 51.1641182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31425731" }, "bbox": [ -0.1195023, 51.1649819, -0.1195023, 51.1649819 ], "geometry": { "type": "Point", "coordinates": [ -0.1195023, 51.1649819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38435895" }, "bbox": [ -0.0188331, 51.1780224, -0.0188331, 51.1780224 ], "geometry": { "type": "Point", "coordinates": [ -0.0188331, 51.1780224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38446713" }, "bbox": [ -0.0174102, 51.1795865, -0.0174102, 51.1795865 ], "geometry": { "type": "Point", "coordinates": [ -0.0174102, 51.1795865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38446005" }, "bbox": [ -0.0184463, 51.1788674, -0.0184463, 51.1788674 ], "geometry": { "type": "Point", "coordinates": [ -0.0184463, 51.1788674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35424843" }, "bbox": [ -0.0639549, 51.1650987, -0.0639549, 51.1650987 ], "geometry": { "type": "Point", "coordinates": [ -0.0639549, 51.1650987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36420987" }, "bbox": [ -0.0540821, 51.1693071, -0.0540821, 51.1693071 ], "geometry": { "type": "Point", "coordinates": [ -0.0540821, 51.1693071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42415001" }, "bbox": [ 0.036058, 51.1507452, 0.036058, 51.1507452 ], "geometry": { "type": "Point", "coordinates": [ 0.036058, 51.1507452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42419820" }, "bbox": [ 0.0430113, 51.1522408, 0.0430113, 51.1522408 ], "geometry": { "type": "Point", "coordinates": [ 0.0430113, 51.1522408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42403493" }, "bbox": [ 0.033739, 51.1500239, 0.033739, 51.1500239 ], "geometry": { "type": "Point", "coordinates": [ 0.033739, 51.1500239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42405094" }, "bbox": [ 0.0361426, 51.1500573, 0.0361426, 51.1500573 ], "geometry": { "type": "Point", "coordinates": [ 0.0361426, 51.1500573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43410636" }, "bbox": [ 0.0442366, 51.1536512, 0.0442366, 51.1536512 ], "geometry": { "type": "Point", "coordinates": [ 0.0442366, 51.1536512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38447578" }, "bbox": [ -0.0160653, 51.1853937, -0.0160653, 51.1853937 ], "geometry": { "type": "Point", "coordinates": [ -0.0160653, 51.1853937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38448963" }, "bbox": [ -0.0140811, 51.1840641, -0.0140811, 51.1840641 ], "geometry": { "type": "Point", "coordinates": [ -0.0140811, 51.1840641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38449068" }, "bbox": [ -0.014164, 51.1845458, -0.014164, 51.1845458 ], "geometry": { "type": "Point", "coordinates": [ -0.014164, 51.1845458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443864" }, "bbox": [ -0.0784339, 51.1852904, -0.0784339, 51.1852904 ], "geometry": { "type": "Point", "coordinates": [ -0.0784339, 51.1852904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34444364" }, "bbox": [ -0.0777079, 51.1852372, -0.0777079, 51.1852372 ], "geometry": { "type": "Point", "coordinates": [ -0.0777079, 51.1852372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442212" }, "bbox": [ -0.0239463, 51.1795734, -0.0239463, 51.1795734 ], "geometry": { "type": "Point", "coordinates": [ -0.0239463, 51.1795734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442615" }, "bbox": [ -0.0231918, 51.1798548, -0.0231918, 51.1798548 ], "geometry": { "type": "Point", "coordinates": [ -0.0231918, 51.1798548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442115" }, "bbox": [ -0.024207, 51.1799824, -0.024207, 51.1799824 ], "geometry": { "type": "Point", "coordinates": [ -0.024207, 51.1799824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442323" }, "bbox": [ -0.0238492, 51.1806749, -0.0238492, 51.1806749 ], "geometry": { "type": "Point", "coordinates": [ -0.0238492, 51.1806749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38443903" }, "bbox": [ -0.021582, 51.1791196, -0.021582, 51.1791196 ], "geometry": { "type": "Point", "coordinates": [ -0.021582, 51.1791196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38444508" }, "bbox": [ -0.0204829, 51.1792249, -0.0204829, 51.1792249 ], "geometry": { "type": "Point", "coordinates": [ -0.0204829, 51.1792249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06549425" }, "bbox": [ -0.4684083, 51.277254, -0.4684083, 51.277254 ], "geometry": { "type": "Point", "coordinates": [ -0.4684083, 51.277254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32424216" }, "bbox": [ -0.1074559, 51.1633982, -0.1074559, 51.1633982 ], "geometry": { "type": "Point", "coordinates": [ -0.1074559, 51.1633982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32435886" }, "bbox": [ -0.1053767, 51.1785974, -0.1053767, 51.1785974 ], "geometry": { "type": "Point", "coordinates": [ -0.1053767, 51.1785974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32434449" }, "bbox": [ -0.1067479, 51.1753338, -0.1067479, 51.1753338 ], "geometry": { "type": "Point", "coordinates": [ -0.1067479, 51.1753338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32436051" }, "bbox": [ -0.1043839, 51.1754762, -0.1043839, 51.1754762 ], "geometry": { "type": "Point", "coordinates": [ -0.1043839, 51.1754762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33408085" }, "bbox": [ -0.0884541, 51.1513199, -0.0884541, 51.1513199 ], "geometry": { "type": "Point", "coordinates": [ -0.0884541, 51.1513199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33418807" }, "bbox": [ -0.0870235, 51.1533094, -0.0870235, 51.1533094 ], "geometry": { "type": "Point", "coordinates": [ -0.0870235, 51.1533094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33418746" }, "bbox": [ -0.0870749, 51.1566882, -0.0870749, 51.1566882 ], "geometry": { "type": "Point", "coordinates": [ -0.0870749, 51.1566882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33417144" }, "bbox": [ -0.0894152, 51.1565211, -0.0894152, 51.1565211 ], "geometry": { "type": "Point", "coordinates": [ -0.0894152, 51.1565211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34410124" }, "bbox": [ -0.0852765, 51.15479, -0.0852765, 51.15479 ], "geometry": { "type": "Point", "coordinates": [ -0.0852765, 51.15479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37397694" }, "bbox": [ -0.0321635, 51.1421325, -0.0321635, 51.1421325 ], "geometry": { "type": "Point", "coordinates": [ -0.0321635, 51.1421325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90326386" }, "bbox": [ -0.7074134, 51.0878134, -0.7074134, 51.0878134 ], "geometry": { "type": "Point", "coordinates": [ -0.7074134, 51.0878134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90326192" }, "bbox": [ -0.7075938, 51.0884705, -0.7075938, 51.0884705 ], "geometry": { "type": "Point", "coordinates": [ -0.7075938, 51.0884705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41400196" }, "bbox": [ 0.0146637, 51.1504168, 0.0146637, 51.1504168 ], "geometry": { "type": "Point", "coordinates": [ 0.0146637, 51.1504168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38452341" }, "bbox": [ -0.0229268, 51.191101, -0.0229268, 51.191101 ], "geometry": { "type": "Point", "coordinates": [ -0.0229268, 51.191101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38451040" }, "bbox": [ -0.0252279, 51.1911619, -0.0252279, 51.1911619 ], "geometry": { "type": "Point", "coordinates": [ -0.0252279, 51.1911619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37443008" }, "bbox": [ -0.0371149, 51.1795971, -0.0371149, 51.1795971 ], "geometry": { "type": "Point", "coordinates": [ -0.0371149, 51.1795971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440604" }, "bbox": [ 0.0165226, 51.1781886, 0.0165226, 51.1781886 ], "geometry": { "type": "Point", "coordinates": [ 0.0165226, 51.1781886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41441204" }, "bbox": [ 0.0177022, 51.1781991, 0.0177022, 51.1781991 ], "geometry": { "type": "Point", "coordinates": [ 0.0177022, 51.1781991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16534695" }, "bbox": [ -0.3317204, 51.2727686, -0.3317204, 51.2727686 ], "geometry": { "type": "Point", "coordinates": [ -0.3317204, 51.2727686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16532346" }, "bbox": [ -0.3353394, 51.2683835, -0.3353394, 51.2683835 ], "geometry": { "type": "Point", "coordinates": [ -0.3353394, 51.2683835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16530617" }, "bbox": [ -0.3379845, 51.2658315, -0.3379845, 51.2658315 ], "geometry": { "type": "Point", "coordinates": [ -0.3379845, 51.2658315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16525129" }, "bbox": [ -0.3316622, 51.2575987, -0.3316622, 51.2575987 ], "geometry": { "type": "Point", "coordinates": [ -0.3316622, 51.2575987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16520386" }, "bbox": [ -0.3383794, 51.2626057, -0.3383794, 51.2626057 ], "geometry": { "type": "Point", "coordinates": [ -0.3383794, 51.2626057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546485" }, "bbox": [ -0.3430993, 51.2810273, -0.3430993, 51.2810273 ], "geometry": { "type": "Point", "coordinates": [ -0.3430993, 51.2810273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546174" }, "bbox": [ -0.3437437, 51.2801467, -0.3437437, 51.2801467 ], "geometry": { "type": "Point", "coordinates": [ -0.3437437, 51.2801467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545972" }, "bbox": [ -0.3439659, 51.2799133, -0.3439659, 51.2799133 ], "geometry": { "type": "Point", "coordinates": [ -0.3439659, 51.2799133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545410" }, "bbox": [ -0.3447932, 51.2742264, -0.3447932, 51.2742264 ], "geometry": { "type": "Point", "coordinates": [ -0.3447932, 51.2742264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548615" }, "bbox": [ -0.3423875, 51.2706996, -0.3423875, 51.2706996 ], "geometry": { "type": "Point", "coordinates": [ -0.3423875, 51.2706996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546361" }, "bbox": [ -0.3436438, 51.2788863, -0.3436438, 51.2788863 ], "geometry": { "type": "Point", "coordinates": [ -0.3436438, 51.2788863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546162" }, "bbox": [ -0.3438794, 51.2791305, -0.3438794, 51.2791305 ], "geometry": { "type": "Point", "coordinates": [ -0.3438794, 51.2791305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548134" }, "bbox": [ -0.3409414, 51.2769921, -0.3409414, 51.2769921 ], "geometry": { "type": "Point", "coordinates": [ -0.3409414, 51.2769921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15544730" }, "bbox": [ -0.3472706, 51.2757126, -0.3472706, 51.2757126 ], "geometry": { "type": "Point", "coordinates": [ -0.3472706, 51.2757126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15531339" }, "bbox": [ -0.3509, 51.2673311, -0.3509, 51.2673311 ], "geometry": { "type": "Point", "coordinates": [ -0.3509, 51.2673311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15531055" }, "bbox": [ -0.3511877, 51.2695849, -0.3511877, 51.2695849 ], "geometry": { "type": "Point", "coordinates": [ -0.3511877, 51.2695849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15533733" }, "bbox": [ -0.3476815, 51.2674875, -0.3476815, 51.2674875 ], "geometry": { "type": "Point", "coordinates": [ -0.3476815, 51.2674875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15533454" }, "bbox": [ -0.3480803, 51.2693919, -0.3480803, 51.2693919 ], "geometry": { "type": "Point", "coordinates": [ -0.3480803, 51.2693919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15525280" }, "bbox": [ -0.3461845, 51.2622505, -0.3461845, 51.2622505 ], "geometry": { "type": "Point", "coordinates": [ -0.3461845, 51.2622505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16545628" }, "bbox": [ -0.3304699, 51.275834, -0.3304699, 51.275834 ], "geometry": { "type": "Point", "coordinates": [ -0.3304699, 51.275834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32451001" }, "bbox": [ -0.1109891, 51.1891048, -0.1109891, 51.1891048 ], "geometry": { "type": "Point", "coordinates": [ -0.1109891, 51.1891048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31459907" }, "bbox": [ -0.1126348, 51.1895422, -0.1126348, 51.1895422 ], "geometry": { "type": "Point", "coordinates": [ -0.1126348, 51.1895422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09510977" }, "bbox": [ -0.4381758, 51.25466, -0.4381758, 51.25466 ], "geometry": { "type": "Point", "coordinates": [ -0.4381758, 51.25466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09513826" }, "bbox": [ -0.4340643, 51.2500776, -0.4340643, 51.2500776 ], "geometry": { "type": "Point", "coordinates": [ -0.4340643, 51.2500776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09510548" }, "bbox": [ -0.4388808, 51.2521226, -0.4388808, 51.2521226 ], "geometry": { "type": "Point", "coordinates": [ -0.4388808, 51.2521226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08516854" }, "bbox": [ -0.4441097, 51.2526803, -0.4441097, 51.2526803 ], "geometry": { "type": "Point", "coordinates": [ -0.4441097, 51.2526803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08519835" }, "bbox": [ -0.4401139, 51.2508247, -0.4401139, 51.2508247 ], "geometry": { "type": "Point", "coordinates": [ -0.4401139, 51.2508247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08514068" }, "bbox": [ -0.4479366, 51.2541894, -0.4479366, 51.2541894 ], "geometry": { "type": "Point", "coordinates": [ -0.4479366, 51.2541894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08513285" }, "bbox": [ -0.4489421, 51.255523, -0.4489421, 51.255523 ], "geometry": { "type": "Point", "coordinates": [ -0.4489421, 51.255523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08519869" }, "bbox": [ -0.441181, 51.2538853, -0.441181, 51.2538853 ], "geometry": { "type": "Point", "coordinates": [ -0.441181, 51.2538853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08515191" }, "bbox": [ -0.4462942, 51.2561261, -0.4462942, 51.2561261 ], "geometry": { "type": "Point", "coordinates": [ -0.4462942, 51.2561261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08519393" }, "bbox": [ -0.4404848, 51.2577095, -0.4404848, 51.2577095 ], "geometry": { "type": "Point", "coordinates": [ -0.4404848, 51.2577095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06528310" }, "bbox": [ -0.4703453, 51.2580954, -0.4703453, 51.2580954 ], "geometry": { "type": "Point", "coordinates": [ -0.4703453, 51.2580954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39462040" }, "bbox": [ -0.0089164, 51.2000284, -0.0089164, 51.2000284 ], "geometry": { "type": "Point", "coordinates": [ -0.0089164, 51.2000284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39461528" }, "bbox": [ -0.0096964, 51.1988836, -0.0096964, 51.1988836 ], "geometry": { "type": "Point", "coordinates": [ -0.0096964, 51.1988836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34504467" }, "bbox": [ -0.075557, 51.2394609, -0.075557, 51.2394609 ], "geometry": { "type": "Point", "coordinates": [ -0.075557, 51.2394609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34514016" }, "bbox": [ -0.0760221, 51.243774, -0.0760221, 51.243774 ], "geometry": { "type": "Point", "coordinates": [ -0.0760221, 51.243774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34513501" }, "bbox": [ -0.0769547, 51.2423331, -0.0769547, 51.2423331 ], "geometry": { "type": "Point", "coordinates": [ -0.0769547, 51.2423331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36443200" }, "bbox": [ -0.0509631, 51.17904, -0.0509631, 51.17904 ], "geometry": { "type": "Point", "coordinates": [ -0.0509631, 51.17904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43400975" }, "bbox": [ 0.044659, 51.1483129, 0.044659, 51.1483129 ], "geometry": { "type": "Point", "coordinates": [ 0.044659, 51.1483129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43401091" }, "bbox": [ 0.044614, 51.1496572, 0.044614, 51.1496572 ], "geometry": { "type": "Point", "coordinates": [ 0.044614, 51.1496572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43401174" }, "bbox": [ 0.0446424, 51.148019, 0.0446424, 51.148019 ], "geometry": { "type": "Point", "coordinates": [ 0.0446424, 51.148019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43414228" }, "bbox": [ 0.0493731, 51.1528656, 0.0493731, 51.1528656 ], "geometry": { "type": "Point", "coordinates": [ 0.0493731, 51.1528656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43413532" }, "bbox": [ 0.0482321, 51.1532774, 0.0482321, 51.1532774 ], "geometry": { "type": "Point", "coordinates": [ 0.0482321, 51.1532774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43413314" }, "bbox": [ 0.048053, 51.1515856, 0.048053, 51.1515856 ], "geometry": { "type": "Point", "coordinates": [ 0.048053, 51.1515856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43414123" }, "bbox": [ 0.0491165, 51.1524658, 0.0491165, 51.1524658 ], "geometry": { "type": "Point", "coordinates": [ 0.0491165, 51.1524658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43413826" }, "bbox": [ 0.0485812, 51.1526864, 0.0485812, 51.1526864 ], "geometry": { "type": "Point", "coordinates": [ 0.0485812, 51.1526864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14536551" }, "bbox": [ -0.3574731, 51.2690912, -0.3574731, 51.2690912 ], "geometry": { "type": "Point", "coordinates": [ -0.3574731, 51.2690912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33443001" }, "bbox": [ -0.0938432, 51.1805001, -0.0938432, 51.1805001 ], "geometry": { "type": "Point", "coordinates": [ -0.0938432, 51.1805001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33445932" }, "bbox": [ -0.0898757, 51.1827676, -0.0898757, 51.1827676 ], "geometry": { "type": "Point", "coordinates": [ -0.0898757, 51.1827676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33441814" }, "bbox": [ -0.0959266, 51.1809711, -0.0959266, 51.1809711 ], "geometry": { "type": "Point", "coordinates": [ -0.0959266, 51.1809711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446244" }, "bbox": [ -0.0897995, 51.1834912, -0.0897995, 51.1834912 ], "geometry": { "type": "Point", "coordinates": [ -0.0897995, 51.1834912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33431883" }, "bbox": [ -0.096028, 51.178219, -0.096028, 51.178219 ], "geometry": { "type": "Point", "coordinates": [ -0.096028, 51.178219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42429388" }, "bbox": [ 0.0432115, 51.1674631, 0.0432115, 51.1674631 ], "geometry": { "type": "Point", "coordinates": [ 0.0432115, 51.1674631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35439528" }, "bbox": [ -0.0569341, 51.1726883, -0.0569341, 51.1726883 ], "geometry": { "type": "Point", "coordinates": [ -0.0569341, 51.1726883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36430145" }, "bbox": [ -0.055835, 51.1741867, -0.055835, 51.1741867 ], "geometry": { "type": "Point", "coordinates": [ -0.055835, 51.1741867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36432179" }, "bbox": [ -0.0526858, 51.1771166, -0.0526858, 51.1771166 ], "geometry": { "type": "Point", "coordinates": [ -0.0526858, 51.1771166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36430255" }, "bbox": [ -0.05541, 51.1750246, -0.05541, 51.1750246 ], "geometry": { "type": "Point", "coordinates": [ -0.05541, 51.1750246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36431367" }, "bbox": [ -0.0540327, 51.176029, -0.0540327, 51.176029 ], "geometry": { "type": "Point", "coordinates": [ -0.0540327, 51.176029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36406634" }, "bbox": [ -0.0475615, 51.1461793, -0.0475615, 51.1461793 ], "geometry": { "type": "Point", "coordinates": [ -0.0475615, 51.1461793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32495358" }, "bbox": [ -0.1031076, 51.2298322, -0.1031076, 51.2298322 ], "geometry": { "type": "Point", "coordinates": [ -0.1031076, 51.2298322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32489820" }, "bbox": [ -0.0972147, 51.2174169, -0.0972147, 51.2174169 ], "geometry": { "type": "Point", "coordinates": [ -0.0972147, 51.2174169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32509209" }, "bbox": [ -0.0973804, 51.2343743, -0.0973804, 51.2343743 ], "geometry": { "type": "Point", "coordinates": [ -0.0973804, 51.2343743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35478462" }, "bbox": [ -0.0564887, 51.2116463, -0.0564887, 51.2116463 ], "geometry": { "type": "Point", "coordinates": [ -0.0564887, 51.2116463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35477544" }, "bbox": [ -0.0579824, 51.2101825, -0.0579824, 51.2101825 ], "geometry": { "type": "Point", "coordinates": [ -0.0579824, 51.2101825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33455116" }, "bbox": [ -0.0908713, 51.1901022, -0.0908713, 51.1901022 ], "geometry": { "type": "Point", "coordinates": [ -0.0908713, 51.1901022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37453516" }, "bbox": [ -0.0356499, 51.1891463, -0.0356499, 51.1891463 ], "geometry": { "type": "Point", "coordinates": [ -0.0356499, 51.1891463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37453810" }, "bbox": [ -0.0355372, 51.1885931, -0.0355372, 51.1885931 ], "geometry": { "type": "Point", "coordinates": [ -0.0355372, 51.1885931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33453113" }, "bbox": [ -0.0928144, 51.1898715, -0.0928144, 51.1898715 ], "geometry": { "type": "Point", "coordinates": [ -0.0928144, 51.1898715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12519791" }, "bbox": [ -0.3823924, 51.2552737, -0.3823924, 51.2552737 ], "geometry": { "type": "Point", "coordinates": [ -0.3823924, 51.2552737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13519295" }, "bbox": [ -0.3689583, 51.2553091, -0.3689583, 51.2553091 ], "geometry": { "type": "Point", "coordinates": [ -0.3689583, 51.2553091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13518885" }, "bbox": [ -0.369442, 51.254481, -0.369442, 51.254481 ], "geometry": { "type": "Point", "coordinates": [ -0.369442, 51.254481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13517190" }, "bbox": [ -0.3718538, 51.2550697, -0.3718538, 51.2550697 ], "geometry": { "type": "Point", "coordinates": [ -0.3718538, 51.2550697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13516492" }, "bbox": [ -0.3727134, 51.2552352, -0.3727134, 51.2552352 ], "geometry": { "type": "Point", "coordinates": [ -0.3727134, 51.2552352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13517372" }, "bbox": [ -0.3716797, 51.2533206, -0.3716797, 51.2533206 ], "geometry": { "type": "Point", "coordinates": [ -0.3716797, 51.2533206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13516572" }, "bbox": [ -0.3729113, 51.2533412, -0.3729113, 51.2533412 ], "geometry": { "type": "Point", "coordinates": [ -0.3729113, 51.2533412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13515578" }, "bbox": [ -0.3742776, 51.2539187, -0.3742776, 51.2539187 ], "geometry": { "type": "Point", "coordinates": [ -0.3742776, 51.2539187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511890" }, "bbox": [ -0.3794921, 51.2552813, -0.3794921, 51.2552813 ], "geometry": { "type": "Point", "coordinates": [ -0.3794921, 51.2552813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13510885" }, "bbox": [ -0.3805469, 51.2545373, -0.3805469, 51.2545373 ], "geometry": { "type": "Point", "coordinates": [ -0.3805469, 51.2545373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13529684" }, "bbox": [ -0.3680634, 51.2633764, -0.3680634, 51.2633764 ], "geometry": { "type": "Point", "coordinates": [ -0.3680634, 51.2633764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13529076" }, "bbox": [ -0.3688809, 51.2626672, -0.3688809, 51.2626672 ], "geometry": { "type": "Point", "coordinates": [ -0.3688809, 51.2626672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13528386" }, "bbox": [ -0.3699244, 51.263539, -0.3699244, 51.263539 ], "geometry": { "type": "Point", "coordinates": [ -0.3699244, 51.263539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13526248" }, "bbox": [ -0.3730532, 51.2601934, -0.3730532, 51.2601934 ], "geometry": { "type": "Point", "coordinates": [ -0.3730532, 51.2601934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13528653" }, "bbox": [ -0.3695955, 51.2605602, -0.3695955, 51.2605602 ], "geometry": { "type": "Point", "coordinates": [ -0.3695955, 51.2605602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13525854" }, "bbox": [ -0.3736229, 51.2607491, -0.3736229, 51.2607491 ], "geometry": { "type": "Point", "coordinates": [ -0.3736229, 51.2607491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13525160" }, "bbox": [ -0.3745563, 51.2612144, -0.3745563, 51.2612144 ], "geometry": { "type": "Point", "coordinates": [ -0.3745563, 51.2612144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13525858" }, "bbox": [ -0.3732119, 51.2608703, -0.3732119, 51.2608703 ], "geometry": { "type": "Point", "coordinates": [ -0.3732119, 51.2608703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13527987" }, "bbox": [ -0.3705984, 51.2636404, -0.3705984, 51.2636404 ], "geometry": { "type": "Point", "coordinates": [ -0.3705984, 51.2636404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13525942" }, "bbox": [ -0.3732029, 51.2595433, -0.3732029, 51.2595433 ], "geometry": { "type": "Point", "coordinates": [ -0.3732029, 51.2595433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13525356" }, "bbox": [ -0.3741567, 51.261007, -0.3741567, 51.261007 ], "geometry": { "type": "Point", "coordinates": [ -0.3741567, 51.261007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13528554" }, "bbox": [ -0.3698045, 51.2606515, -0.3698045, 51.2606515 ], "geometry": { "type": "Point", "coordinates": [ -0.3698045, 51.2606515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13525850" }, "bbox": [ -0.3735206, 51.2603502, -0.3735206, 51.2603502 ], "geometry": { "type": "Point", "coordinates": [ -0.3735206, 51.2603502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13526151" }, "bbox": [ -0.3730589, 51.2604499, -0.3730589, 51.2604499 ], "geometry": { "type": "Point", "coordinates": [ -0.3730589, 51.2604499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13521509" }, "bbox": [ -0.3798786, 51.2568313, -0.3798786, 51.2568313 ], "geometry": { "type": "Point", "coordinates": [ -0.3798786, 51.2568313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14516482" }, "bbox": [ -0.3582654, 51.2534798, -0.3582654, 51.2534798 ], "geometry": { "type": "Point", "coordinates": [ -0.3582654, 51.2534798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14516187" }, "bbox": [ -0.3595261, 51.2544028, -0.3595261, 51.2544028 ], "geometry": { "type": "Point", "coordinates": [ -0.3595261, 51.2544028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14511164" }, "bbox": [ -0.3662352, 51.2525407, -0.3662352, 51.2525407 ], "geometry": { "type": "Point", "coordinates": [ -0.3662352, 51.2525407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14520152" }, "bbox": [ -0.3674396, 51.2604774, -0.3674396, 51.2604774 ], "geometry": { "type": "Point", "coordinates": [ -0.3674396, 51.2604774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14520183" }, "bbox": [ -0.3672664, 51.2632105, -0.3672664, 51.2632105 ], "geometry": { "type": "Point", "coordinates": [ -0.3672664, 51.2632105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14520347" }, "bbox": [ -0.3671708, 51.2600541, -0.3671708, 51.2600541 ], "geometry": { "type": "Point", "coordinates": [ -0.3671708, 51.2600541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457646" }, "bbox": [ 0.0129306, 51.1910385, 0.0129306, 51.1910385 ], "geometry": { "type": "Point", "coordinates": [ 0.0129306, 51.1910385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457351" }, "bbox": [ 0.0125767, 51.1915845, 0.0125767, 51.1915845 ], "geometry": { "type": "Point", "coordinates": [ 0.0125767, 51.1915845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02322365" }, "bbox": [ -0.5416414, 51.0840601, -0.5416414, 51.0840601 ], "geometry": { "type": "Point", "coordinates": [ -0.5416414, 51.0840601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02321866" }, "bbox": [ -0.542349, 51.0840507, -0.542349, 51.0840507 ], "geometry": { "type": "Point", "coordinates": [ -0.542349, 51.0840507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02322895" }, "bbox": [ -0.5409878, 51.0868641, -0.5409878, 51.0868641 ], "geometry": { "type": "Point", "coordinates": [ -0.5409878, 51.0868641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36422690" }, "bbox": [ -0.0517199, 51.1703062, -0.0517199, 51.1703062 ], "geometry": { "type": "Point", "coordinates": [ -0.0517199, 51.1703062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36432730" }, "bbox": [ -0.0519039, 51.1726189, -0.0519039, 51.1726189 ], "geometry": { "type": "Point", "coordinates": [ -0.0519039, 51.1726189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35466042" }, "bbox": [ -0.0605359, 51.2008895, -0.0605359, 51.2008895 ], "geometry": { "type": "Point", "coordinates": [ -0.0605359, 51.2008895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512415" }, "bbox": [ -0.0640469, 51.2435562, -0.0640469, 51.2435562 ], "geometry": { "type": "Point", "coordinates": [ -0.0640469, 51.2435562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512213" }, "bbox": [ -0.0635181, 51.2432368, -0.0635181, 51.2432368 ], "geometry": { "type": "Point", "coordinates": [ -0.0635181, 51.2432368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512313" }, "bbox": [ -0.063762, 51.2433181, -0.063762, 51.2433181 ], "geometry": { "type": "Point", "coordinates": [ -0.063762, 51.2433181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512111" }, "bbox": [ -0.0642936, 51.2431502, -0.0642936, 51.2431502 ], "geometry": { "type": "Point", "coordinates": [ -0.0642936, 51.2431502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513600" }, "bbox": [ -0.0620506, 51.2421788, -0.0620506, 51.2421788 ], "geometry": { "type": "Point", "coordinates": [ -0.0620506, 51.2421788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513501" }, "bbox": [ -0.0623783, 51.2422347, -0.0623783, 51.2422347 ], "geometry": { "type": "Point", "coordinates": [ -0.0623783, 51.2422347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503897" }, "bbox": [ -0.0618105, 51.2418011, -0.0618105, 51.2418011 ], "geometry": { "type": "Point", "coordinates": [ -0.0618105, 51.2418011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504097" }, "bbox": [ -0.0617693, 51.241895, -0.0617693, 51.241895 ], "geometry": { "type": "Point", "coordinates": [ -0.0617693, 51.241895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503560" }, "bbox": [ -0.0625544, 51.2384826, -0.0625544, 51.2384826 ], "geometry": { "type": "Point", "coordinates": [ -0.0625544, 51.2384826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504093" }, "bbox": [ -0.0616852, 51.2414985, -0.0616852, 51.2414985 ], "geometry": { "type": "Point", "coordinates": [ -0.0616852, 51.2414985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503995" }, "bbox": [ -0.0618475, 51.2416991, -0.0618475, 51.2416991 ], "geometry": { "type": "Point", "coordinates": [ -0.0618475, 51.2416991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504591" }, "bbox": [ -0.0608999, 51.2412534, -0.0608999, 51.2412534 ], "geometry": { "type": "Point", "coordinates": [ -0.0608999, 51.2412534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503197" }, "bbox": [ -0.0628285, 51.2419642, -0.0628285, 51.2419642 ], "geometry": { "type": "Point", "coordinates": [ -0.0628285, 51.2419642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503498" }, "bbox": [ -0.0625705, 51.2418074, -0.0625705, 51.2418074 ], "geometry": { "type": "Point", "coordinates": [ -0.0625705, 51.2418074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503765" }, "bbox": [ -0.0621075, 51.2390666, -0.0621075, 51.2390666 ], "geometry": { "type": "Point", "coordinates": [ -0.0621075, 51.2390666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503863" }, "bbox": [ -0.0621048, 51.2387868, -0.0621048, 51.2387868 ], "geometry": { "type": "Point", "coordinates": [ -0.0621048, 51.2387868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504255" }, "bbox": [ -0.0613137, 51.2381321, -0.0613137, 51.2381321 ], "geometry": { "type": "Point", "coordinates": [ -0.0613137, 51.2381321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504686" }, "bbox": [ -0.0607914, 51.2408076, -0.0607914, 51.2408076 ], "geometry": { "type": "Point", "coordinates": [ -0.0607914, 51.2408076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35502996" }, "bbox": [ -0.0630349, 51.2418489, -0.0630349, 51.2418489 ], "geometry": { "type": "Point", "coordinates": [ -0.0630349, 51.2418489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472371" }, "bbox": [ 0.0203873, 51.2110753, 0.0203873, 51.2110753 ], "geometry": { "type": "Point", "coordinates": [ 0.0203873, 51.2110753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41473071" }, "bbox": [ 0.0217623, 51.2110921, 0.0217623, 51.2110921 ], "geometry": { "type": "Point", "coordinates": [ 0.0217623, 51.2110921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472164" }, "bbox": [ 0.0201575, 51.2105074, 0.0201575, 51.2105074 ], "geometry": { "type": "Point", "coordinates": [ 0.0201575, 51.2105074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41471768" }, "bbox": [ 0.0196971, 51.210885, 0.0196971, 51.210885 ], "geometry": { "type": "Point", "coordinates": [ 0.0196971, 51.210885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472769" }, "bbox": [ 0.0210048, 51.2108834, 0.0210048, 51.2108834 ], "geometry": { "type": "Point", "coordinates": [ 0.0210048, 51.2108834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472574" }, "bbox": [ 0.021031, 51.2112842, 0.021031, 51.2112842 ], "geometry": { "type": "Point", "coordinates": [ 0.021031, 51.2112842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472472" }, "bbox": [ 0.0207594, 51.2111966, 0.0207594, 51.2111966 ], "geometry": { "type": "Point", "coordinates": [ 0.0207594, 51.2111966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472470" }, "bbox": [ 0.0205837, 51.2111631, 0.0205837, 51.2111631 ], "geometry": { "type": "Point", "coordinates": [ 0.0205837, 51.2111631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472564" }, "bbox": [ 0.0211118, 51.2104242, 0.0211118, 51.2104242 ], "geometry": { "type": "Point", "coordinates": [ 0.0211118, 51.2104242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478686" }, "bbox": [ -0.0418965, 51.2136186, -0.0418965, 51.2136186 ], "geometry": { "type": "Point", "coordinates": [ -0.0418965, 51.2136186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33449427" }, "bbox": [ -0.0847698, 51.1818262, -0.0847698, 51.1818262 ], "geometry": { "type": "Point", "coordinates": [ -0.0847698, 51.1818262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33448407" }, "bbox": [ -0.0863348, 51.1802124, -0.0863348, 51.1802124 ], "geometry": { "type": "Point", "coordinates": [ -0.0863348, 51.1802124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34444134" }, "bbox": [ -0.078153, 51.1826383, -0.078153, 51.1826383 ], "geometry": { "type": "Point", "coordinates": [ -0.078153, 51.1826383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34440301" }, "bbox": [ -0.0836385, 51.1796093, -0.0836385, 51.1796093 ], "geometry": { "type": "Point", "coordinates": [ -0.0836385, 51.1796093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40470410" }, "bbox": [ 0.0032484, 51.2058424, 0.0032484, 51.2058424 ], "geometry": { "type": "Point", "coordinates": [ 0.0032484, 51.2058424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39479117" }, "bbox": [ 0.0010684, 51.2065546, 0.0010684, 51.2065546 ], "geometry": { "type": "Point", "coordinates": [ 0.0010684, 51.2065546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39479353" }, "bbox": [ 0.0015666, 51.2091817, 0.0015666, 51.2091817 ], "geometry": { "type": "Point", "coordinates": [ 0.0015666, 51.2091817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32503126" }, "bbox": [ -0.1061447, 51.2362177, -0.1061447, 51.2362177 ], "geometry": { "type": "Point", "coordinates": [ -0.1061447, 51.2362177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32502620" }, "bbox": [ -0.1066163, 51.2356269, -0.1066163, 51.2356269 ], "geometry": { "type": "Point", "coordinates": [ -0.1066163, 51.2356269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32501316" }, "bbox": [ -0.1089311, 51.2354161, -0.1089311, 51.2354161 ], "geometry": { "type": "Point", "coordinates": [ -0.1089311, 51.2354161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32500405" }, "bbox": [ -0.1100693, 51.2343138, -0.1100693, 51.2343138 ], "geometry": { "type": "Point", "coordinates": [ -0.1100693, 51.2343138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31509514" }, "bbox": [ -0.1112402, 51.2351401, -0.1112402, 51.2351401 ], "geometry": { "type": "Point", "coordinates": [ -0.1112402, 51.2351401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479765" }, "bbox": [ -0.0412317, 51.2116076, -0.0412317, 51.2116076 ], "geometry": { "type": "Point", "coordinates": [ -0.0412317, 51.2116076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37470751" }, "bbox": [ -0.0389907, 51.2103701, -0.0389907, 51.2103701 ], "geometry": { "type": "Point", "coordinates": [ -0.0389907, 51.2103701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38430242" }, "bbox": [ -0.0270242, 51.1734123, -0.0270242, 51.1734123 ], "geometry": { "type": "Point", "coordinates": [ -0.0270242, 51.1734123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38431811" }, "bbox": [ -0.0247833, 51.1706135, -0.0247833, 51.1706135 ], "geometry": { "type": "Point", "coordinates": [ -0.0247833, 51.1706135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38436232" }, "bbox": [ -0.0184259, 51.172357, -0.0184259, 51.172357 ], "geometry": { "type": "Point", "coordinates": [ -0.0184259, 51.172357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43513855" }, "bbox": [ 0.0530536, 51.2452795, 0.0530536, 51.2452795 ], "geometry": { "type": "Point", "coordinates": [ 0.0530536, 51.2452795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498324" }, "bbox": [ -0.0700547, 51.2263792, -0.0700547, 51.2263792 ], "geometry": { "type": "Point", "coordinates": [ -0.0700547, 51.2263792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42445672" }, "bbox": [ 0.0385113, 51.1841035, 0.0385113, 51.1841035 ], "geometry": { "type": "Point", "coordinates": [ 0.0385113, 51.1841035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42441625" }, "bbox": [ 0.0325056, 51.179839, 0.0325056, 51.179839 ], "geometry": { "type": "Point", "coordinates": [ 0.0325056, 51.179839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42446245" }, "bbox": [ 0.0391795, 51.1815972, 0.0391795, 51.1815972 ], "geometry": { "type": "Point", "coordinates": [ 0.0391795, 51.1815972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42446160" }, "bbox": [ 0.0388323, 51.1827881, 0.0388323, 51.1827881 ], "geometry": { "type": "Point", "coordinates": [ 0.0388323, 51.1827881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39506205" }, "bbox": [ -0.0014902, 51.2326023, -0.0014902, 51.2326023 ], "geometry": { "type": "Point", "coordinates": [ -0.0014902, 51.2326023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39493395" }, "bbox": [ -0.0055139, 51.231839, -0.0055139, 51.231839 ], "geometry": { "type": "Point", "coordinates": [ -0.0055139, 51.231839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39495198" }, "bbox": [ -0.0033018, 51.2318615, -0.0033018, 51.2318615 ], "geometry": { "type": "Point", "coordinates": [ -0.0033018, 51.2318615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43442883" }, "bbox": [ 0.0486976, 51.1846737, 0.0486976, 51.1846737 ], "geometry": { "type": "Point", "coordinates": [ 0.0486976, 51.1846737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36438602" }, "bbox": [ -0.0436311, 51.1701742, -0.0436311, 51.1701742 ], "geometry": { "type": "Point", "coordinates": [ -0.0436311, 51.1701742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36438733" }, "bbox": [ -0.0435716, 51.1727517, -0.0435716, 51.1727517 ], "geometry": { "type": "Point", "coordinates": [ -0.0435716, 51.1727517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439758" }, "bbox": [ -0.0419721, 51.1751861, -0.0419721, 51.1751861 ], "geometry": { "type": "Point", "coordinates": [ -0.0419721, 51.1751861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439164" }, "bbox": [ -0.0427762, 51.1756419, -0.0427762, 51.1756419 ], "geometry": { "type": "Point", "coordinates": [ -0.0427762, 51.1756419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439369" }, "bbox": [ -0.0425216, 51.1760425, -0.0425216, 51.1760425 ], "geometry": { "type": "Point", "coordinates": [ -0.0425216, 51.1760425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439355" }, "bbox": [ -0.04305, 51.1757368, -0.04305, 51.1757368 ], "geometry": { "type": "Point", "coordinates": [ -0.04305, 51.1757368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37430893" }, "bbox": [ -0.0400133, 51.1781921, -0.0400133, 51.1781921 ], "geometry": { "type": "Point", "coordinates": [ -0.0400133, 51.1781921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37430573" }, "bbox": [ -0.0414299, 51.1762423, -0.0414299, 51.1762423 ], "geometry": { "type": "Point", "coordinates": [ -0.0414299, 51.1762423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37433381" }, "bbox": [ -0.0367095, 51.1769721, -0.0367095, 51.1769721 ], "geometry": { "type": "Point", "coordinates": [ -0.0367095, 51.1769721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37431445" }, "bbox": [ -0.0399129, 51.1737355, -0.0399129, 51.1737355 ], "geometry": { "type": "Point", "coordinates": [ -0.0399129, 51.1737355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37432390" }, "bbox": [ -0.03825, 51.1779191, -0.03825, 51.1779191 ], "geometry": { "type": "Point", "coordinates": [ -0.03825, 51.1779191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37430058" }, "bbox": [ -0.0414739, 51.1750624, -0.0414739, 51.1750624 ], "geometry": { "type": "Point", "coordinates": [ -0.0414739, 51.1750624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00472867" }, "bbox": [ -0.5653817, 51.219463, -0.5653817, 51.219463 ], "geometry": { "type": "Point", "coordinates": [ -0.5653817, 51.219463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00473058" }, "bbox": [ -0.565247, 51.2186395, -0.565247, 51.2186395 ], "geometry": { "type": "Point", "coordinates": [ -0.565247, 51.2186395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442752" }, "bbox": [ -0.0802888, 51.1842171, -0.0802888, 51.1842171 ], "geometry": { "type": "Point", "coordinates": [ -0.0802888, 51.1842171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442370" }, "bbox": [ -0.0807931, 51.1858314, -0.0807931, 51.1858314 ], "geometry": { "type": "Point", "coordinates": [ -0.0807931, 51.1858314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441678" }, "bbox": [ -0.0816312, 51.1866265, -0.0816312, 51.1866265 ], "geometry": { "type": "Point", "coordinates": [ -0.0816312, 51.1866265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441850" }, "bbox": [ -0.0820225, 51.1837581, -0.0820225, 51.1837581 ], "geometry": { "type": "Point", "coordinates": [ -0.0820225, 51.1837581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34440867" }, "bbox": [ -0.0827433, 51.1854908, -0.0827433, 51.1854908 ], "geometry": { "type": "Point", "coordinates": [ -0.0827433, 51.1854908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443059" }, "bbox": [ -0.0797755, 51.1848234, -0.0797755, 51.1848234 ], "geometry": { "type": "Point", "coordinates": [ -0.0797755, 51.1848234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443057" }, "bbox": [ -0.0797789, 51.184574, -0.0797789, 51.184574 ], "geometry": { "type": "Point", "coordinates": [ -0.0797789, 51.184574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442964" }, "bbox": [ -0.0797913, 51.1850915, -0.0797913, 51.1850915 ], "geometry": { "type": "Point", "coordinates": [ -0.0797913, 51.1850915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442463" }, "bbox": [ -0.0804414, 51.1851942, -0.0804414, 51.1851942 ], "geometry": { "type": "Point", "coordinates": [ -0.0804414, 51.1851942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442568" }, "bbox": [ -0.0804775, 51.1855577, -0.0804775, 51.1855577 ], "geometry": { "type": "Point", "coordinates": [ -0.0804775, 51.1855577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442846" }, "bbox": [ -0.0800681, 51.183637, -0.0800681, 51.183637 ], "geometry": { "type": "Point", "coordinates": [ -0.0800681, 51.183637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442244" }, "bbox": [ -0.0807303, 51.1835744, -0.0807303, 51.1835744 ], "geometry": { "type": "Point", "coordinates": [ -0.0807303, 51.1835744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02477669" }, "bbox": [ -0.5302078, 51.2194549, -0.5302078, 51.2194549 ], "geometry": { "type": "Point", "coordinates": [ -0.5302078, 51.2194549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02477775" }, "bbox": [ -0.5298051, 51.2191971, -0.5298051, 51.2191971 ], "geometry": { "type": "Point", "coordinates": [ -0.5298051, 51.2191971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02476565" }, "bbox": [ -0.5316173, 51.2188861, -0.5316173, 51.2188861 ], "geometry": { "type": "Point", "coordinates": [ -0.5316173, 51.2188861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02477369" }, "bbox": [ -0.5305338, 51.219261, -0.5305338, 51.219261 ], "geometry": { "type": "Point", "coordinates": [ -0.5305338, 51.219261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34509334" }, "bbox": [ -0.0686103, 51.2362829, -0.0686103, 51.2362829 ], "geometry": { "type": "Point", "coordinates": [ -0.0686103, 51.2362829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07523532" }, "bbox": [ -0.4629329, 51.2599108, -0.4629329, 51.2599108 ], "geometry": { "type": "Point", "coordinates": [ -0.4629329, 51.2599108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02484301" }, "bbox": [ -0.5346068, 51.2219212, -0.5346068, 51.2219212 ], "geometry": { "type": "Point", "coordinates": [ -0.5346068, 51.2219212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02486206" }, "bbox": [ -0.5327163, 51.221523, -0.5327163, 51.221523 ], "geometry": { "type": "Point", "coordinates": [ -0.5327163, 51.221523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02486712" }, "bbox": [ -0.5319343, 51.2232708, -0.5319343, 51.2232708 ], "geometry": { "type": "Point", "coordinates": [ -0.5319343, 51.2232708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02477688" }, "bbox": [ -0.5299788, 51.2212119, -0.5299788, 51.2212119 ], "geometry": { "type": "Point", "coordinates": [ -0.5299788, 51.2212119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02474896" }, "bbox": [ -0.5342411, 51.2226761, -0.5342411, 51.2226761 ], "geometry": { "type": "Point", "coordinates": [ -0.5342411, 51.2226761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02476090" }, "bbox": [ -0.53211, 51.2209687, -0.53211, 51.2209687 ], "geometry": { "type": "Point", "coordinates": [ -0.53211, 51.2209687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42427693" }, "bbox": [ 0.0405016, 51.1678218, 0.0405016, 51.1678218 ], "geometry": { "type": "Point", "coordinates": [ 0.0405016, 51.1678218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32397187" }, "bbox": [ -0.1039854, 51.1430711, -0.1039854, 51.1430711 ], "geometry": { "type": "Point", "coordinates": [ -0.1039854, 51.1430711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34501973" }, "bbox": [ -0.0790127, 51.2409096, -0.0790127, 51.2409096 ], "geometry": { "type": "Point", "coordinates": [ -0.0790127, 51.2409096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95484939" }, "bbox": [ -0.6341188, 51.2267299, -0.6341188, 51.2267299 ], "geometry": { "type": "Point", "coordinates": [ -0.6341188, 51.2267299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95483336" }, "bbox": [ -0.6361437, 51.2265245, -0.6361437, 51.2265245 ], "geometry": { "type": "Point", "coordinates": [ -0.6361437, 51.2265245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06365145" }, "bbox": [ -0.4797064, 51.1173983, -0.4797064, 51.1173983 ], "geometry": { "type": "Point", "coordinates": [ -0.4797064, 51.1173983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498836" }, "bbox": [ -0.0696124, 51.2275003, -0.0696124, 51.2275003 ], "geometry": { "type": "Point", "coordinates": [ -0.0696124, 51.2275003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498834" }, "bbox": [ -0.0695735, 51.2273281, -0.0695735, 51.2273281 ], "geometry": { "type": "Point", "coordinates": [ -0.0695735, 51.2273281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498938" }, "bbox": [ -0.0695692, 51.2276919, -0.0695692, 51.2276919 ], "geometry": { "type": "Point", "coordinates": [ -0.0695692, 51.2276919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91612650" }, "bbox": [ -0.6909851, 51.3454838, -0.6909851, 51.3454838 ], "geometry": { "type": "Point", "coordinates": [ -0.6909851, 51.3454838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32493128" }, "bbox": [ -0.1066111, 51.2275297, -0.1066111, 51.2275297 ], "geometry": { "type": "Point", "coordinates": [ -0.1066111, 51.2275297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32490385" }, "bbox": [ -0.1093681, 51.2325544, -0.1093681, 51.2325544 ], "geometry": { "type": "Point", "coordinates": [ -0.1093681, 51.2325544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32492507" }, "bbox": [ -0.1065238, 51.225428, -0.1065238, 51.225428 ], "geometry": { "type": "Point", "coordinates": [ -0.1065238, 51.225428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32495322" }, "bbox": [ -0.1029938, 51.227, -0.1029938, 51.227 ], "geometry": { "type": "Point", "coordinates": [ -0.1029938, 51.227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32493148" }, "bbox": [ -0.1065427, 51.2292599, -0.1065427, 51.2292599 ], "geometry": { "type": "Point", "coordinates": [ -0.1065427, 51.2292599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32491173" }, "bbox": [ -0.1090867, 51.2315435, -0.1090867, 51.2315435 ], "geometry": { "type": "Point", "coordinates": [ -0.1090867, 51.2315435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32492647" }, "bbox": [ -0.1070748, 51.2290654, -0.1070748, 51.2290654 ], "geometry": { "type": "Point", "coordinates": [ -0.1070748, 51.2290654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32485298" }, "bbox": [ -0.1032462, 51.2245438, -0.1032462, 51.2245438 ], "geometry": { "type": "Point", "coordinates": [ -0.1032462, 51.2245438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31499372" }, "bbox": [ -0.1117609, 51.2313677, -0.1117609, 51.2313677 ], "geometry": { "type": "Point", "coordinates": [ -0.1117609, 51.2313677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31498357" }, "bbox": [ -0.1132587, 51.2298239, -0.1132587, 51.2298239 ], "geometry": { "type": "Point", "coordinates": [ -0.1132587, 51.2298239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31499579" }, "bbox": [ -0.1115465, 51.2320602, -0.1115465, 51.2320602 ], "geometry": { "type": "Point", "coordinates": [ -0.1115465, 51.2320602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31498204" }, "bbox": [ -0.1128869, 51.2253447, -0.1128869, 51.2253447 ], "geometry": { "type": "Point", "coordinates": [ -0.1128869, 51.2253447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369642" }, "bbox": [ -0.5587812, 51.1183958, -0.5587812, 51.1183958 ], "geometry": { "type": "Point", "coordinates": [ -0.5587812, 51.1183958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12404035" }, "bbox": [ -0.394272, 51.1514033, -0.394272, 51.1514033 ], "geometry": { "type": "Point", "coordinates": [ -0.394272, 51.1514033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02477280" }, "bbox": [ -0.530405, 51.2201406, -0.530405, 51.2201406 ], "geometry": { "type": "Point", "coordinates": [ -0.530405, 51.2201406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02477480" }, "bbox": [ -0.5300524, 51.2202463, -0.5300524, 51.2202463 ], "geometry": { "type": "Point", "coordinates": [ -0.5300524, 51.2202463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33447897" }, "bbox": [ -0.0866938, 51.1883094, -0.0866938, 51.1883094 ], "geometry": { "type": "Point", "coordinates": [ -0.0866938, 51.1883094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33448596" }, "bbox": [ -0.0859958, 51.18825, -0.0859958, 51.18825 ], "geometry": { "type": "Point", "coordinates": [ -0.0859958, 51.18825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33440977" }, "bbox": [ -0.0943686, 51.1865447, -0.0943686, 51.1865447 ], "geometry": { "type": "Point", "coordinates": [ -0.0943686, 51.1865447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34452224" }, "bbox": [ -0.0808531, 51.1907358, -0.0808531, 51.1907358 ], "geometry": { "type": "Point", "coordinates": [ -0.0808531, 51.1907358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34451138" }, "bbox": [ -0.081128, 51.1919248, -0.081128, 51.1919248 ], "geometry": { "type": "Point", "coordinates": [ -0.081128, 51.1919248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34452136" }, "bbox": [ -0.0808191, 51.1917833, -0.0808191, 51.1917833 ], "geometry": { "type": "Point", "coordinates": [ -0.0808191, 51.1917833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34453052" }, "bbox": [ -0.0795682, 51.1933504, -0.0795682, 51.1933504 ], "geometry": { "type": "Point", "coordinates": [ -0.0795682, 51.1933504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40403061" }, "bbox": [ 0.0044138, 51.1476886, 0.0044138, 51.1476886 ], "geometry": { "type": "Point", "coordinates": [ 0.0044138, 51.1476886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40402667" }, "bbox": [ 0.004096, 51.1480709, 0.004096, 51.1480709 ], "geometry": { "type": "Point", "coordinates": [ 0.004096, 51.1480709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40402470" }, "bbox": [ 0.0037526, 51.1485484, 0.0037526, 51.1485484 ], "geometry": { "type": "Point", "coordinates": [ 0.0037526, 51.1485484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32429689" }, "bbox": [ -0.0995327, 51.1698867, -0.0995327, 51.1698867 ], "geometry": { "type": "Point", "coordinates": [ -0.0995327, 51.1698867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32427584" }, "bbox": [ -0.1025056, 51.1694385, -0.1025056, 51.1694385 ], "geometry": { "type": "Point", "coordinates": [ -0.1025056, 51.1694385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31411861" }, "bbox": [ -0.1254999, 51.1586793, -0.1254999, 51.1586793 ], "geometry": { "type": "Point", "coordinates": [ -0.1254999, 51.1586793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43402321" }, "bbox": [ 0.046705, 51.1432771, 0.046705, 51.1432771 ], "geometry": { "type": "Point", "coordinates": [ 0.046705, 51.1432771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42409915" }, "bbox": [ 0.0427753, 51.1428585, 0.0427753, 51.1428585 ], "geometry": { "type": "Point", "coordinates": [ 0.0427753, 51.1428585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33405974" }, "bbox": [ -0.0914883, 51.150363, -0.0914883, 51.150363 ], "geometry": { "type": "Point", "coordinates": [ -0.0914883, 51.150363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33407569" }, "bbox": [ -0.0891446, 51.1498328, -0.0891446, 51.1498328 ], "geometry": { "type": "Point", "coordinates": [ -0.0891446, 51.1498328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37506614" }, "bbox": [ -0.0295239, 51.233918, -0.0295239, 51.233918 ], "geometry": { "type": "Point", "coordinates": [ -0.0295239, 51.233918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33429940" }, "bbox": [ -0.0848926, 51.1651041, -0.0848926, 51.1651041 ], "geometry": { "type": "Point", "coordinates": [ -0.0848926, 51.1651041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33429959" }, "bbox": [ -0.0856878, 51.166531, -0.0856878, 51.166531 ], "geometry": { "type": "Point", "coordinates": [ -0.0856878, 51.166531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33418865" }, "bbox": [ -0.0867701, 51.1593196, -0.0867701, 51.1593196 ], "geometry": { "type": "Point", "coordinates": [ -0.0867701, 51.1593196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34420501" }, "bbox": [ -0.0843711, 51.161506, -0.0843711, 51.161506 ], "geometry": { "type": "Point", "coordinates": [ -0.0843711, 51.161506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34420824" }, "bbox": [ -0.0837747, 51.1637564, -0.0837747, 51.1637564 ], "geometry": { "type": "Point", "coordinates": [ -0.0837747, 51.1637564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40472817" }, "bbox": [ 0.0067302, 51.2063657, 0.0067302, 51.2063657 ], "geometry": { "type": "Point", "coordinates": [ 0.0067302, 51.2063657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39486698" }, "bbox": [ -0.0013453, 51.2228284, -0.0013453, 51.2228284 ], "geometry": { "type": "Point", "coordinates": [ -0.0013453, 51.2228284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39497404" }, "bbox": [ -0.0004193, 51.2236065, -0.0004193, 51.2236065 ], "geometry": { "type": "Point", "coordinates": [ -0.0004193, 51.2236065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351705" }, "bbox": [ -0.6138235, 51.106245, -0.6138235, 51.106245 ], "geometry": { "type": "Point", "coordinates": [ -0.6138235, 51.106245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363372" }, "bbox": [ -0.5964832, 51.1214452, -0.5964832, 51.1214452 ], "geometry": { "type": "Point", "coordinates": [ -0.5964832, 51.1214452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07523362" }, "bbox": [ -0.4630877, 51.2626882, -0.4630877, 51.2626882 ], "geometry": { "type": "Point", "coordinates": [ -0.4630877, 51.2626882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39412419" }, "bbox": [ -0.0103417, 51.1530226, -0.0103417, 51.1530226 ], "geometry": { "type": "Point", "coordinates": [ -0.0103417, 51.1530226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39412620" }, "bbox": [ -0.0102334, 51.1532937, -0.0102334, 51.1532937 ], "geometry": { "type": "Point", "coordinates": [ -0.0102334, 51.1532937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39412416" }, "bbox": [ -0.0104018, 51.1527939, -0.0104018, 51.1527939 ], "geometry": { "type": "Point", "coordinates": [ -0.0104018, 51.1527939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95343919" }, "bbox": [ -0.6386825, 51.0990434, -0.6386825, 51.0990434 ], "geometry": { "type": "Point", "coordinates": [ -0.6386825, 51.0990434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95342921" }, "bbox": [ -0.6400117, 51.0994426, -0.6400117, 51.0994426 ], "geometry": { "type": "Point", "coordinates": [ -0.6400117, 51.0994426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96342057" }, "bbox": [ -0.6273549, 51.1024826, -0.6273549, 51.1024826 ], "geometry": { "type": "Point", "coordinates": [ -0.6273549, 51.1024826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01658160" }, "bbox": [ -0.5382459, 51.3806948, -0.5382459, 51.3806948 ], "geometry": { "type": "Point", "coordinates": [ -0.5382459, 51.3806948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96612432" }, "bbox": [ -0.6194819, 51.3428886, -0.6194819, 51.3428886 ], "geometry": { "type": "Point", "coordinates": [ -0.6194819, 51.3428886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96612248" }, "bbox": [ -0.6197373, 51.3443402, -0.6197373, 51.3443402 ], "geometry": { "type": "Point", "coordinates": [ -0.6197373, 51.3443402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96611337" }, "bbox": [ -0.6210004, 51.3433306, -0.6210004, 51.3433306 ], "geometry": { "type": "Point", "coordinates": [ -0.6210004, 51.3433306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96611541" }, "bbox": [ -0.6207441, 51.3436919, -0.6207441, 51.3436919 ], "geometry": { "type": "Point", "coordinates": [ -0.6207441, 51.3436919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17434733" }, "bbox": [ -0.3209371, 51.1772818, -0.3209371, 51.1772818 ], "geometry": { "type": "Point", "coordinates": [ -0.3209371, 51.1772818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17434639" }, "bbox": [ -0.3209082, 51.1776537, -0.3209082, 51.1776537 ], "geometry": { "type": "Point", "coordinates": [ -0.3209082, 51.1776537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17432936" }, "bbox": [ -0.3233656, 51.1774286, -0.3233656, 51.1774286 ], "geometry": { "type": "Point", "coordinates": [ -0.3233656, 51.1774286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16382236" }, "bbox": [ -0.340326, 51.1326807, -0.340326, 51.1326807 ], "geometry": { "type": "Point", "coordinates": [ -0.340326, 51.1326807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407687" }, "bbox": [ -0.4607367, 51.1568852, -0.4607367, 51.1568852 ], "geometry": { "type": "Point", "coordinates": [ -0.4607367, 51.1568852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405581" }, "bbox": [ -0.4633622, 51.1563618, -0.4633622, 51.1563618 ], "geometry": { "type": "Point", "coordinates": [ -0.4633622, 51.1563618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07406585" }, "bbox": [ -0.46223, 51.156712, -0.46223, 51.156712 ], "geometry": { "type": "Point", "coordinates": [ -0.46223, 51.156712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405786" }, "bbox": [ -0.4631035, 51.1570137, -0.4631035, 51.1570137 ], "geometry": { "type": "Point", "coordinates": [ -0.4631035, 51.1570137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07408086" }, "bbox": [ -0.4601655, 51.1567823, -0.4601655, 51.1567823 ], "geometry": { "type": "Point", "coordinates": [ -0.4601655, 51.1567823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11391895" }, "bbox": [ -0.4117258, 51.1480868, -0.4117258, 51.1480868 ], "geometry": { "type": "Point", "coordinates": [ -0.4117258, 51.1480868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11392398" }, "bbox": [ -0.4110257, 51.1483409, -0.4110257, 51.1483409 ], "geometry": { "type": "Point", "coordinates": [ -0.4110257, 51.1483409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11406405" }, "bbox": [ -0.405256, 51.1487947, -0.405256, 51.1487947 ], "geometry": { "type": "Point", "coordinates": [ -0.405256, 51.1487947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11405720" }, "bbox": [ -0.4062917, 51.1504118, -0.4062917, 51.1504118 ], "geometry": { "type": "Point", "coordinates": [ -0.4062917, 51.1504118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11404421" }, "bbox": [ -0.4080729, 51.1501874, -0.4080729, 51.1501874 ], "geometry": { "type": "Point", "coordinates": [ -0.4080729, 51.1501874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11404927" }, "bbox": [ -0.4072887, 51.1508487, -0.4072887, 51.1508487 ], "geometry": { "type": "Point", "coordinates": [ -0.4072887, 51.1508487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03701668" }, "bbox": [ -0.5175054, 51.4256325, -0.5175054, 51.4256325 ], "geometry": { "type": "Point", "coordinates": [ -0.5175054, 51.4256325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12476582" }, "bbox": [ -0.387368, 51.2194354, -0.387368, 51.2194354 ], "geometry": { "type": "Point", "coordinates": [ -0.387368, 51.2194354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97391904" }, "bbox": [ -0.6119075, 51.1423557, -0.6119075, 51.1423557 ], "geometry": { "type": "Point", "coordinates": [ -0.6119075, 51.1423557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91427344" }, "bbox": [ -0.6891462, 51.1739329, -0.6891462, 51.1739329 ], "geometry": { "type": "Point", "coordinates": [ -0.6891462, 51.1739329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96372787" }, "bbox": [ -0.6252306, 51.1321221, -0.6252306, 51.1321221 ], "geometry": { "type": "Point", "coordinates": [ -0.6252306, 51.1321221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96372760" }, "bbox": [ -0.6255657, 51.1296399, -0.6255657, 51.1296399 ], "geometry": { "type": "Point", "coordinates": [ -0.6255657, 51.1296399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93376070" }, "bbox": [ -0.6638728, 51.1305935, -0.6638728, 51.1305935 ], "geometry": { "type": "Point", "coordinates": [ -0.6638728, 51.1305935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93372459" }, "bbox": [ -0.6689814, 51.1299348, -0.6689814, 51.1299348 ], "geometry": { "type": "Point", "coordinates": [ -0.6689814, 51.1299348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93371869" }, "bbox": [ -0.6708383, 51.1306652, -0.6708383, 51.1306652 ], "geometry": { "type": "Point", "coordinates": [ -0.6708383, 51.1306652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93370944" }, "bbox": [ -0.6705222, 51.1289124, -0.6705222, 51.1289124 ], "geometry": { "type": "Point", "coordinates": [ -0.6705222, 51.1289124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93364467" }, "bbox": [ -0.666163, 51.1216315, -0.666163, 51.1216315 ], "geometry": { "type": "Point", "coordinates": [ -0.666163, 51.1216315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93365584" }, "bbox": [ -0.6647048, 51.1235855, -0.6647048, 51.1235855 ], "geometry": { "type": "Point", "coordinates": [ -0.6647048, 51.1235855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93360672" }, "bbox": [ -0.6716195, 51.1222485, -0.6716195, 51.1222485 ], "geometry": { "type": "Point", "coordinates": [ -0.6716195, 51.1222485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43404378" }, "bbox": [ 0.0493762, 51.1483376, 0.0493762, 51.1483376 ], "geometry": { "type": "Point", "coordinates": [ 0.0493762, 51.1483376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19551878" }, "bbox": [ -0.2923005, 51.2888746, -0.2923005, 51.2888746 ], "geometry": { "type": "Point", "coordinates": [ -0.2923005, 51.2888746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19553698" }, "bbox": [ -0.2887183, 51.2905374, -0.2887183, 51.2905374 ], "geometry": { "type": "Point", "coordinates": [ -0.2887183, 51.2905374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95560849" }, "bbox": [ -0.638115, 51.2995744, -0.638115, 51.2995744 ], "geometry": { "type": "Point", "coordinates": [ -0.638115, 51.2995744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95561133" }, "bbox": [ -0.6371289, 51.2983752, -0.6371289, 51.2983752 ], "geometry": { "type": "Point", "coordinates": [ -0.6371289, 51.2983752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95553596" }, "bbox": [ -0.6337557, 51.2954217, -0.6337557, 51.2954217 ], "geometry": { "type": "Point", "coordinates": [ -0.6337557, 51.2954217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97322768" }, "bbox": [ -0.6127818, 51.0853451, -0.6127818, 51.0853451 ], "geometry": { "type": "Point", "coordinates": [ -0.6127818, 51.0853451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97322868" }, "bbox": [ -0.6126433, 51.0851008, -0.6126433, 51.0851008 ], "geometry": { "type": "Point", "coordinates": [ -0.6126433, 51.0851008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97322261" }, "bbox": [ -0.6133294, 51.0846146, -0.6133294, 51.0846146 ], "geometry": { "type": "Point", "coordinates": [ -0.6133294, 51.0846146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323654" }, "bbox": [ -0.6113863, 51.0839456, -0.6113863, 51.0839456 ], "geometry": { "type": "Point", "coordinates": [ -0.6113863, 51.0839456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97322976" }, "bbox": [ -0.6123785, 51.0862954, -0.6123785, 51.0862954 ], "geometry": { "type": "Point", "coordinates": [ -0.6123785, 51.0862954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323093" }, "bbox": [ -0.6123522, 51.0873775, -0.6123522, 51.0873775 ], "geometry": { "type": "Point", "coordinates": [ -0.6123522, 51.0873775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97324392" }, "bbox": [ -0.6103254, 51.0874641, -0.6103254, 51.0874641 ], "geometry": { "type": "Point", "coordinates": [ -0.6103254, 51.0874641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323699" }, "bbox": [ -0.6112174, 51.0880458, -0.6112174, 51.0880458 ], "geometry": { "type": "Point", "coordinates": [ -0.6112174, 51.0880458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323598" }, "bbox": [ -0.6112765, 51.0877405, -0.6112765, 51.0877405 ], "geometry": { "type": "Point", "coordinates": [ -0.6112765, 51.0877405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97322761" }, "bbox": [ -0.612617, 51.0846719, -0.612617, 51.0846719 ], "geometry": { "type": "Point", "coordinates": [ -0.612617, 51.0846719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97322368" }, "bbox": [ -0.6135403, 51.0854357, -0.6135403, 51.0854357 ], "geometry": { "type": "Point", "coordinates": [ -0.6135403, 51.0854357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323881" }, "bbox": [ -0.6110476, 51.0865227, -0.6110476, 51.0865227 ], "geometry": { "type": "Point", "coordinates": [ -0.6110476, 51.0865227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97333606" }, "bbox": [ -0.6112389, 51.088561, -0.6112389, 51.088561 ], "geometry": { "type": "Point", "coordinates": [ -0.6112389, 51.088561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97333704" }, "bbox": [ -0.6109532, 51.0884517, -0.6109532, 51.0884517 ], "geometry": { "type": "Point", "coordinates": [ -0.6109532, 51.0884517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97334003" }, "bbox": [ -0.6106633, 51.0883364, -0.6106633, 51.0883364 ], "geometry": { "type": "Point", "coordinates": [ -0.6106633, 51.0883364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97333802" }, "bbox": [ -0.6109923, 51.0884971, -0.6109923, 51.0884971 ], "geometry": { "type": "Point", "coordinates": [ -0.6109923, 51.0884971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97334202" }, "bbox": [ -0.6103659, 51.088216, -0.6103659, 51.088216 ], "geometry": { "type": "Point", "coordinates": [ -0.6103659, 51.088216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97331314" }, "bbox": [ -0.6143756, 51.0894148, -0.6143756, 51.0894148 ], "geometry": { "type": "Point", "coordinates": [ -0.6143756, 51.0894148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97331221" }, "bbox": [ -0.6143636, 51.09005, -0.6143636, 51.09005 ], "geometry": { "type": "Point", "coordinates": [ -0.6143636, 51.09005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97330500" }, "bbox": [ -0.61528, 51.0878907, -0.61528, 51.0878907 ], "geometry": { "type": "Point", "coordinates": [ -0.61528, 51.0878907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97331701" }, "bbox": [ -0.6139294, 51.088217, -0.6139294, 51.088217 ], "geometry": { "type": "Point", "coordinates": [ -0.6139294, 51.088217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97331016" }, "bbox": [ -0.6148727, 51.089586, -0.6148727, 51.089586 ], "geometry": { "type": "Point", "coordinates": [ -0.6148727, 51.089586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97333407" }, "bbox": [ -0.6114807, 51.0886764, -0.6114807, 51.0886764 ], "geometry": { "type": "Point", "coordinates": [ -0.6114807, 51.0886764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37414062" }, "bbox": [ -0.036629, 51.1573622, -0.036629, 51.1573622 ], "geometry": { "type": "Point", "coordinates": [ -0.036629, 51.1573622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38421610" }, "bbox": [ -0.0255492, 51.1615969, -0.0255492, 51.1615969 ], "geometry": { "type": "Point", "coordinates": [ -0.0255492, 51.1615969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11612118" }, "bbox": [ -0.4050662, 51.339145, -0.4050662, 51.339145 ], "geometry": { "type": "Point", "coordinates": [ -0.4050662, 51.339145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11613937" }, "bbox": [ -0.4032782, 51.3408775, -0.4032782, 51.3408775 ], "geometry": { "type": "Point", "coordinates": [ -0.4032782, 51.3408775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10619205" }, "bbox": [ -0.4084696, 51.3387379, -0.4084696, 51.3387379 ], "geometry": { "type": "Point", "coordinates": [ -0.4084696, 51.3387379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99383852" }, "bbox": [ -0.5807708, 51.137046, -0.5807708, 51.137046 ], "geometry": { "type": "Point", "coordinates": [ -0.5807708, 51.137046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99382765" }, "bbox": [ -0.5824616, 51.1385865, -0.5824616, 51.1385865 ], "geometry": { "type": "Point", "coordinates": [ -0.5824616, 51.1385865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12486418" }, "bbox": [ -0.3883864, 51.2216834, -0.3883864, 51.2216834 ], "geometry": { "type": "Point", "coordinates": [ -0.3883864, 51.2216834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00476877" }, "bbox": [ -0.560576, 51.2203468, -0.560576, 51.2203468 ], "geometry": { "type": "Point", "coordinates": [ -0.560576, 51.2203468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93528405" }, "bbox": [ -0.6565858, 51.2596953, -0.6565858, 51.2596953 ], "geometry": { "type": "Point", "coordinates": [ -0.6565858, 51.2596953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11426664" }, "bbox": [ -0.4040975, 51.1724788, -0.4040975, 51.1724788 ], "geometry": { "type": "Point", "coordinates": [ -0.4040975, 51.1724788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92529321" }, "bbox": [ -0.6689594, 51.2619388, -0.6689594, 51.2619388 ], "geometry": { "type": "Point", "coordinates": [ -0.6689594, 51.2619388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11469696" }, "bbox": [ -0.3986786, 51.2110079, -0.3986786, 51.2110079 ], "geometry": { "type": "Point", "coordinates": [ -0.3986786, 51.2110079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30454896" }, "bbox": [ -0.133733, 51.197954, -0.133733, 51.197954 ], "geometry": { "type": "Point", "coordinates": [ -0.133733, 51.197954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93528595" }, "bbox": [ -0.655152, 51.2678853, -0.655152, 51.2678853 ], "geometry": { "type": "Point", "coordinates": [ -0.655152, 51.2678853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93529996" }, "bbox": [ -0.6542354, 51.2679345, -0.6542354, 51.2679345 ], "geometry": { "type": "Point", "coordinates": [ -0.6542354, 51.2679345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93539610" }, "bbox": [ -0.6543416, 51.2694203, -0.6543416, 51.2694203 ], "geometry": { "type": "Point", "coordinates": [ -0.6543416, 51.2694203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93539731" }, "bbox": [ -0.6553593, 51.2712993, -0.6553593, 51.2712993 ], "geometry": { "type": "Point", "coordinates": [ -0.6553593, 51.2712993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99382716" }, "bbox": [ -0.5826507, 51.1341696, -0.5826507, 51.1341696 ], "geometry": { "type": "Point", "coordinates": [ -0.5826507, 51.1341696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15399307" }, "bbox": [ -0.3442718, 51.1389654, -0.3442718, 51.1389654 ], "geometry": { "type": "Point", "coordinates": [ -0.3442718, 51.1389654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16393218" }, "bbox": [ -0.3385805, 51.1400371, -0.3385805, 51.1400371 ], "geometry": { "type": "Point", "coordinates": [ -0.3385805, 51.1400371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16392531" }, "bbox": [ -0.3396767, 51.1413879, -0.3396767, 51.1413879 ], "geometry": { "type": "Point", "coordinates": [ -0.3396767, 51.1413879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16392447" }, "bbox": [ -0.3396095, 51.1427071, -0.3396095, 51.1427071 ], "geometry": { "type": "Point", "coordinates": [ -0.3396095, 51.1427071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19396173" }, "bbox": [ -0.2914928, 51.1443729, -0.2914928, 51.1443729 ], "geometry": { "type": "Point", "coordinates": [ -0.2914928, 51.1443729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388982" }, "bbox": [ -0.3021656, 51.1363343, -0.3021656, 51.1363343 ], "geometry": { "type": "Point", "coordinates": [ -0.3021656, 51.1363343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99387905" }, "bbox": [ -0.5745224, 51.1330611, -0.5745224, 51.1330611 ], "geometry": { "type": "Point", "coordinates": [ -0.5745224, 51.1330611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99384802" }, "bbox": [ -0.5800864, 51.1327033, -0.5800864, 51.1327033 ], "geometry": { "type": "Point", "coordinates": [ -0.5800864, 51.1327033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99371051" }, "bbox": [ -0.58466, 51.1284821, -0.58466, 51.1284821 ], "geometry": { "type": "Point", "coordinates": [ -0.58466, 51.1284821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04520106" }, "bbox": [ -0.5105759, 51.2581295, -0.5105759, 51.2581295 ], "geometry": { "type": "Point", "coordinates": [ -0.5105759, 51.2581295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89495533" }, "bbox": [ -0.7186362, 51.2360898, -0.7186362, 51.2360898 ], "geometry": { "type": "Point", "coordinates": [ -0.7186362, 51.2360898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06561191" }, "bbox": [ -0.4788174, 51.3012136, -0.4788174, 51.3012136 ], "geometry": { "type": "Point", "coordinates": [ -0.4788174, 51.3012136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06562238" }, "bbox": [ -0.477638, 51.2967832, -0.477638, 51.2967832 ], "geometry": { "type": "Point", "coordinates": [ -0.477638, 51.2967832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86450730" }, "bbox": [ -0.7691868, 51.200551, -0.7691868, 51.200551 ], "geometry": { "type": "Point", "coordinates": [ -0.7691868, 51.200551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42493488" }, "bbox": [ 0.0367817, 51.2309768, 0.0367817, 51.2309768 ], "geometry": { "type": "Point", "coordinates": [ 0.0367817, 51.2309768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01466178" }, "bbox": [ -0.5466018, 51.2116286, -0.5466018, 51.2116286 ], "geometry": { "type": "Point", "coordinates": [ -0.5466018, 51.2116286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29434212" }, "bbox": [ -0.1502069, 51.1725994, -0.1502069, 51.1725994 ], "geometry": { "type": "Point", "coordinates": [ -0.1502069, 51.1725994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41419976" }, "bbox": [ 0.0291946, 51.1575387, 0.0291946, 51.1575387 ], "geometry": { "type": "Point", "coordinates": [ 0.0291946, 51.1575387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41418466" }, "bbox": [ 0.0269376, 51.156648, 0.0269376, 51.156648 ], "geometry": { "type": "Point", "coordinates": [ 0.0269376, 51.156648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41418450" }, "bbox": [ 0.0269177, 51.1553036, 0.0269177, 51.1553036 ], "geometry": { "type": "Point", "coordinates": [ 0.0269177, 51.1553036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42410153" }, "bbox": [ 0.0291199, 51.1554753, 0.0291199, 51.1554753 ], "geometry": { "type": "Point", "coordinates": [ 0.0291199, 51.1554753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35433875" }, "bbox": [ -0.0647227, 51.1769703, -0.0647227, 51.1769703 ], "geometry": { "type": "Point", "coordinates": [ -0.0647227, 51.1769703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93602779" }, "bbox": [ -0.66289, 51.3386189, -0.66289, 51.3386189 ], "geometry": { "type": "Point", "coordinates": [ -0.66289, 51.3386189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94601393" }, "bbox": [ -0.6497994, 51.3398021, -0.6497994, 51.3398021 ], "geometry": { "type": "Point", "coordinates": [ -0.6497994, 51.3398021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94613504" }, "bbox": [ -0.6469095, 51.34063, -0.6469095, 51.34063 ], "geometry": { "type": "Point", "coordinates": [ -0.6469095, 51.34063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94613002" }, "bbox": [ -0.6476418, 51.3404798, -0.6476418, 51.3404798 ], "geometry": { "type": "Point", "coordinates": [ -0.6476418, 51.3404798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94611200" }, "bbox": [ -0.6502803, 51.3403285, -0.6502803, 51.3403285 ], "geometry": { "type": "Point", "coordinates": [ -0.6502803, 51.3403285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20483064" }, "bbox": [ -0.2786301, 51.224375, -0.2786301, 51.224375 ], "geometry": { "type": "Point", "coordinates": [ -0.2786301, 51.224375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27445392" }, "bbox": [ -0.1762689, 51.1894004, -0.1762689, 51.1894004 ], "geometry": { "type": "Point", "coordinates": [ -0.1762689, 51.1894004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19482908" }, "bbox": [ -0.293191, 51.2195201, -0.293191, 51.2195201 ], "geometry": { "type": "Point", "coordinates": [ -0.293191, 51.2195201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19482311" }, "bbox": [ -0.2942399, 51.2198334, -0.2942399, 51.2198334 ], "geometry": { "type": "Point", "coordinates": [ -0.2942399, 51.2198334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18469740" }, "bbox": [ -0.2982823, 51.2044886, -0.2982823, 51.2044886 ], "geometry": { "type": "Point", "coordinates": [ -0.2982823, 51.2044886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37457808" }, "bbox": [ -0.0296715, 51.1883132, -0.0296715, 51.1883132 ], "geometry": { "type": "Point", "coordinates": [ -0.0296715, 51.1883132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98473540" }, "bbox": [ -0.5930078, 51.2174554, -0.5930078, 51.2174554 ], "geometry": { "type": "Point", "coordinates": [ -0.5930078, 51.2174554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98478352" }, "bbox": [ -0.586092, 51.2185823, -0.586092, 51.2185823 ], "geometry": { "type": "Point", "coordinates": [ -0.586092, 51.2185823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98478140" }, "bbox": [ -0.5863768, 51.2173359, -0.5863768, 51.2173359 ], "geometry": { "type": "Point", "coordinates": [ -0.5863768, 51.2173359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98476534" }, "bbox": [ -0.5887596, 51.2167459, -0.5887596, 51.2167459 ], "geometry": { "type": "Point", "coordinates": [ -0.5887596, 51.2167459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95474863" }, "bbox": [ -0.6346524, 51.220081, -0.6346524, 51.220081 ], "geometry": { "type": "Point", "coordinates": [ -0.6346524, 51.220081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98462565" }, "bbox": [ -0.5948181, 51.2109867, -0.5948181, 51.2109867 ], "geometry": { "type": "Point", "coordinates": [ -0.5948181, 51.2109867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98463554" }, "bbox": [ -0.59362, 51.2098152, -0.59362, 51.2098152 ], "geometry": { "type": "Point", "coordinates": [ -0.59362, 51.2098152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95479932" }, "bbox": [ -0.6269642, 51.2170935, -0.6269642, 51.2170935 ], "geometry": { "type": "Point", "coordinates": [ -0.6269642, 51.2170935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96473408" }, "bbox": [ -0.6221628, 51.2148478, -0.6221628, 51.2148478 ], "geometry": { "type": "Point", "coordinates": [ -0.6221628, 51.2148478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95476165" }, "bbox": [ -0.632064, 51.2198774, -0.632064, 51.2198774 ], "geometry": { "type": "Point", "coordinates": [ -0.632064, 51.2198774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96473150" }, "bbox": [ -0.6228526, 51.2186057, -0.6228526, 51.2186057 ], "geometry": { "type": "Point", "coordinates": [ -0.6228526, 51.2186057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96473917" }, "bbox": [ -0.6212738, 51.2155848, -0.6212738, 51.2155848 ], "geometry": { "type": "Point", "coordinates": [ -0.6212738, 51.2155848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96478590" }, "bbox": [ -0.6147144, 51.2221832, -0.6147144, 51.2221832 ], "geometry": { "type": "Point", "coordinates": [ -0.6147144, 51.2221832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97480101" }, "bbox": [ -0.6125573, 51.2233476, -0.6125573, 51.2233476 ], "geometry": { "type": "Point", "coordinates": [ -0.6125573, 51.2233476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29442175" }, "bbox": [ -0.1524367, 51.1873868, -0.1524367, 51.1873868 ], "geometry": { "type": "Point", "coordinates": [ -0.1524367, 51.1873868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29441596" }, "bbox": [ -0.1533176, 51.1893737, -0.1533176, 51.1893737 ], "geometry": { "type": "Point", "coordinates": [ -0.1533176, 51.1893737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29448153" }, "bbox": [ -0.1439285, 51.1853215, -0.1439285, 51.1853215 ], "geometry": { "type": "Point", "coordinates": [ -0.1439285, 51.1853215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447654" }, "bbox": [ -0.1303084, 51.1852036, -0.1303084, 51.1852036 ], "geometry": { "type": "Point", "coordinates": [ -0.1303084, 51.1852036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447991" }, "bbox": [ -0.1305904, 51.1885082, -0.1305904, 51.1885082 ], "geometry": { "type": "Point", "coordinates": [ -0.1305904, 51.1885082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447388" }, "bbox": [ -0.130653, 51.1882181, -0.130653, 51.1882181 ], "geometry": { "type": "Point", "coordinates": [ -0.130653, 51.1882181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30444274" }, "bbox": [ -0.1350953, 51.1869659, -0.1350953, 51.1869659 ], "geometry": { "type": "Point", "coordinates": [ -0.1350953, 51.1869659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30443840" }, "bbox": [ -0.1359342, 51.184128, -0.1359342, 51.184128 ], "geometry": { "type": "Point", "coordinates": [ -0.1359342, 51.184128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30445065" }, "bbox": [ -0.1339416, 51.1861176, -0.1339416, 51.1861176 ], "geometry": { "type": "Point", "coordinates": [ -0.1339416, 51.1861176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30445462" }, "bbox": [ -0.1331157, 51.1857255, -0.1331157, 51.1857255 ], "geometry": { "type": "Point", "coordinates": [ -0.1331157, 51.1857255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446762" }, "bbox": [ -0.1316034, 51.1859328, -0.1316034, 51.1859328 ], "geometry": { "type": "Point", "coordinates": [ -0.1316034, 51.1859328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30461102" }, "bbox": [ -0.1391155, 51.1986571, -0.1391155, 51.1986571 ], "geometry": { "type": "Point", "coordinates": [ -0.1391155, 51.1986571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30459233" }, "bbox": [ -0.1278052, 51.1920832, -0.1278052, 51.1920832 ], "geometry": { "type": "Point", "coordinates": [ -0.1278052, 51.1920832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30459341" }, "bbox": [ -0.127634, 51.192943, -0.127634, 51.192943 ], "geometry": { "type": "Point", "coordinates": [ -0.127634, 51.192943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30456830" }, "bbox": [ -0.1310963, 51.1920034, -0.1310963, 51.1920034 ], "geometry": { "type": "Point", "coordinates": [ -0.1310963, 51.1920034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30458819" }, "bbox": [ -0.1285861, 51.1909635, -0.1285861, 51.1909635 ], "geometry": { "type": "Point", "coordinates": [ -0.1285861, 51.1909635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30454021" }, "bbox": [ -0.1352315, 51.1912787, -0.1352315, 51.1912787 ], "geometry": { "type": "Point", "coordinates": [ -0.1352315, 51.1912787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41455590" }, "bbox": [ 0.024803, 51.1947259, 0.024803, 51.1947259 ], "geometry": { "type": "Point", "coordinates": [ 0.024803, 51.1947259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41456878" }, "bbox": [ 0.0264187, 51.1937512, 0.0264187, 51.1937512 ], "geometry": { "type": "Point", "coordinates": [ 0.0264187, 51.1937512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458269" }, "bbox": [ -0.8442927, 51.2045203, -0.8442927, 51.2045203 ], "geometry": { "type": "Point", "coordinates": [ -0.8442927, 51.2045203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458465" }, "bbox": [ -0.8443217, 51.2044324, -0.8443217, 51.2044324 ], "geometry": { "type": "Point", "coordinates": [ -0.8443217, 51.2044324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80459860" }, "bbox": [ -0.8420279, 51.2041656, -0.8420279, 51.2041656 ], "geometry": { "type": "Point", "coordinates": [ -0.8420279, 51.2041656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80459546" }, "bbox": [ -0.843268, 51.2031866, -0.843268, 51.2031866 ], "geometry": { "type": "Point", "coordinates": [ -0.843268, 51.2031866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458365" }, "bbox": [ -0.8444979, 51.204468, -0.8444979, 51.204468 ], "geometry": { "type": "Point", "coordinates": [ -0.8444979, 51.204468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80459125" }, "bbox": [ -0.84271, 51.2010465, -0.84271, 51.2010465 ], "geometry": { "type": "Point", "coordinates": [ -0.84271, 51.2010465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458871" }, "bbox": [ -0.8435419, 51.2049877, -0.8435419, 51.2049877 ], "geometry": { "type": "Point", "coordinates": [ -0.8435419, 51.2049877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458576" }, "bbox": [ -0.8438271, 51.2054296, -0.8438271, 51.2054296 ], "geometry": { "type": "Point", "coordinates": [ -0.8438271, 51.2054296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458282" }, "bbox": [ -0.8440878, 51.205943, -0.8440878, 51.205943 ], "geometry": { "type": "Point", "coordinates": [ -0.8440878, 51.205943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80457978" }, "bbox": [ -0.844862, 51.2056238, -0.844862, 51.2056238 ], "geometry": { "type": "Point", "coordinates": [ -0.844862, 51.2056238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80458844" }, "bbox": [ -0.8435337, 51.2024798, -0.8435337, 51.2024798 ], "geometry": { "type": "Point", "coordinates": [ -0.8435337, 51.2024798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80457960" }, "bbox": [ -0.8445805, 51.2038258, -0.8445805, 51.2038258 ], "geometry": { "type": "Point", "coordinates": [ -0.8445805, 51.2038258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451488" }, "bbox": [ -0.8398521, 51.2063139, -0.8398521, 51.2063139 ], "geometry": { "type": "Point", "coordinates": [ -0.8398521, 51.2063139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81450682" }, "bbox": [ -0.8410163, 51.2058265, -0.8410163, 51.2058265 ], "geometry": { "type": "Point", "coordinates": [ -0.8410163, 51.2058265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451881" }, "bbox": [ -0.8393296, 51.2056915, -0.8393296, 51.2056915 ], "geometry": { "type": "Point", "coordinates": [ -0.8393296, 51.2056915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451761" }, "bbox": [ -0.8396801, 51.2041287, -0.8396801, 51.2041287 ], "geometry": { "type": "Point", "coordinates": [ -0.8396801, 51.2041287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451652" }, "bbox": [ -0.8396033, 51.203144, -0.8396033, 51.203144 ], "geometry": { "type": "Point", "coordinates": [ -0.8396033, 51.203144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81450086" }, "bbox": [ -0.8415601, 51.2063519, -0.8415601, 51.2063519 ], "geometry": { "type": "Point", "coordinates": [ -0.8415601, 51.2063519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81452270" }, "bbox": [ -0.8387348, 51.2045664, -0.8387348, 51.2045664 ], "geometry": { "type": "Point", "coordinates": [ -0.8387348, 51.2045664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451574" }, "bbox": [ -0.8396652, 51.2052131, -0.8396652, 51.2052131 ], "geometry": { "type": "Point", "coordinates": [ -0.8396652, 51.2052131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81452054" }, "bbox": [ -0.839041, 51.2033188, -0.839041, 51.2033188 ], "geometry": { "type": "Point", "coordinates": [ -0.839041, 51.2033188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81450292" }, "bbox": [ -0.8413781, 51.2069119, -0.8413781, 51.2069119 ], "geometry": { "type": "Point", "coordinates": [ -0.8413781, 51.2069119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81452144" }, "bbox": [ -0.838786, 51.2026084, -0.838786, 51.2026084 ], "geometry": { "type": "Point", "coordinates": [ -0.838786, 51.2026084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451534" }, "bbox": [ -0.8394832, 51.2016049, -0.8394832, 51.2016049 ], "geometry": { "type": "Point", "coordinates": [ -0.8394832, 51.2016049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81451242" }, "bbox": [ -0.8410591, 51.2025988, -0.8410591, 51.2025988 ], "geometry": { "type": "Point", "coordinates": [ -0.8410591, 51.2025988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09364216" }, "bbox": [ -0.438398, 51.1145115, -0.438398, 51.1145115 ], "geometry": { "type": "Point", "coordinates": [ -0.438398, 51.1145115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09367316" }, "bbox": [ -0.4337153, 51.1143089, -0.4337153, 51.1143089 ], "geometry": { "type": "Point", "coordinates": [ -0.4337153, 51.1143089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09367615" }, "bbox": [ -0.4332092, 51.1142328, -0.4332092, 51.1142328 ], "geometry": { "type": "Point", "coordinates": [ -0.4332092, 51.1142328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09366030" }, "bbox": [ -0.4347625, 51.1158204, -0.4347625, 51.1158204 ], "geometry": { "type": "Point", "coordinates": [ -0.4347625, 51.1158204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98465021" }, "bbox": [ -0.5916054, 51.2066562, -0.5916054, 51.2066562 ], "geometry": { "type": "Point", "coordinates": [ -0.5916054, 51.2066562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97476080" }, "bbox": [ -0.6034486, 51.2215735, -0.6034486, 51.2215735 ], "geometry": { "type": "Point", "coordinates": [ -0.6034486, 51.2215735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09360968" }, "bbox": [ -0.4402648, 51.1183863, -0.4402648, 51.1183863 ], "geometry": { "type": "Point", "coordinates": [ -0.4402648, 51.1183863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99336060" }, "bbox": [ -0.5791843, 51.0930281, -0.5791843, 51.0930281 ], "geometry": { "type": "Point", "coordinates": [ -0.5791843, 51.0930281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05711271" }, "bbox": [ -0.4889967, 51.4347616, -0.4889967, 51.4347616 ], "geometry": { "type": "Point", "coordinates": [ -0.4889967, 51.4347616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96476505" }, "bbox": [ -0.6175669, 51.2149309, -0.6175669, 51.2149309 ], "geometry": { "type": "Point", "coordinates": [ -0.6175669, 51.2149309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06533853" }, "bbox": [ -0.4762878, 51.2710925, -0.4762878, 51.2710925 ], "geometry": { "type": "Point", "coordinates": [ -0.4762878, 51.2710925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380117" }, "bbox": [ -0.7576068, 51.1363356, -0.7576068, 51.1363356 ], "geometry": { "type": "Point", "coordinates": [ -0.7576068, 51.1363356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529714" }, "bbox": [ -0.21042, 51.2547447, -0.21042, 51.2547447 ], "geometry": { "type": "Point", "coordinates": [ -0.21042, 51.2547447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24528717" }, "bbox": [ -0.2120352, 51.2550028, -0.2120352, 51.2550028 ], "geometry": { "type": "Point", "coordinates": [ -0.2120352, 51.2550028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529617" }, "bbox": [ -0.2107469, 51.2545986, -0.2107469, 51.2545986 ], "geometry": { "type": "Point", "coordinates": [ -0.2107469, 51.2545986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37427443" }, "bbox": [ -0.0317897, 51.1645687, -0.0317897, 51.1645687 ], "geometry": { "type": "Point", "coordinates": [ -0.0317897, 51.1645687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37428560" }, "bbox": [ -0.0301322, 51.1661449, -0.0301322, 51.1661449 ], "geometry": { "type": "Point", "coordinates": [ -0.0301322, 51.1661449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04368941" }, "bbox": [ -0.5020112, 51.1178071, -0.5020112, 51.1178071 ], "geometry": { "type": "Point", "coordinates": [ -0.5020112, 51.1178071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41461054" }, "bbox": [ 0.0183889, 51.2005953, 0.0183889, 51.2005953 ], "geometry": { "type": "Point", "coordinates": [ 0.0183889, 51.2005953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40467941" }, "bbox": [ 0.0139518, 51.199528, 0.0139518, 51.199528 ], "geometry": { "type": "Point", "coordinates": [ 0.0139518, 51.199528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40478326" }, "bbox": [ 0.0146223, 51.2071057, 0.0146223, 51.2071057 ], "geometry": { "type": "Point", "coordinates": [ 0.0146223, 51.2071057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40475002" }, "bbox": [ 0.010047, 51.2051819, 0.010047, 51.2051819 ], "geometry": { "type": "Point", "coordinates": [ 0.010047, 51.2051819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40476119" }, "bbox": [ 0.0117777, 51.2073966, 0.0117777, 51.2073966 ], "geometry": { "type": "Point", "coordinates": [ 0.0117777, 51.2073966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04370913" }, "bbox": [ -0.5141426, 51.1238708, -0.5141426, 51.1238708 ], "geometry": { "type": "Point", "coordinates": [ -0.5141426, 51.1238708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05362859" }, "bbox": [ -0.4970297, 51.1189644, -0.4970297, 51.1189644 ], "geometry": { "type": "Point", "coordinates": [ -0.4970297, 51.1189644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03369473" }, "bbox": [ -0.5162979, 51.120448, -0.5162979, 51.120448 ], "geometry": { "type": "Point", "coordinates": [ -0.5162979, 51.120448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03367464" }, "bbox": [ -0.5193251, 51.1198138, -0.5193251, 51.1198138 ], "geometry": { "type": "Point", "coordinates": [ -0.5193251, 51.1198138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03354768" }, "bbox": [ -0.5233588, 51.1111409, -0.5233588, 51.1111409 ], "geometry": { "type": "Point", "coordinates": [ -0.5233588, 51.1111409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03354690" }, "bbox": [ -0.5235482, 51.1129604, -0.5235482, 51.1129604 ], "geometry": { "type": "Point", "coordinates": [ -0.5235482, 51.1129604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03353275" }, "bbox": [ -0.5253533, 51.1117111, -0.5253533, 51.1117111 ], "geometry": { "type": "Point", "coordinates": [ -0.5253533, 51.1117111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03351759" }, "bbox": [ -0.5275377, 51.1102102, -0.5275377, 51.1102102 ], "geometry": { "type": "Point", "coordinates": [ -0.5275377, 51.1102102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43423136" }, "bbox": [ 0.0479574, 51.1628904, 0.0479574, 51.1628904 ], "geometry": { "type": "Point", "coordinates": [ 0.0479574, 51.1628904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92466476" }, "bbox": [ -0.6754, 51.2125528, -0.6754, 51.2125528 ], "geometry": { "type": "Point", "coordinates": [ -0.6754, 51.2125528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83415137" }, "bbox": [ -0.8091858, 51.1646334, -0.8091858, 51.1646334 ], "geometry": { "type": "Point", "coordinates": [ -0.8091858, 51.1646334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86382830" }, "bbox": [ -0.7680513, 51.1376164, -0.7680513, 51.1376164 ], "geometry": { "type": "Point", "coordinates": [ -0.7680513, 51.1376164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19462445" }, "bbox": [ -0.2944086, 51.2046776, -0.2944086, 51.2046776 ], "geometry": { "type": "Point", "coordinates": [ -0.2944086, 51.2046776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97465010" }, "bbox": [ -0.6055441, 51.2058529, -0.6055441, 51.2058529 ], "geometry": { "type": "Point", "coordinates": [ -0.6055441, 51.2058529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25439686" }, "bbox": [ -0.1989934, 51.1802028, -0.1989934, 51.1802028 ], "geometry": { "type": "Point", "coordinates": [ -0.1989934, 51.1802028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26431387" }, "bbox": [ -0.196623, 51.1801558, -0.196623, 51.1801558 ], "geometry": { "type": "Point", "coordinates": [ -0.196623, 51.1801558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99462086" }, "bbox": [ -0.5806289, 51.2119637, -0.5806289, 51.2119637 ], "geometry": { "type": "Point", "coordinates": [ -0.5806289, 51.2119637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99470123" }, "bbox": [ -0.5837239, 51.2159469, -0.5837239, 51.2159469 ], "geometry": { "type": "Point", "coordinates": [ -0.5837239, 51.2159469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99474135" }, "bbox": [ -0.5781266, 51.2165009, -0.5781266, 51.2165009 ], "geometry": { "type": "Point", "coordinates": [ -0.5781266, 51.2165009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97479945" }, "bbox": [ -0.598583, 51.2177812, -0.598583, 51.2177812 ], "geometry": { "type": "Point", "coordinates": [ -0.598583, 51.2177812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97473411" }, "bbox": [ -0.6075064, 51.2149337, -0.6075064, 51.2149337 ], "geometry": { "type": "Point", "coordinates": [ -0.6075064, 51.2149337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97473233" }, "bbox": [ -0.6079554, 51.2168921, -0.6079554, 51.2168921 ], "geometry": { "type": "Point", "coordinates": [ -0.6079554, 51.2168921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92333080" }, "bbox": [ -0.6836328, 51.0957243, -0.6836328, 51.0957243 ], "geometry": { "type": "Point", "coordinates": [ -0.6836328, 51.0957243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92334369" }, "bbox": [ -0.6814866, 51.095046, -0.6814866, 51.095046 ], "geometry": { "type": "Point", "coordinates": [ -0.6814866, 51.095046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92332490" }, "bbox": [ -0.6841472, 51.0970403, -0.6841472, 51.0970403 ], "geometry": { "type": "Point", "coordinates": [ -0.6841472, 51.0970403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92335599" }, "bbox": [ -0.6799365, 51.0976627, -0.6799365, 51.0976627 ], "geometry": { "type": "Point", "coordinates": [ -0.6799365, 51.0976627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92347616" }, "bbox": [ -0.6743451, 51.0983596, -0.6743451, 51.0983596 ], "geometry": { "type": "Point", "coordinates": [ -0.6743451, 51.0983596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92343301" }, "bbox": [ -0.6827278, 51.0979495, -0.6827278, 51.0979495 ], "geometry": { "type": "Point", "coordinates": [ -0.6827278, 51.0979495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92321283" }, "bbox": [ -0.6859607, 51.087416, -0.6859607, 51.087416 ], "geometry": { "type": "Point", "coordinates": [ -0.6859607, 51.087416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92321195" }, "bbox": [ -0.6864876, 51.0885421, -0.6864876, 51.0885421 ], "geometry": { "type": "Point", "coordinates": [ -0.6864876, 51.0885421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500090" }, "bbox": [ -0.3966813, 51.2463823, -0.3966813, 51.2463823 ], "geometry": { "type": "Point", "coordinates": [ -0.3966813, 51.2463823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12504090" }, "bbox": [ -0.3908854, 51.2460729, -0.3908854, 51.2460729 ], "geometry": { "type": "Point", "coordinates": [ -0.3908854, 51.2460729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93324392" }, "bbox": [ -0.6674271, 51.0879961, -0.6674271, 51.0879961 ], "geometry": { "type": "Point", "coordinates": [ -0.6674271, 51.0879961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92334550" }, "bbox": [ -0.6829984, 51.0924686, -0.6829984, 51.0924686 ], "geometry": { "type": "Point", "coordinates": [ -0.6829984, 51.0924686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92334142" }, "bbox": [ -0.6825645, 51.0922865, -0.6825645, 51.0922865 ], "geometry": { "type": "Point", "coordinates": [ -0.6825645, 51.0922865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93335062" }, "bbox": [ -0.668398, 51.0935027, -0.668398, 51.0935027 ], "geometry": { "type": "Point", "coordinates": [ -0.668398, 51.0935027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93331941" }, "bbox": [ -0.6706906, 51.0925041, -0.6706906, 51.0925041 ], "geometry": { "type": "Point", "coordinates": [ -0.6706906, 51.0925041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92324359" }, "bbox": [ -0.681558, 51.0849955, -0.681558, 51.0849955 ], "geometry": { "type": "Point", "coordinates": [ -0.681558, 51.0849955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92322783" }, "bbox": [ -0.684044, 51.0874512, -0.684044, 51.0874512 ], "geometry": { "type": "Point", "coordinates": [ -0.684044, 51.0874512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92328876" }, "bbox": [ -0.6748144, 51.0864472, -0.6748144, 51.0864472 ], "geometry": { "type": "Point", "coordinates": [ -0.6748144, 51.0864472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92334802" }, "bbox": [ -0.6809928, 51.0892041, -0.6809928, 51.0892041 ], "geometry": { "type": "Point", "coordinates": [ -0.6809928, 51.0892041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92339109" }, "bbox": [ -0.6780703, 51.0890122, -0.6780703, 51.0890122 ], "geometry": { "type": "Point", "coordinates": [ -0.6780703, 51.0890122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92334417" }, "bbox": [ -0.6810544, 51.0909289, -0.6810544, 51.0909289 ], "geometry": { "type": "Point", "coordinates": [ -0.6810544, 51.0909289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98385076" }, "bbox": [ -0.5933617, 51.138813, -0.5933617, 51.138813 ], "geometry": { "type": "Point", "coordinates": [ -0.5933617, 51.138813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26452960" }, "bbox": [ -0.1938948, 51.1957392, -0.1938948, 51.1957392 ], "geometry": { "type": "Point", "coordinates": [ -0.1938948, 51.1957392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22447666" }, "bbox": [ -0.2446774, 51.1880993, -0.2446774, 51.1880993 ], "geometry": { "type": "Point", "coordinates": [ -0.2446774, 51.1880993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23443615" }, "bbox": [ -0.2357552, 51.1832252, -0.2357552, 51.1832252 ], "geometry": { "type": "Point", "coordinates": [ -0.2357552, 51.1832252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23431498" }, "bbox": [ -0.2395465, 51.181806, -0.2395465, 51.181806 ], "geometry": { "type": "Point", "coordinates": [ -0.2395465, 51.181806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23439867" }, "bbox": [ -0.2276389, 51.1788887, -0.2276389, 51.1788887 ], "geometry": { "type": "Point", "coordinates": [ -0.2276389, 51.1788887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24441810" }, "bbox": [ -0.2247035, 51.1827218, -0.2247035, 51.1827218 ], "geometry": { "type": "Point", "coordinates": [ -0.2247035, 51.1827218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42450739" }, "bbox": [ 0.0318211, 51.19009, 0.0318211, 51.19009 ], "geometry": { "type": "Point", "coordinates": [ 0.0318211, 51.19009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38522088" }, "bbox": [ -0.0208616, 51.2583805, -0.0208616, 51.2583805 ], "geometry": { "type": "Point", "coordinates": [ -0.0208616, 51.2583805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38521882" }, "bbox": [ -0.0211412, 51.2578869, -0.0211412, 51.2578869 ], "geometry": { "type": "Point", "coordinates": [ -0.0211412, 51.2578869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38521184" }, "bbox": [ -0.0219806, 51.2579187, -0.0219806, 51.2579187 ], "geometry": { "type": "Point", "coordinates": [ -0.0219806, 51.2579187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23445353" }, "bbox": [ -0.2342104, 51.1866144, -0.2342104, 51.1866144 ], "geometry": { "type": "Point", "coordinates": [ -0.2342104, 51.1866144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41463475" }, "bbox": [ 0.0217125, 51.2023698, 0.0217125, 51.2023698 ], "geometry": { "type": "Point", "coordinates": [ 0.0217125, 51.2023698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42470715" }, "bbox": [ 0.032556, 51.2058836, 0.032556, 51.2058836 ], "geometry": { "type": "Point", "coordinates": [ 0.032556, 51.2058836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40463151" }, "bbox": [ 0.0069148, 51.2005933, 0.0069148, 51.2005933 ], "geometry": { "type": "Point", "coordinates": [ 0.0069148, 51.2005933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40465153" }, "bbox": [ 0.0097316, 51.2005932, 0.0097316, 51.2005932 ], "geometry": { "type": "Point", "coordinates": [ 0.0097316, 51.2005932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40467299" }, "bbox": [ 0.0124876, 51.2047308, 0.0124876, 51.2047308 ], "geometry": { "type": "Point", "coordinates": [ 0.0124876, 51.2047308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40477812" }, "bbox": [ 0.0136531, 51.2057617, 0.0136531, 51.2057617 ], "geometry": { "type": "Point", "coordinates": [ 0.0136531, 51.2057617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08562138" }, "bbox": [ -0.4492623, 51.2963266, -0.4492623, 51.2963266 ], "geometry": { "type": "Point", "coordinates": [ -0.4492623, 51.2963266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472340" }, "bbox": [ 0.0199696, 51.2082409, 0.0199696, 51.2082409 ], "geometry": { "type": "Point", "coordinates": [ 0.0199696, 51.2082409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41470539" }, "bbox": [ 0.0178496, 51.2076399, 0.0178496, 51.2076399 ], "geometry": { "type": "Point", "coordinates": [ 0.0178496, 51.2076399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40478043" }, "bbox": [ 0.0142835, 51.2087956, 0.0142835, 51.2087956 ], "geometry": { "type": "Point", "coordinates": [ 0.0142835, 51.2087956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41466140" }, "bbox": [ 0.0251997, 51.1988629, 0.0251997, 51.1988629 ], "geometry": { "type": "Point", "coordinates": [ 0.0251997, 51.1988629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40464932" }, "bbox": [ 0.0094315, 51.1989578, 0.0094315, 51.1989578 ], "geometry": { "type": "Point", "coordinates": [ 0.0094315, 51.1989578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40464972" }, "bbox": [ 0.0097245, 51.2023886, 0.0097245, 51.2023886 ], "geometry": { "type": "Point", "coordinates": [ 0.0097245, 51.2023886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97347240" }, "bbox": [ -0.6054915, 51.1004443, -0.6054915, 51.1004443 ], "geometry": { "type": "Point", "coordinates": [ -0.6054915, 51.1004443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97345147" }, "bbox": [ -0.6089073, 51.1010765, -0.6089073, 51.1010765 ], "geometry": { "type": "Point", "coordinates": [ -0.6089073, 51.1010765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97344330" }, "bbox": [ -0.6097783, 51.0997504, -0.6097783, 51.0997504 ], "geometry": { "type": "Point", "coordinates": [ -0.6097783, 51.0997504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21416388" }, "bbox": [ -0.2617137, 51.1632067, -0.2617137, 51.1632067 ], "geometry": { "type": "Point", "coordinates": [ -0.2617137, 51.1632067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21427407" }, "bbox": [ -0.260068, 51.1649151, -0.260068, 51.1649151 ], "geometry": { "type": "Point", "coordinates": [ -0.260068, 51.1649151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97335852" }, "bbox": [ -0.609634, 51.0932702, -0.609634, 51.0932702 ], "geometry": { "type": "Point", "coordinates": [ -0.609634, 51.0932702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332694" }, "bbox": [ -0.6123372, 51.0966376, -0.6123372, 51.0966376 ], "geometry": { "type": "Point", "coordinates": [ -0.6123372, 51.0966376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97342925" }, "bbox": [ -0.6117192, 51.0993581, -0.6117192, 51.0993581 ], "geometry": { "type": "Point", "coordinates": [ -0.6117192, 51.0993581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97347325" }, "bbox": [ -0.6060456, 51.0992785, -0.6060456, 51.0992785 ], "geometry": { "type": "Point", "coordinates": [ -0.6060456, 51.0992785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97347408" }, "bbox": [ -0.6053584, 51.0978376, -0.6053584, 51.0978376 ], "geometry": { "type": "Point", "coordinates": [ -0.6053584, 51.0978376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97341909" }, "bbox": [ -0.6133275, 51.0979116, -0.6133275, 51.0979116 ], "geometry": { "type": "Point", "coordinates": [ -0.6133275, 51.0979116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97343401" }, "bbox": [ -0.6111098, 51.0973507, -0.6111098, 51.0973507 ], "geometry": { "type": "Point", "coordinates": [ -0.6111098, 51.0973507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97343116" }, "bbox": [ -0.6115403, 51.0985628, -0.6115403, 51.0985628 ], "geometry": { "type": "Point", "coordinates": [ -0.6115403, 51.0985628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37442269" }, "bbox": [ -0.0382324, 51.184845, -0.0382324, 51.184845 ], "geometry": { "type": "Point", "coordinates": [ -0.0382324, 51.184845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37442634" }, "bbox": [ -0.0376679, 51.1818591, -0.0376679, 51.1818591 ], "geometry": { "type": "Point", "coordinates": [ -0.0376679, 51.1818591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37440947" }, "bbox": [ -0.039983, 51.1830649, -0.039983, 51.1830649 ], "geometry": { "type": "Point", "coordinates": [ -0.039983, 51.1830649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37441682" }, "bbox": [ -0.0390029, 51.1861158, -0.0390029, 51.1861158 ], "geometry": { "type": "Point", "coordinates": [ -0.0390029, 51.1861158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37447121" }, "bbox": [ -0.0313008, 51.1805457, -0.0313008, 51.1805457 ], "geometry": { "type": "Point", "coordinates": [ -0.0313008, 51.1805457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37442055" }, "bbox": [ -0.0381919, 51.1837256, -0.0381919, 51.1837256 ], "geometry": { "type": "Point", "coordinates": [ -0.0381919, 51.1837256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23444523" }, "bbox": [ -0.2352827, 51.1839416, -0.2352827, 51.1839416 ], "geometry": { "type": "Point", "coordinates": [ -0.2352827, 51.1839416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37419262" }, "bbox": [ -0.0292582, 51.1571705, -0.0292582, 51.1571705 ], "geometry": { "type": "Point", "coordinates": [ -0.0292582, 51.1571705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37406457" }, "bbox": [ -0.0338019, 51.147933, -0.0338019, 51.147933 ], "geometry": { "type": "Point", "coordinates": [ -0.0338019, 51.147933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38422251" }, "bbox": [ -0.0247116, 51.1650723, -0.0247116, 51.1650723 ], "geometry": { "type": "Point", "coordinates": [ -0.0247116, 51.1650723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38423660" }, "bbox": [ -0.0223443, 51.1660127, -0.0223443, 51.1660127 ], "geometry": { "type": "Point", "coordinates": [ -0.0223443, 51.1660127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38420240" }, "bbox": [ -0.0273922, 51.1641654, -0.0273922, 51.1641654 ], "geometry": { "type": "Point", "coordinates": [ -0.0273922, 51.1641654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37417179" }, "bbox": [ -0.0318323, 51.1588489, -0.0318323, 51.1588489 ], "geometry": { "type": "Point", "coordinates": [ -0.0318323, 51.1588489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98470112" }, "bbox": [ -0.5982259, 51.2148699, -0.5982259, 51.2148699 ], "geometry": { "type": "Point", "coordinates": [ -0.5982259, 51.2148699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98460252" }, "bbox": [ -0.5982346, 51.2094818, -0.5982346, 51.2094818 ], "geometry": { "type": "Point", "coordinates": [ -0.5982346, 51.2094818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98460679" }, "bbox": [ -0.5976693, 51.2119269, -0.5976693, 51.2119269 ], "geometry": { "type": "Point", "coordinates": [ -0.5976693, 51.2119269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97469962" }, "bbox": [ -0.5984421, 51.2104597, -0.5984421, 51.2104597 ], "geometry": { "type": "Point", "coordinates": [ -0.5984421, 51.2104597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97468472" }, "bbox": [ -0.6008189, 51.211216, -0.6008189, 51.211216 ], "geometry": { "type": "Point", "coordinates": [ -0.6008189, 51.211216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97465495" }, "bbox": [ -0.6047254, 51.2131832, -0.6047254, 51.2131832 ], "geometry": { "type": "Point", "coordinates": [ -0.6047254, 51.2131832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97479535" }, "bbox": [ -0.5990881, 51.2168126, -0.5990881, 51.2168126 ], "geometry": { "type": "Point", "coordinates": [ -0.5990881, 51.2168126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97478105" }, "bbox": [ -0.6014855, 51.2140272, -0.6014855, 51.2140272 ], "geometry": { "type": "Point", "coordinates": [ -0.6014855, 51.2140272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97476503" }, "bbox": [ -0.6033568, 51.2140672, -0.6033568, 51.2140672 ], "geometry": { "type": "Point", "coordinates": [ -0.6033568, 51.2140672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96479080" }, "bbox": [ -0.6128897, 51.2211461, -0.6128897, 51.2211461 ], "geometry": { "type": "Point", "coordinates": [ -0.6128897, 51.2211461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21395374" }, "bbox": [ -0.2640556, 51.1439645, -0.2640556, 51.1439645 ], "geometry": { "type": "Point", "coordinates": [ -0.2640556, 51.1439645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16463941" }, "bbox": [ -0.3356587, 51.204968, -0.3356587, 51.204968 ], "geometry": { "type": "Point", "coordinates": [ -0.3356587, 51.204968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96466867" }, "bbox": [ -0.6174108, 51.2110565, -0.6174108, 51.2110565 ], "geometry": { "type": "Point", "coordinates": [ -0.6174108, 51.2110565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96465583" }, "bbox": [ -0.6190395, 51.2123995, -0.6190395, 51.2123995 ], "geometry": { "type": "Point", "coordinates": [ -0.6190395, 51.2123995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06728297" }, "bbox": [ -0.4641167, 51.4456532, -0.4641167, 51.4456532 ], "geometry": { "type": "Point", "coordinates": [ -0.4641167, 51.4456532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02765854" }, "bbox": [ -0.5242113, 51.4786012, -0.5242113, 51.4786012 ], "geometry": { "type": "Point", "coordinates": [ -0.5242113, 51.4786012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87438511" }, "bbox": [ -0.7449124, 51.1802227, -0.7449124, 51.1802227 ], "geometry": { "type": "Point", "coordinates": [ -0.7449124, 51.1802227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88431160" }, "bbox": [ -0.7408189, 51.1848163, -0.7408189, 51.1848163 ], "geometry": { "type": "Point", "coordinates": [ -0.7408189, 51.1848163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88432633" }, "bbox": [ -0.7385581, 51.1823981, -0.7385581, 51.1823981 ], "geometry": { "type": "Point", "coordinates": [ -0.7385581, 51.1823981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88431342" }, "bbox": [ -0.740386, 51.1832094, -0.740386, 51.1832094 ], "geometry": { "type": "Point", "coordinates": [ -0.740386, 51.1832094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88432712" }, "bbox": [ -0.7386371, 51.1803596, -0.7386371, 51.1803596 ], "geometry": { "type": "Point", "coordinates": [ -0.7386371, 51.1803596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88430159" }, "bbox": [ -0.7415603, 51.1844603, -0.7415603, 51.1844603 ], "geometry": { "type": "Point", "coordinates": [ -0.7415603, 51.1844603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87435417" }, "bbox": [ -0.7490526, 51.1809567, -0.7490526, 51.1809567 ], "geometry": { "type": "Point", "coordinates": [ -0.7490526, 51.1809567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87437519" }, "bbox": [ -0.7451987, 51.1815919, -0.7451987, 51.1815919 ], "geometry": { "type": "Point", "coordinates": [ -0.7451987, 51.1815919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02375733" }, "bbox": [ -0.5354891, 51.1260378, -0.5354891, 51.1260378 ], "geometry": { "type": "Point", "coordinates": [ -0.5354891, 51.1260378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02375323" }, "bbox": [ -0.5364031, 51.125254, -0.5364031, 51.125254 ], "geometry": { "type": "Point", "coordinates": [ -0.5364031, 51.125254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02376629" }, "bbox": [ -0.5343402, 51.1255647, -0.5343402, 51.1255647 ], "geometry": { "type": "Point", "coordinates": [ -0.5343402, 51.1255647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87448021" }, "bbox": [ -0.744797, 51.1904321, -0.744797, 51.1904321 ], "geometry": { "type": "Point", "coordinates": [ -0.744797, 51.1904321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88441122" }, "bbox": [ -0.740399, 51.1904753, -0.740399, 51.1904753 ], "geometry": { "type": "Point", "coordinates": [ -0.740399, 51.1904753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96478101" }, "bbox": [ -0.6153203, 51.214108, -0.6153203, 51.214108 ], "geometry": { "type": "Point", "coordinates": [ -0.6153203, 51.214108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97462474" }, "bbox": [ -0.6092024, 51.2116524, -0.6092024, 51.2116524 ], "geometry": { "type": "Point", "coordinates": [ -0.6092024, 51.2116524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97461779" }, "bbox": [ -0.6101981, 51.2120978, -0.6101981, 51.2120978 ], "geometry": { "type": "Point", "coordinates": [ -0.6101981, 51.2120978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97471010" }, "bbox": [ -0.611214, 51.2138659, -0.611214, 51.2138659 ], "geometry": { "type": "Point", "coordinates": [ -0.611214, 51.2138659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95447850" }, "bbox": [ -0.6305409, 51.1916829, -0.6305409, 51.1916829 ], "geometry": { "type": "Point", "coordinates": [ -0.6305409, 51.1916829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95447141" }, "bbox": [ -0.6315729, 51.1913248, -0.6315729, 51.1913248 ], "geometry": { "type": "Point", "coordinates": [ -0.6315729, 51.1913248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95447846" }, "bbox": [ -0.6308872, 51.1913444, -0.6308872, 51.1913444 ], "geometry": { "type": "Point", "coordinates": [ -0.6308872, 51.1913444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93338526" }, "bbox": [ -0.6611595, 51.0908723, -0.6611595, 51.0908723 ], "geometry": { "type": "Point", "coordinates": [ -0.6611595, 51.0908723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93327654" }, "bbox": [ -0.6625154, 51.0846748, -0.6625154, 51.0846748 ], "geometry": { "type": "Point", "coordinates": [ -0.6625154, 51.0846748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93324746" }, "bbox": [ -0.66709, 51.0839106, -0.66709, 51.0839106 ], "geometry": { "type": "Point", "coordinates": [ -0.66709, 51.0839106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93327334" }, "bbox": [ -0.6630932, 51.0827173, -0.6630932, 51.0827173 ], "geometry": { "type": "Point", "coordinates": [ -0.6630932, 51.0827173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93326534" }, "bbox": [ -0.6643756, 51.0827176, -0.6643756, 51.0827176 ], "geometry": { "type": "Point", "coordinates": [ -0.6643756, 51.0827176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93326082" }, "bbox": [ -0.6649837, 51.0871523, -0.6649837, 51.0871523 ], "geometry": { "type": "Point", "coordinates": [ -0.6649837, 51.0871523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92335253" }, "bbox": [ -0.6802749, 51.0936117, -0.6802749, 51.0936117 ], "geometry": { "type": "Point", "coordinates": [ -0.6802749, 51.0936117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19411516" }, "bbox": [ -0.297781, 51.1571968, -0.297781, 51.1571968 ], "geometry": { "type": "Point", "coordinates": [ -0.297781, 51.1571968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19412534" }, "bbox": [ -0.2961392, 51.158769, -0.2961392, 51.158769 ], "geometry": { "type": "Point", "coordinates": [ -0.2961392, 51.158769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19414629" }, "bbox": [ -0.2930818, 51.1583418, -0.2930818, 51.1583418 ], "geometry": { "type": "Point", "coordinates": [ -0.2930818, 51.1583418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19415561" }, "bbox": [ -0.2918217, 51.1612106, -0.2918217, 51.1612106 ], "geometry": { "type": "Point", "coordinates": [ -0.2918217, 51.1612106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19415846" }, "bbox": [ -0.2912681, 51.1598374, -0.2912681, 51.1598374 ], "geometry": { "type": "Point", "coordinates": [ -0.2912681, 51.1598374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19410104" }, "bbox": [ -0.2995522, 51.1563553, -0.2995522, 51.1563553 ], "geometry": { "type": "Point", "coordinates": [ -0.2995522, 51.1563553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413843" }, "bbox": [ -0.2942239, 51.1597223, -0.2942239, 51.1597223 ], "geometry": { "type": "Point", "coordinates": [ -0.2942239, 51.1597223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38580901" }, "bbox": [ -0.0203693, 51.304389, -0.0203693, 51.304389 ], "geometry": { "type": "Point", "coordinates": [ -0.0203693, 51.304389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38582906" }, "bbox": [ -0.017528, 51.3049083, -0.017528, 51.3049083 ], "geometry": { "type": "Point", "coordinates": [ -0.017528, 51.3049083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37578595" }, "bbox": [ -0.0234512, 51.3039907, -0.0234512, 51.3039907 ], "geometry": { "type": "Point", "coordinates": [ -0.0234512, 51.3039907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11405401" }, "bbox": [ -0.4067274, 51.1486251, -0.4067274, 51.1486251 ], "geometry": { "type": "Point", "coordinates": [ -0.4067274, 51.1486251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14485835" }, "bbox": [ -0.3608522, 51.2229949, -0.3608522, 51.2229949 ], "geometry": { "type": "Point", "coordinates": [ -0.3608522, 51.2229949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14482623" }, "bbox": [ -0.3652341, 51.2219408, -0.3652341, 51.2219408 ], "geometry": { "type": "Point", "coordinates": [ -0.3652341, 51.2219408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14484940" }, "bbox": [ -0.3618052, 51.2233096, -0.3618052, 51.2233096 ], "geometry": { "type": "Point", "coordinates": [ -0.3618052, 51.2233096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14487447" }, "bbox": [ -0.3583376, 51.2238904, -0.3583376, 51.2238904 ], "geometry": { "type": "Point", "coordinates": [ -0.3583376, 51.2238904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14477595" }, "bbox": [ -0.3581204, 51.2193012, -0.3581204, 51.2193012 ], "geometry": { "type": "Point", "coordinates": [ -0.3581204, 51.2193012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14475996" }, "bbox": [ -0.3602805, 51.2193385, -0.3602805, 51.2193385 ], "geometry": { "type": "Point", "coordinates": [ -0.3602805, 51.2193385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09377597" }, "bbox": [ -0.43296, 51.1304856, -0.43296, 51.1304856 ], "geometry": { "type": "Point", "coordinates": [ -0.43296, 51.1304856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09377763" }, "bbox": [ -0.4332232, 51.1264226, -0.4332232, 51.1264226 ], "geometry": { "type": "Point", "coordinates": [ -0.4332232, 51.1264226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09366692" }, "bbox": [ -0.4344634, 51.1210715, -0.4344634, 51.1210715 ], "geometry": { "type": "Point", "coordinates": [ -0.4344634, 51.1210715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08376152" }, "bbox": [ -0.4491496, 51.1271742, -0.4491496, 51.1271742 ], "geometry": { "type": "Point", "coordinates": [ -0.4491496, 51.1271742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520347" }, "bbox": [ -0.39588, 51.260701, -0.39588, 51.260701 ], "geometry": { "type": "Point", "coordinates": [ -0.39588, 51.260701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03374498" }, "bbox": [ -0.5229184, 51.1318297, -0.5229184, 51.1318297 ], "geometry": { "type": "Point", "coordinates": [ -0.5229184, 51.1318297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23432319" }, "bbox": [ -0.2384457, 51.1746234, -0.2384457, 51.1746234 ], "geometry": { "type": "Point", "coordinates": [ -0.2384457, 51.1746234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372022" }, "bbox": [ -0.3407757, 51.1228624, -0.3407757, 51.1228624 ], "geometry": { "type": "Point", "coordinates": [ -0.3407757, 51.1228624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05456111" }, "bbox": [ -0.4898152, 51.1954719, -0.4898152, 51.1954719 ], "geometry": { "type": "Point", "coordinates": [ -0.4898152, 51.1954719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05456203" }, "bbox": [ -0.4898492, 51.1948665, -0.4898492, 51.1948665 ], "geometry": { "type": "Point", "coordinates": [ -0.4898492, 51.1948665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05461399" }, "bbox": [ -0.4961678, 51.2125118, -0.4961678, 51.2125118 ], "geometry": { "type": "Point", "coordinates": [ -0.4961678, 51.2125118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05441666" }, "bbox": [ -0.4963679, 51.1914289, -0.4963679, 51.1914289 ], "geometry": { "type": "Point", "coordinates": [ -0.4963679, 51.1914289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05445773" }, "bbox": [ -0.4907861, 51.1920147, -0.4907861, 51.1920147 ], "geometry": { "type": "Point", "coordinates": [ -0.4907861, 51.1920147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05444830" }, "bbox": [ -0.4916954, 51.1884636, -0.4916954, 51.1884636 ], "geometry": { "type": "Point", "coordinates": [ -0.4916954, 51.1884636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05445250" }, "bbox": [ -0.4913587, 51.1901163, -0.4913587, 51.1901163 ], "geometry": { "type": "Point", "coordinates": [ -0.4913587, 51.1901163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05446452" }, "bbox": [ -0.4896789, 51.1901764, -0.4896789, 51.1901764 ], "geometry": { "type": "Point", "coordinates": [ -0.4896789, 51.1901764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05444072" }, "bbox": [ -0.4930082, 51.1921266, -0.4930082, 51.1921266 ], "geometry": { "type": "Point", "coordinates": [ -0.4930082, 51.1921266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05444325" }, "bbox": [ -0.4932907, 51.1879467, -0.4932907, 51.1879467 ], "geometry": { "type": "Point", "coordinates": [ -0.4932907, 51.1879467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16431587" }, "bbox": [ -0.3401754, 51.1825429, -0.3401754, 51.1825429 ], "geometry": { "type": "Point", "coordinates": [ -0.3401754, 51.1825429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14662577" }, "bbox": [ -0.3593589, 51.3884746, -0.3593589, 51.3884746 ], "geometry": { "type": "Point", "coordinates": [ -0.3593589, 51.3884746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00526598" }, "bbox": [ -0.5585899, 51.2670606, -0.5585899, 51.2670606 ], "geometry": { "type": "Point", "coordinates": [ -0.5585899, 51.2670606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38466158" }, "bbox": [ -0.0173269, 51.201645, -0.0173269, 51.201645 ], "geometry": { "type": "Point", "coordinates": [ -0.0173269, 51.201645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38479918" }, "bbox": [ -0.0116392, 51.2070285, -0.0116392, 51.2070285 ], "geometry": { "type": "Point", "coordinates": [ -0.0116392, 51.2070285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40471158" }, "bbox": [ 0.0044983, 51.2103317, 0.0044983, 51.2103317 ], "geometry": { "type": "Point", "coordinates": [ 0.0044983, 51.2103317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40554287" }, "bbox": [ 0.012227, 51.2847379, 0.012227, 51.2847379 ], "geometry": { "type": "Point", "coordinates": [ 0.012227, 51.2847379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40544585" }, "bbox": [ 0.011915, 51.2752353, 0.011915, 51.2752353 ], "geometry": { "type": "Point", "coordinates": [ 0.011915, 51.2752353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40540387" }, "bbox": [ 0.006208, 51.2757106, 0.006208, 51.2757106 ], "geometry": { "type": "Point", "coordinates": [ 0.006208, 51.2757106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39545754" }, "bbox": [ -0.001733, 51.2716414, -0.001733, 51.2716414 ], "geometry": { "type": "Point", "coordinates": [ -0.001733, 51.2716414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40492104" }, "bbox": [ 0.0064443, 51.2234217, 0.0064443, 51.2234217 ], "geometry": { "type": "Point", "coordinates": [ 0.0064443, 51.2234217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40490135" }, "bbox": [ 0.0036103, 51.2261535, 0.0036103, 51.2261535 ], "geometry": { "type": "Point", "coordinates": [ 0.0036103, 51.2261535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39486666" }, "bbox": [ -0.0014646, 51.2200208, -0.0014646, 51.2200208 ], "geometry": { "type": "Point", "coordinates": [ -0.0014646, 51.2200208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489164" }, "bbox": [ 0.0019854, 51.2198349, 0.0019854, 51.2198349 ], "geometry": { "type": "Point", "coordinates": [ 0.0019854, 51.2198349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39485598" }, "bbox": [ -0.0029654, 51.2229748, -0.0029654, 51.2229748 ], "geometry": { "type": "Point", "coordinates": [ -0.0029654, 51.2229748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39485278" }, "bbox": [ -0.0032973, 51.2213691, -0.0032973, 51.2213691 ], "geometry": { "type": "Point", "coordinates": [ -0.0032973, 51.2213691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39485070" }, "bbox": [ -0.0040445, 51.2204203, -0.0040445, 51.2204203 ], "geometry": { "type": "Point", "coordinates": [ -0.0040445, 51.2204203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39496924" }, "bbox": [ -0.0016034, 51.2254382, -0.0016034, 51.2254382 ], "geometry": { "type": "Point", "coordinates": [ -0.0016034, 51.2254382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38459214" }, "bbox": [ -0.0134185, 51.1887403, -0.0134185, 51.1887403 ], "geometry": { "type": "Point", "coordinates": [ -0.0134185, 51.1887403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38456879" }, "bbox": [ -0.0165814, 51.1945912, -0.0165814, 51.1945912 ], "geometry": { "type": "Point", "coordinates": [ -0.0165814, 51.1945912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33426493" }, "bbox": [ -0.0892802, 51.1701421, -0.0892802, 51.1701421 ], "geometry": { "type": "Point", "coordinates": [ -0.0892802, 51.1701421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33425851" }, "bbox": [ -0.0909339, 51.1661615, -0.0909339, 51.1661615 ], "geometry": { "type": "Point", "coordinates": [ -0.0909339, 51.1661615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38476726" }, "bbox": [ -0.0163969, 51.2076863, -0.0163969, 51.2076863 ], "geometry": { "type": "Point", "coordinates": [ -0.0163969, 51.2076863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38478115" }, "bbox": [ -0.0152962, 51.2066636, -0.0152962, 51.2066636 ], "geometry": { "type": "Point", "coordinates": [ -0.0152962, 51.2066636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38479511" }, "bbox": [ -0.0123934, 51.2062791, -0.0123934, 51.2062791 ], "geometry": { "type": "Point", "coordinates": [ -0.0123934, 51.2062791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39470715" }, "bbox": [ -0.0106211, 51.2066928, -0.0106211, 51.2066928 ], "geometry": { "type": "Point", "coordinates": [ -0.0106211, 51.2066928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39470710" }, "bbox": [ -0.0106893, 51.2061829, -0.0106893, 51.2061829 ], "geometry": { "type": "Point", "coordinates": [ -0.0106893, 51.2061829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39470114" }, "bbox": [ -0.0114597, 51.2066086, -0.0114597, 51.2066086 ], "geometry": { "type": "Point", "coordinates": [ -0.0114597, 51.2066086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04430577" }, "bbox": [ -0.5126536, 51.183567, -0.5126536, 51.183567 ], "geometry": { "type": "Point", "coordinates": [ -0.5126536, 51.183567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04408789" }, "bbox": [ -0.5017683, 51.1576866, -0.5017683, 51.1576866 ], "geometry": { "type": "Point", "coordinates": [ -0.5017683, 51.1576866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04409776" }, "bbox": [ -0.5003391, 51.1565985, -0.5003391, 51.1565985 ], "geometry": { "type": "Point", "coordinates": [ -0.5003391, 51.1565985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05400797" }, "bbox": [ -0.4986944, 51.1584893, -0.4986944, 51.1584893 ], "geometry": { "type": "Point", "coordinates": [ -0.4986944, 51.1584893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05402492" }, "bbox": [ -0.4964136, 51.1579403, -0.4964136, 51.1579403 ], "geometry": { "type": "Point", "coordinates": [ -0.4964136, 51.1579403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05401683" }, "bbox": [ -0.4975317, 51.1570389, -0.4975317, 51.1570389 ], "geometry": { "type": "Point", "coordinates": [ -0.4975317, 51.1570389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05410221" }, "bbox": [ -0.5000449, 51.160689, -0.5000449, 51.160689 ], "geometry": { "type": "Point", "coordinates": [ -0.5000449, 51.160689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89390400" }, "bbox": [ -0.7284939, 51.1434837, -0.7284939, 51.1434837 ], "geometry": { "type": "Point", "coordinates": [ -0.7284939, 51.1434837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89391415" }, "bbox": [ -0.72712, 51.1446876, -0.72712, 51.1446876 ], "geometry": { "type": "Point", "coordinates": [ -0.72712, 51.1446876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382894" }, "bbox": [ -0.7252482, 51.142834, -0.7252482, 51.142834 ], "geometry": { "type": "Point", "coordinates": [ -0.7252482, 51.142834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11394092" }, "bbox": [ -0.4087306, 51.1477428, -0.4087306, 51.1477428 ], "geometry": { "type": "Point", "coordinates": [ -0.4087306, 51.1477428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23456204" }, "bbox": [ -0.2322152, 51.1912339, -0.2322152, 51.1912339 ], "geometry": { "type": "Point", "coordinates": [ -0.2322152, 51.1912339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23457307" }, "bbox": [ -0.2308563, 51.1918778, -0.2308563, 51.1918778 ], "geometry": { "type": "Point", "coordinates": [ -0.2308563, 51.1918778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35409872" }, "bbox": [ -0.0570446, 51.149524, -0.0570446, 51.149524 ], "geometry": { "type": "Point", "coordinates": [ -0.0570446, 51.149524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35417401" }, "bbox": [ -0.0604837, 51.1521247, -0.0604837, 51.1521247 ], "geometry": { "type": "Point", "coordinates": [ -0.0604837, 51.1521247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22517669" }, "bbox": [ -0.242059, 51.2511429, -0.242059, 51.2511429 ], "geometry": { "type": "Point", "coordinates": [ -0.242059, 51.2511429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22517693" }, "bbox": [ -0.2418923, 51.2533964, -0.2418923, 51.2533964 ], "geometry": { "type": "Point", "coordinates": [ -0.2418923, 51.2533964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23517850" }, "bbox": [ -0.227718, 51.249421, -0.227718, 51.249421 ], "geometry": { "type": "Point", "coordinates": [ -0.227718, 51.249421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22508425" }, "bbox": [ -0.2417864, 51.2381123, -0.2417864, 51.2381123 ], "geometry": { "type": "Point", "coordinates": [ -0.2417864, 51.2381123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30399893" }, "bbox": [ -0.1288248, 51.143798, -0.1288248, 51.143798 ], "geometry": { "type": "Point", "coordinates": [ -0.1288248, 51.143798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30397588" }, "bbox": [ -0.1322379, 51.1433044, -0.1322379, 51.1433044 ], "geometry": { "type": "Point", "coordinates": [ -0.1322379, 51.1433044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30404801" }, "bbox": [ -0.1361187, 51.1444639, -0.1361187, 51.1444639 ], "geometry": { "type": "Point", "coordinates": [ -0.1361187, 51.1444639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30394284" }, "bbox": [ -0.1370527, 51.1429975, -0.1370527, 51.1429975 ], "geometry": { "type": "Point", "coordinates": [ -0.1370527, 51.1429975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87381006" }, "bbox": [ -0.7566171, 51.1352138, -0.7566171, 51.1352138 ], "geometry": { "type": "Point", "coordinates": [ -0.7566171, 51.1352138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465646" }, "bbox": [ -0.2471829, 51.2045037, -0.2471829, 51.2045037 ], "geometry": { "type": "Point", "coordinates": [ -0.2471829, 51.2045037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467140" }, "bbox": [ -0.2446698, 51.203757, -0.2446698, 51.203757 ], "geometry": { "type": "Point", "coordinates": [ -0.2446698, 51.203757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22464627" }, "bbox": [ -0.2486145, 51.2023839, -0.2486145, 51.2023839 ], "geometry": { "type": "Point", "coordinates": [ -0.2486145, 51.2023839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465242" }, "bbox": [ -0.2477347, 51.2036875, -0.2477347, 51.2036875 ], "geometry": { "type": "Point", "coordinates": [ -0.2477347, 51.2036875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09428971" }, "bbox": [ -0.4292535, 51.1729808, -0.4292535, 51.1729808 ], "geometry": { "type": "Point", "coordinates": [ -0.4292535, 51.1729808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426461" }, "bbox": [ -0.4332747, 51.1724989, -0.4332747, 51.1724989 ], "geometry": { "type": "Point", "coordinates": [ -0.4332747, 51.1724989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09425235" }, "bbox": [ -0.4347329, 51.1699393, -0.4347329, 51.1699393 ], "geometry": { "type": "Point", "coordinates": [ -0.4347329, 51.1699393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09425628" }, "bbox": [ -0.4343836, 51.1693391, -0.4343836, 51.1693391 ], "geometry": { "type": "Point", "coordinates": [ -0.4343836, 51.1693391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09427138" }, "bbox": [ -0.4320995, 51.1699755, -0.4320995, 51.1699755 ], "geometry": { "type": "Point", "coordinates": [ -0.4320995, 51.1699755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426140" }, "bbox": [ -0.433376, 51.1703249, -0.433376, 51.1703249 ], "geometry": { "type": "Point", "coordinates": [ -0.433376, 51.1703249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426642" }, "bbox": [ -0.4327239, 51.170392, -0.4327239, 51.170392 ], "geometry": { "type": "Point", "coordinates": [ -0.4327239, 51.170392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35575215" }, "bbox": [ -0.0574243, 51.2974763, -0.0574243, 51.2974763 ], "geometry": { "type": "Point", "coordinates": [ -0.0574243, 51.2974763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35572310" }, "bbox": [ -0.0614285, 51.2970766, -0.0614285, 51.2970766 ], "geometry": { "type": "Point", "coordinates": [ -0.0614285, 51.2970766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35575317" }, "bbox": [ -0.0574617, 51.2975591, -0.0574617, 51.2975591 ], "geometry": { "type": "Point", "coordinates": [ -0.0574617, 51.2975591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35573712" }, "bbox": [ -0.0590867, 51.2973667, -0.0590867, 51.2973667 ], "geometry": { "type": "Point", "coordinates": [ -0.0590867, 51.2973667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98412568" }, "bbox": [ -0.5962948, 51.1663683, -0.5962948, 51.1663683 ], "geometry": { "type": "Point", "coordinates": [ -0.5962948, 51.1663683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09369683" }, "bbox": [ -0.4303025, 51.1202537, -0.4303025, 51.1202537 ], "geometry": { "type": "Point", "coordinates": [ -0.4303025, 51.1202537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00430317" }, "bbox": [ -0.5703931, 51.1789346, -0.5703931, 51.1789346 ], "geometry": { "type": "Point", "coordinates": [ -0.5703931, 51.1789346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41548198" }, "bbox": [ 0.0318143, 51.2761566, 0.0318143, 51.2761566 ], "geometry": { "type": "Point", "coordinates": [ 0.0318143, 51.2761566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20621750" }, "bbox": [ -0.2763307, 51.3492543, -0.2763307, 51.3492543 ], "geometry": { "type": "Point", "coordinates": [ -0.2763307, 51.3492543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94561626" }, "bbox": [ -0.6508997, 51.2977274, -0.6508997, 51.2977274 ], "geometry": { "type": "Point", "coordinates": [ -0.6508997, 51.2977274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93566948" }, "bbox": [ -0.6573811, 51.2997534, -0.6573811, 51.2997534 ], "geometry": { "type": "Point", "coordinates": [ -0.6573811, 51.2997534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38480831" }, "bbox": [ -0.0244016, 51.2172744, -0.0244016, 51.2172744 ], "geometry": { "type": "Point", "coordinates": [ -0.0244016, 51.2172744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39572725" }, "bbox": [ -0.0038747, 51.297166, -0.0038747, 51.297166 ], "geometry": { "type": "Point", "coordinates": [ -0.0038747, 51.297166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22463431" }, "bbox": [ -0.2502018, 51.2029944, -0.2502018, 51.2029944 ], "geometry": { "type": "Point", "coordinates": [ -0.2502018, 51.2029944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98342881" }, "bbox": [ -0.5970231, 51.1037052, -0.5970231, 51.1037052 ], "geometry": { "type": "Point", "coordinates": [ -0.5970231, 51.1037052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467852" }, "bbox": [ -0.4727268, 51.2080664, -0.4727268, 51.2080664 ], "geometry": { "type": "Point", "coordinates": [ -0.4727268, 51.2080664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467345" }, "bbox": [ -0.4736543, 51.2073065, -0.4736543, 51.2073065 ], "geometry": { "type": "Point", "coordinates": [ -0.4736543, 51.2073065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16587169" }, "bbox": [ -0.3265952, 51.3154073, -0.3265952, 51.3154073 ], "geometry": { "type": "Point", "coordinates": [ -0.3265952, 51.3154073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16556380" }, "bbox": [ -0.3286441, 51.289424, -0.3286441, 51.289424 ], "geometry": { "type": "Point", "coordinates": [ -0.3286441, 51.289424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16550140" }, "bbox": [ -0.3373761, 51.2857644, -0.3373761, 51.2857644 ], "geometry": { "type": "Point", "coordinates": [ -0.3373761, 51.2857644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87483703" }, "bbox": [ -0.7501109, 51.2248457, -0.7501109, 51.2248457 ], "geometry": { "type": "Point", "coordinates": [ -0.7501109, 51.2248457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25426976" }, "bbox": [ -0.2035314, 51.1703022, -0.2035314, 51.1703022 ], "geometry": { "type": "Point", "coordinates": [ -0.2035314, 51.1703022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29557149" }, "bbox": [ -0.1415159, 51.2839346, -0.1415159, 51.2839346 ], "geometry": { "type": "Point", "coordinates": [ -0.1415159, 51.2839346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86412802" }, "bbox": [ -0.7674542, 51.1620078, -0.7674542, 51.1620078 ], "geometry": { "type": "Point", "coordinates": [ -0.7674542, 51.1620078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86428010" }, "bbox": [ -0.7598328, 51.1715893, -0.7598328, 51.1715893 ], "geometry": { "type": "Point", "coordinates": [ -0.7598328, 51.1715893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87422905" }, "bbox": [ -0.752649, 51.1710663, -0.752649, 51.1710663 ], "geometry": { "type": "Point", "coordinates": [ -0.752649, 51.1710663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93559999" }, "bbox": [ -0.6530215, 51.2953033, -0.6530215, 51.2953033 ], "geometry": { "type": "Point", "coordinates": [ -0.6530215, 51.2953033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559548" }, "bbox": [ -0.4963042, 51.288913, -0.4963042, 51.288913 ], "geometry": { "type": "Point", "coordinates": [ -0.4963042, 51.288913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559345" }, "bbox": [ -0.4966482, 51.2886395, -0.4966482, 51.2886395 ], "geometry": { "type": "Point", "coordinates": [ -0.4966482, 51.2886395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558651" }, "bbox": [ -0.4977506, 51.2891417, -0.4977506, 51.2891417 ], "geometry": { "type": "Point", "coordinates": [ -0.4977506, 51.2891417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558248" }, "bbox": [ -0.4980627, 51.288891, -0.4980627, 51.288891 ], "geometry": { "type": "Point", "coordinates": [ -0.4980627, 51.288891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559638" }, "bbox": [ -0.4960758, 51.2879575, -0.4960758, 51.2879575 ], "geometry": { "type": "Point", "coordinates": [ -0.4960758, 51.2879575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13362888" }, "bbox": [ -0.3829697, 51.1200311, -0.3829697, 51.1200311 ], "geometry": { "type": "Point", "coordinates": [ -0.3829697, 51.1200311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15498856" }, "bbox": [ -0.3417357, 51.2333302, -0.3417357, 51.2333302 ], "geometry": { "type": "Point", "coordinates": [ -0.3417357, 51.2333302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30395697" }, "bbox": [ -0.1346493, 51.144357, -0.1346493, 51.144357 ], "geometry": { "type": "Point", "coordinates": [ -0.1346493, 51.144357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11516778" }, "bbox": [ -0.4011959, 51.2542017, -0.4011959, 51.2542017 ], "geometry": { "type": "Point", "coordinates": [ -0.4011959, 51.2542017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11513663" }, "bbox": [ -0.4052432, 51.2527044, -0.4052432, 51.2527044 ], "geometry": { "type": "Point", "coordinates": [ -0.4052432, 51.2527044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12529604" }, "bbox": [ -0.3825025, 51.2564253, -0.3825025, 51.2564253 ], "geometry": { "type": "Point", "coordinates": [ -0.3825025, 51.2564253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13520501" }, "bbox": [ -0.3809203, 51.256189, -0.3809203, 51.256189 ], "geometry": { "type": "Point", "coordinates": [ -0.3809203, 51.256189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13522902" }, "bbox": [ -0.3776841, 51.2562056, -0.3776841, 51.2562056 ], "geometry": { "type": "Point", "coordinates": [ -0.3776841, 51.2562056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10474384" }, "bbox": [ -0.4199143, 51.2190789, -0.4199143, 51.2190789 ], "geometry": { "type": "Point", "coordinates": [ -0.4199143, 51.2190789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10489708" }, "bbox": [ -0.4131461, 51.2210626, -0.4131461, 51.2210626 ], "geometry": { "type": "Point", "coordinates": [ -0.4131461, 51.2210626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11480512" }, "bbox": [ -0.4111033, 51.2215447, -0.4111033, 51.2215447 ], "geometry": { "type": "Point", "coordinates": [ -0.4111033, 51.2215447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06535602" }, "bbox": [ -0.4739847, 51.2662394, -0.4739847, 51.2662394 ], "geometry": { "type": "Point", "coordinates": [ -0.4739847, 51.2662394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06527376" }, "bbox": [ -0.4717683, 51.2644558, -0.4717683, 51.2644558 ], "geometry": { "type": "Point", "coordinates": [ -0.4717683, 51.2644558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515386" }, "bbox": [ -0.474758, 51.2560174, -0.474758, 51.2560174 ], "geometry": { "type": "Point", "coordinates": [ -0.474758, 51.2560174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07523611" }, "bbox": [ -0.4628688, 51.2578165, -0.4628688, 51.2578165 ], "geometry": { "type": "Point", "coordinates": [ -0.4628688, 51.2578165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12518717" }, "bbox": [ -0.3833371, 51.2494477, -0.3833371, 51.2494477 ], "geometry": { "type": "Point", "coordinates": [ -0.3833371, 51.2494477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12519129" }, "bbox": [ -0.3836363, 51.249656, -0.3836363, 51.249656 ], "geometry": { "type": "Point", "coordinates": [ -0.3836363, 51.249656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13513428" }, "bbox": [ -0.3782299, 51.2493017, -0.3782299, 51.2493017 ], "geometry": { "type": "Point", "coordinates": [ -0.3782299, 51.2493017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13512227" }, "bbox": [ -0.379033, 51.2494078, -0.379033, 51.2494078 ], "geometry": { "type": "Point", "coordinates": [ -0.379033, 51.2494078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13515748" }, "bbox": [ -0.3737134, 51.2512459, -0.3737134, 51.2512459 ], "geometry": { "type": "Point", "coordinates": [ -0.3737134, 51.2512459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13515456" }, "bbox": [ -0.3745931, 51.2518704, -0.3745931, 51.2518704 ], "geometry": { "type": "Point", "coordinates": [ -0.3745931, 51.2518704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14521853" }, "bbox": [ -0.3657399, 51.2603625, -0.3657399, 51.2603625 ], "geometry": { "type": "Point", "coordinates": [ -0.3657399, 51.2603625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17379182" }, "bbox": [ -0.315708, 51.1278936, -0.315708, 51.1278936 ], "geometry": { "type": "Point", "coordinates": [ -0.315708, 51.1278936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17377092" }, "bbox": [ -0.3188088, 51.1279511, -0.3188088, 51.1279511 ], "geometry": { "type": "Point", "coordinates": [ -0.3188088, 51.1279511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13399663" }, "bbox": [ -0.3719016, 51.144747, -0.3719016, 51.144747 ], "geometry": { "type": "Point", "coordinates": [ -0.3719016, 51.144747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07521789" }, "bbox": [ -0.4650925, 51.265092, -0.4650925, 51.265092 ], "geometry": { "type": "Point", "coordinates": [ -0.4650925, 51.265092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07522378" }, "bbox": [ -0.4643279, 51.2641333, -0.4643279, 51.2641333 ], "geometry": { "type": "Point", "coordinates": [ -0.4643279, 51.2641333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07530918" }, "bbox": [ -0.4663406, 51.2679098, -0.4663406, 51.2679098 ], "geometry": { "type": "Point", "coordinates": [ -0.4663406, 51.2679098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02470130" }, "bbox": [ -0.5404039, 51.2156741, -0.5404039, 51.2156741 ], "geometry": { "type": "Point", "coordinates": [ -0.5404039, 51.2156741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00479329" }, "bbox": [ -0.5563991, 51.2159056, -0.5563991, 51.2159056 ], "geometry": { "type": "Point", "coordinates": [ -0.5563991, 51.2159056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00476934" }, "bbox": [ -0.5617566, 51.2167428, -0.5617566, 51.2167428 ], "geometry": { "type": "Point", "coordinates": [ -0.5617566, 51.2167428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14432595" }, "bbox": [ -0.3667043, 51.1845608, -0.3667043, 51.1845608 ], "geometry": { "type": "Point", "coordinates": [ -0.3667043, 51.1845608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28479040" }, "bbox": [ -0.1551159, 51.2111192, -0.1551159, 51.2111192 ], "geometry": { "type": "Point", "coordinates": [ -0.1551159, 51.2111192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28468010" }, "bbox": [ -0.1573276, 51.1998905, -0.1573276, 51.1998905 ], "geometry": { "type": "Point", "coordinates": [ -0.1573276, 51.1998905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12427282" }, "bbox": [ -0.3890243, 51.1735534, -0.3890243, 51.1735534 ], "geometry": { "type": "Point", "coordinates": [ -0.3890243, 51.1735534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90485447" }, "bbox": [ -0.7046805, 51.2283053, -0.7046805, 51.2283053 ], "geometry": { "type": "Point", "coordinates": [ -0.7046805, 51.2283053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13551620" }, "bbox": [ -0.3787363, 51.2847535, -0.3787363, 51.2847535 ], "geometry": { "type": "Point", "coordinates": [ -0.3787363, 51.2847535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12546083" }, "bbox": [ -0.386787, 51.2817594, -0.386787, 51.2817594 ], "geometry": { "type": "Point", "coordinates": [ -0.386787, 51.2817594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96479953" }, "bbox": [ -0.6126232, 51.2188128, -0.6126232, 51.2188128 ], "geometry": { "type": "Point", "coordinates": [ -0.6126232, 51.2188128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39470107" }, "bbox": [ -0.0115119, 51.206029, -0.0115119, 51.206029 ], "geometry": { "type": "Point", "coordinates": [ -0.0115119, 51.206029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38474564" }, "bbox": [ -0.0192139, 51.2110397, -0.0192139, 51.2110397 ], "geometry": { "type": "Point", "coordinates": [ -0.0192139, 51.2110397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38473137" }, "bbox": [ -0.0213038, 51.208899, -0.0213038, 51.208899 ], "geometry": { "type": "Point", "coordinates": [ -0.0213038, 51.208899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38488221" }, "bbox": [ -0.0137234, 51.2162254, -0.0137234, 51.2162254 ], "geometry": { "type": "Point", "coordinates": [ -0.0137234, 51.2162254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38486047" }, "bbox": [ -0.0166684, 51.2186256, -0.0166684, 51.2186256 ], "geometry": { "type": "Point", "coordinates": [ -0.0166684, 51.2186256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38484559" }, "bbox": [ -0.0188954, 51.2197523, -0.0188954, 51.2197523 ], "geometry": { "type": "Point", "coordinates": [ -0.0188954, 51.2197523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38496193" }, "bbox": [ -0.0158753, 51.2319534, -0.0158753, 51.2319534 ], "geometry": { "type": "Point", "coordinates": [ -0.0158753, 51.2319534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39483136" }, "bbox": [ -0.0066866, 51.2176318, -0.0066866, 51.2176318 ], "geometry": { "type": "Point", "coordinates": [ -0.0066866, 51.2176318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38502012" }, "bbox": [ -0.0214889, 51.2336001, -0.0214889, 51.2336001 ], "geometry": { "type": "Point", "coordinates": [ -0.0214889, 51.2336001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37576361" }, "bbox": [ -0.0269333, 51.3011065, -0.0269333, 51.3011065 ], "geometry": { "type": "Point", "coordinates": [ -0.0269333, 51.3011065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37576757" }, "bbox": [ -0.0268915, 51.3007371, -0.0268915, 51.3007371 ], "geometry": { "type": "Point", "coordinates": [ -0.0268915, 51.3007371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37576859" }, "bbox": [ -0.0263313, 51.3008483, -0.0263313, 51.3008483 ], "geometry": { "type": "Point", "coordinates": [ -0.0263313, 51.3008483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37575266" }, "bbox": [ -0.0287182, 51.3010363, -0.0287182, 51.3010363 ], "geometry": { "type": "Point", "coordinates": [ -0.0287182, 51.3010363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37500259" }, "bbox": [ -0.0379434, 51.2376775, -0.0379434, 51.2376775 ], "geometry": { "type": "Point", "coordinates": [ -0.0379434, 51.2376775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36499081" }, "bbox": [ -0.0401638, 51.2310434, -0.0401638, 51.2310434 ], "geometry": { "type": "Point", "coordinates": [ -0.0401638, 51.2310434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36495527" }, "bbox": [ -0.0453392, 51.226565, -0.0453392, 51.226565 ], "geometry": { "type": "Point", "coordinates": [ -0.0453392, 51.226565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36499162" }, "bbox": [ -0.0398467, 51.2294459, -0.0398467, 51.2294459 ], "geometry": { "type": "Point", "coordinates": [ -0.0398467, 51.2294459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36506988" }, "bbox": [ -0.0429919, 51.2408875, -0.0429919, 51.2408875 ], "geometry": { "type": "Point", "coordinates": [ -0.0429919, 51.2408875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37499130" }, "bbox": [ -0.0262232, 51.2262113, -0.0262232, 51.2262113 ], "geometry": { "type": "Point", "coordinates": [ -0.0262232, 51.2262113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20431110" }, "bbox": [ -0.2831151, 51.1748482, -0.2831151, 51.1748482 ], "geometry": { "type": "Point", "coordinates": [ -0.2831151, 51.1748482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20432828" }, "bbox": [ -0.2809836, 51.1761546, -0.2809836, 51.1761546 ], "geometry": { "type": "Point", "coordinates": [ -0.2809836, 51.1761546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40452553" }, "bbox": [ 0.0055292, 51.1916926, 0.0055292, 51.1916926 ], "geometry": { "type": "Point", "coordinates": [ 0.0055292, 51.1916926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40458608" }, "bbox": [ 0.0145021, 51.1878504, 0.0145021, 51.1878504 ], "geometry": { "type": "Point", "coordinates": [ 0.0145021, 51.1878504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40459505" }, "bbox": [ 0.0155107, 51.1873135, 0.0155107, 51.1873135 ], "geometry": { "type": "Point", "coordinates": [ 0.0155107, 51.1873135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40452033" }, "bbox": [ 0.004857, 51.1902885, 0.004857, 51.1902885 ], "geometry": { "type": "Point", "coordinates": [ 0.004857, 51.1902885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41443474" }, "bbox": [ 0.0210688, 51.184621, 0.0210688, 51.184621 ], "geometry": { "type": "Point", "coordinates": [ 0.0210688, 51.184621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40449331" }, "bbox": [ 0.0149009, 51.1806096, 0.0149009, 51.1806096 ], "geometry": { "type": "Point", "coordinates": [ 0.0149009, 51.1806096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40443904" }, "bbox": [ 0.0073392, 51.1783345, 0.0073392, 51.1783345 ], "geometry": { "type": "Point", "coordinates": [ 0.0073392, 51.1783345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40454043" }, "bbox": [ 0.0077874, 51.1908394, 0.0077874, 51.1908394 ], "geometry": { "type": "Point", "coordinates": [ 0.0077874, 51.1908394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40446572" }, "bbox": [ 0.0111326, 51.1843698, 0.0111326, 51.1843698 ], "geometry": { "type": "Point", "coordinates": [ 0.0111326, 51.1843698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427197" }, "bbox": [ -0.7033778, 51.1787178, -0.7033778, 51.1787178 ], "geometry": { "type": "Point", "coordinates": [ -0.7033778, 51.1787178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90424863" }, "bbox": [ -0.7068231, 51.1756892, -0.7068231, 51.1756892 ], "geometry": { "type": "Point", "coordinates": [ -0.7068231, 51.1756892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90429642" }, "bbox": [ -0.6999848, 51.1738195, -0.6999848, 51.1738195 ], "geometry": { "type": "Point", "coordinates": [ -0.6999848, 51.1738195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90429159" }, "bbox": [ -0.7008437, 51.1753666, -0.7008437, 51.1753666 ], "geometry": { "type": "Point", "coordinates": [ -0.7008437, 51.1753666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90428383" }, "bbox": [ -0.7016797, 51.1770293, -0.7016797, 51.1770293 ], "geometry": { "type": "Point", "coordinates": [ -0.7016797, 51.1770293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90428159" }, "bbox": [ -0.7023654, 51.1753801, -0.7023654, 51.1753801 ], "geometry": { "type": "Point", "coordinates": [ -0.7023654, 51.1753801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43511020" }, "bbox": [ 0.0488789, 51.2420943, 0.0488789, 51.2420943 ], "geometry": { "type": "Point", "coordinates": [ 0.0488789, 51.2420943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43511413" }, "bbox": [ 0.0494741, 51.2414447, 0.0494741, 51.2414447 ], "geometry": { "type": "Point", "coordinates": [ 0.0494741, 51.2414447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43513428" }, "bbox": [ 0.0522075, 51.2427236, 0.0522075, 51.2427236 ], "geometry": { "type": "Point", "coordinates": [ 0.0522075, 51.2427236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43513419" }, "bbox": [ 0.0522333, 51.2419654, 0.0522333, 51.2419654 ], "geometry": { "type": "Point", "coordinates": [ 0.0522333, 51.2419654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42519512" }, "bbox": [ 0.0464197, 51.2410211, 0.0464197, 51.2410211 ], "geometry": { "type": "Point", "coordinates": [ 0.0464197, 51.2410211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42519719" }, "bbox": [ 0.0468314, 51.2420156, 0.0468314, 51.2420156 ], "geometry": { "type": "Point", "coordinates": [ 0.0468314, 51.2420156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04748081" }, "bbox": [ -0.4928035, 51.4626038, -0.4928035, 51.4626038 ], "geometry": { "type": "Point", "coordinates": [ -0.4928035, 51.4626038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04747869" }, "bbox": [ -0.4930646, 51.4614472, -0.4930646, 51.4614472 ], "geometry": { "type": "Point", "coordinates": [ -0.4930646, 51.4614472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06622173" }, "bbox": [ -0.4760238, 51.3537351, -0.4760238, 51.3537351 ], "geometry": { "type": "Point", "coordinates": [ -0.4760238, 51.3537351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22443030" }, "bbox": [ -0.2513498, 51.1849814, -0.2513498, 51.1849814 ], "geometry": { "type": "Point", "coordinates": [ -0.2513498, 51.1849814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22449397" }, "bbox": [ -0.2420492, 51.1908873, -0.2420492, 51.1908873 ], "geometry": { "type": "Point", "coordinates": [ -0.2420492, 51.1908873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21444593" }, "bbox": [ -0.2636524, 51.190621, -0.2636524, 51.190621 ], "geometry": { "type": "Point", "coordinates": [ -0.2636524, 51.190621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03372418" }, "bbox": [ -0.5259998, 51.1246961, -0.5259998, 51.1246961 ], "geometry": { "type": "Point", "coordinates": [ -0.5259998, 51.1246961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05452424" }, "bbox": [ -0.4953616, 51.1975643, -0.4953616, 51.1975643 ], "geometry": { "type": "Point", "coordinates": [ -0.4953616, 51.1975643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05466979" }, "bbox": [ -0.487377, 51.2123016, -0.487377, 51.2123016 ], "geometry": { "type": "Point", "coordinates": [ -0.487377, 51.2123016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05464981" }, "bbox": [ -0.4907914, 51.2104906, -0.4907914, 51.2104906 ], "geometry": { "type": "Point", "coordinates": [ -0.4907914, 51.2104906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04447689" }, "bbox": [ -0.5022457, 51.1949414, -0.5022457, 51.1949414 ], "geometry": { "type": "Point", "coordinates": [ -0.5022457, 51.1949414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04459927" }, "bbox": [ -0.5010498, 51.1995642, -0.5010498, 51.1995642 ], "geometry": { "type": "Point", "coordinates": [ -0.5010498, 51.1995642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05360391" }, "bbox": [ -0.4998073, 51.1222021, -0.4998073, 51.1222021 ], "geometry": { "type": "Point", "coordinates": [ -0.4998073, 51.1222021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03379428" }, "bbox": [ -0.5164714, 51.125322, -0.5164714, 51.125322 ], "geometry": { "type": "Point", "coordinates": [ -0.5164714, 51.125322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396122" }, "bbox": [ -0.591579, 51.1437501, -0.591579, 51.1437501 ], "geometry": { "type": "Point", "coordinates": [ -0.591579, 51.1437501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98394835" }, "bbox": [ -0.5934446, 51.1449687, -0.5934446, 51.1449687 ], "geometry": { "type": "Point", "coordinates": [ -0.5934446, 51.1449687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395510" }, "bbox": [ -0.5925631, 51.1427191, -0.5925631, 51.1427191 ], "geometry": { "type": "Point", "coordinates": [ -0.5925631, 51.1427191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395736" }, "bbox": [ -0.5920088, 51.1450815, -0.5920088, 51.1450815 ], "geometry": { "type": "Point", "coordinates": [ -0.5920088, 51.1450815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98385394" }, "bbox": [ -0.5933944, 51.1413952, -0.5933944, 51.1413952 ], "geometry": { "type": "Point", "coordinates": [ -0.5933944, 51.1413952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98385296" }, "bbox": [ -0.5934325, 51.1414714, -0.5934325, 51.1414714 ], "geometry": { "type": "Point", "coordinates": [ -0.5934325, 51.1414714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87450117" }, "bbox": [ -0.7561368, 51.1990962, -0.7561368, 51.1990962 ], "geometry": { "type": "Point", "coordinates": [ -0.7561368, 51.1990962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38497922" }, "bbox": [ -0.013808, 51.225358, -0.013808, 51.225358 ], "geometry": { "type": "Point", "coordinates": [ -0.013808, 51.225358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38552585" }, "bbox": [ -0.0187907, 51.2851601, -0.0187907, 51.2851601 ], "geometry": { "type": "Point", "coordinates": [ -0.0187907, 51.2851601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00662128" }, "bbox": [ -0.5611827, 51.3866963, -0.5611827, 51.3866963 ], "geometry": { "type": "Point", "coordinates": [ -0.5611827, 51.3866963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347765" }, "bbox": [ -0.6620626, 51.1035516, -0.6620626, 51.1035516 ], "geometry": { "type": "Point", "coordinates": [ -0.6620626, 51.1035516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95345017" }, "bbox": [ -0.6374509, 51.0988434, -0.6374509, 51.0988434 ], "geometry": { "type": "Point", "coordinates": [ -0.6374509, 51.0988434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81454046" }, "bbox": [ -0.8362683, 51.2025907, -0.8362683, 51.2025907 ], "geometry": { "type": "Point", "coordinates": [ -0.8362683, 51.2025907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07561332" }, "bbox": [ -0.4647034, 51.2962088, -0.4647034, 51.2962088 ], "geometry": { "type": "Point", "coordinates": [ -0.4647034, 51.2962088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07552933" }, "bbox": [ -0.4629296, 51.2869864, -0.4629296, 51.2869864 ], "geometry": { "type": "Point", "coordinates": [ -0.4629296, 51.2869864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32499670" }, "bbox": [ -0.0972646, 51.2310369, -0.0972646, 51.2310369 ], "geometry": { "type": "Point", "coordinates": [ -0.0972646, 51.2310369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21518012" }, "bbox": [ -0.2561346, 51.2463274, -0.2561346, 51.2463274 ], "geometry": { "type": "Point", "coordinates": [ -0.2561346, 51.2463274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32471385" }, "bbox": [ -0.1096537, 51.2146855, -0.1096537, 51.2146855 ], "geometry": { "type": "Point", "coordinates": [ -0.1096537, 51.2146855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43413245" }, "bbox": [ 0.0480356, 51.1544286, 0.0480356, 51.1544286 ], "geometry": { "type": "Point", "coordinates": [ 0.0480356, 51.1544286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19419272" }, "bbox": [ -0.2862295, 51.1620886, -0.2862295, 51.1620886 ], "geometry": { "type": "Point", "coordinates": [ -0.2862295, 51.1620886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25424360" }, "bbox": [ -0.2070524, 51.1689182, -0.2070524, 51.1689182 ], "geometry": { "type": "Point", "coordinates": [ -0.2070524, 51.1689182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13524576" }, "bbox": [ -0.3754136, 51.2627867, -0.3754136, 51.2627867 ], "geometry": { "type": "Point", "coordinates": [ -0.3754136, 51.2627867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26475101" }, "bbox": [ -0.1903847, 51.2083549, -0.1903847, 51.2083549 ], "geometry": { "type": "Point", "coordinates": [ -0.1903847, 51.2083549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19452751" }, "bbox": [ -0.2893132, 51.1959417, -0.2893132, 51.1959417 ], "geometry": { "type": "Point", "coordinates": [ -0.2893132, 51.1959417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39438769" }, "bbox": [ -0.0006075, 51.1752912, -0.0006075, 51.1752912 ], "geometry": { "type": "Point", "coordinates": [ -0.0006075, 51.1752912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35454210" }, "bbox": [ -0.0635882, 51.189094, -0.0635882, 51.189094 ], "geometry": { "type": "Point", "coordinates": [ -0.0635882, 51.189094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35474089" }, "bbox": [ -0.0628173, 51.2141903, -0.0628173, 51.2141903 ], "geometry": { "type": "Point", "coordinates": [ -0.0628173, 51.2141903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01374613" }, "bbox": [ -0.5515975, 51.1244829, -0.5515975, 51.1244829 ], "geometry": { "type": "Point", "coordinates": [ -0.5515975, 51.1244829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22448942" }, "bbox": [ -0.2428828, 51.1857171, -0.2428828, 51.1857171 ], "geometry": { "type": "Point", "coordinates": [ -0.2428828, 51.1857171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24587908" }, "bbox": [ -0.211087, 51.30779, -0.211087, 51.30779 ], "geometry": { "type": "Point", "coordinates": [ -0.211087, 51.30779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30451203" }, "bbox": [ -0.1394547, 51.1897397, -0.1394547, 51.1897397 ], "geometry": { "type": "Point", "coordinates": [ -0.1394547, 51.1897397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04565087" }, "bbox": [ -0.5025267, 51.3013744, -0.5025267, 51.3013744 ], "geometry": { "type": "Point", "coordinates": [ -0.5025267, 51.3013744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09477591" }, "bbox": [ -0.4298432, 51.2198108, -0.4298432, 51.2198108 ], "geometry": { "type": "Point", "coordinates": [ -0.4298432, 51.2198108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16384175" }, "bbox": [ -0.3375899, 51.136207, -0.3375899, 51.136207 ], "geometry": { "type": "Point", "coordinates": [ -0.3375899, 51.136207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20487004" }, "bbox": [ -0.2730708, 51.218903, -0.2730708, 51.218903 ], "geometry": { "type": "Point", "coordinates": [ -0.2730708, 51.218903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03389510" }, "bbox": [ -0.5156674, 51.1327732, -0.5156674, 51.1327732 ], "geometry": { "type": "Point", "coordinates": [ -0.5156674, 51.1327732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92326075" }, "bbox": [ -0.6794722, 51.086561, -0.6794722, 51.086561 ], "geometry": { "type": "Point", "coordinates": [ -0.6794722, 51.086561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18386445" }, "bbox": [ -0.3056254, 51.1329336, -0.3056254, 51.1329336 ], "geometry": { "type": "Point", "coordinates": [ -0.3056254, 51.1329336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12379533" }, "bbox": [ -0.3878471, 51.1241533, -0.3878471, 51.1241533 ], "geometry": { "type": "Point", "coordinates": [ -0.3878471, 51.1241533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12369879" }, "bbox": [ -0.3870262, 51.1191678, -0.3870262, 51.1191678 ], "geometry": { "type": "Point", "coordinates": [ -0.3870262, 51.1191678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13371707" }, "bbox": [ -0.383909, 51.1217843, -0.383909, 51.1217843 ], "geometry": { "type": "Point", "coordinates": [ -0.383909, 51.1217843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13366081" }, "bbox": [ -0.3782735, 51.1192315, -0.3782735, 51.1192315 ], "geometry": { "type": "Point", "coordinates": [ -0.3782735, 51.1192315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13367965" }, "bbox": [ -0.3758102, 51.1178349, -0.3758102, 51.1178349 ], "geometry": { "type": "Point", "coordinates": [ -0.3758102, 51.1178349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13363859" }, "bbox": [ -0.3813983, 51.1174365, -0.3813983, 51.1174365 ], "geometry": { "type": "Point", "coordinates": [ -0.3813983, 51.1174365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16463858" }, "bbox": [ -0.3357363, 51.2066971, -0.3357363, 51.2066971 ], "geometry": { "type": "Point", "coordinates": [ -0.3357363, 51.2066971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372748" }, "bbox": [ -0.339772, 51.1248027, -0.339772, 51.1248027 ], "geometry": { "type": "Point", "coordinates": [ -0.339772, 51.1248027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16463098" }, "bbox": [ -0.3363365, 51.2103704, -0.3363365, 51.2103704 ], "geometry": { "type": "Point", "coordinates": [ -0.3363365, 51.2103704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15478920" }, "bbox": [ -0.3417051, 51.2123647, -0.3417051, 51.2123647 ], "geometry": { "type": "Point", "coordinates": [ -0.3417051, 51.2123647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19610155" }, "bbox": [ -0.2928911, 51.3406438, -0.2928911, 51.3406438 ], "geometry": { "type": "Point", "coordinates": [ -0.2928911, 51.3406438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18619761" }, "bbox": [ -0.2935084, 51.3413748, -0.2935084, 51.3413748 ], "geometry": { "type": "Point", "coordinates": [ -0.2935084, 51.3413748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18615471" }, "bbox": [ -0.2994489, 51.3421415, -0.2994489, 51.3421415 ], "geometry": { "type": "Point", "coordinates": [ -0.2994489, 51.3421415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11401986" }, "bbox": [ -0.4114953, 51.1562788, -0.4114953, 51.1562788 ], "geometry": { "type": "Point", "coordinates": [ -0.4114953, 51.1562788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11404561" }, "bbox": [ -0.4079234, 51.1538988, -0.4079234, 51.1538988 ], "geometry": { "type": "Point", "coordinates": [ -0.4079234, 51.1538988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11411207" }, "bbox": [ -0.4124811, 51.1579445, -0.4124811, 51.1579445 ], "geometry": { "type": "Point", "coordinates": [ -0.4124811, 51.1579445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10366974" }, "bbox": [ -0.419722, 51.1193424, -0.419722, 51.1193424 ], "geometry": { "type": "Point", "coordinates": [ -0.419722, 51.1193424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10366285" }, "bbox": [ -0.4207184, 51.1202766, -0.4207184, 51.1202766 ], "geometry": { "type": "Point", "coordinates": [ -0.4207184, 51.1202766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10364387" }, "bbox": [ -0.4236118, 51.1203795, -0.4236118, 51.1203795 ], "geometry": { "type": "Point", "coordinates": [ -0.4236118, 51.1203795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03472412" }, "bbox": [ -0.5232438, 51.2140156, -0.5232438, 51.2140156 ], "geometry": { "type": "Point", "coordinates": [ -0.5232438, 51.2140156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02456394" }, "bbox": [ -0.5324695, 51.2034828, -0.5324695, 51.2034828 ], "geometry": { "type": "Point", "coordinates": [ -0.5324695, 51.2034828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39483582" }, "bbox": [ -0.0057369, 51.2215293, -0.0057369, 51.2215293 ], "geometry": { "type": "Point", "coordinates": [ -0.0057369, 51.2215293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39484858" }, "bbox": [ -0.0041265, 51.2193968, -0.0041265, 51.2193968 ], "geometry": { "type": "Point", "coordinates": [ -0.0041265, 51.2193968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31479596" }, "bbox": [ -0.1123079, 51.2154793, -0.1123079, 51.2154793 ], "geometry": { "type": "Point", "coordinates": [ -0.1123079, 51.2154793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12504868" }, "bbox": [ -0.3898456, 51.2442943, -0.3898456, 51.2442943 ], "geometry": { "type": "Point", "coordinates": [ -0.3898456, 51.2442943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40419918" }, "bbox": [ 0.0145463, 51.1524929, 0.0145463, 51.1524929 ], "geometry": { "type": "Point", "coordinates": [ 0.0145463, 51.1524929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21496296" }, "bbox": [ -0.2595941, 51.2359571, -0.2595941, 51.2359571 ], "geometry": { "type": "Point", "coordinates": [ -0.2595941, 51.2359571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20503019" }, "bbox": [ -0.2781387, 51.2382218, -0.2781387, 51.2382218 ], "geometry": { "type": "Point", "coordinates": [ -0.2781387, 51.2382218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05489571" }, "bbox": [ -0.4841524, 51.2277885, -0.4841524, 51.2277885 ], "geometry": { "type": "Point", "coordinates": [ -0.4841524, 51.2277885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05486082" }, "bbox": [ -0.488728, 51.2288143, -0.488728, 51.2288143 ], "geometry": { "type": "Point", "coordinates": [ -0.488728, 51.2288143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05488477" }, "bbox": [ -0.4856065, 51.2281371, -0.4856065, 51.2281371 ], "geometry": { "type": "Point", "coordinates": [ -0.4856065, 51.2281371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471411" }, "bbox": [ -0.2815226, 51.2105306, -0.2815226, 51.2105306 ], "geometry": { "type": "Point", "coordinates": [ -0.2815226, 51.2105306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471796" }, "bbox": [ -0.2807159, 51.2182438, -0.2807159, 51.2182438 ], "geometry": { "type": "Point", "coordinates": [ -0.2807159, 51.2182438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20473699" }, "bbox": [ -0.2781976, 51.218392, -0.2781976, 51.218392 ], "geometry": { "type": "Point", "coordinates": [ -0.2781976, 51.218392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20507605" }, "bbox": [ -0.2739305, 51.236217, -0.2739305, 51.236217 ], "geometry": { "type": "Point", "coordinates": [ -0.2739305, 51.236217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21493394" }, "bbox": [ -0.2636419, 51.235855, -0.2636419, 51.235855 ], "geometry": { "type": "Point", "coordinates": [ -0.2636419, 51.235855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21488952" }, "bbox": [ -0.2561201, 51.2229907, -0.2561201, 51.2229907 ], "geometry": { "type": "Point", "coordinates": [ -0.2561201, 51.2229907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21485182" }, "bbox": [ -0.2613939, 51.2256795, -0.2613939, 51.2256795 ], "geometry": { "type": "Point", "coordinates": [ -0.2613939, 51.2256795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21484518" }, "bbox": [ -0.2623482, 51.2199532, -0.2623482, 51.2199532 ], "geometry": { "type": "Point", "coordinates": [ -0.2623482, 51.2199532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21481017" }, "bbox": [ -0.2674521, 51.2198862, -0.2674521, 51.2198862 ], "geometry": { "type": "Point", "coordinates": [ -0.2674521, 51.2198862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10508191" }, "bbox": [ -0.4138554, 51.2465556, -0.4138554, 51.2465556 ], "geometry": { "type": "Point", "coordinates": [ -0.4138554, 51.2465556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37483342" }, "bbox": [ -0.0346046, 51.2185049, -0.0346046, 51.2185049 ], "geometry": { "type": "Point", "coordinates": [ -0.0346046, 51.2185049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03489214" }, "bbox": [ -0.5232028, 51.2248469, -0.5232028, 51.2248469 ], "geometry": { "type": "Point", "coordinates": [ -0.5232028, 51.2248469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37482048" }, "bbox": [ -0.036799, 51.2189551, -0.036799, 51.2189551 ], "geometry": { "type": "Point", "coordinates": [ -0.036799, 51.2189551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37483227" }, "bbox": [ -0.0353765, 51.2172011, -0.0353765, 51.2172011 ], "geometry": { "type": "Point", "coordinates": [ -0.0353765, 51.2172011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37485837" }, "bbox": [ -0.0309956, 51.2175982, -0.0309956, 51.2175982 ], "geometry": { "type": "Point", "coordinates": [ -0.0309956, 51.2175982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39439292" }, "bbox": [ 0.000445, 51.1775811, 0.000445, 51.1775811 ], "geometry": { "type": "Point", "coordinates": [ 0.000445, 51.1775811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39448248" }, "bbox": [ -0.0009364, 51.1822103, -0.0009364, 51.1822103 ], "geometry": { "type": "Point", "coordinates": [ -0.0009364, 51.1822103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40431889" }, "bbox": [ 0.0040247, 51.1770735, 0.0040247, 51.1770735 ], "geometry": { "type": "Point", "coordinates": [ 0.0040247, 51.1770735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99384498" }, "bbox": [ -0.5811235, 51.1431112, -0.5811235, 51.1431112 ], "geometry": { "type": "Point", "coordinates": [ -0.5811235, 51.1431112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98386587" }, "bbox": [ -0.5911671, 51.140832, -0.5911671, 51.140832 ], "geometry": { "type": "Point", "coordinates": [ -0.5911671, 51.140832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00398664" }, "bbox": [ -0.5567969, 51.1470674, -0.5567969, 51.1470674 ], "geometry": { "type": "Point", "coordinates": [ -0.5567969, 51.1470674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03377152" }, "bbox": [ -0.5190944, 51.1276464, -0.5190944, 51.1276464 ], "geometry": { "type": "Point", "coordinates": [ -0.5190944, 51.1276464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40439634" }, "bbox": [ 0.0149527, 51.1718723, 0.0149527, 51.1718723 ], "geometry": { "type": "Point", "coordinates": [ 0.0149527, 51.1718723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40437825" }, "bbox": [ 0.0123422, 51.1710632, 0.0123422, 51.1710632 ], "geometry": { "type": "Point", "coordinates": [ 0.0123422, 51.1710632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40436001" }, "bbox": [ 0.0096816, 51.1690105, 0.0096816, 51.1690105 ], "geometry": { "type": "Point", "coordinates": [ 0.0096816, 51.1690105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06522852" }, "bbox": [ -0.4776791, 51.2617883, -0.4776791, 51.2617883 ], "geometry": { "type": "Point", "coordinates": [ -0.4776791, 51.2617883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89392302" }, "bbox": [ -0.725692, 51.14291, -0.725692, 51.14291 ], "geometry": { "type": "Point", "coordinates": [ -0.725692, 51.14291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89392404" }, "bbox": [ -0.7257195, 51.1436659, -0.7257195, 51.1436659 ], "geometry": { "type": "Point", "coordinates": [ -0.7257195, 51.1436659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89380887" }, "bbox": [ -0.7278311, 51.1422137, -0.7278311, 51.1422137 ], "geometry": { "type": "Point", "coordinates": [ -0.7278311, 51.1422137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07541822" }, "bbox": [ -0.4644765, 51.277737, -0.4644765, 51.277737 ], "geometry": { "type": "Point", "coordinates": [ -0.4644765, 51.277737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29579808" }, "bbox": [ -0.1374279, 51.2977863, -0.1374279, 51.2977863 ], "geometry": { "type": "Point", "coordinates": [ -0.1374279, 51.2977863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31530195" }, "bbox": [ -0.1251077, 51.2695889, -0.1251077, 51.2695889 ], "geometry": { "type": "Point", "coordinates": [ -0.1251077, 51.2695889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27534386" }, "bbox": [ -0.175046, 51.2692702, -0.175046, 51.2692702 ], "geometry": { "type": "Point", "coordinates": [ -0.175046, 51.2692702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29553038" }, "bbox": [ -0.1484466, 51.2827641, -0.1484466, 51.2827641 ], "geometry": { "type": "Point", "coordinates": [ -0.1484466, 51.2827641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30560708" }, "bbox": [ -0.1343794, 51.2901215, -0.1343794, 51.2901215 ], "geometry": { "type": "Point", "coordinates": [ -0.1343794, 51.2901215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30558921" }, "bbox": [ -0.1241502, 51.2811921, -0.1241502, 51.2811921 ], "geometry": { "type": "Point", "coordinates": [ -0.1241502, 51.2811921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30557886" }, "bbox": [ -0.1260823, 51.2868671, -0.1260823, 51.2868671 ], "geometry": { "type": "Point", "coordinates": [ -0.1260823, 51.2868671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30548585" }, "bbox": [ -0.1253101, 51.2778239, -0.1253101, 51.2778239 ], "geometry": { "type": "Point", "coordinates": [ -0.1253101, 51.2778239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06616578" }, "bbox": [ -0.4696786, 51.3450825, -0.4696786, 51.3450825 ], "geometry": { "type": "Point", "coordinates": [ -0.4696786, 51.3450825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25526239" }, "bbox": [ -0.2006828, 51.2567475, -0.2006828, 51.2567475 ], "geometry": { "type": "Point", "coordinates": [ -0.2006828, 51.2567475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33416010" }, "bbox": [ -0.0911007, 51.1535953, -0.0911007, 51.1535953 ], "geometry": { "type": "Point", "coordinates": [ -0.0911007, 51.1535953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33415928" }, "bbox": [ -0.0910658, 51.1552145, -0.0910658, 51.1552145 ], "geometry": { "type": "Point", "coordinates": [ -0.0910658, 51.1552145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33414113" }, "bbox": [ -0.0937334, 51.153895, -0.0937334, 51.153895 ], "geometry": { "type": "Point", "coordinates": [ -0.0937334, 51.153895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39453672" }, "bbox": [ -0.0068219, 51.1938258, -0.0068219, 51.1938258 ], "geometry": { "type": "Point", "coordinates": [ -0.0068219, 51.1938258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39464801" }, "bbox": [ -0.0052362, 51.1960201, -0.0052362, 51.1960201 ], "geometry": { "type": "Point", "coordinates": [ -0.0052362, 51.1960201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33411005" }, "bbox": [ -0.0982306, 51.1532936, -0.0982306, 51.1532936 ], "geometry": { "type": "Point", "coordinates": [ -0.0982306, 51.1532936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33414287" }, "bbox": [ -0.093386, 51.1602924, -0.093386, 51.1602924 ], "geometry": { "type": "Point", "coordinates": [ -0.093386, 51.1602924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33411984" }, "bbox": [ -0.0965239, 51.1601346, -0.0965239, 51.1601346 ], "geometry": { "type": "Point", "coordinates": [ -0.0965239, 51.1601346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33416474" }, "bbox": [ -0.0902965, 51.1593212, -0.0902965, 51.1593212 ], "geometry": { "type": "Point", "coordinates": [ -0.0902965, 51.1593212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33416655" }, "bbox": [ -0.0900369, 51.1577462, -0.0900369, 51.1577462 ], "geometry": { "type": "Point", "coordinates": [ -0.0900369, 51.1577462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33415842" }, "bbox": [ -0.0912238, 51.1564251, -0.0912238, 51.1564251 ], "geometry": { "type": "Point", "coordinates": [ -0.0912238, 51.1564251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25520660" }, "bbox": [ -0.2092218, 51.2588172, -0.2092218, 51.2588172 ], "geometry": { "type": "Point", "coordinates": [ -0.2092218, 51.2588172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25520655" }, "bbox": [ -0.2093609, 51.2583042, -0.2093609, 51.2583042 ], "geometry": { "type": "Point", "coordinates": [ -0.2093609, 51.2583042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24528256" }, "bbox": [ -0.2123941, 51.2586598, -0.2123941, 51.2586598 ], "geometry": { "type": "Point", "coordinates": [ -0.2123941, 51.2586598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24528954" }, "bbox": [ -0.2120642, 51.2580982, -0.2120642, 51.2580982 ], "geometry": { "type": "Point", "coordinates": [ -0.2120642, 51.2580982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529957" }, "bbox": [ -0.2101182, 51.2584374, -0.2101182, 51.2584374 ], "geometry": { "type": "Point", "coordinates": [ -0.2101182, 51.2584374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25522373" }, "bbox": [ -0.2065017, 51.2599544, -0.2065017, 51.2599544 ], "geometry": { "type": "Point", "coordinates": [ -0.2065017, 51.2599544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39458188" }, "bbox": [ -0.0005555, 51.195047, -0.0005555, 51.195047 ], "geometry": { "type": "Point", "coordinates": [ -0.0005555, 51.195047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39453550" }, "bbox": [ -0.007108, 51.191726, -0.007108, 51.191726 ], "geometry": { "type": "Point", "coordinates": [ -0.007108, 51.191726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39452247" }, "bbox": [ -0.0089871, 51.1915533, -0.0089871, 51.1915533 ], "geometry": { "type": "Point", "coordinates": [ -0.0089871, 51.1915533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30419689" }, "bbox": [ -0.1285445, 51.1612566, -0.1285445, 51.1612566 ], "geometry": { "type": "Point", "coordinates": [ -0.1285445, 51.1612566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25436605" }, "bbox": [ -0.2039468, 51.1730053, -0.2039468, 51.1730053 ], "geometry": { "type": "Point", "coordinates": [ -0.2039468, 51.1730053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25429952" }, "bbox": [ -0.1992755, 51.1682262, -0.1992755, 51.1682262 ], "geometry": { "type": "Point", "coordinates": [ -0.1992755, 51.1682262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18628771" }, "bbox": [ -0.2944544, 51.3510079, -0.2944544, 51.3510079 ], "geometry": { "type": "Point", "coordinates": [ -0.2944544, 51.3510079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18627454" }, "bbox": [ -0.2962731, 51.3495325, -0.2962731, 51.3495325 ], "geometry": { "type": "Point", "coordinates": [ -0.2962731, 51.3495325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18627634" }, "bbox": [ -0.2960938, 51.347772, -0.2960938, 51.347772 ], "geometry": { "type": "Point", "coordinates": [ -0.2960938, 51.347772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18613286" }, "bbox": [ -0.3024021, 51.3435116, -0.3024021, 51.3435116 ], "geometry": { "type": "Point", "coordinates": [ -0.3024021, 51.3435116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18616389" }, "bbox": [ -0.2979661, 51.3440374, -0.2979661, 51.3440374 ], "geometry": { "type": "Point", "coordinates": [ -0.2979661, 51.3440374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18614891" }, "bbox": [ -0.3002389, 51.3439949, -0.3002389, 51.3439949 ], "geometry": { "type": "Point", "coordinates": [ -0.3002389, 51.3439949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14619490" }, "bbox": [ -0.3511154, 51.3444945, -0.3511154, 51.3444945 ], "geometry": { "type": "Point", "coordinates": [ -0.3511154, 51.3444945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14618691" }, "bbox": [ -0.3522765, 51.3447736, -0.3522765, 51.3447736 ], "geometry": { "type": "Point", "coordinates": [ -0.3522765, 51.3447736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14625156" }, "bbox": [ -0.3568017, 51.3506454, -0.3568017, 51.3506454 ], "geometry": { "type": "Point", "coordinates": [ -0.3568017, 51.3506454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14629409" }, "bbox": [ -0.3510027, 51.3462797, -0.3510027, 51.3462797 ], "geometry": { "type": "Point", "coordinates": [ -0.3510027, 51.3462797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14625562" }, "bbox": [ -0.356367, 51.3511225, -0.356367, 51.3511225 ], "geometry": { "type": "Point", "coordinates": [ -0.356367, 51.3511225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15614185" }, "bbox": [ -0.3444068, 51.3440573, -0.3444068, 51.3440573 ], "geometry": { "type": "Point", "coordinates": [ -0.3444068, 51.3440573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15631706" }, "bbox": [ -0.3476314, 51.3547914, -0.3476314, 51.3547914 ], "geometry": { "type": "Point", "coordinates": [ -0.3476314, 51.3547914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15621672" }, "bbox": [ -0.3476301, 51.351928, -0.3476301, 51.351928 ], "geometry": { "type": "Point", "coordinates": [ -0.3476301, 51.351928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15624769" }, "bbox": [ -0.3431666, 51.3516082, -0.3431666, 51.3516082 ], "geometry": { "type": "Point", "coordinates": [ -0.3431666, 51.3516082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15625675" }, "bbox": [ -0.3419165, 51.3521304, -0.3419165, 51.3521304 ], "geometry": { "type": "Point", "coordinates": [ -0.3419165, 51.3521304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15624721" }, "bbox": [ -0.34384, 51.3475386, -0.34384, 51.3475386 ], "geometry": { "type": "Point", "coordinates": [ -0.34384, 51.3475386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15621556" }, "bbox": [ -0.3478373, 51.3504911, -0.3478373, 51.3504911 ], "geometry": { "type": "Point", "coordinates": [ -0.3478373, 51.3504911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15626313" }, "bbox": [ -0.3412562, 51.346485, -0.3412562, 51.346485 ], "geometry": { "type": "Point", "coordinates": [ -0.3412562, 51.346485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15625260" }, "bbox": [ -0.3424302, 51.3508326, -0.3424302, 51.3508326 ], "geometry": { "type": "Point", "coordinates": [ -0.3424302, 51.3508326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15625266" }, "bbox": [ -0.3424466, 51.3513164, -0.3424466, 51.3513164 ], "geometry": { "type": "Point", "coordinates": [ -0.3424466, 51.3513164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15625977" }, "bbox": [ -0.3414171, 51.3523108, -0.3414171, 51.3523108 ], "geometry": { "type": "Point", "coordinates": [ -0.3414171, 51.3523108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15625173" }, "bbox": [ -0.3426053, 51.3519285, -0.3426053, 51.3519285 ], "geometry": { "type": "Point", "coordinates": [ -0.3426053, 51.3519285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15626268" }, "bbox": [ -0.3403935, 51.351369, -0.3403935, 51.351369 ], "geometry": { "type": "Point", "coordinates": [ -0.3403935, 51.351369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15622493" }, "bbox": [ -0.3462603, 51.3535714, -0.3462603, 51.3535714 ], "geometry": { "type": "Point", "coordinates": [ -0.3462603, 51.3535714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33403181" }, "bbox": [ -0.0952323, 51.1510704, -0.0952323, 51.1510704 ], "geometry": { "type": "Point", "coordinates": [ -0.0952323, 51.1510704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07535630" }, "bbox": [ -0.4598453, 51.2689115, -0.4598453, 51.2689115 ], "geometry": { "type": "Point", "coordinates": [ -0.4598453, 51.2689115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33404771" }, "bbox": [ -0.0930988, 51.1500645, -0.0930988, 51.1500645 ], "geometry": { "type": "Point", "coordinates": [ -0.0930988, 51.1500645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10569969" }, "bbox": [ -0.4094877, 51.298468, -0.4094877, 51.298468 ], "geometry": { "type": "Point", "coordinates": [ -0.4094877, 51.298468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28525187" }, "bbox": [ -0.1596477, 51.2604833, -0.1596477, 51.2604833 ], "geometry": { "type": "Point", "coordinates": [ -0.1596477, 51.2604833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28524578" }, "bbox": [ -0.1603738, 51.2596156, -0.1603738, 51.2596156 ], "geometry": { "type": "Point", "coordinates": [ -0.1603738, 51.2596156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28523237" }, "bbox": [ -0.1623111, 51.2559729, -0.1623111, 51.2559729 ], "geometry": { "type": "Point", "coordinates": [ -0.1623111, 51.2559729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03726784" }, "bbox": [ -0.5098552, 51.4447021, -0.5098552, 51.4447021 ], "geometry": { "type": "Point", "coordinates": [ -0.5098552, 51.4447021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03724012" }, "bbox": [ -0.5137417, 51.438658, -0.5137417, 51.438658 ], "geometry": { "type": "Point", "coordinates": [ -0.5137417, 51.438658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04710092" }, "bbox": [ -0.5047589, 51.4366756, -0.5047589, 51.4366756 ], "geometry": { "type": "Point", "coordinates": [ -0.5047589, 51.4366756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02738021" }, "bbox": [ -0.5220517, 51.4484924, -0.5220517, 51.4484924 ], "geometry": { "type": "Point", "coordinates": [ -0.5220517, 51.4484924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11559064" }, "bbox": [ -0.3965882, 51.2889312, -0.3965882, 51.2889312 ], "geometry": { "type": "Point", "coordinates": [ -0.3965882, 51.2889312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35486955" }, "bbox": [ -0.0583641, 51.2200748, -0.0583641, 51.2200748 ], "geometry": { "type": "Point", "coordinates": [ -0.0583641, 51.2200748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10518430" }, "bbox": [ -0.4135241, 51.2501106, -0.4135241, 51.2501106 ], "geometry": { "type": "Point", "coordinates": [ -0.4135241, 51.2501106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27444799" }, "bbox": [ -0.177108, 51.1900963, -0.177108, 51.1900963 ], "geometry": { "type": "Point", "coordinates": [ -0.177108, 51.1900963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28542924" }, "bbox": [ -0.1624861, 51.2729494, -0.1624861, 51.2729494 ], "geometry": { "type": "Point", "coordinates": [ -0.1624861, 51.2729494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28494705" }, "bbox": [ -0.1616125, 51.2262007, -0.1616125, 51.2262007 ], "geometry": { "type": "Point", "coordinates": [ -0.1616125, 51.2262007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18561856" }, "bbox": [ -0.2987416, 51.2952426, -0.2987416, 51.2952426 ], "geometry": { "type": "Point", "coordinates": [ -0.2987416, 51.2952426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03735858" }, "bbox": [ -0.510695, 51.4518352, -0.510695, 51.4518352 ], "geometry": { "type": "Point", "coordinates": [ -0.510695, 51.4518352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03753932" }, "bbox": [ -0.512759, 51.4676505, -0.512759, 51.4676505 ], "geometry": { "type": "Point", "coordinates": [ -0.512759, 51.4676505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03753005" }, "bbox": [ -0.5142366, 51.4651896, -0.5142366, 51.4651896 ], "geometry": { "type": "Point", "coordinates": [ -0.5142366, 51.4651896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03754217" }, "bbox": [ -0.5124807, 51.4661713, -0.5124807, 51.4661713 ], "geometry": { "type": "Point", "coordinates": [ -0.5124807, 51.4661713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33402888" }, "bbox": [ -0.0956991, 51.1518029, -0.0956991, 51.1518029 ], "geometry": { "type": "Point", "coordinates": [ -0.0956991, 51.1518029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33403099" }, "bbox": [ -0.0954226, 51.1526256, -0.0954226, 51.1526256 ], "geometry": { "type": "Point", "coordinates": [ -0.0954226, 51.1526256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00682997" }, "bbox": [ -0.5593159, 51.4108922, -0.5593159, 51.4108922 ], "geometry": { "type": "Point", "coordinates": [ -0.5593159, 51.4108922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16555419" }, "bbox": [ -0.3303857, 51.2840038, -0.3303857, 51.2840038 ], "geometry": { "type": "Point", "coordinates": [ -0.3303857, 51.2840038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05612191" }, "bbox": [ -0.489837, 51.3467843, -0.489837, 51.3467843 ], "geometry": { "type": "Point", "coordinates": [ -0.489837, 51.3467843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03614608" }, "bbox": [ -0.5162293, 51.3393713, -0.5162293, 51.3393713 ], "geometry": { "type": "Point", "coordinates": [ -0.5162293, 51.3393713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03619127" }, "bbox": [ -0.5076647, 51.3413687, -0.5076647, 51.3413687 ], "geometry": { "type": "Point", "coordinates": [ -0.5076647, 51.3413687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04614048" }, "bbox": [ -0.5028466, 51.3427611, -0.5028466, 51.3427611 ], "geometry": { "type": "Point", "coordinates": [ -0.5028466, 51.3427611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04619375" }, "bbox": [ -0.4933259, 51.3455703, -0.4933259, 51.3455703 ], "geometry": { "type": "Point", "coordinates": [ -0.4933259, 51.3455703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10541542" }, "bbox": [ -0.4220227, 51.2783123, -0.4220227, 51.2783123 ], "geometry": { "type": "Point", "coordinates": [ -0.4220227, 51.2783123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33412313" }, "bbox": [ -0.0963799, 51.1539321, -0.0963799, 51.1539321 ], "geometry": { "type": "Point", "coordinates": [ -0.0963799, 51.1539321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33413744" }, "bbox": [ -0.0942889, 51.156869, -0.0942889, 51.156869 ], "geometry": { "type": "Point", "coordinates": [ -0.0942889, 51.156869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33411830" }, "bbox": [ -0.0970189, 51.1554657, -0.0970189, 51.1554657 ], "geometry": { "type": "Point", "coordinates": [ -0.0970189, 51.1554657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33412061" }, "bbox": [ -0.0967624, 51.1583467, -0.0967624, 51.1583467 ], "geometry": { "type": "Point", "coordinates": [ -0.0967624, 51.1583467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33410644" }, "bbox": [ -0.0987408, 51.157047, -0.0987408, 51.157047 ], "geometry": { "type": "Point", "coordinates": [ -0.0987408, 51.157047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33414229" }, "bbox": [ -0.0935133, 51.155201, -0.0935133, 51.155201 ], "geometry": { "type": "Point", "coordinates": [ -0.0935133, 51.155201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33413764" }, "bbox": [ -0.0943217, 51.158445, -0.0943217, 51.158445 ], "geometry": { "type": "Point", "coordinates": [ -0.0943217, 51.158445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33411418" }, "bbox": [ -0.0982692, 51.1545578, -0.0982692, 51.1545578 ], "geometry": { "type": "Point", "coordinates": [ -0.0982692, 51.1545578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38459795" }, "bbox": [ -0.0124581, 51.1959124, -0.0124581, 51.1959124 ], "geometry": { "type": "Point", "coordinates": [ -0.0124581, 51.1959124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39450564" }, "bbox": [ -0.0112854, 51.1931911, -0.0112854, 51.1931911 ], "geometry": { "type": "Point", "coordinates": [ -0.0112854, 51.1931911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39451354" }, "bbox": [ -0.010182, 51.1924613, -0.010182, 51.1924613 ], "geometry": { "type": "Point", "coordinates": [ -0.010182, 51.1924613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39452778" }, "bbox": [ -0.0085794, 51.194455, -0.0085794, 51.194455 ], "geometry": { "type": "Point", "coordinates": [ -0.0085794, 51.194455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39451078" }, "bbox": [ -0.0106447, 51.194372, -0.0106447, 51.194372 ], "geometry": { "type": "Point", "coordinates": [ -0.0106447, 51.194372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39450590" }, "bbox": [ -0.0111774, 51.1955302, -0.0111774, 51.1955302 ], "geometry": { "type": "Point", "coordinates": [ -0.0111774, 51.1955302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39461701" }, "bbox": [ -0.0094393, 51.196422, -0.0094393, 51.196422 ], "geometry": { "type": "Point", "coordinates": [ -0.0094393, 51.196422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24499854" }, "bbox": [ -0.2108112, 51.2317316, -0.2108112, 51.2317316 ], "geometry": { "type": "Point", "coordinates": [ -0.2108112, 51.2317316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24498038" }, "bbox": [ -0.2133559, 51.2299669, -0.2133559, 51.2299669 ], "geometry": { "type": "Point", "coordinates": [ -0.2133559, 51.2299669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24498186" }, "bbox": [ -0.213319, 51.2343065, -0.213319, 51.2343065 ], "geometry": { "type": "Point", "coordinates": [ -0.213319, 51.2343065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16501886" }, "bbox": [ -0.3357766, 51.2449396, -0.3357766, 51.2449396 ], "geometry": { "type": "Point", "coordinates": [ -0.3357766, 51.2449396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33415257" }, "bbox": [ -0.0919974, 51.1578774, -0.0919974, 51.1578774 ], "geometry": { "type": "Point", "coordinates": [ -0.0919974, 51.1578774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37412909" }, "bbox": [ -0.0386267, 51.1523676, -0.0386267, 51.1523676 ], "geometry": { "type": "Point", "coordinates": [ -0.0386267, 51.1523676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38471791" }, "bbox": [ -0.0225056, 51.2138668, -0.0225056, 51.2138668 ], "geometry": { "type": "Point", "coordinates": [ -0.0225056, 51.2138668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07511657" }, "bbox": [ -0.464762, 51.253786, -0.464762, 51.253786 ], "geometry": { "type": "Point", "coordinates": [ -0.464762, 51.253786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02693130" }, "bbox": [ -0.5301884, 51.4135803, -0.5301884, 51.4135803 ], "geometry": { "type": "Point", "coordinates": [ -0.5301884, 51.4135803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02694120" }, "bbox": [ -0.528646, 51.4126752, -0.528646, 51.4126752 ], "geometry": { "type": "Point", "coordinates": [ -0.528646, 51.4126752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10566966" }, "bbox": [ -0.4136454, 51.298322, -0.4136454, 51.298322 ], "geometry": { "type": "Point", "coordinates": [ -0.4136454, 51.298322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35551987" }, "bbox": [ -0.0630133, 51.2872772, -0.0630133, 51.2872772 ], "geometry": { "type": "Point", "coordinates": [ -0.0630133, 51.2872772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34567477" }, "bbox": [ -0.0689997, 51.294172, -0.0689997, 51.294172 ], "geometry": { "type": "Point", "coordinates": [ -0.0689997, 51.294172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34568890" }, "bbox": [ -0.0668815, 51.2952818, -0.0668815, 51.2952818 ], "geometry": { "type": "Point", "coordinates": [ -0.0668815, 51.2952818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34568451" }, "bbox": [ -0.0675335, 51.2917903, -0.0675335, 51.2917903 ], "geometry": { "type": "Point", "coordinates": [ -0.0675335, 51.2917903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41439161" }, "bbox": [ 0.0287644, 51.1741302, 0.0287644, 51.1741302 ], "geometry": { "type": "Point", "coordinates": [ 0.0287644, 51.1741302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87353570" }, "bbox": [ -0.7531928, 51.1138911, -0.7531928, 51.1138911 ], "geometry": { "type": "Point", "coordinates": [ -0.7531928, 51.1138911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16473055" }, "bbox": [ -0.3364002, 51.2151468, -0.3364002, 51.2151468 ], "geometry": { "type": "Point", "coordinates": [ -0.3364002, 51.2151468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16481403" }, "bbox": [ -0.338552, 51.2193255, -0.338552, 51.2193255 ], "geometry": { "type": "Point", "coordinates": [ -0.338552, 51.2193255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390043" }, "bbox": [ -0.6145642, 51.1459258, -0.6145642, 51.1459258 ], "geometry": { "type": "Point", "coordinates": [ -0.6145642, 51.1459258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98383409" }, "bbox": [ -0.5958081, 51.1333596, -0.5958081, 51.1333596 ], "geometry": { "type": "Point", "coordinates": [ -0.5958081, 51.1333596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98387316" }, "bbox": [ -0.5900744, 51.1341401, -0.5900744, 51.1341401 ], "geometry": { "type": "Point", "coordinates": [ -0.5900744, 51.1341401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98377886" }, "bbox": [ -0.5898052, 51.1316013, -0.5898052, 51.1316013 ], "geometry": { "type": "Point", "coordinates": [ -0.5898052, 51.1316013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87396125" }, "bbox": [ -0.7487218, 51.1457173, -0.7487218, 51.1457173 ], "geometry": { "type": "Point", "coordinates": [ -0.7487218, 51.1457173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39575893" }, "bbox": [ 0.0002008, 51.3033497, 0.0002008, 51.3033497 ], "geometry": { "type": "Point", "coordinates": [ 0.0002008, 51.3033497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39585801" }, "bbox": [ 0.0010431, 51.3041224, 0.0010431, 51.3041224 ], "geometry": { "type": "Point", "coordinates": [ 0.0010431, 51.3041224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89388932" }, "bbox": [ -0.7165004, 51.1371575, -0.7165004, 51.1371575 ], "geometry": { "type": "Point", "coordinates": [ -0.7165004, 51.1371575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42462157" }, "bbox": [ 0.0340497, 51.2008461, 0.0340497, 51.2008461 ], "geometry": { "type": "Point", "coordinates": [ 0.0340497, 51.2008461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82478292" }, "bbox": [ -0.8155634, 51.2244191, -0.8155634, 51.2244191 ], "geometry": { "type": "Point", "coordinates": [ -0.8155634, 51.2244191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82461917" }, "bbox": [ -0.8248813, 51.208828, -0.8248813, 51.208828 ], "geometry": { "type": "Point", "coordinates": [ -0.8248813, 51.208828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82469024" }, "bbox": [ -0.8148466, 51.2092698, -0.8148466, 51.2092698 ], "geometry": { "type": "Point", "coordinates": [ -0.8148466, 51.2092698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82462432" }, "bbox": [ -0.8240618, 51.2101368, -0.8240618, 51.2101368 ], "geometry": { "type": "Point", "coordinates": [ -0.8240618, 51.2101368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82463411" }, "bbox": [ -0.8226538, 51.2082753, -0.8226538, 51.2082753 ], "geometry": { "type": "Point", "coordinates": [ -0.8226538, 51.2082753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82468209" }, "bbox": [ -0.8158104, 51.2081456, -0.8158104, 51.2081456 ], "geometry": { "type": "Point", "coordinates": [ -0.8158104, 51.2081456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82467912" }, "bbox": [ -0.8162749, 51.2083709, -0.8162749, 51.2083709 ], "geometry": { "type": "Point", "coordinates": [ -0.8162749, 51.2083709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81455432" }, "bbox": [ -0.8342236, 51.2012924, -0.8342236, 51.2012924 ], "geometry": { "type": "Point", "coordinates": [ -0.8342236, 51.2012924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459146" }, "bbox": [ -0.8289867, 51.2025408, -0.8289867, 51.2025408 ], "geometry": { "type": "Point", "coordinates": [ -0.8289867, 51.2025408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89396595" }, "bbox": [ -0.7193642, 51.1519306, -0.7193642, 51.1519306 ], "geometry": { "type": "Point", "coordinates": [ -0.7193642, 51.1519306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88381949" }, "bbox": [ -0.7406794, 51.1389337, -0.7406794, 51.1389337 ], "geometry": { "type": "Point", "coordinates": [ -0.7406794, 51.1389337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88380986" }, "bbox": [ -0.7419996, 51.1423347, -0.7419996, 51.1423347 ], "geometry": { "type": "Point", "coordinates": [ -0.7419996, 51.1423347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88381867" }, "bbox": [ -0.7407583, 51.1405938, -0.7407583, 51.1405938 ], "geometry": { "type": "Point", "coordinates": [ -0.7407583, 51.1405938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93470153" }, "bbox": [ -0.6696251, 51.2194248, -0.6696251, 51.2194248 ], "geometry": { "type": "Point", "coordinates": [ -0.6696251, 51.2194248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95528916" }, "bbox": [ -0.6271538, 51.2605672, -0.6271538, 51.2605672 ], "geometry": { "type": "Point", "coordinates": [ -0.6271538, 51.2605672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92433974" }, "bbox": [ -0.679473, 51.1854326, -0.679473, 51.1854326 ], "geometry": { "type": "Point", "coordinates": [ -0.679473, 51.1854326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92434373" }, "bbox": [ -0.6786247, 51.1853885, -0.6786247, 51.1853885 ], "geometry": { "type": "Point", "coordinates": [ -0.6786247, 51.1853885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81458990" }, "bbox": [ -0.8290316, 51.206592, -0.8290316, 51.206592 ], "geometry": { "type": "Point", "coordinates": [ -0.8290316, 51.206592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550313" }, "bbox": [ -0.5957185, 51.2867577, -0.5957185, 51.2867577 ], "geometry": { "type": "Point", "coordinates": [ -0.5957185, 51.2867577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89423615" }, "bbox": [ -0.7232729, 51.1717764, -0.7232729, 51.1717764 ], "geometry": { "type": "Point", "coordinates": [ -0.7232729, 51.1717764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89427601" }, "bbox": [ -0.7172336, 51.1705396, -0.7172336, 51.1705396 ], "geometry": { "type": "Point", "coordinates": [ -0.7172336, 51.1705396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91481478" }, "bbox": [ -0.6959315, 51.2310577, -0.6959315, 51.2310577 ], "geometry": { "type": "Point", "coordinates": [ -0.6959315, 51.2310577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97468031" }, "bbox": [ -0.6015734, 51.2076107, -0.6015734, 51.2076107 ], "geometry": { "type": "Point", "coordinates": [ -0.6015734, 51.2076107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91420992" }, "bbox": [ -0.6982205, 51.1782637, -0.6982205, 51.1782637 ], "geometry": { "type": "Point", "coordinates": [ -0.6982205, 51.1782637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91421560" }, "bbox": [ -0.6975838, 51.1753269, -0.6975838, 51.1753269 ], "geometry": { "type": "Point", "coordinates": [ -0.6975838, 51.1753269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91425759" }, "bbox": [ -0.6915326, 51.1752387, -0.6915326, 51.1752387 ], "geometry": { "type": "Point", "coordinates": [ -0.6915326, 51.1752387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91424256" }, "bbox": [ -0.6936104, 51.1749807, -0.6936104, 51.1749807 ], "geometry": { "type": "Point", "coordinates": [ -0.6936104, 51.1749807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90429897" }, "bbox": [ -0.6996888, 51.1788077, -0.6996888, 51.1788077 ], "geometry": { "type": "Point", "coordinates": [ -0.6996888, 51.1788077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90495977" }, "bbox": [ -0.7036168, 51.2399245, -0.7036168, 51.2399245 ], "geometry": { "type": "Point", "coordinates": [ -0.7036168, 51.2399245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97551562" }, "bbox": [ -0.6084598, 51.2914671, -0.6084598, 51.2914671 ], "geometry": { "type": "Point", "coordinates": [ -0.6084598, 51.2914671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98647305" }, "bbox": [ -0.5829232, 51.3668708, -0.5829232, 51.3668708 ], "geometry": { "type": "Point", "coordinates": [ -0.5829232, 51.3668708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99487875" }, "bbox": [ -0.5723394, 51.229274, -0.5723394, 51.229274 ], "geometry": { "type": "Point", "coordinates": [ -0.5723394, 51.229274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379173" }, "bbox": [ -0.687823, 51.1314562, -0.687823, 51.1314562 ], "geometry": { "type": "Point", "coordinates": [ -0.687823, 51.1314562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91378872" }, "bbox": [ -0.6882941, 51.1313962, -0.6882941, 51.1313962 ], "geometry": { "type": "Point", "coordinates": [ -0.6882941, 51.1313962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86414728" }, "bbox": [ -0.7645091, 51.1642484, -0.7645091, 51.1642484 ], "geometry": { "type": "Point", "coordinates": [ -0.7645091, 51.1642484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477167" }, "bbox": [ -0.6737701, 51.2207067, -0.6737701, 51.2207067 ], "geometry": { "type": "Point", "coordinates": [ -0.6737701, 51.2207067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476665" }, "bbox": [ -0.6744655, 51.22056, -0.6744655, 51.22056 ], "geometry": { "type": "Point", "coordinates": [ -0.6744655, 51.22056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92478361" }, "bbox": [ -0.6721653, 51.2201707, -0.6721653, 51.2201707 ], "geometry": { "type": "Point", "coordinates": [ -0.6721653, 51.2201707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477859" }, "bbox": [ -0.6728435, 51.2200147, -0.6728435, 51.2200147 ], "geometry": { "type": "Point", "coordinates": [ -0.6728435, 51.2200147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94507497" }, "bbox": [ -0.6438746, 51.2501721, -0.6438746, 51.2501721 ], "geometry": { "type": "Point", "coordinates": [ -0.6438746, 51.2501721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92447121" }, "bbox": [ -0.6749216, 51.1894843, -0.6749216, 51.1894843 ], "geometry": { "type": "Point", "coordinates": [ -0.6749216, 51.1894843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86487606" }, "bbox": [ -0.7589476, 51.2251669, -0.7589476, 51.2251669 ], "geometry": { "type": "Point", "coordinates": [ -0.7589476, 51.2251669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86487523" }, "bbox": [ -0.7591155, 51.2266546, -0.7591155, 51.2266546 ], "geometry": { "type": "Point", "coordinates": [ -0.7591155, 51.2266546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89510445" }, "bbox": [ -0.7252559, 51.2554354, -0.7252559, 51.2554354 ], "geometry": { "type": "Point", "coordinates": [ -0.7252559, 51.2554354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89512962" }, "bbox": [ -0.7218512, 51.2567473, -0.7218512, 51.2567473 ], "geometry": { "type": "Point", "coordinates": [ -0.7218512, 51.2567473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89510142" }, "bbox": [ -0.7254517, 51.2551215, -0.7254517, 51.2551215 ], "geometry": { "type": "Point", "coordinates": [ -0.7254517, 51.2551215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89513780" }, "bbox": [ -0.721022, 51.2618587, -0.721022, 51.2618587 ], "geometry": { "type": "Point", "coordinates": [ -0.721022, 51.2618587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89513060" }, "bbox": [ -0.7216819, 51.2565874, -0.7216819, 51.2565874 ], "geometry": { "type": "Point", "coordinates": [ -0.7216819, 51.2565874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89523012" }, "bbox": [ -0.7212134, 51.2606611, -0.7212134, 51.2606611 ], "geometry": { "type": "Point", "coordinates": [ -0.7212134, 51.2606611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89542129" }, "bbox": [ -0.722339, 51.2807695, -0.722339, 51.2807695 ], "geometry": { "type": "Point", "coordinates": [ -0.722339, 51.2807695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89542465" }, "bbox": [ -0.72166, 51.2844971, -0.72166, 51.2844971 ], "geometry": { "type": "Point", "coordinates": [ -0.72166, 51.2844971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89533279" }, "bbox": [ -0.7217426, 51.2765755, -0.7217426, 51.2765755 ], "geometry": { "type": "Point", "coordinates": [ -0.7217426, 51.2765755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89533673" }, "bbox": [ -0.72073, 51.2763398, -0.72073, 51.2763398 ], "geometry": { "type": "Point", "coordinates": [ -0.72073, 51.2763398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97364039" }, "bbox": [ -0.6098021, 51.1185156, -0.6098021, 51.1185156 ], "geometry": { "type": "Point", "coordinates": [ -0.6098021, 51.1185156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97365358" }, "bbox": [ -0.6078944, 51.1202777, -0.6078944, 51.1202777 ], "geometry": { "type": "Point", "coordinates": [ -0.6078944, 51.1202777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97365237" }, "bbox": [ -0.6073888, 51.1181543, -0.6073888, 51.1181543 ], "geometry": { "type": "Point", "coordinates": [ -0.6073888, 51.1181543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92516896" }, "bbox": [ -0.6730413, 51.2593529, -0.6730413, 51.2593529 ], "geometry": { "type": "Point", "coordinates": [ -0.6730413, 51.2593529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92516598" }, "bbox": [ -0.6735121, 51.2594808, -0.6735121, 51.2594808 ], "geometry": { "type": "Point", "coordinates": [ -0.6735121, 51.2594808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92516197" }, "bbox": [ -0.6739709, 51.2594866, -0.6739709, 51.2594866 ], "geometry": { "type": "Point", "coordinates": [ -0.6739709, 51.2594866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91494672" }, "bbox": [ -0.691283, 51.2392635, -0.691283, 51.2392635 ], "geometry": { "type": "Point", "coordinates": [ -0.691283, 51.2392635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91495071" }, "bbox": [ -0.6907512, 51.2392987, -0.6907512, 51.2392987 ], "geometry": { "type": "Point", "coordinates": [ -0.6907512, 51.2392987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91495865" }, "bbox": [ -0.6894055, 51.238706, -0.6894055, 51.238706 ], "geometry": { "type": "Point", "coordinates": [ -0.6894055, 51.238706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91495769" }, "bbox": [ -0.689641, 51.2390609, -0.689641, 51.2390609 ], "geometry": { "type": "Point", "coordinates": [ -0.689641, 51.2390609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89397646" }, "bbox": [ -0.7180052, 51.1473877, -0.7180052, 51.1473877 ], "geometry": { "type": "Point", "coordinates": [ -0.7180052, 51.1473877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91458974" }, "bbox": [ -0.6861161, 51.2034617, -0.6861161, 51.2034617 ], "geometry": { "type": "Point", "coordinates": [ -0.6861161, 51.2034617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90506719" }, "bbox": [ -0.702541, 51.2436936, -0.702541, 51.2436936 ], "geometry": { "type": "Point", "coordinates": [ -0.702541, 51.2436936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90502909" }, "bbox": [ -0.7077918, 51.2428993, -0.7077918, 51.2428993 ], "geometry": { "type": "Point", "coordinates": [ -0.7077918, 51.2428993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96386671" }, "bbox": [ -0.6195705, 51.1395543, -0.6195705, 51.1395543 ], "geometry": { "type": "Point", "coordinates": [ -0.6195705, 51.1395543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93567835" }, "bbox": [ -0.6564304, 51.2985051, -0.6564304, 51.2985051 ], "geometry": { "type": "Point", "coordinates": [ -0.6564304, 51.2985051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91459618" }, "bbox": [ -0.6850713, 51.1985585, -0.6850713, 51.1985585 ], "geometry": { "type": "Point", "coordinates": [ -0.6850713, 51.1985585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85420255" }, "bbox": [ -0.7847594, 51.1758429, -0.7847594, 51.1758429 ], "geometry": { "type": "Point", "coordinates": [ -0.7847594, 51.1758429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96573823" }, "bbox": [ -0.6182317, 51.3061957, -0.6182317, 51.3061957 ], "geometry": { "type": "Point", "coordinates": [ -0.6182317, 51.3061957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97415238" }, "bbox": [ -0.6069199, 51.1633, -0.6069199, 51.1633 ], "geometry": { "type": "Point", "coordinates": [ -0.6069199, 51.1633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38589083" }, "bbox": [ -0.0084389, 51.311683, -0.0084389, 51.311683 ], "geometry": { "type": "Point", "coordinates": [ -0.0084389, 51.311683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38588195" }, "bbox": [ -0.0096338, 51.3128047, -0.0096338, 51.3128047 ], "geometry": { "type": "Point", "coordinates": [ -0.0096338, 51.3128047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38591886" }, "bbox": [ -0.0183006, 51.320967, -0.0183006, 51.320967 ], "geometry": { "type": "Point", "coordinates": [ -0.0183006, 51.320967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98611716" }, "bbox": [ -0.5920966, 51.3408604, -0.5920966, 51.3408604 ], "geometry": { "type": "Point", "coordinates": [ -0.5920966, 51.3408604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98606978" }, "bbox": [ -0.5840107, 51.3375809, -0.5840107, 51.3375809 ], "geometry": { "type": "Point", "coordinates": [ -0.5840107, 51.3375809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94558123" }, "bbox": [ -0.6419186, 51.2882985, -0.6419186, 51.2882985 ], "geometry": { "type": "Point", "coordinates": [ -0.6419186, 51.2882985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86468588" }, "bbox": [ -0.7579793, 51.2139034, -0.7579793, 51.2139034 ], "geometry": { "type": "Point", "coordinates": [ -0.7579793, 51.2139034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39480678" }, "bbox": [ -0.0101821, 51.221281, -0.0101821, 51.221281 ], "geometry": { "type": "Point", "coordinates": [ -0.0101821, 51.221281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39486714" }, "bbox": [ -0.0016337, 51.2154466, -0.0016337, 51.2154466 ], "geometry": { "type": "Point", "coordinates": [ -0.0016337, 51.2154466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00410579" }, "bbox": [ -0.5705426, 51.1669265, -0.5705426, 51.1669265 ], "geometry": { "type": "Point", "coordinates": [ -0.5705426, 51.1669265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35549106" }, "bbox": [ -0.0529246, 51.2691937, -0.0529246, 51.2691937 ], "geometry": { "type": "Point", "coordinates": [ -0.0529246, 51.2691937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06465363" }, "bbox": [ -0.4764154, 51.2089537, -0.4764154, 51.2089537 ], "geometry": { "type": "Point", "coordinates": [ -0.4764154, 51.2089537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467134" }, "bbox": [ -0.4739244, 51.2063575, -0.4739244, 51.2063575 ], "geometry": { "type": "Point", "coordinates": [ -0.4739244, 51.2063575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22511084" }, "bbox": [ -0.2516705, 51.2526932, -0.2516705, 51.2526932 ], "geometry": { "type": "Point", "coordinates": [ -0.2516705, 51.2526932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18405979" }, "bbox": [ -0.305544, 51.1542618, -0.305544, 51.1542618 ], "geometry": { "type": "Point", "coordinates": [ -0.305544, 51.1542618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18409512" }, "bbox": [ -0.3011268, 51.1480741, -0.3011268, 51.1480741 ], "geometry": { "type": "Point", "coordinates": [ -0.3011268, 51.1480741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08417711" }, "bbox": [ -0.4458889, 51.1589779, -0.4458889, 51.1589779 ], "geometry": { "type": "Point", "coordinates": [ -0.4458889, 51.1589779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34531305" }, "bbox": [ -0.0791064, 51.2606989, -0.0791064, 51.2606989 ], "geometry": { "type": "Point", "coordinates": [ -0.0791064, 51.2606989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21478239" }, "bbox": [ -0.2571808, 51.2128841, -0.2571808, 51.2128841 ], "geometry": { "type": "Point", "coordinates": [ -0.2571808, 51.2128841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09426992" }, "bbox": [ -0.4320704, 51.1750767, -0.4320704, 51.1750767 ], "geometry": { "type": "Point", "coordinates": [ -0.4320704, 51.1750767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466501" }, "bbox": [ -0.4609601, 51.2033059, -0.4609601, 51.2033059 ], "geometry": { "type": "Point", "coordinates": [ -0.4609601, 51.2033059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05357288" }, "bbox": [ -0.4910321, 51.1125482, -0.4910321, 51.1125482 ], "geometry": { "type": "Point", "coordinates": [ -0.4910321, 51.1125482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00389810" }, "bbox": [ -0.5581646, 51.1333733, -0.5581646, 51.1333733 ], "geometry": { "type": "Point", "coordinates": [ -0.5581646, 51.1333733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01370178" }, "bbox": [ -0.5574083, 51.1302291, -0.5574083, 51.1302291 ], "geometry": { "type": "Point", "coordinates": [ -0.5574083, 51.1302291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01380712" }, "bbox": [ -0.5567831, 51.1335746, -0.5567831, 51.1335746 ], "geometry": { "type": "Point", "coordinates": [ -0.5567831, 51.1335746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37426671" }, "bbox": [ -0.0324299, 51.1671146, -0.0324299, 51.1671146 ], "geometry": { "type": "Point", "coordinates": [ -0.0324299, 51.1671146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37413951" }, "bbox": [ -0.0366658, 51.1563604, -0.0366658, 51.1563604 ], "geometry": { "type": "Point", "coordinates": [ -0.0366658, 51.1563604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37406938" }, "bbox": [ -0.0328089, 51.1461768, -0.0328089, 51.1461768 ], "geometry": { "type": "Point", "coordinates": [ -0.0328089, 51.1461768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37401781" }, "bbox": [ -0.0401504, 51.1502009, -0.0401504, 51.1502009 ], "geometry": { "type": "Point", "coordinates": [ -0.0401504, 51.1502009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36419737" }, "bbox": [ -0.0428247, 51.1552496, -0.0428247, 51.1552496 ], "geometry": { "type": "Point", "coordinates": [ -0.0428247, 51.1552496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459258" }, "bbox": [ -0.2134836, 51.1957989, -0.2134836, 51.1957989 ], "geometry": { "type": "Point", "coordinates": [ -0.2134836, 51.1957989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03426808" }, "bbox": [ -0.5184588, 51.1685911, -0.5184588, 51.1685911 ], "geometry": { "type": "Point", "coordinates": [ -0.5184588, 51.1685911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549398" }, "bbox": [ -0.3391574, 51.2821705, -0.3391574, 51.2821705 ], "geometry": { "type": "Point", "coordinates": [ -0.3391574, 51.2821705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549391" }, "bbox": [ -0.339139, 51.2814771, -0.339139, 51.2814771 ], "geometry": { "type": "Point", "coordinates": [ -0.339139, 51.2814771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24485287" }, "bbox": [ -0.2181746, 51.2254391, -0.2181746, 51.2254391 ], "geometry": { "type": "Point", "coordinates": [ -0.2181746, 51.2254391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36565675" }, "bbox": [ -0.0430965, 51.2933609, -0.0430965, 51.2933609 ], "geometry": { "type": "Point", "coordinates": [ -0.0430965, 51.2933609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01465678" }, "bbox": [ -0.5472936, 51.2113189, -0.5472936, 51.2113189 ], "geometry": { "type": "Point", "coordinates": [ -0.5472936, 51.2113189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02461464" }, "bbox": [ -0.5390476, 51.2098348, -0.5390476, 51.2098348 ], "geometry": { "type": "Point", "coordinates": [ -0.5390476, 51.2098348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02461855" }, "bbox": [ -0.5379982, 51.2089265, -0.5379982, 51.2089265 ], "geometry": { "type": "Point", "coordinates": [ -0.5379982, 51.2089265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30507374" }, "bbox": [ -0.1285013, 51.2408382, -0.1285013, 51.2408382 ], "geometry": { "type": "Point", "coordinates": [ -0.1285013, 51.2408382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30507064" }, "bbox": [ -0.1290877, 51.2399752, -0.1290877, 51.2399752 ], "geometry": { "type": "Point", "coordinates": [ -0.1290877, 51.2399752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21390979" }, "bbox": [ -0.2707839, 51.1445937, -0.2707839, 51.1445937 ], "geometry": { "type": "Point", "coordinates": [ -0.2707839, 51.1445937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20395489" }, "bbox": [ -0.2776762, 51.1459718, -0.2776762, 51.1459718 ], "geometry": { "type": "Point", "coordinates": [ -0.2776762, 51.1459718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20397071" }, "bbox": [ -0.2758816, 51.1440517, -0.2758816, 51.1440517 ], "geometry": { "type": "Point", "coordinates": [ -0.2758816, 51.1440517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04480355" }, "bbox": [ -0.511543, 51.2267092, -0.511543, 51.2267092 ], "geometry": { "type": "Point", "coordinates": [ -0.511543, 51.2267092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20388129" }, "bbox": [ -0.2751579, 51.1310796, -0.2751579, 51.1310796 ], "geometry": { "type": "Point", "coordinates": [ -0.2751579, 51.1310796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01544394" }, "bbox": [ -0.546413, 51.2845895, -0.546413, 51.2845895 ], "geometry": { "type": "Point", "coordinates": [ -0.546413, 51.2845895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01544983" }, "bbox": [ -0.5462378, 51.2836199, -0.5462378, 51.2836199 ], "geometry": { "type": "Point", "coordinates": [ -0.5462378, 51.2836199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01554602" }, "bbox": [ -0.5463569, 51.285349, -0.5463569, 51.285349 ], "geometry": { "type": "Point", "coordinates": [ -0.5463569, 51.285349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03474505" }, "bbox": [ -0.5203796, 51.2133061, -0.5203796, 51.2133061 ], "geometry": { "type": "Point", "coordinates": [ -0.5203796, 51.2133061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03473406" }, "bbox": [ -0.5218159, 51.213414, -0.5218159, 51.213414 ], "geometry": { "type": "Point", "coordinates": [ -0.5218159, 51.213414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15474787" }, "bbox": [ -0.3480156, 51.2183719, -0.3480156, 51.2183719 ], "geometry": { "type": "Point", "coordinates": [ -0.3480156, 51.2183719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04480103" }, "bbox": [ -0.5118578, 51.2219884, -0.5118578, 51.2219884 ], "geometry": { "type": "Point", "coordinates": [ -0.5118578, 51.2219884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04492561" }, "bbox": [ -0.5080814, 51.2361894, -0.5080814, 51.2361894 ], "geometry": { "type": "Point", "coordinates": [ -0.5080814, 51.2361894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21392097" }, "bbox": [ -0.2682942, 51.1462057, -0.2682942, 51.1462057 ], "geometry": { "type": "Point", "coordinates": [ -0.2682942, 51.1462057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39414732" }, "bbox": [ -0.0069387, 51.1541153, -0.0069387, 51.1541153 ], "geometry": { "type": "Point", "coordinates": [ -0.0069387, 51.1541153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30497850" }, "bbox": [ -0.1284006, 51.2297449, -0.1284006, 51.2297449 ], "geometry": { "type": "Point", "coordinates": [ -0.1284006, 51.2297449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15445611" }, "bbox": [ -0.3481571, 51.1846296, -0.3481571, 51.1846296 ], "geometry": { "type": "Point", "coordinates": [ -0.3481571, 51.1846296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01541460" }, "bbox": [ -0.5510854, 51.2816407, -0.5510854, 51.2816407 ], "geometry": { "type": "Point", "coordinates": [ -0.5510854, 51.2816407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01540962" }, "bbox": [ -0.5518258, 51.2817935, -0.5518258, 51.2817935 ], "geometry": { "type": "Point", "coordinates": [ -0.5518258, 51.2817935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14582594" }, "bbox": [ -0.3618617, 51.3180706, -0.3618617, 51.3180706 ], "geometry": { "type": "Point", "coordinates": [ -0.3618617, 51.3180706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93509042" }, "bbox": [ -0.6559728, 51.2452954, -0.6559728, 51.2452954 ], "geometry": { "type": "Point", "coordinates": [ -0.6559728, 51.2452954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00451270" }, "bbox": [ -0.5684213, 51.2014848, -0.5684213, 51.2014848 ], "geometry": { "type": "Point", "coordinates": [ -0.5684213, 51.2014848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94565863" }, "bbox": [ -0.6443666, 51.2999974, -0.6443666, 51.2999974 ], "geometry": { "type": "Point", "coordinates": [ -0.6443666, 51.2999974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94568522" }, "bbox": [ -0.6407065, 51.2973578, -0.6407065, 51.2973578 ], "geometry": { "type": "Point", "coordinates": [ -0.6407065, 51.2973578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10574853" }, "bbox": [ -0.4164689, 51.3062007, -0.4164689, 51.3062007 ], "geometry": { "type": "Point", "coordinates": [ -0.4164689, 51.3062007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08556999" }, "bbox": [ -0.4424827, 51.2926871, -0.4424827, 51.2926871 ], "geometry": { "type": "Point", "coordinates": [ -0.4424827, 51.2926871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10408336" }, "bbox": [ -0.4167486, 51.1517916, -0.4167486, 51.1517916 ], "geometry": { "type": "Point", "coordinates": [ -0.4167486, 51.1517916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11390763" }, "bbox": [ -0.4135029, 51.145202, -0.4135029, 51.145202 ], "geometry": { "type": "Point", "coordinates": [ -0.4135029, 51.145202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98559704" }, "bbox": [ -0.5823665, 51.2858537, -0.5823665, 51.2858537 ], "geometry": { "type": "Point", "coordinates": [ -0.5823665, 51.2858537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549494" }, "bbox": [ -0.5828204, 51.2848912, -0.5828204, 51.2848912 ], "geometry": { "type": "Point", "coordinates": [ -0.5828204, 51.2848912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549770" }, "bbox": [ -0.5820946, 51.2829137, -0.5820946, 51.2829137 ], "geometry": { "type": "Point", "coordinates": [ -0.5820946, 51.2829137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465948" }, "bbox": [ -0.4611846, 51.2075174, -0.4611846, 51.2075174 ], "geometry": { "type": "Point", "coordinates": [ -0.4611846, 51.2075174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451954" }, "bbox": [ -0.1525019, 51.1945585, -0.1525019, 51.1945585 ], "geometry": { "type": "Point", "coordinates": [ -0.1525019, 51.1945585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29453964" }, "bbox": [ -0.1495244, 51.1954041, -0.1495244, 51.1954041 ], "geometry": { "type": "Point", "coordinates": [ -0.1495244, 51.1954041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29453062" }, "bbox": [ -0.1508731, 51.1952404, -0.1508731, 51.1952404 ], "geometry": { "type": "Point", "coordinates": [ -0.1508731, 51.1952404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91481185" }, "bbox": [ -0.6963753, 51.2314911, -0.6963753, 51.2314911 ], "geometry": { "type": "Point", "coordinates": [ -0.6963753, 51.2314911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33401299" }, "bbox": [ -0.0979388, 51.1527226, -0.0979388, 51.1527226 ], "geometry": { "type": "Point", "coordinates": [ -0.0979388, 51.1527226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10366656" }, "bbox": [ -0.4203017, 51.1175725, -0.4203017, 51.1175725 ], "geometry": { "type": "Point", "coordinates": [ -0.4203017, 51.1175725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22506861" }, "bbox": [ -0.2437893, 51.2415651, -0.2437893, 51.2415651 ], "geometry": { "type": "Point", "coordinates": [ -0.2437893, 51.2415651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06558391" }, "bbox": [ -0.4689675, 51.292336, -0.4689675, 51.292336 ], "geometry": { "type": "Point", "coordinates": [ -0.4689675, 51.292336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06559272" }, "bbox": [ -0.4681307, 51.2906562, -0.4681307, 51.2906562 ], "geometry": { "type": "Point", "coordinates": [ -0.4681307, 51.2906562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06572800" }, "bbox": [ -0.4769803, 51.3023285, -0.4769803, 51.3023285 ], "geometry": { "type": "Point", "coordinates": [ -0.4769803, 51.3023285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10481780" }, "bbox": [ -0.4238297, 51.2279158, -0.4238297, 51.2279158 ], "geometry": { "type": "Point", "coordinates": [ -0.4238297, 51.2279158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10469159" }, "bbox": [ -0.4138663, 51.2076665, -0.4138663, 51.2076665 ], "geometry": { "type": "Point", "coordinates": [ -0.4138663, 51.2076665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02437725" }, "bbox": [ -0.5312735, 51.1795041, -0.5312735, 51.1795041 ], "geometry": { "type": "Point", "coordinates": [ -0.5312735, 51.1795041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37479830" }, "bbox": [ -0.0273742, 51.2083575, -0.0273742, 51.2083575 ], "geometry": { "type": "Point", "coordinates": [ -0.0273742, 51.2083575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41423189" }, "bbox": [ 0.0196585, 51.1676915, 0.0196585, 51.1676915 ], "geometry": { "type": "Point", "coordinates": [ 0.0196585, 51.1676915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24415078" }, "bbox": [ -0.2208167, 51.161761, -0.2208167, 51.161761 ], "geometry": { "type": "Point", "coordinates": [ -0.2208167, 51.161761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414679" }, "bbox": [ -0.2212789, 51.1618809, -0.2212789, 51.1618809 ], "geometry": { "type": "Point", "coordinates": [ -0.2212789, 51.1618809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22487914" }, "bbox": [ -0.2428699, 51.2192172, -0.2428699, 51.2192172 ], "geometry": { "type": "Point", "coordinates": [ -0.2428699, 51.2192172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90496070" }, "bbox": [ -0.7032551, 51.2393241, -0.7032551, 51.2393241 ], "geometry": { "type": "Point", "coordinates": [ -0.7032551, 51.2393241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26574593" }, "bbox": [ -0.1872059, 51.3063207, -0.1872059, 51.3063207 ], "geometry": { "type": "Point", "coordinates": [ -0.1872059, 51.3063207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26587024" }, "bbox": [ -0.1836123, 51.3091987, -0.1836123, 51.3091987 ], "geometry": { "type": "Point", "coordinates": [ -0.1836123, 51.3091987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27570646" }, "bbox": [ -0.1788615, 51.3021371, -0.1788615, 51.3021371 ], "geometry": { "type": "Point", "coordinates": [ -0.1788615, 51.3021371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27572444" }, "bbox": [ -0.1760561, 51.3018986, -0.1760561, 51.3018986 ], "geometry": { "type": "Point", "coordinates": [ -0.1760561, 51.3018986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17418201" }, "bbox": [ -0.3162833, 51.1562887, -0.3162833, 51.1562887 ], "geometry": { "type": "Point", "coordinates": [ -0.3162833, 51.1562887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548497" }, "bbox": [ -0.3403958, 51.2822163, -0.3403958, 51.2822163 ], "geometry": { "type": "Point", "coordinates": [ -0.3403958, 51.2822163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42439401" }, "bbox": [ 0.0430466, 51.1685272, 0.0430466, 51.1685272 ], "geometry": { "type": "Point", "coordinates": [ 0.0430466, 51.1685272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16435468" }, "bbox": [ -0.3339007, 51.1805242, -0.3339007, 51.1805242 ], "geometry": { "type": "Point", "coordinates": [ -0.3339007, 51.1805242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17408014" }, "bbox": [ -0.3169918, 51.1482847, -0.3169918, 51.1482847 ], "geometry": { "type": "Point", "coordinates": [ -0.3169918, 51.1482847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43440834" }, "bbox": [ 0.0458827, 51.1807649, 0.0458827, 51.1807649 ], "geometry": { "type": "Point", "coordinates": [ 0.0458827, 51.1807649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43432992" }, "bbox": [ 0.048594, 51.1765696, 0.048594, 51.1765696 ], "geometry": { "type": "Point", "coordinates": [ 0.048594, 51.1765696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43444326" }, "bbox": [ 0.0508552, 51.1795583, 0.0508552, 51.1795583 ], "geometry": { "type": "Point", "coordinates": [ 0.0508552, 51.1795583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43440406" }, "bbox": [ 0.0449129, 51.1779536, 0.0449129, 51.1779536 ], "geometry": { "type": "Point", "coordinates": [ 0.0449129, 51.1779536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11555952" }, "bbox": [ -0.4011288, 51.2880143, -0.4011288, 51.2880143 ], "geometry": { "type": "Point", "coordinates": [ -0.4011288, 51.2880143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11553946" }, "bbox": [ -0.4039905, 51.2875328, -0.4039905, 51.2875328 ], "geometry": { "type": "Point", "coordinates": [ -0.4039905, 51.2875328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11557176" }, "bbox": [ -0.3994158, 51.2900639, -0.3994158, 51.2900639 ], "geometry": { "type": "Point", "coordinates": [ -0.3994158, 51.2900639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15373422" }, "bbox": [ -0.3531187, 51.1227164, -0.3531187, 51.1227164 ], "geometry": { "type": "Point", "coordinates": [ -0.3531187, 51.1227164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15371330" }, "bbox": [ -0.3562621, 51.1234559, -0.3562621, 51.1234559 ], "geometry": { "type": "Point", "coordinates": [ -0.3562621, 51.1234559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30420282" }, "bbox": [ -0.1415922, 51.1704974, -0.1415922, 51.1704974 ], "geometry": { "type": "Point", "coordinates": [ -0.1415922, 51.1704974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30423998" }, "bbox": [ -0.1362519, 51.1712782, -0.1362519, 51.1712782 ], "geometry": { "type": "Point", "coordinates": [ -0.1362519, 51.1712782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30422082" }, "bbox": [ -0.1389766, 51.1698277, -0.1389766, 51.1698277 ], "geometry": { "type": "Point", "coordinates": [ -0.1389766, 51.1698277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04736028" }, "bbox": [ -0.4958057, 51.4490777, -0.4958057, 51.4490777 ], "geometry": { "type": "Point", "coordinates": [ -0.4958057, 51.4490777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566642" }, "bbox": [ -0.2850646, 51.2943876, -0.2850646, 51.2943876 ], "geometry": { "type": "Point", "coordinates": [ -0.2850646, 51.2943876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19564960" }, "bbox": [ -0.2876318, 51.2960662, -0.2876318, 51.2960662 ], "geometry": { "type": "Point", "coordinates": [ -0.2876318, 51.2960662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491518" }, "bbox": [ -0.3664424, 51.2304192, -0.3664424, 51.2304192 ], "geometry": { "type": "Point", "coordinates": [ -0.3664424, 51.2304192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490016" }, "bbox": [ -0.3686624, 51.2302708, -0.3686624, 51.2302708 ], "geometry": { "type": "Point", "coordinates": [ -0.3686624, 51.2302708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20525443" }, "bbox": [ -0.2738899, 51.2583565, -0.2738899, 51.2583565 ], "geometry": { "type": "Point", "coordinates": [ -0.2738899, 51.2583565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20425701" }, "bbox": [ -0.2769269, 51.1645733, -0.2769269, 51.1645733 ], "geometry": { "type": "Point", "coordinates": [ -0.2769269, 51.1645733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20416494" }, "bbox": [ -0.2758649, 51.1641167, -0.2758649, 51.1641167 ], "geometry": { "type": "Point", "coordinates": [ -0.2758649, 51.1641167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12577576" }, "bbox": [ -0.3840918, 51.3080421, -0.3840918, 51.3080421 ], "geometry": { "type": "Point", "coordinates": [ -0.3840918, 51.3080421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29452361" }, "bbox": [ -0.1518392, 51.195179, -0.1518392, 51.195179 ], "geometry": { "type": "Point", "coordinates": [ -0.1518392, 51.195179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23500591" }, "bbox": [ -0.2385664, 51.2439953, -0.2385664, 51.2439953 ], "geometry": { "type": "Point", "coordinates": [ -0.2385664, 51.2439953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23505480" }, "bbox": [ -0.232022, 51.2429315, -0.232022, 51.2429315 ], "geometry": { "type": "Point", "coordinates": [ -0.232022, 51.2429315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22509584" }, "bbox": [ -0.2396829, 51.2436496, -0.2396829, 51.2436496 ], "geometry": { "type": "Point", "coordinates": [ -0.2396829, 51.2436496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97552933" }, "bbox": [ -0.6061201, 51.2890097, -0.6061201, 51.2890097 ], "geometry": { "type": "Point", "coordinates": [ -0.6061201, 51.2890097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38599488" }, "bbox": [ -0.0077437, 51.3209494, -0.0077437, 51.3209494 ], "geometry": { "type": "Point", "coordinates": [ -0.0077437, 51.3209494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06566999" }, "bbox": [ -0.4709412, 51.3019666, -0.4709412, 51.3019666 ], "geometry": { "type": "Point", "coordinates": [ -0.4709412, 51.3019666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99365995" }, "bbox": [ -0.5782368, 51.1232289, -0.5782368, 51.1232289 ], "geometry": { "type": "Point", "coordinates": [ -0.5782368, 51.1232289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29454896" }, "bbox": [ -0.1482069, 51.1983654, -0.1482069, 51.1983654 ], "geometry": { "type": "Point", "coordinates": [ -0.1482069, 51.1983654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42438367" }, "bbox": [ 0.0419302, 51.1746626, 0.0419302, 51.1746626 ], "geometry": { "type": "Point", "coordinates": [ 0.0419302, 51.1746626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03700622" }, "bbox": [ -0.5183224, 51.4220273, -0.5183224, 51.4220273 ], "geometry": { "type": "Point", "coordinates": [ -0.5183224, 51.4220273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486435" }, "bbox": [ -0.8183947, 51.2281331, -0.8183947, 51.2281331 ], "geometry": { "type": "Point", "coordinates": [ -0.8183947, 51.2281331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486633" }, "bbox": [ -0.8173984, 51.2282088, -0.8173984, 51.2282088 ], "geometry": { "type": "Point", "coordinates": [ -0.8173984, 51.2282088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38597939" }, "bbox": [ -0.0096947, 51.3166406, -0.0096947, 51.3166406 ], "geometry": { "type": "Point", "coordinates": [ -0.0096947, 51.3166406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38597813" }, "bbox": [ -0.0100782, 51.3144491, -0.0100782, 51.3144491 ], "geometry": { "type": "Point", "coordinates": [ -0.0100782, 51.3144491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39595769" }, "bbox": [ 0.0015527, 51.3192128, 0.0015527, 51.3192128 ], "geometry": { "type": "Point", "coordinates": [ 0.0015527, 51.3192128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39594572" }, "bbox": [ -0.0003681, 51.3195974, -0.0003681, 51.3195974 ], "geometry": { "type": "Point", "coordinates": [ -0.0003681, 51.3195974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39597449" }, "bbox": [ 0.0035714, 51.3172492, 0.0035714, 51.3172492 ], "geometry": { "type": "Point", "coordinates": [ 0.0035714, 51.3172492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38487870" }, "bbox": [ -0.0138869, 51.2205939, -0.0138869, 51.2205939 ], "geometry": { "type": "Point", "coordinates": [ -0.0138869, 51.2205939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38489870" }, "bbox": [ -0.0112236, 51.2206028, -0.0112236, 51.2206028 ], "geometry": { "type": "Point", "coordinates": [ -0.0112236, 51.2206028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38489446" }, "bbox": [ -0.0119183, 51.2184428, -0.0119183, 51.2184428 ], "geometry": { "type": "Point", "coordinates": [ -0.0119183, 51.2184428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38487950" }, "bbox": [ -0.0140937, 51.2190126, -0.0140937, 51.2190126 ], "geometry": { "type": "Point", "coordinates": [ -0.0140937, 51.2190126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92508771" }, "bbox": [ -0.6714463, 51.2479545, -0.6714463, 51.2479545 ], "geometry": { "type": "Point", "coordinates": [ -0.6714463, 51.2479545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93435721" }, "bbox": [ -0.6616751, 51.180793, -0.6616751, 51.180793 ], "geometry": { "type": "Point", "coordinates": [ -0.6616751, 51.180793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94421763" }, "bbox": [ -0.6543995, 51.1751341, -0.6543995, 51.1751341 ], "geometry": { "type": "Point", "coordinates": [ -0.6543995, 51.1751341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97523542" }, "bbox": [ -0.606408, 51.262485, -0.606408, 51.262485 ], "geometry": { "type": "Point", "coordinates": [ -0.606408, 51.262485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25422343" }, "bbox": [ -0.2107781, 51.1674398, -0.2107781, 51.1674398 ], "geometry": { "type": "Point", "coordinates": [ -0.2107781, 51.1674398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25422733" }, "bbox": [ -0.2098066, 51.1665137, -0.2098066, 51.1665137 ], "geometry": { "type": "Point", "coordinates": [ -0.2098066, 51.1665137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429756" }, "bbox": [ -0.2138651, 51.1687066, -0.2138651, 51.1687066 ], "geometry": { "type": "Point", "coordinates": [ -0.2138651, 51.1687066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24428909" }, "bbox": [ -0.2151306, 51.164452, -0.2151306, 51.164452 ], "geometry": { "type": "Point", "coordinates": [ -0.2151306, 51.164452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01367438" }, "bbox": [ -0.5476501, 51.1176784, -0.5476501, 51.1176784 ], "geometry": { "type": "Point", "coordinates": [ -0.5476501, 51.1176784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98432665" }, "bbox": [ -0.5957416, 51.1845009, -0.5957416, 51.1845009 ], "geometry": { "type": "Point", "coordinates": [ -0.5957416, 51.1845009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99446594" }, "bbox": [ -0.5752386, 51.1949591, -0.5752386, 51.1949591 ], "geometry": { "type": "Point", "coordinates": [ -0.5752386, 51.1949591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96581094" }, "bbox": [ -0.6222009, 51.3215817, -0.6222009, 51.3215817 ], "geometry": { "type": "Point", "coordinates": [ -0.6222009, 51.3215817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409218" }, "bbox": [ -0.3987292, 51.150362, -0.3987292, 51.150362 ], "geometry": { "type": "Point", "coordinates": [ -0.3987292, 51.150362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476177" }, "bbox": [ -0.3031499, 51.216889, -0.3031499, 51.216889 ], "geometry": { "type": "Point", "coordinates": [ -0.3031499, 51.216889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477627" }, "bbox": [ -0.3153227, 51.2125157, -0.3153227, 51.2125157 ], "geometry": { "type": "Point", "coordinates": [ -0.3153227, 51.2125157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93566828" }, "bbox": [ -0.6578111, 51.298037, -0.6578111, 51.298037 ], "geometry": { "type": "Point", "coordinates": [ -0.6578111, 51.298037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416232" }, "bbox": [ -0.5194902, 51.1618238, -0.5194902, 51.1618238 ], "geometry": { "type": "Point", "coordinates": [ -0.5194902, 51.1618238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03414822" }, "bbox": [ -0.5214928, 51.1609344, -0.5214928, 51.1609344 ], "geometry": { "type": "Point", "coordinates": [ -0.5214928, 51.1609344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03415831" }, "bbox": [ -0.520327, 51.1611446, -0.520327, 51.1611446 ], "geometry": { "type": "Point", "coordinates": [ -0.520327, 51.1611446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04521264" }, "bbox": [ -0.5088341, 51.2634986, -0.5088341, 51.2634986 ], "geometry": { "type": "Point", "coordinates": [ -0.5088341, 51.2634986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02525850" }, "bbox": [ -0.5311635, 51.2624558, -0.5311635, 51.2624558 ], "geometry": { "type": "Point", "coordinates": [ -0.5311635, 51.2624558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02527736" }, "bbox": [ -0.5274967, 51.2630902, -0.5274967, 51.2630902 ], "geometry": { "type": "Point", "coordinates": [ -0.5274967, 51.2630902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39592180" }, "bbox": [ -0.0037459, 51.3202798, -0.0037459, 51.3202798 ], "geometry": { "type": "Point", "coordinates": [ -0.0037459, 51.3202798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39593835" }, "bbox": [ -0.0017142, 51.316192, -0.0017142, 51.316192 ], "geometry": { "type": "Point", "coordinates": [ -0.0017142, 51.316192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39593474" }, "bbox": [ -0.0006206, 51.3189816, -0.0006206, 51.3189816 ], "geometry": { "type": "Point", "coordinates": [ -0.0006206, 51.3189816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98583015" }, "bbox": [ -0.5914673, 51.3140125, -0.5914673, 51.3140125 ], "geometry": { "type": "Point", "coordinates": [ -0.5914673, 51.3140125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98589036" }, "bbox": [ -0.5814665, 51.315967, -0.5814665, 51.315967 ], "geometry": { "type": "Point", "coordinates": [ -0.5814665, 51.315967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98588933" }, "bbox": [ -0.5820387, 51.3155533, -0.5820387, 51.3155533 ], "geometry": { "type": "Point", "coordinates": [ -0.5820387, 51.3155533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99583048" }, "bbox": [ -0.5762061, 51.3169117, -0.5762061, 51.3169117 ], "geometry": { "type": "Point", "coordinates": [ -0.5762061, 51.3169117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96572355" }, "bbox": [ -0.6189359, 51.3085497, -0.6189359, 51.3085497 ], "geometry": { "type": "Point", "coordinates": [ -0.6189359, 51.3085497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97575462" }, "bbox": [ -0.6046138, 51.3084321, -0.6046138, 51.3084321 ], "geometry": { "type": "Point", "coordinates": [ -0.6046138, 51.3084321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39505749" }, "bbox": [ -0.0022824, 51.2365855, -0.0022824, 51.2365855 ], "geometry": { "type": "Point", "coordinates": [ -0.0022824, 51.2365855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39504726" }, "bbox": [ -0.0035577, 51.2345832, -0.0035577, 51.2345832 ], "geometry": { "type": "Point", "coordinates": [ -0.0035577, 51.2345832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39505215" }, "bbox": [ -0.0029055, 51.2335193, -0.0029055, 51.2335193 ], "geometry": { "type": "Point", "coordinates": [ -0.0029055, 51.2335193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31410407" }, "bbox": [ -0.1278202, 51.1540675, -0.1278202, 51.1540675 ], "geometry": { "type": "Point", "coordinates": [ -0.1278202, 51.1540675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30408696" }, "bbox": [ -0.1302205, 51.1531137, -0.1302205, 51.1531137 ], "geometry": { "type": "Point", "coordinates": [ -0.1302205, 51.1531137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30408256" }, "bbox": [ -0.1306814, 51.1494846, -0.1306814, 51.1494846 ], "geometry": { "type": "Point", "coordinates": [ -0.1306814, 51.1494846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39501930" }, "bbox": [ -0.007445, 51.234827, -0.007445, 51.234827 ], "geometry": { "type": "Point", "coordinates": [ -0.007445, 51.234827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30408956" }, "bbox": [ -0.1298783, 51.1494084, -0.1298783, 51.1494084 ], "geometry": { "type": "Point", "coordinates": [ -0.1298783, 51.1494084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21439245" }, "bbox": [ -0.2574912, 51.1771785, -0.2574912, 51.1771785 ], "geometry": { "type": "Point", "coordinates": [ -0.2574912, 51.1771785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93421498" }, "bbox": [ -0.6691478, 51.1781563, -0.6691478, 51.1781563 ], "geometry": { "type": "Point", "coordinates": [ -0.6691478, 51.1781563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93421779" }, "bbox": [ -0.6683487, 51.1768473, -0.6683487, 51.1768473 ], "geometry": { "type": "Point", "coordinates": [ -0.6683487, 51.1768473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34524508" }, "bbox": [ -0.0743284, 51.2534515, -0.0743284, 51.2534515 ], "geometry": { "type": "Point", "coordinates": [ -0.0743284, 51.2534515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34524026" }, "bbox": [ -0.0759314, 51.2536859, -0.0759314, 51.2536859 ], "geometry": { "type": "Point", "coordinates": [ -0.0759314, 51.2536859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20542982" }, "bbox": [ -0.276765, 51.2798913, -0.276765, 51.2798913 ], "geometry": { "type": "Point", "coordinates": [ -0.276765, 51.2798913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91361154" }, "bbox": [ -0.6995829, 51.1208415, -0.6995829, 51.1208415 ], "geometry": { "type": "Point", "coordinates": [ -0.6995829, 51.1208415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93514416" }, "bbox": [ -0.6625822, 51.2516873, -0.6625822, 51.2516873 ], "geometry": { "type": "Point", "coordinates": [ -0.6625822, 51.2516873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92526209" }, "bbox": [ -0.6740083, 51.2604764, -0.6740083, 51.2604764 ], "geometry": { "type": "Point", "coordinates": [ -0.6740083, 51.2604764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20427461" }, "bbox": [ -0.2746224, 51.1701953, -0.2746224, 51.1701953 ], "geometry": { "type": "Point", "coordinates": [ -0.2746224, 51.1701953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20423419" }, "bbox": [ -0.2802038, 51.166281, -0.2802038, 51.166281 ], "geometry": { "type": "Point", "coordinates": [ -0.2802038, 51.166281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00388901" }, "bbox": [ -0.5594176, 51.1325094, -0.5594176, 51.1325094 ], "geometry": { "type": "Point", "coordinates": [ -0.5594176, 51.1325094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14481509" }, "bbox": [ -0.36671, 51.2205397, -0.36671, 51.2205397 ], "geometry": { "type": "Point", "coordinates": [ -0.36671, 51.2205397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30433825" }, "bbox": [ -0.1363119, 51.1732132, -0.1363119, 51.1732132 ], "geometry": { "type": "Point", "coordinates": [ -0.1363119, 51.1732132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05341173" }, "bbox": [ -0.5003003, 51.1020068, -0.5003003, 51.1020068 ], "geometry": { "type": "Point", "coordinates": [ -0.5003003, 51.1020068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19479983" }, "bbox": [ -0.283259, 51.2171558, -0.283259, 51.2171558 ], "geometry": { "type": "Point", "coordinates": [ -0.283259, 51.2171558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19479664" }, "bbox": [ -0.284056, 51.2154155, -0.284056, 51.2154155 ], "geometry": { "type": "Point", "coordinates": [ -0.284056, 51.2154155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19478983" }, "bbox": [ -0.2847546, 51.2170819, -0.2847546, 51.2170819 ], "geometry": { "type": "Point", "coordinates": [ -0.2847546, 51.2170819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07341137" }, "bbox": [ -0.4717618, 51.0986233, -0.4717618, 51.0986233 ], "geometry": { "type": "Point", "coordinates": [ -0.4717618, 51.0986233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06349042" }, "bbox": [ -0.4743306, 51.0991243, -0.4743306, 51.0991243 ], "geometry": { "type": "Point", "coordinates": [ -0.4743306, 51.0991243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05358211" }, "bbox": [ -0.4901686, 51.1053662, -0.4901686, 51.1053662 ], "geometry": { "type": "Point", "coordinates": [ -0.4901686, 51.1053662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33508129" }, "bbox": [ -0.0846796, 51.236151, -0.0846796, 51.236151 ], "geometry": { "type": "Point", "coordinates": [ -0.0846796, 51.236151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33506955" }, "bbox": [ -0.0861482, 51.2385308, -0.0861482, 51.2385308 ], "geometry": { "type": "Point", "coordinates": [ -0.0861482, 51.2385308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37521602" }, "bbox": [ -0.0351473, 51.250838, -0.0351473, 51.250838 ], "geometry": { "type": "Point", "coordinates": [ -0.0351473, 51.250838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05343133" }, "bbox": [ -0.4975697, 51.0986598, -0.4975697, 51.0986598 ], "geometry": { "type": "Point", "coordinates": [ -0.4975697, 51.0986598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24442104" }, "bbox": [ -0.2243131, 51.1821015, -0.2243131, 51.1821015 ], "geometry": { "type": "Point", "coordinates": [ -0.2243131, 51.1821015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36594085" }, "bbox": [ -0.0440993, 51.321446, -0.0440993, 51.321446 ], "geometry": { "type": "Point", "coordinates": [ -0.0440993, 51.321446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05358374" }, "bbox": [ -0.4894942, 51.1112109, -0.4894942, 51.1112109 ], "geometry": { "type": "Point", "coordinates": [ -0.4894942, 51.1112109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15428854" }, "bbox": [ -0.3441093, 51.170341, -0.3441093, 51.170341 ], "geometry": { "type": "Point", "coordinates": [ -0.3441093, 51.170341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03410183" }, "bbox": [ -0.5280488, 51.1662996, -0.5280488, 51.1662996 ], "geometry": { "type": "Point", "coordinates": [ -0.5280488, 51.1662996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411034" }, "bbox": [ -0.526884, 51.1621647, -0.526884, 51.1621647 ], "geometry": { "type": "Point", "coordinates": [ -0.526884, 51.1621647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16405143" }, "bbox": [ -0.3355138, 51.1512881, -0.3355138, 51.1512881 ], "geometry": { "type": "Point", "coordinates": [ -0.3355138, 51.1512881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90487610" }, "bbox": [ -0.7015459, 51.2248078, -0.7015459, 51.2248078 ], "geometry": { "type": "Point", "coordinates": [ -0.7015459, 51.2248078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90469241" }, "bbox": [ -0.6998703, 51.2097113, -0.6998703, 51.2097113 ], "geometry": { "type": "Point", "coordinates": [ -0.6998703, 51.2097113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95398214" }, "bbox": [ -0.6316189, 51.1435912, -0.6316189, 51.1435912 ], "geometry": { "type": "Point", "coordinates": [ -0.6316189, 51.1435912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10403626" }, "bbox": [ -0.4234749, 51.1510091, -0.4234749, 51.1510091 ], "geometry": { "type": "Point", "coordinates": [ -0.4234749, 51.1510091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41427223" }, "bbox": [ 0.0254671, 51.1618402, 0.0254671, 51.1618402 ], "geometry": { "type": "Point", "coordinates": [ 0.0254671, 51.1618402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41426321" }, "bbox": [ 0.0241366, 51.1616964, 0.0241366, 51.1616964 ], "geometry": { "type": "Point", "coordinates": [ 0.0241366, 51.1616964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459493" }, "bbox": [ -0.8282172, 51.2067156, -0.8282172, 51.2067156 ], "geometry": { "type": "Point", "coordinates": [ -0.8282172, 51.2067156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575965" }, "bbox": [ -0.3862609, 51.3068035, -0.3862609, 51.3068035 ], "geometry": { "type": "Point", "coordinates": [ -0.3862609, 51.3068035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12574667" }, "bbox": [ -0.3880774, 51.3071114, -0.3880774, 51.3071114 ], "geometry": { "type": "Point", "coordinates": [ -0.3880774, 51.3071114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575527" }, "bbox": [ -0.3871104, 51.303396, -0.3871104, 51.303396 ], "geometry": { "type": "Point", "coordinates": [ -0.3871104, 51.303396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575709" }, "bbox": [ -0.3866434, 51.3018884, -0.3866434, 51.3018884 ], "geometry": { "type": "Point", "coordinates": [ -0.3866434, 51.3018884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12576943" }, "bbox": [ -0.3850164, 51.3048328, -0.3850164, 51.3048328 ], "geometry": { "type": "Point", "coordinates": [ -0.3850164, 51.3048328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12574959" }, "bbox": [ -0.3876716, 51.3064655, -0.3876716, 51.3064655 ], "geometry": { "type": "Point", "coordinates": [ -0.3876716, 51.3064655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575938" }, "bbox": [ -0.3864645, 51.3045763, -0.3864645, 51.3045763 ], "geometry": { "type": "Point", "coordinates": [ -0.3864645, 51.3045763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575252" }, "bbox": [ -0.3872801, 51.3058473, -0.3872801, 51.3058473 ], "geometry": { "type": "Point", "coordinates": [ -0.3872801, 51.3058473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575673" }, "bbox": [ -0.3866626, 51.3074866, -0.3866626, 51.3074866 ], "geometry": { "type": "Point", "coordinates": [ -0.3866626, 51.3074866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17411445" }, "bbox": [ -0.3261357, 51.1603889, -0.3261357, 51.1603889 ], "geometry": { "type": "Point", "coordinates": [ -0.3261357, 51.1603889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07346984" }, "bbox": [ -0.4635033, 51.1027605, -0.4635033, 51.1027605 ], "geometry": { "type": "Point", "coordinates": [ -0.4635033, 51.1027605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18400132" }, "bbox": [ -0.31382, 51.1503121, -0.31382, 51.1503121 ], "geometry": { "type": "Point", "coordinates": [ -0.31382, 51.1503121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06465618" }, "bbox": [ -0.4760325, 51.2049543, -0.4760325, 51.2049543 ], "geometry": { "type": "Point", "coordinates": [ -0.4760325, 51.2049543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05461472" }, "bbox": [ -0.4977348, 51.2099375, -0.4977348, 51.2099375 ], "geometry": { "type": "Point", "coordinates": [ -0.4977348, 51.2099375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19472964" }, "bbox": [ -0.2934364, 51.215541, -0.2934364, 51.215541 ], "geometry": { "type": "Point", "coordinates": [ -0.2934364, 51.215541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02525490" }, "bbox": [ -0.5322132, 51.2659408, -0.5322132, 51.2659408 ], "geometry": { "type": "Point", "coordinates": [ -0.5322132, 51.2659408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26522555" }, "bbox": [ -0.1918071, 51.2583986, -0.1918071, 51.2583986 ], "geometry": { "type": "Point", "coordinates": [ -0.1918071, 51.2583986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26522568" }, "bbox": [ -0.1903875, 51.2596345, -0.1903875, 51.2596345 ], "geometry": { "type": "Point", "coordinates": [ -0.1903875, 51.2596345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26550141" }, "bbox": [ -0.1945414, 51.2839317, -0.1945414, 51.2839317 ], "geometry": { "type": "Point", "coordinates": [ -0.1945414, 51.2839317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36553624" }, "bbox": [ -0.0463742, 51.2801087, -0.0463742, 51.2801087 ], "geometry": { "type": "Point", "coordinates": [ -0.0463742, 51.2801087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36551228" }, "bbox": [ -0.0496071, 51.2804087, -0.0496071, 51.2804087 ], "geometry": { "type": "Point", "coordinates": [ -0.0496071, 51.2804087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15630206" }, "bbox": [ -0.3495551, 51.3550402, -0.3495551, 51.3550402 ], "geometry": { "type": "Point", "coordinates": [ -0.3495551, 51.3550402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05602563" }, "bbox": [ -0.4906007, 51.334955, -0.4906007, 51.334955 ], "geometry": { "type": "Point", "coordinates": [ -0.4906007, 51.334955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24406256" }, "bbox": [ -0.2192254, 51.1506506, -0.2192254, 51.1506506 ], "geometry": { "type": "Point", "coordinates": [ -0.2192254, 51.1506506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371592" }, "bbox": [ -0.3128817, 51.1283824, -0.3128817, 51.1283824 ], "geometry": { "type": "Point", "coordinates": [ -0.3128817, 51.1283824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33473192" }, "bbox": [ -0.0927837, 51.2148608, -0.0927837, 51.2148608 ], "geometry": { "type": "Point", "coordinates": [ -0.0927837, 51.2148608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33474389" }, "bbox": [ -0.0911231, 51.2146362, -0.0911231, 51.2146362 ], "geometry": { "type": "Point", "coordinates": [ -0.0911231, 51.2146362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29506063" }, "bbox": [ -0.1446689, 51.2395527, -0.1446689, 51.2395527 ], "geometry": { "type": "Point", "coordinates": [ -0.1446689, 51.2395527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33484040" }, "bbox": [ -0.0912124, 51.2192243, -0.0912124, 51.2192243 ], "geometry": { "type": "Point", "coordinates": [ -0.0912124, 51.2192243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33484076" }, "bbox": [ -0.0911401, 51.2224432, -0.0911401, 51.2224432 ], "geometry": { "type": "Point", "coordinates": [ -0.0911401, 51.2224432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00422638" }, "bbox": [ -0.5674825, 51.1718421, -0.5674825, 51.1718421 ], "geometry": { "type": "Point", "coordinates": [ -0.5674825, 51.1718421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00421466" }, "bbox": [ -0.5688549, 51.1743557, -0.5688549, 51.1743557 ], "geometry": { "type": "Point", "coordinates": [ -0.5688549, 51.1743557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23491637" }, "bbox": [ -0.233011, 51.230755, -0.233011, 51.230755 ], "geometry": { "type": "Point", "coordinates": [ -0.233011, 51.230755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23492511" }, "bbox": [ -0.2362044, 51.2279748, -0.2362044, 51.2279748 ], "geometry": { "type": "Point", "coordinates": [ -0.2362044, 51.2279748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94586573" }, "bbox": [ -0.6430239, 51.3196292, -0.6430239, 51.3196292 ], "geometry": { "type": "Point", "coordinates": [ -0.6430239, 51.3196292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409620" }, "bbox": [ -0.4006692, 51.1501501, -0.4006692, 51.1501501 ], "geometry": { "type": "Point", "coordinates": [ -0.4006692, 51.1501501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02435501" }, "bbox": [ -0.5347199, 51.1769724, -0.5347199, 51.1769724 ], "geometry": { "type": "Point", "coordinates": [ -0.5347199, 51.1769724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98551904" }, "bbox": [ -0.5932179, 51.2859212, -0.5932179, 51.2859212 ], "geometry": { "type": "Point", "coordinates": [ -0.5932179, 51.2859212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98551312" }, "bbox": [ -0.5940922, 51.2868822, -0.5940922, 51.2868822 ], "geometry": { "type": "Point", "coordinates": [ -0.5940922, 51.2868822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14583793" }, "bbox": [ -0.3605838, 51.3180128, -0.3605838, 51.3180128 ], "geometry": { "type": "Point", "coordinates": [ -0.3605838, 51.3180128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14582596" }, "bbox": [ -0.3621872, 51.3183684, -0.3621872, 51.3183684 ], "geometry": { "type": "Point", "coordinates": [ -0.3621872, 51.3183684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400935" }, "bbox": [ -0.5130504, 51.1529289, -0.5130504, 51.1529289 ], "geometry": { "type": "Point", "coordinates": [ -0.5130504, 51.1529289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04401049" }, "bbox": [ -0.5129728, 51.1542248, -0.5129728, 51.1542248 ], "geometry": { "type": "Point", "coordinates": [ -0.5129728, 51.1542248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04401645" }, "bbox": [ -0.5120665, 51.1538238, -0.5120665, 51.1538238 ], "geometry": { "type": "Point", "coordinates": [ -0.5120665, 51.1538238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81465455" }, "bbox": [ -0.8339293, 51.2123672, -0.8339293, 51.2123672 ], "geometry": { "type": "Point", "coordinates": [ -0.8339293, 51.2123672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21474016" }, "bbox": [ -0.26337, 51.2107512, -0.26337, 51.2107512 ], "geometry": { "type": "Point", "coordinates": [ -0.26337, 51.2107512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490113" }, "bbox": [ -0.368476, 51.2298395, -0.368476, 51.2298395 ], "geometry": { "type": "Point", "coordinates": [ -0.368476, 51.2298395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13497862" }, "bbox": [ -0.3716222, 51.2344336, -0.3716222, 51.2344336 ], "geometry": { "type": "Point", "coordinates": [ -0.3716222, 51.2344336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24533104" }, "bbox": [ -0.2198142, 51.262928, -0.2198142, 51.262928 ], "geometry": { "type": "Point", "coordinates": [ -0.2198142, 51.262928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379390" }, "bbox": [ -0.6873289, 51.1329009, -0.6873289, 51.1329009 ], "geometry": { "type": "Point", "coordinates": [ -0.6873289, 51.1329009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05360376" }, "bbox": [ -0.5010073, 51.1203685, -0.5010073, 51.1203685 ], "geometry": { "type": "Point", "coordinates": [ -0.5010073, 51.1203685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08527685" }, "bbox": [ -0.4424401, 51.2645689, -0.4424401, 51.2645689 ], "geometry": { "type": "Point", "coordinates": [ -0.4424401, 51.2645689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18429961" }, "bbox": [ -0.2996758, 51.1703808, -0.2996758, 51.1703808 ], "geometry": { "type": "Point", "coordinates": [ -0.2996758, 51.1703808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18427064" }, "bbox": [ -0.3035854, 51.170607, -0.3035854, 51.170607 ], "geometry": { "type": "Point", "coordinates": [ -0.3035854, 51.170607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18426688" }, "bbox": [ -0.3040522, 51.1725432, -0.3040522, 51.1725432 ], "geometry": { "type": "Point", "coordinates": [ -0.3040522, 51.1725432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18427970" }, "bbox": [ -0.3021797, 51.1712716, -0.3021797, 51.1712716 ], "geometry": { "type": "Point", "coordinates": [ -0.3021797, 51.1712716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41544199" }, "bbox": [ 0.0258864, 51.276486, 0.0258864, 51.276486 ], "geometry": { "type": "Point", "coordinates": [ 0.0258864, 51.276486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41547582" }, "bbox": [ 0.0313534, 51.2753373, 0.0313534, 51.2753373 ], "geometry": { "type": "Point", "coordinates": [ 0.0313534, 51.2753373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41543093" }, "bbox": [ 0.0244303, 51.275919, 0.0244303, 51.275919 ], "geometry": { "type": "Point", "coordinates": [ 0.0244303, 51.275919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21508088" }, "bbox": [ -0.2563312, 51.2440665, -0.2563312, 51.2440665 ], "geometry": { "type": "Point", "coordinates": [ -0.2563312, 51.2440665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21507596" }, "bbox": [ -0.2572172, 51.2449241, -0.2572172, 51.2449241 ], "geometry": { "type": "Point", "coordinates": [ -0.2572172, 51.2449241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21505998" }, "bbox": [ -0.259655, 51.2449781, -0.259655, 51.2449781 ], "geometry": { "type": "Point", "coordinates": [ -0.259655, 51.2449781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21518950" }, "bbox": [ -0.254822, 51.2497628, -0.254822, 51.2497628 ], "geometry": { "type": "Point", "coordinates": [ -0.254822, 51.2497628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22511112" }, "bbox": [ -0.2518336, 51.246242, -0.2518336, 51.246242 ], "geometry": { "type": "Point", "coordinates": [ -0.2518336, 51.246242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22511402" }, "bbox": [ -0.2513759, 51.2453134, -0.2513759, 51.2453134 ], "geometry": { "type": "Point", "coordinates": [ -0.2513759, 51.2453134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22514040" }, "bbox": [ -0.2476692, 51.2486087, -0.2476692, 51.2486087 ], "geometry": { "type": "Point", "coordinates": [ -0.2476692, 51.2486087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12669584" }, "bbox": [ -0.378112, 51.3895043, -0.378112, 51.3895043 ], "geometry": { "type": "Point", "coordinates": [ -0.378112, 51.3895043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41437712" }, "bbox": [ 0.0263924, 51.1689586, 0.0263924, 51.1689586 ], "geometry": { "type": "Point", "coordinates": [ 0.0263924, 51.1689586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41427274" }, "bbox": [ 0.025889, 51.1664391, 0.025889, 51.1664391 ], "geometry": { "type": "Point", "coordinates": [ 0.025889, 51.1664391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546690" }, "bbox": [ -0.3429852, 51.2815913, -0.3429852, 51.2815913 ], "geometry": { "type": "Point", "coordinates": [ -0.3429852, 51.2815913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547284" }, "bbox": [ -0.342027, 51.2810042, -0.342027, 51.2810042 ], "geometry": { "type": "Point", "coordinates": [ -0.342027, 51.2810042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546461" }, "bbox": [ -0.3436015, 51.2788026, -0.3436015, 51.2788026 ], "geometry": { "type": "Point", "coordinates": [ -0.3436015, 51.2788026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25422875" }, "bbox": [ -0.2093857, 51.1702644, -0.2093857, 51.1702644 ], "geometry": { "type": "Point", "coordinates": [ -0.2093857, 51.1702644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25428259" }, "bbox": [ -0.20179, 51.1688338, -0.20179, 51.1688338 ], "geometry": { "type": "Point", "coordinates": [ -0.20179, 51.1688338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26582060" }, "bbox": [ -0.1904734, 51.3125364, -0.1904734, 51.3125364 ], "geometry": { "type": "Point", "coordinates": [ -0.1904734, 51.3125364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34582095" }, "bbox": [ -0.0762197, 51.3147448, -0.0762197, 51.3147448 ], "geometry": { "type": "Point", "coordinates": [ -0.0762197, 51.3147448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388753" }, "bbox": [ -0.3014626, 51.1346644, -0.3014626, 51.1346644 ], "geometry": { "type": "Point", "coordinates": [ -0.3014626, 51.1346644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91362231" }, "bbox": [ -0.698419, 51.1187155, -0.698419, 51.1187155 ], "geometry": { "type": "Point", "coordinates": [ -0.698419, 51.1187155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90368332" }, "bbox": [ -0.7035582, 51.1190128, -0.7035582, 51.1190128 ], "geometry": { "type": "Point", "coordinates": [ -0.7035582, 51.1190128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91376740" }, "bbox": [ -0.6911281, 51.1285248, -0.6911281, 51.1285248 ], "geometry": { "type": "Point", "coordinates": [ -0.6911281, 51.1285248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91377741" }, "bbox": [ -0.6899214, 51.1285583, -0.6899214, 51.1285583 ], "geometry": { "type": "Point", "coordinates": [ -0.6899214, 51.1285583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91375939" }, "bbox": [ -0.692476, 51.128539, -0.692476, 51.128539 ], "geometry": { "type": "Point", "coordinates": [ -0.692476, 51.128539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03543908" }, "bbox": [ -0.5192102, 51.27647, -0.5192102, 51.27647 ], "geometry": { "type": "Point", "coordinates": [ -0.5192102, 51.27647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29485424" }, "bbox": [ -0.1463698, 51.2187018, -0.1463698, 51.2187018 ], "geometry": { "type": "Point", "coordinates": [ -0.1463698, 51.2187018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28465573" }, "bbox": [ -0.1608945, 51.2056593, -0.1608945, 51.2056593 ], "geometry": { "type": "Point", "coordinates": [ -0.1608945, 51.2056593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01485350" }, "bbox": [ -0.5473221, 51.2267962, -0.5473221, 51.2267962 ], "geometry": { "type": "Point", "coordinates": [ -0.5473221, 51.2267962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35499992" }, "bbox": [ -0.0535598, 51.2323005, -0.0535598, 51.2323005 ], "geometry": { "type": "Point", "coordinates": [ -0.0535598, 51.2323005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35496660" }, "bbox": [ -0.0585923, 51.2291353, -0.0585923, 51.2291353 ], "geometry": { "type": "Point", "coordinates": [ -0.0585923, 51.2291353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35496765" }, "bbox": [ -0.0581385, 51.2301358, -0.0581385, 51.2301358 ], "geometry": { "type": "Point", "coordinates": [ -0.0581385, 51.2301358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35498483" }, "bbox": [ -0.0556729, 51.2315235, -0.0556729, 51.2315235 ], "geometry": { "type": "Point", "coordinates": [ -0.0556729, 51.2315235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35499960" }, "bbox": [ -0.0535561, 51.2292061, -0.0535561, 51.2292061 ], "geometry": { "type": "Point", "coordinates": [ -0.0535561, 51.2292061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36492771" }, "bbox": [ -0.0505005, 51.2306053, -0.0505005, 51.2306053 ], "geometry": { "type": "Point", "coordinates": [ -0.0505005, 51.2306053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36493391" }, "bbox": [ -0.04864, 51.2321258, -0.04864, 51.2321258 ], "geometry": { "type": "Point", "coordinates": [ -0.04864, 51.2321258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07513568" }, "bbox": [ -0.4629634, 51.2542327, -0.4629634, 51.2542327 ], "geometry": { "type": "Point", "coordinates": [ -0.4629634, 51.2542327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05668338" }, "bbox": [ -0.4801875, 51.3863363, -0.4801875, 51.3863363 ], "geometry": { "type": "Point", "coordinates": [ -0.4801875, 51.3863363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10361182" }, "bbox": [ -0.4281212, 51.1200655, -0.4281212, 51.1200655 ], "geometry": { "type": "Point", "coordinates": [ -0.4281212, 51.1200655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463574" }, "bbox": [ -0.1926055, 51.2058917, -0.1926055, 51.2058917 ], "geometry": { "type": "Point", "coordinates": [ -0.1926055, 51.2058917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521358" }, "bbox": [ -0.2080504, 51.258706, -0.2080504, 51.258706 ], "geometry": { "type": "Point", "coordinates": [ -0.2080504, 51.258706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38439738" }, "bbox": [ -0.0136436, 51.1728913, -0.0136436, 51.1728913 ], "geometry": { "type": "Point", "coordinates": [ -0.0136436, 51.1728913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13463634" }, "bbox": [ -0.3786375, 51.2051157, -0.3786375, 51.2051157 ], "geometry": { "type": "Point", "coordinates": [ -0.3786375, 51.2051157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406956" }, "bbox": [ -0.533138, 51.1550615, -0.533138, 51.1550615 ], "geometry": { "type": "Point", "coordinates": [ -0.533138, 51.1550615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08541277" }, "bbox": [ -0.4514737, 51.2819767, -0.4514737, 51.2819767 ], "geometry": { "type": "Point", "coordinates": [ -0.4514737, 51.2819767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08533288" }, "bbox": [ -0.4484869, 51.2739559, -0.4484869, 51.2739559 ], "geometry": { "type": "Point", "coordinates": [ -0.4484869, 51.2739559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08533061" }, "bbox": [ -0.4493049, 51.2709863, -0.4493049, 51.2709863 ], "geometry": { "type": "Point", "coordinates": [ -0.4493049, 51.2709863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22540342" }, "bbox": [ -0.2517657, 51.2758518, -0.2517657, 51.2758518 ], "geometry": { "type": "Point", "coordinates": [ -0.2517657, 51.2758518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19385585" }, "bbox": [ -0.2926499, 51.1365264, -0.2926499, 51.1365264 ], "geometry": { "type": "Point", "coordinates": [ -0.2926499, 51.1365264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19382986" }, "bbox": [ -0.2965447, 51.1364637, -0.2965447, 51.1364637 ], "geometry": { "type": "Point", "coordinates": [ -0.2965447, 51.1364637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31508269" }, "bbox": [ -0.1129328, 51.2401987, -0.1129328, 51.2401987 ], "geometry": { "type": "Point", "coordinates": [ -0.1129328, 51.2401987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95537774" }, "bbox": [ -0.6284198, 51.2747442, -0.6284198, 51.2747442 ], "geometry": { "type": "Point", "coordinates": [ -0.6284198, 51.2747442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99445296" }, "bbox": [ -0.5770717, 51.1952622, -0.5770717, 51.1952622 ], "geometry": { "type": "Point", "coordinates": [ -0.5770717, 51.1952622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84405918" }, "bbox": [ -0.7918284, 51.1547316, -0.7918284, 51.1547316 ], "geometry": { "type": "Point", "coordinates": [ -0.7918284, 51.1547316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427186" }, "bbox": [ -0.5176143, 51.175491, -0.5176143, 51.175491 ], "geometry": { "type": "Point", "coordinates": [ -0.5176143, 51.175491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28466704" }, "bbox": [ -0.1599916, 51.1994769, -0.1599916, 51.1994769 ], "geometry": { "type": "Point", "coordinates": [ -0.1599916, 51.1994769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82467701" }, "bbox": [ -0.8164092, 51.2071078, -0.8164092, 51.2071078 ], "geometry": { "type": "Point", "coordinates": [ -0.8164092, 51.2071078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85375346" }, "bbox": [ -0.7788189, 51.1300964, -0.7788189, 51.1300964 ], "geometry": { "type": "Point", "coordinates": [ -0.7788189, 51.1300964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96385686" }, "bbox": [ -0.6210156, 51.1408711, -0.6210156, 51.1408711 ], "geometry": { "type": "Point", "coordinates": [ -0.6210156, 51.1408711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96391114" }, "bbox": [ -0.6276141, 51.143243, -0.6276141, 51.143243 ], "geometry": { "type": "Point", "coordinates": [ -0.6276141, 51.143243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90481281" }, "bbox": [ -0.7109288, 51.2311143, -0.7109288, 51.2311143 ], "geometry": { "type": "Point", "coordinates": [ -0.7109288, 51.2311143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93563473" }, "bbox": [ -0.663047, 51.3019735, -0.663047, 51.3019735 ], "geometry": { "type": "Point", "coordinates": [ -0.663047, 51.3019735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93569882" }, "bbox": [ -0.6530997, 51.3027803, -0.6530997, 51.3027803 ], "geometry": { "type": "Point", "coordinates": [ -0.6530997, 51.3027803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92568863" }, "bbox": [ -0.669639, 51.3013947, -0.669639, 51.3013947 ], "geometry": { "type": "Point", "coordinates": [ -0.669639, 51.3013947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92561551" }, "bbox": [ -0.67959, 51.3001956, -0.67959, 51.3001956 ], "geometry": { "type": "Point", "coordinates": [ -0.67959, 51.3001956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92565562" }, "bbox": [ -0.6736917, 51.30104, -0.6736917, 51.30104 ], "geometry": { "type": "Point", "coordinates": [ -0.6736917, 51.30104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89562956" }, "bbox": [ -0.7172393, 51.3021622, -0.7172393, 51.3021622 ], "geometry": { "type": "Point", "coordinates": [ -0.7172393, 51.3021622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89563468" }, "bbox": [ -0.7197645, 51.3020876, -0.7197645, 51.3020876 ], "geometry": { "type": "Point", "coordinates": [ -0.7197645, 51.3020876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89564376" }, "bbox": [ -0.7170678, 51.30306, -0.7170678, 51.30306 ], "geometry": { "type": "Point", "coordinates": [ -0.7170678, 51.30306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89552964" }, "bbox": [ -0.7213184, 51.2936473, -0.7213184, 51.2936473 ], "geometry": { "type": "Point", "coordinates": [ -0.7213184, 51.2936473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90566357" }, "bbox": [ -0.703043, 51.3013471, -0.703043, 51.3013471 ], "geometry": { "type": "Point", "coordinates": [ -0.703043, 51.3013471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27457232" }, "bbox": [ -0.1736425, 51.1928598, -0.1736425, 51.1928598 ], "geometry": { "type": "Point", "coordinates": [ -0.1736425, 51.1928598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27453748" }, "bbox": [ -0.1785386, 51.1944419, -0.1785386, 51.1944419 ], "geometry": { "type": "Point", "coordinates": [ -0.1785386, 51.1944419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27459232" }, "bbox": [ -0.1707673, 51.1927814, -0.1707673, 51.1927814 ], "geometry": { "type": "Point", "coordinates": [ -0.1707673, 51.1927814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90436926" }, "bbox": [ -0.7037767, 51.1814244, -0.7037767, 51.1814244 ], "geometry": { "type": "Point", "coordinates": [ -0.7037767, 51.1814244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09587087" }, "bbox": [ -0.4272166, 51.318455, -0.4272166, 51.318455 ], "geometry": { "type": "Point", "coordinates": [ -0.4272166, 51.318455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09596268" }, "bbox": [ -0.4280573, 51.3256677, -0.4280573, 51.3256677 ], "geometry": { "type": "Point", "coordinates": [ -0.4280573, 51.3256677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09591580" }, "bbox": [ -0.4347349, 51.3268618, -0.4347349, 51.3268618 ], "geometry": { "type": "Point", "coordinates": [ -0.4347349, 51.3268618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594019" }, "bbox": [ -0.4317704, 51.3209785, -0.4317704, 51.3209785 ], "geometry": { "type": "Point", "coordinates": [ -0.4317704, 51.3209785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09590168" }, "bbox": [ -0.4367336, 51.32572, -0.4367336, 51.32572 ], "geometry": { "type": "Point", "coordinates": [ -0.4367336, 51.32572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09592345" }, "bbox": [ -0.4337253, 51.3237513, -0.4337253, 51.3237513 ], "geometry": { "type": "Point", "coordinates": [ -0.4337253, 51.3237513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09590971" }, "bbox": [ -0.435705, 51.3259216, -0.435705, 51.3259216 ], "geometry": { "type": "Point", "coordinates": [ -0.435705, 51.3259216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09591849" }, "bbox": [ -0.4343679, 51.3240862, -0.4343679, 51.3240862 ], "geometry": { "type": "Point", "coordinates": [ -0.4343679, 51.3240862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09598127" }, "bbox": [ -0.42542, 51.3220552, -0.42542, 51.3220552 ], "geometry": { "type": "Point", "coordinates": [ -0.42542, 51.3220552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10591452" }, "bbox": [ -0.4206292, 51.3240705, -0.4206292, 51.3240705 ], "geometry": { "type": "Point", "coordinates": [ -0.4206292, 51.3240705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10593483" }, "bbox": [ -0.4174848, 51.3267636, -0.4174848, 51.3267636 ], "geometry": { "type": "Point", "coordinates": [ -0.4174848, 51.3267636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11599902" }, "bbox": [ -0.3942208, 51.3193087, -0.3942208, 51.3193087 ], "geometry": { "type": "Point", "coordinates": [ -0.3942208, 51.3193087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12580818" }, "bbox": [ -0.3932343, 51.3116924, -0.3932343, 51.3116924 ], "geometry": { "type": "Point", "coordinates": [ -0.3932343, 51.3116924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12580388" }, "bbox": [ -0.3936473, 51.3179425, -0.3936473, 51.3179425 ], "geometry": { "type": "Point", "coordinates": [ -0.3936473, 51.3179425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12573590" }, "bbox": [ -0.3897702, 51.3091323, -0.3897702, 51.3091323 ], "geometry": { "type": "Point", "coordinates": [ -0.3897702, 51.3091323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11576460" }, "bbox": [ -0.3996907, 51.3066104, -0.3996907, 51.3066104 ], "geometry": { "type": "Point", "coordinates": [ -0.3996907, 51.3066104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579266" }, "bbox": [ -0.3963005, 51.3068589, -0.3963005, 51.3068589 ], "geometry": { "type": "Point", "coordinates": [ -0.3963005, 51.3068589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11587327" }, "bbox": [ -0.3982104, 51.3126646, -0.3982104, 51.3126646 ], "geometry": { "type": "Point", "coordinates": [ -0.3982104, 51.3126646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11587322" }, "bbox": [ -0.3983668, 51.3121409, -0.3983668, 51.3121409 ], "geometry": { "type": "Point", "coordinates": [ -0.3983668, 51.3121409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11583128" }, "bbox": [ -0.4047034, 51.3139627, -0.4047034, 51.3139627 ], "geometry": { "type": "Point", "coordinates": [ -0.4047034, 51.3139627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11588515" }, "bbox": [ -0.3965678, 51.311466, -0.3965678, 51.311466 ], "geometry": { "type": "Point", "coordinates": [ -0.3965678, 51.311466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586375" }, "bbox": [ -0.3994866, 51.3169068, -0.3994866, 51.3169068 ], "geometry": { "type": "Point", "coordinates": [ -0.3994866, 51.3169068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11588029" }, "bbox": [ -0.3972232, 51.3127388, -0.3972232, 51.3127388 ], "geometry": { "type": "Point", "coordinates": [ -0.3972232, 51.3127388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11589124" }, "bbox": [ -0.395611, 51.3123677, -0.395611, 51.3123677 ], "geometry": { "type": "Point", "coordinates": [ -0.395611, 51.3123677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11587622" }, "bbox": [ -0.3977713, 51.3121009, -0.3977713, 51.3121009 ], "geometry": { "type": "Point", "coordinates": [ -0.3977713, 51.3121009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11588323" }, "bbox": [ -0.3966429, 51.312271, -0.3966429, 51.312271 ], "geometry": { "type": "Point", "coordinates": [ -0.3966429, 51.312271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11587650" }, "bbox": [ -0.3975207, 51.3146414, -0.3975207, 51.3146414 ], "geometry": { "type": "Point", "coordinates": [ -0.3975207, 51.3146414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16386751" }, "bbox": [ -0.3339574, 51.134207, -0.3339574, 51.134207 ], "geometry": { "type": "Point", "coordinates": [ -0.3339574, 51.134207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16384729" }, "bbox": [ -0.3372605, 51.1318401, -0.3372605, 51.1318401 ], "geometry": { "type": "Point", "coordinates": [ -0.3372605, 51.1318401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17370189" }, "bbox": [ -0.3292401, 51.128379, -0.3292401, 51.128379 ], "geometry": { "type": "Point", "coordinates": [ -0.3292401, 51.128379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16386157" }, "bbox": [ -0.3350882, 51.1345854, -0.3350882, 51.1345854 ], "geometry": { "type": "Point", "coordinates": [ -0.3350882, 51.1345854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16389329" }, "bbox": [ -0.3299934, 51.1318579, -0.3299934, 51.1318579 ], "geometry": { "type": "Point", "coordinates": [ -0.3299934, 51.1318579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08376601" }, "bbox": [ -0.4490677, 51.1223403, -0.4490677, 51.1223403 ], "geometry": { "type": "Point", "coordinates": [ -0.4490677, 51.1223403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19498961" }, "bbox": [ -0.2834836, 51.2335837, -0.2834836, 51.2335837 ], "geometry": { "type": "Point", "coordinates": [ -0.2834836, 51.2335837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07578045" }, "bbox": [ -0.4549053, 51.3058407, -0.4549053, 51.3058407 ], "geometry": { "type": "Point", "coordinates": [ -0.4549053, 51.3058407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07577172" }, "bbox": [ -0.4567147, 51.3083429, -0.4567147, 51.3083429 ], "geometry": { "type": "Point", "coordinates": [ -0.4567147, 51.3083429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08573526" }, "bbox": [ -0.4461811, 51.3039597, -0.4461811, 51.3039597 ], "geometry": { "type": "Point", "coordinates": [ -0.4461811, 51.3039597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99386322" }, "bbox": [ -0.5772111, 51.1347006, -0.5772111, 51.1347006 ], "geometry": { "type": "Point", "coordinates": [ -0.5772111, 51.1347006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89477060" }, "bbox": [ -0.7169182, 51.220608, -0.7169182, 51.220608 ], "geometry": { "type": "Point", "coordinates": [ -0.7169182, 51.220608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30554777" }, "bbox": [ -0.1303951, 51.2860335, -0.1303951, 51.2860335 ], "geometry": { "type": "Point", "coordinates": [ -0.1303951, 51.2860335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86399288" }, "bbox": [ -0.7585561, 51.151875, -0.7585561, 51.151875 ], "geometry": { "type": "Point", "coordinates": [ -0.7585561, 51.151875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86399457" }, "bbox": [ -0.7585148, 51.1487378, -0.7585148, 51.1487378 ], "geometry": { "type": "Point", "coordinates": [ -0.7585148, 51.1487378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94538770" }, "bbox": [ -0.6412728, 51.2746143, -0.6412728, 51.2746143 ], "geometry": { "type": "Point", "coordinates": [ -0.6412728, 51.2746143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94538275" }, "bbox": [ -0.6419391, 51.2750666, -0.6419391, 51.2750666 ], "geometry": { "type": "Point", "coordinates": [ -0.6419391, 51.2750666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09560944" }, "bbox": [ -0.4364308, 51.296895, -0.4364308, 51.296895 ], "geometry": { "type": "Point", "coordinates": [ -0.4364308, 51.296895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97461731" }, "bbox": [ -0.6103974, 51.207788, -0.6103974, 51.207788 ], "geometry": { "type": "Point", "coordinates": [ -0.6103974, 51.207788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19629221" }, "bbox": [ -0.279394, 51.3462958, -0.279394, 51.3462958 ], "geometry": { "type": "Point", "coordinates": [ -0.279394, 51.3462958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94370206" }, "bbox": [ -0.6583505, 51.1251165, -0.6583505, 51.1251165 ], "geometry": { "type": "Point", "coordinates": [ -0.6583505, 51.1251165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93432604" }, "bbox": [ -0.6670351, 51.179081, -0.6670351, 51.179081 ], "geometry": { "type": "Point", "coordinates": [ -0.6670351, 51.179081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93420174" }, "bbox": [ -0.6712348, 51.1763026, -0.6712348, 51.1763026 ], "geometry": { "type": "Point", "coordinates": [ -0.6712348, 51.1763026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00557666" }, "bbox": [ -0.5572567, 51.2910104, -0.5572567, 51.2910104 ], "geometry": { "type": "Point", "coordinates": [ -0.5572567, 51.2910104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00543282" }, "bbox": [ -0.562951, 51.2836966, -0.562951, 51.2836966 ], "geometry": { "type": "Point", "coordinates": [ -0.562951, 51.2836966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15462886" }, "bbox": [ -0.3509497, 51.2094209, -0.3509497, 51.2094209 ], "geometry": { "type": "Point", "coordinates": [ -0.3509497, 51.2094209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15461884" }, "bbox": [ -0.3523925, 51.2092227, -0.3523925, 51.2092227 ], "geometry": { "type": "Point", "coordinates": [ -0.3523925, 51.2092227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15461988" }, "bbox": [ -0.3521294, 51.2097007, -0.3521294, 51.2097007 ], "geometry": { "type": "Point", "coordinates": [ -0.3521294, 51.2097007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28522485" }, "bbox": [ -0.1633654, 51.2604734, -0.1633654, 51.2604734 ], "geometry": { "type": "Point", "coordinates": [ -0.1633654, 51.2604734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04465750" }, "bbox": [ -0.5044566, 51.208333, -0.5044566, 51.208333 ], "geometry": { "type": "Point", "coordinates": [ -0.5044566, 51.208333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04464959" }, "bbox": [ -0.5055397, 51.2090304, -0.5055397, 51.2090304 ], "geometry": { "type": "Point", "coordinates": [ -0.5055397, 51.2090304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22579627" }, "bbox": [ -0.2374862, 51.301342, -0.2374862, 51.301342 ], "geometry": { "type": "Point", "coordinates": [ -0.2374862, 51.301342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91345489" }, "bbox": [ -0.6936341, 51.1060638, -0.6936341, 51.1060638 ], "geometry": { "type": "Point", "coordinates": [ -0.6936341, 51.1060638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99544757" }, "bbox": [ -0.5754234, 51.2816344, -0.5754234, 51.2816344 ], "geometry": { "type": "Point", "coordinates": [ -0.5754234, 51.2816344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549611" }, "bbox": [ -0.5824901, 51.2776328, -0.5824901, 51.2776328 ], "geometry": { "type": "Point", "coordinates": [ -0.5824901, 51.2776328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379380" }, "bbox": [ -0.6876262, 51.1321686, -0.6876262, 51.1321686 ], "geometry": { "type": "Point", "coordinates": [ -0.6876262, 51.1321686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411290" }, "bbox": [ 0.0311306, 51.1588341, 0.0311306, 51.1588341 ], "geometry": { "type": "Point", "coordinates": [ 0.0311306, 51.1588341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37577840" }, "bbox": [ -0.0250156, 51.2991296, -0.0250156, 51.2991296 ], "geometry": { "type": "Point", "coordinates": [ -0.0250156, 51.2991296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23410998" }, "bbox": [ -0.240855, 51.1638458, -0.240855, 51.1638458 ], "geometry": { "type": "Point", "coordinates": [ -0.240855, 51.1638458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23468050" }, "bbox": [ -0.2292069, 51.2042878, -0.2292069, 51.2042878 ], "geometry": { "type": "Point", "coordinates": [ -0.2292069, 51.2042878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18486283" }, "bbox": [ -0.302508, 51.226335, -0.302508, 51.226335 ], "geometry": { "type": "Point", "coordinates": [ -0.302508, 51.226335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18483829" }, "bbox": [ -0.3060642, 51.2213434, -0.3060642, 51.2213434 ], "geometry": { "type": "Point", "coordinates": [ -0.3060642, 51.2213434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18483371" }, "bbox": [ -0.3064028, 51.2253159, -0.3064028, 51.2253159 ], "geometry": { "type": "Point", "coordinates": [ -0.3064028, 51.2253159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18486955" }, "bbox": [ -0.3017008, 51.2237934, -0.3017008, 51.2237934 ], "geometry": { "type": "Point", "coordinates": [ -0.3017008, 51.2237934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18482753" }, "bbox": [ -0.3077246, 51.2237106, -0.3077246, 51.2237106 ], "geometry": { "type": "Point", "coordinates": [ -0.3077246, 51.2237106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97427530" }, "bbox": [ -0.6030673, 51.1717572, -0.6030673, 51.1717572 ], "geometry": { "type": "Point", "coordinates": [ -0.6030673, 51.1717572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11500606" }, "bbox": [ -0.4104256, 51.2390921, -0.4104256, 51.2390921 ], "geometry": { "type": "Point", "coordinates": [ -0.4104256, 51.2390921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494620" }, "bbox": [ -0.147287, 51.2272867, -0.147287, 51.2272867 ], "geometry": { "type": "Point", "coordinates": [ -0.147287, 51.2272867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494518" }, "bbox": [ -0.1474603, 51.2271574, -0.1474603, 51.2271574 ], "geometry": { "type": "Point", "coordinates": [ -0.1474603, 51.2271574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494224" }, "bbox": [ -0.147742, 51.227748, -0.147742, 51.227748 ], "geometry": { "type": "Point", "coordinates": [ -0.147742, 51.227748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13606604" }, "bbox": [ -0.3699715, 51.328154, -0.3699715, 51.328154 ], "geometry": { "type": "Point", "coordinates": [ -0.3699715, 51.328154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369634" }, "bbox": [ -0.6875071, 51.1189614, -0.6875071, 51.1189614 ], "geometry": { "type": "Point", "coordinates": [ -0.6875071, 51.1189614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29476701" }, "bbox": [ -0.1452257, 51.2075954, -0.1452257, 51.2075954 ], "geometry": { "type": "Point", "coordinates": [ -0.1452257, 51.2075954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29468282" }, "bbox": [ -0.1431032, 51.2058581, -0.1431032, 51.2058581 ], "geometry": { "type": "Point", "coordinates": [ -0.1431032, 51.2058581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29462182" }, "bbox": [ -0.1516571, 51.2059898, -0.1516571, 51.2059898 ], "geometry": { "type": "Point", "coordinates": [ -0.1516571, 51.2059898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16470412" }, "bbox": [ -0.3398575, 51.2115389, -0.3398575, 51.2115389 ], "geometry": { "type": "Point", "coordinates": [ -0.3398575, 51.2115389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465282" }, "bbox": [ -0.3333406, 51.2087242, -0.3333406, 51.2087242 ], "geometry": { "type": "Point", "coordinates": [ -0.3333406, 51.2087242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97554123" }, "bbox": [ -0.6043098, 51.2880104, -0.6043098, 51.2880104 ], "geometry": { "type": "Point", "coordinates": [ -0.6043098, 51.2880104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96559136" }, "bbox": [ -0.6115036, 51.2892115, -0.6115036, 51.2892115 ], "geometry": { "type": "Point", "coordinates": [ -0.6115036, 51.2892115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29469892" }, "bbox": [ -0.1404988, 51.2067973, -0.1404988, 51.2067973 ], "geometry": { "type": "Point", "coordinates": [ -0.1404988, 51.2067973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08564082" }, "bbox": [ -0.446394, 51.299697, -0.446394, 51.299697 ], "geometry": { "type": "Point", "coordinates": [ -0.446394, 51.299697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16377674" }, "bbox": [ -0.3330832, 51.1270594, -0.3330832, 51.1270594 ], "geometry": { "type": "Point", "coordinates": [ -0.3330832, 51.1270594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16377766" }, "bbox": [ -0.332589, 51.1263419, -0.332589, 51.1263419 ], "geometry": { "type": "Point", "coordinates": [ -0.332589, 51.1263419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378578" }, "bbox": [ -0.3313624, 51.1274389, -0.3313624, 51.1274389 ], "geometry": { "type": "Point", "coordinates": [ -0.3313624, 51.1274389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37433025" }, "bbox": [ -0.0372648, 51.1719711, -0.0372648, 51.1719711 ], "geometry": { "type": "Point", "coordinates": [ -0.0372648, 51.1719711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99366137" }, "bbox": [ -0.5780866, 51.1179365, -0.5780866, 51.1179365 ], "geometry": { "type": "Point", "coordinates": [ -0.5780866, 51.1179365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18376097" }, "bbox": [ -0.3066268, 51.1287644, -0.3066268, 51.1287644 ], "geometry": { "type": "Point", "coordinates": [ -0.3066268, 51.1287644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94448904" }, "bbox": [ -0.6436058, 51.1878313, -0.6436058, 51.1878313 ], "geometry": { "type": "Point", "coordinates": [ -0.6436058, 51.1878313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94445632" }, "bbox": [ -0.6480533, 51.1904133, -0.6480533, 51.1904133 ], "geometry": { "type": "Point", "coordinates": [ -0.6480533, 51.1904133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94445520" }, "bbox": [ -0.6483062, 51.1892029, -0.6483062, 51.1892029 ], "geometry": { "type": "Point", "coordinates": [ -0.6483062, 51.1892029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94448473" }, "bbox": [ -0.6442279, 51.1939959, -0.6442279, 51.1939959 ], "geometry": { "type": "Point", "coordinates": [ -0.6442279, 51.1939959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94438195" }, "bbox": [ -0.6448421, 51.186768, -0.6448421, 51.186768 ], "geometry": { "type": "Point", "coordinates": [ -0.6448421, 51.186768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94439965" }, "bbox": [ -0.6421692, 51.1842314, -0.6421692, 51.1842314 ], "geometry": { "type": "Point", "coordinates": [ -0.6421692, 51.1842314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94435252" }, "bbox": [ -0.6489186, 51.183105, -0.6489186, 51.183105 ], "geometry": { "type": "Point", "coordinates": [ -0.6489186, 51.183105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15519034" }, "bbox": [ -0.3374887, 51.2499037, -0.3374887, 51.2499037 ], "geometry": { "type": "Point", "coordinates": [ -0.3374887, 51.2499037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469947" }, "bbox": [ -0.2264918, 51.2040593, -0.2264918, 51.2040593 ], "geometry": { "type": "Point", "coordinates": [ -0.2264918, 51.2040593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469347" }, "bbox": [ -0.2274611, 51.204054, -0.2274611, 51.204054 ], "geometry": { "type": "Point", "coordinates": [ -0.2274611, 51.204054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466758" }, "bbox": [ -0.8320234, 51.2126822, -0.8320234, 51.2126822 ], "geometry": { "type": "Point", "coordinates": [ -0.8320234, 51.2126822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466258" }, "bbox": [ -0.8328912, 51.2126267, -0.8328912, 51.2126267 ], "geometry": { "type": "Point", "coordinates": [ -0.8328912, 51.2126267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24410555" }, "bbox": [ -0.2272375, 51.1594317, -0.2272375, 51.1594317 ], "geometry": { "type": "Point", "coordinates": [ -0.2272375, 51.1594317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440177" }, "bbox": [ -0.212375, 51.188588, -0.212375, 51.188588 ], "geometry": { "type": "Point", "coordinates": [ -0.212375, 51.188588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25442084" }, "bbox": [ -0.2099795, 51.1892445, -0.2099795, 51.1892445 ], "geometry": { "type": "Point", "coordinates": [ -0.2099795, 51.1892445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440698" }, "bbox": [ -0.2120458, 51.1906042, -0.2120458, 51.1906042 ], "geometry": { "type": "Point", "coordinates": [ -0.2120458, 51.1906042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25440590" }, "bbox": [ -0.2117507, 51.1897175, -0.2117507, 51.1897175 ], "geometry": { "type": "Point", "coordinates": [ -0.2117507, 51.1897175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05468136" }, "bbox": [ -0.4873748, 51.2067492, -0.4873748, 51.2067492 ], "geometry": { "type": "Point", "coordinates": [ -0.4873748, 51.2067492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450408" }, "bbox": [ -0.2119646, 51.1913841, -0.2119646, 51.1913841 ], "geometry": { "type": "Point", "coordinates": [ -0.2119646, 51.1913841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03417539" }, "bbox": [ -0.5174155, 51.1624074, -0.5174155, 51.1624074 ], "geometry": { "type": "Point", "coordinates": [ -0.5174155, 51.1624074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95468814" }, "bbox": [ -0.62908, 51.2059214, -0.62908, 51.2059214 ], "geometry": { "type": "Point", "coordinates": [ -0.62908, 51.2059214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15376247" }, "bbox": [ -0.3479777, 51.1250975, -0.3479777, 51.1250975 ], "geometry": { "type": "Point", "coordinates": [ -0.3479777, 51.1250975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15376981" }, "bbox": [ -0.3479786, 51.1280076, -0.3479786, 51.1280076 ], "geometry": { "type": "Point", "coordinates": [ -0.3479786, 51.1280076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15367492" }, "bbox": [ -0.3477449, 51.1198761, -0.3477449, 51.1198761 ], "geometry": { "type": "Point", "coordinates": [ -0.3477449, 51.1198761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02410725" }, "bbox": [ -0.5417942, 51.1614718, -0.5417942, 51.1614718 ], "geometry": { "type": "Point", "coordinates": [ -0.5417942, 51.1614718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411534" }, "bbox": [ -0.5546697, 51.162386, -0.5546697, 51.162386 ], "geometry": { "type": "Point", "coordinates": [ -0.5546697, 51.162386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411883" }, "bbox": [ -0.554122, 51.166791, -0.554122, 51.166791 ], "geometry": { "type": "Point", "coordinates": [ -0.554122, 51.166791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412386" }, "bbox": [ -0.5535249, 51.1670918, -0.5535249, 51.1670918 ], "geometry": { "type": "Point", "coordinates": [ -0.5535249, 51.1670918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32436889" }, "bbox": [ -0.1032546, 51.1788569, -0.1032546, 51.1788569 ], "geometry": { "type": "Point", "coordinates": [ -0.1032546, 51.1788569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99451243" }, "bbox": [ -0.5827548, 51.1994587, -0.5827548, 51.1994587 ], "geometry": { "type": "Point", "coordinates": [ -0.5827548, 51.1994587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459681" }, "bbox": [ -0.584879, 51.2030245, -0.584879, 51.2030245 ], "geometry": { "type": "Point", "coordinates": [ -0.584879, 51.2030245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11590925" }, "bbox": [ -0.4071911, 51.3215219, -0.4071911, 51.3215219 ], "geometry": { "type": "Point", "coordinates": [ -0.4071911, 51.3215219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11591451" }, "bbox": [ -0.4062279, 51.3237583, -0.4062279, 51.3237583 ], "geometry": { "type": "Point", "coordinates": [ -0.4062279, 51.3237583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11592901" }, "bbox": [ -0.4040965, 51.3190273, -0.4040965, 51.3190273 ], "geometry": { "type": "Point", "coordinates": [ -0.4040965, 51.3190273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11583481" }, "bbox": [ -0.4036334, 51.317657, -0.4036334, 51.317657 ], "geometry": { "type": "Point", "coordinates": [ -0.4036334, 51.317657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11581986" }, "bbox": [ -0.4057035, 51.3181096, -0.4057035, 51.3181096 ], "geometry": { "type": "Point", "coordinates": [ -0.4057035, 51.3181096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596759" }, "bbox": [ -0.4133682, 51.3245397, -0.4133682, 51.3245397 ], "geometry": { "type": "Point", "coordinates": [ -0.4133682, 51.3245397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10598402" }, "bbox": [ -0.4108436, 51.3196418, -0.4108436, 51.3196418 ], "geometry": { "type": "Point", "coordinates": [ -0.4108436, 51.3196418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10595738" }, "bbox": [ -0.4143135, 51.3229887, -0.4143135, 51.3229887 ], "geometry": { "type": "Point", "coordinates": [ -0.4143135, 51.3229887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10597259" }, "bbox": [ -0.4122336, 51.3246742, -0.4122336, 51.3246742 ], "geometry": { "type": "Point", "coordinates": [ -0.4122336, 51.3246742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10588583" }, "bbox": [ -0.4100507, 51.3175851, -0.4100507, 51.3175851 ], "geometry": { "type": "Point", "coordinates": [ -0.4100507, 51.3175851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10588447" }, "bbox": [ -0.4107752, 51.314514, -0.4107752, 51.314514 ], "geometry": { "type": "Point", "coordinates": [ -0.4107752, 51.314514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10589264" }, "bbox": [ -0.4096627, 51.3160119, -0.4096627, 51.3160119 ], "geometry": { "type": "Point", "coordinates": [ -0.4096627, 51.3160119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18433642" }, "bbox": [ -0.3082694, 51.1778835, -0.3082694, 51.1778835 ], "geometry": { "type": "Point", "coordinates": [ -0.3082694, 51.1778835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437517" }, "bbox": [ -0.3025104, 51.1755261, -0.3025104, 51.1755261 ], "geometry": { "type": "Point", "coordinates": [ -0.3025104, 51.1755261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437717" }, "bbox": [ -0.3024822, 51.1754006, -0.3024822, 51.1754006 ], "geometry": { "type": "Point", "coordinates": [ -0.3024822, 51.1754006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32513486" }, "bbox": [ -0.1053046, 51.2506213, -0.1053046, 51.2506213 ], "geometry": { "type": "Point", "coordinates": [ -0.1053046, 51.2506213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32515066" }, "bbox": [ -0.1027819, 51.2489349, -0.1027819, 51.2489349 ], "geometry": { "type": "Point", "coordinates": [ -0.1027819, 51.2489349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18497416" }, "bbox": [ -0.3018401, 51.2293848, -0.3018401, 51.2293848 ], "geometry": { "type": "Point", "coordinates": [ -0.3018401, 51.2293848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17499208" }, "bbox": [ -0.3126181, 51.228746, -0.3126181, 51.228746 ], "geometry": { "type": "Point", "coordinates": [ -0.3126181, 51.228746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454090" }, "bbox": [ -0.3066373, 51.2000935, -0.3066373, 51.2000935 ], "geometry": { "type": "Point", "coordinates": [ -0.3066373, 51.2000935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18440695" }, "bbox": [ -0.3121443, 51.1914919, -0.3121443, 51.1914919 ], "geometry": { "type": "Point", "coordinates": [ -0.3121443, 51.1914919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18484496" }, "bbox": [ -0.3054992, 51.2282398, -0.3054992, 51.2282398 ], "geometry": { "type": "Point", "coordinates": [ -0.3054992, 51.2282398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18480650" }, "bbox": [ -0.310843, 51.2236031, -0.310843, 51.2236031 ], "geometry": { "type": "Point", "coordinates": [ -0.310843, 51.2236031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41469943" }, "bbox": [ 0.0310949, 51.199365, 0.0310949, 51.199365 ], "geometry": { "type": "Point", "coordinates": [ 0.0310949, 51.199365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94441565" }, "bbox": [ -0.65401, 51.1933326, -0.65401, 51.1933326 ], "geometry": { "type": "Point", "coordinates": [ -0.65401, 51.1933326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28564079" }, "bbox": [ -0.1597953, 51.2954459, -0.1597953, 51.2954459 ], "geometry": { "type": "Point", "coordinates": [ -0.1597953, 51.2954459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27577025" }, "bbox": [ -0.1696191, 51.300102, -0.1696191, 51.300102 ], "geometry": { "type": "Point", "coordinates": [ -0.1696191, 51.300102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27573325" }, "bbox": [ -0.1750005, 51.3002093, -0.1750005, 51.3002093 ], "geometry": { "type": "Point", "coordinates": [ -0.1750005, 51.3002093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90365056" }, "bbox": [ -0.7083433, 51.1213501, -0.7083433, 51.1213501 ], "geometry": { "type": "Point", "coordinates": [ -0.7083433, 51.1213501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08573040" }, "bbox": [ -0.4483112, 51.3052068, -0.4483112, 51.3052068 ], "geometry": { "type": "Point", "coordinates": [ -0.4483112, 51.3052068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27555284" }, "bbox": [ -0.1727125, 51.2873762, -0.1727125, 51.2873762 ], "geometry": { "type": "Point", "coordinates": [ -0.1727125, 51.2873762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99732021" }, "bbox": [ -0.5735585, 51.4492907, -0.5735585, 51.4492907 ], "geometry": { "type": "Point", "coordinates": [ -0.5735585, 51.4492907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20403895" }, "bbox": [ -0.2801561, 51.1549327, -0.2801561, 51.1549327 ], "geometry": { "type": "Point", "coordinates": [ -0.2801561, 51.1549327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82456179" }, "bbox": [ -0.818474, 51.2052343, -0.818474, 51.2052343 ], "geometry": { "type": "Point", "coordinates": [ -0.818474, 51.2052343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82459584" }, "bbox": [ -0.8140195, 51.2057623, -0.8140195, 51.2057623 ], "geometry": { "type": "Point", "coordinates": [ -0.8140195, 51.2057623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34534319" }, "bbox": [ -0.0750286, 51.2629065, -0.0750286, 51.2629065 ], "geometry": { "type": "Point", "coordinates": [ -0.0750286, 51.2629065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35579492" }, "bbox": [ -0.0511233, 51.3041789, -0.0511233, 51.3041789 ], "geometry": { "type": "Point", "coordinates": [ -0.0511233, 51.3041789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35579086" }, "bbox": [ -0.0518407, 51.3036389, -0.0518407, 51.3036389 ], "geometry": { "type": "Point", "coordinates": [ -0.0518407, 51.3036389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35578388" }, "bbox": [ -0.0527455, 51.3039586, -0.0527455, 51.3039586 ], "geometry": { "type": "Point", "coordinates": [ -0.0527455, 51.3039586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35578687" }, "bbox": [ -0.0523103, 51.30388, -0.0523103, 51.30388 ], "geometry": { "type": "Point", "coordinates": [ -0.0523103, 51.30388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35579098" }, "bbox": [ -0.0513971, 51.3052019, -0.0513971, 51.3052019 ], "geometry": { "type": "Point", "coordinates": [ -0.0513971, 51.3052019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00582890" }, "bbox": [ -0.5620939, 51.3205106, -0.5620939, 51.3205106 ], "geometry": { "type": "Point", "coordinates": [ -0.5620939, 51.3205106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00582888" }, "bbox": [ -0.5620611, 51.3203296, -0.5620611, 51.3203296 ], "geometry": { "type": "Point", "coordinates": [ -0.5620611, 51.3203296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00581578" }, "bbox": [ -0.5642566, 51.319333, -0.5642566, 51.319333 ], "geometry": { "type": "Point", "coordinates": [ -0.5642566, 51.319333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02601768" }, "bbox": [ -0.5316895, 51.3345505, -0.5316895, 51.3345505 ], "geometry": { "type": "Point", "coordinates": [ -0.5316895, 51.3345505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00597323" }, "bbox": [ -0.5562225, 51.3229928, -0.5562225, 51.3229928 ], "geometry": { "type": "Point", "coordinates": [ -0.5562225, 51.3229928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97361854" }, "bbox": [ -0.6128127, 51.1199969, -0.6128127, 51.1199969 ], "geometry": { "type": "Point", "coordinates": [ -0.6128127, 51.1199969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99374040" }, "bbox": [ -0.579908, 51.1275091, -0.579908, 51.1275091 ], "geometry": { "type": "Point", "coordinates": [ -0.579908, 51.1275091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15450137" }, "bbox": [ -0.3553937, 51.1960174, -0.3553937, 51.1960174 ], "geometry": { "type": "Point", "coordinates": [ -0.3553937, 51.1960174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38447704" }, "bbox": [ -0.0159796, 51.1785361, -0.0159796, 51.1785361 ], "geometry": { "type": "Point", "coordinates": [ -0.0159796, 51.1785361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21397688" }, "bbox": [ -0.2606895, 51.145271, -0.2606895, 51.145271 ], "geometry": { "type": "Point", "coordinates": [ -0.2606895, 51.145271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428274" }, "bbox": [ -0.287443, 51.1714211, -0.287443, 51.1714211 ], "geometry": { "type": "Point", "coordinates": [ -0.287443, 51.1714211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27430726" }, "bbox": [ -0.1837585, 51.1744327, -0.1837585, 51.1744327 ], "geometry": { "type": "Point", "coordinates": [ -0.1837585, 51.1744327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93519830" }, "bbox": [ -0.6546019, 51.2535191, -0.6546019, 51.2535191 ], "geometry": { "type": "Point", "coordinates": [ -0.6546019, 51.2535191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22461634" }, "bbox": [ -0.2532004, 51.2030675, -0.2532004, 51.2030675 ], "geometry": { "type": "Point", "coordinates": [ -0.2532004, 51.2030675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36436220" }, "bbox": [ -0.0471283, 51.1717126, -0.0471283, 51.1717126 ], "geometry": { "type": "Point", "coordinates": [ -0.0471283, 51.1717126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07563548" }, "bbox": [ -0.4616537, 51.2973736, -0.4616537, 51.2973736 ], "geometry": { "type": "Point", "coordinates": [ -0.4616537, 51.2973736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07563846" }, "bbox": [ -0.4612465, 51.2970552, -0.4612465, 51.2970552 ], "geometry": { "type": "Point", "coordinates": [ -0.4612465, 51.2970552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07564447" }, "bbox": [ -0.4602676, 51.2972193, -0.4602676, 51.2972193 ], "geometry": { "type": "Point", "coordinates": [ -0.4602676, 51.2972193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07562757" }, "bbox": [ -0.4627282, 51.2982212, -0.4627282, 51.2982212 ], "geometry": { "type": "Point", "coordinates": [ -0.4627282, 51.2982212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01472944" }, "bbox": [ -0.547351, 51.2172586, -0.547351, 51.2172586 ], "geometry": { "type": "Point", "coordinates": [ -0.547351, 51.2172586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01472146" }, "bbox": [ -0.5523736, 51.2173463, -0.5523736, 51.2173463 ], "geometry": { "type": "Point", "coordinates": [ -0.5523736, 51.2173463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461634" }, "bbox": [ -0.123982, 51.2013021, -0.123982, 51.2013021 ], "geometry": { "type": "Point", "coordinates": [ -0.123982, 51.2013021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12587102" }, "bbox": [ -0.3841817, 51.3102853, -0.3841817, 51.3102853 ], "geometry": { "type": "Point", "coordinates": [ -0.3841817, 51.3102853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12588316" }, "bbox": [ -0.3825493, 51.3117299, -0.3825493, 51.3117299 ], "geometry": { "type": "Point", "coordinates": [ -0.3825493, 51.3117299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12588937" }, "bbox": [ -0.3825177, 51.3126296, -0.3825177, 51.3126296 ], "geometry": { "type": "Point", "coordinates": [ -0.3825177, 51.3126296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570381" }, "bbox": [ -0.379881, 51.30825, -0.379881, 51.30825 ], "geometry": { "type": "Point", "coordinates": [ -0.379881, 51.30825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570190" }, "bbox": [ -0.3801269, 51.3090378, -0.3801269, 51.3090378 ], "geometry": { "type": "Point", "coordinates": [ -0.3801269, 51.3090378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24502703" }, "bbox": [ -0.2214375, 51.235787, -0.2214375, 51.235787 ], "geometry": { "type": "Point", "coordinates": [ -0.2214375, 51.235787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24502907" }, "bbox": [ -0.2210271, 51.2363449, -0.2210271, 51.2363449 ], "geometry": { "type": "Point", "coordinates": [ -0.2210271, 51.2363449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99453127" }, "bbox": [ -0.5799052, 51.1981036, -0.5799052, 51.1981036 ], "geometry": { "type": "Point", "coordinates": [ -0.5799052, 51.1981036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28583590" }, "bbox": [ -0.1597085, 51.3147404, -0.1597085, 51.3147404 ], "geometry": { "type": "Point", "coordinates": [ -0.1597085, 51.3147404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28582587" }, "bbox": [ -0.1616145, 51.3148725, -0.1616145, 51.3148725 ], "geometry": { "type": "Point", "coordinates": [ -0.1616145, 51.3148725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03407338" }, "bbox": [ -0.5179358, 51.1530765, -0.5179358, 51.1530765 ], "geometry": { "type": "Point", "coordinates": [ -0.5179358, 51.1530765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03408077" }, "bbox": [ -0.5170767, 51.1566864, -0.5170767, 51.1566864 ], "geometry": { "type": "Point", "coordinates": [ -0.5170767, 51.1566864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418508" }, "bbox": [ -0.5161732, 51.1595681, -0.5161732, 51.1595681 ], "geometry": { "type": "Point", "coordinates": [ -0.5161732, 51.1595681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499526" }, "bbox": [ -0.7129522, 51.2352727, -0.7129522, 51.2352727 ], "geometry": { "type": "Point", "coordinates": [ -0.7129522, 51.2352727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16388172" }, "bbox": [ -0.3325787, 51.135881, -0.3325787, 51.135881 ], "geometry": { "type": "Point", "coordinates": [ -0.3325787, 51.135881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16384877" }, "bbox": [ -0.3364654, 51.1364414, -0.3364654, 51.1364414 ], "geometry": { "type": "Point", "coordinates": [ -0.3364654, 51.1364414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16387174" }, "bbox": [ -0.3333938, 51.1361453, -0.3333938, 51.1361453 ], "geometry": { "type": "Point", "coordinates": [ -0.3333938, 51.1361453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416363" }, "bbox": [ -0.4192707, 51.1633313, -0.4192707, 51.1633313 ], "geometry": { "type": "Point", "coordinates": [ -0.4192707, 51.1633313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10417073" }, "bbox": [ -0.4181591, 51.1641695, -0.4181591, 51.1641695 ], "geometry": { "type": "Point", "coordinates": [ -0.4181591, 51.1641695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09372998" }, "bbox": [ -0.4393769, 51.1306938, -0.4393769, 51.1306938 ], "geometry": { "type": "Point", "coordinates": [ -0.4393769, 51.1306938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09374074" }, "bbox": [ -0.4382899, 51.1277761, -0.4382899, 51.1277761 ], "geometry": { "type": "Point", "coordinates": [ -0.4382899, 51.1277761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05364946" }, "bbox": [ -0.4941922, 51.1177073, -0.4941922, 51.1177073 ], "geometry": { "type": "Point", "coordinates": [ -0.4941922, 51.1177073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04376798" }, "bbox": [ -0.5055921, 51.1316658, -0.5055921, 51.1316658 ], "geometry": { "type": "Point", "coordinates": [ -0.5055921, 51.1316658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04377741" }, "bbox": [ -0.504187, 51.1264628, -0.504187, 51.1264628 ], "geometry": { "type": "Point", "coordinates": [ -0.504187, 51.1264628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05371490" }, "bbox": [ -0.4987657, 51.1307628, -0.4987657, 51.1307628 ], "geometry": { "type": "Point", "coordinates": [ -0.4987657, 51.1307628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05374586" }, "bbox": [ -0.4944345, 51.1303376, -0.4944345, 51.1303376 ], "geometry": { "type": "Point", "coordinates": [ -0.4944345, 51.1303376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05370225" }, "bbox": [ -0.500365, 51.124988, -0.500365, 51.124988 ], "geometry": { "type": "Point", "coordinates": [ -0.500365, 51.124988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05371191" }, "bbox": [ -0.499068, 51.1308883, -0.499068, 51.1308883 ], "geometry": { "type": "Point", "coordinates": [ -0.499068, 51.1308883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04368174" }, "bbox": [ -0.5037903, 51.1202476, -0.5037903, 51.1202476 ], "geometry": { "type": "Point", "coordinates": [ -0.5037903, 51.1202476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10371208" }, "bbox": [ -0.4280386, 51.1223276, -0.4280386, 51.1223276 ], "geometry": { "type": "Point", "coordinates": [ -0.4280386, 51.1223276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20461855" }, "bbox": [ -0.2810079, 51.2055253, -0.2810079, 51.2055253 ], "geometry": { "type": "Point", "coordinates": [ -0.2810079, 51.2055253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05447287" }, "bbox": [ -0.4883987, 51.1931721, -0.4883987, 51.1931721 ], "geometry": { "type": "Point", "coordinates": [ -0.4883987, 51.1931721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29470591" }, "bbox": [ -0.1537818, 51.2157903, -0.1537818, 51.2157903 ], "geometry": { "type": "Point", "coordinates": [ -0.1537818, 51.2157903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28489816" }, "bbox": [ -0.1546751, 51.2180099, -0.1546751, 51.2180099 ], "geometry": { "type": "Point", "coordinates": [ -0.1546751, 51.2180099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478794" }, "bbox": [ -0.1564282, 51.2163615, -0.1564282, 51.2163615 ], "geometry": { "type": "Point", "coordinates": [ -0.1564282, 51.2163615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90486936" }, "bbox": [ -0.7025292, 51.2272017, -0.7025292, 51.2272017 ], "geometry": { "type": "Point", "coordinates": [ -0.7025292, 51.2272017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90489136" }, "bbox": [ -0.6994112, 51.2271786, -0.6994112, 51.2271786 ], "geometry": { "type": "Point", "coordinates": [ -0.6994112, 51.2271786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31533786" }, "bbox": [ -0.1182961, 51.2687916, -0.1182961, 51.2687916 ], "geometry": { "type": "Point", "coordinates": [ -0.1182961, 51.2687916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31532988" }, "bbox": [ -0.1194057, 51.2689846, -0.1194057, 51.2689846 ], "geometry": { "type": "Point", "coordinates": [ -0.1194057, 51.2689846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30519627" }, "bbox": [ -0.1251222, 51.2456165, -0.1251222, 51.2456165 ], "geometry": { "type": "Point", "coordinates": [ -0.1251222, 51.2456165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31510004" }, "bbox": [ -0.1244909, 51.2438571, -0.1244909, 51.2438571 ], "geometry": { "type": "Point", "coordinates": [ -0.1244909, 51.2438571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10688270" }, "bbox": [ -0.4078363, 51.4066237, -0.4078363, 51.4066237 ], "geometry": { "type": "Point", "coordinates": [ -0.4078363, 51.4066237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15504441" }, "bbox": [ -0.347028, 51.2412302, -0.347028, 51.2412302 ], "geometry": { "type": "Point", "coordinates": [ -0.347028, 51.2412302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15506227" }, "bbox": [ -0.3447296, 51.2399333, -0.3447296, 51.2399333 ], "geometry": { "type": "Point", "coordinates": [ -0.3447296, 51.2399333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622887" }, "bbox": [ -0.2882775, 51.3524891, -0.2882775, 51.3524891 ], "geometry": { "type": "Point", "coordinates": [ -0.2882775, 51.3524891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19626092" }, "bbox": [ -0.2837541, 51.3527907, -0.2837541, 51.3527907 ], "geometry": { "type": "Point", "coordinates": [ -0.2837541, 51.3527907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19626686" }, "bbox": [ -0.282719, 51.3521368, -0.282719, 51.3521368 ], "geometry": { "type": "Point", "coordinates": [ -0.282719, 51.3521368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399817" }, "bbox": [ -0.5721036, 51.1430526, -0.5721036, 51.1430526 ], "geometry": { "type": "Point", "coordinates": [ -0.5721036, 51.1430526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399620" }, "bbox": [ -0.5723429, 51.1433836, -0.5723429, 51.1433836 ], "geometry": { "type": "Point", "coordinates": [ -0.5723429, 51.1433836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02395012" }, "bbox": [ -0.5362171, 51.1421832, -0.5362171, 51.1421832 ], "geometry": { "type": "Point", "coordinates": [ -0.5362171, 51.1421832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92491947" }, "bbox": [ -0.6811362, 51.23685, -0.6811362, 51.23685 ], "geometry": { "type": "Point", "coordinates": [ -0.6811362, 51.23685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92491355" }, "bbox": [ -0.6827816, 51.2375547, -0.6827816, 51.2375547 ], "geometry": { "type": "Point", "coordinates": [ -0.6827816, 51.2375547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02543096" }, "bbox": [ -0.534385, 51.2850799, -0.534385, 51.2850799 ], "geometry": { "type": "Point", "coordinates": [ -0.534385, 51.2850799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02542785" }, "bbox": [ -0.534886, 51.2836292, -0.534886, 51.2836292 ], "geometry": { "type": "Point", "coordinates": [ -0.534886, 51.2836292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99553227" }, "bbox": [ -0.5771114, 51.2877798, -0.5771114, 51.2877798 ], "geometry": { "type": "Point", "coordinates": [ -0.5771114, 51.2877798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36501102" }, "bbox": [ -0.0514758, 51.2331739, -0.0514758, 51.2331739 ], "geometry": { "type": "Point", "coordinates": [ -0.0514758, 51.2331739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23432177" }, "bbox": [ -0.2385894, 51.1799346, -0.2385894, 51.1799346 ], "geometry": { "type": "Point", "coordinates": [ -0.2385894, 51.1799346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23450446" }, "bbox": [ -0.2405247, 51.1951736, -0.2405247, 51.1951736 ], "geometry": { "type": "Point", "coordinates": [ -0.2405247, 51.1951736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20409903" }, "bbox": [ -0.2717874, 51.1466599, -0.2717874, 51.1466599 ], "geometry": { "type": "Point", "coordinates": [ -0.2717874, 51.1466599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33491664" }, "bbox": [ -0.0943464, 51.2298043, -0.0943464, 51.2298043 ], "geometry": { "type": "Point", "coordinates": [ -0.0943464, 51.2298043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99537749" }, "bbox": [ -0.5709811, 51.2717223, -0.5709811, 51.2717223 ], "geometry": { "type": "Point", "coordinates": [ -0.5709811, 51.2717223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99445891" }, "bbox": [ -0.5762645, 51.1947693, -0.5762645, 51.1947693 ], "geometry": { "type": "Point", "coordinates": [ -0.5762645, 51.1947693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99455905" }, "bbox": [ -0.5758247, 51.1961315, -0.5758247, 51.1961315 ], "geometry": { "type": "Point", "coordinates": [ -0.5758247, 51.1961315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40468457" }, "bbox": [ 0.0142341, 51.2009071, 0.0142341, 51.2009071 ], "geometry": { "type": "Point", "coordinates": [ 0.0142341, 51.2009071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22495890" }, "bbox": [ -0.245257, 51.2354783, -0.245257, 51.2354783 ], "geometry": { "type": "Point", "coordinates": [ -0.245257, 51.2354783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05712467" }, "bbox": [ -0.4873494, 51.4343193, -0.4873494, 51.4343193 ], "geometry": { "type": "Point", "coordinates": [ -0.4873494, 51.4343193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93490319" }, "bbox": [ -0.6686442, 51.2344612, -0.6686442, 51.2344612 ], "geometry": { "type": "Point", "coordinates": [ -0.6686442, 51.2344612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29481923" }, "bbox": [ -0.1516921, 51.2184159, -0.1516921, 51.2184159 ], "geometry": { "type": "Point", "coordinates": [ -0.1516921, 51.2184159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35413501" }, "bbox": [ -0.0662028, 51.1523717, -0.0662028, 51.1523717 ], "geometry": { "type": "Point", "coordinates": [ -0.0662028, 51.1523717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08565254" }, "bbox": [ -0.4450351, 51.297444, -0.4450351, 51.297444 ], "geometry": { "type": "Point", "coordinates": [ -0.4450351, 51.297444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08567141" }, "bbox": [ -0.4419496, 51.2964937, -0.4419496, 51.2964937 ], "geometry": { "type": "Point", "coordinates": [ -0.4419496, 51.2964937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34511159" }, "bbox": [ -0.0797153, 51.2477555, -0.0797153, 51.2477555 ], "geometry": { "type": "Point", "coordinates": [ -0.0797153, 51.2477555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29466571" }, "bbox": [ -0.1456756, 51.2048325, -0.1456756, 51.2048325 ], "geometry": { "type": "Point", "coordinates": [ -0.1456756, 51.2048325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91325181" }, "bbox": [ -0.6948239, 51.0872615, -0.6948239, 51.0872615 ], "geometry": { "type": "Point", "coordinates": [ -0.6948239, 51.0872615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91321272" }, "bbox": [ -0.7003176, 51.0867048, -0.7003176, 51.0867048 ], "geometry": { "type": "Point", "coordinates": [ -0.7003176, 51.0867048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02551918" }, "bbox": [ -0.5361364, 51.2866443, -0.5361364, 51.2866443 ], "geometry": { "type": "Point", "coordinates": [ -0.5361364, 51.2866443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82462507" }, "bbox": [ -0.823725, 51.2080014, -0.823725, 51.2080014 ], "geometry": { "type": "Point", "coordinates": [ -0.823725, 51.2080014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97596961" }, "bbox": [ -0.5993587, 51.3271726, -0.5993587, 51.3271726 ], "geometry": { "type": "Point", "coordinates": [ -0.5993587, 51.3271726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457084" }, "bbox": [ -0.1019486, 51.1963807, -0.1019486, 51.1963807 ], "geometry": { "type": "Point", "coordinates": [ -0.1019486, 51.1963807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40525112" }, "bbox": [ 0.0122225, 51.2506172, 0.0122225, 51.2506172 ], "geometry": { "type": "Point", "coordinates": [ 0.0122225, 51.2506172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40529417" }, "bbox": [ 0.0177434, 51.251217, 0.0177434, 51.251217 ], "geometry": { "type": "Point", "coordinates": [ 0.0177434, 51.251217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16457198" }, "bbox": [ -0.3305844, 51.200967, -0.3305844, 51.200967 ], "geometry": { "type": "Point", "coordinates": [ -0.3305844, 51.200967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16459349" }, "bbox": [ -0.3279049, 51.1967714, -0.3279049, 51.1967714 ], "geometry": { "type": "Point", "coordinates": [ -0.3279049, 51.1967714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466853" }, "bbox": [ -0.3311928, 51.2060806, -0.3311928, 51.2060806 ], "geometry": { "type": "Point", "coordinates": [ -0.3311928, 51.2060806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15529519" }, "bbox": [ -0.339672, 51.2571399, -0.339672, 51.2571399 ], "geometry": { "type": "Point", "coordinates": [ -0.339672, 51.2571399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448531" }, "bbox": [ -0.3294001, 51.1861355, -0.3294001, 51.1861355 ], "geometry": { "type": "Point", "coordinates": [ -0.3294001, 51.1861355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15511092" }, "bbox": [ -0.3519968, 51.254924, -0.3519968, 51.254924 ], "geometry": { "type": "Point", "coordinates": [ -0.3519968, 51.254924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14428595" }, "bbox": [ -0.3587518, 51.1742011, -0.3587518, 51.1742011 ], "geometry": { "type": "Point", "coordinates": [ -0.3587518, 51.1742011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14432201" }, "bbox": [ -0.3672031, 51.1751096, -0.3672031, 51.1751096 ], "geometry": { "type": "Point", "coordinates": [ -0.3672031, 51.1751096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14436304" }, "bbox": [ -0.3609485, 51.1752771, -0.3609485, 51.1752771 ], "geometry": { "type": "Point", "coordinates": [ -0.3609485, 51.1752771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89370813" }, "bbox": [ -0.7283137, 51.1266224, -0.7283137, 51.1266224 ], "geometry": { "type": "Point", "coordinates": [ -0.7283137, 51.1266224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89370637" }, "bbox": [ -0.728672, 51.1287252, -0.728672, 51.1287252 ], "geometry": { "type": "Point", "coordinates": [ -0.728672, 51.1287252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32500720" }, "bbox": [ -0.1096983, 51.2357131, -0.1096983, 51.2357131 ], "geometry": { "type": "Point", "coordinates": [ -0.1096983, 51.2357131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84473050" }, "bbox": [ -0.7944588, 51.2204212, -0.7944588, 51.2204212 ], "geometry": { "type": "Point", "coordinates": [ -0.7944588, 51.2204212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01554824" }, "bbox": [ -0.5461605, 51.2873052, -0.5461605, 51.2873052 ], "geometry": { "type": "Point", "coordinates": [ -0.5461605, 51.2873052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05624966" }, "bbox": [ -0.4864829, 51.3535383, -0.4864829, 51.3535383 ], "geometry": { "type": "Point", "coordinates": [ -0.4864829, 51.3535383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05638181" }, "bbox": [ -0.4813848, 51.3634713, -0.4813848, 51.3634713 ], "geometry": { "type": "Point", "coordinates": [ -0.4813848, 51.3634713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05634814" }, "bbox": [ -0.4864322, 51.3574691, -0.4864322, 51.3574691 ], "geometry": { "type": "Point", "coordinates": [ -0.4864322, 51.3574691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05634815" }, "bbox": [ -0.4864616, 51.3576858, -0.4864616, 51.3576858 ], "geometry": { "type": "Point", "coordinates": [ -0.4864616, 51.3576858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05634818" }, "bbox": [ -0.4864749, 51.357844, -0.4864749, 51.357844 ], "geometry": { "type": "Point", "coordinates": [ -0.4864749, 51.357844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05649303" }, "bbox": [ -0.4799017, 51.3654341, -0.4799017, 51.3654341 ], "geometry": { "type": "Point", "coordinates": [ -0.4799017, 51.3654341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24516089" }, "bbox": [ -0.2158849, 51.2526086, -0.2158849, 51.2526086 ], "geometry": { "type": "Point", "coordinates": [ -0.2158849, 51.2526086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18500877" }, "bbox": [ -0.3097269, 51.2442815, -0.3097269, 51.2442815 ], "geometry": { "type": "Point", "coordinates": [ -0.3097269, 51.2442815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26522832" }, "bbox": [ -0.1917144, 51.2561571, -0.1917144, 51.2561571 ], "geometry": { "type": "Point", "coordinates": [ -0.1917144, 51.2561571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18460474" }, "bbox": [ -0.3115836, 51.2080364, -0.3115836, 51.2080364 ], "geometry": { "type": "Point", "coordinates": [ -0.3115836, 51.2080364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17451316" }, "bbox": [ -0.3251413, 51.1937037, -0.3251413, 51.1937037 ], "geometry": { "type": "Point", "coordinates": [ -0.3251413, 51.1937037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17450630" }, "bbox": [ -0.3261524, 51.1949473, -0.3261524, 51.1949473 ], "geometry": { "type": "Point", "coordinates": [ -0.3261524, 51.1949473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17444136" }, "bbox": [ -0.3213158, 51.1865007, -0.3213158, 51.1865007 ], "geometry": { "type": "Point", "coordinates": [ -0.3213158, 51.1865007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16467012" }, "bbox": [ -0.3309368, 51.2023767, -0.3309368, 51.2023767 ], "geometry": { "type": "Point", "coordinates": [ -0.3309368, 51.2023767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478944" }, "bbox": [ -0.313524, 51.2140574, -0.313524, 51.2140574 ], "geometry": { "type": "Point", "coordinates": [ -0.313524, 51.2140574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478857" }, "bbox": [ -0.3135566, 51.2152385, -0.3135566, 51.2152385 ], "geometry": { "type": "Point", "coordinates": [ -0.3135566, 51.2152385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478751" }, "bbox": [ -0.3137732, 51.2147048, -0.3137732, 51.2147048 ], "geometry": { "type": "Point", "coordinates": [ -0.3137732, 51.2147048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478375" }, "bbox": [ -0.3140769, 51.2164013, -0.3140769, 51.2164013 ], "geometry": { "type": "Point", "coordinates": [ -0.3140769, 51.2164013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478955" }, "bbox": [ -0.3134954, 51.2149594, -0.3134954, 51.2149594 ], "geometry": { "type": "Point", "coordinates": [ -0.3134954, 51.2149594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479051" }, "bbox": [ -0.3134159, 51.214665, -0.3134159, 51.214665 ], "geometry": { "type": "Point", "coordinates": [ -0.3134159, 51.214665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86411778" }, "bbox": [ -0.7689846, 51.1687939, -0.7689846, 51.1687939 ], "geometry": { "type": "Point", "coordinates": [ -0.7689846, 51.1687939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02421655" }, "bbox": [ -0.5377461, 51.1719145, -0.5377461, 51.1719145 ], "geometry": { "type": "Point", "coordinates": [ -0.5377461, 51.1719145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34572813" }, "bbox": [ -0.0760409, 51.29755, -0.0760409, 51.29755 ], "geometry": { "type": "Point", "coordinates": [ -0.0760409, 51.29755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23597105" }, "bbox": [ -0.2258963, 51.3169045, -0.2258963, 51.3169045 ], "geometry": { "type": "Point", "coordinates": [ -0.2258963, 51.3169045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86461222" }, "bbox": [ -0.7677696, 51.2090794, -0.7677696, 51.2090794 ], "geometry": { "type": "Point", "coordinates": [ -0.7677696, 51.2090794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88527460" }, "bbox": [ -0.7305159, 51.2647349, -0.7305159, 51.2647349 ], "geometry": { "type": "Point", "coordinates": [ -0.7305159, 51.2647349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88518572" }, "bbox": [ -0.7279703, 51.2576659, -0.7279703, 51.2576659 ], "geometry": { "type": "Point", "coordinates": [ -0.7279703, 51.2576659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10573251" }, "bbox": [ -0.4187452, 51.3060923, -0.4187452, 51.3060923 ], "geometry": { "type": "Point", "coordinates": [ -0.4187452, 51.3060923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37411021" }, "bbox": [ -0.040922, 51.1537659, -0.040922, 51.1537659 ], "geometry": { "type": "Point", "coordinates": [ -0.040922, 51.1537659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37401097" }, "bbox": [ -0.0408956, 51.1514855, -0.0408956, 51.1514855 ], "geometry": { "type": "Point", "coordinates": [ -0.0408956, 51.1514855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35478351" }, "bbox": [ -0.0568025, 51.210658, -0.0568025, 51.210658 ], "geometry": { "type": "Point", "coordinates": [ -0.0568025, 51.210658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35479619" }, "bbox": [ -0.0550155, 51.2072829, -0.0550155, 51.2072829 ], "geometry": { "type": "Point", "coordinates": [ -0.0550155, 51.2072829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24489948" }, "bbox": [ -0.2112793, 51.2215499, -0.2112793, 51.2215499 ], "geometry": { "type": "Point", "coordinates": [ -0.2112793, 51.2215499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04360476" }, "bbox": [ -0.514584, 51.1208226, -0.514584, 51.1208226 ], "geometry": { "type": "Point", "coordinates": [ -0.514584, 51.1208226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04365661" }, "bbox": [ -0.5075699, 51.1190442, -0.5075699, 51.1190442 ], "geometry": { "type": "Point", "coordinates": [ -0.5075699, 51.1190442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37415791" }, "bbox": [ -0.0338823, 51.1599591, -0.0338823, 51.1599591 ], "geometry": { "type": "Point", "coordinates": [ -0.0338823, 51.1599591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37416695" }, "bbox": [ -0.0332846, 51.16017, -0.0332846, 51.16017 ], "geometry": { "type": "Point", "coordinates": [ -0.0332846, 51.16017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38563952" }, "bbox": [ -0.0164045, 51.291058, -0.0164045, 51.291058 ], "geometry": { "type": "Point", "coordinates": [ -0.0164045, 51.291058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38550783" }, "bbox": [ -0.0211584, 51.2846778, -0.0211584, 51.2846778 ], "geometry": { "type": "Point", "coordinates": [ -0.0211584, 51.2846778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37576945" }, "bbox": [ -0.0262427, 51.2995651, -0.0262427, 51.2995651 ], "geometry": { "type": "Point", "coordinates": [ -0.0262427, 51.2995651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37575548" }, "bbox": [ -0.02825, 51.2997878, -0.02825, 51.2997878 ], "geometry": { "type": "Point", "coordinates": [ -0.02825, 51.2997878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38407096" }, "bbox": [ -0.0182554, 51.1510386, -0.0182554, 51.1510386 ], "geometry": { "type": "Point", "coordinates": [ -0.0182554, 51.1510386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99450961" }, "bbox": [ -0.5824626, 51.202435, -0.5824626, 51.202435 ], "geometry": { "type": "Point", "coordinates": [ -0.5824626, 51.202435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459031" }, "bbox": [ -0.586933, 51.1983858, -0.586933, 51.1983858 ], "geometry": { "type": "Point", "coordinates": [ -0.586933, 51.1983858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04363448" }, "bbox": [ -0.5104194, 51.118458, -0.5104194, 51.118458 ], "geometry": { "type": "Point", "coordinates": [ -0.5104194, 51.118458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362247" }, "bbox": [ -0.5122695, 51.1182071, -0.5122695, 51.1182071 ], "geometry": { "type": "Point", "coordinates": [ -0.5122695, 51.1182071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91320824" }, "bbox": [ -0.7009705, 51.0823353, -0.7009705, 51.0823353 ], "geometry": { "type": "Point", "coordinates": [ -0.7009705, 51.0823353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92340232" }, "bbox": [ -0.6868627, 51.1009027, -0.6868627, 51.1009027 ], "geometry": { "type": "Point", "coordinates": [ -0.6868627, 51.1009027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90338586" }, "bbox": [ -0.7038665, 51.0968181, -0.7038665, 51.0968181 ], "geometry": { "type": "Point", "coordinates": [ -0.7038665, 51.0968181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90336892" }, "bbox": [ -0.7062993, 51.0975529, -0.7062993, 51.0975529 ], "geometry": { "type": "Point", "coordinates": [ -0.7062993, 51.0975529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91340813" }, "bbox": [ -0.701075, 51.0990753, -0.701075, 51.0990753 ], "geometry": { "type": "Point", "coordinates": [ -0.701075, 51.0990753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91349627" }, "bbox": [ -0.6878905, 51.1003804, -0.6878905, 51.1003804 ], "geometry": { "type": "Point", "coordinates": [ -0.6878905, 51.1003804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91331691" }, "bbox": [ -0.6995223, 51.0972878, -0.6995223, 51.0972878 ], "geometry": { "type": "Point", "coordinates": [ -0.6995223, 51.0972878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91330083" }, "bbox": [ -0.7015345, 51.0965308, -0.7015345, 51.0965308 ], "geometry": { "type": "Point", "coordinates": [ -0.7015345, 51.0965308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91343605" }, "bbox": [ -0.6967005, 51.0984837, -0.6967005, 51.0984837 ], "geometry": { "type": "Point", "coordinates": [ -0.6967005, 51.0984837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03703416" }, "bbox": [ -0.5151287, 51.4213202, -0.5151287, 51.4213202 ], "geometry": { "type": "Point", "coordinates": [ -0.5151287, 51.4213202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05671632" }, "bbox": [ -0.4897672, 51.3952042, -0.4897672, 51.3952042 ], "geometry": { "type": "Point", "coordinates": [ -0.4897672, 51.3952042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05671045" }, "bbox": [ -0.4915431, 51.3968988, -0.4915431, 51.3968988 ], "geometry": { "type": "Point", "coordinates": [ -0.4915431, 51.3968988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96433875" }, "bbox": [ -0.6215967, 51.1851713, -0.6215967, 51.1851713 ], "geometry": { "type": "Point", "coordinates": [ -0.6215967, 51.1851713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95435345" }, "bbox": [ -0.6346252, 51.1823901, -0.6346252, 51.1823901 ], "geometry": { "type": "Point", "coordinates": [ -0.6346252, 51.1823901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95436386" }, "bbox": [ -0.6330439, 51.1861066, -0.6330439, 51.1861066 ], "geometry": { "type": "Point", "coordinates": [ -0.6330439, 51.1861066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95442138" }, "bbox": [ -0.6391361, 51.1903898, -0.6391361, 51.1903898 ], "geometry": { "type": "Point", "coordinates": [ -0.6391361, 51.1903898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95443211" }, "bbox": [ -0.6375846, 51.1883399, -0.6375846, 51.1883399 ], "geometry": { "type": "Point", "coordinates": [ -0.6375846, 51.1883399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95444242" }, "bbox": [ -0.6360975, 51.1910967, -0.6360975, 51.1910967 ], "geometry": { "type": "Point", "coordinates": [ -0.6360975, 51.1910967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95449135" }, "bbox": [ -0.6300485, 51.1903266, -0.6300485, 51.1903266 ], "geometry": { "type": "Point", "coordinates": [ -0.6300485, 51.1903266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95443619" }, "bbox": [ -0.6368743, 51.1890094, -0.6368743, 51.1890094 ], "geometry": { "type": "Point", "coordinates": [ -0.6368743, 51.1890094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40427650" }, "bbox": [ 0.0126705, 51.1642199, 0.0126705, 51.1642199 ], "geometry": { "type": "Point", "coordinates": [ 0.0126705, 51.1642199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41435719" }, "bbox": [ 0.0253962, 51.1706349, 0.0253962, 51.1706349 ], "geometry": { "type": "Point", "coordinates": [ 0.0253962, 51.1706349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41434906" }, "bbox": [ 0.0225805, 51.1693455, 0.0225805, 51.1693455 ], "geometry": { "type": "Point", "coordinates": [ 0.0225805, 51.1693455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41425421" }, "bbox": [ 0.0230316, 51.161691, 0.0230316, 51.161691 ], "geometry": { "type": "Point", "coordinates": [ 0.0230316, 51.161691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41426534" }, "bbox": [ 0.0244353, 51.1630341, 0.0244353, 51.1630341 ], "geometry": { "type": "Point", "coordinates": [ 0.0244353, 51.1630341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41426273" }, "bbox": [ 0.0242699, 51.1661185, 0.0242699, 51.1661185 ], "geometry": { "type": "Point", "coordinates": [ 0.0242699, 51.1661185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41425974" }, "bbox": [ 0.0238179, 51.1661309, 0.0238179, 51.1661309 ], "geometry": { "type": "Point", "coordinates": [ 0.0238179, 51.1661309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41421540" }, "bbox": [ 0.0174383, 51.163496, 0.0174383, 51.163496 ], "geometry": { "type": "Point", "coordinates": [ 0.0174383, 51.163496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41420942" }, "bbox": [ 0.0164883, 51.1638151, 0.0164883, 51.1638151 ], "geometry": { "type": "Point", "coordinates": [ 0.0164883, 51.1638151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41424487" }, "bbox": [ 0.0211613, 51.1674353, 0.0211613, 51.1674353 ], "geometry": { "type": "Point", "coordinates": [ 0.0211613, 51.1674353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41428367" }, "bbox": [ 0.0260109, 51.1652641, 0.0260109, 51.1652641 ], "geometry": { "type": "Point", "coordinates": [ 0.0260109, 51.1652641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41427051" }, "bbox": [ 0.025279, 51.1644449, 0.025279, 51.1644449 ], "geometry": { "type": "Point", "coordinates": [ 0.025279, 51.1644449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41421960" }, "bbox": [ 0.0180954, 51.1653733, 0.0180954, 51.1653733 ], "geometry": { "type": "Point", "coordinates": [ 0.0180954, 51.1653733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41429778" }, "bbox": [ 0.0294116, 51.1667031, 0.0294116, 51.1667031 ], "geometry": { "type": "Point", "coordinates": [ 0.0294116, 51.1667031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41427446" }, "bbox": [ 0.0261167, 51.163824, 0.0261167, 51.163824 ], "geometry": { "type": "Point", "coordinates": [ 0.0261167, 51.163824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87334309" }, "bbox": [ -0.7523719, 51.0906426, -0.7523719, 51.0906426 ], "geometry": { "type": "Point", "coordinates": [ -0.7523719, 51.0906426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87376022" }, "bbox": [ -0.7473541, 51.1260311, -0.7473541, 51.1260311 ], "geometry": { "type": "Point", "coordinates": [ -0.7473541, 51.1260311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87374034" }, "bbox": [ -0.7521935, 51.1287908, -0.7521935, 51.1287908 ], "geometry": { "type": "Point", "coordinates": [ -0.7521935, 51.1287908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90321278" }, "bbox": [ -0.7144294, 51.0876215, -0.7144294, 51.0876215 ], "geometry": { "type": "Point", "coordinates": [ -0.7144294, 51.0876215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91331481" }, "bbox": [ -0.6997367, 51.0963293, -0.6997367, 51.0963293 ], "geometry": { "type": "Point", "coordinates": [ -0.6997367, 51.0963293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91349518" }, "bbox": [ -0.6881541, 51.0996658, -0.6881541, 51.0996658 ], "geometry": { "type": "Point", "coordinates": [ -0.6881541, 51.0996658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91346680" }, "bbox": [ -0.691767, 51.1053191, -0.691767, 51.1053191 ], "geometry": { "type": "Point", "coordinates": [ -0.691767, 51.1053191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17397184" }, "bbox": [ -0.3178232, 51.1466029, -0.3178232, 51.1466029 ], "geometry": { "type": "Point", "coordinates": [ -0.3178232, 51.1466029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17405322" }, "bbox": [ -0.3207857, 51.1492495, -0.3207857, 51.1492495 ], "geometry": { "type": "Point", "coordinates": [ -0.3207857, 51.1492495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17408929" }, "bbox": [ -0.315642, 51.1492922, -0.315642, 51.1492922 ], "geometry": { "type": "Point", "coordinates": [ -0.315642, 51.1492922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15395621" }, "bbox": [ -0.3496207, 51.1406309, -0.3496207, 51.1406309 ], "geometry": { "type": "Point", "coordinates": [ -0.3496207, 51.1406309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05499801" }, "bbox": [ -0.4930066, 51.2314771, -0.4930066, 51.2314771 ], "geometry": { "type": "Point", "coordinates": [ -0.4930066, 51.2314771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06480784" }, "bbox": [ -0.4831441, 51.2293984, -0.4831441, 51.2293984 ], "geometry": { "type": "Point", "coordinates": [ -0.4831441, 51.2293984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06492512" }, "bbox": [ -0.4820644, 51.2316303, -0.4820644, 51.2316303 ], "geometry": { "type": "Point", "coordinates": [ -0.4820644, 51.2316303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84429430" }, "bbox": [ -0.7864639, 51.1736439, -0.7864639, 51.1736439 ], "geometry": { "type": "Point", "coordinates": [ -0.7864639, 51.1736439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87383328" }, "bbox": [ -0.753055, 51.1372554, -0.753055, 51.1372554 ], "geometry": { "type": "Point", "coordinates": [ -0.753055, 51.1372554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380837" }, "bbox": [ -0.7565837, 51.1380686, -0.7565837, 51.1380686 ], "geometry": { "type": "Point", "coordinates": [ -0.7565837, 51.1380686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380931" }, "bbox": [ -0.7565154, 51.1375698, -0.7565154, 51.1375698 ], "geometry": { "type": "Point", "coordinates": [ -0.7565154, 51.1375698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88369545" }, "bbox": [ -0.7301297, 51.120253, -0.7301297, 51.120253 ], "geometry": { "type": "Point", "coordinates": [ -0.7301297, 51.120253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82461630" }, "bbox": [ -0.8253718, 51.2099478, -0.8253718, 51.2099478 ], "geometry": { "type": "Point", "coordinates": [ -0.8253718, 51.2099478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88388497" }, "bbox": [ -0.7314077, 51.1431509, -0.7314077, 51.1431509 ], "geometry": { "type": "Point", "coordinates": [ -0.7314077, 51.1431509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88503872" }, "bbox": [ -0.734783, 51.2483132, -0.734783, 51.2483132 ], "geometry": { "type": "Point", "coordinates": [ -0.734783, 51.2483132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89409434" }, "bbox": [ -0.7153924, 51.1554548, -0.7153924, 51.1554548 ], "geometry": { "type": "Point", "coordinates": [ -0.7153924, 51.1554548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91484992" }, "bbox": [ -0.6909256, 51.2321812, -0.6909256, 51.2321812 ], "geometry": { "type": "Point", "coordinates": [ -0.6909256, 51.2321812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92414983" }, "bbox": [ -0.6785245, 51.1682226, -0.6785245, 51.1682226 ], "geometry": { "type": "Point", "coordinates": [ -0.6785245, 51.1682226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92413883" }, "bbox": [ -0.6799856, 51.1682962, -0.6799856, 51.1682962 ], "geometry": { "type": "Point", "coordinates": [ -0.6799856, 51.1682962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92370968" }, "bbox": [ -0.6852907, 51.1309938, -0.6852907, 51.1309938 ], "geometry": { "type": "Point", "coordinates": [ -0.6852907, 51.1309938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92414883" }, "bbox": [ -0.6786516, 51.1683225, -0.6786516, 51.1683225 ], "geometry": { "type": "Point", "coordinates": [ -0.6786516, 51.1683225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91494415" }, "bbox": [ -0.6924936, 51.2342872, -0.6924936, 51.2342872 ], "geometry": { "type": "Point", "coordinates": [ -0.6924936, 51.2342872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92479743" }, "bbox": [ -0.6702206, 51.2185304, -0.6702206, 51.2185304 ], "geometry": { "type": "Point", "coordinates": [ -0.6702206, 51.2185304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477742" }, "bbox": [ -0.6730563, 51.218493, -0.6730563, 51.218493 ], "geometry": { "type": "Point", "coordinates": [ -0.6730563, 51.218493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92478612" }, "bbox": [ -0.6716599, 51.2157855, -0.6716599, 51.2157855 ], "geometry": { "type": "Point", "coordinates": [ -0.6716599, 51.2157855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92493350" }, "bbox": [ -0.6788705, 51.2372149, -0.6788705, 51.2372149 ], "geometry": { "type": "Point", "coordinates": [ -0.6788705, 51.2372149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92559885" }, "bbox": [ -0.6679951, 51.2942709, -0.6679951, 51.2942709 ], "geometry": { "type": "Point", "coordinates": [ -0.6679951, 51.2942709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93551688" }, "bbox": [ -0.6651581, 51.2944029, -0.6651581, 51.2944029 ], "geometry": { "type": "Point", "coordinates": [ -0.6651581, 51.2944029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93321940" }, "bbox": [ -0.6709208, 51.0833094, -0.6709208, 51.0833094 ], "geometry": { "type": "Point", "coordinates": [ -0.6709208, 51.0833094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93322745" }, "bbox": [ -0.6697517, 51.0838471, -0.6697517, 51.0838471 ], "geometry": { "type": "Point", "coordinates": [ -0.6697517, 51.0838471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93592580" }, "bbox": [ -0.662894, 51.3296313, -0.662894, 51.3296313 ], "geometry": { "type": "Point", "coordinates": [ -0.662894, 51.3296313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94576183" }, "bbox": [ -0.6440784, 51.3116749, -0.6440784, 51.3116749 ], "geometry": { "type": "Point", "coordinates": [ -0.6440784, 51.3116749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94337794" }, "bbox": [ -0.6488633, 51.0966969, -0.6488633, 51.0966969 ], "geometry": { "type": "Point", "coordinates": [ -0.6488633, 51.0966969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94338277" }, "bbox": [ -0.6475507, 51.0952179, -0.6475507, 51.0952179 ], "geometry": { "type": "Point", "coordinates": [ -0.6475507, 51.0952179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94577387" }, "bbox": [ -0.6422092, 51.3120945, -0.6422092, 51.3120945 ], "geometry": { "type": "Point", "coordinates": [ -0.6422092, 51.3120945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95330342" }, "bbox": [ -0.6441827, 51.0922107, -0.6441827, 51.0922107 ], "geometry": { "type": "Point", "coordinates": [ -0.6441827, 51.0922107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94338683" }, "bbox": [ -0.6466286, 51.0959064, -0.6466286, 51.0959064 ], "geometry": { "type": "Point", "coordinates": [ -0.6466286, 51.0959064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94461537" }, "bbox": [ -0.6533403, 51.208607, -0.6533403, 51.208607 ], "geometry": { "type": "Point", "coordinates": [ -0.6533403, 51.208607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94553121" }, "bbox": [ -0.6487138, 51.2882645, -0.6487138, 51.2882645 ], "geometry": { "type": "Point", "coordinates": [ -0.6487138, 51.2882645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95352450" }, "bbox": [ -0.6406833, 51.1109684, -0.6406833, 51.1109684 ], "geometry": { "type": "Point", "coordinates": [ -0.6406833, 51.1109684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91320488" }, "bbox": [ -0.7015608, 51.0880752, -0.7015608, 51.0880752 ], "geometry": { "type": "Point", "coordinates": [ -0.7015608, 51.0880752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442720" }, "bbox": [ -0.6955001, 51.1898576, -0.6955001, 51.1898576 ], "geometry": { "type": "Point", "coordinates": [ -0.6955001, 51.1898576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379542" }, "bbox": [ -0.6875452, 51.1287149, -0.6875452, 51.1287149 ], "geometry": { "type": "Point", "coordinates": [ -0.6875452, 51.1287149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93471369" }, "bbox": [ -0.6677945, 51.2207314, -0.6677945, 51.2207314 ], "geometry": { "type": "Point", "coordinates": [ -0.6677945, 51.2207314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93468046" }, "bbox": [ -0.6583844, 51.2085683, -0.6583844, 51.2085683 ], "geometry": { "type": "Point", "coordinates": [ -0.6583844, 51.2085683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93509204" }, "bbox": [ -0.6559005, 51.2417283, -0.6559005, 51.2417283 ], "geometry": { "type": "Point", "coordinates": [ -0.6559005, 51.2417283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92492847" }, "bbox": [ -0.6796225, 51.2369784, -0.6796225, 51.2369784 ], "geometry": { "type": "Point", "coordinates": [ -0.6796225, 51.2369784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93519141" }, "bbox": [ -0.6556721, 51.2542213, -0.6556721, 51.2542213 ], "geometry": { "type": "Point", "coordinates": [ -0.6556721, 51.2542213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93470549" }, "bbox": [ -0.6690531, 51.2189207, -0.6690531, 51.2189207 ], "geometry": { "type": "Point", "coordinates": [ -0.6690531, 51.2189207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93518866" }, "bbox": [ -0.6560319, 51.2563964, -0.6560319, 51.2563964 ], "geometry": { "type": "Point", "coordinates": [ -0.6560319, 51.2563964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93519650" }, "bbox": [ -0.6550123, 51.2549296, -0.6550123, 51.2549296 ], "geometry": { "type": "Point", "coordinates": [ -0.6550123, 51.2549296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93551360" }, "bbox": [ -0.6641326, 51.2914949, -0.6641326, 51.2914949 ], "geometry": { "type": "Point", "coordinates": [ -0.6641326, 51.2914949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95394232" }, "bbox": [ -0.6372911, 51.1452822, -0.6372911, 51.1452822 ], "geometry": { "type": "Point", "coordinates": [ -0.6372911, 51.1452822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95453271" }, "bbox": [ -0.6369574, 51.2026807, -0.6369574, 51.2026807 ], "geometry": { "type": "Point", "coordinates": [ -0.6369574, 51.2026807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95469253" }, "bbox": [ -0.6283969, 51.2098173, -0.6283969, 51.2098173 ], "geometry": { "type": "Point", "coordinates": [ -0.6283969, 51.2098173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95581096" }, "bbox": [ -0.6365335, 51.3218901, -0.6365335, 51.3218901 ], "geometry": { "type": "Point", "coordinates": [ -0.6365335, 51.3218901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96408475" }, "bbox": [ -0.6168274, 51.1579821, -0.6168274, 51.1579821 ], "geometry": { "type": "Point", "coordinates": [ -0.6168274, 51.1579821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96456948" }, "bbox": [ -0.6175618, 51.2003734, -0.6175618, 51.2003734 ], "geometry": { "type": "Point", "coordinates": [ -0.6175618, 51.2003734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96455893" }, "bbox": [ -0.6188352, 51.2045127, -0.6188352, 51.2045127 ], "geometry": { "type": "Point", "coordinates": [ -0.6188352, 51.2045127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97380273" }, "bbox": [ -0.6144371, 51.1396372, -0.6144371, 51.1396372 ], "geometry": { "type": "Point", "coordinates": [ -0.6144371, 51.1396372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97382712" }, "bbox": [ -0.6111804, 51.13408, -0.6111804, 51.13408 ], "geometry": { "type": "Point", "coordinates": [ -0.6111804, 51.13408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97521768" }, "bbox": [ -0.6085491, 51.2650067, -0.6085491, 51.2650067 ], "geometry": { "type": "Point", "coordinates": [ -0.6085491, 51.2650067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98548964" }, "bbox": [ -0.5834528, 51.28236, -0.5834528, 51.28236 ], "geometry": { "type": "Point", "coordinates": [ -0.5834528, 51.28236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98556517" }, "bbox": [ -0.5869611, 51.2870534, -0.5869611, 51.2870534 ], "geometry": { "type": "Point", "coordinates": [ -0.5869611, 51.2870534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98549081" }, "bbox": [ -0.5832228, 51.2838256, -0.5832228, 51.2838256 ], "geometry": { "type": "Point", "coordinates": [ -0.5832228, 51.2838256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98558375" }, "bbox": [ -0.5839736, 51.2927074, -0.5839736, 51.2927074 ], "geometry": { "type": "Point", "coordinates": [ -0.5839736, 51.2927074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98604431" }, "bbox": [ -0.5888053, 51.33307, -0.5888053, 51.33307 ], "geometry": { "type": "Point", "coordinates": [ -0.5888053, 51.33307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99381226" }, "bbox": [ -0.584639, 51.135094, -0.584639, 51.135094 ], "geometry": { "type": "Point", "coordinates": [ -0.584639, 51.135094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00344052" }, "bbox": [ -0.5675469, 51.1013384, -0.5675469, 51.1013384 ], "geometry": { "type": "Point", "coordinates": [ -0.5675469, 51.1013384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00390176" }, "bbox": [ -0.5704196, 51.1485809, -0.5704196, 51.1485809 ], "geometry": { "type": "Point", "coordinates": [ -0.5704196, 51.1485809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00343328" }, "bbox": [ -0.5689933, 51.0988812, -0.5689933, 51.0988812 ], "geometry": { "type": "Point", "coordinates": [ -0.5689933, 51.0988812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00518067" }, "bbox": [ -0.5571152, 51.2546906, -0.5571152, 51.2546906 ], "geometry": { "type": "Point", "coordinates": [ -0.5571152, 51.2546906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00435766" }, "bbox": [ -0.5625504, 51.183548, -0.5625504, 51.183548 ], "geometry": { "type": "Point", "coordinates": [ -0.5625504, 51.183548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00393474" }, "bbox": [ -0.5647455, 51.1478716, -0.5647455, 51.1478716 ], "geometry": { "type": "Point", "coordinates": [ -0.5647455, 51.1478716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373718" }, "bbox": [ -0.5528125, 51.1247866, -0.5528125, 51.1247866 ], "geometry": { "type": "Point", "coordinates": [ -0.5528125, 51.1247866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422895" }, "bbox": [ -0.552523, 51.1767928, -0.552523, 51.1767928 ], "geometry": { "type": "Point", "coordinates": [ -0.552523, 51.1767928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01466939" }, "bbox": [ -0.5455245, 51.2080487, -0.5455245, 51.2080487 ], "geometry": { "type": "Point", "coordinates": [ -0.5455245, 51.2080487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373610" }, "bbox": [ -0.5532105, 51.1243162, -0.5532105, 51.1243162 ], "geometry": { "type": "Point", "coordinates": [ -0.5532105, 51.1243162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02470362" }, "bbox": [ -0.544199, 51.218471, -0.544199, 51.218471 ], "geometry": { "type": "Point", "coordinates": [ -0.544199, 51.218471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02382648" }, "bbox": [ -0.539828, 51.1364826, -0.539828, 51.1364826 ], "geometry": { "type": "Point", "coordinates": [ -0.539828, 51.1364826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02445441" }, "bbox": [ -0.5332518, 51.1899226, -0.5332518, 51.1899226 ], "geometry": { "type": "Point", "coordinates": [ -0.5332518, 51.1899226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412283" }, "bbox": [ -0.5250745, 51.1665001, -0.5250745, 51.1665001 ], "geometry": { "type": "Point", "coordinates": [ -0.5250745, 51.1665001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03659080" }, "bbox": [ -0.5079816, 51.3822064, -0.5079816, 51.3822064 ], "geometry": { "type": "Point", "coordinates": [ -0.5079816, 51.3822064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03425314" }, "bbox": [ -0.5207072, 51.1691733, -0.5207072, 51.1691733 ], "geometry": { "type": "Point", "coordinates": [ -0.5207072, 51.1691733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03364408" }, "bbox": [ -0.523478, 51.1147737, -0.523478, 51.1147737 ], "geometry": { "type": "Point", "coordinates": [ -0.523478, 51.1147737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03403954" }, "bbox": [ -0.5231414, 51.1548244, -0.5231414, 51.1548244 ], "geometry": { "type": "Point", "coordinates": [ -0.5231414, 51.1548244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03441189" }, "bbox": [ -0.5253713, 51.1939192, -0.5253713, 51.1939192 ], "geometry": { "type": "Point", "coordinates": [ -0.5253713, 51.1939192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03441972" }, "bbox": [ -0.5251148, 51.1927158, -0.5251148, 51.1927158 ], "geometry": { "type": "Point", "coordinates": [ -0.5251148, 51.1927158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03442479" }, "bbox": [ -0.523902, 51.1930414, -0.523902, 51.1930414 ], "geometry": { "type": "Point", "coordinates": [ -0.523902, 51.1930414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04498148" }, "bbox": [ -0.5001365, 51.2348887, -0.5001365, 51.2348887 ], "geometry": { "type": "Point", "coordinates": [ -0.5001365, 51.2348887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05469714" }, "bbox": [ -0.4844172, 51.2046861, -0.4844172, 51.2046861 ], "geometry": { "type": "Point", "coordinates": [ -0.4844172, 51.2046861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04574641" }, "bbox": [ -0.5021137, 51.3061263, -0.5021137, 51.3061263 ], "geometry": { "type": "Point", "coordinates": [ -0.5021137, 51.3061263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05603152" }, "bbox": [ -0.4895866, 51.3339681, -0.4895866, 51.3339681 ], "geometry": { "type": "Point", "coordinates": [ -0.4895866, 51.3339681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05456811" }, "bbox": [ -0.4887874, 51.1954258, -0.4887874, 51.1954258 ], "geometry": { "type": "Point", "coordinates": [ -0.4887874, 51.1954258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05593049" }, "bbox": [ -0.4901986, 51.3249348, -0.4901986, 51.3249348 ], "geometry": { "type": "Point", "coordinates": [ -0.4901986, 51.3249348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05464142" }, "bbox": [ -0.4924528, 51.2073175, -0.4924528, 51.2073175 ], "geometry": { "type": "Point", "coordinates": [ -0.4924528, 51.2073175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06484224" }, "bbox": [ -0.4774104, 51.2233403, -0.4774104, 51.2233403 ], "geometry": { "type": "Point", "coordinates": [ -0.4774104, 51.2233403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06560363" }, "bbox": [ -0.4805928, 51.2990303, -0.4805928, 51.2990303 ], "geometry": { "type": "Point", "coordinates": [ -0.4805928, 51.2990303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06558985" }, "bbox": [ -0.4678949, 51.291299, -0.4678949, 51.291299 ], "geometry": { "type": "Point", "coordinates": [ -0.4678949, 51.291299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466967" }, "bbox": [ -0.4738017, 51.2094368, -0.4738017, 51.2094368 ], "geometry": { "type": "Point", "coordinates": [ -0.4738017, 51.2094368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06450497" }, "bbox": [ -0.4820844, 51.2034501, -0.4820844, 51.2034501 ], "geometry": { "type": "Point", "coordinates": [ -0.4820844, 51.2034501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07455948" }, "bbox": [ -0.4613299, 51.1994233, -0.4613299, 51.1994233 ], "geometry": { "type": "Point", "coordinates": [ -0.4613299, 51.1994233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07678790" }, "bbox": [ -0.4498942, 51.4000974, -0.4498942, 51.4000974 ], "geometry": { "type": "Point", "coordinates": [ -0.4498942, 51.4000974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07456326" }, "bbox": [ -0.4609837, 51.1964041, -0.4609837, 51.1964041 ], "geometry": { "type": "Point", "coordinates": [ -0.4609837, 51.1964041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07551454" }, "bbox": [ -0.465463, 51.2891253, -0.465463, 51.2891253 ], "geometry": { "type": "Point", "coordinates": [ -0.465463, 51.2891253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07520976" }, "bbox": [ -0.46644, 51.2636359, -0.46644, 51.2636359 ], "geometry": { "type": "Point", "coordinates": [ -0.46644, 51.2636359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09488206" }, "bbox": [ -0.4287063, 51.2212441, -0.4287063, 51.2212441 ], "geometry": { "type": "Point", "coordinates": [ -0.4287063, 51.2212441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08466600" }, "bbox": [ -0.4463733, 51.2028667, -0.4463733, 51.2028667 ], "geometry": { "type": "Point", "coordinates": [ -0.4463733, 51.2028667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08667216" }, "bbox": [ -0.4392482, 51.3839962, -0.4392482, 51.3839962 ], "geometry": { "type": "Point", "coordinates": [ -0.4392482, 51.3839962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08487092" }, "bbox": [ -0.4445578, 51.2292135, -0.4445578, 51.2292135 ], "geometry": { "type": "Point", "coordinates": [ -0.4445578, 51.2292135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465251" }, "bbox": [ -0.4334895, 51.2073371, -0.4334895, 51.2073371 ], "geometry": { "type": "Point", "coordinates": [ -0.4334895, 51.2073371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09489208" }, "bbox": [ -0.4273563, 51.221181, -0.4273563, 51.221181 ], "geometry": { "type": "Point", "coordinates": [ -0.4273563, 51.221181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09687131" }, "bbox": [ -0.4240983, 51.40335, -0.4240983, 51.40335 ], "geometry": { "type": "Point", "coordinates": [ -0.4240983, 51.40335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416297" }, "bbox": [ -0.4192228, 51.1662976, -0.4192228, 51.1662976 ], "geometry": { "type": "Point", "coordinates": [ -0.4192228, 51.1662976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10417265" }, "bbox": [ -0.4171321, 51.1630563, -0.4171321, 51.1630563 ], "geometry": { "type": "Point", "coordinates": [ -0.4171321, 51.1630563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416290" }, "bbox": [ -0.4192011, 51.1656496, -0.4192011, 51.1656496 ], "geometry": { "type": "Point", "coordinates": [ -0.4192011, 51.1656496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11365412" }, "bbox": [ -0.4079872, 51.1135232, -0.4079872, 51.1135232 ], "geometry": { "type": "Point", "coordinates": [ -0.4079872, 51.1135232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11475419" }, "bbox": [ -0.4042756, 51.2129136, -0.4042756, 51.2129136 ], "geometry": { "type": "Point", "coordinates": [ -0.4042756, 51.2129136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11365226" }, "bbox": [ -0.4080761, 51.1149231, -0.4080761, 51.1149231 ], "geometry": { "type": "Point", "coordinates": [ -0.4080761, 51.1149231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10417442" }, "bbox": [ -0.4179122, 51.1612911, -0.4179122, 51.1612911 ], "geometry": { "type": "Point", "coordinates": [ -0.4179122, 51.1612911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10421804" }, "bbox": [ -0.4255373, 51.166945, -0.4255373, 51.166945 ], "geometry": { "type": "Point", "coordinates": [ -0.4255373, 51.166945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415460" }, "bbox": [ -0.420531, 51.1630314, -0.420531, 51.1630314 ], "geometry": { "type": "Point", "coordinates": [ -0.420531, 51.1630314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10411089" }, "bbox": [ -0.4267326, 51.1656403, -0.4267326, 51.1656403 ], "geometry": { "type": "Point", "coordinates": [ -0.4267326, 51.1656403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10489817" }, "bbox": [ -0.412092, 51.2220865, -0.412092, 51.2220865 ], "geometry": { "type": "Point", "coordinates": [ -0.412092, 51.2220865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11362410" }, "bbox": [ -0.4121213, 51.1135256, -0.4121213, 51.1135256 ], "geometry": { "type": "Point", "coordinates": [ -0.4121213, 51.1135256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11366151" }, "bbox": [ -0.4068556, 51.1170894, -0.4068556, 51.1170894 ], "geometry": { "type": "Point", "coordinates": [ -0.4068556, 51.1170894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11363001" }, "bbox": [ -0.411263, 51.1126126, -0.411263, 51.1126126 ], "geometry": { "type": "Point", "coordinates": [ -0.411263, 51.1126126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11489498" }, "bbox": [ -0.3983844, 51.2289621, -0.3983844, 51.2289621 ], "geometry": { "type": "Point", "coordinates": [ -0.3983844, 51.2289621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12395864" }, "bbox": [ -0.3919906, 51.1450266, -0.3919906, 51.1450266 ], "geometry": { "type": "Point", "coordinates": [ -0.3919906, 51.1450266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12422593" }, "bbox": [ -0.3957355, 51.1745729, -0.3957355, 51.1745729 ], "geometry": { "type": "Point", "coordinates": [ -0.3957355, 51.1745729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12496551" }, "bbox": [ -0.3878501, 51.2336886, -0.3878501, 51.2336886 ], "geometry": { "type": "Point", "coordinates": [ -0.3878501, 51.2336886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12459907" }, "bbox": [ -0.3843571, 51.1936136, -0.3843571, 51.1936136 ], "geometry": { "type": "Point", "coordinates": [ -0.3843571, 51.1936136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12488576" }, "bbox": [ -0.3854198, 51.2266491, -0.3854198, 51.2266491 ], "geometry": { "type": "Point", "coordinates": [ -0.3854198, 51.2266491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12405113" }, "bbox": [ -0.3927346, 51.1493699, -0.3927346, 51.1493699 ], "geometry": { "type": "Point", "coordinates": [ -0.3927346, 51.1493699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12395899" }, "bbox": [ -0.3916792, 51.1481624, -0.3916792, 51.1481624 ], "geometry": { "type": "Point", "coordinates": [ -0.3916792, 51.1481624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12394585" }, "bbox": [ -0.3936419, 51.1468979, -0.3936419, 51.1468979 ], "geometry": { "type": "Point", "coordinates": [ -0.3936419, 51.1468979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12394772" }, "bbox": [ -0.3935457, 51.1457163, -0.3935457, 51.1457163 ], "geometry": { "type": "Point", "coordinates": [ -0.3935457, 51.1457163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500144" }, "bbox": [ -0.3967062, 51.2421217, -0.3967062, 51.2421217 ], "geometry": { "type": "Point", "coordinates": [ -0.3967062, 51.2421217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12464254" }, "bbox": [ -0.3926764, 51.2071137, -0.3926764, 51.2071137 ], "geometry": { "type": "Point", "coordinates": [ -0.3926764, 51.2071137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12473334" }, "bbox": [ -0.393278, 51.2142559, -0.393278, 51.2142559 ], "geometry": { "type": "Point", "coordinates": [ -0.393278, 51.2142559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12494348" }, "bbox": [ -0.3908999, 51.2335592, -0.3908999, 51.2335592 ], "geometry": { "type": "Point", "coordinates": [ -0.3908999, 51.2335592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500329" }, "bbox": [ -0.3962778, 51.2409891, -0.3962778, 51.2409891 ], "geometry": { "type": "Point", "coordinates": [ -0.3962778, 51.2409891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500350" }, "bbox": [ -0.396514, 51.2426803, -0.396514, 51.2426803 ], "geometry": { "type": "Point", "coordinates": [ -0.396514, 51.2426803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500847" }, "bbox": [ -0.3957139, 51.2422932, -0.3957139, 51.2422932 ], "geometry": { "type": "Point", "coordinates": [ -0.3957139, 51.2422932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12527310" }, "bbox": [ -0.3851073, 51.2565973, -0.3851073, 51.2565973 ], "geometry": { "type": "Point", "coordinates": [ -0.3851073, 51.2565973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12501752" }, "bbox": [ -0.394129, 51.242762, -0.394129, 51.242762 ], "geometry": { "type": "Point", "coordinates": [ -0.394129, 51.242762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13494958" }, "bbox": [ -0.3758945, 51.2343052, -0.3758945, 51.2343052 ], "geometry": { "type": "Point", "coordinates": [ -0.3758945, 51.2343052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13521728" }, "bbox": [ -0.3796741, 51.2585156, -0.3796741, 51.2585156 ], "geometry": { "type": "Point", "coordinates": [ -0.3796741, 51.2585156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13499259" }, "bbox": [ -0.3695345, 51.234193, -0.3695345, 51.234193 ], "geometry": { "type": "Point", "coordinates": [ -0.3695345, 51.234193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511552" }, "bbox": [ -0.3800508, 51.2517251, -0.3800508, 51.2517251 ], "geometry": { "type": "Point", "coordinates": [ -0.3800508, 51.2517251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13497651" }, "bbox": [ -0.3719514, 51.2335305, -0.3719514, 51.2335305 ], "geometry": { "type": "Point", "coordinates": [ -0.3719514, 51.2335305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570248" }, "bbox": [ -0.3799232, 51.3052665, -0.3799232, 51.3052665 ], "geometry": { "type": "Point", "coordinates": [ -0.3799232, 51.3052665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13513077" }, "bbox": [ -0.3777388, 51.2539327, -0.3777388, 51.2539327 ], "geometry": { "type": "Point", "coordinates": [ -0.3777388, 51.2539327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13497943" }, "bbox": [ -0.3713992, 51.2327522, -0.3713992, 51.2327522 ], "geometry": { "type": "Point", "coordinates": [ -0.3713992, 51.2327522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13512262" }, "bbox": [ -0.3789645, 51.2525686, -0.3789645, 51.2525686 ], "geometry": { "type": "Point", "coordinates": [ -0.3789645, 51.2525686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13598990" }, "bbox": [ -0.3667512, 51.3268359, -0.3667512, 51.3268359 ], "geometry": { "type": "Point", "coordinates": [ -0.3667512, 51.3268359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572545" }, "bbox": [ -0.3767944, 51.304825, -0.3767944, 51.304825 ], "geometry": { "type": "Point", "coordinates": [ -0.3767944, 51.304825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570749" }, "bbox": [ -0.3792515, 51.3054211, -0.3792515, 51.3054211 ], "geometry": { "type": "Point", "coordinates": [ -0.3792515, 51.3054211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14366885" }, "bbox": [ -0.3628335, 51.119427, -0.3628335, 51.119427 ], "geometry": { "type": "Point", "coordinates": [ -0.3628335, 51.119427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14464768" }, "bbox": [ -0.3626652, 51.2079259, -0.3626652, 51.2079259 ], "geometry": { "type": "Point", "coordinates": [ -0.3626652, 51.2079259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14396746" }, "bbox": [ -0.361993, 51.1428287, -0.361993, 51.1428287 ], "geometry": { "type": "Point", "coordinates": [ -0.361993, 51.1428287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14406731" }, "bbox": [ -0.361768, 51.1503948, -0.361768, 51.1503948 ], "geometry": { "type": "Point", "coordinates": [ -0.361768, 51.1503948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14406733" }, "bbox": [ -0.3618121, 51.1507994, -0.3618121, 51.1507994 ], "geometry": { "type": "Point", "coordinates": [ -0.3618121, 51.1507994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490525" }, "bbox": [ -0.3678341, 51.2310303, -0.3678341, 51.2310303 ], "geometry": { "type": "Point", "coordinates": [ -0.3678341, 51.2310303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14496358" }, "bbox": [ -0.3595546, 51.233819, -0.3595546, 51.233819 ], "geometry": { "type": "Point", "coordinates": [ -0.3595546, 51.233819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14592501" }, "bbox": [ -0.3620235, 51.3187408, -0.3620235, 51.3187408 ], "geometry": { "type": "Point", "coordinates": [ -0.3620235, 51.3187408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15428825" }, "bbox": [ -0.3441838, 51.1677191, -0.3441838, 51.1677191 ], "geometry": { "type": "Point", "coordinates": [ -0.3441838, 51.1677191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15386215" }, "bbox": [ -0.3482062, 51.1308898, -0.3482062, 51.1308898 ], "geometry": { "type": "Point", "coordinates": [ -0.3482062, 51.1308898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15399669" }, "bbox": [ -0.3437315, 51.144793, -0.3437315, 51.144793 ], "geometry": { "type": "Point", "coordinates": [ -0.3437315, 51.144793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16373535" }, "bbox": [ -0.3388909, 51.1236529, -0.3388909, 51.1236529 ], "geometry": { "type": "Point", "coordinates": [ -0.3388909, 51.1236529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16423642" }, "bbox": [ -0.336471, 51.1694611, -0.336471, 51.1694611 ], "geometry": { "type": "Point", "coordinates": [ -0.336471, 51.1694611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16416008" }, "bbox": [ -0.334297, 51.1561125, -0.334297, 51.1561125 ], "geometry": { "type": "Point", "coordinates": [ -0.334297, 51.1561125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16379186" }, "bbox": [ -0.3305856, 51.1280977, -0.3305856, 51.1280977 ], "geometry": { "type": "Point", "coordinates": [ -0.3305856, 51.1280977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16527676" }, "bbox": [ -0.3276318, 51.26203, -0.3276318, 51.26203 ], "geometry": { "type": "Point", "coordinates": [ -0.3276318, 51.26203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16388105" }, "bbox": [ -0.3318845, 51.1298591, -0.3318845, 51.1298591 ], "geometry": { "type": "Point", "coordinates": [ -0.3318845, 51.1298591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06458241" }, "bbox": [ -0.4724054, 51.1979687, -0.4724054, 51.1979687 ], "geometry": { "type": "Point", "coordinates": [ -0.4724054, 51.1979687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06457236" }, "bbox": [ -0.4733044, 51.1973959, -0.4733044, 51.1973959 ], "geometry": { "type": "Point", "coordinates": [ -0.4733044, 51.1973959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17461875" }, "bbox": [ -0.3238318, 51.2079171, -0.3238318, 51.2079171 ], "geometry": { "type": "Point", "coordinates": [ -0.3238318, 51.2079171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17420570" }, "bbox": [ -0.3270512, 51.1714736, -0.3270512, 51.1714736 ], "geometry": { "type": "Point", "coordinates": [ -0.3270512, 51.1714736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17382228" }, "bbox": [ -0.3260224, 51.1317677, -0.3260224, 51.1317677 ], "geometry": { "type": "Point", "coordinates": [ -0.3260224, 51.1317677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17381502" }, "bbox": [ -0.3275717, 51.130733, -0.3275717, 51.130733 ], "geometry": { "type": "Point", "coordinates": [ -0.3275717, 51.130733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17416570" }, "bbox": [ -0.3203436, 51.1618396, -0.3203436, 51.1618396 ], "geometry": { "type": "Point", "coordinates": [ -0.3203436, 51.1618396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17515044" }, "bbox": [ -0.3178526, 51.2495714, -0.3178526, 51.2495714 ], "geometry": { "type": "Point", "coordinates": [ -0.3178526, 51.2495714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19403722" }, "bbox": [ -0.2947122, 51.1488167, -0.2947122, 51.1488167 ], "geometry": { "type": "Point", "coordinates": [ -0.2947122, 51.1488167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17461881" }, "bbox": [ -0.3238804, 51.2083876, -0.3238804, 51.2083876 ], "geometry": { "type": "Point", "coordinates": [ -0.3238804, 51.2083876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18444402" }, "bbox": [ -0.3069481, 51.1831199, -0.3069481, 51.1831199 ], "geometry": { "type": "Point", "coordinates": [ -0.3069481, 51.1831199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18466864" }, "bbox": [ -0.3014225, 51.2065584, -0.3014225, 51.2065584 ], "geometry": { "type": "Point", "coordinates": [ -0.3014225, 51.2065584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478124" }, "bbox": [ -0.3146741, 51.2121948, -0.3146741, 51.2121948 ], "geometry": { "type": "Point", "coordinates": [ -0.3146741, 51.2121948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408715" }, "bbox": [ -0.2876787, 51.1478803, -0.2876787, 51.1478803 ], "geometry": { "type": "Point", "coordinates": [ -0.2876787, 51.1478803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404795" }, "bbox": [ -0.2930129, 51.155131, -0.2930129, 51.155131 ], "geometry": { "type": "Point", "coordinates": [ -0.2930129, 51.155131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404539" }, "bbox": [ -0.2931481, 51.150619, -0.2931481, 51.150619 ], "geometry": { "type": "Point", "coordinates": [ -0.2931481, 51.150619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19466929" }, "bbox": [ -0.2880478, 51.2034044, -0.2880478, 51.2034044 ], "geometry": { "type": "Point", "coordinates": [ -0.2880478, 51.2034044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19467260" }, "bbox": [ -0.2874599, 51.2061097, -0.2874599, 51.2061097 ], "geometry": { "type": "Point", "coordinates": [ -0.2874599, 51.2061097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19467839" }, "bbox": [ -0.286839, 51.2042363, -0.286839, 51.2042363 ], "geometry": { "type": "Point", "coordinates": [ -0.286839, 51.2042363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20383828" }, "bbox": [ -0.280883, 51.1311592, -0.280883, 51.1311592 ], "geometry": { "type": "Point", "coordinates": [ -0.280883, 51.1311592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20383066" }, "bbox": [ -0.282143, 51.1346135, -0.282143, 51.1346135 ], "geometry": { "type": "Point", "coordinates": [ -0.282143, 51.1346135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20511333" }, "bbox": [ -0.2805647, 51.2488738, -0.2805647, 51.2488738 ], "geometry": { "type": "Point", "coordinates": [ -0.2805647, 51.2488738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20426006" }, "bbox": [ -0.2763429, 51.1651022, -0.2763429, 51.1651022 ], "geometry": { "type": "Point", "coordinates": [ -0.2763429, 51.1651022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20514440" }, "bbox": [ -0.2753875, 51.2490053, -0.2753875, 51.2490053 ], "geometry": { "type": "Point", "coordinates": [ -0.2753875, 51.2490053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20525151" }, "bbox": [ -0.2742409, 51.2590657, -0.2742409, 51.2590657 ], "geometry": { "type": "Point", "coordinates": [ -0.2742409, 51.2590657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20526049" }, "bbox": [ -0.2728825, 51.2588095, -0.2728825, 51.2588095 ], "geometry": { "type": "Point", "coordinates": [ -0.2728825, 51.2588095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21407713" }, "bbox": [ -0.2604486, 51.1475333, -0.2604486, 51.1475333 ], "geometry": { "type": "Point", "coordinates": [ -0.2604486, 51.1475333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21430631" }, "bbox": [ -0.2695587, 51.1761637, -0.2695587, 51.1761637 ], "geometry": { "type": "Point", "coordinates": [ -0.2695587, 51.1761637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21421648" }, "bbox": [ -0.2678873, 51.1687219, -0.2678873, 51.1687219 ], "geometry": { "type": "Point", "coordinates": [ -0.2678873, 51.1687219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22479637" }, "bbox": [ -0.2408096, 51.2123439, -0.2408096, 51.2123439 ], "geometry": { "type": "Point", "coordinates": [ -0.2408096, 51.2123439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22478595" }, "bbox": [ -0.2421843, 51.2176015, -0.2421843, 51.2176015 ], "geometry": { "type": "Point", "coordinates": [ -0.2421843, 51.2176015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22438734" }, "bbox": [ -0.2434039, 51.1760402, -0.2434039, 51.1760402 ], "geometry": { "type": "Point", "coordinates": [ -0.2434039, 51.1760402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22469542" }, "bbox": [ -0.2413901, 51.2039056, -0.2413901, 51.2039056 ], "geometry": { "type": "Point", "coordinates": [ -0.2413901, 51.2039056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22438864" }, "bbox": [ -0.2439722, 51.1790165, -0.2439722, 51.1790165 ], "geometry": { "type": "Point", "coordinates": [ -0.2439722, 51.1790165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22468548" }, "bbox": [ -0.2425342, 51.2046385, -0.2425342, 51.2046385 ], "geometry": { "type": "Point", "coordinates": [ -0.2425342, 51.2046385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22513381" }, "bbox": [ -0.2496116, 51.2522656, -0.2496116, 51.2522656 ], "geometry": { "type": "Point", "coordinates": [ -0.2496116, 51.2522656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22518491" }, "bbox": [ -0.2411475, 51.253201, -0.2411475, 51.253201 ], "geometry": { "type": "Point", "coordinates": [ -0.2411475, 51.253201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25478093" }, "bbox": [ -0.200109, 51.2168359, -0.200109, 51.2168359 ], "geometry": { "type": "Point", "coordinates": [ -0.200109, 51.2168359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23477749" }, "bbox": [ -0.2293265, 51.2132217, -0.2293265, 51.2132217 ], "geometry": { "type": "Point", "coordinates": [ -0.2293265, 51.2132217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26471853" }, "bbox": [ -0.194984, 51.213122, -0.194984, 51.213122 ], "geometry": { "type": "Point", "coordinates": [ -0.194984, 51.213122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23404967" }, "bbox": [ -0.2359762, 51.1520035, -0.2359762, 51.1520035 ], "geometry": { "type": "Point", "coordinates": [ -0.2359762, 51.1520035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25556332" }, "bbox": [ -0.1995676, 51.2832822, -0.1995676, 51.2832822 ], "geometry": { "type": "Point", "coordinates": [ -0.1995676, 51.2832822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25553325" }, "bbox": [ -0.2042455, 51.2825099, -0.2042455, 51.2825099 ], "geometry": { "type": "Point", "coordinates": [ -0.2042455, 51.2825099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26474231" }, "bbox": [ -0.1914294, 51.2109939, -0.1914294, 51.2109939 ], "geometry": { "type": "Point", "coordinates": [ -0.1914294, 51.2109939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26462580" }, "bbox": [ -0.1941424, 51.2063908, -0.1941424, 51.2063908 ], "geometry": { "type": "Point", "coordinates": [ -0.1941424, 51.2063908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27467545" }, "bbox": [ -0.1745555, 51.2042885, -0.1745555, 51.2042885 ], "geometry": { "type": "Point", "coordinates": [ -0.1745555, 51.2042885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478674" }, "bbox": [ -0.156429, 51.2141979, -0.156429, 51.2141979 ], "geometry": { "type": "Point", "coordinates": [ -0.156429, 51.2141979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28498710" }, "bbox": [ -0.1562631, 51.2266674, -0.1562631, 51.2266674 ], "geometry": { "type": "Point", "coordinates": [ -0.1562631, 51.2266674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23515137" }, "bbox": [ -0.2315441, 51.248181, -0.2315441, 51.248181 ], "geometry": { "type": "Point", "coordinates": [ -0.2315441, 51.248181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23514575" }, "bbox": [ -0.2320452, 51.2514287, -0.2320452, 51.2514287 ], "geometry": { "type": "Point", "coordinates": [ -0.2320452, 51.2514287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18475107" }, "bbox": [ -0.3047942, 51.2105615, -0.3047942, 51.2105615 ], "geometry": { "type": "Point", "coordinates": [ -0.3047942, 51.2105615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18475201" }, "bbox": [ -0.3047265, 51.2097055, -0.3047265, 51.2097055 ], "geometry": { "type": "Point", "coordinates": [ -0.3047265, 51.2097055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18534416" }, "bbox": [ -0.3036687, 51.2652265, -0.3036687, 51.2652265 ], "geometry": { "type": "Point", "coordinates": [ -0.3036687, 51.2652265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20429198" }, "bbox": [ -0.2717696, 51.1733357, -0.2717696, 51.1733357 ], "geometry": { "type": "Point", "coordinates": [ -0.2717696, 51.1733357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18529571" }, "bbox": [ -0.2965244, 51.261067, -0.2965244, 51.261067 ], "geometry": { "type": "Point", "coordinates": [ -0.2965244, 51.261067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18522914" }, "bbox": [ -0.3035268, 51.2560334, -0.3035268, 51.2560334 ], "geometry": { "type": "Point", "coordinates": [ -0.3035268, 51.2560334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20429786" }, "bbox": [ -0.2709805, 51.1720604, -0.2709805, 51.1720604 ], "geometry": { "type": "Point", "coordinates": [ -0.2709805, 51.1720604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24510693" }, "bbox": [ -0.2236841, 51.2530998, -0.2236841, 51.2530998 ], "geometry": { "type": "Point", "coordinates": [ -0.2236841, 51.2530998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24461495" }, "bbox": [ -0.2243224, 51.2082507, -0.2243224, 51.2082507 ], "geometry": { "type": "Point", "coordinates": [ -0.2243224, 51.2082507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459790" }, "bbox": [ -0.2126272, 51.198887, -0.2126272, 51.198887 ], "geometry": { "type": "Point", "coordinates": [ -0.2126272, 51.198887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41434116" }, "bbox": [ 0.0212809, 51.1701619, 0.0212809, 51.1701619 ], "geometry": { "type": "Point", "coordinates": [ 0.0212809, 51.1701619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41460341" }, "bbox": [ 0.0177046, 51.1996453, 0.0177046, 51.1996453 ], "geometry": { "type": "Point", "coordinates": [ 0.0177046, 51.1996453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41447042" }, "bbox": [ 0.0259919, 51.1814619, 0.0259919, 51.1814619 ], "geometry": { "type": "Point", "coordinates": [ 0.0259919, 51.1814619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41430515" }, "bbox": [ 0.0170329, 51.1702284, 0.0170329, 51.1702284 ], "geometry": { "type": "Point", "coordinates": [ 0.0170329, 51.1702284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41425090" }, "bbox": [ 0.0225323, 51.1678376, 0.0225323, 51.1678376 ], "geometry": { "type": "Point", "coordinates": [ 0.0225323, 51.1678376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41423637" }, "bbox": [ 0.020309, 51.1631641, 0.020309, 51.1631641 ], "geometry": { "type": "Point", "coordinates": [ 0.020309, 51.1631641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36544231" }, "bbox": [ -0.045626, 51.2719351, -0.045626, 51.2719351 ], "geometry": { "type": "Point", "coordinates": [ -0.045626, 51.2719351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36476868" }, "bbox": [ -0.0440156, 51.2117876, -0.0440156, 51.2117876 ], "geometry": { "type": "Point", "coordinates": [ -0.0440156, 51.2117876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36477406" }, "bbox": [ -0.0435265, 51.2063369, -0.0435265, 51.2063369 ], "geometry": { "type": "Point", "coordinates": [ -0.0435265, 51.2063369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37424816" }, "bbox": [ -0.0351701, 51.1621856, -0.0351701, 51.1621856 ], "geometry": { "type": "Point", "coordinates": [ -0.0351701, 51.1621856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37468703" }, "bbox": [ -0.0281976, 51.1968091, -0.0281976, 51.1968091 ], "geometry": { "type": "Point", "coordinates": [ -0.0281976, 51.1968091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37467079" }, "bbox": [ -0.0304253, 51.2038618, -0.0304253, 51.2038618 ], "geometry": { "type": "Point", "coordinates": [ -0.0304253, 51.2038618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30457305" }, "bbox": [ -0.1308534, 51.1896363, -0.1308534, 51.1896363 ], "geometry": { "type": "Point", "coordinates": [ -0.1308534, 51.1896363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30451218" }, "bbox": [ -0.1394539, 51.1909997, -0.1394539, 51.1909997 ], "geometry": { "type": "Point", "coordinates": [ -0.1394539, 51.1909997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31538812" }, "bbox": [ -0.1112649, 51.2619312, -0.1112649, 51.2619312 ], "geometry": { "type": "Point", "coordinates": [ -0.1112649, 51.2619312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32508148" }, "bbox": [ -0.0989184, 51.2380467, -0.0989184, 51.2380467 ], "geometry": { "type": "Point", "coordinates": [ -0.0989184, 51.2380467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32530162" }, "bbox": [ -0.1094532, 51.2665388, -0.1094532, 51.2665388 ], "geometry": { "type": "Point", "coordinates": [ -0.1094532, 51.2665388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32531574" }, "bbox": [ -0.107192, 51.2675241, -0.107192, 51.2675241 ], "geometry": { "type": "Point", "coordinates": [ -0.107192, 51.2675241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32532668" }, "bbox": [ -0.1052706, 51.2669627, -0.1052706, 51.2669627 ], "geometry": { "type": "Point", "coordinates": [ -0.1052706, 51.2669627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33421737" }, "bbox": [ -0.0971493, 51.1645727, -0.0971493, 51.1645727 ], "geometry": { "type": "Point", "coordinates": [ -0.0971493, 51.1645727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41420581" }, "bbox": [ 0.0160847, 51.1671606, 0.0160847, 51.1671606 ], "geometry": { "type": "Point", "coordinates": [ 0.0160847, 51.1671606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40454494" }, "bbox": [ 0.0085768, 51.1954565, 0.0085768, 51.1954565 ], "geometry": { "type": "Point", "coordinates": [ 0.0085768, 51.1954565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40453090" }, "bbox": [ 0.0065614, 51.195056, 0.0065614, 51.195056 ], "geometry": { "type": "Point", "coordinates": [ 0.0065614, 51.195056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40453080" }, "bbox": [ 0.0072075, 51.1941951, 0.0072075, 51.1941951 ], "geometry": { "type": "Point", "coordinates": [ 0.0072075, 51.1941951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457066" }, "bbox": [ 0.0120572, 51.1927513, 0.0120572, 51.1927513 ], "geometry": { "type": "Point", "coordinates": [ 0.0120572, 51.1927513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539163" }, "bbox": [ 0.0469726, 51.2639306, 0.0469726, 51.2639306 ], "geometry": { "type": "Point", "coordinates": [ 0.0469726, 51.2639306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33490131" }, "bbox": [ -0.0965184, 51.2274775, -0.0965184, 51.2274775 ], "geometry": { "type": "Point", "coordinates": [ -0.0965184, 51.2274775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539447" }, "bbox": [ 0.0471957, 51.2624361, 0.0471957, 51.2624361 ], "geometry": { "type": "Point", "coordinates": [ 0.0471957, 51.2624361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33453047" }, "bbox": [ -0.0935802, 51.1928568, -0.0935802, 51.1928568 ], "geometry": { "type": "Point", "coordinates": [ -0.0935802, 51.1928568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33509357" }, "bbox": [ -0.0822909, 51.2388346, -0.0822909, 51.2388346 ], "geometry": { "type": "Point", "coordinates": [ -0.0822909, 51.2388346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34407047" }, "bbox": [ -0.0755948, 51.1476966, -0.0755948, 51.1476966 ], "geometry": { "type": "Point", "coordinates": [ -0.0755948, 51.1476966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34461927" }, "bbox": [ -0.0806852, 51.1999001, -0.0806852, 51.1999001 ], "geometry": { "type": "Point", "coordinates": [ -0.0806852, 51.1999001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35514845" }, "bbox": [ -0.0604548, 51.2461634, -0.0604548, 51.2461634 ], "geometry": { "type": "Point", "coordinates": [ -0.0604548, 51.2461634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35497013" }, "bbox": [ -0.0581515, 51.2251232, -0.0581515, 51.2251232 ], "geometry": { "type": "Point", "coordinates": [ -0.0581515, 51.2251232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35485997" }, "bbox": [ -0.059723, 51.2239021, -0.059723, 51.2239021 ], "geometry": { "type": "Point", "coordinates": [ -0.059723, 51.2239021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35561004" }, "bbox": [ -0.064341, 51.2851745, -0.064341, 51.2851745 ], "geometry": { "type": "Point", "coordinates": [ -0.064341, 51.2851745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38451739" }, "bbox": [ -0.0240943, 51.1910577, -0.0240943, 51.1910577 ], "geometry": { "type": "Point", "coordinates": [ -0.0240943, 51.1910577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38455079" }, "bbox": [ -0.019317, 51.1945902, -0.019317, 51.1945902 ], "geometry": { "type": "Point", "coordinates": [ -0.019317, 51.1945902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20477294" }, "bbox": [ -0.2727936, 51.2179582, -0.2727936, 51.2179582 ], "geometry": { "type": "Point", "coordinates": [ -0.2727936, 51.2179582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10351251" }, "bbox": [ -0.4281864, 51.1084, -0.4281864, 51.1084 ], "geometry": { "type": "Point", "coordinates": [ -0.4281864, 51.1084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99618477" }, "bbox": [ -0.5677378, 51.3462501, -0.5677378, 51.3462501 ], "geometry": { "type": "Point", "coordinates": [ -0.5677378, 51.3462501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99617180" }, "bbox": [ -0.5697114, 51.3465748, -0.5697114, 51.3465748 ], "geometry": { "type": "Point", "coordinates": [ -0.5697114, 51.3465748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99617680" }, "bbox": [ -0.568908, 51.3465308, -0.568908, 51.3465308 ], "geometry": { "type": "Point", "coordinates": [ -0.568908, 51.3465308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99618787" }, "bbox": [ -0.5677418, 51.3471846, -0.5677418, 51.3471846 ], "geometry": { "type": "Point", "coordinates": [ -0.5677418, 51.3471846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99619379" }, "bbox": [ -0.5660556, 51.3464802, -0.5660556, 51.3464802 ], "geometry": { "type": "Point", "coordinates": [ -0.5660556, 51.3464802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99619384" }, "bbox": [ -0.5665829, 51.3468526, -0.5665829, 51.3468526 ], "geometry": { "type": "Point", "coordinates": [ -0.5665829, 51.3468526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99619088" }, "bbox": [ -0.5670028, 51.3472734, -0.5670028, 51.3472734 ], "geometry": { "type": "Point", "coordinates": [ -0.5670028, 51.3472734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99619885" }, "bbox": [ -0.5658325, 51.3469132, -0.5658325, 51.3469132 ], "geometry": { "type": "Point", "coordinates": [ -0.5658325, 51.3469132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00343114" }, "bbox": [ -0.5687153, 51.0978298, -0.5687153, 51.0978298 ], "geometry": { "type": "Point", "coordinates": [ -0.5687153, 51.0978298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10402055" }, "bbox": [ -0.4263411, 51.1536616, -0.4263411, 51.1536616 ], "geometry": { "type": "Point", "coordinates": [ -0.4263411, 51.1536616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00344419" }, "bbox": [ -0.5669989, 51.0982095, -0.5669989, 51.0982095 ], "geometry": { "type": "Point", "coordinates": [ -0.5669989, 51.0982095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00345939" }, "bbox": [ -0.5647283, 51.1000282, -0.5647283, 51.1000282 ], "geometry": { "type": "Point", "coordinates": [ -0.5647283, 51.1000282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00343249" }, "bbox": [ -0.568867, 51.1009304, -0.568867, 51.1009304 ], "geometry": { "type": "Point", "coordinates": [ -0.568867, 51.1009304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15446104" }, "bbox": [ -0.3470928, 51.1839884, -0.3470928, 51.1839884 ], "geometry": { "type": "Point", "coordinates": [ -0.3470928, 51.1839884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26594761" }, "bbox": [ -0.186423, 51.3214972, -0.186423, 51.3214972 ], "geometry": { "type": "Point", "coordinates": [ -0.186423, 51.3214972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522626" }, "bbox": [ -0.3925049, 51.2584746, -0.3925049, 51.2584746 ], "geometry": { "type": "Point", "coordinates": [ -0.3925049, 51.2584746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523490" }, "bbox": [ -0.3909302, 51.2642184, -0.3909302, 51.2642184 ], "geometry": { "type": "Point", "coordinates": [ -0.3909302, 51.2642184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522431" }, "bbox": [ -0.3927697, 51.2589006, -0.3927697, 51.2589006 ], "geometry": { "type": "Point", "coordinates": [ -0.3927697, 51.2589006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99568537" }, "bbox": [ -0.5696344, 51.297858, -0.5696344, 51.297858 ], "geometry": { "type": "Point", "coordinates": [ -0.5696344, 51.297858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94576147" }, "bbox": [ -0.6439685, 51.3085501, -0.6439685, 51.3085501 ], "geometry": { "type": "Point", "coordinates": [ -0.6439685, 51.3085501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11432111" }, "bbox": [ -0.4107412, 51.1766879, -0.4107412, 51.1766879 ], "geometry": { "type": "Point", "coordinates": [ -0.4107412, 51.1766879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12409524" }, "bbox": [ -0.3865259, 51.1503667, -0.3865259, 51.1503667 ], "geometry": { "type": "Point", "coordinates": [ -0.3865259, 51.1503667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24411402" }, "bbox": [ -0.2264652, 51.1550101, -0.2264652, 51.1550101 ], "geometry": { "type": "Point", "coordinates": [ -0.2264652, 51.1550101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429653" }, "bbox": [ -0.2141255, 51.1684692, -0.2141255, 51.1684692 ], "geometry": { "type": "Point", "coordinates": [ -0.2141255, 51.1684692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24428060" }, "bbox": [ -0.2164356, 51.1689217, -0.2164356, 51.1689217 ], "geometry": { "type": "Point", "coordinates": [ -0.2164356, 51.1689217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20416208" }, "bbox": [ -0.2759997, 51.1555775, -0.2759997, 51.1555775 ], "geometry": { "type": "Point", "coordinates": [ -0.2759997, 51.1555775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20413234" }, "bbox": [ -0.2814795, 51.1585883, -0.2814795, 51.1585883 ], "geometry": { "type": "Point", "coordinates": [ -0.2814795, 51.1585883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12409917" }, "bbox": [ -0.3858367, 51.1496855, -0.3858367, 51.1496855 ], "geometry": { "type": "Point", "coordinates": [ -0.3858367, 51.1496855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12409950" }, "bbox": [ -0.3857831, 51.1526303, -0.3857831, 51.1526303 ], "geometry": { "type": "Point", "coordinates": [ -0.3857831, 51.1526303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93492980" }, "bbox": [ -0.6647777, 51.2398131, -0.6647777, 51.2398131 ], "geometry": { "type": "Point", "coordinates": [ -0.6647777, 51.2398131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39578023" }, "bbox": [ 0.0040885, 51.297166, 0.0040885, 51.297166 ], "geometry": { "type": "Point", "coordinates": [ 0.0040885, 51.297166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40561638" }, "bbox": [ 0.0079889, 51.2885198, 0.0079889, 51.2885198 ], "geometry": { "type": "Point", "coordinates": [ 0.0079889, 51.2885198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13401019" }, "bbox": [ -0.3842854, 51.1496842, -0.3842854, 51.1496842 ], "geometry": { "type": "Point", "coordinates": [ -0.3842854, 51.1496842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403223" }, "bbox": [ -0.3812366, 51.1501095, -0.3812366, 51.1501095 ], "geometry": { "type": "Point", "coordinates": [ -0.3812366, 51.1501095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13400309" }, "bbox": [ -0.3856206, 51.1490046, -0.3856206, 51.1490046 ], "geometry": { "type": "Point", "coordinates": [ -0.3856206, 51.1490046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13401643" }, "bbox": [ -0.3834389, 51.1520079, -0.3834389, 51.1520079 ], "geometry": { "type": "Point", "coordinates": [ -0.3834389, 51.1520079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403304" }, "bbox": [ -0.3811586, 51.1483927, -0.3811586, 51.1483927 ], "geometry": { "type": "Point", "coordinates": [ -0.3811586, 51.1483927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13405122" }, "bbox": [ -0.3785236, 51.1499658, -0.3785236, 51.1499658 ], "geometry": { "type": "Point", "coordinates": [ -0.3785236, 51.1499658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90636382" }, "bbox": [ -0.6994549, 51.3661863, -0.6994549, 51.3661863 ], "geometry": { "type": "Point", "coordinates": [ -0.6994549, 51.3661863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90638565" }, "bbox": [ -0.6964044, 51.364702, -0.6964044, 51.364702 ], "geometry": { "type": "Point", "coordinates": [ -0.6964044, 51.364702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91631675" }, "bbox": [ -0.69228, 51.3662239, -0.69228, 51.3662239 ], "geometry": { "type": "Point", "coordinates": [ -0.69228, 51.3662239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24453995" }, "bbox": [ -0.2212169, 51.1990404, -0.2212169, 51.1990404 ], "geometry": { "type": "Point", "coordinates": [ -0.2212169, 51.1990404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24463809" }, "bbox": [ -0.2212105, 51.2004389, -0.2212105, 51.2004389 ], "geometry": { "type": "Point", "coordinates": [ -0.2212105, 51.2004389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24465403" }, "bbox": [ -0.2192053, 51.199701, -0.2192053, 51.199701 ], "geometry": { "type": "Point", "coordinates": [ -0.2192053, 51.199701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24463010" }, "bbox": [ -0.2225037, 51.2005103, -0.2225037, 51.2005103 ], "geometry": { "type": "Point", "coordinates": [ -0.2225037, 51.2005103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12517617" }, "bbox": [ -0.386081, 51.248332, -0.386081, 51.248332 ], "geometry": { "type": "Point", "coordinates": [ -0.386081, 51.248332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05533822" }, "bbox": [ -0.4911227, 51.2685037, -0.4911227, 51.2685037 ], "geometry": { "type": "Point", "coordinates": [ -0.4911227, 51.2685037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05531175" }, "bbox": [ -0.4945554, 51.2732032, -0.4945554, 51.2732032 ], "geometry": { "type": "Point", "coordinates": [ -0.4945554, 51.2732032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04528974" }, "bbox": [ -0.4979992, 51.2641149, -0.4979992, 51.2641149 ], "geometry": { "type": "Point", "coordinates": [ -0.4979992, 51.2641149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05529894" }, "bbox": [ -0.482444, 51.265534, -0.482444, 51.265534 ], "geometry": { "type": "Point", "coordinates": [ -0.482444, 51.265534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05520163" }, "bbox": [ -0.4957019, 51.262894, -0.4957019, 51.262894 ], "geometry": { "type": "Point", "coordinates": [ -0.4957019, 51.262894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05548762" }, "bbox": [ -0.4834746, 51.2808888, -0.4834746, 51.2808888 ], "geometry": { "type": "Point", "coordinates": [ -0.4834746, 51.2808888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06521716" }, "bbox": [ -0.4799387, 51.258626, -0.4799387, 51.258626 ], "geometry": { "type": "Point", "coordinates": [ -0.4799387, 51.258626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05552907" }, "bbox": [ -0.4915819, 51.285118, -0.4915819, 51.285118 ], "geometry": { "type": "Point", "coordinates": [ -0.4915819, 51.285118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05531752" }, "bbox": [ -0.4936541, 51.2711315, -0.4936541, 51.2711315 ], "geometry": { "type": "Point", "coordinates": [ -0.4936541, 51.2711315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05543098" }, "bbox": [ -0.4911597, 51.2836732, -0.4911597, 51.2836732 ], "geometry": { "type": "Point", "coordinates": [ -0.4911597, 51.2836732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05545590" }, "bbox": [ -0.487196, 51.2842455, -0.487196, 51.2842455 ], "geometry": { "type": "Point", "coordinates": [ -0.487196, 51.2842455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06555919" }, "bbox": [ -0.4728954, 51.2855127, -0.4728954, 51.2855127 ], "geometry": { "type": "Point", "coordinates": [ -0.4728954, 51.2855127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05546894" }, "bbox": [ -0.4839285, 51.2833927, -0.4839285, 51.2833927 ], "geometry": { "type": "Point", "coordinates": [ -0.4839285, 51.2833927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05528273" }, "bbox": [ -0.4849327, 51.2635927, -0.4849327, 51.2635927 ], "geometry": { "type": "Point", "coordinates": [ -0.4849327, 51.2635927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05523431" }, "bbox": [ -0.4918941, 51.2604154, -0.4918941, 51.2604154 ], "geometry": { "type": "Point", "coordinates": [ -0.4918941, 51.2604154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05524755" }, "bbox": [ -0.489537, 51.2624976, -0.489537, 51.2624976 ], "geometry": { "type": "Point", "coordinates": [ -0.489537, 51.2624976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05556517" }, "bbox": [ -0.4862461, 51.285897, -0.4862461, 51.285897 ], "geometry": { "type": "Point", "coordinates": [ -0.4862461, 51.285897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05547946" }, "bbox": [ -0.4846001, 51.2794825, -0.4846001, 51.2794825 ], "geometry": { "type": "Point", "coordinates": [ -0.4846001, 51.2794825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05556850" }, "bbox": [ -0.4858402, 51.2888776, -0.4858402, 51.2888776 ], "geometry": { "type": "Point", "coordinates": [ -0.4858402, 51.2888776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06521641" }, "bbox": [ -0.4800163, 51.260834, -0.4800163, 51.260834 ], "geometry": { "type": "Point", "coordinates": [ -0.4800163, 51.260834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06546086" }, "bbox": [ -0.4719847, 51.2831711, -0.4719847, 51.2831711 ], "geometry": { "type": "Point", "coordinates": [ -0.4719847, 51.2831711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33404995" }, "bbox": [ -0.0925783, 51.1522361, -0.0925783, 51.1522361 ], "geometry": { "type": "Point", "coordinates": [ -0.0925783, 51.1522361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33410733" }, "bbox": [ -0.0986189, 51.1558411, -0.0986189, 51.1558411 ], "geometry": { "type": "Point", "coordinates": [ -0.0986189, 51.1558411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92504842" }, "bbox": [ -0.676606, 51.2454377, -0.676606, 51.2454377 ], "geometry": { "type": "Point", "coordinates": [ -0.676606, 51.2454377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19390146" }, "bbox": [ -0.3000948, 51.1421164, -0.3000948, 51.1421164 ], "geometry": { "type": "Point", "coordinates": [ -0.3000948, 51.1421164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18398056" }, "bbox": [ -0.3030134, 51.1430058, -0.3030134, 51.1430058 ], "geometry": { "type": "Point", "coordinates": [ -0.3030134, 51.1430058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19400607" }, "bbox": [ -0.2991273, 51.1475852, -0.2991273, 51.1475852 ], "geometry": { "type": "Point", "coordinates": [ -0.2991273, 51.1475852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13369384" }, "bbox": [ -0.3751018, 51.1196574, -0.3751018, 51.1196574 ], "geometry": { "type": "Point", "coordinates": [ -0.3751018, 51.1196574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13367952" }, "bbox": [ -0.3748534, 51.1168394, -0.3748534, 51.1168394 ], "geometry": { "type": "Point", "coordinates": [ -0.3748534, 51.1168394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25520025" }, "bbox": [ -0.2101252, 51.2557596, -0.2101252, 51.2557596 ], "geometry": { "type": "Point", "coordinates": [ -0.2101252, 51.2557596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24527636" }, "bbox": [ -0.2126001, 51.2565962, -0.2126001, 51.2565962 ], "geometry": { "type": "Point", "coordinates": [ -0.2126001, 51.2565962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89535419" }, "bbox": [ -0.7186813, 51.2704821, -0.7186813, 51.2704821 ], "geometry": { "type": "Point", "coordinates": [ -0.7186813, 51.2704821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89498688" }, "bbox": [ -0.7187176, 51.2396436, -0.7187176, 51.2396436 ], "geometry": { "type": "Point", "coordinates": [ -0.7187176, 51.2396436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95344510" }, "bbox": [ -0.6381759, 51.0982363, -0.6381759, 51.0982363 ], "geometry": { "type": "Point", "coordinates": [ -0.6381759, 51.0982363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95500505" }, "bbox": [ -0.639673, 51.2414889, -0.639673, 51.2414889 ], "geometry": { "type": "Point", "coordinates": [ -0.639673, 51.2414889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98461725" }, "bbox": [ -0.5955321, 51.2071671, -0.5955321, 51.2071671 ], "geometry": { "type": "Point", "coordinates": [ -0.5955321, 51.2071671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98697912" }, "bbox": [ -0.582836, 51.4117408, -0.582836, 51.4117408 ], "geometry": { "type": "Point", "coordinates": [ -0.582836, 51.4117408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93373360" }, "bbox": [ -0.6678157, 51.1300733, -0.6678157, 51.1300733 ], "geometry": { "type": "Point", "coordinates": [ -0.6678157, 51.1300733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97614307" }, "bbox": [ -0.6028283, 51.3403699, -0.6028283, 51.3403699 ], "geometry": { "type": "Point", "coordinates": [ -0.6028283, 51.3403699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82487149" }, "bbox": [ -0.8170784, 51.2297948, -0.8170784, 51.2297948 ], "geometry": { "type": "Point", "coordinates": [ -0.8170784, 51.2297948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85485052" }, "bbox": [ -0.7770828, 51.2293531, -0.7770828, 51.2293531 ], "geometry": { "type": "Point", "coordinates": [ -0.7770828, 51.2293531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92332055" }, "bbox": [ -0.6848321, 51.0938241, -0.6848321, 51.0938241 ], "geometry": { "type": "Point", "coordinates": [ -0.6848321, 51.0938241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99435150" }, "bbox": [ -0.5768667, 51.1824601, -0.5768667, 51.1824601 ], "geometry": { "type": "Point", "coordinates": [ -0.5768667, 51.1824601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24463838" }, "bbox": [ -0.2210236, 51.2031265, -0.2210236, 51.2031265 ], "geometry": { "type": "Point", "coordinates": [ -0.2210236, 51.2031265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00660075" }, "bbox": [ -0.5640089, 51.3911374, -0.5640089, 51.3911374 ], "geometry": { "type": "Point", "coordinates": [ -0.5640089, 51.3911374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26591264" }, "bbox": [ -0.1914421, 51.3219497, -0.1914421, 51.3219497 ], "geometry": { "type": "Point", "coordinates": [ -0.1914421, 51.3219497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26484503" }, "bbox": [ -0.1907184, 51.2175092, -0.1907184, 51.2175092 ], "geometry": { "type": "Point", "coordinates": [ -0.1907184, 51.2175092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04520009" }, "bbox": [ -0.5108154, 51.258587, -0.5108154, 51.258587 ], "geometry": { "type": "Point", "coordinates": [ -0.5108154, 51.258587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02376134" }, "bbox": [ -0.5349966, 51.1261107, -0.5349966, 51.1261107 ], "geometry": { "type": "Point", "coordinates": [ -0.5349966, 51.1261107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610073" }, "bbox": [ -0.5655418, 51.3460281, -0.5655418, 51.3460281 ], "geometry": { "type": "Point", "coordinates": [ -0.5655418, 51.3460281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04436649" }, "bbox": [ -0.5038599, 51.181147, -0.5038599, 51.181147 ], "geometry": { "type": "Point", "coordinates": [ -0.5038599, 51.181147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02376937" }, "bbox": [ -0.5341436, 51.1263414, -0.5341436, 51.1263414 ], "geometry": { "type": "Point", "coordinates": [ -0.5341436, 51.1263414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560071" }, "bbox": [ -0.5094802, 51.3002363, -0.5094802, 51.3002363 ], "geometry": { "type": "Point", "coordinates": [ -0.5094802, 51.3002363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04571007" }, "bbox": [ -0.5077255, 51.3041089, -0.5077255, 51.3041089 ], "geometry": { "type": "Point", "coordinates": [ -0.5077255, 51.3041089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00442533" }, "bbox": [ -0.5667203, 51.1893506, -0.5667203, 51.1893506 ], "geometry": { "type": "Point", "coordinates": [ -0.5667203, 51.1893506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03472901" }, "bbox": [ -0.5225509, 51.2128633, -0.5225509, 51.2128633 ], "geometry": { "type": "Point", "coordinates": [ -0.5225509, 51.2128633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03464436" }, "bbox": [ -0.5208348, 51.2070498, -0.5208348, 51.2070498 ], "geometry": { "type": "Point", "coordinates": [ -0.5208348, 51.2070498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03444549" }, "bbox": [ -0.521266, 51.1902693, -0.521266, 51.1902693 ], "geometry": { "type": "Point", "coordinates": [ -0.521266, 51.1902693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418031" }, "bbox": [ -0.5169249, 51.1617114, -0.5169249, 51.1617114 ], "geometry": { "type": "Point", "coordinates": [ -0.5169249, 51.1617114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418138" }, "bbox": [ -0.5166292, 51.1623479, -0.5166292, 51.1623479 ], "geometry": { "type": "Point", "coordinates": [ -0.5166292, 51.1623479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06555493" }, "bbox": [ -0.4731419, 51.2928343, -0.4731419, 51.2928343 ], "geometry": { "type": "Point", "coordinates": [ -0.4731419, 51.2928343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19565674" }, "bbox": [ -0.2863911, 51.2972485, -0.2863911, 51.2972485 ], "geometry": { "type": "Point", "coordinates": [ -0.2863911, 51.2972485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04431834" }, "bbox": [ -0.5107974, 51.1798575, -0.5107974, 51.1798575 ], "geometry": { "type": "Point", "coordinates": [ -0.5107974, 51.1798575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06399188" }, "bbox": [ -0.4730606, 51.1480869, -0.4730606, 51.1480869 ], "geometry": { "type": "Point", "coordinates": [ -0.4730606, 51.1480869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06478579" }, "bbox": [ -0.4714875, 51.2193037, -0.4714875, 51.2193037 ], "geometry": { "type": "Point", "coordinates": [ -0.4714875, 51.2193037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566760" }, "bbox": [ -0.2848576, 51.2959961, -0.2848576, 51.2959961 ], "geometry": { "type": "Point", "coordinates": [ -0.2848576, 51.2959961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471427" }, "bbox": [ -0.281378, 51.2121481, -0.281378, 51.2121481 ], "geometry": { "type": "Point", "coordinates": [ -0.281378, 51.2121481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568059" }, "bbox": [ -0.2829137, 51.2958455, -0.2829137, 51.2958455 ], "geometry": { "type": "Point", "coordinates": [ -0.2829137, 51.2958455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20471145" }, "bbox": [ -0.2817569, 51.2135962, -0.2817569, 51.2135962 ], "geometry": { "type": "Point", "coordinates": [ -0.2817569, 51.2135962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20465173" }, "bbox": [ -0.2762548, 51.2070799, -0.2762548, 51.2070799 ], "geometry": { "type": "Point", "coordinates": [ -0.2762548, 51.2070799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21404138" }, "bbox": [ -0.2664332, 51.1501225, -0.2664332, 51.1501225 ], "geometry": { "type": "Point", "coordinates": [ -0.2664332, 51.1501225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21395687" }, "bbox": [ -0.2636872, 51.1452668, -0.2636872, 51.1452668 ], "geometry": { "type": "Point", "coordinates": [ -0.2636872, 51.1452668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37480653" }, "bbox": [ -0.0389484, 51.2196335, -0.0389484, 51.2196335 ], "geometry": { "type": "Point", "coordinates": [ -0.0389484, 51.2196335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529719" }, "bbox": [ -0.2104708, 51.255218, -0.2104708, 51.255218 ], "geometry": { "type": "Point", "coordinates": [ -0.2104708, 51.255218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38558004" }, "bbox": [ -0.0110621, 51.2772084, -0.0110621, 51.2772084 ], "geometry": { "type": "Point", "coordinates": [ -0.0110621, 51.2772084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39451288" }, "bbox": [ -0.010024, 51.195135, -0.010024, 51.195135 ], "geometry": { "type": "Point", "coordinates": [ -0.010024, 51.195135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04580390" }, "bbox": [ -0.5087438, 51.3196274, -0.5087438, 51.3196274 ], "geometry": { "type": "Point", "coordinates": [ -0.5087438, 51.3196274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06556586" }, "bbox": [ -0.4718361, 51.2920664, -0.4718361, 51.2920664 ], "geometry": { "type": "Point", "coordinates": [ -0.4718361, 51.2920664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06703725" }, "bbox": [ -0.4710656, 51.4216462, -0.4710656, 51.4216462 ], "geometry": { "type": "Point", "coordinates": [ -0.4710656, 51.4216462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08692866" }, "bbox": [ -0.4460679, 51.4151477, -0.4460679, 51.4151477 ], "geometry": { "type": "Point", "coordinates": [ -0.4460679, 51.4151477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08567902" }, "bbox": [ -0.4410469, 51.2930066, -0.4410469, 51.2930066 ], "geometry": { "type": "Point", "coordinates": [ -0.4410469, 51.2930066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502777" }, "bbox": [ -0.4504344, 51.2458108, -0.4504344, 51.2458108 ], "geometry": { "type": "Point", "coordinates": [ -0.4504344, 51.2458108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09418685" }, "bbox": [ -0.4300536, 51.1653859, -0.4300536, 51.1653859 ], "geometry": { "type": "Point", "coordinates": [ -0.4300536, 51.1653859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09419080" }, "bbox": [ -0.4291584, 51.1649242, -0.4291584, 51.1649242 ], "geometry": { "type": "Point", "coordinates": [ -0.4291584, 51.1649242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10405277" }, "bbox": [ -0.4211252, 51.1557175, -0.4211252, 51.1557175 ], "geometry": { "type": "Point", "coordinates": [ -0.4211252, 51.1557175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10406880" }, "bbox": [ -0.4186151, 51.1557888, -0.4186151, 51.1557888 ], "geometry": { "type": "Point", "coordinates": [ -0.4186151, 51.1557888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410256" }, "bbox": [ -0.4290775, 51.1628734, -0.4290775, 51.1628734 ], "geometry": { "type": "Point", "coordinates": [ -0.4290775, 51.1628734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10508184" }, "bbox": [ -0.4139158, 51.2459932, -0.4139158, 51.2459932 ], "geometry": { "type": "Point", "coordinates": [ -0.4139158, 51.2459932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571846" }, "bbox": [ -0.4206891, 51.3056424, -0.4206891, 51.3056424 ], "geometry": { "type": "Point", "coordinates": [ -0.4206891, 51.3056424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11533211" }, "bbox": [ -0.4058881, 51.266316, -0.4058881, 51.266316 ], "geometry": { "type": "Point", "coordinates": [ -0.4058881, 51.266316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500950" }, "bbox": [ -0.3956432, 51.2426757, -0.3956432, 51.2426757 ], "geometry": { "type": "Point", "coordinates": [ -0.3956432, 51.2426757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10507086" }, "bbox": [ -0.4154089, 51.2462205, -0.4154089, 51.2462205 ], "geometry": { "type": "Point", "coordinates": [ -0.4154089, 51.2462205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388512" }, "bbox": [ -0.3025557, 51.1302076, -0.3025557, 51.1302076 ], "geometry": { "type": "Point", "coordinates": [ -0.3025557, 51.1302076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18456489" }, "bbox": [ -0.303079, 51.2003184, -0.303079, 51.2003184 ], "geometry": { "type": "Point", "coordinates": [ -0.303079, 51.2003184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18410154" }, "bbox": [ -0.3138871, 51.1609514, -0.3138871, 51.1609514 ], "geometry": { "type": "Point", "coordinates": [ -0.3138871, 51.1609514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496927" }, "bbox": [ -0.2298777, 51.2292851, -0.2298777, 51.2292851 ], "geometry": { "type": "Point", "coordinates": [ -0.2298777, 51.2292851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529623" }, "bbox": [ -0.2105767, 51.2555034, -0.2105767, 51.2555034 ], "geometry": { "type": "Point", "coordinates": [ -0.2105767, 51.2555034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497510" }, "bbox": [ -0.2290207, 51.2276977, -0.2290207, 51.2276977 ], "geometry": { "type": "Point", "coordinates": [ -0.2290207, 51.2276977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473782" }, "bbox": [ -0.1920183, 51.2156165, -0.1920183, 51.2156165 ], "geometry": { "type": "Point", "coordinates": [ -0.1920183, 51.2156165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29453369" }, "bbox": [ -0.1502937, 51.1958488, -0.1502937, 51.1958488 ], "geometry": { "type": "Point", "coordinates": [ -0.1502937, 51.1958488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26464961" }, "bbox": [ -0.1905769, 51.2048038, -0.1905769, 51.2048038 ], "geometry": { "type": "Point", "coordinates": [ -0.1905769, 51.2048038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26475904" }, "bbox": [ -0.1891006, 51.2085945, -0.1891006, 51.2085945 ], "geometry": { "type": "Point", "coordinates": [ -0.1891006, 51.2085945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27570133" }, "bbox": [ -0.1790439, 51.3016254, -0.1790439, 51.3016254 ], "geometry": { "type": "Point", "coordinates": [ -0.1790439, 51.3016254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27600559" }, "bbox": [ -0.1777811, 51.3302443, -0.1777811, 51.3302443 ], "geometry": { "type": "Point", "coordinates": [ -0.1777811, 51.3302443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28533002" }, "bbox": [ -0.1625939, 51.261942, -0.1625939, 51.261942 ], "geometry": { "type": "Point", "coordinates": [ -0.1625939, 51.261942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30494896" }, "bbox": [ -0.1320766, 51.2334338, -0.1320766, 51.2334338 ], "geometry": { "type": "Point", "coordinates": [ -0.1320766, 51.2334338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492568" }, "bbox": [ -0.1356961, 51.2314771, -0.1356961, 51.2314771 ], "geometry": { "type": "Point", "coordinates": [ -0.1356961, 51.2314771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30490767" }, "bbox": [ -0.1381459, 51.2313103, -0.1381459, 51.2313103 ], "geometry": { "type": "Point", "coordinates": [ -0.1381459, 51.2313103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29457968" }, "bbox": [ -0.1437437, 51.1956075, -0.1437437, 51.1956075 ], "geometry": { "type": "Point", "coordinates": [ -0.1437437, 51.1956075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31491097" }, "bbox": [ -0.1236947, 51.2338398, -0.1236947, 51.2338398 ], "geometry": { "type": "Point", "coordinates": [ -0.1236947, 51.2338398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31420671" }, "bbox": [ -0.1269137, 51.1686669, -0.1269137, 51.1686669 ], "geometry": { "type": "Point", "coordinates": [ -0.1269137, 51.1686669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31498092" }, "bbox": [ -0.1135856, 51.2332628, -0.1135856, 51.2332628 ], "geometry": { "type": "Point", "coordinates": [ -0.1135856, 51.2332628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32452744" }, "bbox": [ -0.1086931, 51.1930423, -0.1086931, 51.1930423 ], "geometry": { "type": "Point", "coordinates": [ -0.1086931, 51.1930423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428145" }, "bbox": [ -0.0875631, 51.1656314, -0.0875631, 51.1656314 ], "geometry": { "type": "Point", "coordinates": [ -0.0875631, 51.1656314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33491199" }, "bbox": [ -0.0947524, 51.2336545, -0.0947524, 51.2336545 ], "geometry": { "type": "Point", "coordinates": [ -0.0947524, 51.2336545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427367" }, "bbox": [ -0.088616, 51.1676858, -0.088616, 51.1676858 ], "geometry": { "type": "Point", "coordinates": [ -0.088616, 51.1676858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34491798" }, "bbox": [ -0.080073, 51.2332328, -0.080073, 51.2332328 ], "geometry": { "type": "Point", "coordinates": [ -0.080073, 51.2332328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35497699" }, "bbox": [ -0.056801, 51.2329261, -0.056801, 51.2329261 ], "geometry": { "type": "Point", "coordinates": [ -0.056801, 51.2329261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36493064" }, "bbox": [ -0.0494822, 51.2300144, -0.0494822, 51.2300144 ], "geometry": { "type": "Point", "coordinates": [ -0.0494822, 51.2300144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40460396" }, "bbox": [ 0.0032532, 51.2045825, 0.0032532, 51.2045825 ], "geometry": { "type": "Point", "coordinates": [ 0.0032532, 51.2045825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39460537" }, "bbox": [ -0.0110394, 51.1996813, -0.0110394, 51.1996813 ], "geometry": { "type": "Point", "coordinates": [ -0.0110394, 51.1996813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411352" }, "bbox": [ 0.0310229, 51.1552872, 0.0310229, 51.1552872 ], "geometry": { "type": "Point", "coordinates": [ 0.0310229, 51.1552872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42410448" }, "bbox": [ 0.0300699, 51.154714, 0.0300699, 51.154714 ], "geometry": { "type": "Point", "coordinates": [ 0.0300699, 51.154714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88476107" }, "bbox": [ -0.7329313, 51.2163074, -0.7329313, 51.2163074 ], "geometry": { "type": "Point", "coordinates": [ -0.7329313, 51.2163074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21492931" }, "bbox": [ -0.2642388, 51.2302038, -0.2642388, 51.2302038 ], "geometry": { "type": "Point", "coordinates": [ -0.2642388, 51.2302038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92488410" }, "bbox": [ -0.6720544, 51.2246681, -0.6720544, 51.2246681 ], "geometry": { "type": "Point", "coordinates": [ -0.6720544, 51.2246681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41417301" }, "bbox": [ 0.0249636, 51.1506392, 0.0249636, 51.1506392 ], "geometry": { "type": "Point", "coordinates": [ 0.0249636, 51.1506392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41419341" }, "bbox": [ 0.0281003, 51.1542669, 0.0281003, 51.1542669 ], "geometry": { "type": "Point", "coordinates": [ 0.0281003, 51.1542669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19469821" }, "bbox": [ -0.2843452, 51.2021661, -0.2843452, 51.2021661 ], "geometry": { "type": "Point", "coordinates": [ -0.2843452, 51.2021661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16432959" }, "bbox": [ -0.3376217, 51.1797555, -0.3376217, 51.1797555 ], "geometry": { "type": "Point", "coordinates": [ -0.3376217, 51.1797555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43521050" }, "bbox": [ 0.0516647, 51.2516784, 0.0516647, 51.2516784 ], "geometry": { "type": "Point", "coordinates": [ 0.0516647, 51.2516784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05555507" }, "bbox": [ -0.4878092, 51.2850652, -0.4878092, 51.2850652 ], "geometry": { "type": "Point", "coordinates": [ -0.4878092, 51.2850652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08571471" }, "bbox": [ -0.4496724, 51.3079579, -0.4496724, 51.3079579 ], "geometry": { "type": "Point", "coordinates": [ -0.4496724, 51.3079579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08362044" }, "bbox": [ -0.4556957, 51.1171213, -0.4556957, 51.1171213 ], "geometry": { "type": "Point", "coordinates": [ -0.4556957, 51.1171213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36438282" }, "bbox": [ -0.0440444, 51.1772578, -0.0440444, 51.1772578 ], "geometry": { "type": "Point", "coordinates": [ -0.0440444, 51.1772578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13495854" }, "bbox": [ -0.3740969, 51.2338956, -0.3740969, 51.2338956 ], "geometry": { "type": "Point", "coordinates": [ -0.3740969, 51.2338956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22596889" }, "bbox": [ -0.240289, 51.3250803, -0.240289, 51.3250803 ], "geometry": { "type": "Point", "coordinates": [ -0.240289, 51.3250803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521625" }, "bbox": [ -0.2055389, 51.2550418, -0.2055389, 51.2550418 ], "geometry": { "type": "Point", "coordinates": [ -0.2055389, 51.2550418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25523234" }, "bbox": [ -0.2053797, 51.2564861, -0.2053797, 51.2564861 ], "geometry": { "type": "Point", "coordinates": [ -0.2053797, 51.2564861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02424817" }, "bbox": [ -0.536338, 51.1696946, -0.536338, 51.1696946 ], "geometry": { "type": "Point", "coordinates": [ -0.536338, 51.1696946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12428106" }, "bbox": [ -0.3866541, 51.1659798, -0.3866541, 51.1659798 ], "geometry": { "type": "Point", "coordinates": [ -0.3866541, 51.1659798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17517233" }, "bbox": [ -0.3141356, 51.2487256, -0.3141356, 51.2487256 ], "geometry": { "type": "Point", "coordinates": [ -0.3141356, 51.2487256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21404428" }, "bbox": [ -0.2641338, 51.1486539, -0.2641338, 51.1486539 ], "geometry": { "type": "Point", "coordinates": [ -0.2641338, 51.1486539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491217" }, "bbox": [ -0.3667773, 51.2301444, -0.3667773, 51.2301444 ], "geometry": { "type": "Point", "coordinates": [ -0.3667773, 51.2301444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24491730" }, "bbox": [ -0.222887, 51.2295461, -0.222887, 51.2295461 ], "geometry": { "type": "Point", "coordinates": [ -0.222887, 51.2295461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411049" }, "bbox": [ 0.0302059, 51.1553867, 0.0302059, 51.1553867 ], "geometry": { "type": "Point", "coordinates": [ 0.0302059, 51.1553867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18506772" }, "bbox": [ -0.301232, 51.2434321, -0.301232, 51.2434321 ], "geometry": { "type": "Point", "coordinates": [ -0.301232, 51.2434321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18503971" }, "bbox": [ -0.305276, 51.2434648, -0.305276, 51.2434648 ], "geometry": { "type": "Point", "coordinates": [ -0.305276, 51.2434648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441352" }, "bbox": [ -0.0820844, 51.1841603, -0.0820844, 51.1841603 ], "geometry": { "type": "Point", "coordinates": [ -0.0820844, 51.1841603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441846" }, "bbox": [ -0.0816436, 51.1834705, -0.0816436, 51.1834705 ], "geometry": { "type": "Point", "coordinates": [ -0.0816436, 51.1834705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442942" }, "bbox": [ -0.0804473, 51.183282, -0.0804473, 51.183282 ], "geometry": { "type": "Point", "coordinates": [ -0.0804473, 51.183282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441662" }, "bbox": [ -0.0817439, 51.1850918, -0.0817439, 51.1850918 ], "geometry": { "type": "Point", "coordinates": [ -0.0817439, 51.1850918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441264" }, "bbox": [ -0.0823056, 51.1852342, -0.0823056, 51.1852342 ], "geometry": { "type": "Point", "coordinates": [ -0.0823056, 51.1852342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443956" }, "bbox": [ -0.0784228, 51.1845006, -0.0784228, 51.1845006 ], "geometry": { "type": "Point", "coordinates": [ -0.0784228, 51.1845006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06352917" }, "bbox": [ -0.4832516, 51.1059552, -0.4832516, 51.1059552 ], "geometry": { "type": "Point", "coordinates": [ -0.4832516, 51.1059552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04573294" }, "bbox": [ -0.5054297, 51.3111965, -0.5054297, 51.3111965 ], "geometry": { "type": "Point", "coordinates": [ -0.5054297, 51.3111965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04582905" }, "bbox": [ -0.5048976, 51.3120007, -0.5048976, 51.3120007 ], "geometry": { "type": "Point", "coordinates": [ -0.5048976, 51.3120007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04581507" }, "bbox": [ -0.506925, 51.3122176, -0.506925, 51.3122176 ], "geometry": { "type": "Point", "coordinates": [ -0.506925, 51.3122176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04580309" }, "bbox": [ -0.5088698, 51.3124738, -0.5088698, 51.3124738 ], "geometry": { "type": "Point", "coordinates": [ -0.5088698, 51.3124738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03589309" }, "bbox": [ -0.5100965, 51.3125582, -0.5100965, 51.3125582 ], "geometry": { "type": "Point", "coordinates": [ -0.5100965, 51.3125582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35440041" }, "bbox": [ -0.0697509, 51.183157, -0.0697509, 51.183157 ], "geometry": { "type": "Point", "coordinates": [ -0.0697509, 51.183157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34445755" }, "bbox": [ -0.0756711, 51.1843175, -0.0756711, 51.1843175 ], "geometry": { "type": "Point", "coordinates": [ -0.0756711, 51.1843175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34448646" }, "bbox": [ -0.0728093, 51.1836629, -0.0728093, 51.1836629 ], "geometry": { "type": "Point", "coordinates": [ -0.0728093, 51.1836629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34444767" }, "bbox": [ -0.0769157, 51.1857575, -0.0769157, 51.1857575 ], "geometry": { "type": "Point", "coordinates": [ -0.0769157, 51.1857575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441968" }, "bbox": [ -0.0813364, 51.1856124, -0.0813364, 51.1856124 ], "geometry": { "type": "Point", "coordinates": [ -0.0813364, 51.1856124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441473" }, "bbox": [ -0.0820819, 51.1865577, -0.0820819, 51.1865577 ], "geometry": { "type": "Point", "coordinates": [ -0.0820819, 51.1865577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443457" }, "bbox": [ -0.0792015, 51.1845764, -0.0792015, 51.1845764 ], "geometry": { "type": "Point", "coordinates": [ -0.0792015, 51.1845764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443757" }, "bbox": [ -0.0788061, 51.1845415, -0.0788061, 51.1845415 ], "geometry": { "type": "Point", "coordinates": [ -0.0788061, 51.1845415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34444556" }, "bbox": [ -0.0779411, 51.1844543, -0.0779411, 51.1844543 ], "geometry": { "type": "Point", "coordinates": [ -0.0779411, 51.1844543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34444757" }, "bbox": [ -0.0773113, 51.184529, -0.0773113, 51.184529 ], "geometry": { "type": "Point", "coordinates": [ -0.0773113, 51.184529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34445357" }, "bbox": [ -0.076562, 51.1845286, -0.076562, 51.1845286 ], "geometry": { "type": "Point", "coordinates": [ -0.076562, 51.1845286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94591352" }, "bbox": [ -0.6504125, 51.3270489, -0.6504125, 51.3270489 ], "geometry": { "type": "Point", "coordinates": [ -0.6504125, 51.3270489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94592005" }, "bbox": [ -0.6496636, 51.3227113, -0.6496636, 51.3227113 ], "geometry": { "type": "Point", "coordinates": [ -0.6496636, 51.3227113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23466523" }, "bbox": [ -0.2314532, 51.2020211, -0.2314532, 51.2020211 ], "geometry": { "type": "Point", "coordinates": [ -0.2314532, 51.2020211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02441430" }, "bbox": [ -0.5397314, 51.188839, -0.5397314, 51.188839 ], "geometry": { "type": "Point", "coordinates": [ -0.5397314, 51.188839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02453414" }, "bbox": [ -0.5361803, 51.1962778, -0.5361803, 51.1962778 ], "geometry": { "type": "Point", "coordinates": [ -0.5361803, 51.1962778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00697946" }, "bbox": [ -0.5519409, 51.4153736, -0.5519409, 51.4153736 ], "geometry": { "type": "Point", "coordinates": [ -0.5519409, 51.4153736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15587929" }, "bbox": [ -0.3407636, 51.3126196, -0.3407636, 51.3126196 ], "geometry": { "type": "Point", "coordinates": [ -0.3407636, 51.3126196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26575534" }, "bbox": [ -0.185126, 51.3012641, -0.185126, 51.3012641 ], "geometry": { "type": "Point", "coordinates": [ -0.185126, 51.3012641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99381068" }, "bbox": [ -0.5845202, 51.1389656, -0.5845202, 51.1389656 ], "geometry": { "type": "Point", "coordinates": [ -0.5845202, 51.1389656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98389874" }, "bbox": [ -0.5863174, 51.1395575, -0.5863174, 51.1395575 ], "geometry": { "type": "Point", "coordinates": [ -0.5863174, 51.1395575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87371019" }, "bbox": [ -0.7564348, 51.1273346, -0.7564348, 51.1273346 ], "geometry": { "type": "Point", "coordinates": [ -0.7564348, 51.1273346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42455433" }, "bbox": [ 0.0382883, 51.1894383, 0.0382883, 51.1894383 ], "geometry": { "type": "Point", "coordinates": [ 0.0382883, 51.1894383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42458145" }, "bbox": [ 0.042337, 51.1905121, 0.042337, 51.1905121 ], "geometry": { "type": "Point", "coordinates": [ 0.042337, 51.1905121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42455951" }, "bbox": [ 0.0392346, 51.1909356, 0.0392346, 51.1909356 ], "geometry": { "type": "Point", "coordinates": [ 0.0392346, 51.1909356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42458223" }, "bbox": [ 0.0422497, 51.1885142, 0.0422497, 51.1885142 ], "geometry": { "type": "Point", "coordinates": [ 0.0422497, 51.1885142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42456815" }, "bbox": [ 0.0401816, 51.1878305, 0.0401816, 51.1878305 ], "geometry": { "type": "Point", "coordinates": [ 0.0401816, 51.1878305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42454911" }, "bbox": [ 0.0376032, 51.1875402, 0.0376032, 51.1875402 ], "geometry": { "type": "Point", "coordinates": [ 0.0376032, 51.1875402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42452014" }, "bbox": [ 0.0326806, 51.1874501, 0.0326806, 51.1874501 ], "geometry": { "type": "Point", "coordinates": [ 0.0326806, 51.1874501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14402019" }, "bbox": [ -0.369135, 51.1496529, -0.369135, 51.1496529 ], "geometry": { "type": "Point", "coordinates": [ -0.369135, 51.1496529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04575539" }, "bbox": [ -0.5015636, 51.306062, -0.5015636, 51.306062 ], "geometry": { "type": "Point", "coordinates": [ -0.5015636, 51.306062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10533715" }, "bbox": [ -0.4194758, 51.2680004, -0.4194758, 51.2680004 ], "geometry": { "type": "Point", "coordinates": [ -0.4194758, 51.2680004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10521099" }, "bbox": [ -0.4231155, 51.2654811, -0.4231155, 51.2654811 ], "geometry": { "type": "Point", "coordinates": [ -0.4231155, 51.2654811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98413758" }, "bbox": [ -0.5945112, 51.1650175, -0.5945112, 51.1650175 ], "geometry": { "type": "Point", "coordinates": [ -0.5945112, 51.1650175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588423" }, "bbox": [ -0.4251134, 51.3124666, -0.4251134, 51.3124666 ], "geometry": { "type": "Point", "coordinates": [ -0.4251134, 51.3124666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87389816" }, "bbox": [ -0.744135, 51.1360336, -0.744135, 51.1360336 ], "geometry": { "type": "Point", "coordinates": [ -0.744135, 51.1360336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87387719" }, "bbox": [ -0.7466402, 51.1362504, -0.7466402, 51.1362504 ], "geometry": { "type": "Point", "coordinates": [ -0.7466402, 51.1362504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87389624" }, "bbox": [ -0.7442152, 51.1366353, -0.7442152, 51.1366353 ], "geometry": { "type": "Point", "coordinates": [ -0.7442152, 51.1366353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03472722" }, "bbox": [ -0.522114, 51.2150128, -0.522114, 51.2150128 ], "geometry": { "type": "Point", "coordinates": [ -0.522114, 51.2150128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18480292" }, "bbox": [ -0.3110566, 51.2274837, -0.3110566, 51.2274837 ], "geometry": { "type": "Point", "coordinates": [ -0.3110566, 51.2274837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17425366" }, "bbox": [ -0.3206732, 51.1712309, -0.3206732, 51.1712309 ], "geometry": { "type": "Point", "coordinates": [ -0.3206732, 51.1712309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17423341" }, "bbox": [ -0.3234117, 51.1693744, -0.3234117, 51.1693744 ], "geometry": { "type": "Point", "coordinates": [ -0.3234117, 51.1693744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18418882" }, "bbox": [ -0.3017741, 51.1632868, -0.3017741, 51.1632868 ], "geometry": { "type": "Point", "coordinates": [ -0.3017741, 51.1632868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97554970" }, "bbox": [ -0.6019919, 51.2918305, -0.6019919, 51.2918305 ], "geometry": { "type": "Point", "coordinates": [ -0.6019919, 51.2918305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26468331" }, "bbox": [ -0.1859803, 51.2020908, -0.1859803, 51.2020908 ], "geometry": { "type": "Point", "coordinates": [ -0.1859803, 51.2020908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32517596" }, "bbox": [ -0.0991286, 51.2514816, -0.0991286, 51.2514816 ], "geometry": { "type": "Point", "coordinates": [ -0.0991286, 51.2514816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21479636" }, "bbox": [ -0.2552923, 51.2123917, -0.2552923, 51.2123917 ], "geometry": { "type": "Point", "coordinates": [ -0.2552923, 51.2123917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31420428" }, "bbox": [ -0.1271707, 51.1648516, -0.1271707, 51.1648516 ], "geometry": { "type": "Point", "coordinates": [ -0.1271707, 51.1648516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31421436" }, "bbox": [ -0.1257826, 51.1653627, -0.1257826, 51.1653627 ], "geometry": { "type": "Point", "coordinates": [ -0.1257826, 51.1653627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37432180" }, "bbox": [ -0.0386423, 51.1769908, -0.0386423, 51.1769908 ], "geometry": { "type": "Point", "coordinates": [ -0.0386423, 51.1769908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36437954" }, "bbox": [ -0.0445092, 51.1747671, -0.0445092, 51.1747671 ], "geometry": { "type": "Point", "coordinates": [ -0.0445092, 51.1747671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17464698" }, "bbox": [ -0.3198051, 51.2099419, -0.3198051, 51.2099419 ], "geometry": { "type": "Point", "coordinates": [ -0.3198051, 51.2099419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19487895" }, "bbox": [ -0.2860946, 51.2269116, -0.2860946, 51.2269116 ], "geometry": { "type": "Point", "coordinates": [ -0.2860946, 51.2269116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19488572" }, "bbox": [ -0.2850146, 51.2251532, -0.2850146, 51.2251532 ], "geometry": { "type": "Point", "coordinates": [ -0.2850146, 51.2251532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448872" }, "bbox": [ -0.1572621, 51.1871369, -0.1572621, 51.1871369 ], "geometry": { "type": "Point", "coordinates": [ -0.1572621, 51.1871369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448778" }, "bbox": [ -0.1573927, 51.1877653, -0.1573927, 51.1877653 ], "geometry": { "type": "Point", "coordinates": [ -0.1573927, 51.1877653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448774" }, "bbox": [ -0.1574593, 51.1873449, -0.1574593, 51.1873449 ], "geometry": { "type": "Point", "coordinates": [ -0.1574593, 51.1873449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448767" }, "bbox": [ -0.1574637, 51.1867482, -0.1574637, 51.1867482 ], "geometry": { "type": "Point", "coordinates": [ -0.1574637, 51.1867482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448682" }, "bbox": [ -0.1575203, 51.18807, -0.1575203, 51.18807 ], "geometry": { "type": "Point", "coordinates": [ -0.1575203, 51.18807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448586" }, "bbox": [ -0.1576348, 51.1885915, -0.1576348, 51.1885915 ], "geometry": { "type": "Point", "coordinates": [ -0.1576348, 51.1885915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93569718" }, "bbox": [ -0.6537185, 51.2969019, -0.6537185, 51.2969019 ], "geometry": { "type": "Point", "coordinates": [ -0.6537185, 51.2969019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06555492" }, "bbox": [ -0.4735692, 51.2924951, -0.4735692, 51.2924951 ], "geometry": { "type": "Point", "coordinates": [ -0.4735692, 51.2924951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06563261" }, "bbox": [ -0.4762781, 51.2989658, -0.4762781, 51.2989658 ], "geometry": { "type": "Point", "coordinates": [ -0.4762781, 51.2989658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94487584" }, "bbox": [ -0.6445239, 51.2311364, -0.6445239, 51.2311364 ], "geometry": { "type": "Point", "coordinates": [ -0.6445239, 51.2311364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01699630" }, "bbox": [ -0.5350968, 51.4129817, -0.5350968, 51.4129817 ], "geometry": { "type": "Point", "coordinates": [ -0.5350968, 51.4129817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02422464" }, "bbox": [ -0.5386655, 51.1738213, -0.5386655, 51.1738213 ], "geometry": { "type": "Point", "coordinates": [ -0.5386655, 51.1738213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28542735" }, "bbox": [ -0.1624372, 51.2739153, -0.1624372, 51.2739153 ], "geometry": { "type": "Point", "coordinates": [ -0.1624372, 51.2739153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04565981" }, "bbox": [ -0.5010443, 51.3009537, -0.5010443, 51.3009537 ], "geometry": { "type": "Point", "coordinates": [ -0.5010443, 51.3009537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13407771" }, "bbox": [ -0.3751959, 51.1543296, -0.3751959, 51.1543296 ], "geometry": { "type": "Point", "coordinates": [ -0.3751959, 51.1543296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41557732" }, "bbox": [ 0.031236, 51.2793561, 0.031236, 51.2793561 ], "geometry": { "type": "Point", "coordinates": [ 0.031236, 51.2793561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41554633" }, "bbox": [ 0.0266665, 51.2795123, 0.0266665, 51.2795123 ], "geometry": { "type": "Point", "coordinates": [ 0.0266665, 51.2795123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15410926" }, "bbox": [ -0.3557729, 51.1592207, -0.3557729, 51.1592207 ], "geometry": { "type": "Point", "coordinates": [ -0.3557729, 51.1592207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14405298" }, "bbox": [ -0.3638984, 51.156552, -0.3638984, 51.156552 ], "geometry": { "type": "Point", "coordinates": [ -0.3638984, 51.156552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14407793" }, "bbox": [ -0.3604379, 51.1561944, -0.3604379, 51.1561944 ], "geometry": { "type": "Point", "coordinates": [ -0.3604379, 51.1561944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14418141" }, "bbox": [ -0.3595574, 51.1605936, -0.3595574, 51.1605936 ], "geometry": { "type": "Point", "coordinates": [ -0.3595574, 51.1605936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14414217" }, "bbox": [ -0.3651702, 51.1583998, -0.3651702, 51.1583998 ], "geometry": { "type": "Point", "coordinates": [ -0.3651702, 51.1583998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14415865" }, "bbox": [ -0.3627999, 51.1617816, -0.3627999, 51.1617816 ], "geometry": { "type": "Point", "coordinates": [ -0.3627999, 51.1617816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14416978" }, "bbox": [ -0.3610002, 51.1638168, -0.3610002, 51.1638168 ], "geometry": { "type": "Point", "coordinates": [ -0.3610002, 51.1638168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14416745" }, "bbox": [ -0.3614986, 51.1602144, -0.3614986, 51.1602144 ], "geometry": { "type": "Point", "coordinates": [ -0.3614986, 51.1602144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14412793" }, "bbox": [ -0.3671225, 51.1651609, -0.3671225, 51.1651609 ], "geometry": { "type": "Point", "coordinates": [ -0.3671225, 51.1651609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21396653" }, "bbox": [ -0.2621698, 51.1423967, -0.2621698, 51.1423967 ], "geometry": { "type": "Point", "coordinates": [ -0.2621698, 51.1423967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16460682" }, "bbox": [ -0.3398858, 51.2088456, -0.3398858, 51.2088456 ], "geometry": { "type": "Point", "coordinates": [ -0.3398858, 51.2088456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41476931" }, "bbox": [ 0.0271526, 51.20736, 0.0271526, 51.20736 ], "geometry": { "type": "Point", "coordinates": [ 0.0271526, 51.20736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40467866" }, "bbox": [ 0.0138543, 51.2019123, 0.0138543, 51.2019123 ], "geometry": { "type": "Point", "coordinates": [ 0.0138543, 51.2019123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01404341" }, "bbox": [ -0.5509325, 51.1539791, -0.5509325, 51.1539791 ], "geometry": { "type": "Point", "coordinates": [ -0.5509325, 51.1539791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14396879" }, "bbox": [ -0.3616527, 51.1459149, -0.3616527, 51.1459149 ], "geometry": { "type": "Point", "coordinates": [ -0.3616527, 51.1459149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14476680" }, "bbox": [ -0.3600294, 51.2181926, -0.3600294, 51.2181926 ], "geometry": { "type": "Point", "coordinates": [ -0.3600294, 51.2181926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96467561" }, "bbox": [ -0.6161085, 51.2102884, -0.6161085, 51.2102884 ], "geometry": { "type": "Point", "coordinates": [ -0.6161085, 51.2102884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96469767" }, "bbox": [ -0.6130903, 51.2113381, -0.6130903, 51.2113381 ], "geometry": { "type": "Point", "coordinates": [ -0.6130903, 51.2113381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96457366" }, "bbox": [ -0.6165857, 51.2020355, -0.6165857, 51.2020355 ], "geometry": { "type": "Point", "coordinates": [ -0.6165857, 51.2020355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04372950" }, "bbox": [ -0.5108884, 51.1273777, -0.5108884, 51.1273777 ], "geometry": { "type": "Point", "coordinates": [ -0.5108884, 51.1273777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15373673" }, "bbox": [ -0.352784, 51.1272464, -0.352784, 51.1272464 ], "geometry": { "type": "Point", "coordinates": [ -0.352784, 51.1272464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15373263" }, "bbox": [ -0.3536706, 51.1259576, -0.3536706, 51.1259576 ], "geometry": { "type": "Point", "coordinates": [ -0.3536706, 51.1259576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15374262" }, "bbox": [ -0.3521539, 51.1261556, -0.3521539, 51.1261556 ], "geometry": { "type": "Point", "coordinates": [ -0.3521539, 51.1261556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18459423" }, "bbox": [ -0.2991241, 51.1939148, -0.2991241, 51.1939148 ], "geometry": { "type": "Point", "coordinates": [ -0.2991241, 51.1939148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18449757" }, "bbox": [ -0.2988471, 51.1880727, -0.2988471, 51.1880727 ], "geometry": { "type": "Point", "coordinates": [ -0.2988471, 51.1880727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18449254" }, "bbox": [ -0.2995386, 51.1875069, -0.2995386, 51.1875069 ], "geometry": { "type": "Point", "coordinates": [ -0.2995386, 51.1875069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19438097" }, "bbox": [ -0.2873246, 51.1824092, -0.2873246, 51.1824092 ], "geometry": { "type": "Point", "coordinates": [ -0.2873246, 51.1824092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19451442" }, "bbox": [ -0.2966608, 51.1957845, -0.2966608, 51.1957845 ], "geometry": { "type": "Point", "coordinates": [ -0.2966608, 51.1957845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39503441" }, "bbox": [ -0.0054447, 51.2358857, -0.0054447, 51.2358857 ], "geometry": { "type": "Point", "coordinates": [ -0.0054447, 51.2358857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19441503" }, "bbox": [ -0.2966408, 51.1830987, -0.2966408, 51.1830987 ], "geometry": { "type": "Point", "coordinates": [ -0.2966408, 51.1830987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18448874" }, "bbox": [ -0.3001302, 51.1898775, -0.3001302, 51.1898775 ], "geometry": { "type": "Point", "coordinates": [ -0.3001302, 51.1898775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19441087" }, "bbox": [ -0.297219, 51.1908886, -0.297219, 51.1908886 ], "geometry": { "type": "Point", "coordinates": [ -0.297219, 51.1908886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19452541" }, "bbox": [ -0.2946663, 51.195499, -0.2946663, 51.195499 ], "geometry": { "type": "Point", "coordinates": [ -0.2946663, 51.195499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447736" }, "bbox": [ -0.3019261, 51.1861255, -0.3019261, 51.1861255 ], "geometry": { "type": "Point", "coordinates": [ -0.3019261, 51.1861255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447141" }, "bbox": [ -0.3022236, 51.186534, -0.3022236, 51.186534 ], "geometry": { "type": "Point", "coordinates": [ -0.3022236, 51.186534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19440540" }, "bbox": [ -0.2968364, 51.1865394, -0.2968364, 51.1865394 ], "geometry": { "type": "Point", "coordinates": [ -0.2968364, 51.1865394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19440226" }, "bbox": [ -0.2981345, 51.1851769, -0.2981345, 51.1851769 ], "geometry": { "type": "Point", "coordinates": [ -0.2981345, 51.1851769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447036" }, "bbox": [ -0.3029009, 51.1861651, -0.3029009, 51.1861651 ], "geometry": { "type": "Point", "coordinates": [ -0.3029009, 51.1861651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455237" }, "bbox": [ -0.3045333, 51.1954601, -0.3045333, 51.1954601 ], "geometry": { "type": "Point", "coordinates": [ -0.3045333, 51.1954601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19441154" }, "bbox": [ -0.2967102, 51.1878128, -0.2967102, 51.1878128 ], "geometry": { "type": "Point", "coordinates": [ -0.2967102, 51.1878128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19445907" }, "bbox": [ -0.2897392, 51.1835391, -0.2897392, 51.1835391 ], "geometry": { "type": "Point", "coordinates": [ -0.2897392, 51.1835391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20441763" }, "bbox": [ -0.2816365, 51.1885185, -0.2816365, 51.1885185 ], "geometry": { "type": "Point", "coordinates": [ -0.2816365, 51.1885185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96469257" }, "bbox": [ -0.6137054, 51.2100559, -0.6137054, 51.2100559 ], "geometry": { "type": "Point", "coordinates": [ -0.6137054, 51.2100559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437793" }, "bbox": [ -0.302021, 51.1822542, -0.302021, 51.1822542 ], "geometry": { "type": "Point", "coordinates": [ -0.302021, 51.1822542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447608" }, "bbox": [ -0.3022224, 51.1836983, -0.3022224, 51.1836983 ], "geometry": { "type": "Point", "coordinates": [ -0.3022224, 51.1836983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19452218" }, "bbox": [ -0.2950836, 51.1936966, -0.2950836, 51.1936966 ], "geometry": { "type": "Point", "coordinates": [ -0.2950836, 51.1936966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19446831" }, "bbox": [ -0.2894724, 51.1856172, -0.2894724, 51.1856172 ], "geometry": { "type": "Point", "coordinates": [ -0.2894724, 51.1856172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93408724" }, "bbox": [ -0.659496, 51.1536645, -0.659496, 51.1536645 ], "geometry": { "type": "Point", "coordinates": [ -0.659496, 51.1536645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93408130" }, "bbox": [ -0.660003, 51.1543179, -0.660003, 51.1543179 ], "geometry": { "type": "Point", "coordinates": [ -0.660003, 51.1543179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93406716" }, "bbox": [ -0.6620776, 51.1529563, -0.6620776, 51.1529563 ], "geometry": { "type": "Point", "coordinates": [ -0.6620776, 51.1529563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93405315" }, "bbox": [ -0.6639482, 51.15298, -0.6639482, 51.15298 ], "geometry": { "type": "Point", "coordinates": [ -0.6639482, 51.15298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93403923" }, "bbox": [ -0.6658571, 51.153935, -0.6658571, 51.153935 ], "geometry": { "type": "Point", "coordinates": [ -0.6658571, 51.153935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93407608" }, "bbox": [ -0.66101, 51.1523404, -0.66101, 51.1523404 ], "geometry": { "type": "Point", "coordinates": [ -0.66101, 51.1523404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93404305" }, "bbox": [ -0.6653834, 51.1520154, -0.6653834, 51.1520154 ], "geometry": { "type": "Point", "coordinates": [ -0.6653834, 51.1520154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19443378" }, "bbox": [ -0.2937133, 51.189895, -0.2937133, 51.189895 ], "geometry": { "type": "Point", "coordinates": [ -0.2937133, 51.189895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93403410" }, "bbox": [ -0.6668765, 51.1531281, -0.6668765, 51.1531281 ], "geometry": { "type": "Point", "coordinates": [ -0.6668765, 51.1531281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93402205" }, "bbox": [ -0.6682281, 51.1523045, -0.6682281, 51.1523045 ], "geometry": { "type": "Point", "coordinates": [ -0.6682281, 51.1523045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93409311" }, "bbox": [ -0.6582172, 51.15256, -0.6582172, 51.15256 ], "geometry": { "type": "Point", "coordinates": [ -0.6582172, 51.15256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94400325" }, "bbox": [ -0.6568757, 51.1541064, -0.6568757, 51.1541064 ], "geometry": { "type": "Point", "coordinates": [ -0.6568757, 51.1541064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93392292" }, "bbox": [ -0.6684142, 51.1511977, -0.6684142, 51.1511977 ], "geometry": { "type": "Point", "coordinates": [ -0.6684142, 51.1511977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19441170" }, "bbox": [ -0.2968691, 51.1889197, -0.2968691, 51.1889197 ], "geometry": { "type": "Point", "coordinates": [ -0.2968691, 51.1889197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19440367" }, "bbox": [ -0.2978364, 51.1889961, -0.2978364, 51.1889961 ], "geometry": { "type": "Point", "coordinates": [ -0.2978364, 51.1889961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20424198" }, "bbox": [ -0.2787168, 51.1733597, -0.2787168, 51.1733597 ], "geometry": { "type": "Point", "coordinates": [ -0.2787168, 51.1733597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20432600" }, "bbox": [ -0.2810381, 51.1734897, -0.2810381, 51.1734897 ], "geometry": { "type": "Point", "coordinates": [ -0.2810381, 51.1734897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04373728" }, "bbox": [ -0.5098822, 51.1251758, -0.5098822, 51.1251758 ], "geometry": { "type": "Point", "coordinates": [ -0.5098822, 51.1251758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05368545" }, "bbox": [ -0.489313, 51.1176206, -0.489313, 51.1176206 ], "geometry": { "type": "Point", "coordinates": [ -0.489313, 51.1176206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34473025" }, "bbox": [ -0.0784221, 51.2088715, -0.0784221, 51.2088715 ], "geometry": { "type": "Point", "coordinates": [ -0.0784221, 51.2088715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17461489" }, "bbox": [ -0.3242504, 51.2092763, -0.3242504, 51.2092763 ], "geometry": { "type": "Point", "coordinates": [ -0.3242504, 51.2092763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11351384" }, "bbox": [ -0.4136502, 51.1110772, -0.4136502, 51.1110772 ], "geometry": { "type": "Point", "coordinates": [ -0.4136502, 51.1110772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455673" }, "bbox": [ -0.3044976, 51.1984363, -0.3044976, 51.1984363 ], "geometry": { "type": "Point", "coordinates": [ -0.3044976, 51.1984363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454360" }, "bbox": [ -0.3065165, 51.1974318, -0.3065165, 51.1974318 ], "geometry": { "type": "Point", "coordinates": [ -0.3065165, 51.1974318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18449249" }, "bbox": [ -0.2997671, 51.1873176, -0.2997671, 51.1873176 ], "geometry": { "type": "Point", "coordinates": [ -0.2997671, 51.1873176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20440943" }, "bbox": [ -0.2835596, 51.1863843, -0.2835596, 51.1863843 ], "geometry": { "type": "Point", "coordinates": [ -0.2835596, 51.1863843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19448663" }, "bbox": [ -0.2863848, 51.1886903, -0.2863848, 51.1886903 ], "geometry": { "type": "Point", "coordinates": [ -0.2863848, 51.1886903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19446467" }, "bbox": [ -0.2893151, 51.1885545, -0.2893151, 51.1885545 ], "geometry": { "type": "Point", "coordinates": [ -0.2893151, 51.1885545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19448753" }, "bbox": [ -0.2864443, 51.1872586, -0.2864443, 51.1872586 ], "geometry": { "type": "Point", "coordinates": [ -0.2864443, 51.1872586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19446942" }, "bbox": [ -0.2886408, 51.1864778, -0.2886408, 51.1864778 ], "geometry": { "type": "Point", "coordinates": [ -0.2886408, 51.1864778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19444863" }, "bbox": [ -0.2913471, 51.1883798, -0.2913471, 51.1883798 ], "geometry": { "type": "Point", "coordinates": [ -0.2913471, 51.1883798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10361298" }, "bbox": [ -0.4278986, 51.1213493, -0.4278986, 51.1213493 ], "geometry": { "type": "Point", "coordinates": [ -0.4278986, 51.1213493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09369997" }, "bbox": [ -0.4298357, 51.1214372, -0.4298357, 51.1214372 ], "geometry": { "type": "Point", "coordinates": [ -0.4298357, 51.1214372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42395492" }, "bbox": [ 0.0362027, 51.1408358, 0.0362027, 51.1408358 ], "geometry": { "type": "Point", "coordinates": [ 0.0362027, 51.1408358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42404419" }, "bbox": [ 0.034845, 51.1432418, 0.034845, 51.1432418 ], "geometry": { "type": "Point", "coordinates": [ 0.034845, 51.1432418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42404904" }, "bbox": [ 0.0357342, 51.1419405, 0.0357342, 51.1419405 ], "geometry": { "type": "Point", "coordinates": [ 0.0357342, 51.1419405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42405905" }, "bbox": [ 0.0370339, 51.1421237, 0.0370339, 51.1421237 ], "geometry": { "type": "Point", "coordinates": [ 0.0370339, 51.1421237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42408915" }, "bbox": [ 0.0411774, 51.1429433, 0.0411774, 51.1429433 ], "geometry": { "type": "Point", "coordinates": [ 0.0411774, 51.1429433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42408031" }, "bbox": [ 0.0402241, 51.1442384, 0.0402241, 51.1442384 ], "geometry": { "type": "Point", "coordinates": [ 0.0402241, 51.1442384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07593904" }, "bbox": [ -0.4601809, 51.3203091, -0.4601809, 51.3203091 ], "geometry": { "type": "Point", "coordinates": [ -0.4601809, 51.3203091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06608417" }, "bbox": [ -0.4678371, 51.3306174, -0.4678371, 51.3306174 ], "geometry": { "type": "Point", "coordinates": [ -0.4678371, 51.3306174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89488021" }, "bbox": [ -0.7146756, 51.2262926, -0.7146756, 51.2262926 ], "geometry": { "type": "Point", "coordinates": [ -0.7146756, 51.2262926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89489424" }, "bbox": [ -0.7130032, 51.2263219, -0.7130032, 51.2263219 ], "geometry": { "type": "Point", "coordinates": [ -0.7130032, 51.2263219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35511768" }, "bbox": [ -0.0645716, 51.2481886, -0.0645716, 51.2481886 ], "geometry": { "type": "Point", "coordinates": [ -0.0645716, 51.2481886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03371931" }, "bbox": [ -0.5287713, 51.1253506, -0.5287713, 51.1253506 ], "geometry": { "type": "Point", "coordinates": [ -0.5287713, 51.1253506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22484245" }, "bbox": [ -0.2479105, 51.2234275, -0.2479105, 51.2234275 ], "geometry": { "type": "Point", "coordinates": [ -0.2479105, 51.2234275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22487536" }, "bbox": [ -0.2432472, 51.2211808, -0.2432472, 51.2211808 ], "geometry": { "type": "Point", "coordinates": [ -0.2432472, 51.2211808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23483106" }, "bbox": [ -0.2357812, 51.2181909, -0.2357812, 51.2181909 ], "geometry": { "type": "Point", "coordinates": [ -0.2357812, 51.2181909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23482746" }, "bbox": [ -0.2364935, 51.2222623, -0.2364935, 51.2222623 ], "geometry": { "type": "Point", "coordinates": [ -0.2364935, 51.2222623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23482133" }, "bbox": [ -0.2371293, 51.2209925, -0.2371293, 51.2209925 ], "geometry": { "type": "Point", "coordinates": [ -0.2371293, 51.2209925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88424154" }, "bbox": [ -0.7327696, 51.174595, -0.7327696, 51.174595 ], "geometry": { "type": "Point", "coordinates": [ -0.7327696, 51.174595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20459494" }, "bbox": [ -0.2701498, 51.1998855, -0.2701498, 51.1998855 ], "geometry": { "type": "Point", "coordinates": [ -0.2701498, 51.1998855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20469326" }, "bbox": [ -0.2704255, 51.2028344, -0.2704255, 51.2028344 ], "geometry": { "type": "Point", "coordinates": [ -0.2704255, 51.2028344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20455296" }, "bbox": [ -0.2763774, 51.2003697, -0.2763774, 51.2003697 ], "geometry": { "type": "Point", "coordinates": [ -0.2763774, 51.2003697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20450533" }, "bbox": [ -0.2831495, 51.1947117, -0.2831495, 51.1947117 ], "geometry": { "type": "Point", "coordinates": [ -0.2831495, 51.1947117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20451703" }, "bbox": [ -0.2820824, 51.191725, -0.2820824, 51.191725 ], "geometry": { "type": "Point", "coordinates": [ -0.2820824, 51.191725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19457646" }, "bbox": [ -0.2876196, 51.1956735, -0.2876196, 51.1956735 ], "geometry": { "type": "Point", "coordinates": [ -0.2876196, 51.1956735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19459105" }, "bbox": [ -0.2854115, 51.1919956, -0.2854115, 51.1919956 ], "geometry": { "type": "Point", "coordinates": [ -0.2854115, 51.1919956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82407885" }, "bbox": [ -0.817413, 51.1609649, -0.817413, 51.1609649 ], "geometry": { "type": "Point", "coordinates": [ -0.817413, 51.1609649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81453055" }, "bbox": [ -0.8376547, 51.2034052, -0.8376547, 51.2034052 ], "geometry": { "type": "Point", "coordinates": [ -0.8376547, 51.2034052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20464303" }, "bbox": [ -0.2776039, 51.2008441, -0.2776039, 51.2008441 ], "geometry": { "type": "Point", "coordinates": [ -0.2776039, 51.2008441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35543001" }, "bbox": [ -0.0615771, 51.268995, -0.0615771, 51.268995 ], "geometry": { "type": "Point", "coordinates": [ -0.0615771, 51.268995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20464535" }, "bbox": [ -0.2772569, 51.2036635, -0.2772569, 51.2036635 ], "geometry": { "type": "Point", "coordinates": [ -0.2772569, 51.2036635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20469256" }, "bbox": [ -0.2703818, 51.2055066, -0.2703818, 51.2055066 ], "geometry": { "type": "Point", "coordinates": [ -0.2703818, 51.2055066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19455145" }, "bbox": [ -0.2908096, 51.1957133, -0.2908096, 51.1957133 ], "geometry": { "type": "Point", "coordinates": [ -0.2908096, 51.1957133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19456925" }, "bbox": [ -0.2887039, 51.193888, -0.2887039, 51.193888 ], "geometry": { "type": "Point", "coordinates": [ -0.2887039, 51.193888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458396" }, "bbox": [ -0.2719018, 51.2001303, -0.2719018, 51.2001303 ], "geometry": { "type": "Point", "coordinates": [ -0.2719018, 51.2001303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20456965" }, "bbox": [ -0.2739393, 51.1968435, -0.2739393, 51.1968435 ], "geometry": { "type": "Point", "coordinates": [ -0.2739393, 51.1968435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20457435" }, "bbox": [ -0.273541, 51.1943662, -0.273541, 51.1943662 ], "geometry": { "type": "Point", "coordinates": [ -0.273541, 51.1943662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458326" }, "bbox": [ -0.2729809, 51.1935119, -0.2729809, 51.1935119 ], "geometry": { "type": "Point", "coordinates": [ -0.2729809, 51.1935119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19456468" }, "bbox": [ -0.2891721, 51.1978129, -0.2891721, 51.1978129 ], "geometry": { "type": "Point", "coordinates": [ -0.2891721, 51.1978129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20454908" }, "bbox": [ -0.2775178, 51.1923912, -0.2775178, 51.1923912 ], "geometry": { "type": "Point", "coordinates": [ -0.2775178, 51.1923912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20459151" }, "bbox": [ -0.2708861, 51.1960038, -0.2708861, 51.1960038 ], "geometry": { "type": "Point", "coordinates": [ -0.2708861, 51.1960038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19453465" }, "bbox": [ -0.2933784, 51.1976732, -0.2933784, 51.1976732 ], "geometry": { "type": "Point", "coordinates": [ -0.2933784, 51.1976732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21462123" }, "bbox": [ -0.266774, 51.2035496, -0.266774, 51.2035496 ], "geometry": { "type": "Point", "coordinates": [ -0.266774, 51.2035496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21464328" }, "bbox": [ -0.2628291, 51.2027068, -0.2628291, 51.2027068 ], "geometry": { "type": "Point", "coordinates": [ -0.2628291, 51.2027068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21462158" }, "bbox": [ -0.2661294, 51.2057051, -0.2661294, 51.2057051 ], "geometry": { "type": "Point", "coordinates": [ -0.2661294, 51.2057051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20453264" }, "bbox": [ -0.2794007, 51.197269, -0.2794007, 51.197269 ], "geometry": { "type": "Point", "coordinates": [ -0.2794007, 51.197269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04475209" }, "bbox": [ -0.5049253, 51.2137203, -0.5049253, 51.2137203 ], "geometry": { "type": "Point", "coordinates": [ -0.5049253, 51.2137203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19472814" }, "bbox": [ -0.2934, 51.2111269, -0.2934, 51.2111269 ], "geometry": { "type": "Point", "coordinates": [ -0.2934, 51.2111269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20456238" }, "bbox": [ -0.2750888, 51.1949886, -0.2750888, 51.1949886 ], "geometry": { "type": "Point", "coordinates": [ -0.2750888, 51.1949886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20454124" }, "bbox": [ -0.2783028, 51.1936502, -0.2783028, 51.1936502 ], "geometry": { "type": "Point", "coordinates": [ -0.2783028, 51.1936502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00614533" }, "bbox": [ -0.5594124, 51.3427782, -0.5594124, 51.3427782 ], "geometry": { "type": "Point", "coordinates": [ -0.5594124, 51.3427782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00615345" }, "bbox": [ -0.5579352, 51.3431217, -0.5579352, 51.3431217 ], "geometry": { "type": "Point", "coordinates": [ -0.5579352, 51.3431217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00613735" }, "bbox": [ -0.5604308, 51.3424386, -0.5604308, 51.3424386 ], "geometry": { "type": "Point", "coordinates": [ -0.5604308, 51.3424386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00615621" }, "bbox": [ -0.557525, 51.3410626, -0.557525, 51.3410626 ], "geometry": { "type": "Point", "coordinates": [ -0.557525, 51.3410626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00613722" }, "bbox": [ -0.5604442, 51.3412, -0.5604442, 51.3412 ], "geometry": { "type": "Point", "coordinates": [ -0.5604442, 51.3412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00617523" }, "bbox": [ -0.5550131, 51.341189, -0.5550131, 51.341189 ], "geometry": { "type": "Point", "coordinates": [ -0.5550131, 51.341189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99608998" }, "bbox": [ -0.567654, 51.3389783, -0.567654, 51.3389783 ], "geometry": { "type": "Point", "coordinates": [ -0.567654, 51.3389783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00613572" }, "bbox": [ -0.5605091, 51.3457309, -0.5605091, 51.3457309 ], "geometry": { "type": "Point", "coordinates": [ -0.5605091, 51.3457309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00614567" }, "bbox": [ -0.5591214, 51.3452369, -0.5591214, 51.3452369 ], "geometry": { "type": "Point", "coordinates": [ -0.5591214, 51.3452369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06518277" }, "bbox": [ -0.4707372, 51.2551618, -0.4707372, 51.2551618 ], "geometry": { "type": "Point", "coordinates": [ -0.4707372, 51.2551618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07521644" }, "bbox": [ -0.4658806, 51.2608441, -0.4658806, 51.2608441 ], "geometry": { "type": "Point", "coordinates": [ -0.4658806, 51.2608441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07520150" }, "bbox": [ -0.467508, 51.2616475, -0.467508, 51.2616475 ], "geometry": { "type": "Point", "coordinates": [ -0.467508, 51.2616475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07523653" }, "bbox": [ -0.4626387, 51.2617141, -0.4626387, 51.2617141 ], "geometry": { "type": "Point", "coordinates": [ -0.4626387, 51.2617141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510289" }, "bbox": [ -0.4669958, 51.2561689, -0.4669958, 51.2561689 ], "geometry": { "type": "Point", "coordinates": [ -0.4669958, 51.2561689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510771" }, "bbox": [ -0.4676145, 51.2541897, -0.4676145, 51.2541897 ], "geometry": { "type": "Point", "coordinates": [ -0.4676145, 51.2541897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97512757" }, "bbox": [ -0.6096863, 51.2548796, -0.6096863, 51.2548796 ], "geometry": { "type": "Point", "coordinates": [ -0.6096863, 51.2548796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91323864" }, "bbox": [ -0.6966506, 51.0859591, -0.6966506, 51.0859591 ], "geometry": { "type": "Point", "coordinates": [ -0.6966506, 51.0859591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10470573" }, "bbox": [ -0.4245643, 51.218452, -0.4245643, 51.218452 ], "geometry": { "type": "Point", "coordinates": [ -0.4245643, 51.218452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10476033" }, "bbox": [ -0.4188254, 51.2144684, -0.4188254, 51.2144684 ], "geometry": { "type": "Point", "coordinates": [ -0.4188254, 51.2144684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10474721" }, "bbox": [ -0.4197979, 51.2134325, -0.4197979, 51.2134325 ], "geometry": { "type": "Point", "coordinates": [ -0.4197979, 51.2134325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10489404" }, "bbox": [ -0.4138495, 51.2206697, -0.4138495, 51.2206697 ], "geometry": { "type": "Point", "coordinates": [ -0.4138495, 51.2206697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11480910" }, "bbox": [ -0.410728, 51.2212634, -0.410728, 51.2212634 ], "geometry": { "type": "Point", "coordinates": [ -0.410728, 51.2212634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11481411" }, "bbox": [ -0.4098915, 51.221483, -0.4098915, 51.221483 ], "geometry": { "type": "Point", "coordinates": [ -0.4098915, 51.221483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09479789" }, "bbox": [ -0.4270582, 51.2196582, -0.4270582, 51.2196582 ], "geometry": { "type": "Point", "coordinates": [ -0.4270582, 51.2196582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15363195" }, "bbox": [ -0.3536711, 51.1199913, -0.3536711, 51.1199913 ], "geometry": { "type": "Point", "coordinates": [ -0.3536711, 51.1199913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18472645" }, "bbox": [ -0.3080237, 51.2141767, -0.3080237, 51.2141767 ], "geometry": { "type": "Point", "coordinates": [ -0.3080237, 51.2141767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18470356" }, "bbox": [ -0.311197, 51.2150282, -0.311197, 51.2150282 ], "geometry": { "type": "Point", "coordinates": [ -0.311197, 51.2150282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86415359" }, "bbox": [ -0.763802, 51.166972, -0.763802, 51.166972 ], "geometry": { "type": "Point", "coordinates": [ -0.763802, 51.166972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86419281" }, "bbox": [ -0.7580751, 51.1689658, -0.7580751, 51.1689658 ], "geometry": { "type": "Point", "coordinates": [ -0.7580751, 51.1689658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39434891" }, "bbox": [ -0.0059073, 51.1773056, -0.0059073, 51.1773056 ], "geometry": { "type": "Point", "coordinates": [ -0.0059073, 51.1773056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39436692" }, "bbox": [ -0.0036878, 51.1772012, -0.0036878, 51.1772012 ], "geometry": { "type": "Point", "coordinates": [ -0.0036878, 51.1772012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40444519" }, "bbox": [ 0.0080415, 51.1797903, 0.0080415, 51.1797903 ], "geometry": { "type": "Point", "coordinates": [ 0.0080415, 51.1797903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40440346" }, "bbox": [ 0.0021248, 51.1823172, 0.0021248, 51.1823172 ], "geometry": { "type": "Point", "coordinates": [ 0.0021248, 51.1823172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18468399" }, "bbox": [ -0.3004433, 51.2099713, -0.3004433, 51.2099713 ], "geometry": { "type": "Point", "coordinates": [ -0.3004433, 51.2099713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18477734" }, "bbox": [ -0.3009614, 51.2129268, -0.3009614, 51.2129268 ], "geometry": { "type": "Point", "coordinates": [ -0.3009614, 51.2129268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38594922" }, "bbox": [ -0.0140954, 51.3153781, -0.0140954, 51.3153781 ], "geometry": { "type": "Point", "coordinates": [ -0.0140954, 51.3153781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38597309" }, "bbox": [ -0.0108033, 51.3140424, -0.0108033, 51.3140424 ], "geometry": { "type": "Point", "coordinates": [ -0.0108033, 51.3140424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39461151" }, "bbox": [ -0.0103283, 51.2008967, -0.0103283, 51.2008967 ], "geometry": { "type": "Point", "coordinates": [ -0.0103283, 51.2008967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39461564" }, "bbox": [ -0.0096185, 51.2020596, -0.0096185, 51.2020596 ], "geometry": { "type": "Point", "coordinates": [ -0.0096185, 51.2020596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18475362" }, "bbox": [ -0.3043186, 51.2156128, -0.3043186, 51.2156128 ], "geometry": { "type": "Point", "coordinates": [ -0.3043186, 51.2156128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90462440" }, "bbox": [ -0.7095801, 51.2096773, -0.7095801, 51.2096773 ], "geometry": { "type": "Point", "coordinates": [ -0.7095801, 51.2096773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610879" }, "bbox": [ -0.5642197, 51.3463223, -0.5642197, 51.3463223 ], "geometry": { "type": "Point", "coordinates": [ -0.5642197, 51.3463223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00612561" }, "bbox": [ -0.5619131, 51.3447017, -0.5619131, 51.3447017 ], "geometry": { "type": "Point", "coordinates": [ -0.5619131, 51.3447017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00613448" }, "bbox": [ -0.5606867, 51.343524, -0.5606867, 51.343524 ], "geometry": { "type": "Point", "coordinates": [ -0.5606867, 51.343524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479876" }, "bbox": [ -0.3122514, 51.2169334, -0.3122514, 51.2169334 ], "geometry": { "type": "Point", "coordinates": [ -0.3122514, 51.2169334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18470540" }, "bbox": [ -0.3112477, 51.2136402, -0.3112477, 51.2136402 ], "geometry": { "type": "Point", "coordinates": [ -0.3112477, 51.2136402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476773" }, "bbox": [ -0.3022967, 51.2164048, -0.3022967, 51.2164048 ], "geometry": { "type": "Point", "coordinates": [ -0.3022967, 51.2164048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18477263" }, "bbox": [ -0.3016916, 51.2153479, -0.3016916, 51.2153479 ], "geometry": { "type": "Point", "coordinates": [ -0.3016916, 51.2153479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476492" }, "bbox": [ -0.3026491, 51.2181042, -0.3026491, 51.2181042 ], "geometry": { "type": "Point", "coordinates": [ -0.3026491, 51.2181042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476519" }, "bbox": [ -0.3028474, 51.2116488, -0.3028474, 51.2116488 ], "geometry": { "type": "Point", "coordinates": [ -0.3028474, 51.2116488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18477032" }, "bbox": [ -0.3020411, 51.2126351, -0.3020411, 51.2126351 ], "geometry": { "type": "Point", "coordinates": [ -0.3020411, 51.2126351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476460" }, "bbox": [ -0.302789, 51.2153847, -0.302789, 51.2153847 ], "geometry": { "type": "Point", "coordinates": [ -0.302789, 51.2153847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19505535" }, "bbox": [ -0.2888218, 51.2397657, -0.2888218, 51.2397657 ], "geometry": { "type": "Point", "coordinates": [ -0.2888218, 51.2397657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19508429" }, "bbox": [ -0.2858451, 51.2392957, -0.2858451, 51.2392957 ], "geometry": { "type": "Point", "coordinates": [ -0.2858451, 51.2392957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18472102" }, "bbox": [ -0.3092261, 51.2101711, -0.3092261, 51.2101711 ], "geometry": { "type": "Point", "coordinates": [ -0.3092261, 51.2101711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18470424" }, "bbox": [ -0.3116386, 51.2121505, -0.3116386, 51.2121505 ], "geometry": { "type": "Point", "coordinates": [ -0.3116386, 51.2121505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18471020" }, "bbox": [ -0.3104966, 51.211897, -0.3104966, 51.211897 ], "geometry": { "type": "Point", "coordinates": [ -0.3104966, 51.211897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476837" }, "bbox": [ -0.302491, 51.2131677, -0.302491, 51.2131677 ], "geometry": { "type": "Point", "coordinates": [ -0.302491, 51.2131677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18471283" }, "bbox": [ -0.3100433, 51.2174278, -0.3100433, 51.2174278 ], "geometry": { "type": "Point", "coordinates": [ -0.3100433, 51.2174278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18471786" }, "bbox": [ -0.3094085, 51.2179615, -0.3094085, 51.2179615 ], "geometry": { "type": "Point", "coordinates": [ -0.3094085, 51.2179615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18473769" }, "bbox": [ -0.3063974, 51.2162894, -0.3063974, 51.2162894 ], "geometry": { "type": "Point", "coordinates": [ -0.3063974, 51.2162894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03379656" }, "bbox": [ -0.51545, 51.1278221, -0.51545, 51.1278221 ], "geometry": { "type": "Point", "coordinates": [ -0.51545, 51.1278221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97476245" }, "bbox": [ -0.6030494, 51.2178368, -0.6030494, 51.2178368 ], "geometry": { "type": "Point", "coordinates": [ -0.6030494, 51.2178368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97477232" }, "bbox": [ -0.6022154, 51.2167872, -0.6022154, 51.2167872 ], "geometry": { "type": "Point", "coordinates": [ -0.6022154, 51.2167872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21417889" }, "bbox": [ -0.2593691, 51.1633953, -0.2593691, 51.1633953 ], "geometry": { "type": "Point", "coordinates": [ -0.2593691, 51.1633953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99390062" }, "bbox": [ -0.5881518, 51.1474243, -0.5881518, 51.1474243 ], "geometry": { "type": "Point", "coordinates": [ -0.5881518, 51.1474243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12567396" }, "bbox": [ -0.3842051, 51.3007373, -0.3842051, 51.3007373 ], "geometry": { "type": "Point", "coordinates": [ -0.3842051, 51.3007373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395211" }, "bbox": [ -0.5931194, 51.1429093, -0.5931194, 51.1429093 ], "geometry": { "type": "Point", "coordinates": [ -0.5931194, 51.1429093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98394212" }, "bbox": [ -0.5939181, 51.1428081, -0.5939181, 51.1428081 ], "geometry": { "type": "Point", "coordinates": [ -0.5939181, 51.1428081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98394406" }, "bbox": [ -0.5936647, 51.1423249, -0.5936647, 51.1423249 ], "geometry": { "type": "Point", "coordinates": [ -0.5936647, 51.1423249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395650" }, "bbox": [ -0.5922191, 51.1464001, -0.5922191, 51.1464001 ], "geometry": { "type": "Point", "coordinates": [ -0.5922191, 51.1464001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395120" }, "bbox": [ -0.5928695, 51.1438525, -0.5928695, 51.1438525 ], "geometry": { "type": "Point", "coordinates": [ -0.5928695, 51.1438525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98384783" }, "bbox": [ -0.5937566, 51.1406756, -0.5937566, 51.1406756 ], "geometry": { "type": "Point", "coordinates": [ -0.5937566, 51.1406756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00396138" }, "bbox": [ -0.5630009, 51.1448811, -0.5630009, 51.1448811 ], "geometry": { "type": "Point", "coordinates": [ -0.5630009, 51.1448811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18463095" }, "bbox": [ -0.3081236, 51.209513, -0.3081236, 51.209513 ], "geometry": { "type": "Point", "coordinates": [ -0.3081236, 51.209513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16555471" }, "bbox": [ -0.3300222, 51.2886941, -0.3300222, 51.2886941 ], "geometry": { "type": "Point", "coordinates": [ -0.3300222, 51.2886941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16555755" }, "bbox": [ -0.329642, 51.2869073, -0.329642, 51.2869073 ], "geometry": { "type": "Point", "coordinates": [ -0.329642, 51.2869073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12529116" }, "bbox": [ -0.3832051, 51.2575007, -0.3832051, 51.2575007 ], "geometry": { "type": "Point", "coordinates": [ -0.3832051, 51.2575007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13512171" }, "bbox": [ -0.3789156, 51.253567, -0.3789156, 51.253567 ], "geometry": { "type": "Point", "coordinates": [ -0.3789156, 51.253567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13517988" }, "bbox": [ -0.3707126, 51.2547257, -0.3707126, 51.2547257 ], "geometry": { "type": "Point", "coordinates": [ -0.3707126, 51.2547257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13516588" }, "bbox": [ -0.3727462, 51.2548211, -0.3727462, 51.2548211 ], "geometry": { "type": "Point", "coordinates": [ -0.3727462, 51.2548211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13510770" }, "bbox": [ -0.3811219, 51.2534151, -0.3811219, 51.2534151 ], "geometry": { "type": "Point", "coordinates": [ -0.3811219, 51.2534151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511274" }, "bbox": [ -0.3799924, 51.2536368, -0.3799924, 51.2536368 ], "geometry": { "type": "Point", "coordinates": [ -0.3799924, 51.2536368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13515167" }, "bbox": [ -0.3751586, 51.2528326, -0.3751586, 51.2528326 ], "geometry": { "type": "Point", "coordinates": [ -0.3751586, 51.2528326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13528147" }, "bbox": [ -0.370265, 51.260044, -0.370265, 51.260044 ], "geometry": { "type": "Point", "coordinates": [ -0.370265, 51.260044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13529579" }, "bbox": [ -0.3682422, 51.2628513, -0.3682422, 51.2628513 ], "geometry": { "type": "Point", "coordinates": [ -0.3682422, 51.2628513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13529165" }, "bbox": [ -0.3688295, 51.2616771, -0.3688295, 51.2616771 ], "geometry": { "type": "Point", "coordinates": [ -0.3688295, 51.2616771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84439841" }, "bbox": [ -0.7852606, 51.1836691, -0.7852606, 51.1836691 ], "geometry": { "type": "Point", "coordinates": [ -0.7852606, 51.1836691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84438839" }, "bbox": [ -0.7869338, 51.1835749, -0.7869338, 51.1835749 ], "geometry": { "type": "Point", "coordinates": [ -0.7869338, 51.1835749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35424266" }, "bbox": [ -0.0644947, 51.167153, -0.0644947, 51.167153 ], "geometry": { "type": "Point", "coordinates": [ -0.0644947, 51.167153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06523604" }, "bbox": [ -0.477448, 51.2575419, -0.477448, 51.2575419 ], "geometry": { "type": "Point", "coordinates": [ -0.477448, 51.2575419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06527852" }, "bbox": [ -0.4710216, 51.261756, -0.4710216, 51.261756 ], "geometry": { "type": "Point", "coordinates": [ -0.4710216, 51.261756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20422703" }, "bbox": [ -0.2814267, 51.1646483, -0.2814267, 51.1646483 ], "geometry": { "type": "Point", "coordinates": [ -0.2814267, 51.1646483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20413993" }, "bbox": [ -0.2809412, 51.1637262, -0.2809412, 51.1637262 ], "geometry": { "type": "Point", "coordinates": [ -0.2809412, 51.1637262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18432798" }, "bbox": [ -0.309435, 51.1826837, -0.309435, 51.1826837 ], "geometry": { "type": "Point", "coordinates": [ -0.309435, 51.1826837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448831" }, "bbox": [ -0.3291029, 51.1861897, -0.3291029, 51.1861897 ], "geometry": { "type": "Point", "coordinates": [ -0.3291029, 51.1861897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16447430" }, "bbox": [ -0.3298101, 51.1860206, -0.3298101, 51.1860206 ], "geometry": { "type": "Point", "coordinates": [ -0.3298101, 51.1860206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14374189" }, "bbox": [ -0.3662519, 51.1287817, -0.3662519, 51.1287817 ], "geometry": { "type": "Point", "coordinates": [ -0.3662519, 51.1287817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17438874" }, "bbox": [ -0.3148108, 51.1806496, -0.3148108, 51.1806496 ], "geometry": { "type": "Point", "coordinates": [ -0.3148108, 51.1806496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17439882" }, "bbox": [ -0.3136072, 51.1819008, -0.3136072, 51.1819008 ], "geometry": { "type": "Point", "coordinates": [ -0.3136072, 51.1819008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18430788" }, "bbox": [ -0.3120684, 51.1819783, -0.3120684, 51.1819783 ], "geometry": { "type": "Point", "coordinates": [ -0.3120684, 51.1819783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03345526" }, "bbox": [ -0.5223399, 51.0984456, -0.5223399, 51.0984456 ], "geometry": { "type": "Point", "coordinates": [ -0.5223399, 51.0984456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96346432" }, "bbox": [ -0.6211232, 51.0999919, -0.6211232, 51.0999919 ], "geometry": { "type": "Point", "coordinates": [ -0.6211232, 51.0999919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96345436" }, "bbox": [ -0.6225593, 51.1004942, -0.6225593, 51.1004942 ], "geometry": { "type": "Point", "coordinates": [ -0.6225593, 51.1004942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96348308" }, "bbox": [ -0.6181648, 51.0980875, -0.6181648, 51.0980875 ], "geometry": { "type": "Point", "coordinates": [ -0.6181648, 51.0980875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96347245" }, "bbox": [ -0.6188706, 51.1012589, -0.6188706, 51.1012589 ], "geometry": { "type": "Point", "coordinates": [ -0.6188706, 51.1012589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96344730" }, "bbox": [ -0.6235063, 51.0998674, -0.6235063, 51.0998674 ], "geometry": { "type": "Point", "coordinates": [ -0.6235063, 51.0998674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96344812" }, "bbox": [ -0.6236184, 51.0984839, -0.6236184, 51.0984839 ], "geometry": { "type": "Point", "coordinates": [ -0.6236184, 51.0984839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96334997" }, "bbox": [ -0.6235402, 51.0969013, -0.6235402, 51.0969013 ], "geometry": { "type": "Point", "coordinates": [ -0.6235402, 51.0969013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97340136" }, "bbox": [ -0.6158744, 51.1003332, -0.6158744, 51.1003332 ], "geometry": { "type": "Point", "coordinates": [ -0.6158744, 51.1003332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10490314" }, "bbox": [ -0.4267366, 51.2289931, -0.4267366, 51.2289931 ], "geometry": { "type": "Point", "coordinates": [ -0.4267366, 51.2289931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09488065" }, "bbox": [ -0.4285607, 51.2264611, -0.4285607, 51.2264611 ], "geometry": { "type": "Point", "coordinates": [ -0.4285607, 51.2264611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14370887" }, "bbox": [ -0.3710095, 51.1284799, -0.3710095, 51.1284799 ], "geometry": { "type": "Point", "coordinates": [ -0.3710095, 51.1284799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14372288" }, "bbox": [ -0.3689436, 51.1289146, -0.3689436, 51.1289146 ], "geometry": { "type": "Point", "coordinates": [ -0.3689436, 51.1289146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14382119" }, "bbox": [ -0.369227, 51.1310925, -0.369227, 51.1310925 ], "geometry": { "type": "Point", "coordinates": [ -0.369227, 51.1310925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36604263" }, "bbox": [ -0.0432258, 51.328576, -0.0432258, 51.328576 ], "geometry": { "type": "Point", "coordinates": [ -0.0432258, 51.328576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36605862" }, "bbox": [ -0.041049, 51.3282794, -0.041049, 51.3282794 ], "geometry": { "type": "Point", "coordinates": [ -0.041049, 51.3282794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36592555" }, "bbox": [ -0.046021, 51.3187312, -0.046021, 51.3187312 ], "geometry": { "type": "Point", "coordinates": [ -0.046021, 51.3187312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17389665" }, "bbox": [ -0.3154686, 51.1349783, -0.3154686, 51.1349783 ], "geometry": { "type": "Point", "coordinates": [ -0.3154686, 51.1349783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20413070" }, "bbox": [ -0.2812903, 51.161919, -0.2812903, 51.161919 ], "geometry": { "type": "Point", "coordinates": [ -0.2812903, 51.161919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16455925" }, "bbox": [ -0.3328708, 51.1945339, -0.3328708, 51.1945339 ], "geometry": { "type": "Point", "coordinates": [ -0.3328708, 51.1945339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17439894" }, "bbox": [ -0.3132004, 51.1826948, -0.3132004, 51.1826948 ], "geometry": { "type": "Point", "coordinates": [ -0.3132004, 51.1826948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18394752" }, "bbox": [ -0.3078596, 51.1426811, -0.3078596, 51.1426811 ], "geometry": { "type": "Point", "coordinates": [ -0.3078596, 51.1426811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02382306" }, "bbox": [ -0.5397559, 51.1328231, -0.5397559, 51.1328231 ], "geometry": { "type": "Point", "coordinates": [ -0.5397559, 51.1328231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04355485" }, "bbox": [ -0.5079003, 51.1125525, -0.5079003, 51.1125525 ], "geometry": { "type": "Point", "coordinates": [ -0.5079003, 51.1125525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94393955" }, "bbox": [ -0.6522169, 51.1475345, -0.6522169, 51.1475345 ], "geometry": { "type": "Point", "coordinates": [ -0.6522169, 51.1475345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94394748" }, "bbox": [ -0.6505618, 51.1470011, -0.6505618, 51.1470011 ], "geometry": { "type": "Point", "coordinates": [ -0.6505618, 51.1470011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04366102" }, "bbox": [ -0.5069079, 51.1140251, -0.5069079, 51.1140251 ], "geometry": { "type": "Point", "coordinates": [ -0.5069079, 51.1140251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385313" }, "bbox": [ -0.5501893, 51.1335302, -0.5501893, 51.1335302 ], "geometry": { "type": "Point", "coordinates": [ -0.5501893, 51.1335302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385510" }, "bbox": [ -0.5500141, 51.1332837, -0.5500141, 51.1332837 ], "geometry": { "type": "Point", "coordinates": [ -0.5500141, 51.1332837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385714" }, "bbox": [ -0.54961, 51.133643, -0.54961, 51.133643 ], "geometry": { "type": "Point", "coordinates": [ -0.54961, 51.133643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385216" }, "bbox": [ -0.5503866, 51.1338159, -0.5503866, 51.1338159 ], "geometry": { "type": "Point", "coordinates": [ -0.5503866, 51.1338159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385618" }, "bbox": [ -0.5498112, 51.1339302, -0.5498112, 51.1339302 ], "geometry": { "type": "Point", "coordinates": [ -0.5498112, 51.1339302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385520" }, "bbox": [ -0.5499857, 51.1341846, -0.5499857, 51.1341846 ], "geometry": { "type": "Point", "coordinates": [ -0.5499857, 51.1341846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385119" }, "bbox": [ -0.5505665, 51.1340692, -0.5505665, 51.1340692 ], "geometry": { "type": "Point", "coordinates": [ -0.5505665, 51.1340692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01384226" }, "bbox": [ -0.5516782, 51.1347854, -0.5516782, 51.1347854 ], "geometry": { "type": "Point", "coordinates": [ -0.5516782, 51.1347854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01383528" }, "bbox": [ -0.5528055, 51.1348444, -0.5528055, 51.1348444 ], "geometry": { "type": "Point", "coordinates": [ -0.5528055, 51.1348444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385901" }, "bbox": [ -0.5493481, 51.1323316, -0.5493481, 51.1323316 ], "geometry": { "type": "Point", "coordinates": [ -0.5493481, 51.1323316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01386301" }, "bbox": [ -0.5487828, 51.1324443, -0.5487828, 51.1324443 ], "geometry": { "type": "Point", "coordinates": [ -0.5487828, 51.1324443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385706" }, "bbox": [ -0.5497418, 51.1328959, -0.5497418, 51.1328959 ], "geometry": { "type": "Point", "coordinates": [ -0.5497418, 51.1328959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01386107" }, "bbox": [ -0.5492524, 51.1331274, -0.5492524, 51.1331274 ], "geometry": { "type": "Point", "coordinates": [ -0.5492524, 51.1331274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01384131" }, "bbox": [ -0.5519279, 51.1351915, -0.5519279, 51.1351915 ], "geometry": { "type": "Point", "coordinates": [ -0.5519279, 51.1351915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01383723" }, "bbox": [ -0.5524907, 51.1344434, -0.5524907, 51.1344434 ], "geometry": { "type": "Point", "coordinates": [ -0.5524907, 51.1344434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17466098" }, "bbox": [ -0.3180422, 51.2099196, -0.3180422, 51.2099196 ], "geometry": { "type": "Point", "coordinates": [ -0.3180422, 51.2099196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17468498" }, "bbox": [ -0.3142562, 51.2099949, -0.3142562, 51.2099949 ], "geometry": { "type": "Point", "coordinates": [ -0.3142562, 51.2099949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26537538" }, "bbox": [ -0.1843552, 51.2654656, -0.1843552, 51.2654656 ], "geometry": { "type": "Point", "coordinates": [ -0.1843552, 51.2654656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39533642" }, "bbox": [ -0.0034432, 51.2630352, -0.0034432, 51.2630352 ], "geometry": { "type": "Point", "coordinates": [ -0.0034432, 51.2630352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99487385" }, "bbox": [ -0.5729963, 51.230147, -0.5729963, 51.230147 ], "geometry": { "type": "Point", "coordinates": [ -0.5729963, 51.230147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99486257" }, "bbox": [ -0.574407, 51.2281205, -0.574407, 51.2281205 ], "geometry": { "type": "Point", "coordinates": [ -0.574407, 51.2281205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12369064" }, "bbox": [ -0.3883581, 51.1179447, -0.3883581, 51.1179447 ], "geometry": { "type": "Point", "coordinates": [ -0.3883581, 51.1179447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12368461" }, "bbox": [ -0.3891804, 51.1176555, -0.3891804, 51.1176555 ], "geometry": { "type": "Point", "coordinates": [ -0.3891804, 51.1176555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12368660" }, "bbox": [ -0.388939, 51.1175882, -0.388939, 51.1175882 ], "geometry": { "type": "Point", "coordinates": [ -0.388939, 51.1175882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04493971" }, "bbox": [ -0.5060733, 51.2370388, -0.5060733, 51.2370388 ], "geometry": { "type": "Point", "coordinates": [ -0.5060733, 51.2370388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00661305" }, "bbox": [ -0.5624331, 51.3846643, -0.5624331, 51.3846643 ], "geometry": { "type": "Point", "coordinates": [ -0.5624331, 51.3846643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04494579" }, "bbox": [ -0.5050687, 51.2380209, -0.5050687, 51.2380209 ], "geometry": { "type": "Point", "coordinates": [ -0.5050687, 51.2380209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04505003" }, "bbox": [ -0.5042348, 51.2403544, -0.5042348, 51.2403544 ], "geometry": { "type": "Point", "coordinates": [ -0.5042348, 51.2403544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02539086" }, "bbox": [ -0.5260835, 51.2746977, -0.5260835, 51.2746977 ], "geometry": { "type": "Point", "coordinates": [ -0.5260835, 51.2746977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04501004" }, "bbox": [ -0.5108698, 51.2400983, -0.5108698, 51.2400983 ], "geometry": { "type": "Point", "coordinates": [ -0.5108698, 51.2400983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35489451" }, "bbox": [ -0.0551695, 51.2196612, -0.0551695, 51.2196612 ], "geometry": { "type": "Point", "coordinates": [ -0.0551695, 51.2196612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97459397" }, "bbox": [ -0.5996713, 51.2046642, -0.5996713, 51.2046642 ], "geometry": { "type": "Point", "coordinates": [ -0.5996713, 51.2046642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97469202" }, "bbox": [ -0.5996188, 51.2051551, -0.5996188, 51.2051551 ], "geometry": { "type": "Point", "coordinates": [ -0.5996188, 51.2051551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98452494" }, "bbox": [ -0.594889, 51.2041912, -0.594889, 51.2041912 ], "geometry": { "type": "Point", "coordinates": [ -0.594889, 51.2041912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93321516" }, "bbox": [ -0.6717076, 51.0814508, -0.6717076, 51.0814508 ], "geometry": { "type": "Point", "coordinates": [ -0.6717076, 51.0814508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92314368" }, "bbox": [ -0.6820692, 51.0771022, -0.6820692, 51.0771022 ], "geometry": { "type": "Point", "coordinates": [ -0.6820692, 51.0771022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92315184" }, "bbox": [ -0.6805459, 51.0783463, -0.6805459, 51.0783463 ], "geometry": { "type": "Point", "coordinates": [ -0.6805459, 51.0783463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92314495" }, "bbox": [ -0.6819208, 51.0795009, -0.6819208, 51.0795009 ], "geometry": { "type": "Point", "coordinates": [ -0.6819208, 51.0795009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92312982" }, "bbox": [ -0.684067, 51.0783356, -0.684067, 51.0783356 ], "geometry": { "type": "Point", "coordinates": [ -0.684067, 51.0783356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92315662" }, "bbox": [ -0.680168, 51.0765763, -0.680168, 51.0765763 ], "geometry": { "type": "Point", "coordinates": [ -0.680168, 51.0765763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92316965" }, "bbox": [ -0.6784099, 51.0767948, -0.6784099, 51.0767948 ], "geometry": { "type": "Point", "coordinates": [ -0.6784099, 51.0767948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92317979" }, "bbox": [ -0.6763447, 51.0779353, -0.6763447, 51.0779353 ], "geometry": { "type": "Point", "coordinates": [ -0.6763447, 51.0779353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92321929" }, "bbox": [ -0.68515, 51.0824015, -0.68515, 51.0824015 ], "geometry": { "type": "Point", "coordinates": [ -0.68515, 51.0824015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92320223" }, "bbox": [ -0.6875969, 51.0819117, -0.6875969, 51.0819117 ], "geometry": { "type": "Point", "coordinates": [ -0.6875969, 51.0819117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92324305" }, "bbox": [ -0.6826112, 51.0807106, -0.6826112, 51.0807106 ], "geometry": { "type": "Point", "coordinates": [ -0.6826112, 51.0807106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03492186" }, "bbox": [ -0.5266455, 51.2380514, -0.5266455, 51.2380514 ], "geometry": { "type": "Point", "coordinates": [ -0.5266455, 51.2380514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10432111" }, "bbox": [ -0.4249541, 51.1771429, -0.4249541, 51.1771429 ], "geometry": { "type": "Point", "coordinates": [ -0.4249541, 51.1771429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10433097" }, "bbox": [ -0.4249023, 51.1832847, -0.4249023, 51.1832847 ], "geometry": { "type": "Point", "coordinates": [ -0.4249023, 51.1832847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10424593" }, "bbox": [ -0.4203704, 51.174934, -0.4203704, 51.174934 ], "geometry": { "type": "Point", "coordinates": [ -0.4203704, 51.174934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09445108" }, "bbox": [ -0.4251645, 51.1858141, -0.4251645, 51.1858141 ], "geometry": { "type": "Point", "coordinates": [ -0.4251645, 51.1858141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97352836" }, "bbox": [ -0.6116257, 51.1094803, -0.6116257, 51.1094803 ], "geometry": { "type": "Point", "coordinates": [ -0.6116257, 51.1094803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97354125" }, "bbox": [ -0.6099087, 51.1084878, -0.6099087, 51.1084878 ], "geometry": { "type": "Point", "coordinates": [ -0.6099087, 51.1084878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353541" }, "bbox": [ -0.6096799, 51.1096471, -0.6096799, 51.1096471 ], "geometry": { "type": "Point", "coordinates": [ -0.6096799, 51.1096471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38581322" }, "bbox": [ -0.0184586, 51.3064889, -0.0184586, 51.3064889 ], "geometry": { "type": "Point", "coordinates": [ -0.0184586, 51.3064889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09429399" }, "bbox": [ -0.4286022, 51.1756829, -0.4286022, 51.1756829 ], "geometry": { "type": "Point", "coordinates": [ -0.4286022, 51.1756829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09436832" }, "bbox": [ -0.4351688, 51.179884, -0.4351688, 51.179884 ], "geometry": { "type": "Point", "coordinates": [ -0.4351688, 51.179884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00410789" }, "bbox": [ -0.5699456, 51.1675938, -0.5699456, 51.1675938 ], "geometry": { "type": "Point", "coordinates": [ -0.5699456, 51.1675938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10471494" }, "bbox": [ -0.4241497, 51.2197492, -0.4241497, 51.2197492 ], "geometry": { "type": "Point", "coordinates": [ -0.4241497, 51.2197492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40409102" }, "bbox": [ 0.0129906, 51.142065, 0.0129906, 51.142065 ], "geometry": { "type": "Point", "coordinates": [ 0.0129906, 51.142065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40406732" }, "bbox": [ 0.0088642, 51.1454341, 0.0088642, 51.1454341 ], "geometry": { "type": "Point", "coordinates": [ 0.0088642, 51.1454341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40405511" }, "bbox": [ 0.007945, 51.1430141, 0.007945, 51.1430141 ], "geometry": { "type": "Point", "coordinates": [ 0.007945, 51.1430141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40405967" }, "bbox": [ 0.0085026, 51.1479466, 0.0085026, 51.1479466 ], "geometry": { "type": "Point", "coordinates": [ 0.0085026, 51.1479466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95323186" }, "bbox": [ -0.6404914, 51.0871595, -0.6404914, 51.0871595 ], "geometry": { "type": "Point", "coordinates": [ -0.6404914, 51.0871595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96331045" }, "bbox": [ -0.6292763, 51.0920028, -0.6292763, 51.0920028 ], "geometry": { "type": "Point", "coordinates": [ -0.6292763, 51.0920028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96332116" }, "bbox": [ -0.6276188, 51.0896212, -0.6276188, 51.0896212 ], "geometry": { "type": "Point", "coordinates": [ -0.6276188, 51.0896212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95335489" }, "bbox": [ -0.6361414, 51.0958875, -0.6361414, 51.0958875 ], "geometry": { "type": "Point", "coordinates": [ -0.6361414, 51.0958875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95339830" }, "bbox": [ -0.6309561, 51.0909475, -0.6309561, 51.0909475 ], "geometry": { "type": "Point", "coordinates": [ -0.6309561, 51.0909475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95333889" }, "bbox": [ -0.6391414, 51.0962134, -0.6391414, 51.0962134 ], "geometry": { "type": "Point", "coordinates": [ -0.6391414, 51.0962134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95333898" }, "bbox": [ -0.6391889, 51.0972568, -0.6391889, 51.0972568 ], "geometry": { "type": "Point", "coordinates": [ -0.6391889, 51.0972568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95334359" }, "bbox": [ -0.6391368, 51.0937147, -0.6391368, 51.0937147 ], "geometry": { "type": "Point", "coordinates": [ -0.6391368, 51.0937147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95339455" }, "bbox": [ -0.6313043, 51.0933215, -0.6313043, 51.0933215 ], "geometry": { "type": "Point", "coordinates": [ -0.6313043, 51.0933215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95336762" }, "bbox": [ -0.6350849, 51.0939032, -0.6350849, 51.0939032 ], "geometry": { "type": "Point", "coordinates": [ -0.6350849, 51.0939032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95333668" }, "bbox": [ -0.6395121, 51.0945667, -0.6395121, 51.0945667 ], "geometry": { "type": "Point", "coordinates": [ -0.6395121, 51.0945667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95334774" }, "bbox": [ -0.6370143, 51.0943707, -0.6370143, 51.0943707 ], "geometry": { "type": "Point", "coordinates": [ -0.6370143, 51.0943707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96336926" }, "bbox": [ -0.6210742, 51.0902292, -0.6210742, 51.0902292 ], "geometry": { "type": "Point", "coordinates": [ -0.6210742, 51.0902292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96333357" }, "bbox": [ -0.6260959, 51.0934527, -0.6260959, 51.0934527 ], "geometry": { "type": "Point", "coordinates": [ -0.6260959, 51.0934527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96335907" }, "bbox": [ -0.6223055, 51.088696, -0.6223055, 51.088696 ], "geometry": { "type": "Point", "coordinates": [ -0.6223055, 51.088696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96337812" }, "bbox": [ -0.619488, 51.0894518, -0.619488, 51.0894518 ], "geometry": { "type": "Point", "coordinates": [ -0.619488, 51.0894518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96335683" }, "bbox": [ -0.6220734, 51.095782, -0.6220734, 51.095782 ], "geometry": { "type": "Point", "coordinates": [ -0.6220734, 51.095782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96338240" }, "bbox": [ -0.6186317, 51.0915029, -0.6186317, 51.0915029 ], "geometry": { "type": "Point", "coordinates": [ -0.6186317, 51.0915029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96336153" }, "bbox": [ -0.6216405, 51.0930961, -0.6216405, 51.0930961 ], "geometry": { "type": "Point", "coordinates": [ -0.6216405, 51.0930961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96336856" }, "bbox": [ -0.6202603, 51.0919557, -0.6202603, 51.0919557 ], "geometry": { "type": "Point", "coordinates": [ -0.6202603, 51.0919557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96335765" }, "bbox": [ -0.6222911, 51.0941017, -0.6222911, 51.0941017 ], "geometry": { "type": "Point", "coordinates": [ -0.6222911, 51.0941017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96334884" }, "bbox": [ -0.6241148, 51.0954654, -0.6241148, 51.0954654 ], "geometry": { "type": "Point", "coordinates": [ -0.6241148, 51.0954654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96334528" }, "bbox": [ -0.6239465, 51.0907841, -0.6239465, 51.0907841 ], "geometry": { "type": "Point", "coordinates": [ -0.6239465, 51.0907841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95327079" }, "bbox": [ -0.6350725, 51.0865875, -0.6350725, 51.0865875 ], "geometry": { "type": "Point", "coordinates": [ -0.6350725, 51.0865875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95326494" }, "bbox": [ -0.6357609, 51.0877025, -0.6357609, 51.0877025 ], "geometry": { "type": "Point", "coordinates": [ -0.6357609, 51.0877025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95328399" }, "bbox": [ -0.6334018, 51.0882246, -0.6334018, 51.0882246 ], "geometry": { "type": "Point", "coordinates": [ -0.6334018, 51.0882246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95338416" }, "bbox": [ -0.6329313, 51.0897033, -0.6329313, 51.0897033 ], "geometry": { "type": "Point", "coordinates": [ -0.6329313, 51.0897033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95339916" }, "bbox": [ -0.6305909, 51.0896008, -0.6305909, 51.0896008 ], "geometry": { "type": "Point", "coordinates": [ -0.6305909, 51.0896008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94325257" }, "bbox": [ -0.6518522, 51.084743, -0.6518522, 51.084743 ], "geometry": { "type": "Point", "coordinates": [ -0.6518522, 51.084743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37472628" }, "bbox": [ -0.0381403, 51.2079407, -0.0381403, 51.2079407 ], "geometry": { "type": "Point", "coordinates": [ -0.0381403, 51.2079407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37470807" }, "bbox": [ -0.0385586, 51.2065076, -0.0385586, 51.2065076 ], "geometry": { "type": "Point", "coordinates": [ -0.0385586, 51.2065076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95322696" }, "bbox": [ -0.6411221, 51.088064, -0.6411221, 51.088064 ], "geometry": { "type": "Point", "coordinates": [ -0.6411221, 51.088064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95324096" }, "bbox": [ -0.6392737, 51.088062, -0.6392737, 51.088062 ], "geometry": { "type": "Point", "coordinates": [ -0.6392737, 51.088062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331104" }, "bbox": [ -0.6430885, 51.0886945, -0.6430885, 51.0886945 ], "geometry": { "type": "Point", "coordinates": [ -0.6430885, 51.0886945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95332709" }, "bbox": [ -0.6411235, 51.0890297, -0.6411235, 51.0890297 ], "geometry": { "type": "Point", "coordinates": [ -0.6411235, 51.0890297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331626" }, "bbox": [ -0.6426111, 51.0906948, -0.6426111, 51.0906948 ], "geometry": { "type": "Point", "coordinates": [ -0.6426111, 51.0906948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95334006" }, "bbox": [ -0.6392772, 51.0888519, -0.6392772, 51.0888519 ], "geometry": { "type": "Point", "coordinates": [ -0.6392772, 51.0888519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95332216" }, "bbox": [ -0.6419195, 51.0899499, -0.6419195, 51.0899499 ], "geometry": { "type": "Point", "coordinates": [ -0.6419195, 51.0899499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95334234" }, "bbox": [ -0.6388322, 51.0914606, -0.6388322, 51.0914606 ], "geometry": { "type": "Point", "coordinates": [ -0.6388322, 51.0914606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95335126" }, "bbox": [ -0.6368898, 51.0906463, -0.6368898, 51.0906463 ], "geometry": { "type": "Point", "coordinates": [ -0.6368898, 51.0906463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95335510" }, "bbox": [ -0.6373431, 51.0893146, -0.6373431, 51.0893146 ], "geometry": { "type": "Point", "coordinates": [ -0.6373431, 51.0893146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95330917" }, "bbox": [ -0.6436724, 51.0896323, -0.6436724, 51.0896323 ], "geometry": { "type": "Point", "coordinates": [ -0.6436724, 51.0896323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94328144" }, "bbox": [ -0.6478075, 51.0834738, -0.6478075, 51.0834738 ], "geometry": { "type": "Point", "coordinates": [ -0.6478075, 51.0834738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95323069" }, "bbox": [ -0.6406289, 51.0856175, -0.6406289, 51.0856175 ], "geometry": { "type": "Point", "coordinates": [ -0.6406289, 51.0856175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95321674" }, "bbox": [ -0.6426798, 51.0861701, -0.6426798, 51.0861701 ], "geometry": { "type": "Point", "coordinates": [ -0.6426798, 51.0861701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95321884" }, "bbox": [ -0.6423915, 51.0869194, -0.6423915, 51.0869194 ], "geometry": { "type": "Point", "coordinates": [ -0.6423915, 51.0869194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39504140" }, "bbox": [ -0.0043211, 51.2357998, -0.0043211, 51.2357998 ], "geometry": { "type": "Point", "coordinates": [ -0.0043211, 51.2357998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39506720" }, "bbox": [ -0.0008761, 51.2338562, -0.0008761, 51.2338562 ], "geometry": { "type": "Point", "coordinates": [ -0.0008761, 51.2338562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39502430" }, "bbox": [ -0.0066384, 51.2349081, -0.0066384, 51.2349081 ], "geometry": { "type": "Point", "coordinates": [ -0.0066384, 51.2349081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39503256" }, "bbox": [ -0.005698, 51.237199, -0.005698, 51.237199 ], "geometry": { "type": "Point", "coordinates": [ -0.005698, 51.237199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39503718" }, "bbox": [ -0.0049989, 51.2337832, -0.0049989, 51.2337832 ], "geometry": { "type": "Point", "coordinates": [ -0.0049989, 51.2337832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82470690" }, "bbox": [ -0.8266745, 51.2244253, -0.8266745, 51.2244253 ], "geometry": { "type": "Point", "coordinates": [ -0.8266745, 51.2244253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82474143" }, "bbox": [ -0.8208706, 51.2198222, -0.8208706, 51.2198222 ], "geometry": { "type": "Point", "coordinates": [ -0.8208706, 51.2198222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20451123" }, "bbox": [ -0.2826038, 51.1938631, -0.2826038, 51.1938631 ], "geometry": { "type": "Point", "coordinates": [ -0.2826038, 51.1938631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91483854" }, "bbox": [ -0.692495, 51.2281813, -0.692495, 51.2281813 ], "geometry": { "type": "Point", "coordinates": [ -0.692495, 51.2281813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95535195" }, "bbox": [ -0.6321731, 51.2767187, -0.6321731, 51.2767187 ], "geometry": { "type": "Point", "coordinates": [ -0.6321731, 51.2767187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95535279" }, "bbox": [ -0.6320896, 51.2750234, -0.6320896, 51.2750234 ], "geometry": { "type": "Point", "coordinates": [ -0.6320896, 51.2750234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95534273" }, "bbox": [ -0.6334874, 51.2747396, -0.6334874, 51.2747396 ], "geometry": { "type": "Point", "coordinates": [ -0.6334874, 51.2747396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95536772" }, "bbox": [ -0.6299071, 51.2746928, -0.6299071, 51.2746928 ], "geometry": { "type": "Point", "coordinates": [ -0.6299071, 51.2746928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95534565" }, "bbox": [ -0.6330034, 51.2740288, -0.6330034, 51.2740288 ], "geometry": { "type": "Point", "coordinates": [ -0.6330034, 51.2740288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95537392" }, "bbox": [ -0.6289252, 51.2767503, -0.6289252, 51.2767503 ], "geometry": { "type": "Point", "coordinates": [ -0.6289252, 51.2767503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96531576" }, "bbox": [ -0.6229226, 51.2747535, -0.6229226, 51.2747535 ], "geometry": { "type": "Point", "coordinates": [ -0.6229226, 51.2747535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98400179" }, "bbox": [ -0.5980072, 51.1575254, -0.5980072, 51.1575254 ], "geometry": { "type": "Point", "coordinates": [ -0.5980072, 51.1575254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38567129" }, "bbox": [ -0.0121098, 51.2889525, -0.0121098, 51.2889525 ], "geometry": { "type": "Point", "coordinates": [ -0.0121098, 51.2889525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39506334" }, "bbox": [ -0.0010483, 51.2353381, -0.0010483, 51.2353381 ], "geometry": { "type": "Point", "coordinates": [ -0.0010483, 51.2353381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18471666" }, "bbox": [ -0.3096177, 51.2158628, -0.3096177, 51.2158628 ], "geometry": { "type": "Point", "coordinates": [ -0.3096177, 51.2158628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447124" }, "bbox": [ -0.3029754, 51.1850929, -0.3029754, 51.1850929 ], "geometry": { "type": "Point", "coordinates": [ -0.3029754, 51.1850929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37466229" }, "bbox": [ -0.0315328, 51.1992879, -0.0315328, 51.1992879 ], "geometry": { "type": "Point", "coordinates": [ -0.0315328, 51.1992879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37467032" }, "bbox": [ -0.0303782, 51.1993633, -0.0303782, 51.1993633 ], "geometry": { "type": "Point", "coordinates": [ -0.0303782, 51.1993633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97455098" }, "bbox": [ -0.6059068, 51.2048402, -0.6059068, 51.2048402 ], "geometry": { "type": "Point", "coordinates": [ -0.6059068, 51.2048402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98453938" }, "bbox": [ -0.5923915, 51.199416, -0.5923915, 51.199416 ], "geometry": { "type": "Point", "coordinates": [ -0.5923915, 51.199416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98453508" }, "bbox": [ -0.5953124, 51.1970585, -0.5953124, 51.1970585 ], "geometry": { "type": "Point", "coordinates": [ -0.5953124, 51.1970585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94422679" }, "bbox": [ -0.6524802, 51.1767752, -0.6524802, 51.1767752 ], "geometry": { "type": "Point", "coordinates": [ -0.6524802, 51.1767752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93445271" }, "bbox": [ -0.6631911, 51.1939242, -0.6631911, 51.1939242 ], "geometry": { "type": "Point", "coordinates": [ -0.6631911, 51.1939242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93443774" }, "bbox": [ -0.6652115, 51.194456, -0.6652115, 51.194456 ], "geometry": { "type": "Point", "coordinates": [ -0.6652115, 51.194456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97432645" }, "bbox": [ -0.6101481, 51.1821151, -0.6101481, 51.1821151 ], "geometry": { "type": "Point", "coordinates": [ -0.6101481, 51.1821151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97432540" }, "bbox": [ -0.6099053, 51.1814914, -0.6099053, 51.1814914 ], "geometry": { "type": "Point", "coordinates": [ -0.6099053, 51.1814914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96458537" }, "bbox": [ -0.6148702, 51.1992401, -0.6148702, 51.1992401 ], "geometry": { "type": "Point", "coordinates": [ -0.6148702, 51.1992401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96456917" }, "bbox": [ -0.6176875, 51.1977398, -0.6176875, 51.1977398 ], "geometry": { "type": "Point", "coordinates": [ -0.6176875, 51.1977398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96457523" }, "bbox": [ -0.616833, 51.198014, -0.616833, 51.198014 ], "geometry": { "type": "Point", "coordinates": [ -0.616833, 51.198014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96432804" }, "bbox": [ -0.6227492, 51.1786845, -0.6227492, 51.1786845 ], "geometry": { "type": "Point", "coordinates": [ -0.6227492, 51.1786845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90455989" }, "bbox": [ -0.7046833, 51.2047006, -0.7046833, 51.2047006 ], "geometry": { "type": "Point", "coordinates": [ -0.7046833, 51.2047006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90455799" }, "bbox": [ -0.7046706, 51.2059903, -0.7046706, 51.2059903 ], "geometry": { "type": "Point", "coordinates": [ -0.7046706, 51.2059903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31518851" }, "bbox": [ -0.1117938, 51.2472678, -0.1117938, 51.2472678 ], "geometry": { "type": "Point", "coordinates": [ -0.1117938, 51.2472678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06345228" }, "bbox": [ -0.47986, 51.0976453, -0.47986, 51.0976453 ], "geometry": { "type": "Point", "coordinates": [ -0.47986, 51.0976453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05345824" }, "bbox": [ -0.493676, 51.097612, -0.493676, 51.097612 ], "geometry": { "type": "Point", "coordinates": [ -0.493676, 51.097612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06350836" }, "bbox": [ -0.4862819, 51.1074451, -0.4862819, 51.1074451 ], "geometry": { "type": "Point", "coordinates": [ -0.4862819, 51.1074451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07343255" }, "bbox": [ -0.4686076, 51.1002598, -0.4686076, 51.1002598 ], "geometry": { "type": "Point", "coordinates": [ -0.4686076, 51.1002598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14461565" }, "bbox": [ -0.3672592, 51.2074083, -0.3672592, 51.2074083 ], "geometry": { "type": "Point", "coordinates": [ -0.3672592, 51.2074083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460266" }, "bbox": [ -0.369072, 51.2079049, -0.369072, 51.2079049 ], "geometry": { "type": "Point", "coordinates": [ -0.369072, 51.2079049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14461871" }, "bbox": [ -0.3667593, 51.2083129, -0.3667593, 51.2083129 ], "geometry": { "type": "Point", "coordinates": [ -0.3667593, 51.2083129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460276" }, "bbox": [ -0.369237, 51.2087089, -0.369237, 51.2087089 ], "geometry": { "type": "Point", "coordinates": [ -0.369237, 51.2087089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13469870" }, "bbox": [ -0.3696521, 51.2081527, -0.3696521, 51.2081527 ], "geometry": { "type": "Point", "coordinates": [ -0.3696521, 51.2081527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14462671" }, "bbox": [ -0.3655681, 51.2082605, -0.3655681, 51.2082605 ], "geometry": { "type": "Point", "coordinates": [ -0.3655681, 51.2082605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14462676" }, "bbox": [ -0.3655074, 51.2086737, -0.3655074, 51.2086737 ], "geometry": { "type": "Point", "coordinates": [ -0.3655074, 51.2086737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14462280" }, "bbox": [ -0.366236, 51.2090958, -0.366236, 51.2090958 ], "geometry": { "type": "Point", "coordinates": [ -0.366236, 51.2090958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14461681" }, "bbox": [ -0.3670766, 51.2091834, -0.3670766, 51.2091834 ], "geometry": { "type": "Point", "coordinates": [ -0.3670766, 51.2091834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98362035" }, "bbox": [ -0.5983539, 51.1180981, -0.5983539, 51.1180981 ], "geometry": { "type": "Point", "coordinates": [ -0.5983539, 51.1180981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98362622" }, "bbox": [ -0.5975736, 51.1169199, -0.5975736, 51.1169199 ], "geometry": { "type": "Point", "coordinates": [ -0.5975736, 51.1169199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98365407" }, "bbox": [ -0.5934846, 51.1154617, -0.5934846, 51.1154617 ], "geometry": { "type": "Point", "coordinates": [ -0.5934846, 51.1154617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98361656" }, "bbox": [ -0.5988604, 51.1199044, -0.5988604, 51.1199044 ], "geometry": { "type": "Point", "coordinates": [ -0.5988604, 51.1199044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363410" }, "bbox": [ -0.5964606, 51.115713, -0.5964606, 51.115713 ], "geometry": { "type": "Point", "coordinates": [ -0.5964606, 51.115713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99617385" }, "bbox": [ -0.5685604, 51.3469476, -0.5685604, 51.3469476 ], "geometry": { "type": "Point", "coordinates": [ -0.5685604, 51.3469476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607842" }, "bbox": [ -0.0095361, 51.3257662, -0.0095361, 51.3257662 ], "geometry": { "type": "Point", "coordinates": [ -0.0095361, 51.3257662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38608140" }, "bbox": [ -0.0092175, 51.3257395, -0.0092175, 51.3257395 ], "geometry": { "type": "Point", "coordinates": [ -0.0092175, 51.3257395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38609116" }, "bbox": [ -0.0077728, 51.323625, -0.0077728, 51.323625 ], "geometry": { "type": "Point", "coordinates": [ -0.0077728, 51.323625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38609013" }, "bbox": [ -0.0082527, 51.3233736, -0.0082527, 51.3233736 ], "geometry": { "type": "Point", "coordinates": [ -0.0082527, 51.3233736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38606831" }, "bbox": [ -0.0110658, 51.3251251, -0.0110658, 51.3251251 ], "geometry": { "type": "Point", "coordinates": [ -0.0110658, 51.3251251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92456560" }, "bbox": [ -0.6751943, 51.2020335, -0.6751943, 51.2020335 ], "geometry": { "type": "Point", "coordinates": [ -0.6751943, 51.2020335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92456376" }, "bbox": [ -0.6748282, 51.2024795, -0.6748282, 51.2024795 ], "geometry": { "type": "Point", "coordinates": [ -0.6748282, 51.2024795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457585" }, "bbox": [ -0.661043, 51.2075898, -0.661043, 51.2075898 ], "geometry": { "type": "Point", "coordinates": [ -0.661043, 51.2075898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461516" }, "bbox": [ -0.667898, 51.2070634, -0.667898, 51.2070634 ], "geometry": { "type": "Point", "coordinates": [ -0.667898, 51.2070634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07709140" }, "bbox": [ -0.4504966, 51.4225378, -0.4504966, 51.4225378 ], "geometry": { "type": "Point", "coordinates": [ -0.4504966, 51.4225378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07701152" }, "bbox": [ -0.4590534, 51.4235224, -0.4590534, 51.4235224 ], "geometry": { "type": "Point", "coordinates": [ -0.4590534, 51.4235224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15615989" }, "bbox": [ -0.3416417, 51.3444208, -0.3416417, 51.3444208 ], "geometry": { "type": "Point", "coordinates": [ -0.3416417, 51.3444208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16620415" }, "bbox": [ -0.3350459, 51.3468153, -0.3350459, 51.3468153 ], "geometry": { "type": "Point", "coordinates": [ -0.3350459, 51.3468153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93372710" }, "bbox": [ -0.6696133, 51.1257243, -0.6696133, 51.1257243 ], "geometry": { "type": "Point", "coordinates": [ -0.6696133, 51.1257243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96559556" }, "bbox": [ -0.6111287, 51.2907021, -0.6111287, 51.2907021 ], "geometry": { "type": "Point", "coordinates": [ -0.6111287, 51.2907021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93634312" }, "bbox": [ -0.6594719, 51.3595119, -0.6594719, 51.3595119 ], "geometry": { "type": "Point", "coordinates": [ -0.6594719, 51.3595119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93633537" }, "bbox": [ -0.660724, 51.3617009, -0.660724, 51.3617009 ], "geometry": { "type": "Point", "coordinates": [ -0.660724, 51.3617009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93634527" }, "bbox": [ -0.659457, 51.361072, -0.659457, 51.361072 ], "geometry": { "type": "Point", "coordinates": [ -0.659457, 51.361072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93633032" }, "bbox": [ -0.6606033, 51.3619678, -0.6606033, 51.3619678 ], "geometry": { "type": "Point", "coordinates": [ -0.6606033, 51.3619678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87439139" }, "bbox": [ -0.7441493, 51.1830298, -0.7441493, 51.1830298 ], "geometry": { "type": "Point", "coordinates": [ -0.7441493, 51.1830298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87438223" }, "bbox": [ -0.7451189, 51.1814238, -0.7451189, 51.1814238 ], "geometry": { "type": "Point", "coordinates": [ -0.7451189, 51.1814238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389901" }, "bbox": [ -0.7578563, 51.1348608, -0.7578563, 51.1348608 ], "geometry": { "type": "Point", "coordinates": [ -0.7578563, 51.1348608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91396910" }, "bbox": [ -0.6907571, 51.143803, -0.6907571, 51.143803 ], "geometry": { "type": "Point", "coordinates": [ -0.6907571, 51.143803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95558060" }, "bbox": [ -0.6277778, 51.2918005, -0.6277778, 51.2918005 ], "geometry": { "type": "Point", "coordinates": [ -0.6277778, 51.2918005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91449613" }, "bbox": [ -0.6854224, 51.1889956, -0.6854224, 51.1889956 ], "geometry": { "type": "Point", "coordinates": [ -0.6854224, 51.1889956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91448122" }, "bbox": [ -0.6874996, 51.1898846, -0.6874996, 51.1898846 ], "geometry": { "type": "Point", "coordinates": [ -0.6874996, 51.1898846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02335111" }, "bbox": [ -0.5380021, 51.0887149, -0.5380021, 51.0887149 ], "geometry": { "type": "Point", "coordinates": [ -0.5380021, 51.0887149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333541" }, "bbox": [ -0.5398662, 51.0909405, -0.5398662, 51.0909405 ], "geometry": { "type": "Point", "coordinates": [ -0.5398662, 51.0909405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02334129" }, "bbox": [ -0.5390827, 51.0897586, -0.5390827, 51.0897586 ], "geometry": { "type": "Point", "coordinates": [ -0.5390827, 51.0897586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02334501" }, "bbox": [ -0.5382727, 51.08672, -0.5382727, 51.08672 ], "geometry": { "type": "Point", "coordinates": [ -0.5382727, 51.08672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02325496" }, "bbox": [ -0.5373389, 51.0873085, -0.5373389, 51.0873085 ], "geometry": { "type": "Point", "coordinates": [ -0.5373389, 51.0873085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01335705" }, "bbox": [ -0.551181, 51.087858, -0.551181, 51.087858 ], "geometry": { "type": "Point", "coordinates": [ -0.551181, 51.087858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01326791" }, "bbox": [ -0.5486945, 51.0861273, -0.5486945, 51.0861273 ], "geometry": { "type": "Point", "coordinates": [ -0.5486945, 51.0861273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94436231" }, "bbox": [ -0.647432, 51.1816672, -0.647432, 51.1816672 ], "geometry": { "type": "Point", "coordinates": [ -0.647432, 51.1816672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94448980" }, "bbox": [ -0.6445965, 51.1940212, -0.6445965, 51.1940212 ], "geometry": { "type": "Point", "coordinates": [ -0.6445965, 51.1940212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39498918" }, "bbox": [ 0.0021555, 51.224713, 0.0021555, 51.224713 ], "geometry": { "type": "Point", "coordinates": [ 0.0021555, 51.224713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95613074" }, "bbox": [ -0.63302, 51.3467142, -0.63302, 51.3467142 ], "geometry": { "type": "Point", "coordinates": [ -0.63302, 51.3467142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95613949" }, "bbox": [ -0.6317643, 51.3444788, -0.6317643, 51.3444788 ], "geometry": { "type": "Point", "coordinates": [ -0.6317643, 51.3444788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92436597" }, "bbox": [ -0.6757029, 51.1874672, -0.6757029, 51.1874672 ], "geometry": { "type": "Point", "coordinates": [ -0.6757029, 51.1874672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05666988" }, "bbox": [ -0.4834474, 51.390882, -0.4834474, 51.390882 ], "geometry": { "type": "Point", "coordinates": [ -0.4834474, 51.390882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91492938" }, "bbox": [ -0.6935505, 51.2364005, -0.6935505, 51.2364005 ], "geometry": { "type": "Point", "coordinates": [ -0.6935505, 51.2364005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91493345" }, "bbox": [ -0.6929585, 51.2369974, -0.6929585, 51.2369974 ], "geometry": { "type": "Point", "coordinates": [ -0.6929585, 51.2369974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91492235" }, "bbox": [ -0.6947996, 51.2360289, -0.6947996, 51.2360289 ], "geometry": { "type": "Point", "coordinates": [ -0.6947996, 51.2360289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91492532" }, "bbox": [ -0.6942656, 51.2357974, -0.6942656, 51.2357974 ], "geometry": { "type": "Point", "coordinates": [ -0.6942656, 51.2357974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09672045" }, "bbox": [ -0.4316426, 51.3956682, -0.4316426, 51.3956682 ], "geometry": { "type": "Point", "coordinates": [ -0.4316426, 51.3956682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95351601" }, "bbox": [ -0.6421301, 51.1064594, -0.6421301, 51.1064594 ], "geometry": { "type": "Point", "coordinates": [ -0.6421301, 51.1064594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95350913" }, "bbox": [ -0.6429934, 51.1076275, -0.6429934, 51.1076275 ], "geometry": { "type": "Point", "coordinates": [ -0.6429934, 51.1076275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95351408" }, "bbox": [ -0.6423644, 51.107181, -0.6423644, 51.107181 ], "geometry": { "type": "Point", "coordinates": [ -0.6423644, 51.107181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418377" }, "bbox": [ -0.5737691, 51.1663894, -0.5737691, 51.1663894 ], "geometry": { "type": "Point", "coordinates": [ -0.5737691, 51.1663894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419648" }, "bbox": [ -0.5720752, 51.1640667, -0.5720752, 51.1640667 ], "geometry": { "type": "Point", "coordinates": [ -0.5720752, 51.1640667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419643" }, "bbox": [ -0.5716846, 51.1634701, -0.5716846, 51.1634701 ], "geometry": { "type": "Point", "coordinates": [ -0.5716846, 51.1634701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418656" }, "bbox": [ -0.5732726, 51.164777, -0.5732726, 51.164777 ], "geometry": { "type": "Point", "coordinates": [ -0.5732726, 51.164777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94373234" }, "bbox": [ -0.6533481, 51.1276355, -0.6533481, 51.1276355 ], "geometry": { "type": "Point", "coordinates": [ -0.6533481, 51.1276355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95363384" }, "bbox": [ -0.6388643, 51.1224739, -0.6388643, 51.1224739 ], "geometry": { "type": "Point", "coordinates": [ -0.6388643, 51.1224739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95361983" }, "bbox": [ -0.641715, 51.1228268, -0.641715, 51.1228268 ], "geometry": { "type": "Point", "coordinates": [ -0.641715, 51.1228268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92441620" }, "bbox": [ -0.6825086, 51.1895093, -0.6825086, 51.1895093 ], "geometry": { "type": "Point", "coordinates": [ -0.6825086, 51.1895093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92443645" }, "bbox": [ -0.6797148, 51.191777, -0.6797148, 51.191777 ], "geometry": { "type": "Point", "coordinates": [ -0.6797148, 51.191777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92444222" }, "bbox": [ -0.6787064, 51.1897683, -0.6787064, 51.1897683 ], "geometry": { "type": "Point", "coordinates": [ -0.6787064, 51.1897683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36612104" }, "bbox": [ -0.0457206, 51.3321333, -0.0457206, 51.3321333 ], "geometry": { "type": "Point", "coordinates": [ -0.0457206, 51.3321333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94339539" }, "bbox": [ -0.6455295, 51.0919415, -0.6455295, 51.0919415 ], "geometry": { "type": "Point", "coordinates": [ -0.6455295, 51.0919415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94552422" }, "bbox": [ -0.65013, 51.288483, -0.65013, 51.288483 ], "geometry": { "type": "Point", "coordinates": [ -0.65013, 51.288483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551715" }, "bbox": [ -0.6510459, 51.2877176, -0.6510459, 51.2877176 ], "geometry": { "type": "Point", "coordinates": [ -0.6510459, 51.2877176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551319" }, "bbox": [ -0.651576, 51.2880448, -0.651576, 51.2880448 ], "geometry": { "type": "Point", "coordinates": [ -0.651576, 51.2880448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551026" }, "bbox": [ -0.6517483, 51.2885603, -0.6517483, 51.2885603 ], "geometry": { "type": "Point", "coordinates": [ -0.6517483, 51.2885603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551015" }, "bbox": [ -0.6519844, 51.2877161, -0.6519844, 51.2877161 ], "geometry": { "type": "Point", "coordinates": [ -0.6519844, 51.2877161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551516" }, "bbox": [ -0.6513361, 51.2877636, -0.6513361, 51.2877636 ], "geometry": { "type": "Point", "coordinates": [ -0.6513361, 51.2877636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98447892" }, "bbox": [ -0.5878118, 51.1950043, -0.5878118, 51.1950043 ], "geometry": { "type": "Point", "coordinates": [ -0.5878118, 51.1950043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98457406" }, "bbox": [ -0.5882303, 51.1961857, -0.5882303, 51.1961857 ], "geometry": { "type": "Point", "coordinates": [ -0.5882303, 51.1961857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94364157" }, "bbox": [ -0.6522419, 51.1207841, -0.6522419, 51.1207841 ], "geometry": { "type": "Point", "coordinates": [ -0.6522419, 51.1207841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94364763" }, "bbox": [ -0.6511981, 51.1211556, -0.6511981, 51.1211556 ], "geometry": { "type": "Point", "coordinates": [ -0.6511981, 51.1211556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08499196" }, "bbox": [ -0.4409497, 51.2386283, -0.4409497, 51.2386283 ], "geometry": { "type": "Point", "coordinates": [ -0.4409497, 51.2386283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08509943" }, "bbox": [ -0.4397468, 51.242734, -0.4397468, 51.242734 ], "geometry": { "type": "Point", "coordinates": [ -0.4397468, 51.242734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95338047" }, "bbox": [ -0.6335012, 51.0925327, -0.6335012, 51.0925327 ], "geometry": { "type": "Point", "coordinates": [ -0.6335012, 51.0925327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419562" }, "bbox": [ -0.5716681, 51.1651348, -0.5716681, 51.1651348 ], "geometry": { "type": "Point", "coordinates": [ -0.5716681, 51.1651348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99417857" }, "bbox": [ -0.5746183, 51.1647199, -0.5746183, 51.1647199 ], "geometry": { "type": "Point", "coordinates": [ -0.5746183, 51.1647199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92333937" }, "bbox": [ -0.6822527, 51.0920046, -0.6822527, 51.0920046 ], "geometry": { "type": "Point", "coordinates": [ -0.6822527, 51.0920046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93324771" }, "bbox": [ -0.6667998, 51.0861862, -0.6667998, 51.0861862 ], "geometry": { "type": "Point", "coordinates": [ -0.6667998, 51.0861862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93337852" }, "bbox": [ -0.6621881, 51.0933919, -0.6621881, 51.0933919 ], "geometry": { "type": "Point", "coordinates": [ -0.6621881, 51.0933919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14639753" }, "bbox": [ -0.3502848, 51.3592558, -0.3502848, 51.3592558 ], "geometry": { "type": "Point", "coordinates": [ -0.3502848, 51.3592558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14628863" }, "bbox": [ -0.3520939, 51.3513395, -0.3520939, 51.3513395 ], "geometry": { "type": "Point", "coordinates": [ -0.3520939, 51.3513395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98625994" }, "bbox": [ -0.5858396, 51.3570508, -0.5858396, 51.3570508 ], "geometry": { "type": "Point", "coordinates": [ -0.5858396, 51.3570508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85599335" }, "bbox": [ -0.7681164, 51.3270367, -0.7681164, 51.3270367 ], "geometry": { "type": "Point", "coordinates": [ -0.7681164, 51.3270367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86581879" }, "bbox": [ -0.7643108, 51.3215854, -0.7643108, 51.3215854 ], "geometry": { "type": "Point", "coordinates": [ -0.7643108, 51.3215854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86584641" }, "bbox": [ -0.7606215, 51.3182214, -0.7606215, 51.3182214 ], "geometry": { "type": "Point", "coordinates": [ -0.7606215, 51.3182214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86583259" }, "bbox": [ -0.7623201, 51.3196541, -0.7623201, 51.3196541 ], "geometry": { "type": "Point", "coordinates": [ -0.7623201, 51.3196541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93348252" }, "bbox": [ -0.6612918, 51.1022805, -0.6612918, 51.1022805 ], "geometry": { "type": "Point", "coordinates": [ -0.6612918, 51.1022805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98635833" }, "bbox": [ -0.5853326, 51.3603618, -0.5853326, 51.3603618 ], "geometry": { "type": "Point", "coordinates": [ -0.5853326, 51.3603618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98634926" }, "bbox": [ -0.5865494, 51.3597461, -0.5865494, 51.3597461 ], "geometry": { "type": "Point", "coordinates": [ -0.5865494, 51.3597461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98636826" }, "bbox": [ -0.5841255, 51.3598062, -0.5841255, 51.3598062 ], "geometry": { "type": "Point", "coordinates": [ -0.5841255, 51.3598062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98633914" }, "bbox": [ -0.5869661, 51.3584601, -0.5869661, 51.3584601 ], "geometry": { "type": "Point", "coordinates": [ -0.5869661, 51.3584601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98638240" }, "bbox": [ -0.5817854, 51.360698, -0.5817854, 51.360698 ], "geometry": { "type": "Point", "coordinates": [ -0.5817854, 51.360698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98635330" }, "bbox": [ -0.5862535, 51.3602449, -0.5862535, 51.3602449 ], "geometry": { "type": "Point", "coordinates": [ -0.5862535, 51.3602449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98635132" }, "bbox": [ -0.5865013, 51.3604341, -0.5865013, 51.3604341 ], "geometry": { "type": "Point", "coordinates": [ -0.5865013, 51.3604341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98636314" }, "bbox": [ -0.5851167, 51.3589333, -0.5851167, 51.3589333 ], "geometry": { "type": "Point", "coordinates": [ -0.5851167, 51.3589333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98634536" }, "bbox": [ -0.5873693, 51.3609202, -0.5873693, 51.3609202 ], "geometry": { "type": "Point", "coordinates": [ -0.5873693, 51.3609202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89338997" }, "bbox": [ -0.7174826, 51.0983735, -0.7174826, 51.0983735 ], "geometry": { "type": "Point", "coordinates": [ -0.7174826, 51.0983735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89347432" }, "bbox": [ -0.7195705, 51.101245, -0.7195705, 51.101245 ], "geometry": { "type": "Point", "coordinates": [ -0.7195705, 51.101245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89347536" }, "bbox": [ -0.7193701, 51.1015906, -0.7193701, 51.1015906 ], "geometry": { "type": "Point", "coordinates": [ -0.7193701, 51.1015906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89347529" }, "bbox": [ -0.7195528, 51.1006691, -0.7195528, 51.1006691 ], "geometry": { "type": "Point", "coordinates": [ -0.7195528, 51.1006691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89349742" }, "bbox": [ -0.7167398, 51.1020027, -0.7167398, 51.1020027 ], "geometry": { "type": "Point", "coordinates": [ -0.7167398, 51.1020027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95662096" }, "bbox": [ -0.6329376, 51.3937129, -0.6329376, 51.3937129 ], "geometry": { "type": "Point", "coordinates": [ -0.6329376, 51.3937129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97411644" }, "bbox": [ -0.6119939, 51.1636051, -0.6119939, 51.1636051 ], "geometry": { "type": "Point", "coordinates": [ -0.6119939, 51.1636051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11629786" }, "bbox": [ -0.3933884, 51.3537935, -0.3933884, 51.3537935 ], "geometry": { "type": "Point", "coordinates": [ -0.3933884, 51.3537935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97331813" }, "bbox": [ -0.6137374, 51.0892872, -0.6137374, 51.0892872 ], "geometry": { "type": "Point", "coordinates": [ -0.6137374, 51.0892872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332014" }, "bbox": [ -0.6135742, 51.089263, -0.6135742, 51.089263 ], "geometry": { "type": "Point", "coordinates": [ -0.6135742, 51.089263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332012" }, "bbox": [ -0.6134411, 51.0892198, -0.6134411, 51.0892198 ], "geometry": { "type": "Point", "coordinates": [ -0.6134411, 51.0892198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15611198" }, "bbox": [ -0.3485724, 51.3453171, -0.3485724, 51.3453171 ], "geometry": { "type": "Point", "coordinates": [ -0.3485724, 51.3453171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14623256" }, "bbox": [ -0.3599475, 51.3505712, -0.3599475, 51.3505712 ], "geometry": { "type": "Point", "coordinates": [ -0.3599475, 51.3505712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14622751" }, "bbox": [ -0.3604869, 51.350226, -0.3604869, 51.350226 ], "geometry": { "type": "Point", "coordinates": [ -0.3604869, 51.350226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14624168" }, "bbox": [ -0.3585302, 51.3515807, -0.3585302, 51.3515807 ], "geometry": { "type": "Point", "coordinates": [ -0.3585302, 51.3515807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93522326" }, "bbox": [ -0.6652115, 51.2619484, -0.6652115, 51.2619484 ], "geometry": { "type": "Point", "coordinates": [ -0.6652115, 51.2619484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93526636" }, "bbox": [ -0.6590982, 51.2625783, -0.6590982, 51.2625783 ], "geometry": { "type": "Point", "coordinates": [ -0.6590982, 51.2625783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41470458" }, "bbox": [ 0.0178327, 51.2098815, 0.0178327, 51.2098815 ], "geometry": { "type": "Point", "coordinates": [ 0.0178327, 51.2098815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41470104" }, "bbox": [ 0.0170597, 51.2051998, 0.0170597, 51.2051998 ], "geometry": { "type": "Point", "coordinates": [ 0.0170597, 51.2051998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40468392" }, "bbox": [ 0.0155079, 51.2041404, 0.0155079, 51.2041404 ], "geometry": { "type": "Point", "coordinates": [ 0.0155079, 51.2041404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41468797" }, "bbox": [ 0.0297604, 51.2045036, 0.0297604, 51.2045036 ], "geometry": { "type": "Point", "coordinates": [ 0.0297604, 51.2045036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97557462" }, "bbox": [ -0.5996636, 51.2914589, -0.5996636, 51.2914589 ], "geometry": { "type": "Point", "coordinates": [ -0.5996636, 51.2914589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11637803" }, "bbox": [ -0.3961883, 51.3554021, -0.3961883, 51.3554021 ], "geometry": { "type": "Point", "coordinates": [ -0.3961883, 51.3554021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93359896" }, "bbox": [ -0.6584391, 51.1151693, -0.6584391, 51.1151693 ], "geometry": { "type": "Point", "coordinates": [ -0.6584391, 51.1151693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93357165" }, "bbox": [ -0.6631796, 51.1129094, -0.6631796, 51.1129094 ], "geometry": { "type": "Point", "coordinates": [ -0.6631796, 51.1129094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93353193" }, "bbox": [ -0.6679347, 51.1152758, -0.6679347, 51.1152758 ], "geometry": { "type": "Point", "coordinates": [ -0.6679347, 51.1152758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97331519" }, "bbox": [ -0.6140868, 51.089826, -0.6140868, 51.089826 ], "geometry": { "type": "Point", "coordinates": [ -0.6140868, 51.089826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332316" }, "bbox": [ -0.6131713, 51.0895377, -0.6131713, 51.0895377 ], "geometry": { "type": "Point", "coordinates": [ -0.6131713, 51.0895377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332312" }, "bbox": [ -0.6131432, 51.0891306, -0.6131432, 51.0891306 ], "geometry": { "type": "Point", "coordinates": [ -0.6131432, 51.0891306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332017" }, "bbox": [ -0.6134717, 51.0896393, -0.6134717, 51.0896393 ], "geometry": { "type": "Point", "coordinates": [ -0.6134717, 51.0896393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332213" }, "bbox": [ -0.6132896, 51.0891839, -0.6132896, 51.0891839 ], "geometry": { "type": "Point", "coordinates": [ -0.6132896, 51.0891839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05665723" }, "bbox": [ -0.4842807, 51.3853411, -0.4842807, 51.3853411 ], "geometry": { "type": "Point", "coordinates": [ -0.4842807, 51.3853411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05667601" }, "bbox": [ -0.4807281, 51.3830089, -0.4807281, 51.3830089 ], "geometry": { "type": "Point", "coordinates": [ -0.4807281, 51.3830089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03758118" }, "bbox": [ -0.5070258, 51.4661505, -0.5070258, 51.4661505 ], "geometry": { "type": "Point", "coordinates": [ -0.5070258, 51.4661505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03747595" }, "bbox": [ -0.508352, 51.4646012, -0.508352, 51.4646012 ], "geometry": { "type": "Point", "coordinates": [ -0.508352, 51.4646012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95416116" }, "bbox": [ -0.6338585, 51.1616413, -0.6338585, 51.1616413 ], "geometry": { "type": "Point", "coordinates": [ -0.6338585, 51.1616413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19626872" }, "bbox": [ -0.282963, 51.351001, -0.282963, 51.351001 ], "geometry": { "type": "Point", "coordinates": [ -0.282963, 51.351001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19624887" }, "bbox": [ -0.2854377, 51.3523522, -0.2854377, 51.3523522 ], "geometry": { "type": "Point", "coordinates": [ -0.2854377, 51.3523522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93631851" }, "bbox": [ -0.6629379, 51.3630759, -0.6629379, 51.3630759 ], "geometry": { "type": "Point", "coordinates": [ -0.6629379, 51.3630759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92637810" }, "bbox": [ -0.6687577, 51.3594161, -0.6687577, 51.3594161 ], "geometry": { "type": "Point", "coordinates": [ -0.6687577, 51.3594161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37579430" }, "bbox": [ -0.0228815, 51.2981523, -0.0228815, 51.2981523 ], "geometry": { "type": "Point", "coordinates": [ -0.0228815, 51.2981523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12679636" }, "bbox": [ -0.3769321, 51.3941699, -0.3769321, 51.3941699 ], "geometry": { "type": "Point", "coordinates": [ -0.3769321, 51.3941699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12678838" }, "bbox": [ -0.3788365, 51.3942723, -0.3788365, 51.3942723 ], "geometry": { "type": "Point", "coordinates": [ -0.3788365, 51.3942723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12677639" }, "bbox": [ -0.3821849, 51.3943882, -0.3821849, 51.3943882 ], "geometry": { "type": "Point", "coordinates": [ -0.3821849, 51.3943882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12679621" }, "bbox": [ -0.3777058, 51.3929513, -0.3777058, 51.3929513 ], "geometry": { "type": "Point", "coordinates": [ -0.3777058, 51.3929513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30521913" }, "bbox": [ -0.135612, 51.2533306, -0.135612, 51.2533306 ], "geometry": { "type": "Point", "coordinates": [ -0.135612, 51.2533306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94359868" }, "bbox": [ -0.644516, 51.1126038, -0.644516, 51.1126038 ], "geometry": { "type": "Point", "coordinates": [ -0.644516, 51.1126038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95351634" }, "bbox": [ -0.6421149, 51.1095997, -0.6421149, 51.1095997 ], "geometry": { "type": "Point", "coordinates": [ -0.6421149, 51.1095997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93354609" }, "bbox": [ -0.6664024, 51.1074886, -0.6664024, 51.1074886 ], "geometry": { "type": "Point", "coordinates": [ -0.6664024, 51.1074886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38501660" }, "bbox": [ -0.0221847, 51.2378857, -0.0221847, 51.2378857 ], "geometry": { "type": "Point", "coordinates": [ -0.0221847, 51.2378857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38501839" }, "bbox": [ -0.022105, 51.2358484, -0.022105, 51.2358484 ], "geometry": { "type": "Point", "coordinates": [ -0.022105, 51.2358484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38508568" }, "bbox": [ -0.0128537, 51.2385953, -0.0128537, 51.2385953 ], "geometry": { "type": "Point", "coordinates": [ -0.0128537, 51.2385953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37509978" }, "bbox": [ -0.0244879, 51.2395862, -0.0244879, 51.2395862 ], "geometry": { "type": "Point", "coordinates": [ -0.0244879, 51.2395862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18617568" }, "bbox": [ -0.2965476, 51.34184, -0.2965476, 51.34184 ], "geometry": { "type": "Point", "coordinates": [ -0.2965476, 51.34184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89389076" }, "bbox": [ -0.7162486, 51.1411729, -0.7162486, 51.1411729 ], "geometry": { "type": "Point", "coordinates": [ -0.7162486, 51.1411729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25535180" }, "bbox": [ -0.2020698, 51.2695368, -0.2020698, 51.2695368 ], "geometry": { "type": "Point", "coordinates": [ -0.2020698, 51.2695368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25534465" }, "bbox": [ -0.2032522, 51.2682675, -0.2032522, 51.2682675 ], "geometry": { "type": "Point", "coordinates": [ -0.2032522, 51.2682675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25534072" }, "bbox": [ -0.203627, 51.2687609, -0.203627, 51.2687609 ], "geometry": { "type": "Point", "coordinates": [ -0.203627, 51.2687609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21518515" }, "bbox": [ -0.2554594, 51.2465016, -0.2554594, 51.2465016 ], "geometry": { "type": "Point", "coordinates": [ -0.2554594, 51.2465016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36579979" }, "bbox": [ -0.0359792, 51.3026964, -0.0359792, 51.3026964 ], "geometry": { "type": "Point", "coordinates": [ -0.0359792, 51.3026964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36588501" }, "bbox": [ -0.0380909, 51.3048454, -0.0380909, 51.3048454 ], "geometry": { "type": "Point", "coordinates": [ -0.0380909, 51.3048454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99346928" }, "bbox": [ -0.5777724, 51.0991225, -0.5777724, 51.0991225 ], "geometry": { "type": "Point", "coordinates": [ -0.5777724, 51.0991225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99344205" }, "bbox": [ -0.5816536, 51.0971259, -0.5816536, 51.0971259 ], "geometry": { "type": "Point", "coordinates": [ -0.5816536, 51.0971259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98349913" }, "bbox": [ -0.5876761, 51.0980118, -0.5876761, 51.0980118 ], "geometry": { "type": "Point", "coordinates": [ -0.5876761, 51.0980118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524450" }, "bbox": [ -0.2324065, 51.2583611, -0.2324065, 51.2583611 ], "geometry": { "type": "Point", "coordinates": [ -0.2324065, 51.2583611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524440" }, "bbox": [ -0.2322726, 51.2574771, -0.2322726, 51.2574771 ], "geometry": { "type": "Point", "coordinates": [ -0.2322726, 51.2574771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524141" }, "bbox": [ -0.2328123, 51.2575518, -0.2328123, 51.2575518 ], "geometry": { "type": "Point", "coordinates": [ -0.2328123, 51.2575518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36570519" }, "bbox": [ -0.0498252, 51.2975302, -0.0498252, 51.2975302 ], "geometry": { "type": "Point", "coordinates": [ -0.0498252, 51.2975302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36571424" }, "bbox": [ -0.0485612, 51.2978851, -0.0485612, 51.2978851 ], "geometry": { "type": "Point", "coordinates": [ -0.0485612, 51.2978851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36570113" }, "bbox": [ -0.050786, 51.2971222, -0.050786, 51.2971222 ], "geometry": { "type": "Point", "coordinates": [ -0.050786, 51.2971222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25432831" }, "bbox": [ -0.2098291, 51.1753107, -0.2098291, 51.1753107 ], "geometry": { "type": "Point", "coordinates": [ -0.2098291, 51.1753107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25432545" }, "bbox": [ -0.2094922, 51.1766946, -0.2094922, 51.1766946 ], "geometry": { "type": "Point", "coordinates": [ -0.2094922, 51.1766946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25434249" }, "bbox": [ -0.2070939, 51.1769089, -0.2070939, 51.1769089 ], "geometry": { "type": "Point", "coordinates": [ -0.2070939, 51.1769089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33519961" }, "bbox": [ -0.0815372, 51.2482694, -0.0815372, 51.2482694 ], "geometry": { "type": "Point", "coordinates": [ -0.0815372, 51.2482694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32578113" }, "bbox": [ -0.096359, 51.2978815, -0.096359, 51.2978815 ], "geometry": { "type": "Point", "coordinates": [ -0.096359, 51.2978815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441885" }, "bbox": [ -0.0813991, 51.1871687, -0.0813991, 51.1871687 ], "geometry": { "type": "Point", "coordinates": [ -0.0813991, 51.1871687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442076" }, "bbox": [ -0.0810306, 51.1863907, -0.0810306, 51.1863907 ], "geometry": { "type": "Point", "coordinates": [ -0.0810306, 51.1863907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442084" }, "bbox": [ -0.0809984, 51.1870512, -0.0809984, 51.1870512 ], "geometry": { "type": "Point", "coordinates": [ -0.0809984, 51.1870512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32443584" }, "bbox": [ -0.1074128, 51.1875159, -0.1074128, 51.1875159 ], "geometry": { "type": "Point", "coordinates": [ -0.1074128, 51.1875159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98607027" }, "bbox": [ -0.5846025, 51.3330641, -0.5846025, 51.3330641 ], "geometry": { "type": "Point", "coordinates": [ -0.5846025, 51.3330641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98608033" }, "bbox": [ -0.5830686, 51.333419, -0.5830686, 51.333419 ], "geometry": { "type": "Point", "coordinates": [ -0.5830686, 51.333419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98607137" }, "bbox": [ -0.5845638, 51.333769, -0.5845638, 51.333769 ], "geometry": { "type": "Point", "coordinates": [ -0.5845638, 51.333769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98608041" }, "bbox": [ -0.5832682, 51.3342051, -0.5832682, 51.3342051 ], "geometry": { "type": "Point", "coordinates": [ -0.5832682, 51.3342051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99603085" }, "bbox": [ -0.5755282, 51.3383837, -0.5755282, 51.3383837 ], "geometry": { "type": "Point", "coordinates": [ -0.5755282, 51.3383837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99601671" }, "bbox": [ -0.5778719, 51.3368938, -0.5778719, 51.3368938 ], "geometry": { "type": "Point", "coordinates": [ -0.5778719, 51.3368938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99614209" }, "bbox": [ -0.57367, 51.3405391, -0.57367, 51.3405391 ], "geometry": { "type": "Point", "coordinates": [ -0.57367, 51.3405391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99614928" }, "bbox": [ -0.5729669, 51.3418239, -0.5729669, 51.3418239 ], "geometry": { "type": "Point", "coordinates": [ -0.5729669, 51.3418239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99618838" }, "bbox": [ -0.567506, 51.3428439, -0.567506, 51.3428439 ], "geometry": { "type": "Point", "coordinates": [ -0.567506, 51.3428439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99616328" }, "bbox": [ -0.5711371, 51.3418367, -0.5711371, 51.3418367 ], "geometry": { "type": "Point", "coordinates": [ -0.5711371, 51.3418367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39480910" }, "bbox": [ -0.0098474, 51.2152149, -0.0098474, 51.2152149 ], "geometry": { "type": "Point", "coordinates": [ -0.0098474, 51.2152149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38497888" }, "bbox": [ -0.013923, 51.2312694, -0.013923, 51.2312694 ], "geometry": { "type": "Point", "coordinates": [ -0.013923, 51.2312694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38478788" }, "bbox": [ -0.0133569, 51.2132501, -0.0133569, 51.2132501 ], "geometry": { "type": "Point", "coordinates": [ -0.0133569, 51.2132501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38477740" }, "bbox": [ -0.0147827, 51.2089584, -0.0147827, 51.2089584 ], "geometry": { "type": "Point", "coordinates": [ -0.0147827, 51.2089584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38476083" }, "bbox": [ -0.0170282, 51.2126567, -0.0170282, 51.2126567 ], "geometry": { "type": "Point", "coordinates": [ -0.0170282, 51.2126567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38473176" }, "bbox": [ -0.0212952, 51.2122743, -0.0212952, 51.2122743 ], "geometry": { "type": "Point", "coordinates": [ -0.0212952, 51.2122743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38475083" }, "bbox": [ -0.0184895, 51.2128578, -0.0184895, 51.2128578 ], "geometry": { "type": "Point", "coordinates": [ -0.0184895, 51.2128578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38474093" }, "bbox": [ -0.0200983, 51.2139488, -0.0200983, 51.2139488 ], "geometry": { "type": "Point", "coordinates": [ -0.0200983, 51.2139488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38475338" }, "bbox": [ -0.0183325, 51.2088501, -0.0183325, 51.2088501 ], "geometry": { "type": "Point", "coordinates": [ -0.0183325, 51.2088501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38478653" }, "bbox": [ -0.0132807, 51.2101735, -0.0132807, 51.2101735 ], "geometry": { "type": "Point", "coordinates": [ -0.0132807, 51.2101735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38475192" }, "bbox": [ -0.0188712, 51.2140867, -0.0188712, 51.2140867 ], "geometry": { "type": "Point", "coordinates": [ -0.0188712, 51.2140867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38476321" }, "bbox": [ -0.0165613, 51.20733, -0.0165613, 51.20733 ], "geometry": { "type": "Point", "coordinates": [ -0.0165613, 51.20733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36442581" }, "bbox": [ -0.0516424, 51.1862444, -0.0516424, 51.1862444 ], "geometry": { "type": "Point", "coordinates": [ -0.0516424, 51.1862444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36443196" }, "bbox": [ -0.0509092, 51.1875419, -0.0509092, 51.1875419 ], "geometry": { "type": "Point", "coordinates": [ -0.0509092, 51.1875419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36452301" }, "bbox": [ -0.0517362, 51.1880316, -0.0517362, 51.1880316 ], "geometry": { "type": "Point", "coordinates": [ -0.0517362, 51.1880316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37497569" }, "bbox": [ -0.0285358, 51.2298095, -0.0285358, 51.2298095 ], "geometry": { "type": "Point", "coordinates": [ -0.0285358, 51.2298095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37500080" }, "bbox": [ -0.0385851, 51.2396869, -0.0385851, 51.2396869 ], "geometry": { "type": "Point", "coordinates": [ -0.0385851, 51.2396869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39573937" }, "bbox": [ -0.00358, 51.298359, -0.00358, 51.298359 ], "geometry": { "type": "Point", "coordinates": [ -0.00358, 51.298359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39581002" }, "bbox": [ -0.0061109, 51.304374, -0.0061109, 51.304374 ], "geometry": { "type": "Point", "coordinates": [ -0.0061109, 51.304374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527476" }, "bbox": [ -0.0274089, 51.2573747, -0.0274089, 51.2573747 ], "geometry": { "type": "Point", "coordinates": [ -0.0274089, 51.2573747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37526471" }, "bbox": [ -0.0289165, 51.2570788, -0.0289165, 51.2570788 ], "geometry": { "type": "Point", "coordinates": [ -0.0289165, 51.2570788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527760" }, "bbox": [ -0.0270912, 51.2560503, -0.0270912, 51.2560503 ], "geometry": { "type": "Point", "coordinates": [ -0.0270912, 51.2560503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37529198" }, "bbox": [ -0.0248576, 51.2593158, -0.0248576, 51.2593158 ], "geometry": { "type": "Point", "coordinates": [ -0.0248576, 51.2593158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527378" }, "bbox": [ -0.0273515, 51.2577146, -0.0273515, 51.2577146 ], "geometry": { "type": "Point", "coordinates": [ -0.0273515, 51.2577146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527271" }, "bbox": [ -0.0274685, 51.2569292, -0.0274685, 51.2569292 ], "geometry": { "type": "Point", "coordinates": [ -0.0274685, 51.2569292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26503094" }, "bbox": [ -0.1917377, 51.2437597, -0.1917377, 51.2437597 ], "geometry": { "type": "Point", "coordinates": [ -0.1917377, 51.2437597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26508296" }, "bbox": [ -0.1844433, 51.2437956, -0.1844433, 51.2437956 ], "geometry": { "type": "Point", "coordinates": [ -0.1844433, 51.2437956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12674277" }, "bbox": [ -0.3851933, 51.3978929, -0.3851933, 51.3978929 ], "geometry": { "type": "Point", "coordinates": [ -0.3851933, 51.3978929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12673181" }, "bbox": [ -0.3867859, 51.3983102, -0.3867859, 51.3983102 ], "geometry": { "type": "Point", "coordinates": [ -0.3867859, 51.3983102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01418227" }, "bbox": [ -0.5454708, 51.1616721, -0.5454708, 51.1616721 ], "geometry": { "type": "Point", "coordinates": [ -0.5454708, 51.1616721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00421403" }, "bbox": [ -0.5690131, 51.1688016, -0.5690131, 51.1688016 ], "geometry": { "type": "Point", "coordinates": [ -0.5690131, 51.1688016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00420500" }, "bbox": [ -0.5702252, 51.1686263, -0.5702252, 51.1686263 ], "geometry": { "type": "Point", "coordinates": [ -0.5702252, 51.1686263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21417969" }, "bbox": [ -0.2596594, 51.1613786, -0.2596594, 51.1613786 ], "geometry": { "type": "Point", "coordinates": [ -0.2596594, 51.1613786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21418056" }, "bbox": [ -0.2596545, 51.1602951, -0.2596545, 51.1602951 ], "geometry": { "type": "Point", "coordinates": [ -0.2596545, 51.1602951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21418359" }, "bbox": [ -0.2591469, 51.1606143, -0.2591469, 51.1606143 ], "geometry": { "type": "Point", "coordinates": [ -0.2591469, 51.1606143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13514063" }, "bbox": [ -0.377263, 51.2526814, -0.377263, 51.2526814 ], "geometry": { "type": "Point", "coordinates": [ -0.377263, 51.2526814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25479796" }, "bbox": [ -0.1979114, 51.2170426, -0.1979114, 51.2170426 ], "geometry": { "type": "Point", "coordinates": [ -0.1979114, 51.2170426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411079" }, "bbox": [ -0.5266488, 51.1659476, -0.5266488, 51.1659476 ], "geometry": { "type": "Point", "coordinates": [ -0.5266488, 51.1659476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00421968" }, "bbox": [ -0.5679748, 51.1747438, -0.5679748, 51.1747438 ], "geometry": { "type": "Point", "coordinates": [ -0.5679748, 51.1747438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06492296" }, "bbox": [ -0.4798939, 51.2390555, -0.4798939, 51.2390555 ], "geometry": { "type": "Point", "coordinates": [ -0.4798939, 51.2390555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06483386" }, "bbox": [ -0.4787642, 51.2289664, -0.4787642, 51.2289664 ], "geometry": { "type": "Point", "coordinates": [ -0.4787642, 51.2289664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04421542" }, "bbox": [ -0.5117922, 51.1723023, -0.5117922, 51.1723023 ], "geometry": { "type": "Point", "coordinates": [ -0.5117922, 51.1723023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424780" }, "bbox": [ -0.5192225, 51.1751406, -0.5192225, 51.1751406 ], "geometry": { "type": "Point", "coordinates": [ -0.5192225, 51.1751406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27479919" }, "bbox": [ -0.1689645, 51.2092211, -0.1689645, 51.2092211 ], "geometry": { "type": "Point", "coordinates": [ -0.1689645, 51.2092211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03396661" }, "bbox": [ -0.5192909, 51.1463833, -0.5192909, 51.1463833 ], "geometry": { "type": "Point", "coordinates": [ -0.5192909, 51.1463833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03396370" }, "bbox": [ -0.5200068, 51.1472082, -0.5200068, 51.1472082 ], "geometry": { "type": "Point", "coordinates": [ -0.5200068, 51.1472082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27477258" }, "bbox": [ -0.1728828, 51.2127571, -0.1728828, 51.2127571 ], "geometry": { "type": "Point", "coordinates": [ -0.1728828, 51.2127571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27477617" }, "bbox": [ -0.1723632, 51.2094615, -0.1723632, 51.2094615 ], "geometry": { "type": "Point", "coordinates": [ -0.1723632, 51.2094615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26487612" }, "bbox": [ -0.1862439, 51.2182612, -0.1862439, 51.2182612 ], "geometry": { "type": "Point", "coordinates": [ -0.1862439, 51.2182612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27482439" }, "bbox": [ -0.1791723, 51.2205941, -0.1791723, 51.2205941 ], "geometry": { "type": "Point", "coordinates": [ -0.1791723, 51.2205941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26470899" }, "bbox": [ -0.1957866, 51.2171862, -0.1957866, 51.2171862 ], "geometry": { "type": "Point", "coordinates": [ -0.1957866, 51.2171862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26479290" }, "bbox": [ -0.1841513, 51.216268, -0.1841513, 51.216268 ], "geometry": { "type": "Point", "coordinates": [ -0.1841513, 51.216268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30531025" }, "bbox": [ -0.1363009, 51.2635946, -0.1363009, 51.2635946 ], "geometry": { "type": "Point", "coordinates": [ -0.1363009, 51.2635946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28466098" }, "bbox": [ -0.1605548, 51.2075108, -0.1605548, 51.2075108 ], "geometry": { "type": "Point", "coordinates": [ -0.1605548, 51.2075108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28466289" }, "bbox": [ -0.1600551, 51.2068191, -0.1600551, 51.2068191 ], "geometry": { "type": "Point", "coordinates": [ -0.1600551, 51.2068191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28477010" }, "bbox": [ -0.158927, 51.2088054, -0.158927, 51.2088054 ], "geometry": { "type": "Point", "coordinates": [ -0.158927, 51.2088054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478030" }, "bbox": [ -0.15725, 51.2105708, -0.15725, 51.2105708 ], "geometry": { "type": "Point", "coordinates": [ -0.15725, 51.2105708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02519570" }, "bbox": [ -0.5260214, 51.2552239, -0.5260214, 51.2552239 ], "geometry": { "type": "Point", "coordinates": [ -0.5260214, 51.2552239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19514817" }, "bbox": [ -0.2904246, 51.2472335, -0.2904246, 51.2472335 ], "geometry": { "type": "Point", "coordinates": [ -0.2904246, 51.2472335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19511006" }, "bbox": [ -0.2939991, 51.2463038, -0.2939991, 51.2463038 ], "geometry": { "type": "Point", "coordinates": [ -0.2939991, 51.2463038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38396999" }, "bbox": [ -0.0187007, 51.1423632, -0.0187007, 51.1423632 ], "geometry": { "type": "Point", "coordinates": [ -0.0187007, 51.1423632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07390397" }, "bbox": [ -0.4711812, 51.148828, -0.4711812, 51.148828 ], "geometry": { "type": "Point", "coordinates": [ -0.4711812, 51.148828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03445640" }, "bbox": [ -0.5195775, 51.1894339, -0.5195775, 51.1894339 ], "geometry": { "type": "Point", "coordinates": [ -0.5195775, 51.1894339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03442835" }, "bbox": [ -0.5234439, 51.1889038, -0.5234439, 51.1889038 ], "geometry": { "type": "Point", "coordinates": [ -0.5234439, 51.1889038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03445858" }, "bbox": [ -0.5191394, 51.1910545, -0.5191394, 51.1910545 ], "geometry": { "type": "Point", "coordinates": [ -0.5191394, 51.1910545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03444233" }, "bbox": [ -0.5216579, 51.1888749, -0.5216579, 51.1888749 ], "geometry": { "type": "Point", "coordinates": [ -0.5216579, 51.1888749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38472014" }, "bbox": [ -0.0229996, 51.2067088, -0.0229996, 51.2067088 ], "geometry": { "type": "Point", "coordinates": [ -0.0229996, 51.2067088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40552030" }, "bbox": [ 0.0094781, 51.2799436, 0.0094781, 51.2799436 ], "geometry": { "type": "Point", "coordinates": [ 0.0094781, 51.2799436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400543" }, "bbox": [ -0.5136294, 51.1536744, -0.5136294, 51.1536744 ], "geometry": { "type": "Point", "coordinates": [ -0.5136294, 51.1536744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42546776" }, "bbox": [ 0.0440496, 51.2744393, 0.0440496, 51.2744393 ], "geometry": { "type": "Point", "coordinates": [ 0.0440496, 51.2744393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42542179" }, "bbox": [ 0.036997, 51.2745383, 0.036997, 51.2745383 ], "geometry": { "type": "Point", "coordinates": [ 0.036997, 51.2745383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36473190" }, "bbox": [ -0.0497249, 51.2139931, -0.0497249, 51.2139931 ], "geometry": { "type": "Point", "coordinates": [ -0.0497249, 51.2139931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36471883" }, "bbox": [ -0.0515958, 51.2134374, -0.0515958, 51.2134374 ], "geometry": { "type": "Point", "coordinates": [ -0.0515958, 51.2134374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12394561" }, "bbox": [ -0.393802, 51.1446814, -0.393802, 51.1446814 ], "geometry": { "type": "Point", "coordinates": [ -0.393802, 51.1446814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12392445" }, "bbox": [ -0.396815, 51.143379, -0.396815, 51.143379 ], "geometry": { "type": "Point", "coordinates": [ -0.396815, 51.143379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12392945" }, "bbox": [ -0.3957998, 51.1433505, -0.3957998, 51.1433505 ], "geometry": { "type": "Point", "coordinates": [ -0.3957998, 51.1433505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36429606" }, "bbox": [ -0.0426469, 51.1612438, -0.0426469, 51.1612438 ], "geometry": { "type": "Point", "coordinates": [ -0.0426469, 51.1612438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36425915" }, "bbox": [ -0.0479892, 51.1622893, -0.0479892, 51.1622893 ], "geometry": { "type": "Point", "coordinates": [ -0.0479892, 51.1622893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00345328" }, "bbox": [ -0.5656614, 51.099075, -0.5656614, 51.099075 ], "geometry": { "type": "Point", "coordinates": [ -0.5656614, 51.099075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28584278" }, "bbox": [ -0.1587466, 51.3136613, -0.1587466, 51.3136613 ], "geometry": { "type": "Point", "coordinates": [ -0.1587466, 51.3136613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28583858" }, "bbox": [ -0.1593483, 51.3119018, -0.1593483, 51.3119018 ], "geometry": { "type": "Point", "coordinates": [ -0.1593483, 51.3119018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26598703" }, "bbox": [ -0.1803253, 51.3164408, -0.1803253, 51.3164408 ], "geometry": { "type": "Point", "coordinates": [ -0.1803253, 51.3164408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26597701" }, "bbox": [ -0.182312, 51.315974, -0.182312, 51.315974 ], "geometry": { "type": "Point", "coordinates": [ -0.182312, 51.315974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26596701" }, "bbox": [ -0.1839164, 51.3160516, -0.1839164, 51.3160516 ], "geometry": { "type": "Point", "coordinates": [ -0.1839164, 51.3160516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26597107" }, "bbox": [ -0.1833665, 51.3165563, -0.1833665, 51.3165563 ], "geometry": { "type": "Point", "coordinates": [ -0.1833665, 51.3165563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26597130" }, "bbox": [ -0.1823913, 51.3185321, -0.1823913, 51.3185321 ], "geometry": { "type": "Point", "coordinates": [ -0.1823913, 51.3185321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26595813" }, "bbox": [ -0.1849388, 51.3171891, -0.1849388, 51.3171891 ], "geometry": { "type": "Point", "coordinates": [ -0.1849388, 51.3171891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26596408" }, "bbox": [ -0.184275, 51.316759, -0.184275, 51.316759 ], "geometry": { "type": "Point", "coordinates": [ -0.184275, 51.316759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26595822" }, "bbox": [ -0.1848388, 51.3180576, -0.1848388, 51.3180576 ], "geometry": { "type": "Point", "coordinates": [ -0.1848388, 51.3180576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05447414" }, "bbox": [ -0.4883852, 51.1866709, -0.4883852, 51.1866709 ], "geometry": { "type": "Point", "coordinates": [ -0.4883852, 51.1866709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30501853" }, "bbox": [ -0.1363056, 51.2391033, -0.1363056, 51.2391033 ], "geometry": { "type": "Point", "coordinates": [ -0.1363056, 51.2391033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16640565" }, "bbox": [ -0.3349719, 51.369065, -0.3349719, 51.369065 ], "geometry": { "type": "Point", "coordinates": [ -0.3349719, 51.369065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15649649" }, "bbox": [ -0.3356092, 51.3676364, -0.3356092, 51.3676364 ], "geometry": { "type": "Point", "coordinates": [ -0.3356092, 51.3676364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15646806" }, "bbox": [ -0.3392303, 51.3639291, -0.3392303, 51.3639291 ], "geometry": { "type": "Point", "coordinates": [ -0.3392303, 51.3639291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15648728" }, "bbox": [ -0.3369076, 51.3657336, -0.3369076, 51.3657336 ], "geometry": { "type": "Point", "coordinates": [ -0.3369076, 51.3657336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569121" }, "bbox": [ -0.1674625, 51.2908081, -0.1674625, 51.2908081 ], "geometry": { "type": "Point", "coordinates": [ -0.1674625, 51.2908081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569827" }, "bbox": [ -0.1647636, 51.2916544, -0.1647636, 51.2916544 ], "geometry": { "type": "Point", "coordinates": [ -0.1647636, 51.2916544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28560415" }, "bbox": [ -0.1647308, 51.2902251, -0.1647308, 51.2902251 ], "geometry": { "type": "Point", "coordinates": [ -0.1647308, 51.2902251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36420251" }, "bbox": [ -0.0560059, 51.1656645, -0.0560059, 51.1656645 ], "geometry": { "type": "Point", "coordinates": [ -0.0560059, 51.1656645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36424859" }, "bbox": [ -0.0493702, 51.166308, -0.0493702, 51.166308 ], "geometry": { "type": "Point", "coordinates": [ -0.0493702, 51.166308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36425242" }, "bbox": [ -0.0491067, 51.1646712, -0.0491067, 51.1646712 ], "geometry": { "type": "Point", "coordinates": [ -0.0491067, 51.1646712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36426349" }, "bbox": [ -0.047121, 51.1654007, -0.047121, 51.1654007 ], "geometry": { "type": "Point", "coordinates": [ -0.047121, 51.1654007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36420425" }, "bbox": [ -0.0557284, 51.1634203, -0.0557284, 51.1634203 ], "geometry": { "type": "Point", "coordinates": [ -0.0557284, 51.1634203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07422283" }, "bbox": [ -0.4677229, 51.1746921, -0.4677229, 51.1746921 ], "geometry": { "type": "Point", "coordinates": [ -0.4677229, 51.1746921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04343458" }, "bbox": [ -0.5111729, 51.1009592, -0.5111729, 51.1009592 ], "geometry": { "type": "Point", "coordinates": [ -0.5111729, 51.1009592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04344924" }, "bbox": [ -0.509097, 51.0979799, -0.509097, 51.0979799 ], "geometry": { "type": "Point", "coordinates": [ -0.509097, 51.0979799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01443995" }, "bbox": [ -0.5484771, 51.1943861, -0.5484771, 51.1943861 ], "geometry": { "type": "Point", "coordinates": [ -0.5484771, 51.1943861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22415294" }, "bbox": [ -0.2493592, 51.1640343, -0.2493592, 51.1640343 ], "geometry": { "type": "Point", "coordinates": [ -0.2493592, 51.1640343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22426817" }, "bbox": [ -0.2444751, 51.1653462, -0.2444751, 51.1653462 ], "geometry": { "type": "Point", "coordinates": [ -0.2444751, 51.1653462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366775" }, "bbox": [ -0.5629112, 51.1214506, -0.5629112, 51.1214506 ], "geometry": { "type": "Point", "coordinates": [ -0.5629112, 51.1214506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407731" }, "bbox": [ -0.4464647, 51.1516029, -0.4464647, 51.1516029 ], "geometry": { "type": "Point", "coordinates": [ -0.4464647, 51.1516029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08407917" }, "bbox": [ -0.4459449, 51.1505647, -0.4459449, 51.1505647 ], "geometry": { "type": "Point", "coordinates": [ -0.4459449, 51.1505647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08408319" }, "bbox": [ -0.4453851, 51.1506305, -0.4453851, 51.1506305 ], "geometry": { "type": "Point", "coordinates": [ -0.4453851, 51.1506305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08408141" }, "bbox": [ -0.445677, 51.1526119, -0.445677, 51.1526119 ], "geometry": { "type": "Point", "coordinates": [ -0.445677, 51.1526119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10357526" }, "bbox": [ -0.4194163, 51.1059383, -0.4194163, 51.1059383 ], "geometry": { "type": "Point", "coordinates": [ -0.4194163, 51.1059383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18433969" }, "bbox": [ -0.3075359, 51.1799723, -0.3075359, 51.1799723 ], "geometry": { "type": "Point", "coordinates": [ -0.3075359, 51.1799723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95367022" }, "bbox": [ -0.633973, 51.1174113, -0.633973, 51.1174113 ], "geometry": { "type": "Point", "coordinates": [ -0.633973, 51.1174113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33515713" }, "bbox": [ -0.0876418, 51.243711, -0.0876418, 51.243711 ], "geometry": { "type": "Point", "coordinates": [ -0.0876418, 51.243711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22497092" }, "bbox": [ -0.2439113, 51.235223, -0.2439113, 51.235223 ], "geometry": { "type": "Point", "coordinates": [ -0.2439113, 51.235223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12487204" }, "bbox": [ -0.3881058, 51.2201707, -0.3881058, 51.2201707 ], "geometry": { "type": "Point", "coordinates": [ -0.3881058, 51.2201707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11481167" }, "bbox": [ -0.4103885, 51.2263879, -0.4103885, 51.2263879 ], "geometry": { "type": "Point", "coordinates": [ -0.4103885, 51.2263879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13463926" }, "bbox": [ -0.3782626, 51.2049486, -0.3782626, 51.2049486 ], "geometry": { "type": "Point", "coordinates": [ -0.3782626, 51.2049486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10486062" }, "bbox": [ -0.4173783, 51.2260718, -0.4173783, 51.2260718 ], "geometry": { "type": "Point", "coordinates": [ -0.4173783, 51.2260718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10488764" }, "bbox": [ -0.4136256, 51.2262402, -0.4136256, 51.2262402 ], "geometry": { "type": "Point", "coordinates": [ -0.4136256, 51.2262402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10477871" }, "bbox": [ -0.4151447, 51.2178949, -0.4151447, 51.2178949 ], "geometry": { "type": "Point", "coordinates": [ -0.4151447, 51.2178949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19460638" }, "bbox": [ -0.2967151, 51.2041672, -0.2967151, 51.2041672 ], "geometry": { "type": "Point", "coordinates": [ -0.2967151, 51.2041672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19461238" }, "bbox": [ -0.2960442, 51.2042209, -0.2960442, 51.2042209 ], "geometry": { "type": "Point", "coordinates": [ -0.2960442, 51.2042209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19462157" }, "bbox": [ -0.2950219, 51.2059116, -0.2950219, 51.2059116 ], "geometry": { "type": "Point", "coordinates": [ -0.2950219, 51.2059116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10510901" }, "bbox": [ -0.4238436, 51.2475059, -0.4238436, 51.2475059 ], "geometry": { "type": "Point", "coordinates": [ -0.4238436, 51.2475059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10511005" }, "bbox": [ -0.4238239, 51.2481029, -0.4238239, 51.2481029 ], "geometry": { "type": "Point", "coordinates": [ -0.4238239, 51.2481029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10505296" }, "bbox": [ -0.4178412, 51.2470633, -0.4178412, 51.2470633 ], "geometry": { "type": "Point", "coordinates": [ -0.4178412, 51.2470633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493521" }, "bbox": [ -0.0629213, 51.2260967, -0.0629213, 51.2260967 ], "geometry": { "type": "Point", "coordinates": [ -0.0629213, 51.2260967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19384002" }, "bbox": [ -0.2949189, 51.1291636, -0.2949189, 51.1291636 ], "geometry": { "type": "Point", "coordinates": [ -0.2949189, 51.1291636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375326" }, "bbox": [ -0.3504464, 51.1230835, -0.3504464, 51.1230835 ], "geometry": { "type": "Point", "coordinates": [ -0.3504464, 51.1230835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15376836" }, "bbox": [ -0.3482355, 51.1236471, -0.3482355, 51.1236471 ], "geometry": { "type": "Point", "coordinates": [ -0.3482355, 51.1236471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15376427" }, "bbox": [ -0.3488022, 51.12309, -0.3488022, 51.12309 ], "geometry": { "type": "Point", "coordinates": [ -0.3488022, 51.12309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15376341" }, "bbox": [ -0.3492037, 51.12425, -0.3492037, 51.12425 ], "geometry": { "type": "Point", "coordinates": [ -0.3492037, 51.12425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15375235" }, "bbox": [ -0.3504696, 51.1239364, -0.3504696, 51.1239364 ], "geometry": { "type": "Point", "coordinates": [ -0.3504696, 51.1239364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94333294" }, "bbox": [ -0.6545859, 51.0975713, -0.6545859, 51.0975713 ], "geometry": { "type": "Point", "coordinates": [ -0.6545859, 51.0975713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94332772" }, "bbox": [ -0.6550718, 51.0950288, -0.6550718, 51.0950288 ], "geometry": { "type": "Point", "coordinates": [ -0.6550718, 51.0950288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90381967" }, "bbox": [ -0.7120385, 51.1402448, -0.7120385, 51.1402448 ], "geometry": { "type": "Point", "coordinates": [ -0.7120385, 51.1402448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495239" }, "bbox": [ -0.0604615, 51.2276369, -0.0604615, 51.2276369 ], "geometry": { "type": "Point", "coordinates": [ -0.0604615, 51.2276369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495358" }, "bbox": [ -0.0602446, 51.2293622, -0.0602446, 51.2293622 ], "geometry": { "type": "Point", "coordinates": [ -0.0602446, 51.2293622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495941" }, "bbox": [ -0.0593316, 51.2278114, -0.0593316, 51.2278114 ], "geometry": { "type": "Point", "coordinates": [ -0.0593316, 51.2278114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495756" }, "bbox": [ -0.0596922, 51.2292754, -0.0596922, 51.2292754 ], "geometry": { "type": "Point", "coordinates": [ -0.0596922, 51.2292754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35495950" }, "bbox": [ -0.0594175, 51.228548, -0.0594175, 51.228548 ], "geometry": { "type": "Point", "coordinates": [ -0.0594175, 51.228548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407303" }, "bbox": [ -0.3039232, 51.1472607, -0.3039232, 51.1472607 ], "geometry": { "type": "Point", "coordinates": [ -0.3039232, 51.1472607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93323128" }, "bbox": [ -0.6691441, 51.0823071, -0.6691441, 51.0823071 ], "geometry": { "type": "Point", "coordinates": [ -0.6691441, 51.0823071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460077" }, "bbox": [ -0.3694279, 51.2089189, -0.3694279, 51.2089189 ], "geometry": { "type": "Point", "coordinates": [ -0.3694279, 51.2089189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97473041" }, "bbox": [ -0.6079845, 51.2176207, -0.6079845, 51.2176207 ], "geometry": { "type": "Point", "coordinates": [ -0.6079845, 51.2176207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97474636" }, "bbox": [ -0.6058852, 51.2171818, -0.6058852, 51.2171818 ], "geometry": { "type": "Point", "coordinates": [ -0.6058852, 51.2171818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91357053" }, "bbox": [ -0.6914246, 51.1117663, -0.6914246, 51.1117663 ], "geometry": { "type": "Point", "coordinates": [ -0.6914246, 51.1117663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00439884" }, "bbox": [ -0.556637, 51.1848984, -0.556637, 51.1848984 ], "geometry": { "type": "Point", "coordinates": [ -0.556637, 51.1848984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01431098" }, "bbox": [ -0.5546831, 51.1861303, -0.5546831, 51.1861303 ], "geometry": { "type": "Point", "coordinates": [ -0.5546831, 51.1861303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30489186" }, "bbox": [ -0.12669, 51.2239617, -0.12669, 51.2239617 ], "geometry": { "type": "Point", "coordinates": [ -0.12669, 51.2239617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31480179" }, "bbox": [ -0.1254664, 51.223299, -0.1254664, 51.223299 ], "geometry": { "type": "Point", "coordinates": [ -0.1254664, 51.223299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24454064" }, "bbox": [ -0.2208466, 51.1964316, -0.2208466, 51.1964316 ], "geometry": { "type": "Point", "coordinates": [ -0.2208466, 51.1964316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00357437" }, "bbox": [ -0.5625087, 51.1090124, -0.5625087, 51.1090124 ], "geometry": { "type": "Point", "coordinates": [ -0.5625087, 51.1090124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439849" }, "bbox": [ -0.7283755, 51.1836438, -0.7283755, 51.1836438 ], "geometry": { "type": "Point", "coordinates": [ -0.7283755, 51.1836438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88438759" }, "bbox": [ -0.7297265, 51.1846712, -0.7297265, 51.1846712 ], "geometry": { "type": "Point", "coordinates": [ -0.7297265, 51.1846712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89430261" }, "bbox": [ -0.7277385, 51.1847552, -0.7277385, 51.1847552 ], "geometry": { "type": "Point", "coordinates": [ -0.7277385, 51.1847552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32536492" }, "bbox": [ -0.1001073, 51.2690302, -0.1001073, 51.2690302 ], "geometry": { "type": "Point", "coordinates": [ -0.1001073, 51.2690302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32547160" }, "bbox": [ -0.098783, 51.2751675, -0.098783, 51.2751675 ], "geometry": { "type": "Point", "coordinates": [ -0.098783, 51.2751675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32546516" }, "bbox": [ -0.0998677, 51.2711736, -0.0998677, 51.2711736 ], "geometry": { "type": "Point", "coordinates": [ -0.0998677, 51.2711736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32545836" }, "bbox": [ -0.1006647, 51.2729294, -0.1006647, 51.2729294 ], "geometry": { "type": "Point", "coordinates": [ -0.1006647, 51.2729294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06376798" }, "bbox": [ -0.4768693, 51.131222, -0.4768693, 51.131222 ], "geometry": { "type": "Point", "coordinates": [ -0.4768693, 51.131222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12402047" }, "bbox": [ -0.3972065, 51.1528256, -0.3972065, 51.1528256 ], "geometry": { "type": "Point", "coordinates": [ -0.3972065, 51.1528256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12403549" }, "bbox": [ -0.3950462, 51.1526116, -0.3950462, 51.1526116 ], "geometry": { "type": "Point", "coordinates": [ -0.3950462, 51.1526116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06451619" }, "bbox": [ -0.4820471, 51.1962791, -0.4820471, 51.1962791 ], "geometry": { "type": "Point", "coordinates": [ -0.4820471, 51.1962791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03352777" }, "bbox": [ -0.5259241, 51.1114513, -0.5259241, 51.1114513 ], "geometry": { "type": "Point", "coordinates": [ -0.5259241, 51.1114513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02359938" }, "bbox": [ -0.5298797, 51.1086648, -0.5298797, 51.1086648 ], "geometry": { "type": "Point", "coordinates": [ -0.5298797, 51.1086648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517273" }, "bbox": [ -0.4576288, 51.2543969, -0.4576288, 51.2543969 ], "geometry": { "type": "Point", "coordinates": [ -0.4576288, 51.2543969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08500181" }, "bbox": [ -0.4540379, 51.2463038, -0.4540379, 51.2463038 ], "geometry": { "type": "Point", "coordinates": [ -0.4540379, 51.2463038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517378" }, "bbox": [ -0.4574642, 51.2550607, -0.4574642, 51.2550607 ], "geometry": { "type": "Point", "coordinates": [ -0.4574642, 51.2550607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07516712" }, "bbox": [ -0.4586437, 51.2491558, -0.4586437, 51.2491558 ], "geometry": { "type": "Point", "coordinates": [ -0.4586437, 51.2491558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517884" }, "bbox": [ -0.4568921, 51.2555592, -0.4568921, 51.2555592 ], "geometry": { "type": "Point", "coordinates": [ -0.4568921, 51.2555592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07509188" }, "bbox": [ -0.4552742, 51.246952, -0.4552742, 51.246952 ], "geometry": { "type": "Point", "coordinates": [ -0.4552742, 51.246952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21450661" }, "bbox": [ -0.268715, 51.1973402, -0.268715, 51.1973402 ], "geometry": { "type": "Point", "coordinates": [ -0.268715, 51.1973402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09579578" }, "bbox": [ -0.4238932, 51.3085574, -0.4238932, 51.3085574 ], "geometry": { "type": "Point", "coordinates": [ -0.4238932, 51.3085574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09578068" }, "bbox": [ -0.4259203, 51.3076555, -0.4259203, 51.3076555 ], "geometry": { "type": "Point", "coordinates": [ -0.4259203, 51.3076555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09578278" }, "bbox": [ -0.4257315, 51.3086167, -0.4257315, 51.3086167 ], "geometry": { "type": "Point", "coordinates": [ -0.4257315, 51.3086167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576665" }, "bbox": [ -0.4282328, 51.3073346, -0.4282328, 51.3073346 ], "geometry": { "type": "Point", "coordinates": [ -0.4282328, 51.3073346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09577362" }, "bbox": [ -0.4275331, 51.3071587, -0.4275331, 51.3071587 ], "geometry": { "type": "Point", "coordinates": [ -0.4275331, 51.3071587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11434816" }, "bbox": [ -0.4065095, 51.1769301, -0.4065095, 51.1769301 ], "geometry": { "type": "Point", "coordinates": [ -0.4065095, 51.1769301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11434520" }, "bbox": [ -0.4068445, 51.1771337, -0.4068445, 51.1771337 ], "geometry": { "type": "Point", "coordinates": [ -0.4068445, 51.1771337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11593598" }, "bbox": [ -0.4034377, 51.3286043, -0.4034377, 51.3286043 ], "geometry": { "type": "Point", "coordinates": [ -0.4034377, 51.3286043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11594191" }, "bbox": [ -0.4023688, 51.3273954, -0.4023688, 51.3273954 ], "geometry": { "type": "Point", "coordinates": [ -0.4023688, 51.3273954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11603120" }, "bbox": [ -0.4036543, 51.3299994, -0.4036543, 51.3299994 ], "geometry": { "type": "Point", "coordinates": [ -0.4036543, 51.3299994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08662138" }, "bbox": [ -0.4482973, 51.3864893, -0.4482973, 51.3864893 ], "geometry": { "type": "Point", "coordinates": [ -0.4482973, 51.3864893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12637387" }, "bbox": [ -0.3821741, 51.3627307, -0.3821741, 51.3627307 ], "geometry": { "type": "Point", "coordinates": [ -0.3821741, 51.3627307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12632768" }, "bbox": [ -0.3879214, 51.3613957, -0.3879214, 51.3613957 ], "geometry": { "type": "Point", "coordinates": [ -0.3879214, 51.3613957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12635985" }, "bbox": [ -0.3842427, 51.3625255, -0.3842427, 51.3625255 ], "geometry": { "type": "Point", "coordinates": [ -0.3842427, 51.3625255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12638892" }, "bbox": [ -0.3799805, 51.3631411, -0.3799805, 51.3631411 ], "geometry": { "type": "Point", "coordinates": [ -0.3799805, 51.3631411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12638491" }, "bbox": [ -0.380695, 51.363033, -0.380695, 51.363033 ], "geometry": { "type": "Point", "coordinates": [ -0.380695, 51.363033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12637133" }, "bbox": [ -0.3823949, 51.35785, -0.3823949, 51.35785 ], "geometry": { "type": "Point", "coordinates": [ -0.3823949, 51.35785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12636686" }, "bbox": [ -0.3831519, 51.3626526, -0.3831519, 51.3626526 ], "geometry": { "type": "Point", "coordinates": [ -0.3831519, 51.3626526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11636485" }, "bbox": [ -0.3980138, 51.3627439, -0.3980138, 51.3627439 ], "geometry": { "type": "Point", "coordinates": [ -0.3980138, 51.3627439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13479593" }, "bbox": [ -0.3697457, 51.2193194, -0.3697457, 51.2193194 ], "geometry": { "type": "Point", "coordinates": [ -0.3697457, 51.2193194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13479689" }, "bbox": [ -0.3692629, 51.2184408, -0.3692629, 51.2184408 ], "geometry": { "type": "Point", "coordinates": [ -0.3692629, 51.2184408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15448300" }, "bbox": [ -0.3441616, 51.1837284, -0.3441616, 51.1837284 ], "geometry": { "type": "Point", "coordinates": [ -0.3441616, 51.1837284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00446324" }, "bbox": [ -0.5614459, 51.1885395, -0.5614459, 51.1885395 ], "geometry": { "type": "Point", "coordinates": [ -0.5614459, 51.1885395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15396757" }, "bbox": [ -0.3483535, 51.1435054, -0.3483535, 51.1435054 ], "geometry": { "type": "Point", "coordinates": [ -0.3483535, 51.1435054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01435340" }, "bbox": [ -0.5488986, 51.1808132, -0.5488986, 51.1808132 ], "geometry": { "type": "Point", "coordinates": [ -0.5488986, 51.1808132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422858" }, "bbox": [ -0.5527638, 51.1734955, -0.5527638, 51.1734955 ], "geometry": { "type": "Point", "coordinates": [ -0.5527638, 51.1734955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02334465" }, "bbox": [ -0.5386089, 51.0929729, -0.5386089, 51.0929729 ], "geometry": { "type": "Point", "coordinates": [ -0.5386089, 51.0929729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19438024" }, "bbox": [ -0.2876228, 51.1758532, -0.2876228, 51.1758532 ], "geometry": { "type": "Point", "coordinates": [ -0.2876228, 51.1758532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26601255" }, "bbox": [ -0.1911778, 51.3301746, -0.1911778, 51.3301746 ], "geometry": { "type": "Point", "coordinates": [ -0.1911778, 51.3301746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476758" }, "bbox": [ -0.3022822, 51.2152313, -0.3022822, 51.2152313 ], "geometry": { "type": "Point", "coordinates": [ -0.3022822, 51.2152313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18476652" }, "bbox": [ -0.3025852, 51.2146261, -0.3025852, 51.2146261 ], "geometry": { "type": "Point", "coordinates": [ -0.3025852, 51.2146261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00615394" }, "bbox": [ -0.5569081, 51.3474427, -0.5569081, 51.3474427 ], "geometry": { "type": "Point", "coordinates": [ -0.5569081, 51.3474427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00616868" }, "bbox": [ -0.5557282, 51.3456673, -0.5557282, 51.3456673 ], "geometry": { "type": "Point", "coordinates": [ -0.5557282, 51.3456673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01636203" }, "bbox": [ -0.5420546, 51.3572459, -0.5420546, 51.3572459 ], "geometry": { "type": "Point", "coordinates": [ -0.5420546, 51.3572459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01624784" }, "bbox": [ -0.5441718, 51.3556282, -0.5441718, 51.3556282 ], "geometry": { "type": "Point", "coordinates": [ -0.5441718, 51.3556282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01625759" }, "bbox": [ -0.5428986, 51.35332, -0.5428986, 51.35332 ], "geometry": { "type": "Point", "coordinates": [ -0.5428986, 51.35332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01621876" }, "bbox": [ -0.5483005, 51.3549457, -0.5483005, 51.3549457 ], "geometry": { "type": "Point", "coordinates": [ -0.5483005, 51.3549457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01623627" }, "bbox": [ -0.545977, 51.3506055, -0.545977, 51.3506055 ], "geometry": { "type": "Point", "coordinates": [ -0.545977, 51.3506055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01623280" }, "bbox": [ -0.546234, 51.3552965, -0.546234, 51.3552965 ], "geometry": { "type": "Point", "coordinates": [ -0.546234, 51.3552965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01625575" }, "bbox": [ -0.5428311, 51.3547649, -0.5428311, 51.3547649 ], "geometry": { "type": "Point", "coordinates": [ -0.5428311, 51.3547649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01623358" }, "bbox": [ -0.5462911, 51.3532001, -0.5462911, 51.3532001 ], "geometry": { "type": "Point", "coordinates": [ -0.5462911, 51.3532001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01622024" }, "bbox": [ -0.5480809, 51.3501111, -0.5480809, 51.3501111 ], "geometry": { "type": "Point", "coordinates": [ -0.5480809, 51.3501111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00624927" }, "bbox": [ -0.5585842, 51.3507872, -0.5585842, 51.3507872 ], "geometry": { "type": "Point", "coordinates": [ -0.5585842, 51.3507872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00629717" }, "bbox": [ -0.5517493, 51.3498454, -0.5517493, 51.3498454 ], "geometry": { "type": "Point", "coordinates": [ -0.5517493, 51.3498454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00629586" }, "bbox": [ -0.5516554, 51.3557284, -0.5516554, 51.3557284 ], "geometry": { "type": "Point", "coordinates": [ -0.5516554, 51.3557284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11574219" }, "bbox": [ -0.4031103, 51.3028045, -0.4031103, 51.3028045 ], "geometry": { "type": "Point", "coordinates": [ -0.4031103, 51.3028045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11573308" }, "bbox": [ -0.4044508, 51.3019475, -0.4044508, 51.3019475 ], "geometry": { "type": "Point", "coordinates": [ -0.4044508, 51.3019475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11562096" }, "bbox": [ -0.4063318, 51.3008865, -0.4063318, 51.3008865 ], "geometry": { "type": "Point", "coordinates": [ -0.4063318, 51.3008865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11563849" }, "bbox": [ -0.4040473, 51.2967144, -0.4040473, 51.2967144 ], "geometry": { "type": "Point", "coordinates": [ -0.4040473, 51.2967144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11562676" }, "bbox": [ -0.4056168, 51.2990258, -0.4056168, 51.2990258 ], "geometry": { "type": "Point", "coordinates": [ -0.4056168, 51.2990258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521483" }, "bbox": [ -0.3939699, 51.2635816, -0.3939699, 51.2635816 ], "geometry": { "type": "Point", "coordinates": [ -0.3939699, 51.2635816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522228" }, "bbox": [ -0.393153, 51.2586512, -0.393153, 51.2586512 ], "geometry": { "type": "Point", "coordinates": [ -0.393153, 51.2586512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522089" }, "bbox": [ -0.3932653, 51.264218, -0.3932653, 51.264218 ], "geometry": { "type": "Point", "coordinates": [ -0.3932653, 51.264218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521929" }, "bbox": [ -0.3935067, 51.2586038, -0.3935067, 51.2586038 ], "geometry": { "type": "Point", "coordinates": [ -0.3935067, 51.2586038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522490" }, "bbox": [ -0.392459, 51.2642285, -0.392459, 51.2642285 ], "geometry": { "type": "Point", "coordinates": [ -0.392459, 51.2642285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04449211" }, "bbox": [ -0.5000995, 51.1866272, -0.5000995, 51.1866272 ], "geometry": { "type": "Point", "coordinates": [ -0.5000995, 51.1866272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05432286" }, "bbox": [ -0.4958159, 51.1843132, -0.4958159, 51.1843132 ], "geometry": { "type": "Point", "coordinates": [ -0.4958159, 51.1843132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04434658" }, "bbox": [ -0.5066216, 51.1817945, -0.5066216, 51.1817945 ], "geometry": { "type": "Point", "coordinates": [ -0.5066216, 51.1817945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08354051" }, "bbox": [ -0.4522546, 51.1089903, -0.4522546, 51.1089903 ], "geometry": { "type": "Point", "coordinates": [ -0.4522546, 51.1089903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07367994" }, "bbox": [ -0.4622264, 51.1216541, -0.4622264, 51.1216541 ], "geometry": { "type": "Point", "coordinates": [ -0.4622264, 51.1216541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07359981" }, "bbox": [ -0.4599289, 51.111337, -0.4599289, 51.111337 ], "geometry": { "type": "Point", "coordinates": [ -0.4599289, 51.111337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09360717" }, "bbox": [ -0.4428968, 51.1145736, -0.4428968, 51.1145736 ], "geometry": { "type": "Point", "coordinates": [ -0.4428968, 51.1145736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403054" }, "bbox": [ -0.4096528, 51.1532971, -0.4096528, 51.1532971 ], "geometry": { "type": "Point", "coordinates": [ -0.4096528, 51.1532971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08695709" }, "bbox": [ -0.4405632, 51.4102185, -0.4405632, 51.4102185 ], "geometry": { "type": "Point", "coordinates": [ -0.4405632, 51.4102185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08683894" }, "bbox": [ -0.4432871, 51.4091104, -0.4432871, 51.4091104 ], "geometry": { "type": "Point", "coordinates": [ -0.4432871, 51.4091104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20566612" }, "bbox": [ -0.2708871, 51.2915759, -0.2708871, 51.2915759 ], "geometry": { "type": "Point", "coordinates": [ -0.2708871, 51.2915759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20563981" }, "bbox": [ -0.2744305, 51.297863, -0.2744305, 51.297863 ], "geometry": { "type": "Point", "coordinates": [ -0.2744305, 51.297863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99439470" }, "bbox": [ -0.5713531, 51.1837707, -0.5713531, 51.1837707 ], "geometry": { "type": "Point", "coordinates": [ -0.5713531, 51.1837707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99436454" }, "bbox": [ -0.575951, 51.1824139, -0.575951, 51.1824139 ], "geometry": { "type": "Point", "coordinates": [ -0.575951, 51.1824139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10614941" }, "bbox": [ -0.4150578, 51.3408673, -0.4150578, 51.3408673 ], "geometry": { "type": "Point", "coordinates": [ -0.4150578, 51.3408673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11601187" }, "bbox": [ -0.4062221, 51.3360461, -0.4062221, 51.3360461 ], "geometry": { "type": "Point", "coordinates": [ -0.4062221, 51.3360461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10618246" }, "bbox": [ -0.4103817, 51.3414754, -0.4103817, 51.3414754 ], "geometry": { "type": "Point", "coordinates": [ -0.4103817, 51.3414754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10615515" }, "bbox": [ -0.4143096, 51.338718, -0.4143096, 51.338718 ], "geometry": { "type": "Point", "coordinates": [ -0.4143096, 51.338718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11600994" }, "bbox": [ -0.4066944, 51.3366713, -0.4066944, 51.3366713 ], "geometry": { "type": "Point", "coordinates": [ -0.4066944, 51.3366713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14614527" }, "bbox": [ -0.3582215, 51.3390542, -0.3582215, 51.3390542 ], "geometry": { "type": "Point", "coordinates": [ -0.3582215, 51.3390542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13607955" }, "bbox": [ -0.3678488, 51.332716, -0.3678488, 51.332716 ], "geometry": { "type": "Point", "coordinates": [ -0.3678488, 51.332716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13609262" }, "bbox": [ -0.3661029, 51.3332908, -0.3661029, 51.3332908 ], "geometry": { "type": "Point", "coordinates": [ -0.3661029, 51.3332908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13601811" }, "bbox": [ -0.3762942, 51.3295508, -0.3762942, 51.3295508 ], "geometry": { "type": "Point", "coordinates": [ -0.3762942, 51.3295508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13603437" }, "bbox": [ -0.3744575, 51.3312055, -0.3744575, 51.3312055 ], "geometry": { "type": "Point", "coordinates": [ -0.3744575, 51.3312055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10615325" }, "bbox": [ -0.4146513, 51.3396345, -0.4146513, 51.3396345 ], "geometry": { "type": "Point", "coordinates": [ -0.4146513, 51.3396345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10617505" }, "bbox": [ -0.4104755, 51.3374698, -0.4104755, 51.3374698 ], "geometry": { "type": "Point", "coordinates": [ -0.4104755, 51.3374698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10605984" }, "bbox": [ -0.4139381, 51.3359072, -0.4139381, 51.3359072 ], "geometry": { "type": "Point", "coordinates": [ -0.4139381, 51.3359072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10608596" }, "bbox": [ -0.4099665, 51.3367602, -0.4099665, 51.3367602 ], "geometry": { "type": "Point", "coordinates": [ -0.4099665, 51.3367602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10609086" }, "bbox": [ -0.4094411, 51.3360717, -0.4094411, 51.3360717 ], "geometry": { "type": "Point", "coordinates": [ -0.4094411, 51.3360717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10607587" }, "bbox": [ -0.4115444, 51.3362112, -0.4115444, 51.3362112 ], "geometry": { "type": "Point", "coordinates": [ -0.4115444, 51.3362112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10606383" }, "bbox": [ -0.4132202, 51.335869, -0.4132202, 51.335869 ], "geometry": { "type": "Point", "coordinates": [ -0.4132202, 51.335869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07636148" }, "bbox": [ -0.455572, 51.3602643, -0.455572, 51.3602643 ], "geometry": { "type": "Point", "coordinates": [ -0.455572, 51.3602643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07637392" }, "bbox": [ -0.45401, 51.3641106, -0.45401, 51.3641106 ], "geometry": { "type": "Point", "coordinates": [ -0.45401, 51.3641106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07634686" }, "bbox": [ -0.4575686, 51.3635997, -0.4575686, 51.3635997 ], "geometry": { "type": "Point", "coordinates": [ -0.4575686, 51.3635997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07634952" }, "bbox": [ -0.4573385, 51.3606063, -0.4573385, 51.3606063 ], "geometry": { "type": "Point", "coordinates": [ -0.4573385, 51.3606063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07638588" }, "bbox": [ -0.4522019, 51.363823, -0.4522019, 51.363823 ], "geometry": { "type": "Point", "coordinates": [ -0.4522019, 51.363823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15663446" }, "bbox": [ -0.3439222, 51.3859157, -0.3439222, 51.3859157 ], "geometry": { "type": "Point", "coordinates": [ -0.3439222, 51.3859157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15660905" }, "bbox": [ -0.3476447, 51.3816389, -0.3476447, 51.3816389 ], "geometry": { "type": "Point", "coordinates": [ -0.3476447, 51.3816389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15652270" }, "bbox": [ -0.3457768, 51.3787945, -0.3457768, 51.3787945 ], "geometry": { "type": "Point", "coordinates": [ -0.3457768, 51.3787945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15651068" }, "bbox": [ -0.3475551, 51.3785113, -0.3475551, 51.3785113 ], "geometry": { "type": "Point", "coordinates": [ -0.3475551, 51.3785113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15651316" }, "bbox": [ -0.3473066, 51.3738373, -0.3473066, 51.3738373 ], "geometry": { "type": "Point", "coordinates": [ -0.3473066, 51.3738373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15650471" }, "bbox": [ -0.3485396, 51.3787875, -0.3485396, 51.3787875 ], "geometry": { "type": "Point", "coordinates": [ -0.3485396, 51.3787875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15648061" }, "bbox": [ -0.3378696, 51.3687183, -0.3378696, 51.3687183 ], "geometry": { "type": "Point", "coordinates": [ -0.3378696, 51.3687183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15648164" }, "bbox": [ -0.3376013, 51.3689571, -0.3376013, 51.3689571 ], "geometry": { "type": "Point", "coordinates": [ -0.3376013, 51.3689571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15647173" }, "bbox": [ -0.3389839, 51.3700724, -0.3389839, 51.3700724 ], "geometry": { "type": "Point", "coordinates": [ -0.3389839, 51.3700724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14649169" }, "bbox": [ -0.3505699, 51.3695793, -0.3505699, 51.3695793 ], "geometry": { "type": "Point", "coordinates": [ -0.3505699, 51.3695793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27424958" }, "bbox": [ -0.1778482, 51.1683384, -0.1778482, 51.1683384 ], "geometry": { "type": "Point", "coordinates": [ -0.1778482, 51.1683384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07481798" }, "bbox": [ -0.4663709, 51.230037, -0.4663709, 51.230037 ], "geometry": { "type": "Point", "coordinates": [ -0.4663709, 51.230037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489796" }, "bbox": [ -0.4690106, 51.2299525, -0.4690106, 51.2299525 ], "geometry": { "type": "Point", "coordinates": [ -0.4690106, 51.2299525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82481695" }, "bbox": [ -0.8244496, 51.2338222, -0.8244496, 51.2338222 ], "geometry": { "type": "Point", "coordinates": [ -0.8244496, 51.2338222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03451015" }, "bbox": [ -0.5259241, 51.1961918, -0.5259241, 51.1961918 ], "geometry": { "type": "Point", "coordinates": [ -0.5259241, 51.1961918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02449195" }, "bbox": [ -0.5285011, 51.1944487, -0.5285011, 51.1944487 ], "geometry": { "type": "Point", "coordinates": [ -0.5285011, 51.1944487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02447979" }, "bbox": [ -0.5303753, 51.1931782, -0.5303753, 51.1931782 ], "geometry": { "type": "Point", "coordinates": [ -0.5303753, 51.1931782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15586111" }, "bbox": [ -0.3429909, 51.3106362, -0.3429909, 51.3106362 ], "geometry": { "type": "Point", "coordinates": [ -0.3429909, 51.3106362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15585403" }, "bbox": [ -0.3444261, 51.3095146, -0.3444261, 51.3095146 ], "geometry": { "type": "Point", "coordinates": [ -0.3444261, 51.3095146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15574583" }, "bbox": [ -0.3449106, 51.3080054, -0.3449106, 51.3080054 ], "geometry": { "type": "Point", "coordinates": [ -0.3449106, 51.3080054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15571883" }, "bbox": [ -0.3487879, 51.3079983, -0.3487879, 51.3079983 ], "geometry": { "type": "Point", "coordinates": [ -0.3487879, 51.3079983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15572079" }, "bbox": [ -0.348574, 51.3072661, -0.348574, 51.3072661 ], "geometry": { "type": "Point", "coordinates": [ -0.348574, 51.3072661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15573169" }, "bbox": [ -0.3471075, 51.3066389, -0.3471075, 51.3066389 ], "geometry": { "type": "Point", "coordinates": [ -0.3471075, 51.3066389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15576292" }, "bbox": [ -0.3425712, 51.3087649, -0.3425712, 51.3087649 ], "geometry": { "type": "Point", "coordinates": [ -0.3425712, 51.3087649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04341401" }, "bbox": [ -0.5142482, 51.0953775, -0.5142482, 51.0953775 ], "geometry": { "type": "Point", "coordinates": [ -0.5142482, 51.0953775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04341819" }, "bbox": [ -0.5132552, 51.0976853, -0.5132552, 51.0976853 ], "geometry": { "type": "Point", "coordinates": [ -0.5132552, 51.0976853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04332088" }, "bbox": [ -0.5133249, 51.0944843, -0.5133249, 51.0944843 ], "geometry": { "type": "Point", "coordinates": [ -0.5133249, 51.0944843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04331267" }, "bbox": [ -0.514601, 51.0929485, -0.514601, 51.0929485 ], "geometry": { "type": "Point", "coordinates": [ -0.514601, 51.0929485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04442993" }, "bbox": [ -0.5088165, 51.194137, -0.5088165, 51.194137 ], "geometry": { "type": "Point", "coordinates": [ -0.5088165, 51.194137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04444578" }, "bbox": [ -0.5064835, 51.192454, -0.5064835, 51.192454 ], "geometry": { "type": "Point", "coordinates": [ -0.5064835, 51.192454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04445560" }, "bbox": [ -0.5052878, 51.1910346, -0.5052878, 51.1910346 ], "geometry": { "type": "Point", "coordinates": [ -0.5052878, 51.1910346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04445272" }, "bbox": [ -0.5055721, 51.1921608, -0.5055721, 51.1921608 ], "geometry": { "type": "Point", "coordinates": [ -0.5055721, 51.1921608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04445182" }, "bbox": [ -0.5057297, 51.1929973, -0.5057297, 51.1929973 ], "geometry": { "type": "Point", "coordinates": [ -0.5057297, 51.1929973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04444957" }, "bbox": [ -0.5060333, 51.1908286, -0.5060333, 51.1908286 ], "geometry": { "type": "Point", "coordinates": [ -0.5060333, 51.1908286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04443580" }, "bbox": [ -0.5079048, 51.192985, -0.5079048, 51.192985 ], "geometry": { "type": "Point", "coordinates": [ -0.5079048, 51.192985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04443185" }, "bbox": [ -0.508534, 51.1933477, -0.508534, 51.1933477 ], "geometry": { "type": "Point", "coordinates": [ -0.508534, 51.1933477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04442392" }, "bbox": [ -0.5096822, 51.1940882, -0.5096822, 51.1940882 ], "geometry": { "type": "Point", "coordinates": [ -0.5096822, 51.1940882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04444888" }, "bbox": [ -0.5061781, 51.1935543, -0.5061781, 51.1935543 ], "geometry": { "type": "Point", "coordinates": [ -0.5061781, 51.1935543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04455011" }, "bbox": [ -0.505958, 51.1957199, -0.505958, 51.1957199 ], "geometry": { "type": "Point", "coordinates": [ -0.505958, 51.1957199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04456841" }, "bbox": [ -0.5029714, 51.1982931, -0.5029714, 51.1982931 ], "geometry": { "type": "Point", "coordinates": [ -0.5029714, 51.1982931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21554190" }, "bbox": [ -0.2602372, 51.2893288, -0.2602372, 51.2893288 ], "geometry": { "type": "Point", "coordinates": [ -0.2602372, 51.2893288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21555087" }, "bbox": [ -0.258943, 51.2890806, -0.258943, 51.2890806 ], "geometry": { "type": "Point", "coordinates": [ -0.258943, 51.2890806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21553996" }, "bbox": [ -0.2604987, 51.289783, -0.2604987, 51.289783 ], "geometry": { "type": "Point", "coordinates": [ -0.2604987, 51.289783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21554793" }, "bbox": [ -0.2592288, 51.2893907, -0.2592288, 51.2893907 ], "geometry": { "type": "Point", "coordinates": [ -0.2592288, 51.2893907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21554285" }, "bbox": [ -0.2600582, 51.2889588, -0.2600582, 51.2889588 ], "geometry": { "type": "Point", "coordinates": [ -0.2600582, 51.2889588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00626864" }, "bbox": [ -0.5557166, 51.3541293, -0.5557166, 51.3541293 ], "geometry": { "type": "Point", "coordinates": [ -0.5557166, 51.3541293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00626155" }, "bbox": [ -0.5566921, 51.3534481, -0.5566921, 51.3534481 ], "geometry": { "type": "Point", "coordinates": [ -0.5566921, 51.3534481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00627843" }, "bbox": [ -0.5541586, 51.3520836, -0.5541586, 51.3520836 ], "geometry": { "type": "Point", "coordinates": [ -0.5541586, 51.3520836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09603320" }, "bbox": [ -0.4322177, 51.3306476, -0.4322177, 51.3306476 ], "geometry": { "type": "Point", "coordinates": [ -0.4322177, 51.3306476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12426519" }, "bbox": [ -0.3901048, 51.1679179, -0.3901048, 51.1679179 ], "geometry": { "type": "Point", "coordinates": [ -0.3901048, 51.1679179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12450574" }, "bbox": [ -0.3972098, 51.199768, -0.3972098, 51.199768 ], "geometry": { "type": "Point", "coordinates": [ -0.3972098, 51.199768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13443040" }, "bbox": [ -0.3763559, 51.1848579, -0.3763559, 51.1848579 ], "geometry": { "type": "Point", "coordinates": [ -0.3763559, 51.1848579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12445887" }, "bbox": [ -0.3910127, 51.1907035, -0.3910127, 51.1907035 ], "geometry": { "type": "Point", "coordinates": [ -0.3910127, 51.1907035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12445222" }, "bbox": [ -0.3897221, 51.1847781, -0.3897221, 51.1847781 ], "geometry": { "type": "Point", "coordinates": [ -0.3897221, 51.1847781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12439665" }, "bbox": [ -0.3848702, 51.1817509, -0.3848702, 51.1817509 ], "geometry": { "type": "Point", "coordinates": [ -0.3848702, 51.1817509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03552914" }, "bbox": [ -0.5204309, 51.2860995, -0.5204309, 51.2860995 ], "geometry": { "type": "Point", "coordinates": [ -0.5204309, 51.2860995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03553708" }, "bbox": [ -0.519004, 51.2855899, -0.519004, 51.2855899 ], "geometry": { "type": "Point", "coordinates": [ -0.519004, 51.2855899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98707423" }, "bbox": [ -0.5815645, 51.4226923, -0.5815645, 51.4226923 ], "geometry": { "type": "Point", "coordinates": [ -0.5815645, 51.4226923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98707736" }, "bbox": [ -0.5806887, 51.4236726, -0.5806887, 51.4236726 ], "geometry": { "type": "Point", "coordinates": [ -0.5806887, 51.4236726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05485494" }, "bbox": [ -0.4896906, 51.2300137, -0.4896906, 51.2300137 ], "geometry": { "type": "Point", "coordinates": [ -0.4896906, 51.2300137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91387776" }, "bbox": [ -0.6896913, 51.1407803, -0.6896913, 51.1407803 ], "geometry": { "type": "Point", "coordinates": [ -0.6896913, 51.1407803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08505395" }, "bbox": [ -0.4464144, 51.2473719, -0.4464144, 51.2473719 ], "geometry": { "type": "Point", "coordinates": [ -0.4464144, 51.2473719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08514823" }, "bbox": [ -0.4471293, 51.2499347, -0.4471293, 51.2499347 ], "geometry": { "type": "Point", "coordinates": [ -0.4471293, 51.2499347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03330566" }, "bbox": [ -0.5298958, 51.0929909, -0.5298958, 51.0929909 ], "geometry": { "type": "Point", "coordinates": [ -0.5298958, 51.0929909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94535372" }, "bbox": [ -0.645981, 51.2750641, -0.645981, 51.2750641 ], "geometry": { "type": "Point", "coordinates": [ -0.645981, 51.2750641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438758" }, "bbox": [ -0.7584913, 51.1849041, -0.7584913, 51.1849041 ], "geometry": { "type": "Point", "coordinates": [ -0.7584913, 51.1849041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86437850" }, "bbox": [ -0.7597555, 51.1841919, -0.7597555, 51.1841919 ], "geometry": { "type": "Point", "coordinates": [ -0.7597555, 51.1841919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438255" }, "bbox": [ -0.7591672, 51.184611, -0.7591672, 51.184611 ], "geometry": { "type": "Point", "coordinates": [ -0.7591672, 51.184611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400532" }, "bbox": [ -0.3991654, 51.1514588, -0.3991654, 51.1514588 ], "geometry": { "type": "Point", "coordinates": [ -0.3991654, 51.1514588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95468386" }, "bbox": [ -0.6297424, 51.2129941, -0.6297424, 51.2129941 ], "geometry": { "type": "Point", "coordinates": [ -0.6297424, 51.2129941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09355231" }, "bbox": [ -0.4369995, 51.1066527, -0.4369995, 51.1066527 ], "geometry": { "type": "Point", "coordinates": [ -0.4369995, 51.1066527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82447312" }, "bbox": [ -0.8175463, 51.1902983, -0.8175463, 51.1902983 ], "geometry": { "type": "Point", "coordinates": [ -0.8175463, 51.1902983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82446617" }, "bbox": [ -0.8185713, 51.1907292, -0.8185713, 51.1907292 ], "geometry": { "type": "Point", "coordinates": [ -0.8185713, 51.1907292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30409770" }, "bbox": [ -0.1287403, 51.1511268, -0.1287403, 51.1511268 ], "geometry": { "type": "Point", "coordinates": [ -0.1287403, 51.1511268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23468718" }, "bbox": [ -0.2283532, 51.2014257, -0.2283532, 51.2014257 ], "geometry": { "type": "Point", "coordinates": [ -0.2283532, 51.2014257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90357233" }, "bbox": [ -0.7053397, 51.1101651, -0.7053397, 51.1101651 ], "geometry": { "type": "Point", "coordinates": [ -0.7053397, 51.1101651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90357925" }, "bbox": [ -0.7044102, 51.1093735, -0.7044102, 51.1093735 ], "geometry": { "type": "Point", "coordinates": [ -0.7044102, 51.1093735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90346181" }, "bbox": [ -0.707024, 51.1054664, -0.707024, 51.1054664 ], "geometry": { "type": "Point", "coordinates": [ -0.707024, 51.1054664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94480119" }, "bbox": [ -0.6550474, 51.2252247, -0.6550474, 51.2252247 ], "geometry": { "type": "Point", "coordinates": [ -0.6550474, 51.2252247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479197" }, "bbox": [ -0.6564088, 51.2232792, -0.6564088, 51.2232792 ], "geometry": { "type": "Point", "coordinates": [ -0.6564088, 51.2232792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93489204" }, "bbox": [ -0.6563395, 51.22393, -0.6563395, 51.22393 ], "geometry": { "type": "Point", "coordinates": [ -0.6563395, 51.22393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93489200" }, "bbox": [ -0.6563773, 51.2236025, -0.6563773, 51.2236025 ], "geometry": { "type": "Point", "coordinates": [ -0.6563773, 51.2236025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93485504" }, "bbox": [ -0.6617908, 51.2239406, -0.6617908, 51.2239406 ], "geometry": { "type": "Point", "coordinates": [ -0.6617908, 51.2239406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94471199" }, "bbox": [ -0.6536387, 51.223418, -0.6536387, 51.223418 ], "geometry": { "type": "Point", "coordinates": [ -0.6536387, 51.223418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00621461" }, "bbox": [ -0.5633223, 51.3536787, -0.5633223, 51.3536787 ], "geometry": { "type": "Point", "coordinates": [ -0.5633223, 51.3536787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36607817" }, "bbox": [ -0.038681, 51.3240198, -0.038681, 51.3240198 ], "geometry": { "type": "Point", "coordinates": [ -0.038681, 51.3240198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24524680" }, "bbox": [ -0.2168435, 51.2611602, -0.2168435, 51.2611602 ], "geometry": { "type": "Point", "coordinates": [ -0.2168435, 51.2611602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37558229" }, "bbox": [ -0.0250927, 51.2799574, -0.0250927, 51.2799574 ], "geometry": { "type": "Point", "coordinates": [ -0.0250927, 51.2799574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89447466" }, "bbox": [ -0.716867, 51.1941456, -0.716867, 51.1941456 ], "geometry": { "type": "Point", "coordinates": [ -0.716867, 51.1941456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89454221" }, "bbox": [ -0.7213617, 51.1991627, -0.7213617, 51.1991627 ], "geometry": { "type": "Point", "coordinates": [ -0.7213617, 51.1991627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89455808" }, "bbox": [ -0.7192352, 51.1979535, -0.7192352, 51.1979535 ], "geometry": { "type": "Point", "coordinates": [ -0.7192352, 51.1979535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10416672" }, "bbox": [ -0.4189141, 51.1640434, -0.4189141, 51.1640434 ], "geometry": { "type": "Point", "coordinates": [ -0.4189141, 51.1640434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82429590" }, "bbox": [ -0.8153659, 51.1793456, -0.8153659, 51.1793456 ], "geometry": { "type": "Point", "coordinates": [ -0.8153659, 51.1793456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91343396" }, "bbox": [ -0.6967121, 51.1067622, -0.6967121, 51.1067622 ], "geometry": { "type": "Point", "coordinates": [ -0.6967121, 51.1067622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91343598" }, "bbox": [ -0.6964276, 51.1067892, -0.6964276, 51.1067892 ], "geometry": { "type": "Point", "coordinates": [ -0.6964276, 51.1067892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91343194" }, "bbox": [ -0.6971125, 51.1065742, -0.6971125, 51.1065742 ], "geometry": { "type": "Point", "coordinates": [ -0.6971125, 51.1065742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96467572" }, "bbox": [ -0.6162341, 51.2115937, -0.6162341, 51.2115937 ], "geometry": { "type": "Point", "coordinates": [ -0.6162341, 51.2115937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97463126" }, "bbox": [ -0.6082808, 51.2073309, -0.6082808, 51.2073309 ], "geometry": { "type": "Point", "coordinates": [ -0.6082808, 51.2073309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93544866" }, "bbox": [ -0.6610926, 51.2833785, -0.6610926, 51.2833785 ], "geometry": { "type": "Point", "coordinates": [ -0.6610926, 51.2833785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93544170" }, "bbox": [ -0.661577, 51.2839439, -0.661577, 51.2839439 ], "geometry": { "type": "Point", "coordinates": [ -0.661577, 51.2839439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83420823" }, "bbox": [ -0.8143175, 51.1733745, -0.8143175, 51.1733745 ], "geometry": { "type": "Point", "coordinates": [ -0.8143175, 51.1733745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82429054" }, "bbox": [ -0.8149855, 51.1756644, -0.8149855, 51.1756644 ], "geometry": { "type": "Point", "coordinates": [ -0.8149855, 51.1756644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547185" }, "bbox": [ -0.6146508, 51.2845486, -0.6146508, 51.2845486 ], "geometry": { "type": "Point", "coordinates": [ -0.6146508, 51.2845486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439270" }, "bbox": [ -0.7292959, 51.1855842, -0.7292959, 51.1855842 ], "geometry": { "type": "Point", "coordinates": [ -0.7292959, 51.1855842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88439449" }, "bbox": [ -0.728949, 51.1838104, -0.728949, 51.1838104 ], "geometry": { "type": "Point", "coordinates": [ -0.728949, 51.1838104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89431698" }, "bbox": [ -0.7254198, 51.1881731, -0.7254198, 51.1881731 ], "geometry": { "type": "Point", "coordinates": [ -0.7254198, 51.1881731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89430197" }, "bbox": [ -0.7276161, 51.1880557, -0.7276161, 51.1880557 ], "geometry": { "type": "Point", "coordinates": [ -0.7276161, 51.1880557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89430588" }, "bbox": [ -0.7271362, 51.1874947, -0.7271362, 51.1874947 ], "geometry": { "type": "Point", "coordinates": [ -0.7271362, 51.1874947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433492" }, "bbox": [ -0.7228791, 51.1875699, -0.7228791, 51.1875699 ], "geometry": { "type": "Point", "coordinates": [ -0.7228791, 51.1875699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89432395" }, "bbox": [ -0.7244066, 51.187858, -0.7244066, 51.187858 ], "geometry": { "type": "Point", "coordinates": [ -0.7244066, 51.187858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332263" }, "bbox": [ -0.6127753, 51.0933496, -0.6127753, 51.0933496 ], "geometry": { "type": "Point", "coordinates": [ -0.6127753, 51.0933496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96481610" }, "bbox": [ -0.6241682, 51.223792, -0.6241682, 51.223792 ], "geometry": { "type": "Point", "coordinates": [ -0.6241682, 51.223792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96471659" }, "bbox": [ -0.6242399, 51.2194312, -0.6242399, 51.2194312 ], "geometry": { "type": "Point", "coordinates": [ -0.6242399, 51.2194312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10421817" }, "bbox": [ -0.4254184, 51.1682358, -0.4254184, 51.1682358 ], "geometry": { "type": "Point", "coordinates": [ -0.4254184, 51.1682358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91364706" }, "bbox": [ -0.6953019, 51.1163452, -0.6953019, 51.1163452 ], "geometry": { "type": "Point", "coordinates": [ -0.6953019, 51.1163452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91365815" }, "bbox": [ -0.6927389, 51.1174248, -0.6927389, 51.1174248 ], "geometry": { "type": "Point", "coordinates": [ -0.6927389, 51.1174248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368970" }, "bbox": [ -0.6884388, 51.1222222, -0.6884388, 51.1222222 ], "geometry": { "type": "Point", "coordinates": [ -0.6884388, 51.1222222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91374934" }, "bbox": [ -0.6937037, 51.1282054, -0.6937037, 51.1282054 ], "geometry": { "type": "Point", "coordinates": [ -0.6937037, 51.1282054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93550876" }, "bbox": [ -0.6664396, 51.2933398, -0.6664396, 51.2933398 ], "geometry": { "type": "Point", "coordinates": [ -0.6664396, 51.2933398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93557844" }, "bbox": [ -0.6563995, 51.290441, -0.6563995, 51.290441 ], "geometry": { "type": "Point", "coordinates": [ -0.6563995, 51.290441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93559556" }, "bbox": [ -0.6544445, 51.2913696, -0.6544445, 51.2913696 ], "geometry": { "type": "Point", "coordinates": [ -0.6544445, 51.2913696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83403595" }, "bbox": [ -0.8106489, 51.1615242, -0.8106489, 51.1615242 ], "geometry": { "type": "Point", "coordinates": [ -0.8106489, 51.1615242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29463574" }, "bbox": [ -0.1497046, 51.2052618, -0.1497046, 51.2052618 ], "geometry": { "type": "Point", "coordinates": [ -0.1497046, 51.2052618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93510919" }, "bbox": [ -0.6674977, 51.252208, -0.6674977, 51.252208 ], "geometry": { "type": "Point", "coordinates": [ -0.6674977, 51.252208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95527877" }, "bbox": [ -0.628491, 51.2660704, -0.628491, 51.2660704 ], "geometry": { "type": "Point", "coordinates": [ -0.628491, 51.2660704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94527283" }, "bbox": [ -0.6436374, 51.2668615, -0.6436374, 51.2668615 ], "geometry": { "type": "Point", "coordinates": [ -0.6436374, 51.2668615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522713" }, "bbox": [ -0.60776, 51.2599259, -0.60776, 51.2599259 ], "geometry": { "type": "Point", "coordinates": [ -0.60776, 51.2599259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532715" }, "bbox": [ -0.6213374, 51.2694397, -0.6213374, 51.2694397 ], "geometry": { "type": "Point", "coordinates": [ -0.6213374, 51.2694397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96535674" }, "bbox": [ -0.6170643, 51.2746292, -0.6170643, 51.2746292 ], "geometry": { "type": "Point", "coordinates": [ -0.6170643, 51.2746292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96531042" }, "bbox": [ -0.6237972, 51.2717892, -0.6237972, 51.2717892 ], "geometry": { "type": "Point", "coordinates": [ -0.6237972, 51.2717892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537370" }, "bbox": [ -0.6145676, 51.2742887, -0.6145676, 51.2742887 ], "geometry": { "type": "Point", "coordinates": [ -0.6145676, 51.2742887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96533717" }, "bbox": [ -0.619948, 51.2695661, -0.619948, 51.2695661 ], "geometry": { "type": "Point", "coordinates": [ -0.619948, 51.2695661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537844" }, "bbox": [ -0.6139344, 51.2719867, -0.6139344, 51.2719867 ], "geometry": { "type": "Point", "coordinates": [ -0.6139344, 51.2719867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96535816" }, "bbox": [ -0.6169247, 51.2692891, -0.6169247, 51.2692891 ], "geometry": { "type": "Point", "coordinates": [ -0.6169247, 51.2692891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96534207" }, "bbox": [ -0.6192133, 51.2687135, -0.6192133, 51.2687135 ], "geometry": { "type": "Point", "coordinates": [ -0.6192133, 51.2687135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90507228" }, "bbox": [ -0.7016381, 51.2445632, -0.7016381, 51.2445632 ], "geometry": { "type": "Point", "coordinates": [ -0.7016381, 51.2445632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509455" }, "bbox": [ -0.6984942, 51.246833, -0.6984942, 51.246833 ], "geometry": { "type": "Point", "coordinates": [ -0.6984942, 51.246833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91501541" }, "bbox": [ -0.6953135, 51.2455444, -0.6953135, 51.2455444 ], "geometry": { "type": "Point", "coordinates": [ -0.6953135, 51.2455444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95538241" }, "bbox": [ -0.6277485, 51.2717665, -0.6277485, 51.2717665 ], "geometry": { "type": "Point", "coordinates": [ -0.6277485, 51.2717665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95539838" }, "bbox": [ -0.6255351, 51.2715153, -0.6255351, 51.2715153 ], "geometry": { "type": "Point", "coordinates": [ -0.6255351, 51.2715153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98623057" }, "bbox": [ -0.5896944, 51.353854, -0.5896944, 51.353854 ], "geometry": { "type": "Point", "coordinates": [ -0.5896944, 51.353854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98629357" }, "bbox": [ -0.5803527, 51.3535757, -0.5803527, 51.3535757 ], "geometry": { "type": "Point", "coordinates": [ -0.5803527, 51.3535757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98624046" }, "bbox": [ -0.5883744, 51.3526921, -0.5883744, 51.3526921 ], "geometry": { "type": "Point", "coordinates": [ -0.5883744, 51.3526921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98629689" }, "bbox": [ -0.5801551, 51.3564927, -0.5801551, 51.3564927 ], "geometry": { "type": "Point", "coordinates": [ -0.5801551, 51.3564927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98625058" }, "bbox": [ -0.5867164, 51.3538225, -0.5867164, 51.3538225 ], "geometry": { "type": "Point", "coordinates": [ -0.5867164, 51.3538225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98629976" }, "bbox": [ -0.5797469, 51.3553147, -0.5797469, 51.3553147 ], "geometry": { "type": "Point", "coordinates": [ -0.5797469, 51.3553147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98638908" }, "bbox": [ -0.5809084, 51.3581647, -0.5809084, 51.3581647 ], "geometry": { "type": "Point", "coordinates": [ -0.5809084, 51.3581647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98639502" }, "bbox": [ -0.5800062, 51.3575999, -0.5800062, 51.3575999 ], "geometry": { "type": "Point", "coordinates": [ -0.5800062, 51.3575999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99621298" }, "bbox": [ -0.577942, 51.3573204, -0.577942, 51.3573204 ], "geometry": { "type": "Point", "coordinates": [ -0.577942, 51.3573204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99620194" }, "bbox": [ -0.5792561, 51.3569383, -0.5792561, 51.3569383 ], "geometry": { "type": "Point", "coordinates": [ -0.5792561, 51.3569383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98622452" }, "bbox": [ -0.5903838, 51.353382, -0.5903838, 51.353382 ], "geometry": { "type": "Point", "coordinates": [ -0.5903838, 51.353382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98627593" }, "bbox": [ -0.5832552, 51.3568249, -0.5832552, 51.3568249 ], "geometry": { "type": "Point", "coordinates": [ -0.5832552, 51.3568249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98629079" }, "bbox": [ -0.5809982, 51.3555968, -0.5809982, 51.3555968 ], "geometry": { "type": "Point", "coordinates": [ -0.5809982, 51.3555968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98629684" }, "bbox": [ -0.58016, 51.3560443, -0.58016, 51.3560443 ], "geometry": { "type": "Point", "coordinates": [ -0.58016, 51.3560443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98629287" }, "bbox": [ -0.5807378, 51.356336, -0.5807378, 51.356336 ], "geometry": { "type": "Point", "coordinates": [ -0.5807378, 51.356336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98628090" }, "bbox": [ -0.5824883, 51.3564941, -0.5824883, 51.3564941 ], "geometry": { "type": "Point", "coordinates": [ -0.5824883, 51.3564941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98627385" }, "bbox": [ -0.5835284, 51.3560885, -0.5835284, 51.3560885 ], "geometry": { "type": "Point", "coordinates": [ -0.5835284, 51.3560885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98626189" }, "bbox": [ -0.5852502, 51.3564975, -0.5852502, 51.3564975 ], "geometry": { "type": "Point", "coordinates": [ -0.5852502, 51.3564975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99620879" }, "bbox": [ -0.5786045, 51.3555944, -0.5786045, 51.3555944 ], "geometry": { "type": "Point", "coordinates": [ -0.5786045, 51.3555944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91506197" }, "bbox": [ -0.688527, 51.250607, -0.688527, 51.250607 ], "geometry": { "type": "Point", "coordinates": [ -0.688527, 51.250607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93545038" }, "bbox": [ -0.6607744, 51.281009, -0.6607744, 51.281009 ], "geometry": { "type": "Point", "coordinates": [ -0.6607744, 51.281009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543169" }, "bbox": [ -0.6634372, 51.283704, -0.6634372, 51.283704 ], "geometry": { "type": "Point", "coordinates": [ -0.6634372, 51.283704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542654" }, "bbox": [ -0.6643157, 51.2825271, -0.6643157, 51.2825271 ], "geometry": { "type": "Point", "coordinates": [ -0.6643157, 51.2825271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93540541" }, "bbox": [ -0.6672351, 51.2812242, -0.6672351, 51.2812242 ], "geometry": { "type": "Point", "coordinates": [ -0.6672351, 51.2812242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93540232" }, "bbox": [ -0.6675745, 51.2804484, -0.6675745, 51.2804484 ], "geometry": { "type": "Point", "coordinates": [ -0.6675745, 51.2804484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541828" }, "bbox": [ -0.665204, 51.2801571, -0.665204, 51.2801571 ], "geometry": { "type": "Point", "coordinates": [ -0.665204, 51.2801571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93540643" }, "bbox": [ -0.6671419, 51.2813916, -0.6671419, 51.2813916 ], "geometry": { "type": "Point", "coordinates": [ -0.6671419, 51.2813916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541228" }, "bbox": [ -0.6661105, 51.280053, -0.6661105, 51.280053 ], "geometry": { "type": "Point", "coordinates": [ -0.6661105, 51.280053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541528" }, "bbox": [ -0.6656891, 51.2801162, -0.6656891, 51.2801162 ], "geometry": { "type": "Point", "coordinates": [ -0.6656891, 51.2801162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543330" }, "bbox": [ -0.6631453, 51.2803679, -0.6631453, 51.2803679 ], "geometry": { "type": "Point", "coordinates": [ -0.6631453, 51.2803679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93540137" }, "bbox": [ -0.6677021, 51.2808543, -0.6677021, 51.2808543 ], "geometry": { "type": "Point", "coordinates": [ -0.6677021, 51.2808543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541950" }, "bbox": [ -0.6651883, 51.2821, -0.6651883, 51.2821 ], "geometry": { "type": "Point", "coordinates": [ -0.6651883, 51.2821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542966" }, "bbox": [ -0.6637473, 51.2834361, -0.6637473, 51.2834361 ], "geometry": { "type": "Point", "coordinates": [ -0.6637473, 51.2834361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542546" }, "bbox": [ -0.6641964, 51.2817255, -0.6641964, 51.2817255 ], "geometry": { "type": "Point", "coordinates": [ -0.6641964, 51.2817255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96628704" }, "bbox": [ -0.6103838, 51.3491862, -0.6103838, 51.3491862 ], "geometry": { "type": "Point", "coordinates": [ -0.6103838, 51.3491862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96625030" }, "bbox": [ -0.6157932, 51.3515869, -0.6157932, 51.3515869 ], "geometry": { "type": "Point", "coordinates": [ -0.6157932, 51.3515869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96627604" }, "bbox": [ -0.6121021, 51.3492211, -0.6121021, 51.3492211 ], "geometry": { "type": "Point", "coordinates": [ -0.6121021, 51.3492211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96624334" }, "bbox": [ -0.6166029, 51.3518769, -0.6166029, 51.3518769 ], "geometry": { "type": "Point", "coordinates": [ -0.6166029, 51.3518769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96625637" }, "bbox": [ -0.6147818, 51.3522859, -0.6147818, 51.3522859 ], "geometry": { "type": "Point", "coordinates": [ -0.6147818, 51.3522859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96628327" }, "bbox": [ -0.6109625, 51.3511426, -0.6109625, 51.3511426 ], "geometry": { "type": "Point", "coordinates": [ -0.6109625, 51.3511426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96628414" }, "bbox": [ -0.6108878, 51.350257, -0.6108878, 51.350257 ], "geometry": { "type": "Point", "coordinates": [ -0.6108878, 51.350257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96626729" }, "bbox": [ -0.6133698, 51.3515548, -0.6133698, 51.3515548 ], "geometry": { "type": "Point", "coordinates": [ -0.6133698, 51.3515548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96625911" }, "bbox": [ -0.6143725, 51.349887, -0.6143725, 51.349887 ], "geometry": { "type": "Point", "coordinates": [ -0.6143725, 51.349887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96626125" }, "bbox": [ -0.6143157, 51.3511863, -0.6143157, 51.3511863 ], "geometry": { "type": "Point", "coordinates": [ -0.6143157, 51.3511863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96627532" }, "bbox": [ -0.6120821, 51.3517861, -0.6120821, 51.3517861 ], "geometry": { "type": "Point", "coordinates": [ -0.6120821, 51.3517861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96625434" }, "bbox": [ -0.6154299, 51.3519552, -0.6154299, 51.3519552 ], "geometry": { "type": "Point", "coordinates": [ -0.6154299, 51.3519552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532389" }, "bbox": [ -0.6217065, 51.2760931, -0.6217065, 51.2760931 ], "geometry": { "type": "Point", "coordinates": [ -0.6217065, 51.2760931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532282" }, "bbox": [ -0.6219123, 51.2754995, -0.6219123, 51.2754995 ], "geometry": { "type": "Point", "coordinates": [ -0.6219123, 51.2754995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96626394" }, "bbox": [ -0.6137298, 51.3571372, -0.6137298, 51.3571372 ], "geometry": { "type": "Point", "coordinates": [ -0.6137298, 51.3571372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97610522" }, "bbox": [ -0.6080145, 51.3418057, -0.6080145, 51.3418057 ], "geometry": { "type": "Point", "coordinates": [ -0.6080145, 51.3418057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97616888" }, "bbox": [ -0.5984488, 51.3476249, -0.5984488, 51.3476249 ], "geometry": { "type": "Point", "coordinates": [ -0.5984488, 51.3476249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96625196" }, "bbox": [ -0.6153155, 51.3573374, -0.6153155, 51.3573374 ], "geometry": { "type": "Point", "coordinates": [ -0.6153155, 51.3573374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96637112" }, "bbox": [ -0.6123122, 51.3589763, -0.6123122, 51.3589763 ], "geometry": { "type": "Point", "coordinates": [ -0.6123122, 51.3589763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96637502" }, "bbox": [ -0.6118394, 51.3580437, -0.6118394, 51.3580437 ], "geometry": { "type": "Point", "coordinates": [ -0.6118394, 51.3580437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96637733" }, "bbox": [ -0.6113004, 51.360928, -0.6113004, 51.360928 ], "geometry": { "type": "Point", "coordinates": [ -0.6113004, 51.360928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96636408" }, "bbox": [ -0.613366, 51.3585813, -0.613366, 51.3585813 ], "geometry": { "type": "Point", "coordinates": [ -0.613366, 51.3585813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96637407" }, "bbox": [ -0.6119074, 51.358527, -0.6119074, 51.358527 ], "geometry": { "type": "Point", "coordinates": [ -0.6119074, 51.358527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96639127" }, "bbox": [ -0.6094273, 51.3602458, -0.6094273, 51.3602458 ], "geometry": { "type": "Point", "coordinates": [ -0.6094273, 51.3602458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96619050" }, "bbox": [ -0.6100169, 51.3444024, -0.6100169, 51.3444024 ], "geometry": { "type": "Point", "coordinates": [ -0.6100169, 51.3444024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96619010" }, "bbox": [ -0.6102172, 51.3407817, -0.6102172, 51.3407817 ], "geometry": { "type": "Point", "coordinates": [ -0.6102172, 51.3407817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95636166" }, "bbox": [ -0.6279213, 51.3639976, -0.6279213, 51.3639976 ], "geometry": { "type": "Point", "coordinates": [ -0.6279213, 51.3639976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95634142" }, "bbox": [ -0.6311119, 51.3619191, -0.6311119, 51.3619191 ], "geometry": { "type": "Point", "coordinates": [ -0.6311119, 51.3619191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95632502" }, "bbox": [ -0.6331518, 51.3581398, -0.6331518, 51.3581398 ], "geometry": { "type": "Point", "coordinates": [ -0.6331518, 51.3581398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95633239" }, "bbox": [ -0.6321721, 51.3616935, -0.6321721, 51.3616935 ], "geometry": { "type": "Point", "coordinates": [ -0.6321721, 51.3616935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95633857" }, "bbox": [ -0.6314123, 51.3632728, -0.6314123, 51.3632728 ], "geometry": { "type": "Point", "coordinates": [ -0.6314123, 51.3632728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95635240" }, "bbox": [ -0.6292356, 51.3617136, -0.6292356, 51.3617136 ], "geometry": { "type": "Point", "coordinates": [ -0.6292356, 51.3617136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95637253" }, "bbox": [ -0.6265688, 51.3626701, -0.6265688, 51.3626701 ], "geometry": { "type": "Point", "coordinates": [ -0.6265688, 51.3626701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95638440" }, "bbox": [ -0.6247659, 51.3618652, -0.6247659, 51.3618652 ], "geometry": { "type": "Point", "coordinates": [ -0.6247659, 51.3618652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95633212" }, "bbox": [ -0.6325756, 51.3591034, -0.6325756, 51.3591034 ], "geometry": { "type": "Point", "coordinates": [ -0.6325756, 51.3591034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95622896" }, "bbox": [ -0.6328594, 51.3577718, -0.6328594, 51.3577718 ], "geometry": { "type": "Point", "coordinates": [ -0.6328594, 51.3577718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95623312" }, "bbox": [ -0.6323896, 51.3501229, -0.6323896, 51.3501229 ], "geometry": { "type": "Point", "coordinates": [ -0.6323896, 51.3501229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95626289" }, "bbox": [ -0.6279554, 51.3574372, -0.6279554, 51.3574372 ], "geometry": { "type": "Point", "coordinates": [ -0.6279554, 51.3574372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95624469" }, "bbox": [ -0.6306792, 51.3553769, -0.6306792, 51.3553769 ], "geometry": { "type": "Point", "coordinates": [ -0.6306792, 51.3553769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95627073" }, "bbox": [ -0.6268399, 51.3555723, -0.6268399, 51.3555723 ], "geometry": { "type": "Point", "coordinates": [ -0.6268399, 51.3555723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96619334" }, "bbox": [ -0.6098313, 51.3428244, -0.6098313, 51.3428244 ], "geometry": { "type": "Point", "coordinates": [ -0.6098313, 51.3428244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37534336" }, "bbox": [ -0.0316612, 51.2628939, -0.0316612, 51.2628939 ], "geometry": { "type": "Point", "coordinates": [ -0.0316612, 51.2628939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37538452" }, "bbox": [ -0.0257096, 51.2643565, -0.0257096, 51.2643565 ], "geometry": { "type": "Point", "coordinates": [ -0.0257096, 51.2643565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37538403" }, "bbox": [ -0.0258178, 51.2598008, -0.0258178, 51.2598008 ], "geometry": { "type": "Point", "coordinates": [ -0.0258178, 51.2598008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37535228" }, "bbox": [ -0.0303056, 51.2620958, -0.0303056, 51.2620958 ], "geometry": { "type": "Point", "coordinates": [ -0.0303056, 51.2620958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37537304" }, "bbox": [ -0.0274161, 51.2599153, -0.0274161, 51.2599153 ], "geometry": { "type": "Point", "coordinates": [ -0.0274161, 51.2599153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38535630" }, "bbox": [ -0.015593, 51.261981, -0.015593, 51.261981 ], "geometry": { "type": "Point", "coordinates": [ -0.015593, 51.261981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38530363" }, "bbox": [ -0.0228038, 51.265105, -0.0228038, 51.265105 ], "geometry": { "type": "Point", "coordinates": [ -0.0228038, 51.265105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38533606" }, "bbox": [ -0.0184591, 51.259941, -0.0184591, 51.259941 ], "geometry": { "type": "Point", "coordinates": [ -0.0184591, 51.259941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38533614" }, "bbox": [ -0.0185449, 51.2604709, -0.0185449, 51.2604709 ], "geometry": { "type": "Point", "coordinates": [ -0.0185449, 51.2604709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469120" }, "bbox": [ -0.8287671, 51.2093299, -0.8287671, 51.2093299 ], "geometry": { "type": "Point", "coordinates": [ -0.8287671, 51.2093299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469423" }, "bbox": [ -0.8282323, 51.209482, -0.8282323, 51.209482 ], "geometry": { "type": "Point", "coordinates": [ -0.8282323, 51.209482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81469031" }, "bbox": [ -0.8291289, 51.210233, -0.8291289, 51.210233 ], "geometry": { "type": "Point", "coordinates": [ -0.8291289, 51.210233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81468541" }, "bbox": [ -0.8293709, 51.2111178, -0.8293709, 51.2111178 ], "geometry": { "type": "Point", "coordinates": [ -0.8293709, 51.2111178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81467938" }, "bbox": [ -0.8302254, 51.2108172, -0.8302254, 51.2108172 ], "geometry": { "type": "Point", "coordinates": [ -0.8302254, 51.2108172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93478581" }, "bbox": [ -0.6575172, 51.2217582, -0.6575172, 51.2217582 ], "geometry": { "type": "Point", "coordinates": [ -0.6575172, 51.2217582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93477793" }, "bbox": [ -0.65926, 51.2230206, -0.65926, 51.2230206 ], "geometry": { "type": "Point", "coordinates": [ -0.65926, 51.2230206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93479693" }, "bbox": [ -0.6559367, 51.2227877, -0.6559367, 51.2227877 ], "geometry": { "type": "Point", "coordinates": [ -0.6559367, 51.2227877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91426954" }, "bbox": [ -0.6896949, 51.1750794, -0.6896949, 51.1750794 ], "geometry": { "type": "Point", "coordinates": [ -0.6896949, 51.1750794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86379577" }, "bbox": [ -0.7586359, 51.1326864, -0.7586359, 51.1326864 ], "geometry": { "type": "Point", "coordinates": [ -0.7586359, 51.1326864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86379586" }, "bbox": [ -0.7586363, 51.1334559, -0.7586363, 51.1334559 ], "geometry": { "type": "Point", "coordinates": [ -0.7586363, 51.1334559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86379784" }, "bbox": [ -0.7583531, 51.1332462, -0.7583531, 51.1332462 ], "geometry": { "type": "Point", "coordinates": [ -0.7583531, 51.1332462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389414" }, "bbox": [ -0.7590777, 51.1359651, -0.7590777, 51.1359651 ], "geometry": { "type": "Point", "coordinates": [ -0.7590777, 51.1359651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86386820" }, "bbox": [ -0.7626989, 51.1374064, -0.7626989, 51.1374064 ], "geometry": { "type": "Point", "coordinates": [ -0.7626989, 51.1374064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387483" }, "bbox": [ -0.73293, 51.1418307, -0.73293, 51.1418307 ], "geometry": { "type": "Point", "coordinates": [ -0.73293, 51.1418307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91384528" }, "bbox": [ -0.6939362, 51.1366482, -0.6939362, 51.1366482 ], "geometry": { "type": "Point", "coordinates": [ -0.6939362, 51.1366482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90388195" }, "bbox": [ -0.7033419, 51.1426609, -0.7033419, 51.1426609 ], "geometry": { "type": "Point", "coordinates": [ -0.7033419, 51.1426609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87382616" }, "bbox": [ -0.7540984, 51.1360114, -0.7540984, 51.1360114 ], "geometry": { "type": "Point", "coordinates": [ -0.7540984, 51.1360114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88382409" }, "bbox": [ -0.7403958, 51.1351503, -0.7403958, 51.1351503 ], "geometry": { "type": "Point", "coordinates": [ -0.7403958, 51.1351503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88383836" }, "bbox": [ -0.7381594, 51.137676, -0.7381594, 51.137676 ], "geometry": { "type": "Point", "coordinates": [ -0.7381594, 51.137676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88382843" }, "bbox": [ -0.739405, 51.1383369, -0.739405, 51.1383369 ], "geometry": { "type": "Point", "coordinates": [ -0.739405, 51.1383369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88381921" }, "bbox": [ -0.740937, 51.1363557, -0.740937, 51.1363557 ], "geometry": { "type": "Point", "coordinates": [ -0.740937, 51.1363557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88386307" }, "bbox": [ -0.7347377, 51.1350247, -0.7347377, 51.1350247 ], "geometry": { "type": "Point", "coordinates": [ -0.7347377, 51.1350247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88382731" }, "bbox": [ -0.739694, 51.1371285, -0.739694, 51.1371285 ], "geometry": { "type": "Point", "coordinates": [ -0.739694, 51.1371285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88383507" }, "bbox": [ -0.7386238, 51.135065, -0.7386238, 51.135065 ], "geometry": { "type": "Point", "coordinates": [ -0.7386238, 51.135065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88382031" }, "bbox": [ -0.7406873, 51.1372396, -0.7406873, 51.1372396 ], "geometry": { "type": "Point", "coordinates": [ -0.7406873, 51.1372396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88386125" }, "bbox": [ -0.7349704, 51.1366489, -0.7349704, 51.1366489 ], "geometry": { "type": "Point", "coordinates": [ -0.7349704, 51.1366489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88383620" }, "bbox": [ -0.7384985, 51.13627, -0.7384985, 51.13627 ], "geometry": { "type": "Point", "coordinates": [ -0.7384985, 51.13627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88384722" }, "bbox": [ -0.7368094, 51.1364001, -0.7368094, 51.1364001 ], "geometry": { "type": "Point", "coordinates": [ -0.7368094, 51.1364001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88382520" }, "bbox": [ -0.7399174, 51.1362864, -0.7399174, 51.1362864 ], "geometry": { "type": "Point", "coordinates": [ -0.7399174, 51.1362864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88386142" }, "bbox": [ -0.7348553, 51.1381756, -0.7348553, 51.1381756 ], "geometry": { "type": "Point", "coordinates": [ -0.7348553, 51.1381756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88372495" }, "bbox": [ -0.7400936, 51.1338085, -0.7400936, 51.1338085 ], "geometry": { "type": "Point", "coordinates": [ -0.7400936, 51.1338085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88375692" }, "bbox": [ -0.7360389, 51.1335531, -0.7360389, 51.1335531 ], "geometry": { "type": "Point", "coordinates": [ -0.7360389, 51.1335531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92422201" }, "bbox": [ -0.6823882, 51.1697402, -0.6823882, 51.1697402 ], "geometry": { "type": "Point", "coordinates": [ -0.6823882, 51.1697402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91419165" }, "bbox": [ -0.6870005, 51.1666829, -0.6870005, 51.1666829 ], "geometry": { "type": "Point", "coordinates": [ -0.6870005, 51.1666829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91418981" }, "bbox": [ -0.6870278, 51.1681192, -0.6870278, 51.1681192 ], "geometry": { "type": "Point", "coordinates": [ -0.6870278, 51.1681192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91419584" }, "bbox": [ -0.6860969, 51.1684196, -0.6860969, 51.1684196 ], "geometry": { "type": "Point", "coordinates": [ -0.6860969, 51.1684196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92411991" }, "bbox": [ -0.6825278, 51.1690135, -0.6825278, 51.1690135 ], "geometry": { "type": "Point", "coordinates": [ -0.6825278, 51.1690135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410169" }, "bbox": [ -0.6858438, 51.1668607, -0.6858438, 51.1668607 ], "geometry": { "type": "Point", "coordinates": [ -0.6858438, 51.1668607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92411590" }, "bbox": [ -0.6832279, 51.1689834, -0.6832279, 51.1689834 ], "geometry": { "type": "Point", "coordinates": [ -0.6832279, 51.1689834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92411574" }, "bbox": [ -0.6830812, 51.167549, -0.6830812, 51.167549 ], "geometry": { "type": "Point", "coordinates": [ -0.6830812, 51.167549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410178" }, "bbox": [ -0.6842938, 51.1692407, -0.6842938, 51.1692407 ], "geometry": { "type": "Point", "coordinates": [ -0.6842938, 51.1692407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410568" }, "bbox": [ -0.6846812, 51.1669269, -0.6846812, 51.1669269 ], "geometry": { "type": "Point", "coordinates": [ -0.6846812, 51.1669269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410197" }, "bbox": [ -0.6853324, 51.1694598, -0.6853324, 51.1694598 ], "geometry": { "type": "Point", "coordinates": [ -0.6853324, 51.1694598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410675" }, "bbox": [ -0.6843796, 51.1675825, -0.6843796, 51.1675825 ], "geometry": { "type": "Point", "coordinates": [ -0.6843796, 51.1675825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90390246" }, "bbox": [ -0.7149753, 51.1472218, -0.7149753, 51.1472218 ], "geometry": { "type": "Point", "coordinates": [ -0.7149753, 51.1472218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509410" }, "bbox": [ -0.6985605, 51.2429007, -0.6985605, 51.2429007 ], "geometry": { "type": "Point", "coordinates": [ -0.6985605, 51.2429007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500610" }, "bbox": [ -0.6968868, 51.2428547, -0.6968868, 51.2428547 ], "geometry": { "type": "Point", "coordinates": [ -0.6968868, 51.2428547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501951" }, "bbox": [ -0.6804234, 51.2463087, -0.6804234, 51.2463087 ], "geometry": { "type": "Point", "coordinates": [ -0.6804234, 51.2463087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501250" }, "bbox": [ -0.6814347, 51.2462319, -0.6814347, 51.2462319 ], "geometry": { "type": "Point", "coordinates": [ -0.6814347, 51.2462319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92500936" }, "bbox": [ -0.6819389, 51.2450025, -0.6819389, 51.2450025 ], "geometry": { "type": "Point", "coordinates": [ -0.6819389, 51.2450025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501153" }, "bbox": [ -0.6817664, 51.2466199, -0.6817664, 51.2466199 ], "geometry": { "type": "Point", "coordinates": [ -0.6817664, 51.2466199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92501449" }, "bbox": [ -0.6812378, 51.2461332, -0.6812378, 51.2461332 ], "geometry": { "type": "Point", "coordinates": [ -0.6812378, 51.2461332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95552541" }, "bbox": [ -0.6354263, 51.2898987, -0.6354263, 51.2898987 ], "geometry": { "type": "Point", "coordinates": [ -0.6354263, 51.2898987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95552249" }, "bbox": [ -0.6359898, 51.2905529, -0.6359898, 51.2905529 ], "geometry": { "type": "Point", "coordinates": [ -0.6359898, 51.2905529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95550848" }, "bbox": [ -0.6376884, 51.2905284, -0.6376884, 51.2905284 ], "geometry": { "type": "Point", "coordinates": [ -0.6376884, 51.2905284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90495125" }, "bbox": [ -0.7031505, 51.2355044, -0.7031505, 51.2355044 ], "geometry": { "type": "Point", "coordinates": [ -0.7031505, 51.2355044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91448455" }, "bbox": [ -0.6869005, 51.192762, -0.6869005, 51.192762 ], "geometry": { "type": "Point", "coordinates": [ -0.6869005, 51.192762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85388468" }, "bbox": [ -0.7742464, 51.141035, -0.7742464, 51.141035 ], "geometry": { "type": "Point", "coordinates": [ -0.7742464, 51.141035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92441754" }, "bbox": [ -0.6822743, 51.1926848, -0.6822743, 51.1926848 ], "geometry": { "type": "Point", "coordinates": [ -0.6822743, 51.1926848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92440851" }, "bbox": [ -0.6836939, 51.1924832, -0.6836939, 51.1924832 ], "geometry": { "type": "Point", "coordinates": [ -0.6836939, 51.1924832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389665" }, "bbox": [ -0.7583305, 51.1405345, -0.7583305, 51.1405345 ], "geometry": { "type": "Point", "coordinates": [ -0.7583305, 51.1405345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389870" }, "bbox": [ -0.7580752, 51.1409746, -0.7580752, 51.1409746 ], "geometry": { "type": "Point", "coordinates": [ -0.7580752, 51.1409746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389164" }, "bbox": [ -0.7589289, 51.1404934, -0.7589289, 51.1404934 ], "geometry": { "type": "Point", "coordinates": [ -0.7589289, 51.1404934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389659" }, "bbox": [ -0.7584356, 51.1399882, -0.7584356, 51.1399882 ], "geometry": { "type": "Point", "coordinates": [ -0.7584356, 51.1399882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380560" }, "bbox": [ -0.7569322, 51.1399646, -0.7569322, 51.1399646 ], "geometry": { "type": "Point", "coordinates": [ -0.7569322, 51.1399646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89380747" }, "bbox": [ -0.7282769, 51.1385575, -0.7282769, 51.1385575 ], "geometry": { "type": "Point", "coordinates": [ -0.7282769, 51.1385575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21399565" }, "bbox": [ -0.2581881, 51.1432133, -0.2581881, 51.1432133 ], "geometry": { "type": "Point", "coordinates": [ -0.2581881, 51.1432133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92465298" }, "bbox": [ -0.6770594, 51.214769, -0.6770594, 51.214769 ], "geometry": { "type": "Point", "coordinates": [ -0.6770594, 51.214769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90422060" }, "bbox": [ -0.7109322, 51.1755706, -0.7109322, 51.1755706 ], "geometry": { "type": "Point", "coordinates": [ -0.7109322, 51.1755706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90422459" }, "bbox": [ -0.7102834, 51.1753974, -0.7102834, 51.1753974 ], "geometry": { "type": "Point", "coordinates": [ -0.7102834, 51.1753974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90421056" }, "bbox": [ -0.7124678, 51.1752351, -0.7124678, 51.1752351 ], "geometry": { "type": "Point", "coordinates": [ -0.7124678, 51.1752351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90422354" }, "bbox": [ -0.7105382, 51.174952, -0.7105382, 51.174952 ], "geometry": { "type": "Point", "coordinates": [ -0.7105382, 51.174952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86379196" }, "bbox": [ -0.7591326, 51.134405, -0.7591326, 51.134405 ], "geometry": { "type": "Point", "coordinates": [ -0.7591326, 51.134405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99465498" }, "bbox": [ -0.5761185, 51.2135542, -0.5761185, 51.2135542 ], "geometry": { "type": "Point", "coordinates": [ -0.5761185, 51.2135542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98470530" }, "bbox": [ -0.5974941, 51.216395, -0.5974941, 51.216395 ], "geometry": { "type": "Point", "coordinates": [ -0.5974941, 51.216395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97464322" }, "bbox": [ -0.6067093, 51.2069757, -0.6067093, 51.2069757 ], "geometry": { "type": "Point", "coordinates": [ -0.6067093, 51.2069757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454855" }, "bbox": [ -0.2484048, 51.1961513, -0.2484048, 51.1961513 ], "geometry": { "type": "Point", "coordinates": [ -0.2484048, 51.1961513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454645" }, "bbox": [ -0.2486827, 51.1952731, -0.2486827, 51.1952731 ], "geometry": { "type": "Point", "coordinates": [ -0.2486827, 51.1952731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455032" }, "bbox": [ -0.2480851, 51.194041, -0.2480851, 51.194041 ], "geometry": { "type": "Point", "coordinates": [ -0.2480851, 51.194041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455539" }, "bbox": [ -0.2474363, 51.1946722, -0.2474363, 51.1946722 ], "geometry": { "type": "Point", "coordinates": [ -0.2474363, 51.1946722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95478944" }, "bbox": [ -0.628379, 51.2182019, -0.628379, 51.2182019 ], "geometry": { "type": "Point", "coordinates": [ -0.628379, 51.2182019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95478856" }, "bbox": [ -0.6284197, 51.2199651, -0.6284197, 51.2199651 ], "geometry": { "type": "Point", "coordinates": [ -0.6284197, 51.2199651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95478436" }, "bbox": [ -0.6291344, 51.2174276, -0.6291344, 51.2174276 ], "geometry": { "type": "Point", "coordinates": [ -0.6291344, 51.2174276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92510708" }, "bbox": [ -0.68173, 51.2515484, -0.68173, 51.2515484 ], "geometry": { "type": "Point", "coordinates": [ -0.68173, 51.2515484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95618450" }, "bbox": [ -0.6252605, 51.3444424, -0.6252605, 51.3444424 ], "geometry": { "type": "Point", "coordinates": [ -0.6252605, 51.3444424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95617549" }, "bbox": [ -0.626566, 51.3444528, -0.626566, 51.3444528 ], "geometry": { "type": "Point", "coordinates": [ -0.626566, 51.3444528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95618618" }, "bbox": [ -0.6250126, 51.3416774, -0.6250126, 51.3416774 ], "geometry": { "type": "Point", "coordinates": [ -0.6250126, 51.3416774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95617613" }, "bbox": [ -0.626795, 51.3411532, -0.626795, 51.3411532 ], "geometry": { "type": "Point", "coordinates": [ -0.626795, 51.3411532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95619521" }, "bbox": [ -0.6238465, 51.3418528, -0.6238465, 51.3418528 ], "geometry": { "type": "Point", "coordinates": [ -0.6238465, 51.3418528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95616726" }, "bbox": [ -0.628048, 51.3424619, -0.628048, 51.3424619 ], "geometry": { "type": "Point", "coordinates": [ -0.628048, 51.3424619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95616447" }, "bbox": [ -0.6286795, 51.3448712, -0.6286795, 51.3448712 ], "geometry": { "type": "Point", "coordinates": [ -0.6286795, 51.3448712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95619229" }, "bbox": [ -0.6238037, 51.3426667, -0.6238037, 51.3426667 ], "geometry": { "type": "Point", "coordinates": [ -0.6238037, 51.3426667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95618435" }, "bbox": [ -0.6253983, 51.3431883, -0.6253983, 51.3431883 ], "geometry": { "type": "Point", "coordinates": [ -0.6253983, 51.3431883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96610423" }, "bbox": [ -0.6225056, 51.3420866, -0.6225056, 51.3420866 ], "geometry": { "type": "Point", "coordinates": [ -0.6225056, 51.3420866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95608898" }, "bbox": [ -0.6250301, 51.3397975, -0.6250301, 51.3397975 ], "geometry": { "type": "Point", "coordinates": [ -0.6250301, 51.3397975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97381125" }, "bbox": [ -0.6132693, 51.1351846, -0.6132693, 51.1351846 ], "geometry": { "type": "Point", "coordinates": [ -0.6132693, 51.1351846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37611310" }, "bbox": [ -0.0323239, 51.3309063, -0.0323239, 51.3309063 ], "geometry": { "type": "Point", "coordinates": [ -0.0323239, 51.3309063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90430485" }, "bbox": [ -0.7124537, 51.1866618, -0.7124537, 51.1866618 ], "geometry": { "type": "Point", "coordinates": [ -0.7124537, 51.1866618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19577005" }, "bbox": [ -0.2842764, 51.2998942, -0.2842764, 51.2998942 ], "geometry": { "type": "Point", "coordinates": [ -0.2842764, 51.2998942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19577402" }, "bbox": [ -0.2839089, 51.2997612, -0.2839089, 51.2997612 ], "geometry": { "type": "Point", "coordinates": [ -0.2839089, 51.2997612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19573111" }, "bbox": [ -0.2901668, 51.3005787, -0.2901668, 51.3005787 ], "geometry": { "type": "Point", "coordinates": [ -0.2901668, 51.3005787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19576204" }, "bbox": [ -0.2854844, 51.3000084, -0.2854844, 51.3000084 ], "geometry": { "type": "Point", "coordinates": [ -0.2854844, 51.3000084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19572202" }, "bbox": [ -0.2913506, 51.2996225, -0.2913506, 51.2996225 ], "geometry": { "type": "Point", "coordinates": [ -0.2913506, 51.2996225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19576710" }, "bbox": [ -0.2847172, 51.3004584, -0.2847172, 51.3004584 ], "geometry": { "type": "Point", "coordinates": [ -0.2847172, 51.3004584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19575808" }, "bbox": [ -0.2860764, 51.3003251, -0.2860764, 51.3003251 ], "geometry": { "type": "Point", "coordinates": [ -0.2860764, 51.3003251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19565799" }, "bbox": [ -0.2862498, 51.2995588, -0.2862498, 51.2995588 ], "geometry": { "type": "Point", "coordinates": [ -0.2862498, 51.2995588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19565588" }, "bbox": [ -0.2865696, 51.2985668, -0.2865696, 51.2985668 ], "geometry": { "type": "Point", "coordinates": [ -0.2865696, 51.2985668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566598" }, "bbox": [ -0.2848759, 51.2995302, -0.2848759, 51.2995302 ], "geometry": { "type": "Point", "coordinates": [ -0.2848759, 51.2995302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19564991" }, "bbox": [ -0.2876225, 51.2990038, -0.2876225, 51.2990038 ], "geometry": { "type": "Point", "coordinates": [ -0.2876225, 51.2990038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19564995" }, "bbox": [ -0.2874251, 51.2992338, -0.2874251, 51.2992338 ], "geometry": { "type": "Point", "coordinates": [ -0.2874251, 51.2992338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19563977" }, "bbox": [ -0.2890789, 51.2976303, -0.2890789, 51.2976303 ], "geometry": { "type": "Point", "coordinates": [ -0.2890789, 51.2976303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19566294" }, "bbox": [ -0.2855586, 51.2991083, -0.2855586, 51.2991083 ], "geometry": { "type": "Point", "coordinates": [ -0.2855586, 51.2991083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00463607" }, "bbox": [ -0.565033, 51.2051722, -0.565033, 51.2051722 ], "geometry": { "type": "Point", "coordinates": [ -0.565033, 51.2051722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00464605" }, "bbox": [ -0.5632551, 51.204924, -0.5632551, 51.204924 ], "geometry": { "type": "Point", "coordinates": [ -0.5632551, 51.204924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00463014" }, "bbox": [ -0.5652294, 51.2056165, -0.5652294, 51.2056165 ], "geometry": { "type": "Point", "coordinates": [ -0.5652294, 51.2056165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00455386" }, "bbox": [ -0.5624721, 51.2031274, -0.5624721, 51.2031274 ], "geometry": { "type": "Point", "coordinates": [ -0.5624721, 51.2031274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00455687" }, "bbox": [ -0.5617702, 51.2032424, -0.5617702, 51.2032424 ], "geometry": { "type": "Point", "coordinates": [ -0.5617702, 51.2032424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98352611" }, "bbox": [ -0.5975973, 51.1069761, -0.5975973, 51.1069761 ], "geometry": { "type": "Point", "coordinates": [ -0.5975973, 51.1069761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94343222" }, "bbox": [ -0.6543902, 51.0995269, -0.6543902, 51.0995269 ], "geometry": { "type": "Point", "coordinates": [ -0.6543902, 51.0995269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511654" }, "bbox": [ -0.3941751, 51.252104, -0.3941751, 51.252104 ], "geometry": { "type": "Point", "coordinates": [ -0.3941751, 51.252104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560559" }, "bbox": [ -0.5090762, 51.2990451, -0.5090762, 51.2990451 ], "geometry": { "type": "Point", "coordinates": [ -0.5090762, 51.2990451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04551078" }, "bbox": [ -0.5078965, 51.2916985, -0.5078965, 51.2916985 ], "geometry": { "type": "Point", "coordinates": [ -0.5078965, 51.2916985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04552877" }, "bbox": [ -0.5057937, 51.2918187, -0.5057937, 51.2918187 ], "geometry": { "type": "Point", "coordinates": [ -0.5057937, 51.2918187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367850" }, "bbox": [ -0.6186187, 51.1196011, -0.6186187, 51.1196011 ], "geometry": { "type": "Point", "coordinates": [ -0.6186187, 51.1196011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02579707" }, "bbox": [ -0.5245015, 51.3033418, -0.5245015, 51.3033418 ], "geometry": { "type": "Point", "coordinates": [ -0.5245015, 51.3033418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91547693" }, "bbox": [ -0.685454, 51.2862383, -0.685454, 51.2862383 ], "geometry": { "type": "Point", "coordinates": [ -0.685454, 51.2862383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11520166" }, "bbox": [ -0.4103918, 51.2623519, -0.4103918, 51.2623519 ], "geometry": { "type": "Point", "coordinates": [ -0.4103918, 51.2623519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10528159" }, "bbox": [ -0.4131867, 51.2616792, -0.4131867, 51.2616792 ], "geometry": { "type": "Point", "coordinates": [ -0.4131867, 51.2616792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529865" }, "bbox": [ -0.4108353, 51.2622483, -0.4108353, 51.2622483 ], "geometry": { "type": "Point", "coordinates": [ -0.4108353, 51.2622483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10529861" }, "bbox": [ -0.4107946, 51.2619344, -0.4107946, 51.2619344 ], "geometry": { "type": "Point", "coordinates": [ -0.4107946, 51.2619344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91419553" }, "bbox": [ -0.6864166, 51.1656207, -0.6864166, 51.1656207 ], "geometry": { "type": "Point", "coordinates": [ -0.6864166, 51.1656207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92411060" }, "bbox": [ -0.6840137, 51.166274, -0.6840137, 51.166274 ], "geometry": { "type": "Point", "coordinates": [ -0.6840137, 51.166274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92413063" }, "bbox": [ -0.6808537, 51.1664719, -0.6808537, 51.1664719 ], "geometry": { "type": "Point", "coordinates": [ -0.6808537, 51.1664719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410154" }, "bbox": [ -0.6848315, 51.1651805, -0.6848315, 51.1651805 ], "geometry": { "type": "Point", "coordinates": [ -0.6848315, 51.1651805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410335" }, "bbox": [ -0.6851916, 51.1639743, -0.6851916, 51.1639743 ], "geometry": { "type": "Point", "coordinates": [ -0.6851916, 51.1639743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92412954" }, "bbox": [ -0.6813271, 51.1656905, -0.6813271, 51.1656905 ], "geometry": { "type": "Point", "coordinates": [ -0.6813271, 51.1656905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92412565" }, "bbox": [ -0.6823091, 51.1666147, -0.6823091, 51.1666147 ], "geometry": { "type": "Point", "coordinates": [ -0.6823091, 51.1666147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92412052" }, "bbox": [ -0.6822159, 51.1653455, -0.6822159, 51.1653455 ], "geometry": { "type": "Point", "coordinates": [ -0.6822159, 51.1653455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92410457" }, "bbox": [ -0.6850983, 51.1659743, -0.6850983, 51.1659743 ], "geometry": { "type": "Point", "coordinates": [ -0.6850983, 51.1659743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92411539" }, "bbox": [ -0.6833169, 51.1646148, -0.6833169, 51.1646148 ], "geometry": { "type": "Point", "coordinates": [ -0.6833169, 51.1646148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92411043" }, "bbox": [ -0.6841618, 51.1648694, -0.6841618, 51.1648694 ], "geometry": { "type": "Point", "coordinates": [ -0.6841618, 51.1648694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00471014" }, "bbox": [ -0.5686207, 51.2148425, -0.5686207, 51.2148425 ], "geometry": { "type": "Point", "coordinates": [ -0.5686207, 51.2148425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00467696" }, "bbox": [ -0.5574939, 51.2127263, -0.5574939, 51.2127263 ], "geometry": { "type": "Point", "coordinates": [ -0.5574939, 51.2127263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00465695" }, "bbox": [ -0.5617898, 51.212924, -0.5617898, 51.212924 ], "geometry": { "type": "Point", "coordinates": [ -0.5617898, 51.212924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09481294" }, "bbox": [ -0.4385013, 51.2290376, -0.4385013, 51.2290376 ], "geometry": { "type": "Point", "coordinates": [ -0.4385013, 51.2290376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11616294" }, "bbox": [ -0.3986777, 51.3455623, -0.3986777, 51.3455623 ], "geometry": { "type": "Point", "coordinates": [ -0.3986777, 51.3455623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11618297" }, "bbox": [ -0.394575, 51.3458902, -0.394575, 51.3458902 ], "geometry": { "type": "Point", "coordinates": [ -0.394575, 51.3458902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11625902" }, "bbox": [ -0.3990759, 51.3462067, -0.3990759, 51.3462067 ], "geometry": { "type": "Point", "coordinates": [ -0.3990759, 51.3462067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94367407" }, "bbox": [ -0.6475876, 51.1161834, -0.6475876, 51.1161834 ], "geometry": { "type": "Point", "coordinates": [ -0.6475876, 51.1161834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410882" }, "bbox": [ -0.4555006, 51.1656212, -0.4555006, 51.1656212 ], "geometry": { "type": "Point", "coordinates": [ -0.4555006, 51.1656212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27566804" }, "bbox": [ -0.1704258, 51.2890822, -0.1704258, 51.2890822 ], "geometry": { "type": "Point", "coordinates": [ -0.1704258, 51.2890822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28564147" }, "bbox": [ -0.1596551, 51.2930412, -0.1596551, 51.2930412 ], "geometry": { "type": "Point", "coordinates": [ -0.1596551, 51.2930412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94444932" }, "bbox": [ -0.6494002, 51.1904069, -0.6494002, 51.1904069 ], "geometry": { "type": "Point", "coordinates": [ -0.6494002, 51.1904069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29435979" }, "bbox": [ -0.1468678, 51.1785479, -0.1468678, 51.1785479 ], "geometry": { "type": "Point", "coordinates": [ -0.1468678, 51.1785479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29436856" }, "bbox": [ -0.1460685, 51.1766866, -0.1460685, 51.1766866 ], "geometry": { "type": "Point", "coordinates": [ -0.1460685, 51.1766866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29430687" }, "bbox": [ -0.1552336, 51.179432, -0.1552336, 51.179432 ], "geometry": { "type": "Point", "coordinates": [ -0.1552336, 51.179432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82412299" }, "bbox": [ -0.8251219, 51.1713961, -0.8251219, 51.1713961 ], "geometry": { "type": "Point", "coordinates": [ -0.8251219, 51.1713961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423116" }, "bbox": [ -0.8241065, 51.1726736, -0.8241065, 51.1726736 ], "geometry": { "type": "Point", "coordinates": [ -0.8241065, 51.1726736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82423401" }, "bbox": [ -0.8234615, 51.1715643, -0.8234615, 51.1715643 ], "geometry": { "type": "Point", "coordinates": [ -0.8234615, 51.1715643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422015" }, "bbox": [ -0.8256765, 51.1727258, -0.8256765, 51.1727258 ], "geometry": { "type": "Point", "coordinates": [ -0.8256765, 51.1727258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21420357" }, "bbox": [ -0.2700219, 51.1689054, -0.2700219, 51.1689054 ], "geometry": { "type": "Point", "coordinates": [ -0.2700219, 51.1689054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20428758" }, "bbox": [ -0.2724509, 51.1696791, -0.2724509, 51.1696791 ], "geometry": { "type": "Point", "coordinates": [ -0.2724509, 51.1696791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14374822" }, "bbox": [ -0.3656078, 51.1229403, -0.3656078, 51.1229403 ], "geometry": { "type": "Point", "coordinates": [ -0.3656078, 51.1229403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12378594" }, "bbox": [ -0.388597, 51.1296468, -0.388597, 51.1296468 ], "geometry": { "type": "Point", "coordinates": [ -0.388597, 51.1296468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12369464" }, "bbox": [ -0.3872194, 51.1180093, -0.3872194, 51.1180093 ], "geometry": { "type": "Point", "coordinates": [ -0.3872194, 51.1180093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372237" }, "bbox": [ -0.3409723, 51.1238436, -0.3409723, 51.1238436 ], "geometry": { "type": "Point", "coordinates": [ -0.3409723, 51.1238436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10409101" }, "bbox": [ -0.4157166, 51.1486007, -0.4157166, 51.1486007 ], "geometry": { "type": "Point", "coordinates": [ -0.4157166, 51.1486007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10407135" }, "bbox": [ -0.4182475, 51.1518567, -0.4182475, 51.1518567 ], "geometry": { "type": "Point", "coordinates": [ -0.4182475, 51.1518567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11581501" }, "bbox": [ -0.4066278, 51.310405, -0.4066278, 51.310405 ], "geometry": { "type": "Point", "coordinates": [ -0.4066278, 51.310405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11580525" }, "bbox": [ -0.408131, 51.3124489, -0.408131, 51.3124489 ], "geometry": { "type": "Point", "coordinates": [ -0.408131, 51.3124489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10586722" }, "bbox": [ -0.4133944, 51.3123972, -0.4133944, 51.3123972 ], "geometry": { "type": "Point", "coordinates": [ -0.4133944, 51.3123972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93441156" }, "bbox": [ -0.6696394, 51.1930167, -0.6696394, 51.1930167 ], "geometry": { "type": "Point", "coordinates": [ -0.6696394, 51.1930167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93441080" }, "bbox": [ -0.66881, 51.1945253, -0.66881, 51.1945253 ], "geometry": { "type": "Point", "coordinates": [ -0.66881, 51.1945253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85477826" }, "bbox": [ -0.7729084, 51.2181305, -0.7729084, 51.2181305 ], "geometry": { "type": "Point", "coordinates": [ -0.7729084, 51.2181305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85479614" }, "bbox": [ -0.7704286, 51.2166266, -0.7704286, 51.2166266 ], "geometry": { "type": "Point", "coordinates": [ -0.7704286, 51.2166266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85476218" }, "bbox": [ -0.7754745, 51.2173932, -0.7754745, 51.2173932 ], "geometry": { "type": "Point", "coordinates": [ -0.7754745, 51.2173932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85477920" }, "bbox": [ -0.7729425, 51.2176672, -0.7729425, 51.2176672 ], "geometry": { "type": "Point", "coordinates": [ -0.7729425, 51.2176672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85478913" }, "bbox": [ -0.7714462, 51.2167115, -0.7714462, 51.2167115 ], "geometry": { "type": "Point", "coordinates": [ -0.7714462, 51.2167115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85479216" }, "bbox": [ -0.7710538, 51.2172512, -0.7710538, 51.2172512 ], "geometry": { "type": "Point", "coordinates": [ -0.7710538, 51.2172512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22452518" }, "bbox": [ -0.2524229, 51.1926698, -0.2524229, 51.1926698 ], "geometry": { "type": "Point", "coordinates": [ -0.2524229, 51.1926698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16410989" }, "bbox": [ -0.3411256, 51.1645886, -0.3411256, 51.1645886 ], "geometry": { "type": "Point", "coordinates": [ -0.3411256, 51.1645886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90365386" }, "bbox": [ -0.7076246, 51.1239089, -0.7076246, 51.1239089 ], "geometry": { "type": "Point", "coordinates": [ -0.7076246, 51.1239089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07523292" }, "bbox": [ -0.4628107, 51.265241, -0.4628107, 51.265241 ], "geometry": { "type": "Point", "coordinates": [ -0.4628107, 51.265241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06459084" }, "bbox": [ -0.4712692, 51.2017991, -0.4712692, 51.2017991 ], "geometry": { "type": "Point", "coordinates": [ -0.4712692, 51.2017991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465323" }, "bbox": [ -0.4622235, 51.205182, -0.4622235, 51.205182 ], "geometry": { "type": "Point", "coordinates": [ -0.4622235, 51.205182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464433" }, "bbox": [ -0.4634895, 51.2060805, -0.4634895, 51.2060805 ], "geometry": { "type": "Point", "coordinates": [ -0.4634895, 51.2060805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82414830" }, "bbox": [ -0.8208217, 51.1653088, -0.8208217, 51.1653088 ], "geometry": { "type": "Point", "coordinates": [ -0.8208217, 51.1653088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07405395" }, "bbox": [ -0.4635609, 51.1577188, -0.4635609, 51.1577188 ], "geometry": { "type": "Point", "coordinates": [ -0.4635609, 51.1577188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03426008" }, "bbox": [ -0.5192947, 51.1685961, -0.5192947, 51.1685961 ], "geometry": { "type": "Point", "coordinates": [ -0.5192947, 51.1685961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15416539" }, "bbox": [ -0.3470377, 51.1602918, -0.3470377, 51.1602918 ], "geometry": { "type": "Point", "coordinates": [ -0.3470377, 51.1602918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04675029" }, "bbox": [ -0.4993508, 51.395041, -0.4993508, 51.395041 ], "geometry": { "type": "Point", "coordinates": [ -0.4993508, 51.395041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15497556" }, "bbox": [ -0.3432586, 51.2334703, -0.3432586, 51.2334703 ], "geometry": { "type": "Point", "coordinates": [ -0.3432586, 51.2334703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13411399" }, "bbox": [ -0.3834287, 51.165971, -0.3834287, 51.165971 ], "geometry": { "type": "Point", "coordinates": [ -0.3834287, 51.165971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13424504" }, "bbox": [ -0.3788336, 51.166336, -0.3788336, 51.166336 ], "geometry": { "type": "Point", "coordinates": [ -0.3788336, 51.166336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13424222" }, "bbox": [ -0.379125, 51.1679489, -0.379125, 51.1679489 ], "geometry": { "type": "Point", "coordinates": [ -0.379125, 51.1679489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13422306" }, "bbox": [ -0.3818727, 51.1665491, -0.3818727, 51.1665491 ], "geometry": { "type": "Point", "coordinates": [ -0.3818727, 51.1665491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06468562" }, "bbox": [ -0.4716076, 51.2089263, -0.4716076, 51.2089263 ], "geometry": { "type": "Point", "coordinates": [ -0.4716076, 51.2089263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10469773" }, "bbox": [ -0.4123246, 51.2083624, -0.4123246, 51.2083624 ], "geometry": { "type": "Point", "coordinates": [ -0.4123246, 51.2083624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408587" }, "bbox": [ -0.2876312, 51.1544743, -0.2876312, 51.1544743 ], "geometry": { "type": "Point", "coordinates": [ -0.2876312, 51.1544743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07577666" }, "bbox": [ -0.4552984, 51.3080281, -0.4552984, 51.3080281 ], "geometry": { "type": "Point", "coordinates": [ -0.4552984, 51.3080281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08541943" }, "bbox": [ -0.4502495, 51.2787365, -0.4502495, 51.2787365 ], "geometry": { "type": "Point", "coordinates": [ -0.4502495, 51.2787365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08538876" }, "bbox": [ -0.4388891, 51.2728645, -0.4388891, 51.2728645 ], "geometry": { "type": "Point", "coordinates": [ -0.4388891, 51.2728645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13466363" }, "bbox": [ -0.3750021, 51.2075471, -0.3750021, 51.2075471 ], "geometry": { "type": "Point", "coordinates": [ -0.3750021, 51.2075471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11585001" }, "bbox": [ -0.4015715, 51.3102491, -0.4015715, 51.3102491 ], "geometry": { "type": "Point", "coordinates": [ -0.4015715, 51.3102491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11589133" }, "bbox": [ -0.3952936, 51.313062, -0.3952936, 51.313062 ], "geometry": { "type": "Point", "coordinates": [ -0.3952936, 51.313062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11573588" }, "bbox": [ -0.4039425, 51.3090906, -0.4039425, 51.3090906 ], "geometry": { "type": "Point", "coordinates": [ -0.4039425, 51.3090906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11575884" }, "bbox": [ -0.4008183, 51.3085399, -0.4008183, 51.3085399 ], "geometry": { "type": "Point", "coordinates": [ -0.4008183, 51.3085399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38518567" }, "bbox": [ -0.012027, 51.2473068, -0.012027, 51.2473068 ], "geometry": { "type": "Point", "coordinates": [ -0.012027, 51.2473068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38518853" }, "bbox": [ -0.0116176, 51.2462397, -0.0116176, 51.2462397 ], "geometry": { "type": "Point", "coordinates": [ -0.0116176, 51.2462397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38518741" }, "bbox": [ -0.0118115, 51.2449361, -0.0118115, 51.2449361 ], "geometry": { "type": "Point", "coordinates": [ -0.0118115, 51.2449361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39510347" }, "bbox": [ -0.0095451, 51.2455376, -0.0095451, 51.2455376 ], "geometry": { "type": "Point", "coordinates": [ -0.0095451, 51.2455376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39510743" }, "bbox": [ -0.0088303, 51.2449746, -0.0088303, 51.2449746 ], "geometry": { "type": "Point", "coordinates": [ -0.0088303, 51.2449746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39511740" }, "bbox": [ -0.007634, 51.244784, -0.007634, 51.244784 ], "geometry": { "type": "Point", "coordinates": [ -0.007634, 51.244784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39512738" }, "bbox": [ -0.0060268, 51.24461, -0.0060268, 51.24461 ], "geometry": { "type": "Point", "coordinates": [ -0.0060268, 51.24461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39511656" }, "bbox": [ -0.0077417, 51.2462855, -0.0077417, 51.2462855 ], "geometry": { "type": "Point", "coordinates": [ -0.0077417, 51.2462855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39513347" }, "bbox": [ -0.0052124, 51.2453915, -0.0052124, 51.2453915 ], "geometry": { "type": "Point", "coordinates": [ -0.0052124, 51.2453915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39510261" }, "bbox": [ -0.0096614, 51.2469118, -0.0096614, 51.2469118 ], "geometry": { "type": "Point", "coordinates": [ -0.0096614, 51.2469118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39511536" }, "bbox": [ -0.0078514, 51.2444678, -0.0078514, 51.2444678 ], "geometry": { "type": "Point", "coordinates": [ -0.0078514, 51.2444678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39511051" }, "bbox": [ -0.0085355, 51.2458322, -0.0085355, 51.2458322 ], "geometry": { "type": "Point", "coordinates": [ -0.0085355, 51.2458322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39511962" }, "bbox": [ -0.0073277, 51.2467458, -0.0073277, 51.2467458 ], "geometry": { "type": "Point", "coordinates": [ -0.0073277, 51.2467458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14590975" }, "bbox": [ -0.3638184, 51.325362, -0.3638184, 51.325362 ], "geometry": { "type": "Point", "coordinates": [ -0.3638184, 51.325362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14582689" }, "bbox": [ -0.3621861, 51.3176377, -0.3621861, 51.3176377 ], "geometry": { "type": "Point", "coordinates": [ -0.3621861, 51.3176377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13598260" }, "bbox": [ -0.3677428, 51.3242395, -0.3677428, 51.3242395 ], "geometry": { "type": "Point", "coordinates": [ -0.3677428, 51.3242395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06702909" }, "bbox": [ -0.4715903, 51.4207137, -0.4715903, 51.4207137 ], "geometry": { "type": "Point", "coordinates": [ -0.4715903, 51.4207137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354511" }, "bbox": [ -0.6950493, 51.1079653, -0.6950493, 51.1079653 ], "geometry": { "type": "Point", "coordinates": [ -0.6950493, 51.1079653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29461528" }, "bbox": [ -0.1526537, 51.2012132, -0.1526537, 51.2012132 ], "geometry": { "type": "Point", "coordinates": [ -0.1526537, 51.2012132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00611811" }, "bbox": [ -0.5631755, 51.3402936, -0.5631755, 51.3402936 ], "geometry": { "type": "Point", "coordinates": [ -0.5631755, 51.3402936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610148" }, "bbox": [ -0.5641071, 51.3437886, -0.5641071, 51.3437886 ], "geometry": { "type": "Point", "coordinates": [ -0.5641071, 51.3437886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00601796" }, "bbox": [ -0.5633784, 51.3389598, -0.5633784, 51.3389598 ], "geometry": { "type": "Point", "coordinates": [ -0.5633784, 51.3389598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21409596" }, "bbox": [ -0.2575799, 51.1549481, -0.2575799, 51.1549481 ], "geometry": { "type": "Point", "coordinates": [ -0.2575799, 51.1549481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06566965" }, "bbox": [ -0.4709758, 51.2990067, -0.4709758, 51.2990067 ], "geometry": { "type": "Point", "coordinates": [ -0.4709758, 51.2990067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06569124" }, "bbox": [ -0.4680314, 51.2951688, -0.4680314, 51.2951688 ], "geometry": { "type": "Point", "coordinates": [ -0.4680314, 51.2951688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04623769" }, "bbox": [ -0.5025122, 51.3537053, -0.5025122, 51.3537053 ], "geometry": { "type": "Point", "coordinates": [ -0.5025122, 51.3537053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04622956" }, "bbox": [ -0.5036369, 51.3524719, -0.5036369, 51.3524719 ], "geometry": { "type": "Point", "coordinates": [ -0.5036369, 51.3524719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10596077" }, "bbox": [ -0.4138164, 51.3263346, -0.4138164, 51.3263346 ], "geometry": { "type": "Point", "coordinates": [ -0.4138164, 51.3263346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02637801" }, "bbox": [ -0.5243758, 51.3565905, -0.5243758, 51.3565905 ], "geometry": { "type": "Point", "coordinates": [ -0.5243758, 51.3565905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02635017" }, "bbox": [ -0.5289183, 51.358397, -0.5289183, 51.358397 ], "geometry": { "type": "Point", "coordinates": [ -0.5289183, 51.358397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27525553" }, "bbox": [ -0.1735369, 51.2575786, -0.1735369, 51.2575786 ], "geometry": { "type": "Point", "coordinates": [ -0.1735369, 51.2575786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28521358" }, "bbox": [ -0.1661723, 51.2583953, -0.1661723, 51.2583953 ], "geometry": { "type": "Point", "coordinates": [ -0.1661723, 51.2583953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569824" }, "bbox": [ -0.4382994, 51.2949094, -0.4382994, 51.2949094 ], "geometry": { "type": "Point", "coordinates": [ -0.4382994, 51.2949094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03701171" }, "bbox": [ -0.5183991, 51.4259786, -0.5183991, 51.4259786 ], "geometry": { "type": "Point", "coordinates": [ -0.5183991, 51.4259786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04570487" }, "bbox": [ -0.5075539, 51.3099666, -0.5075539, 51.3099666 ], "geometry": { "type": "Point", "coordinates": [ -0.5075539, 51.3099666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04571766" }, "bbox": [ -0.5070136, 51.3084678, -0.5070136, 51.3084678 ], "geometry": { "type": "Point", "coordinates": [ -0.5070136, 51.3084678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04571193" }, "bbox": [ -0.5077416, 51.3111869, -0.5077416, 51.3111869 ], "geometry": { "type": "Point", "coordinates": [ -0.5077416, 51.3111869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00610480" }, "bbox": [ -0.5648335, 51.3464801, -0.5648335, 51.3464801 ], "geometry": { "type": "Point", "coordinates": [ -0.5648335, 51.3464801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00621302" }, "bbox": [ -0.5635855, 51.3485656, -0.5635855, 51.3485656 ], "geometry": { "type": "Point", "coordinates": [ -0.5635855, 51.3485656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00620615" }, "bbox": [ -0.5644523, 51.3495671, -0.5644523, 51.3495671 ], "geometry": { "type": "Point", "coordinates": [ -0.5644523, 51.3495671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12526447" }, "bbox": [ -0.3871451, 51.2602807, -0.3871451, 51.2602807 ], "geometry": { "type": "Point", "coordinates": [ -0.3871451, 51.2602807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12525644" }, "bbox": [ -0.3883862, 51.2600782, -0.3883862, 51.2600782 ], "geometry": { "type": "Point", "coordinates": [ -0.3883862, 51.2600782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12525743" }, "bbox": [ -0.3878765, 51.259984, -0.3878765, 51.259984 ], "geometry": { "type": "Point", "coordinates": [ -0.3878765, 51.259984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04552963" }, "bbox": [ -0.5053498, 51.2903788, -0.5053498, 51.2903788 ], "geometry": { "type": "Point", "coordinates": [ -0.5053498, 51.2903788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91335161" }, "bbox": [ -0.6946267, 51.0945188, -0.6946267, 51.0945188 ], "geometry": { "type": "Point", "coordinates": [ -0.6946267, 51.0945188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91334252" }, "bbox": [ -0.6957127, 51.0937819, -0.6957127, 51.0937819 ], "geometry": { "type": "Point", "coordinates": [ -0.6957127, 51.0937819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11595537" }, "bbox": [ -0.4004419, 51.3225881, -0.4004419, 51.3225881 ], "geometry": { "type": "Point", "coordinates": [ -0.4004419, 51.3225881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19543350" }, "bbox": [ -0.290521, 51.2771476, -0.290521, 51.2771476 ], "geometry": { "type": "Point", "coordinates": [ -0.290521, 51.2771476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01479725" }, "bbox": [ -0.5426655, 51.2156531, -0.5426655, 51.2156531 ], "geometry": { "type": "Point", "coordinates": [ -0.5426655, 51.2156531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00470688" }, "bbox": [ -0.5682457, 51.2212626, -0.5682457, 51.2212626 ], "geometry": { "type": "Point", "coordinates": [ -0.5682457, 51.2212626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86437435" }, "bbox": [ -0.7603771, 51.182868, -0.7603771, 51.182868 ], "geometry": { "type": "Point", "coordinates": [ -0.7603771, 51.182868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86442262" }, "bbox": [ -0.7683956, 51.1948689, -0.7683956, 51.1948689 ], "geometry": { "type": "Point", "coordinates": [ -0.7683956, 51.1948689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01425194" }, "bbox": [ -0.5481964, 51.176617, -0.5481964, 51.176617 ], "geometry": { "type": "Point", "coordinates": [ -0.5481964, 51.176617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01436115" }, "bbox": [ -0.5479043, 51.1785382, -0.5479043, 51.1785382 ], "geometry": { "type": "Point", "coordinates": [ -0.5479043, 51.1785382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04466792" }, "bbox": [ -0.503507, 51.2119587, -0.503507, 51.2119587 ], "geometry": { "type": "Point", "coordinates": [ -0.503507, 51.2119587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04467387" }, "bbox": [ -0.5020819, 51.2115203, -0.5020819, 51.2115203 ], "geometry": { "type": "Point", "coordinates": [ -0.5020819, 51.2115203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08657139" }, "bbox": [ -0.4393181, 51.3771582, -0.4393181, 51.3771582 ], "geometry": { "type": "Point", "coordinates": [ -0.4393181, 51.3771582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03568926" }, "bbox": [ -0.5115564, 51.2959216, -0.5115564, 51.2959216 ], "geometry": { "type": "Point", "coordinates": [ -0.5115564, 51.2959216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04487421" }, "bbox": [ -0.5012093, 51.2232084, -0.5012093, 51.2232084 ], "geometry": { "type": "Point", "coordinates": [ -0.5012093, 51.2232084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490825" }, "bbox": [ -0.3675033, 51.2311004, -0.3675033, 51.2311004 ], "geometry": { "type": "Point", "coordinates": [ -0.3675033, 51.2311004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09373884" }, "bbox": [ -0.4381599, 51.1294253, -0.4381599, 51.1294253 ], "geometry": { "type": "Point", "coordinates": [ -0.4381599, 51.1294253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09590676" }, "bbox": [ -0.4370719, 51.3263867, -0.4370719, 51.3263867 ], "geometry": { "type": "Point", "coordinates": [ -0.4370719, 51.3263867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10591783" }, "bbox": [ -0.4198586, 51.3264731, -0.4198586, 51.3264731 ], "geometry": { "type": "Point", "coordinates": [ -0.4198586, 51.3264731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10593592" }, "bbox": [ -0.4172574, 51.3276489, -0.4172574, 51.3276489 ], "geometry": { "type": "Point", "coordinates": [ -0.4172574, 51.3276489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416912" }, "bbox": [ -0.518622, 51.1598953, -0.518622, 51.1598953 ], "geometry": { "type": "Point", "coordinates": [ -0.518622, 51.1598953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416012" }, "bbox": [ -0.5187887, 51.1600316, -0.5187887, 51.1600316 ], "geometry": { "type": "Point", "coordinates": [ -0.5187887, 51.1600316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17462460" }, "bbox": [ -0.3230501, 51.2065882, -0.3230501, 51.2065882 ], "geometry": { "type": "Point", "coordinates": [ -0.3230501, 51.2065882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410343" }, "bbox": [ -0.5564785, 51.1632556, -0.5564785, 51.1632556 ], "geometry": { "type": "Point", "coordinates": [ -0.5564785, 51.1632556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411044" }, "bbox": [ -0.5555181, 51.1633057, -0.5555181, 51.1633057 ], "geometry": { "type": "Point", "coordinates": [ -0.5555181, 51.1633057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411840" }, "bbox": [ -0.5540363, 51.162714, -0.5540363, 51.162714 ], "geometry": { "type": "Point", "coordinates": [ -0.5540363, 51.162714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05473055" }, "bbox": [ -0.493705, 51.2174572, -0.493705, 51.2174572 ], "geometry": { "type": "Point", "coordinates": [ -0.493705, 51.2174572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11352644" }, "bbox": [ -0.4092399, 51.107937, -0.4092399, 51.107937 ], "geometry": { "type": "Point", "coordinates": [ -0.4092399, 51.107937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92507282" }, "bbox": [ -0.6729212, 51.2487769, -0.6729212, 51.2487769 ], "geometry": { "type": "Point", "coordinates": [ -0.6729212, 51.2487769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11582958" }, "bbox": [ -0.4045404, 51.3154474, -0.4045404, 51.3154474 ], "geometry": { "type": "Point", "coordinates": [ -0.4045404, 51.3154474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11581435" }, "bbox": [ -0.4065688, 51.3135467, -0.4065688, 51.3135467 ], "geometry": { "type": "Point", "coordinates": [ -0.4065688, 51.3135467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11580833" }, "bbox": [ -0.4074836, 51.3132874, -0.4074836, 51.3132874 ], "geometry": { "type": "Point", "coordinates": [ -0.4074836, 51.3132874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10589654" }, "bbox": [ -0.4094285, 51.315264, -0.4094285, 51.315264 ], "geometry": { "type": "Point", "coordinates": [ -0.4094285, 51.315264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10589828" }, "bbox": [ -0.4092639, 51.3129036, -0.4092639, 51.3129036 ], "geometry": { "type": "Point", "coordinates": [ -0.4092639, 51.3129036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09586783" }, "bbox": [ -0.4275861, 51.3179918, -0.4275861, 51.3179918 ], "geometry": { "type": "Point", "coordinates": [ -0.4275861, 51.3179918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18432826" }, "bbox": [ -0.309712, 51.1765708, -0.309712, 51.1765708 ], "geometry": { "type": "Point", "coordinates": [ -0.309712, 51.1765708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18433115" }, "bbox": [ -0.3092521, 51.1753537, -0.3092521, 51.1753537 ], "geometry": { "type": "Point", "coordinates": [ -0.3092521, 51.1753537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17438356" }, "bbox": [ -0.315561, 51.1791708, -0.315561, 51.1791708 ], "geometry": { "type": "Point", "coordinates": [ -0.315561, 51.1791708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18428146" }, "bbox": [ -0.3020376, 51.1692117, -0.3020376, 51.1692117 ], "geometry": { "type": "Point", "coordinates": [ -0.3020376, 51.1692117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18421278" }, "bbox": [ -0.3116905, 51.1720896, -0.3116905, 51.1720896 ], "geometry": { "type": "Point", "coordinates": [ -0.3116905, 51.1720896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05558146" }, "bbox": [ -0.4860454, 51.2881964, -0.4860454, 51.2881964 ], "geometry": { "type": "Point", "coordinates": [ -0.4860454, 51.2881964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428519" }, "bbox": [ -0.2873233, 51.1663757, -0.2873233, 51.1663757 ], "geometry": { "type": "Point", "coordinates": [ -0.2873233, 51.1663757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10483235" }, "bbox": [ -0.4213086, 51.2237557, -0.4213086, 51.2237557 ], "geometry": { "type": "Point", "coordinates": [ -0.4213086, 51.2237557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11472201" }, "bbox": [ -0.4098901, 51.2135067, -0.4098901, 51.2135067 ], "geometry": { "type": "Point", "coordinates": [ -0.4098901, 51.2135067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12482059" }, "bbox": [ -0.3946526, 51.2254986, -0.3946526, 51.2254986 ], "geometry": { "type": "Point", "coordinates": [ -0.3946526, 51.2254986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10369315" }, "bbox": [ -0.4164517, 51.1143389, -0.4164517, 51.1143389 ], "geometry": { "type": "Point", "coordinates": [ -0.4164517, 51.1143389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10368597" }, "bbox": [ -0.417382, 51.1213045, -0.417382, 51.1213045 ], "geometry": { "type": "Point", "coordinates": [ -0.417382, 51.1213045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07413240" }, "bbox": [ -0.4666963, 51.16186, -0.4666963, 51.16186 ], "geometry": { "type": "Point", "coordinates": [ -0.4666963, 51.16186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18442887" }, "bbox": [ -0.3087365, 51.1908554, -0.3087365, 51.1908554 ], "geometry": { "type": "Point", "coordinates": [ -0.3087365, 51.1908554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18492905" }, "bbox": [ -0.3073507, 51.2282156, -0.3073507, 51.2282156 ], "geometry": { "type": "Point", "coordinates": [ -0.3073507, 51.2282156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17449644" }, "bbox": [ -0.3133795, 51.186875, -0.3133795, 51.186875 ], "geometry": { "type": "Point", "coordinates": [ -0.3133795, 51.186875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14489995" }, "bbox": [ -0.3547381, 51.2280362, -0.3547381, 51.2280362 ], "geometry": { "type": "Point", "coordinates": [ -0.3547381, 51.2280362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14495614" }, "bbox": [ -0.3605654, 51.2300375, -0.3605654, 51.2300375 ], "geometry": { "type": "Point", "coordinates": [ -0.3605654, 51.2300375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14499808" }, "bbox": [ -0.3544357, 51.2292521, -0.3544357, 51.2292521 ], "geometry": { "type": "Point", "coordinates": [ -0.3544357, 51.2292521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14493106" }, "bbox": [ -0.3645013, 51.2291764, -0.3645013, 51.2291764 ], "geometry": { "type": "Point", "coordinates": [ -0.3645013, 51.2291764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14494935" }, "bbox": [ -0.3616094, 51.231905, -0.3616094, 51.231905 ], "geometry": { "type": "Point", "coordinates": [ -0.3616094, 51.231905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490169" }, "bbox": [ -0.367924, 51.234912, -0.367924, 51.234912 ], "geometry": { "type": "Point", "coordinates": [ -0.367924, 51.234912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14492068" }, "bbox": [ -0.3656529, 51.2349622, -0.3656529, 51.2349622 ], "geometry": { "type": "Point", "coordinates": [ -0.3656529, 51.2349622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14494301" }, "bbox": [ -0.3629511, 51.2289174, -0.3629511, 51.2289174 ], "geometry": { "type": "Point", "coordinates": [ -0.3629511, 51.2289174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14492800" }, "bbox": [ -0.3646403, 51.2288684, -0.3646403, 51.2288684 ], "geometry": { "type": "Point", "coordinates": [ -0.3646403, 51.2288684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14495065" }, "bbox": [ -0.3618406, 51.2342434, -0.3618406, 51.2342434 ], "geometry": { "type": "Point", "coordinates": [ -0.3618406, 51.2342434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14496127" }, "bbox": [ -0.3618635, 51.2308761, -0.3618635, 51.2308761 ], "geometry": { "type": "Point", "coordinates": [ -0.3618635, 51.2308761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15491470" }, "bbox": [ -0.3534563, 51.2350981, -0.3534563, 51.2350981 ], "geometry": { "type": "Point", "coordinates": [ -0.3534563, 51.2350981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15495944" }, "bbox": [ -0.3469238, 51.2323541, -0.3469238, 51.2323541 ], "geometry": { "type": "Point", "coordinates": [ -0.3469238, 51.2323541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08482444" }, "bbox": [ -0.4512613, 51.2248792, -0.4512613, 51.2248792 ], "geometry": { "type": "Point", "coordinates": [ -0.4512613, 51.2248792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12491716" }, "bbox": [ -0.3950046, 51.2306595, -0.3950046, 51.2306595 ], "geometry": { "type": "Point", "coordinates": [ -0.3950046, 51.2306595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01690595" }, "bbox": [ -0.5477873, 51.4196849, -0.5477873, 51.4196849 ], "geometry": { "type": "Point", "coordinates": [ -0.5477873, 51.4196849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00699980" }, "bbox": [ -0.5489105, 51.4173447, -0.5489105, 51.4173447 ], "geometry": { "type": "Point", "coordinates": [ -0.5489105, 51.4173447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361289" }, "bbox": [ -0.4701386, 51.1215366, -0.4701386, 51.1215366 ], "geometry": { "type": "Point", "coordinates": [ -0.4701386, 51.1215366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07364191" }, "bbox": [ -0.4665165, 51.1214138, -0.4665165, 51.1214138 ], "geometry": { "type": "Point", "coordinates": [ -0.4665165, 51.1214138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06347394" }, "bbox": [ -0.4769501, 51.1036648, -0.4769501, 51.1036648 ], "geometry": { "type": "Point", "coordinates": [ -0.4769501, 51.1036648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06351968" }, "bbox": [ -0.485126, 51.1105634, -0.485126, 51.1105634 ], "geometry": { "type": "Point", "coordinates": [ -0.485126, 51.1105634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06352059" }, "bbox": [ -0.484262, 51.1097767, -0.484262, 51.1097767 ], "geometry": { "type": "Point", "coordinates": [ -0.484262, 51.1097767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06354124" }, "bbox": [ -0.4814153, 51.1066013, -0.4814153, 51.1066013 ], "geometry": { "type": "Point", "coordinates": [ -0.4814153, 51.1066013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588249" }, "bbox": [ -0.4253456, 51.3149907, -0.4253456, 51.3149907 ], "geometry": { "type": "Point", "coordinates": [ -0.4253456, 51.3149907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588538" }, "bbox": [ -0.4250748, 51.313971, -0.4250748, 51.313971 ], "geometry": { "type": "Point", "coordinates": [ -0.4250748, 51.313971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09586535" }, "bbox": [ -0.4277811, 51.3137179, -0.4277811, 51.3137179 ], "geometry": { "type": "Point", "coordinates": [ -0.4277811, 51.3137179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02366009" }, "bbox": [ -0.5353957, 51.1149775, -0.5353957, 51.1149775 ], "geometry": { "type": "Point", "coordinates": [ -0.5353957, 51.1149775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02354199" }, "bbox": [ -0.5383886, 51.1136, -0.5383886, 51.1136 ], "geometry": { "type": "Point", "coordinates": [ -0.5383886, 51.1136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02357147" }, "bbox": [ -0.5341224, 51.1093233, -0.5341224, 51.1093233 ], "geometry": { "type": "Point", "coordinates": [ -0.5341224, 51.1093233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01326962" }, "bbox": [ -0.5494982, 51.0839129, -0.5494982, 51.0839129 ], "geometry": { "type": "Point", "coordinates": [ -0.5494982, 51.0839129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01321288" }, "bbox": [ -0.5575804, 51.0863011, -0.5575804, 51.0863011 ], "geometry": { "type": "Point", "coordinates": [ -0.5575804, 51.0863011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01323672" }, "bbox": [ -0.5543339, 51.0850819, -0.5543339, 51.0850819 ], "geometry": { "type": "Point", "coordinates": [ -0.5543339, 51.0850819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17416548" }, "bbox": [ -0.3194416, 51.1604376, -0.3194416, 51.1604376 ], "geometry": { "type": "Point", "coordinates": [ -0.3194416, 51.1604376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25522954" }, "bbox": [ -0.2059931, 51.2582974, -0.2059931, 51.2582974 ], "geometry": { "type": "Point", "coordinates": [ -0.2059931, 51.2582974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15445808" }, "bbox": [ -0.3476271, 51.1841479, -0.3476271, 51.1841479 ], "geometry": { "type": "Point", "coordinates": [ -0.3476271, 51.1841479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14598459" }, "bbox": [ -0.3533133, 51.323874, -0.3533133, 51.323874 ], "geometry": { "type": "Point", "coordinates": [ -0.3533133, 51.323874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04634054" }, "bbox": [ -0.5018505, 51.3613884, -0.5018505, 51.3613884 ], "geometry": { "type": "Point", "coordinates": [ -0.5018505, 51.3613884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04636832" }, "bbox": [ -0.4974149, 51.3590526, -0.4974149, 51.3590526 ], "geometry": { "type": "Point", "coordinates": [ -0.4974149, 51.3590526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04627274" }, "bbox": [ -0.4975933, 51.3541219, -0.4975933, 51.3541219 ], "geometry": { "type": "Point", "coordinates": [ -0.4975933, 51.3541219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03622161" }, "bbox": [ -0.5191312, 51.3532109, -0.5191312, 51.3532109 ], "geometry": { "type": "Point", "coordinates": [ -0.5191312, 51.3532109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11556419" }, "bbox": [ -0.4005721, 51.2847669, -0.4005721, 51.2847669 ], "geometry": { "type": "Point", "coordinates": [ -0.4005721, 51.2847669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09350745" }, "bbox": [ -0.4433921, 51.1080157, -0.4433921, 51.1080157 ], "geometry": { "type": "Point", "coordinates": [ -0.4433921, 51.1080157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89321733" }, "bbox": [ -0.7284582, 51.0833774, -0.7284582, 51.0833774 ], "geometry": { "type": "Point", "coordinates": [ -0.7284582, 51.0833774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89324243" }, "bbox": [ -0.7246449, 51.0843724, -0.7246449, 51.0843724 ], "geometry": { "type": "Point", "coordinates": [ -0.7246449, 51.0843724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89321911" }, "bbox": [ -0.7281079, 51.0814499, -0.7281079, 51.0814499 ], "geometry": { "type": "Point", "coordinates": [ -0.7281079, 51.0814499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89321321" }, "bbox": [ -0.7293191, 51.0822633, -0.7293191, 51.0822633 ], "geometry": { "type": "Point", "coordinates": [ -0.7293191, 51.0822633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12570845" }, "bbox": [ -0.393529, 51.3050486, -0.393529, 51.3050486 ], "geometry": { "type": "Point", "coordinates": [ -0.393529, 51.3050486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11575127" }, "bbox": [ -0.4015992, 51.303549, -0.4015992, 51.303549 ], "geometry": { "type": "Point", "coordinates": [ -0.4015992, 51.303549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02381033" }, "bbox": [ -0.5424113, 51.1348192, -0.5424113, 51.1348192 ], "geometry": { "type": "Point", "coordinates": [ -0.5424113, 51.1348192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13363684" }, "bbox": [ -0.381704, 51.1197436, -0.381704, 51.1197436 ], "geometry": { "type": "Point", "coordinates": [ -0.381704, 51.1197436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08383764" }, "bbox": [ -0.4522541, 51.1368263, -0.4522541, 51.1368263 ], "geometry": { "type": "Point", "coordinates": [ -0.4522541, 51.1368263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08382371" }, "bbox": [ -0.4542163, 51.13739, -0.4542163, 51.13739 ], "geometry": { "type": "Point", "coordinates": [ -0.4542163, 51.13739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08383169" }, "bbox": [ -0.4527952, 51.1375679, -0.4527952, 51.1375679 ], "geometry": { "type": "Point", "coordinates": [ -0.4527952, 51.1375679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08382562" }, "bbox": [ -0.4540497, 51.1366958, -0.4540497, 51.1366958 ], "geometry": { "type": "Point", "coordinates": [ -0.4540497, 51.1366958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07347263" }, "bbox": [ -0.4628495, 51.1008474, -0.4628495, 51.1008474 ], "geometry": { "type": "Point", "coordinates": [ -0.4628495, 51.1008474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07345865" }, "bbox": [ -0.4646837, 51.1010779, -0.4646837, 51.1010779 ], "geometry": { "type": "Point", "coordinates": [ -0.4646837, 51.1010779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06341283" }, "bbox": [ -0.4855991, 51.1029853, -0.4855991, 51.1029853 ], "geometry": { "type": "Point", "coordinates": [ -0.4855991, 51.1029853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05348624" }, "bbox": [ -0.4895348, 51.0977554, -0.4895348, 51.0977554 ], "geometry": { "type": "Point", "coordinates": [ -0.4895348, 51.0977554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05344708" }, "bbox": [ -0.4952033, 51.0962828, -0.4952033, 51.0962828 ], "geometry": { "type": "Point", "coordinates": [ -0.4952033, 51.0962828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06351008" }, "bbox": [ -0.4859271, 51.1052755, -0.4859271, 51.1052755 ], "geometry": { "type": "Point", "coordinates": [ -0.4859271, 51.1052755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15558502" }, "bbox": [ -0.3402051, 51.2825721, -0.3402051, 51.2825721 ], "geometry": { "type": "Point", "coordinates": [ -0.3402051, 51.2825721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545793" }, "bbox": [ -0.3442647, 51.2818392, -0.3442647, 51.2818392 ], "geometry": { "type": "Point", "coordinates": [ -0.3442647, 51.2818392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545377" }, "bbox": [ -0.3449191, 51.2803749, -0.3449191, 51.2803749 ], "geometry": { "type": "Point", "coordinates": [ -0.3449191, 51.2803749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15543471" }, "bbox": [ -0.3477253, 51.2798483, -0.3477253, 51.2798483 ], "geometry": { "type": "Point", "coordinates": [ -0.3477253, 51.2798483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546664" }, "bbox": [ -0.3424434, 51.2795034, -0.3424434, 51.2795034 ], "geometry": { "type": "Point", "coordinates": [ -0.3424434, 51.2795034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06373879" }, "bbox": [ -0.4808773, 51.1296891, -0.4808773, 51.1296891 ], "geometry": { "type": "Point", "coordinates": [ -0.4808773, 51.1296891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07376363" }, "bbox": [ -0.4631857, 51.1278889, -0.4631857, 51.1278889 ], "geometry": { "type": "Point", "coordinates": [ -0.4631857, 51.1278889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374755" }, "bbox": [ -0.4659558, 51.1272279, -0.4659558, 51.1272279 ], "geometry": { "type": "Point", "coordinates": [ -0.4659558, 51.1272279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374850" }, "bbox": [ -0.4638132, 51.1272449, -0.4638132, 51.1272449 ], "geometry": { "type": "Point", "coordinates": [ -0.4638132, 51.1272449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21505487" }, "bbox": [ -0.2600539, 51.2441176, -0.2600539, 51.2441176 ], "geometry": { "type": "Point", "coordinates": [ -0.2600539, 51.2441176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00340957" }, "bbox": [ -0.5723908, 51.102413, -0.5723908, 51.102413 ], "geometry": { "type": "Point", "coordinates": [ -0.5723908, 51.102413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00341326" }, "bbox": [ -0.5713835, 51.0989148, -0.5713835, 51.0989148 ], "geometry": { "type": "Point", "coordinates": [ -0.5713835, 51.0989148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00344961" }, "bbox": [ -0.5663736, 51.1020543, -0.5663736, 51.1020543 ], "geometry": { "type": "Point", "coordinates": [ -0.5663736, 51.1020543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26552901" }, "bbox": [ -0.1904003, 51.280208, -0.1904003, 51.280208 ], "geometry": { "type": "Point", "coordinates": [ -0.1904003, 51.280208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26555614" }, "bbox": [ -0.1866095, 51.2813569, -0.1866095, 51.2813569 ], "geometry": { "type": "Point", "coordinates": [ -0.1866095, 51.2813569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521626" }, "bbox": [ -0.3942201, 51.2584857, -0.3942201, 51.2584857 ], "geometry": { "type": "Point", "coordinates": [ -0.3942201, 51.2584857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521635" }, "bbox": [ -0.3939588, 51.2593573, -0.3939588, 51.2593573 ], "geometry": { "type": "Point", "coordinates": [ -0.3939588, 51.2593573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521341" }, "bbox": [ -0.3943901, 51.2598172, -0.3943901, 51.2598172 ], "geometry": { "type": "Point", "coordinates": [ -0.3943901, 51.2598172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521641" }, "bbox": [ -0.3939425, 51.2599516, -0.3939425, 51.2599516 ], "geometry": { "type": "Point", "coordinates": [ -0.3939425, 51.2599516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521541" }, "bbox": [ -0.3940808, 51.2598365, -0.3940808, 51.2598365 ], "geometry": { "type": "Point", "coordinates": [ -0.3940808, 51.2598365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05331447" }, "bbox": [ -0.5002114, 51.0908948, -0.5002114, 51.0908948 ], "geometry": { "type": "Point", "coordinates": [ -0.5002114, 51.0908948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05330854" }, "bbox": [ -0.5008622, 51.091568, -0.5008622, 51.091568 ], "geometry": { "type": "Point", "coordinates": [ -0.5008622, 51.091568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18555186" }, "bbox": [ -0.3017857, 51.2895128, -0.3017857, 51.2895128 ], "geometry": { "type": "Point", "coordinates": [ -0.3017857, 51.2895128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18566207" }, "bbox": [ -0.2989242, 51.2915802, -0.2989242, 51.2915802 ], "geometry": { "type": "Point", "coordinates": [ -0.2989242, 51.2915802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10570786" }, "bbox": [ -0.4223059, 51.3096073, -0.4223059, 51.3096073 ], "geometry": { "type": "Point", "coordinates": [ -0.4223059, 51.3096073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571490" }, "bbox": [ -0.4212784, 51.3094503, -0.4212784, 51.3094503 ], "geometry": { "type": "Point", "coordinates": [ -0.4212784, 51.3094503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10571281" }, "bbox": [ -0.4214392, 51.3088614, -0.4214392, 51.3088614 ], "geometry": { "type": "Point", "coordinates": [ -0.4214392, 51.3088614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10570675" }, "bbox": [ -0.4227533, 51.30875, -0.4227533, 51.30875 ], "geometry": { "type": "Point", "coordinates": [ -0.4227533, 51.30875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13361360" }, "bbox": [ -0.3857886, 51.1175447, -0.3857886, 51.1175447 ], "geometry": { "type": "Point", "coordinates": [ -0.3857886, 51.1175447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06363056" }, "bbox": [ -0.4829495, 51.1180375, -0.4829495, 51.1180375 ], "geometry": { "type": "Point", "coordinates": [ -0.4829495, 51.1180375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19532947" }, "bbox": [ -0.2919032, 51.268046, -0.2919032, 51.268046 ], "geometry": { "type": "Point", "coordinates": [ -0.2919032, 51.268046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08347680" }, "bbox": [ -0.4478191, 51.1022795, -0.4478191, 51.1022795 ], "geometry": { "type": "Point", "coordinates": [ -0.4478191, 51.1022795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09350914" }, "bbox": [ -0.4445176, 51.1052773, -0.4445176, 51.1052773 ], "geometry": { "type": "Point", "coordinates": [ -0.4445176, 51.1052773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09342084" }, "bbox": [ -0.4439631, 51.1020023, -0.4439631, 51.1020023 ], "geometry": { "type": "Point", "coordinates": [ -0.4439631, 51.1020023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03672814" }, "bbox": [ -0.5168765, 51.3939408, -0.5168765, 51.3939408 ], "geometry": { "type": "Point", "coordinates": [ -0.5168765, 51.3939408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665620" }, "bbox": [ -0.5276921, 51.3855723, -0.5276921, 51.3855723 ], "geometry": { "type": "Point", "coordinates": [ -0.5276921, 51.3855723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95363297" }, "bbox": [ -0.6393893, 51.1241798, -0.6393893, 51.1241798 ], "geometry": { "type": "Point", "coordinates": [ -0.6393893, 51.1241798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01464629" }, "bbox": [ -0.5489052, 51.2067715, -0.5489052, 51.2067715 ], "geometry": { "type": "Point", "coordinates": [ -0.5489052, 51.2067715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16416595" }, "bbox": [ -0.3333891, 51.1650932, -0.3333891, 51.1650932 ], "geometry": { "type": "Point", "coordinates": [ -0.3333891, 51.1650932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16416463" }, "bbox": [ -0.3333838, 51.1620009, -0.3333838, 51.1620009 ], "geometry": { "type": "Point", "coordinates": [ -0.3333838, 51.1620009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16414829" }, "bbox": [ -0.3355677, 51.1589446, -0.3355677, 51.1589446 ], "geometry": { "type": "Point", "coordinates": [ -0.3355677, 51.1589446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16411720" }, "bbox": [ -0.3405827, 51.1580794, -0.3405827, 51.1580794 ], "geometry": { "type": "Point", "coordinates": [ -0.3405827, 51.1580794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16404469" }, "bbox": [ -0.3363944, 51.1536685, -0.3363944, 51.1536685 ], "geometry": { "type": "Point", "coordinates": [ -0.3363944, 51.1536685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01396978" }, "bbox": [ -0.5474795, 51.1483136, -0.5474795, 51.1483136 ], "geometry": { "type": "Point", "coordinates": [ -0.5474795, 51.1483136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01383986" }, "bbox": [ -0.5519784, 51.1400883, -0.5519784, 51.1400883 ], "geometry": { "type": "Point", "coordinates": [ -0.5519784, 51.1400883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519997" }, "bbox": [ -0.511128, 51.2574852, -0.511128, 51.2574852 ], "geometry": { "type": "Point", "coordinates": [ -0.511128, 51.2574852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04510263" }, "bbox": [ -0.5104061, 51.2538608, -0.5104061, 51.2538608 ], "geometry": { "type": "Point", "coordinates": [ -0.5104061, 51.2538608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07391975" }, "bbox": [ -0.4689667, 51.1469571, -0.4689667, 51.1469571 ], "geometry": { "type": "Point", "coordinates": [ -0.4689667, 51.1469571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07392582" }, "bbox": [ -0.4681465, 51.1477923, -0.4681465, 51.1477923 ], "geometry": { "type": "Point", "coordinates": [ -0.4681465, 51.1477923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10583963" }, "bbox": [ -0.4173176, 51.3161299, -0.4173176, 51.3161299 ], "geometry": { "type": "Point", "coordinates": [ -0.4173176, 51.3161299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10582345" }, "bbox": [ -0.4197105, 51.3145097, -0.4197105, 51.3145097 ], "geometry": { "type": "Point", "coordinates": [ -0.4197105, 51.3145097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00696677" }, "bbox": [ -0.5535816, 51.4179756, -0.5535816, 51.4179756 ], "geometry": { "type": "Point", "coordinates": [ -0.5535816, 51.4179756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06349841" }, "bbox": [ -0.4735204, 51.0990315, -0.4735204, 51.0990315 ], "geometry": { "type": "Point", "coordinates": [ -0.4735204, 51.0990315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25541201" }, "bbox": [ -0.2084704, 51.2707334, -0.2084704, 51.2707334 ], "geometry": { "type": "Point", "coordinates": [ -0.2084704, 51.2707334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567798" }, "bbox": [ -0.2976196, 51.2996992, -0.2976196, 51.2996992 ], "geometry": { "type": "Point", "coordinates": [ -0.2976196, 51.2996992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05550144" }, "bbox": [ -0.4955574, 51.2884922, -0.4955574, 51.2884922 ], "geometry": { "type": "Point", "coordinates": [ -0.4955574, 51.2884922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558547" }, "bbox": [ -0.4976061, 51.2888422, -0.4976061, 51.2888422 ], "geometry": { "type": "Point", "coordinates": [ -0.4976061, 51.2888422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559041" }, "bbox": [ -0.4970299, 51.2883045, -0.4970299, 51.2883045 ], "geometry": { "type": "Point", "coordinates": [ -0.4970299, 51.2883045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86381779" }, "bbox": [ -0.7698038, 51.1418473, -0.7698038, 51.1418473 ], "geometry": { "type": "Point", "coordinates": [ -0.7698038, 51.1418473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86380193" }, "bbox": [ -0.7718171, 51.1432717, -0.7718171, 51.1432717 ], "geometry": { "type": "Point", "coordinates": [ -0.7718171, 51.1432717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519043" }, "bbox": [ -0.5124821, 51.2527939, -0.5124821, 51.2527939 ], "geometry": { "type": "Point", "coordinates": [ -0.5124821, 51.2527939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03516021" }, "bbox": [ -0.5168197, 51.2506538, -0.5168197, 51.2506538 ], "geometry": { "type": "Point", "coordinates": [ -0.5168197, 51.2506538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03518728" }, "bbox": [ -0.5129217, 51.2512612, -0.5129217, 51.2512612 ], "geometry": { "type": "Point", "coordinates": [ -0.5129217, 51.2512612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03516204" }, "bbox": [ -0.5167002, 51.2491411, -0.5167002, 51.2491411 ], "geometry": { "type": "Point", "coordinates": [ -0.5167002, 51.2491411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519032" }, "bbox": [ -0.5126298, 51.2515874, -0.5126298, 51.2515874 ], "geometry": { "type": "Point", "coordinates": [ -0.5126298, 51.2515874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03500197" }, "bbox": [ -0.5257057, 51.2501905, -0.5257057, 51.2501905 ], "geometry": { "type": "Point", "coordinates": [ -0.5257057, 51.2501905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03502896" }, "bbox": [ -0.5213428, 51.2484185, -0.5213428, 51.2484185 ], "geometry": { "type": "Point", "coordinates": [ -0.5213428, 51.2484185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465487" }, "bbox": [ -0.4331323, 51.2105052, -0.4331323, 51.2105052 ], "geometry": { "type": "Point", "coordinates": [ -0.4331323, 51.2105052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10351429" }, "bbox": [ -0.4281434, 51.1063482, -0.4281434, 51.1063482 ], "geometry": { "type": "Point", "coordinates": [ -0.4281434, 51.1063482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13596802" }, "bbox": [ -0.3697713, 51.3189681, -0.3697713, 51.3189681 ], "geometry": { "type": "Point", "coordinates": [ -0.3697713, 51.3189681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13586296" }, "bbox": [ -0.3710663, 51.3187307, -0.3710663, 51.3187307 ], "geometry": { "type": "Point", "coordinates": [ -0.3710663, 51.3187307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07370127" }, "bbox": [ -0.472562, 51.1245488, -0.472562, 51.1245488 ], "geometry": { "type": "Point", "coordinates": [ -0.472562, 51.1245488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14422076" }, "bbox": [ -0.3676922, 51.1727105, -0.3676922, 51.1727105 ], "geometry": { "type": "Point", "coordinates": [ -0.3676922, 51.1727105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421099" }, "bbox": [ -0.3691634, 51.1748267, -0.3691634, 51.1748267 ], "geometry": { "type": "Point", "coordinates": [ -0.3691634, 51.1748267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421597" }, "bbox": [ -0.36838, 51.17467, -0.36838, 51.17467 ], "geometry": { "type": "Point", "coordinates": [ -0.36838, 51.17467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02393026" }, "bbox": [ -0.5388082, 51.1434573, -0.5388082, 51.1434573 ], "geometry": { "type": "Point", "coordinates": [ -0.5388082, 51.1434573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03628893" }, "bbox": [ -0.5093561, 51.3560478, -0.5093561, 51.3560478 ], "geometry": { "type": "Point", "coordinates": [ -0.5093561, 51.3560478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03628475" }, "bbox": [ -0.5100917, 51.354347, -0.5100917, 51.354347 ], "geometry": { "type": "Point", "coordinates": [ -0.5100917, 51.354347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03638924" }, "bbox": [ -0.5091838, 51.3585734, -0.5091838, 51.3585734 ], "geometry": { "type": "Point", "coordinates": [ -0.5091838, 51.3585734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03597322" }, "bbox": [ -0.5124295, 51.3225565, -0.5124295, 51.3225565 ], "geometry": { "type": "Point", "coordinates": [ -0.5124295, 51.3225565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03581059" }, "bbox": [ -0.5218739, 51.3171902, -0.5218739, 51.3171902 ], "geometry": { "type": "Point", "coordinates": [ -0.5218739, 51.3171902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03580168" }, "bbox": [ -0.5230559, 51.3179517, -0.5230559, 51.3179517 ], "geometry": { "type": "Point", "coordinates": [ -0.5230559, 51.3179517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588670" }, "bbox": [ -0.5110552, 51.3179955, -0.5110552, 51.3179955 ], "geometry": { "type": "Point", "coordinates": [ -0.5110552, 51.3179955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02583773" }, "bbox": [ -0.5323233, 51.3185637, -0.5323233, 51.3185637 ], "geometry": { "type": "Point", "coordinates": [ -0.5323233, 51.3185637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03570592" }, "bbox": [ -0.5232778, 51.3105296, -0.5232778, 51.3105296 ], "geometry": { "type": "Point", "coordinates": [ -0.5232778, 51.3105296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03570193" }, "bbox": [ -0.5235142, 51.3111793, -0.5235142, 51.3111793 ], "geometry": { "type": "Point", "coordinates": [ -0.5235142, 51.3111793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34418290" }, "bbox": [ -0.0733793, 51.1604324, -0.0733793, 51.1604324 ], "geometry": { "type": "Point", "coordinates": [ -0.0733793, 51.1604324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34428044" }, "bbox": [ -0.073641, 51.1652201, -0.073641, 51.1652201 ], "geometry": { "type": "Point", "coordinates": [ -0.073641, 51.1652201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34427021" }, "bbox": [ -0.0748682, 51.1633041, -0.0748682, 51.1633041 ], "geometry": { "type": "Point", "coordinates": [ -0.0748682, 51.1633041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93515150" }, "bbox": [ -0.6611738, 51.2550268, -0.6611738, 51.2550268 ], "geometry": { "type": "Point", "coordinates": [ -0.6611738, 51.2550268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09570112" }, "bbox": [ -0.4376448, 51.302815, -0.4376448, 51.302815 ], "geometry": { "type": "Point", "coordinates": [ -0.4376448, 51.302815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07360178" }, "bbox": [ -0.472452, 51.120319, -0.472452, 51.120319 ], "geometry": { "type": "Point", "coordinates": [ -0.472452, 51.120319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06369758" }, "bbox": [ -0.4727022, 51.1184457, -0.4727022, 51.1184457 ], "geometry": { "type": "Point", "coordinates": [ -0.4727022, 51.1184457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06655662" }, "bbox": [ -0.4703134, 51.3796449, -0.4703134, 51.3796449 ], "geometry": { "type": "Point", "coordinates": [ -0.4703134, 51.3796449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06656658" }, "bbox": [ -0.4688805, 51.3793118, -0.4688805, 51.3793118 ], "geometry": { "type": "Point", "coordinates": [ -0.4688805, 51.3793118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06656164" }, "bbox": [ -0.4696671, 51.3797754, -0.4696671, 51.3797754 ], "geometry": { "type": "Point", "coordinates": [ -0.4696671, 51.3797754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06655949" }, "bbox": [ -0.470208, 51.3783269, -0.470208, 51.3783269 ], "geometry": { "type": "Point", "coordinates": [ -0.470208, 51.3783269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06654840" }, "bbox": [ -0.4713881, 51.3777195, -0.4713881, 51.3777195 ], "geometry": { "type": "Point", "coordinates": [ -0.4713881, 51.3777195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33474159" }, "bbox": [ -0.0913302, 51.2120605, -0.0913302, 51.2120605 ], "geometry": { "type": "Point", "coordinates": [ -0.0913302, 51.2120605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33477466" }, "bbox": [ -0.0867001, 51.2123756, -0.0867001, 51.2123756 ], "geometry": { "type": "Point", "coordinates": [ -0.0867001, 51.2123756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33479071" }, "bbox": [ -0.0844588, 51.2129581, -0.0844588, 51.2129581 ], "geometry": { "type": "Point", "coordinates": [ -0.0844588, 51.2129581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33476226" }, "bbox": [ -0.0885061, 51.2089315, -0.0885061, 51.2089315 ], "geometry": { "type": "Point", "coordinates": [ -0.0885061, 51.2089315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33474623" }, "bbox": [ -0.0909999, 51.2086022, -0.0909999, 51.2086022 ], "geometry": { "type": "Point", "coordinates": [ -0.0909999, 51.2086022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33478026" }, "bbox": [ -0.0860549, 51.2087579, -0.0860549, 51.2087579 ], "geometry": { "type": "Point", "coordinates": [ -0.0860549, 51.2087579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34461186" }, "bbox": [ -0.0819677, 51.2052318, -0.0819677, 51.2052318 ], "geometry": { "type": "Point", "coordinates": [ -0.0819677, 51.2052318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10359127" }, "bbox": [ -0.4171376, 51.1060631, -0.4171376, 51.1060631 ], "geometry": { "type": "Point", "coordinates": [ -0.4171376, 51.1060631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411014" }, "bbox": [ -0.5269179, 51.1602735, -0.5269179, 51.1602735 ], "geometry": { "type": "Point", "coordinates": [ -0.5269179, 51.1602735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09345458" }, "bbox": [ -0.436984, 51.1005193, -0.436984, 51.1005193 ], "geometry": { "type": "Point", "coordinates": [ -0.436984, 51.1005193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09343036" }, "bbox": [ -0.4405102, 51.0981393, -0.4405102, 51.0981393 ], "geometry": { "type": "Point", "coordinates": [ -0.4405102, 51.0981393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09344146" }, "bbox": [ -0.4388067, 51.0990727, -0.4388067, 51.0990727 ], "geometry": { "type": "Point", "coordinates": [ -0.4388067, 51.0990727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09343584" }, "bbox": [ -0.4394422, 51.1022076, -0.4394422, 51.1022076 ], "geometry": { "type": "Point", "coordinates": [ -0.4394422, 51.1022076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04377725" }, "bbox": [ -0.50414, 51.1252711, -0.50414, 51.1252711 ], "geometry": { "type": "Point", "coordinates": [ -0.50414, 51.1252711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19513486" }, "bbox": [ -0.29117, 51.2534612, -0.29117, 51.2534612 ], "geometry": { "type": "Point", "coordinates": [ -0.29117, 51.2534612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07360531" }, "bbox": [ -0.4718437, 51.1161126, -0.4718437, 51.1161126 ], "geometry": { "type": "Point", "coordinates": [ -0.4718437, 51.1161126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361325" }, "bbox": [ -0.4702479, 51.1156383, -0.4702479, 51.1156383 ], "geometry": { "type": "Point", "coordinates": [ -0.4702479, 51.1156383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07362922" }, "bbox": [ -0.4683803, 51.1152319, -0.4683803, 51.1152319 ], "geometry": { "type": "Point", "coordinates": [ -0.4683803, 51.1152319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07363213" }, "bbox": [ -0.4682004, 51.1143214, -0.4682004, 51.1143214 ], "geometry": { "type": "Point", "coordinates": [ -0.4682004, 51.1143214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98603035" }, "bbox": [ -0.5903495, 51.3337202, -0.5903495, 51.3337202 ], "geometry": { "type": "Point", "coordinates": [ -0.5903495, 51.3337202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98602524" }, "bbox": [ -0.5910968, 51.3327549, -0.5910968, 51.3327549 ], "geometry": { "type": "Point", "coordinates": [ -0.5910968, 51.3327549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25426859" }, "bbox": [ -0.2037355, 51.1687522, -0.2037355, 51.1687522 ], "geometry": { "type": "Point", "coordinates": [ -0.2037355, 51.1687522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25424619" }, "bbox": [ -0.2071347, 51.1652303, -0.2071347, 51.1652303 ], "geometry": { "type": "Point", "coordinates": [ -0.2071347, 51.1652303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414158" }, "bbox": [ -0.2221593, 51.1600165, -0.2221593, 51.1600165 ], "geometry": { "type": "Point", "coordinates": [ -0.2221593, 51.1600165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29471252" }, "bbox": [ -0.1526926, 51.2123417, -0.1526926, 51.2123417 ], "geometry": { "type": "Point", "coordinates": [ -0.1526926, 51.2123417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29470464" }, "bbox": [ -0.1538631, 51.21337, -0.1538631, 51.21337 ], "geometry": { "type": "Point", "coordinates": [ -0.1538631, 51.21337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29470751" }, "bbox": [ -0.1535584, 51.2122344, -0.1535584, 51.2122344 ], "geometry": { "type": "Point", "coordinates": [ -0.1535584, 51.2122344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29472559" }, "bbox": [ -0.150966, 51.2128759, -0.150966, 51.2128759 ], "geometry": { "type": "Point", "coordinates": [ -0.150966, 51.2128759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29489265" }, "bbox": [ -0.1409847, 51.221293, -0.1409847, 51.221293 ], "geometry": { "type": "Point", "coordinates": [ -0.1409847, 51.221293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83427523" }, "bbox": [ -0.8033108, 51.1732602, -0.8033108, 51.1732602 ], "geometry": { "type": "Point", "coordinates": [ -0.8033108, 51.1732602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84410170" }, "bbox": [ -0.7990441, 51.1684712, -0.7990441, 51.1684712 ], "geometry": { "type": "Point", "coordinates": [ -0.7990441, 51.1684712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84427070" }, "bbox": [ -0.788844, 51.1771328, -0.788844, 51.1771328 ], "geometry": { "type": "Point", "coordinates": [ -0.788844, 51.1771328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84429155" }, "bbox": [ -0.7866576, 51.1759028, -0.7866576, 51.1759028 ], "geometry": { "type": "Point", "coordinates": [ -0.7866576, 51.1759028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84437301" }, "bbox": [ -0.7889301, 51.1799613, -0.7889301, 51.1799613 ], "geometry": { "type": "Point", "coordinates": [ -0.7889301, 51.1799613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84436010" }, "bbox": [ -0.7903206, 51.1812483, -0.7903206, 51.1812483 ], "geometry": { "type": "Point", "coordinates": [ -0.7903206, 51.1812483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85420781" }, "bbox": [ -0.7851367, 51.1784327, -0.7851367, 51.1784327 ], "geometry": { "type": "Point", "coordinates": [ -0.7851367, 51.1784327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85420363" }, "bbox": [ -0.7849292, 51.1766444, -0.7849292, 51.1766444 ], "geometry": { "type": "Point", "coordinates": [ -0.7849292, 51.1766444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92510157" }, "bbox": [ -0.6827635, 51.2559486, -0.6827635, 51.2559486 ], "geometry": { "type": "Point", "coordinates": [ -0.6827635, 51.2559486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37446497" }, "bbox": [ -0.0317752, 51.1873003, -0.0317752, 51.1873003 ], "geometry": { "type": "Point", "coordinates": [ -0.0317752, 51.1873003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37445870" }, "bbox": [ -0.0327021, 51.1850007, -0.0327021, 51.1850007 ], "geometry": { "type": "Point", "coordinates": [ -0.0327021, 51.1850007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37449071" }, "bbox": [ -0.028116, 51.1848927, -0.028116, 51.1848927 ], "geometry": { "type": "Point", "coordinates": [ -0.028116, 51.1848927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37445081" }, "bbox": [ -0.0339962, 51.1859757, -0.0339962, 51.1859757 ], "geometry": { "type": "Point", "coordinates": [ -0.0339962, 51.1859757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37447355" }, "bbox": [ -0.0306178, 51.1836683, -0.0306178, 51.1836683 ], "geometry": { "type": "Point", "coordinates": [ -0.0306178, 51.1836683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37447380" }, "bbox": [ -0.0305934, 51.1859292, -0.0305934, 51.1859292 ], "geometry": { "type": "Point", "coordinates": [ -0.0305934, 51.1859292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37444393" }, "bbox": [ -0.0346527, 51.187052, -0.0346527, 51.187052 ], "geometry": { "type": "Point", "coordinates": [ -0.0346527, 51.187052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37448545" }, "bbox": [ -0.0289356, 51.1826846, -0.0289356, 51.1826846 ], "geometry": { "type": "Point", "coordinates": [ -0.0289356, 51.1826846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37443880" }, "bbox": [ -0.0356619, 51.1859115, -0.0356619, 51.1859115 ], "geometry": { "type": "Point", "coordinates": [ -0.0356619, 51.1859115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37446883" }, "bbox": [ -0.0313481, 51.1861678, -0.0313481, 51.1861678 ], "geometry": { "type": "Point", "coordinates": [ -0.0313481, 51.1861678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91513040" }, "bbox": [ -0.6930221, 51.2544363, -0.6930221, 51.2544363 ], "geometry": { "type": "Point", "coordinates": [ -0.6930221, 51.2544363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425031" }, "bbox": [ -0.763574, 51.1736632, -0.763574, 51.1736632 ], "geometry": { "type": "Point", "coordinates": [ -0.763574, 51.1736632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32437868" }, "bbox": [ -0.1017852, 51.1770194, -0.1017852, 51.1770194 ], "geometry": { "type": "Point", "coordinates": [ -0.1017852, 51.1770194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32438758" }, "bbox": [ -0.1004733, 51.1760628, -0.1004733, 51.1760628 ], "geometry": { "type": "Point", "coordinates": [ -0.1004733, 51.1760628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32437865" }, "bbox": [ -0.1017926, 51.1766707, -0.1017926, 51.1766707 ], "geometry": { "type": "Point", "coordinates": [ -0.1017926, 51.1766707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32438358" }, "bbox": [ -0.101066, 51.176052, -0.101066, 51.176052 ], "geometry": { "type": "Point", "coordinates": [ -0.101066, 51.176052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32437875" }, "bbox": [ -0.1017896, 51.1776521, -0.1017896, 51.1776521 ], "geometry": { "type": "Point", "coordinates": [ -0.1017896, 51.1776521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32437857" }, "bbox": [ -0.1018134, 51.1760032, -0.1018134, 51.1760032 ], "geometry": { "type": "Point", "coordinates": [ -0.1018134, 51.1760032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15395614" }, "bbox": [ -0.3493193, 51.1397931, -0.3493193, 51.1397931 ], "geometry": { "type": "Point", "coordinates": [ -0.3493193, 51.1397931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97359968" }, "bbox": [ -0.6019633, 51.1122112, -0.6019633, 51.1122112 ], "geometry": { "type": "Point", "coordinates": [ -0.6019633, 51.1122112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97357984" }, "bbox": [ -0.6043625, 51.1135422, -0.6043625, 51.1135422 ], "geometry": { "type": "Point", "coordinates": [ -0.6043625, 51.1135422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97358830" }, "bbox": [ -0.6029691, 51.1088265, -0.6029691, 51.1088265 ], "geometry": { "type": "Point", "coordinates": [ -0.6029691, 51.1088265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97357516" }, "bbox": [ -0.6044707, 51.1089199, -0.6044707, 51.1089199 ], "geometry": { "type": "Point", "coordinates": [ -0.6044707, 51.1089199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16461795" }, "bbox": [ -0.3383581, 51.2099634, -0.3383581, 51.2099634 ], "geometry": { "type": "Point", "coordinates": [ -0.3383581, 51.2099634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16460995" }, "bbox": [ -0.3394161, 51.2098966, -0.3394161, 51.2098966 ], "geometry": { "type": "Point", "coordinates": [ -0.3394161, 51.2098966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16464582" }, "bbox": [ -0.3343661, 51.2085781, -0.3343661, 51.2085781 ], "geometry": { "type": "Point", "coordinates": [ -0.3343661, 51.2085781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15468893" }, "bbox": [ -0.3422481, 51.2098134, -0.3422481, 51.2098134 ], "geometry": { "type": "Point", "coordinates": [ -0.3422481, 51.2098134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15467585" }, "bbox": [ -0.3443086, 51.2090486, -0.3443086, 51.2090486 ], "geometry": { "type": "Point", "coordinates": [ -0.3443086, 51.2090486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19579335" }, "bbox": [ -0.2809557, 51.3026856, -0.2809557, 51.3026856 ], "geometry": { "type": "Point", "coordinates": [ -0.2809557, 51.3026856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19579631" }, "bbox": [ -0.2802718, 51.3026447, -0.2802718, 51.3026447 ], "geometry": { "type": "Point", "coordinates": [ -0.2802718, 51.3026447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20570560" }, "bbox": [ -0.2801146, 51.3045375, -0.2801146, 51.3045375 ], "geometry": { "type": "Point", "coordinates": [ -0.2801146, 51.3045375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94569103" }, "bbox": [ -0.638374, 51.2952761, -0.638374, 51.2952761 ], "geometry": { "type": "Point", "coordinates": [ -0.638374, 51.2952761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29486499" }, "bbox": [ -0.1444897, 51.2254653, -0.1444897, 51.2254653 ], "geometry": { "type": "Point", "coordinates": [ -0.1444897, 51.2254653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38593910" }, "bbox": [ -0.0156212, 51.3142065, -0.0156212, 51.3142065 ], "geometry": { "type": "Point", "coordinates": [ -0.0156212, 51.3142065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09619551" }, "bbox": [ -0.422944, 51.3414668, -0.422944, 51.3414668 ], "geometry": { "type": "Point", "coordinates": [ -0.422944, 51.3414668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10616081" }, "bbox": [ -0.4134441, 51.3451906, -0.4134441, 51.3451906 ], "geometry": { "type": "Point", "coordinates": [ -0.4134441, 51.3451906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11631434" }, "bbox": [ -0.4050923, 51.3582681, -0.4050923, 51.3582681 ], "geometry": { "type": "Point", "coordinates": [ -0.4050923, 51.3582681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11632538" }, "bbox": [ -0.4036085, 51.3586708, -0.4036085, 51.3586708 ], "geometry": { "type": "Point", "coordinates": [ -0.4036085, 51.3586708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11630128" }, "bbox": [ -0.4069146, 51.3578173, -0.4069146, 51.3578173 ], "geometry": { "type": "Point", "coordinates": [ -0.4069146, 51.3578173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11632225" }, "bbox": [ -0.4041694, 51.3573759, -0.4041694, 51.3573759 ], "geometry": { "type": "Point", "coordinates": [ -0.4041694, 51.3573759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10637801" }, "bbox": [ -0.4107342, 51.3553125, -0.4107342, 51.3553125 ], "geometry": { "type": "Point", "coordinates": [ -0.4107342, 51.3553125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10637604" }, "bbox": [ -0.4105636, 51.3556676, -0.4105636, 51.3556676 ], "geometry": { "type": "Point", "coordinates": [ -0.4105636, 51.3556676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03444574" }, "bbox": [ -0.5209651, 51.1924918, -0.5209651, 51.1924918 ], "geometry": { "type": "Point", "coordinates": [ -0.5209651, 51.1924918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82394489" }, "bbox": [ -0.8225987, 51.1523912, -0.8225987, 51.1523912 ], "geometry": { "type": "Point", "coordinates": [ -0.8225987, 51.1523912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82488931" }, "bbox": [ -0.8141721, 51.2280569, -0.8141721, 51.2280569 ], "geometry": { "type": "Point", "coordinates": [ -0.8141721, 51.2280569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82489438" }, "bbox": [ -0.8134739, 51.2284899, -0.8134739, 51.2284899 ], "geometry": { "type": "Point", "coordinates": [ -0.8134739, 51.2284899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82489227" }, "bbox": [ -0.8137023, 51.2277476, -0.8137023, 51.2277476 ], "geometry": { "type": "Point", "coordinates": [ -0.8137023, 51.2277476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82489831" }, "bbox": [ -0.8128903, 51.2280184, -0.8128903, 51.2280184 ], "geometry": { "type": "Point", "coordinates": [ -0.8128903, 51.2280184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82489022" }, "bbox": [ -0.8140083, 51.2272795, -0.8140083, 51.2272795 ], "geometry": { "type": "Point", "coordinates": [ -0.8140083, 51.2272795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83480530" }, "bbox": [ -0.8116403, 51.2279502, -0.8116403, 51.2279502 ], "geometry": { "type": "Point", "coordinates": [ -0.8116403, 51.2279502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94649870" }, "bbox": [ -0.6367744, 51.3734081, -0.6367744, 51.3734081 ], "geometry": { "type": "Point", "coordinates": [ -0.6367744, 51.3734081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94659219" }, "bbox": [ -0.6373736, 51.3777933, -0.6373736, 51.3777933 ], "geometry": { "type": "Point", "coordinates": [ -0.6373736, 51.3777933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95654321" }, "bbox": [ -0.6297277, 51.3777149, -0.6297277, 51.3777149 ], "geometry": { "type": "Point", "coordinates": [ -0.6297277, 51.3777149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95658317" }, "bbox": [ -0.6243382, 51.3774432, -0.6243382, 51.3774432 ], "geometry": { "type": "Point", "coordinates": [ -0.6243382, 51.3774432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21571143" }, "bbox": [ -0.2636138, 51.3031138, -0.2636138, 51.3031138 ], "geometry": { "type": "Point", "coordinates": [ -0.2636138, 51.3031138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11634320" }, "bbox": [ -0.4009484, 51.3569845, -0.4009484, 51.3569845 ], "geometry": { "type": "Point", "coordinates": [ -0.4009484, 51.3569845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11632811" }, "bbox": [ -0.4033589, 51.3560158, -0.4033589, 51.3560158 ], "geometry": { "type": "Point", "coordinates": [ -0.4033589, 51.3560158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11622585" }, "bbox": [ -0.4036294, 51.3538555, -0.4036294, 51.3538555 ], "geometry": { "type": "Point", "coordinates": [ -0.4036294, 51.3538555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02398599" }, "bbox": [ -0.5309138, 51.1500153, -0.5309138, 51.1500153 ], "geometry": { "type": "Point", "coordinates": [ -0.5309138, 51.1500153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42436663" }, "bbox": [ 0.0391193, 51.1742848, 0.0391193, 51.1742848 ], "geometry": { "type": "Point", "coordinates": [ 0.0391193, 51.1742848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42438262" }, "bbox": [ 0.0410994, 51.173952, 0.0410994, 51.173952 ], "geometry": { "type": "Point", "coordinates": [ 0.0410994, 51.173952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05570106" }, "bbox": [ -0.4949796, 51.3029568, -0.4949796, 51.3029568 ], "geometry": { "type": "Point", "coordinates": [ -0.4949796, 51.3029568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04578220" }, "bbox": [ -0.4975321, 51.3042498, -0.4975321, 51.3042498 ], "geometry": { "type": "Point", "coordinates": [ -0.4975321, 51.3042498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04578214" }, "bbox": [ -0.4974495, 51.3037724, -0.4974495, 51.3037724 ], "geometry": { "type": "Point", "coordinates": [ -0.4974495, 51.3037724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04568186" }, "bbox": [ -0.4979414, 51.301464, -0.4979414, 51.301464 ], "geometry": { "type": "Point", "coordinates": [ -0.4979414, 51.301464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04566877" }, "bbox": [ -0.4995653, 51.3005071, -0.4995653, 51.3005071 ], "geometry": { "type": "Point", "coordinates": [ -0.4995653, 51.3005071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04567083" }, "bbox": [ -0.4994827, 51.3011834, -0.4994827, 51.3011834 ], "geometry": { "type": "Point", "coordinates": [ -0.4994827, 51.3011834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00569430" }, "bbox": [ -0.5537621, 51.2971415, -0.5537621, 51.2971415 ], "geometry": { "type": "Point", "coordinates": [ -0.5537621, 51.2971415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467812" }, "bbox": [ -0.4729122, 51.2043052, -0.4729122, 51.2043052 ], "geometry": { "type": "Point", "coordinates": [ -0.4729122, 51.2043052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04340946" }, "bbox": [ -0.5146042, 51.0997954, -0.5146042, 51.0997954 ], "geometry": { "type": "Point", "coordinates": [ -0.5146042, 51.0997954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04341889" }, "bbox": [ -0.5132901, 51.1041297, -0.5132901, 51.1041297 ], "geometry": { "type": "Point", "coordinates": [ -0.5132901, 51.1041297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04342062" }, "bbox": [ -0.5131917, 51.1014235, -0.5131917, 51.1014235 ], "geometry": { "type": "Point", "coordinates": [ -0.5131917, 51.1014235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371798" }, "bbox": [ -0.3126304, 51.1289105, -0.3126304, 51.1289105 ], "geometry": { "type": "Point", "coordinates": [ -0.3126304, 51.1289105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18373080" }, "bbox": [ -0.3106973, 51.127394, -0.3106973, 51.127394 ], "geometry": { "type": "Point", "coordinates": [ -0.3106973, 51.127394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17397703" }, "bbox": [ -0.3181522, 51.1384548, -0.3181522, 51.1384548 ], "geometry": { "type": "Point", "coordinates": [ -0.3181522, 51.1384548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18382104" }, "bbox": [ -0.3120731, 51.1294516, -0.3120731, 51.1294516 ], "geometry": { "type": "Point", "coordinates": [ -0.3120731, 51.1294516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00422810" }, "bbox": [ -0.5670991, 51.1693351, -0.5670991, 51.1693351 ], "geometry": { "type": "Point", "coordinates": [ -0.5670991, 51.1693351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06550611" }, "bbox": [ -0.479907, 51.2847679, -0.479907, 51.2847679 ], "geometry": { "type": "Point", "coordinates": [ -0.479907, 51.2847679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05549545" }, "bbox": [ -0.4823226, 51.2793305, -0.4823226, 51.2793305 ], "geometry": { "type": "Point", "coordinates": [ -0.4823226, 51.2793305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05548716" }, "bbox": [ -0.4835342, 51.2768192, -0.4835342, 51.2768192 ], "geometry": { "type": "Point", "coordinates": [ -0.4835342, 51.2768192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386477" }, "bbox": [ -0.2773029, 51.135955, -0.2773029, 51.135955 ], "geometry": { "type": "Point", "coordinates": [ -0.2773029, 51.135955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20381835" }, "bbox": [ -0.2838763, 51.1317603, -0.2838763, 51.1317603 ], "geometry": { "type": "Point", "coordinates": [ -0.2838763, 51.1317603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10358587" }, "bbox": [ -0.4178028, 51.1114774, -0.4178028, 51.1114774 ], "geometry": { "type": "Point", "coordinates": [ -0.4178028, 51.1114774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10358770" }, "bbox": [ -0.4174936, 51.1099711, -0.4174936, 51.1099711 ], "geometry": { "type": "Point", "coordinates": [ -0.4174936, 51.1099711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16667901" }, "bbox": [ -0.3235865, 51.381073, -0.3235865, 51.381073 ], "geometry": { "type": "Point", "coordinates": [ -0.3235865, 51.381073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16657587" }, "bbox": [ -0.3236485, 51.3800136, -0.3236485, 51.3800136 ], "geometry": { "type": "Point", "coordinates": [ -0.3236485, 51.3800136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16658688" }, "bbox": [ -0.3221888, 51.3801051, -0.3221888, 51.3801051 ], "geometry": { "type": "Point", "coordinates": [ -0.3221888, 51.3801051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16659195" }, "bbox": [ -0.3214128, 51.3807757, -0.3214128, 51.3807757 ], "geometry": { "type": "Point", "coordinates": [ -0.3214128, 51.3807757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28526530" }, "bbox": [ -0.1577149, 51.2553884, -0.1577149, 51.2553884 ], "geometry": { "type": "Point", "coordinates": [ -0.1577149, 51.2553884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03395159" }, "bbox": [ -0.5214952, 51.1460995, -0.5214952, 51.1460995 ], "geometry": { "type": "Point", "coordinates": [ -0.5214952, 51.1460995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03396401" }, "bbox": [ -0.523024, 51.1417317, -0.523024, 51.1417317 ], "geometry": { "type": "Point", "coordinates": [ -0.523024, 51.1417317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03394733" }, "bbox": [ -0.5223435, 51.1438875, -0.5223435, 51.1438875 ], "geometry": { "type": "Point", "coordinates": [ -0.5223435, 51.1438875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03394440" }, "bbox": [ -0.5226604, 51.1445779, -0.5226604, 51.1445779 ], "geometry": { "type": "Point", "coordinates": [ -0.5226604, 51.1445779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03392648" }, "bbox": [ -0.5252443, 51.1452881, -0.5252443, 51.1452881 ], "geometry": { "type": "Point", "coordinates": [ -0.5252443, 51.1452881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03395246" }, "bbox": [ -0.5213598, 51.1450868, -0.5213598, 51.1450868 ], "geometry": { "type": "Point", "coordinates": [ -0.5213598, 51.1450868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03394965" }, "bbox": [ -0.5218694, 51.1467996, -0.5218694, 51.1467996 ], "geometry": { "type": "Point", "coordinates": [ -0.5218694, 51.1467996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37520784" }, "bbox": [ -0.0364124, 51.2590984, -0.0364124, 51.2590984 ], "geometry": { "type": "Point", "coordinates": [ -0.0364124, 51.2590984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02655759" }, "bbox": [ -0.5275642, 51.3801806, -0.5275642, 51.3801806 ], "geometry": { "type": "Point", "coordinates": [ -0.5275642, 51.3801806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02651362" }, "bbox": [ -0.5338633, 51.3804826, -0.5338633, 51.3804826 ], "geometry": { "type": "Point", "coordinates": [ -0.5338633, 51.3804826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02655370" }, "bbox": [ -0.5280039, 51.3810954, -0.5280039, 51.3810954 ], "geometry": { "type": "Point", "coordinates": [ -0.5280039, 51.3810954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20424864" }, "bbox": [ -0.2779285, 51.1701648, -0.2779285, 51.1701648 ], "geometry": { "type": "Point", "coordinates": [ -0.2779285, 51.1701648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09429045" }, "bbox": [ -0.4295466, 51.170819, -0.4295466, 51.170819 ], "geometry": { "type": "Point", "coordinates": [ -0.4295466, 51.170819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86449217" }, "bbox": [ -0.7574217, 51.19007, -0.7574217, 51.19007 ], "geometry": { "type": "Point", "coordinates": [ -0.7574217, 51.19007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86459749" }, "bbox": [ -0.7577175, 51.2016565, -0.7577175, 51.2016565 ], "geometry": { "type": "Point", "coordinates": [ -0.7577175, 51.2016565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87450137" }, "bbox": [ -0.75689, 51.200825, -0.75689, 51.200825 ], "geometry": { "type": "Point", "coordinates": [ -0.75689, 51.200825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40555060" }, "bbox": [ 0.0120134, 51.282537, 0.0120134, 51.282537 ], "geometry": { "type": "Point", "coordinates": [ 0.0120134, 51.282537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94623201" }, "bbox": [ -0.6464216, 51.3492678, -0.6464216, 51.3492678 ], "geometry": { "type": "Point", "coordinates": [ -0.6464216, 51.3492678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17642294" }, "bbox": [ -0.3172627, 51.3715417, -0.3172627, 51.3715417 ], "geometry": { "type": "Point", "coordinates": [ -0.3172627, 51.3715417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31416693" }, "bbox": [ -0.1185025, 51.1614855, -0.1185025, 51.1614855 ], "geometry": { "type": "Point", "coordinates": [ -0.1185025, 51.1614855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31415987" }, "bbox": [ -0.1194327, 51.1609459, -0.1194327, 51.1609459 ], "geometry": { "type": "Point", "coordinates": [ -0.1194327, 51.1609459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92445485" }, "bbox": [ -0.6770135, 51.1954448, -0.6770135, 51.1954448 ], "geometry": { "type": "Point", "coordinates": [ -0.6770135, 51.1954448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92444678" }, "bbox": [ -0.6779939, 51.1947738, -0.6779939, 51.1947738 ], "geometry": { "type": "Point", "coordinates": [ -0.6779939, 51.1947738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92443228" }, "bbox": [ -0.6803131, 51.190372, -0.6803131, 51.190372 ], "geometry": { "type": "Point", "coordinates": [ -0.6803131, 51.190372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92448967" }, "bbox": [ -0.6720322, 51.1937159, -0.6720322, 51.1937159 ], "geometry": { "type": "Point", "coordinates": [ -0.6720322, 51.1937159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92444174" }, "bbox": [ -0.6800836, 51.194562, -0.6800836, 51.194562 ], "geometry": { "type": "Point", "coordinates": [ -0.6800836, 51.194562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37450170" }, "bbox": [ -0.0404969, 51.1941454, -0.0404969, 51.1941454 ], "geometry": { "type": "Point", "coordinates": [ -0.0404969, 51.1941454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21538523" }, "bbox": [ -0.2551438, 51.2652145, -0.2551438, 51.2652145 ], "geometry": { "type": "Point", "coordinates": [ -0.2551438, 51.2652145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99615492" }, "bbox": [ -0.5723642, 51.3476696, -0.5723642, 51.3476696 ], "geometry": { "type": "Point", "coordinates": [ -0.5723642, 51.3476696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99615990" }, "bbox": [ -0.5712859, 51.3475169, -0.5712859, 51.3475169 ], "geometry": { "type": "Point", "coordinates": [ -0.5712859, 51.3475169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99619468" }, "bbox": [ -0.5663774, 51.3454527, -0.5663774, 51.3454527 ], "geometry": { "type": "Point", "coordinates": [ -0.5663774, 51.3454527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03661572" }, "bbox": [ -0.518722, 51.3905156, -0.518722, 51.3905156 ], "geometry": { "type": "Point", "coordinates": [ -0.518722, 51.3905156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03660778" }, "bbox": [ -0.5198882, 51.3908174, -0.5198882, 51.3908174 ], "geometry": { "type": "Point", "coordinates": [ -0.5198882, 51.3908174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02668696" }, "bbox": [ -0.5231326, 51.3922028, -0.5231326, 51.3922028 ], "geometry": { "type": "Point", "coordinates": [ -0.5231326, 51.3922028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02669675" }, "bbox": [ -0.5211731, 51.3902842, -0.5211731, 51.3902842 ], "geometry": { "type": "Point", "coordinates": [ -0.5211731, 51.3902842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02672808" }, "bbox": [ -0.5311801, 51.3935856, -0.5311801, 51.3935856 ], "geometry": { "type": "Point", "coordinates": [ -0.5311801, 51.3935856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02671432" }, "bbox": [ -0.5331935, 51.3957968, -0.5331935, 51.3957968 ], "geometry": { "type": "Point", "coordinates": [ -0.5331935, 51.3957968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02670412" }, "bbox": [ -0.5346516, 51.3940738, -0.5346516, 51.3940738 ], "geometry": { "type": "Point", "coordinates": [ -0.5346516, 51.3940738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02673103" }, "bbox": [ -0.5308514, 51.3931187, -0.5308514, 51.3931187 ], "geometry": { "type": "Point", "coordinates": [ -0.5308514, 51.3931187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84428577" }, "bbox": [ -0.7871971, 51.1779695, -0.7871971, 51.1779695 ], "geometry": { "type": "Point", "coordinates": [ -0.7871971, 51.1779695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07600414" }, "bbox": [ -0.4647437, 51.3302355, -0.4647437, 51.3302355 ], "geometry": { "type": "Point", "coordinates": [ -0.4647437, 51.3302355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07600433" }, "bbox": [ -0.4644964, 51.3325941, -0.4644964, 51.3325941 ], "geometry": { "type": "Point", "coordinates": [ -0.4644964, 51.3325941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07601206" }, "bbox": [ -0.4642722, 51.3298367, -0.4642722, 51.3298367 ], "geometry": { "type": "Point", "coordinates": [ -0.4642722, 51.3298367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07600646" }, "bbox": [ -0.4644844, 51.3333167, -0.4644844, 51.3333167 ], "geometry": { "type": "Point", "coordinates": [ -0.4644844, 51.3333167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07601922" }, "bbox": [ -0.4627432, 51.330826, -0.4627432, 51.330826 ], "geometry": { "type": "Point", "coordinates": [ -0.4627432, 51.330826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12352989" }, "bbox": [ -0.3977079, 51.1115863, -0.3977079, 51.1115863 ], "geometry": { "type": "Point", "coordinates": [ -0.3977079, 51.1115863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15455808" }, "bbox": [ -0.3472132, 51.1931367, -0.3472132, 51.1931367 ], "geometry": { "type": "Point", "coordinates": [ -0.3472132, 51.1931367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21393869" }, "bbox": [ -0.2669408, 51.1442759, -0.2669408, 51.1442759 ], "geometry": { "type": "Point", "coordinates": [ -0.2669408, 51.1442759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21395876" }, "bbox": [ -0.2630822, 51.1442626, -0.2630822, 51.1442626 ], "geometry": { "type": "Point", "coordinates": [ -0.2630822, 51.1442626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21395550" }, "bbox": [ -0.2637399, 51.1422447, -0.2637399, 51.1422447 ], "geometry": { "type": "Point", "coordinates": [ -0.2637399, 51.1422447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21394258" }, "bbox": [ -0.2657225, 51.1426579, -0.2657225, 51.1426579 ], "geometry": { "type": "Point", "coordinates": [ -0.2657225, 51.1426579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20399525" }, "bbox": [ -0.2720848, 51.1390937, -0.2720848, 51.1390937 ], "geometry": { "type": "Point", "coordinates": [ -0.2720848, 51.1390937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90369984" }, "bbox": [ -0.7017438, 51.123614, -0.7017438, 51.123614 ], "geometry": { "type": "Point", "coordinates": [ -0.7017438, 51.123614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26442796" }, "bbox": [ -0.1945618, 51.1898867, -0.1945618, 51.1898867 ], "geometry": { "type": "Point", "coordinates": [ -0.1945618, 51.1898867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26446695" }, "bbox": [ -0.18857, 51.1896138, -0.18857, 51.1896138 ], "geometry": { "type": "Point", "coordinates": [ -0.18857, 51.1896138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21526380" }, "bbox": [ -0.2580665, 51.2621709, -0.2580665, 51.2621709 ], "geometry": { "type": "Point", "coordinates": [ -0.2580665, 51.2621709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83429770" }, "bbox": [ -0.8000557, 51.1774168, -0.8000557, 51.1774168 ], "geometry": { "type": "Point", "coordinates": [ -0.8000557, 51.1774168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83429181" }, "bbox": [ -0.8011207, 51.1784558, -0.8011207, 51.1784558 ], "geometry": { "type": "Point", "coordinates": [ -0.8011207, 51.1784558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83428862" }, "bbox": [ -0.8013876, 51.1767006, -0.8013876, 51.1767006 ], "geometry": { "type": "Point", "coordinates": [ -0.8013876, 51.1767006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84420161" }, "bbox": [ -0.799523, 51.1766511, -0.799523, 51.1766511 ], "geometry": { "type": "Point", "coordinates": [ -0.799523, 51.1766511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84420552" }, "bbox": [ -0.7989746, 51.1758002, -0.7989746, 51.1758002 ], "geometry": { "type": "Point", "coordinates": [ -0.7989746, 51.1758002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26535245" }, "bbox": [ -0.1878291, 51.2662959, -0.1878291, 51.2662959 ], "geometry": { "type": "Point", "coordinates": [ -0.1878291, 51.2662959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31526713" }, "bbox": [ -0.1144618, 51.2532223, -0.1144618, 51.2532223 ], "geometry": { "type": "Point", "coordinates": [ -0.1144618, 51.2532223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31528967" }, "bbox": [ -0.1112536, 51.2580253, -0.1112536, 51.2580253 ], "geometry": { "type": "Point", "coordinates": [ -0.1112536, 51.2580253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32521474" }, "bbox": [ -0.1075757, 51.2582747, -0.1075757, 51.2582747 ], "geometry": { "type": "Point", "coordinates": [ -0.1075757, 51.2582747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32523373" }, "bbox": [ -0.1048386, 51.2583738, -0.1048386, 51.2583738 ], "geometry": { "type": "Point", "coordinates": [ -0.1048386, 51.2583738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32521178" }, "bbox": [ -0.1085525, 51.258834, -0.1085525, 51.258834 ], "geometry": { "type": "Point", "coordinates": [ -0.1085525, 51.258834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32524171" }, "bbox": [ -0.1037495, 51.258214, -0.1037495, 51.258214 ], "geometry": { "type": "Point", "coordinates": [ -0.1037495, 51.258214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06621857" }, "bbox": [ -0.4761709, 51.3525421, -0.4761709, 51.3525421 ], "geometry": { "type": "Point", "coordinates": [ -0.4761709, 51.3525421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22499005" }, "bbox": [ -0.2412228, 51.2274375, -0.2412228, 51.2274375 ], "geometry": { "type": "Point", "coordinates": [ -0.2412228, 51.2274375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22498826" }, "bbox": [ -0.2414045, 51.2293463, -0.2414045, 51.2293463 ], "geometry": { "type": "Point", "coordinates": [ -0.2414045, 51.2293463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22499318" }, "bbox": [ -0.2408036, 51.2286512, -0.2408036, 51.2286512 ], "geometry": { "type": "Point", "coordinates": [ -0.2408036, 51.2286512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22498822" }, "bbox": [ -0.2414602, 51.2290169, -0.2414602, 51.2290169 ], "geometry": { "type": "Point", "coordinates": [ -0.2414602, 51.2290169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97326562" }, "bbox": [ -0.6070955, 51.0846244, -0.6070955, 51.0846244 ], "geometry": { "type": "Point", "coordinates": [ -0.6070955, 51.0846244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97327539" }, "bbox": [ -0.6058465, 51.0825343, -0.6058465, 51.0825343 ], "geometry": { "type": "Point", "coordinates": [ -0.6058465, 51.0825343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97326842" }, "bbox": [ -0.6068469, 51.0826615, -0.6068469, 51.0826615 ], "geometry": { "type": "Point", "coordinates": [ -0.6068469, 51.0826615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97327754" }, "bbox": [ -0.6054652, 51.0838748, -0.6054652, 51.0838748 ], "geometry": { "type": "Point", "coordinates": [ -0.6054652, 51.0838748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97321964" }, "bbox": [ -0.6137334, 51.0848021, -0.6137334, 51.0848021 ], "geometry": { "type": "Point", "coordinates": [ -0.6137334, 51.0848021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97325251" }, "bbox": [ -0.6089605, 51.083618, -0.6089605, 51.083618 ], "geometry": { "type": "Point", "coordinates": [ -0.6089605, 51.083618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26485460" }, "bbox": [ -0.1894034, 51.2227037, -0.1894034, 51.2227037 ], "geometry": { "type": "Point", "coordinates": [ -0.1894034, 51.2227037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26487349" }, "bbox": [ -0.1866661, 51.2216192, -0.1866661, 51.2216192 ], "geometry": { "type": "Point", "coordinates": [ -0.1866661, 51.2216192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26489070" }, "bbox": [ -0.1841275, 51.2234688, -0.1841275, 51.2234688 ], "geometry": { "type": "Point", "coordinates": [ -0.1841275, 51.2234688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26493506" }, "bbox": [ -0.1918232, 51.2267939, -0.1918232, 51.2267939 ], "geometry": { "type": "Point", "coordinates": [ -0.1918232, 51.2267939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27483891" }, "bbox": [ -0.1771883, 51.2252589, -0.1771883, 51.2252589 ], "geometry": { "type": "Point", "coordinates": [ -0.1771883, 51.2252589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27493075" }, "bbox": [ -0.1779601, 51.2327576, -0.1779601, 51.2327576 ], "geometry": { "type": "Point", "coordinates": [ -0.1779601, 51.2327576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03633611" }, "bbox": [ -0.5168282, 51.3577595, -0.5168282, 51.3577595 ], "geometry": { "type": "Point", "coordinates": [ -0.5168282, 51.3577595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03633210" }, "bbox": [ -0.5175037, 51.3576774, -0.5175037, 51.3576774 ], "geometry": { "type": "Point", "coordinates": [ -0.5175037, 51.3576774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08570109" }, "bbox": [ -0.4519122, 51.3026951, -0.4519122, 51.3026951 ], "geometry": { "type": "Point", "coordinates": [ -0.4519122, 51.3026951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03759002" }, "bbox": [ -0.5053635, 51.4648591, -0.5053635, 51.4648591 ], "geometry": { "type": "Point", "coordinates": [ -0.5053635, 51.4648591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03749297" }, "bbox": [ -0.5054362, 51.4641405, -0.5054362, 51.4641405 ], "geometry": { "type": "Point", "coordinates": [ -0.5054362, 51.4641405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24562741" }, "bbox": [ -0.2195149, 51.2928753, -0.2195149, 51.2928753 ], "geometry": { "type": "Point", "coordinates": [ -0.2195149, 51.2928753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24563252" }, "bbox": [ -0.2183164, 51.2942251, -0.2183164, 51.2942251 ], "geometry": { "type": "Point", "coordinates": [ -0.2183164, 51.2942251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24561442" }, "bbox": [ -0.2210178, 51.2933491, -0.2210178, 51.2933491 ], "geometry": { "type": "Point", "coordinates": [ -0.2210178, 51.2933491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18404257" }, "bbox": [ -0.3080526, 51.1522063, -0.3080526, 51.1522063 ], "geometry": { "type": "Point", "coordinates": [ -0.3080526, 51.1522063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18404845" }, "bbox": [ -0.3071976, 51.1510285, -0.3071976, 51.1510285 ], "geometry": { "type": "Point", "coordinates": [ -0.3071976, 51.1510285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18404650" }, "bbox": [ -0.3077658, 51.1515693, -0.3077658, 51.1515693 ], "geometry": { "type": "Point", "coordinates": [ -0.3077658, 51.1515693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18405531" }, "bbox": [ -0.3064245, 51.1497487, -0.3064245, 51.1497487 ], "geometry": { "type": "Point", "coordinates": [ -0.3064245, 51.1497487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91483269" }, "bbox": [ -0.6933472, 51.2302374, -0.6933472, 51.2302374 ], "geometry": { "type": "Point", "coordinates": [ -0.6933472, 51.2302374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12573752" }, "bbox": [ -0.3895775, 51.3056396, -0.3895775, 51.3056396 ], "geometry": { "type": "Point", "coordinates": [ -0.3895775, 51.3056396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12576257" }, "bbox": [ -0.3858784, 51.3061886, -0.3858784, 51.3061886 ], "geometry": { "type": "Point", "coordinates": [ -0.3858784, 51.3061886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12576649" }, "bbox": [ -0.3854943, 51.3055749, -0.3854943, 51.3055749 ], "geometry": { "type": "Point", "coordinates": [ -0.3854943, 51.3055749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12575545" }, "bbox": [ -0.3868962, 51.3052294, -0.3868962, 51.3052294 ], "geometry": { "type": "Point", "coordinates": [ -0.3868962, 51.3052294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03347053" }, "bbox": [ -0.5202994, 51.1007239, -0.5202994, 51.1007239 ], "geometry": { "type": "Point", "coordinates": [ -0.5202994, 51.1007239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96558365" }, "bbox": [ -0.6122067, 51.2916019, -0.6122067, 51.2916019 ], "geometry": { "type": "Point", "coordinates": [ -0.6122067, 51.2916019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96557854" }, "bbox": [ -0.6134821, 51.2906561, -0.6134821, 51.2906561 ], "geometry": { "type": "Point", "coordinates": [ -0.6134821, 51.2906561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01633642" }, "bbox": [ -0.5455467, 51.3607411, -0.5455467, 51.3607411 ], "geometry": { "type": "Point", "coordinates": [ -0.5455467, 51.3607411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01635543" }, "bbox": [ -0.5425773, 51.360834, -0.5425773, 51.360834 ], "geometry": { "type": "Point", "coordinates": [ -0.5425773, 51.360834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01631934" }, "bbox": [ -0.5479509, 51.3599811, -0.5479509, 51.3599811 ], "geometry": { "type": "Point", "coordinates": [ -0.5479509, 51.3599811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01635049" }, "bbox": [ -0.5433545, 51.3613983, -0.5433545, 51.3613983 ], "geometry": { "type": "Point", "coordinates": [ -0.5433545, 51.3613983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20598128" }, "bbox": [ -0.2653752, 51.3176567, -0.2653752, 51.3176567 ], "geometry": { "type": "Point", "coordinates": [ -0.2653752, 51.3176567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96405556" }, "bbox": [ -0.6208486, 51.1561868, -0.6208486, 51.1561868 ], "geometry": { "type": "Point", "coordinates": [ -0.6208486, 51.1561868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96405657" }, "bbox": [ -0.6206627, 51.1562145, -0.6206627, 51.1562145 ], "geometry": { "type": "Point", "coordinates": [ -0.6206627, 51.1562145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96405757" }, "bbox": [ -0.6204825, 51.1562413, -0.6204825, 51.1562413 ], "geometry": { "type": "Point", "coordinates": [ -0.6204825, 51.1562413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96406854" }, "bbox": [ -0.6192013, 51.1561364, -0.6192013, 51.1561364 ], "geometry": { "type": "Point", "coordinates": [ -0.6192013, 51.1561364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96405857" }, "bbox": [ -0.6203031, 51.1562679, -0.6203031, 51.1562679 ], "geometry": { "type": "Point", "coordinates": [ -0.6203031, 51.1562679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96406058" }, "bbox": [ -0.6201228, 51.1562949, -0.6201228, 51.1562949 ], "geometry": { "type": "Point", "coordinates": [ -0.6201228, 51.1562949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07526396" }, "bbox": [ -0.4586116, 51.2656204, -0.4586116, 51.2656204 ], "geometry": { "type": "Point", "coordinates": [ -0.4586116, 51.2656204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16378475" }, "bbox": [ -0.3316842, 51.1271515, -0.3316842, 51.1271515 ], "geometry": { "type": "Point", "coordinates": [ -0.3316842, 51.1271515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00655981" }, "bbox": [ -0.5558089, 51.3826233, -0.5558089, 51.3826233 ], "geometry": { "type": "Point", "coordinates": [ -0.5558089, 51.3826233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00657883" }, "bbox": [ -0.5531444, 51.3827195, -0.5531444, 51.3827195 ], "geometry": { "type": "Point", "coordinates": [ -0.5531444, 51.3827195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00656968" }, "bbox": [ -0.5545889, 51.3813428, -0.5545889, 51.3813428 ], "geometry": { "type": "Point", "coordinates": [ -0.5545889, 51.3813428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00657298" }, "bbox": [ -0.5540568, 51.3838336, -0.5540568, 51.3838336 ], "geometry": { "type": "Point", "coordinates": [ -0.5540568, 51.3838336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21572945" }, "bbox": [ -0.2613023, 51.3033781, -0.2613023, 51.3033781 ], "geometry": { "type": "Point", "coordinates": [ -0.2613023, 51.3033781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03695703" }, "bbox": [ -0.512146, 51.4109282, -0.512146, 51.4109282 ], "geometry": { "type": "Point", "coordinates": [ -0.512146, 51.4109282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02685668" }, "bbox": [ -0.5268785, 51.4078824, -0.5268785, 51.4078824 ], "geometry": { "type": "Point", "coordinates": [ -0.5268785, 51.4078824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02686161" }, "bbox": [ -0.5259729, 51.4072515, -0.5259729, 51.4072515 ], "geometry": { "type": "Point", "coordinates": [ -0.5259729, 51.4072515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02686375" }, "bbox": [ -0.5257084, 51.4085285, -0.5257084, 51.4085285 ], "geometry": { "type": "Point", "coordinates": [ -0.5257084, 51.4085285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02687782" }, "bbox": [ -0.5236476, 51.4091857, -0.5236476, 51.4091857 ], "geometry": { "type": "Point", "coordinates": [ -0.5236476, 51.4091857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98385053" }, "bbox": [ -0.5940958, 51.1381573, -0.5940958, 51.1381573 ], "geometry": { "type": "Point", "coordinates": [ -0.5940958, 51.1381573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22607347" }, "bbox": [ -0.2400737, 51.3300586, -0.2400737, 51.3300586 ], "geometry": { "type": "Point", "coordinates": [ -0.2400737, 51.3300586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18470265" }, "bbox": [ -0.3116919, 51.2158415, -0.3116919, 51.2158415 ], "geometry": { "type": "Point", "coordinates": [ -0.3116919, 51.2158415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478332" }, "bbox": [ -0.3144643, 51.2129655, -0.3144643, 51.2129655 ], "geometry": { "type": "Point", "coordinates": [ -0.3144643, 51.2129655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477230" }, "bbox": [ -0.3163727, 51.2127113, -0.3163727, 51.2127113 ], "geometry": { "type": "Point", "coordinates": [ -0.3163727, 51.2127113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10490269" }, "bbox": [ -0.4241414, 51.2364275, -0.4241414, 51.2364275 ], "geometry": { "type": "Point", "coordinates": [ -0.4241414, 51.2364275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14523674" }, "bbox": [ -0.3623125, 51.2623635, -0.3623125, 51.2623635 ], "geometry": { "type": "Point", "coordinates": [ -0.3623125, 51.2623635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85427944" }, "bbox": [ -0.7741149, 51.174827, -0.7741149, 51.174827 ], "geometry": { "type": "Point", "coordinates": [ -0.7741149, 51.174827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85428926" }, "bbox": [ -0.7727435, 51.1730937, -0.7727435, 51.1730937 ], "geometry": { "type": "Point", "coordinates": [ -0.7727435, 51.1730937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14586353" }, "bbox": [ -0.3565346, 51.3144042, -0.3565346, 51.3144042 ], "geometry": { "type": "Point", "coordinates": [ -0.3565346, 51.3144042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37573554" }, "bbox": [ -0.03108, 51.3004992, -0.03108, 51.3004992 ], "geometry": { "type": "Point", "coordinates": [ -0.03108, 51.3004992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37573844" }, "bbox": [ -0.0308073, 51.2995985, -0.0308073, 51.2995985 ], "geometry": { "type": "Point", "coordinates": [ -0.0308073, 51.2995985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37572950" }, "bbox": [ -0.0323425, 51.3002617, -0.0323425, 51.3002617 ], "geometry": { "type": "Point", "coordinates": [ -0.0323425, 51.3002617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23501708" }, "bbox": [ -0.2369349, 51.2366368, -0.2369349, 51.2366368 ], "geometry": { "type": "Point", "coordinates": [ -0.2369349, 51.2366368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97392695" }, "bbox": [ -0.6107777, 51.1506274, -0.6107777, 51.1506274 ], "geometry": { "type": "Point", "coordinates": [ -0.6107777, 51.1506274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93375033" }, "bbox": [ -0.6652216, 51.1279894, -0.6652216, 51.1279894 ], "geometry": { "type": "Point", "coordinates": [ -0.6652216, 51.1279894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02637024" }, "bbox": [ -0.5261761, 51.3589591, -0.5261761, 51.3589591 ], "geometry": { "type": "Point", "coordinates": [ -0.5261761, 51.3589591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02636812" }, "bbox": [ -0.5266804, 51.3579467, -0.5266804, 51.3579467 ], "geometry": { "type": "Point", "coordinates": [ -0.5266804, 51.3579467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90374780" }, "bbox": [ -0.7082943, 51.1323692, -0.7082943, 51.1323692 ], "geometry": { "type": "Point", "coordinates": [ -0.7082943, 51.1323692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90375063" }, "bbox": [ -0.7080032, 51.1308046, -0.7080032, 51.1308046 ], "geometry": { "type": "Point", "coordinates": [ -0.7080032, 51.1308046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86470907" }, "bbox": [ -0.7686866, 51.2163421, -0.7686866, 51.2163421 ], "geometry": { "type": "Point", "coordinates": [ -0.7686866, 51.2163421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86462293" }, "bbox": [ -0.7666496, 51.2152789, -0.7666496, 51.2152789 ], "geometry": { "type": "Point", "coordinates": [ -0.7666496, 51.2152789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86462483" }, "bbox": [ -0.7661016, 51.2136435, -0.7661016, 51.2136435 ], "geometry": { "type": "Point", "coordinates": [ -0.7661016, 51.2136435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30489524" }, "bbox": [ -0.1263611, 51.2183387, -0.1263611, 51.2183387 ], "geometry": { "type": "Point", "coordinates": [ -0.1263611, 51.2183387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30488218" }, "bbox": [ -0.1283203, 51.2178039, -0.1283203, 51.2178039 ], "geometry": { "type": "Point", "coordinates": [ -0.1283203, 51.2178039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30488936" }, "bbox": [ -0.127152, 51.2194684, -0.127152, 51.2194684 ], "geometry": { "type": "Point", "coordinates": [ -0.127152, 51.2194684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31481035" }, "bbox": [ -0.124156, 51.2192092, -0.124156, 51.2192092 ], "geometry": { "type": "Point", "coordinates": [ -0.124156, 51.2192092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94602225" }, "bbox": [ -0.6488683, 51.3335918, -0.6488683, 51.3335918 ], "geometry": { "type": "Point", "coordinates": [ -0.6488683, 51.3335918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89397430" }, "bbox": [ -0.7184466, 51.145959, -0.7184466, 51.145959 ], "geometry": { "type": "Point", "coordinates": [ -0.7184466, 51.145959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30496898" }, "bbox": [ -0.1293807, 51.2341454, -0.1293807, 51.2341454 ], "geometry": { "type": "Point", "coordinates": [ -0.1293807, 51.2341454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18629104" }, "bbox": [ -0.2943851, 51.3455533, -0.2943851, 51.3455533 ], "geometry": { "type": "Point", "coordinates": [ -0.2943851, 51.3455533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19610875" }, "bbox": [ -0.2917741, 51.3424428, -0.2917741, 51.3424428 ], "geometry": { "type": "Point", "coordinates": [ -0.2917741, 51.3424428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18614674" }, "bbox": [ -0.3008774, 51.3424503, -0.3008774, 51.3424503 ], "geometry": { "type": "Point", "coordinates": [ -0.3008774, 51.3424503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93495528" }, "bbox": [ -0.6613731, 51.2350916, -0.6613731, 51.2350916 ], "geometry": { "type": "Point", "coordinates": [ -0.6613731, 51.2350916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94497395" }, "bbox": [ -0.6444048, 51.2401193, -0.6444048, 51.2401193 ], "geometry": { "type": "Point", "coordinates": [ -0.6444048, 51.2401193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12659324" }, "bbox": [ -0.3789627, 51.3748377, -0.3789627, 51.3748377 ], "geometry": { "type": "Point", "coordinates": [ -0.3789627, 51.3748377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11368003" }, "bbox": [ -0.4039294, 51.1125991, -0.4039294, 51.1125991 ], "geometry": { "type": "Point", "coordinates": [ -0.4039294, 51.1125991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570156" }, "bbox": [ -0.3802719, 51.3059723, -0.3802719, 51.3059723 ], "geometry": { "type": "Point", "coordinates": [ -0.3802719, 51.3059723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99695108" }, "bbox": [ -0.5705068, 51.4121257, -0.5705068, 51.4121257 ], "geometry": { "type": "Point", "coordinates": [ -0.5705068, 51.4121257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85467231" }, "bbox": [ -0.7743292, 51.2094569, -0.7743292, 51.2094569 ], "geometry": { "type": "Point", "coordinates": [ -0.7743292, 51.2094569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02673928" }, "bbox": [ -0.5294241, 51.3953181, -0.5294241, 51.3953181 ], "geometry": { "type": "Point", "coordinates": [ -0.5294241, 51.3953181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02674931" }, "bbox": [ -0.5281549, 51.3956002, -0.5281549, 51.3956002 ], "geometry": { "type": "Point", "coordinates": [ -0.5281549, 51.3956002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02674725" }, "bbox": [ -0.5285063, 51.3950463, -0.5285063, 51.3950463 ], "geometry": { "type": "Point", "coordinates": [ -0.5285063, 51.3950463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02676525" }, "bbox": [ -0.5267742, 51.3947136, -0.5267742, 51.3947136 ], "geometry": { "type": "Point", "coordinates": [ -0.5267742, 51.3947136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97637550" }, "bbox": [ -0.597191, 51.3620602, -0.597191, 51.3620602 ], "geometry": { "type": "Point", "coordinates": [ -0.597191, 51.3620602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93568042" }, "bbox": [ -0.6559055, 51.2992208, -0.6559055, 51.2992208 ], "geometry": { "type": "Point", "coordinates": [ -0.6559055, 51.2992208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379799" }, "bbox": [ -0.6868989, 51.133666, -0.6868989, 51.133666 ], "geometry": { "type": "Point", "coordinates": [ -0.6868989, 51.133666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88397401" }, "bbox": [ -0.7328683, 51.1434711, -0.7328683, 51.1434711 ], "geometry": { "type": "Point", "coordinates": [ -0.7328683, 51.1434711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21463942" }, "bbox": [ -0.2637013, 51.2041543, -0.2637013, 51.2041543 ], "geometry": { "type": "Point", "coordinates": [ -0.2637013, 51.2041543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21464152" }, "bbox": [ -0.2633567, 51.2050169, -0.2633567, 51.2050169 ], "geometry": { "type": "Point", "coordinates": [ -0.2633567, 51.2050169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09467845" }, "bbox": [ -0.4303469, 51.2067861, -0.4303469, 51.2067861 ], "geometry": { "type": "Point", "coordinates": [ -0.4303469, 51.2067861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41533540" }, "bbox": [ 0.0242345, 51.2623951, 0.0242345, 51.2623951 ], "geometry": { "type": "Point", "coordinates": [ 0.0242345, 51.2623951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41533735" }, "bbox": [ 0.0241972, 51.2616367, 0.0241972, 51.2616367 ], "geometry": { "type": "Point", "coordinates": [ 0.0241972, 51.2616367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41533930" }, "bbox": [ 0.0245873, 51.2612363, 0.0245873, 51.2612363 ], "geometry": { "type": "Point", "coordinates": [ 0.0245873, 51.2612363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83421816" }, "bbox": [ -0.8118123, 51.1726971, -0.8118123, 51.1726971 ], "geometry": { "type": "Point", "coordinates": [ -0.8118123, 51.1726971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00473243" }, "bbox": [ -0.5650144, 51.2172806, -0.5650144, 51.2172806 ], "geometry": { "type": "Point", "coordinates": [ -0.5650144, 51.2172806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21481566" }, "bbox": [ -0.2662613, 51.2244103, -0.2662613, 51.2244103 ], "geometry": { "type": "Point", "coordinates": [ -0.2662613, 51.2244103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18579915" }, "bbox": [ -0.2953401, 51.301307, -0.2953401, 51.301307 ], "geometry": { "type": "Point", "coordinates": [ -0.2953401, 51.301307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18578400" }, "bbox": [ -0.2965708, 51.2999053, -0.2965708, 51.2999053 ], "geometry": { "type": "Point", "coordinates": [ -0.2965708, 51.2999053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96391028" }, "bbox": [ -0.6275474, 51.1447541, -0.6275474, 51.1447541 ], "geometry": { "type": "Point", "coordinates": [ -0.6275474, 51.1447541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01342698" }, "bbox": [ -0.5550145, 51.1049671, -0.5550145, 51.1049671 ], "geometry": { "type": "Point", "coordinates": [ -0.5550145, 51.1049671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00359419" }, "bbox": [ -0.5595564, 51.1069486, -0.5595564, 51.1069486 ], "geometry": { "type": "Point", "coordinates": [ -0.5595564, 51.1069486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20491843" }, "bbox": [ -0.280108, 51.2315808, -0.280108, 51.2315808 ], "geometry": { "type": "Point", "coordinates": [ -0.280108, 51.2315808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96429629" }, "bbox": [ -0.614465, 51.1716075, -0.614465, 51.1716075 ], "geometry": { "type": "Point", "coordinates": [ -0.614465, 51.1716075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01368785" }, "bbox": [ -0.5459568, 51.1218258, -0.5459568, 51.1218258 ], "geometry": { "type": "Point", "coordinates": [ -0.5459568, 51.1218258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03579327" }, "bbox": [ -0.5103967, 51.3050824, -0.5103967, 51.3050824 ], "geometry": { "type": "Point", "coordinates": [ -0.5103967, 51.3050824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03562562" }, "bbox": [ -0.5197282, 51.2998325, -0.5197282, 51.2998325 ], "geometry": { "type": "Point", "coordinates": [ -0.5197282, 51.2998325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03564059" }, "bbox": [ -0.5184964, 51.2988907, -0.5184964, 51.2988907 ], "geometry": { "type": "Point", "coordinates": [ -0.5184964, 51.2988907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03562434" }, "bbox": [ -0.5206674, 51.2967102, -0.5206674, 51.2967102 ], "geometry": { "type": "Point", "coordinates": [ -0.5206674, 51.2967102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97439541" }, "bbox": [ -0.6000091, 51.1816285, -0.6000091, 51.1816285 ], "geometry": { "type": "Point", "coordinates": [ -0.6000091, 51.1816285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97438421" }, "bbox": [ -0.6018129, 51.1799124, -0.6018129, 51.1799124 ], "geometry": { "type": "Point", "coordinates": [ -0.6018129, 51.1799124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15393882" }, "bbox": [ -0.3518525, 51.1460253, -0.3518525, 51.1460253 ], "geometry": { "type": "Point", "coordinates": [ -0.3518525, 51.1460253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95390523" }, "bbox": [ -0.6425215, 51.1438648, -0.6425215, 51.1438648 ], "geometry": { "type": "Point", "coordinates": [ -0.6425215, 51.1438648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87483602" }, "bbox": [ -0.750378, 51.2247444, -0.750378, 51.2247444 ], "geometry": { "type": "Point", "coordinates": [ -0.750378, 51.2247444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458996" }, "bbox": [ -0.5857515, 51.2041996, -0.5857515, 51.2041996 ], "geometry": { "type": "Point", "coordinates": [ -0.5857515, 51.2041996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25416122" }, "bbox": [ -0.2064477, 51.1565106, -0.2064477, 51.1565106 ], "geometry": { "type": "Point", "coordinates": [ -0.2064477, 51.1565106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24406994" }, "bbox": [ -0.2183704, 51.1541636, -0.2183704, 51.1541636 ], "geometry": { "type": "Point", "coordinates": [ -0.2183704, 51.1541636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25443348" }, "bbox": [ -0.2080501, 51.1858218, -0.2080501, 51.1858218 ], "geometry": { "type": "Point", "coordinates": [ -0.2080501, 51.1858218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24425995" }, "bbox": [ -0.2191463, 51.1722075, -0.2191463, 51.1722075 ], "geometry": { "type": "Point", "coordinates": [ -0.2191463, 51.1722075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24434828" }, "bbox": [ -0.2205358, 51.1752234, -0.2205358, 51.1752234 ], "geometry": { "type": "Point", "coordinates": [ -0.2205358, 51.1752234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25439546" }, "bbox": [ -0.1999429, 51.1767742, -0.1999429, 51.1767742 ], "geometry": { "type": "Point", "coordinates": [ -0.1999429, 51.1767742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26432239" }, "bbox": [ -0.1955929, 51.1758256, -0.1955929, 51.1758256 ], "geometry": { "type": "Point", "coordinates": [ -0.1955929, 51.1758256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478812" }, "bbox": [ -0.1563232, 51.2088341, -0.1563232, 51.2088341 ], "geometry": { "type": "Point", "coordinates": [ -0.1563232, 51.2088341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28477601" }, "bbox": [ -0.1580549, 51.2078256, -0.1580549, 51.2078256 ], "geometry": { "type": "Point", "coordinates": [ -0.1580549, 51.2078256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478300" }, "bbox": [ -0.1570026, 51.2078963, -0.1570026, 51.2078963 ], "geometry": { "type": "Point", "coordinates": [ -0.1570026, 51.2078963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24422855" }, "bbox": [ -0.2238483, 51.1687765, -0.2238483, 51.1687765 ], "geometry": { "type": "Point", "coordinates": [ -0.2238483, 51.1687765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24420271" }, "bbox": [ -0.2276862, 51.1700845, -0.2276862, 51.1700845 ], "geometry": { "type": "Point", "coordinates": [ -0.2276862, 51.1700845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23428853" }, "bbox": [ -0.22982, 51.1685248, -0.22982, 51.1685248 ], "geometry": { "type": "Point", "coordinates": [ -0.22982, 51.1685248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83425090" }, "bbox": [ -0.8062554, 51.1791191, -0.8062554, 51.1791191 ], "geometry": { "type": "Point", "coordinates": [ -0.8062554, 51.1791191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427464" }, "bbox": [ -0.7032132, 51.1759026, -0.7032132, 51.1759026 ], "geometry": { "type": "Point", "coordinates": [ -0.7032132, 51.1759026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39487043" }, "bbox": [ -0.0010632, 51.2180331, -0.0010632, 51.2180331 ], "geometry": { "type": "Point", "coordinates": [ -0.0010632, 51.2180331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22514205" }, "bbox": [ -0.2468566, 51.2452953, -0.2468566, 51.2452953 ], "geometry": { "type": "Point", "coordinates": [ -0.2468566, 51.2452953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22528212" }, "bbox": [ -0.2416515, 51.2548315, -0.2416515, 51.2548315 ], "geometry": { "type": "Point", "coordinates": [ -0.2416515, 51.2548315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23505488" }, "bbox": [ -0.2321065, 51.2439804, -0.2321065, 51.2439804 ], "geometry": { "type": "Point", "coordinates": [ -0.2321065, 51.2439804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513814" }, "bbox": [ -0.2348641, 51.2461793, -0.2348641, 51.2461793 ], "geometry": { "type": "Point", "coordinates": [ -0.2348641, 51.2461793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33523772" }, "bbox": [ -0.0901948, 51.2581222, -0.0901948, 51.2581222 ], "geometry": { "type": "Point", "coordinates": [ -0.0901948, 51.2581222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26553822" }, "bbox": [ -0.1891279, 51.2815678, -0.1891279, 51.2815678 ], "geometry": { "type": "Point", "coordinates": [ -0.1891279, 51.2815678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26536563" }, "bbox": [ -0.1853561, 51.2674537, -0.1853561, 51.2674537 ], "geometry": { "type": "Point", "coordinates": [ -0.1853561, 51.2674537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23463437" }, "bbox": [ -0.2358011, 51.203239, -0.2358011, 51.203239 ], "geometry": { "type": "Point", "coordinates": [ -0.2358011, 51.203239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24452964" }, "bbox": [ -0.2225651, 51.1966516, -0.2225651, 51.1966516 ], "geometry": { "type": "Point", "coordinates": [ -0.2225651, 51.1966516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23462547" }, "bbox": [ -0.2370402, 51.2041554, -0.2370402, 51.2041554 ], "geometry": { "type": "Point", "coordinates": [ -0.2370402, 51.2041554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41560680" }, "bbox": [ 0.0216497, 51.2928117, 0.0216497, 51.2928117 ], "geometry": { "type": "Point", "coordinates": [ 0.0216497, 51.2928117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39565882" }, "bbox": [ 0.000908, 51.2933985, 0.000908, 51.2933985 ], "geometry": { "type": "Point", "coordinates": [ 0.000908, 51.2933985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39566262" }, "bbox": [ 0.0009418, 51.2915295, 0.0009418, 51.2915295 ], "geometry": { "type": "Point", "coordinates": [ 0.0009418, 51.2915295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39563827" }, "bbox": [ -0.0026476, 51.2885359, -0.0026476, 51.2885359 ], "geometry": { "type": "Point", "coordinates": [ -0.0026476, 51.2885359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499189" }, "bbox": [ -0.7142042, 51.24099, -0.7142042, 51.24099 ], "geometry": { "type": "Point", "coordinates": [ -0.7142042, 51.24099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37491977" }, "bbox": [ -0.0364657, 51.2306337, -0.0364657, 51.2306337 ], "geometry": { "type": "Point", "coordinates": [ -0.0364657, 51.2306337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38592190" }, "bbox": [ -0.0172865, 51.3213533, -0.0172865, 51.3213533 ], "geometry": { "type": "Point", "coordinates": [ -0.0172865, 51.3213533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35526234" }, "bbox": [ -0.0579451, 51.2541598, -0.0579451, 51.2541598 ], "geometry": { "type": "Point", "coordinates": [ -0.0579451, 51.2541598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35527227" }, "bbox": [ -0.0565462, 51.253468, -0.0565462, 51.253468 ], "geometry": { "type": "Point", "coordinates": [ -0.0565462, 51.253468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35528973" }, "bbox": [ -0.054056, 51.2576433, -0.054056, 51.2576433 ], "geometry": { "type": "Point", "coordinates": [ -0.054056, 51.2576433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22441103" }, "bbox": [ -0.2546009, 51.1825863, -0.2546009, 51.1825863 ], "geometry": { "type": "Point", "coordinates": [ -0.2546009, 51.1825863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22447253" }, "bbox": [ -0.2457626, 51.1867101, -0.2457626, 51.1867101 ], "geometry": { "type": "Point", "coordinates": [ -0.2457626, 51.1867101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22433968" }, "bbox": [ -0.2510282, 51.1796658, -0.2510282, 51.1796658 ], "geometry": { "type": "Point", "coordinates": [ -0.2510282, 51.1796658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31522050" }, "bbox": [ -0.12123, 51.2565708, -0.12123, 51.2565708 ], "geometry": { "type": "Point", "coordinates": [ -0.12123, 51.2565708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31523552" }, "bbox": [ -0.1187624, 51.256572, -0.1187624, 51.256572 ], "geometry": { "type": "Point", "coordinates": [ -0.1187624, 51.256572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42537404" }, "bbox": [ 0.0443036, 51.2587952, 0.0443036, 51.2587952 ], "geometry": { "type": "Point", "coordinates": [ 0.0443036, 51.2587952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41446271" }, "bbox": [ 0.0246906, 51.1837934, 0.0246906, 51.1837934 ], "geometry": { "type": "Point", "coordinates": [ 0.0246906, 51.1837934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41447076" }, "bbox": [ 0.0261081, 51.1845559, 0.0261081, 51.1845559 ], "geometry": { "type": "Point", "coordinates": [ 0.0261081, 51.1845559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19427283" }, "bbox": [ -0.2887333, 51.1721599, -0.2887333, 51.1721599 ], "geometry": { "type": "Point", "coordinates": [ -0.2887333, 51.1721599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39404598" }, "bbox": [ -0.0075816, 51.1510875, -0.0075816, 51.1510875 ], "geometry": { "type": "Point", "coordinates": [ -0.0075816, 51.1510875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30425581" }, "bbox": [ -0.1339609, 51.1696173, -0.1339609, 51.1696173 ], "geometry": { "type": "Point", "coordinates": [ -0.1339609, 51.1696173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26567827" }, "bbox": [ -0.1833744, 51.291718, -0.1833744, 51.291718 ], "geometry": { "type": "Point", "coordinates": [ -0.1833744, 51.291718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40530173" }, "bbox": [ 0.0054123, 51.2654549, 0.0054123, 51.2654549 ], "geometry": { "type": "Point", "coordinates": [ 0.0054123, 51.2654549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36514351" }, "bbox": [ -0.0468811, 51.2464519, -0.0468811, 51.2464519 ], "geometry": { "type": "Point", "coordinates": [ -0.0468811, 51.2464519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36515147" }, "bbox": [ -0.0455754, 51.2461752, -0.0455754, 51.2461752 ], "geometry": { "type": "Point", "coordinates": [ -0.0455754, 51.2461752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11552033" }, "bbox": [ -0.4064386, 51.2862941, -0.4064386, 51.2862941 ], "geometry": { "type": "Point", "coordinates": [ -0.4064386, 51.2862941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22451644" }, "bbox": [ -0.2535957, 51.1952599, -0.2535957, 51.1952599 ], "geometry": { "type": "Point", "coordinates": [ -0.2535957, 51.1952599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43514101" }, "bbox": [ 0.0525735, 51.2407648, 0.0525735, 51.2407648 ], "geometry": { "type": "Point", "coordinates": [ 0.0525735, 51.2407648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35573946" }, "bbox": [ -0.0593616, 51.3000125, -0.0593616, 51.3000125 ], "geometry": { "type": "Point", "coordinates": [ -0.0593616, 51.3000125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35575204" }, "bbox": [ -0.0578167, 51.2963994, -0.0578167, 51.2963994 ], "geometry": { "type": "Point", "coordinates": [ -0.0578167, 51.2963994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35564695" }, "bbox": [ -0.0584017, 51.29554, -0.0584017, 51.29554 ], "geometry": { "type": "Point", "coordinates": [ -0.0584017, 51.29554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35566799" }, "bbox": [ -0.0554714, 51.2959009, -0.0554714, 51.2959009 ], "geometry": { "type": "Point", "coordinates": [ -0.0554714, 51.2959009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42483995" }, "bbox": [ 0.0376607, 51.2219924, 0.0376607, 51.2219924 ], "geometry": { "type": "Point", "coordinates": [ 0.0376607, 51.2219924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42483081" }, "bbox": [ 0.0364853, 51.2208232, 0.0364853, 51.2208232 ], "geometry": { "type": "Point", "coordinates": [ 0.0364853, 51.2208232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42494315" }, "bbox": [ 0.0383165, 51.2238207, 0.0383165, 51.2238207 ], "geometry": { "type": "Point", "coordinates": [ 0.0383165, 51.2238207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24458305" }, "bbox": [ -0.214932, 51.1910577, -0.214932, 51.1910577 ], "geometry": { "type": "Point", "coordinates": [ -0.214932, 51.1910577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503065" }, "bbox": [ -0.0632875, 51.2389306, -0.0632875, 51.2389306 ], "geometry": { "type": "Point", "coordinates": [ -0.0632875, 51.2389306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512511" }, "bbox": [ -0.0636043, 51.2431186, -0.0636043, 51.2431186 ], "geometry": { "type": "Point", "coordinates": [ -0.0636043, 51.2431186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34501295" }, "bbox": [ -0.0799215, 51.2419938, -0.0799215, 51.2419938 ], "geometry": { "type": "Point", "coordinates": [ -0.0799215, 51.2419938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38547820" }, "bbox": [ -0.0118917, 51.2701219, -0.0118917, 51.2701219 ], "geometry": { "type": "Point", "coordinates": [ -0.0118917, 51.2701219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39549861" }, "bbox": [ 0.0053833, 51.2734798, 0.0053833, 51.2734798 ], "geometry": { "type": "Point", "coordinates": [ 0.0053833, 51.2734798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24577572" }, "bbox": [ -0.2117249, 51.3049606, -0.2117249, 51.3049606 ], "geometry": { "type": "Point", "coordinates": [ -0.2117249, 51.3049606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41546491" }, "bbox": [ 0.0290648, 51.2757453, 0.0290648, 51.2757453 ], "geometry": { "type": "Point", "coordinates": [ 0.0290648, 51.2757453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41546965" }, "bbox": [ 0.0297864, 51.2738925, 0.0297864, 51.2738925 ], "geometry": { "type": "Point", "coordinates": [ 0.0297864, 51.2738925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41546282" }, "bbox": [ 0.02874, 51.2749294, 0.02874, 51.2749294 ], "geometry": { "type": "Point", "coordinates": [ 0.02874, 51.2749294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41553611" }, "bbox": [ 0.0251089, 51.277419, 0.0251089, 51.277419 ], "geometry": { "type": "Point", "coordinates": [ 0.0251089, 51.277419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20420125" }, "bbox": [ -0.2848664, 51.1668891, -0.2848664, 51.1668891 ], "geometry": { "type": "Point", "coordinates": [ -0.2848664, 51.1668891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22469483" }, "bbox": [ -0.2416105, 51.2075043, -0.2416105, 51.2075043 ], "geometry": { "type": "Point", "coordinates": [ -0.2416105, 51.2075043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23461748" }, "bbox": [ -0.2383543, 51.2043793, -0.2383543, 51.2043793 ], "geometry": { "type": "Point", "coordinates": [ -0.2383543, 51.2043793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497751" }, "bbox": [ -0.1426964, 51.2299784, -0.1426964, 51.2299784 ], "geometry": { "type": "Point", "coordinates": [ -0.1426964, 51.2299784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498545" }, "bbox": [ -0.1417914, 51.2293555, -0.1417914, 51.2293555 ], "geometry": { "type": "Point", "coordinates": [ -0.1417914, 51.2293555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29496840" }, "bbox": [ -0.1452181, 51.2292979, -0.1452181, 51.2292979 ], "geometry": { "type": "Point", "coordinates": [ -0.1452181, 51.2292979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29496959" }, "bbox": [ -0.1439586, 51.23069, -0.1439586, 51.23069 ], "geometry": { "type": "Point", "coordinates": [ -0.1439586, 51.23069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30557367" }, "bbox": [ -0.1267967, 51.2853847, -0.1267967, 51.2853847 ], "geometry": { "type": "Point", "coordinates": [ -0.1267967, 51.2853847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30549742" }, "bbox": [ -0.1250629, 51.2738792, -0.1250629, 51.2738792 ], "geometry": { "type": "Point", "coordinates": [ -0.1250629, 51.2738792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37418641" }, "bbox": [ -0.0303323, 51.1564658, -0.0303323, 51.1564658 ], "geometry": { "type": "Point", "coordinates": [ -0.0303323, 51.1564658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30478512" }, "bbox": [ -0.1282604, 51.2082956, -0.1282604, 51.2082956 ], "geometry": { "type": "Point", "coordinates": [ -0.1282604, 51.2082956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30468282" }, "bbox": [ -0.1287469, 51.2056102, -0.1287469, 51.2056102 ], "geometry": { "type": "Point", "coordinates": [ -0.1287469, 51.2056102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30468495" }, "bbox": [ -0.1286343, 51.2068204, -0.1286343, 51.2068204 ], "geometry": { "type": "Point", "coordinates": [ -0.1286343, 51.2068204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42515221" }, "bbox": [ 0.0402442, 51.2422312, 0.0402442, 51.2422312 ], "geometry": { "type": "Point", "coordinates": [ 0.0402442, 51.2422312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41527888" }, "bbox": [ 0.0307256, 51.2573859, 0.0307256, 51.2573859 ], "geometry": { "type": "Point", "coordinates": [ 0.0307256, 51.2573859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42520225" }, "bbox": [ 0.033734, 51.2516865, 0.033734, 51.2516865 ], "geometry": { "type": "Point", "coordinates": [ 0.033734, 51.2516865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21548202" }, "bbox": [ -0.2548392, 51.2720507, -0.2548392, 51.2720507 ], "geometry": { "type": "Point", "coordinates": [ -0.2548392, 51.2720507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21538556" }, "bbox": [ -0.255536, 51.2677405, -0.255536, 51.2677405 ], "geometry": { "type": "Point", "coordinates": [ -0.255536, 51.2677405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21537355" }, "bbox": [ -0.256341, 51.2685281, -0.256341, 51.2685281 ], "geometry": { "type": "Point", "coordinates": [ -0.256341, 51.2685281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21536884" }, "bbox": [ -0.2568066, 51.2708145, -0.2568066, 51.2708145 ], "geometry": { "type": "Point", "coordinates": [ -0.2568066, 51.2708145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95412342" }, "bbox": [ -0.639453, 51.1641553, -0.639453, 51.1641553 ], "geometry": { "type": "Point", "coordinates": [ -0.639453, 51.1641553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95340451" }, "bbox": [ -0.643897, 51.102071, -0.643897, 51.102071 ], "geometry": { "type": "Point", "coordinates": [ -0.643897, 51.102071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26467238" }, "bbox": [ -0.1877091, 51.202926, -0.1877091, 51.202926 ], "geometry": { "type": "Point", "coordinates": [ -0.1877091, 51.202926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24437824" }, "bbox": [ -0.2165884, 51.17493, -0.2165884, 51.17493 ], "geometry": { "type": "Point", "coordinates": [ -0.2165884, 51.17493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02736345" }, "bbox": [ -0.5245684, 51.4506767, -0.5245684, 51.4506767 ], "geometry": { "type": "Point", "coordinates": [ -0.5245684, 51.4506767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99535568" }, "bbox": [ -0.5738292, 51.2732868, -0.5738292, 51.2732868 ], "geometry": { "type": "Point", "coordinates": [ -0.5738292, 51.2732868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97539468" }, "bbox": [ -0.5972389, 51.2735516, -0.5972389, 51.2735516 ], "geometry": { "type": "Point", "coordinates": [ -0.5972389, 51.2735516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07471613" }, "bbox": [ -0.4670844, 51.2132728, -0.4670844, 51.2132728 ], "geometry": { "type": "Point", "coordinates": [ -0.4670844, 51.2132728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07471226" }, "bbox": [ -0.4676377, 51.2146305, -0.4676377, 51.2146305 ], "geometry": { "type": "Point", "coordinates": [ -0.4676377, 51.2146305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07472519" }, "bbox": [ -0.4658826, 51.214043, -0.4658826, 51.214043 ], "geometry": { "type": "Point", "coordinates": [ -0.4658826, 51.214043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06655373" }, "bbox": [ -0.470622, 51.3806632, -0.470622, 51.3806632 ], "geometry": { "type": "Point", "coordinates": [ -0.470622, 51.3806632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06656966" }, "bbox": [ -0.468368, 51.3800107, -0.468368, 51.3800107 ], "geometry": { "type": "Point", "coordinates": [ -0.468368, 51.3800107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401579" }, "bbox": [ -0.2547077, 51.1535657, -0.2547077, 51.1535657 ], "geometry": { "type": "Point", "coordinates": [ -0.2547077, 51.1535657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98393510" }, "bbox": [ -0.5943474, 51.1421638, -0.5943474, 51.1421638 ], "geometry": { "type": "Point", "coordinates": [ -0.5943474, 51.1421638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517822" }, "bbox": [ -0.6718804, 51.2525344, -0.6718804, 51.2525344 ], "geometry": { "type": "Point", "coordinates": [ -0.6718804, 51.2525344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28574249" }, "bbox": [ -0.1589576, 51.3020545, -0.1589576, 51.3020545 ], "geometry": { "type": "Point", "coordinates": [ -0.1589576, 51.3020545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28572030" }, "bbox": [ -0.1623184, 51.3004606, -0.1623184, 51.3004606 ], "geometry": { "type": "Point", "coordinates": [ -0.1623184, 51.3004606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28572929" }, "bbox": [ -0.1609518, 51.3004675, -0.1609518, 51.3004675 ], "geometry": { "type": "Point", "coordinates": [ -0.1609518, 51.3004675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28573141" }, "bbox": [ -0.16083, 51.301417, -0.16083, 51.301417 ], "geometry": { "type": "Point", "coordinates": [ -0.16083, 51.301417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28574541" }, "bbox": [ -0.1587276, 51.3013258, -0.1587276, 51.3013258 ], "geometry": { "type": "Point", "coordinates": [ -0.1587276, 51.3013258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36561324" }, "bbox": [ -0.0491603, 51.2890797, -0.0491603, 51.2890797 ], "geometry": { "type": "Point", "coordinates": [ -0.0491603, 51.2890797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34558484" }, "bbox": [ -0.0678762, 51.285526, -0.0678762, 51.285526 ], "geometry": { "type": "Point", "coordinates": [ -0.0678762, 51.285526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34568814" }, "bbox": [ -0.0671564, 51.2882749, -0.0671564, 51.2882749 ], "geometry": { "type": "Point", "coordinates": [ -0.0671564, 51.2882749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10390194" }, "bbox": [ -0.4283668, 51.1483459, -0.4283668, 51.1483459 ], "geometry": { "type": "Point", "coordinates": [ -0.4283668, 51.1483459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29456702" }, "bbox": [ -0.1468961, 51.1896993, -0.1468961, 51.1896993 ], "geometry": { "type": "Point", "coordinates": [ -0.1468961, 51.1896993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29440478" }, "bbox": [ -0.1545498, 51.1868818, -0.1545498, 51.1868818 ], "geometry": { "type": "Point", "coordinates": [ -0.1545498, 51.1868818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40490613" }, "bbox": [ 0.0042382, 51.2241673, 0.0042382, 51.2241673 ], "geometry": { "type": "Point", "coordinates": [ 0.0042382, 51.2241673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40492943" }, "bbox": [ 0.0075133, 51.2265011, 0.0075133, 51.2265011 ], "geometry": { "type": "Point", "coordinates": [ 0.0075133, 51.2265011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13440785" }, "bbox": [ -0.3832307, 51.1914955, -0.3832307, 51.1914955 ], "geometry": { "type": "Point", "coordinates": [ -0.3832307, 51.1914955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13446886" }, "bbox": [ -0.374444, 51.1917625, -0.374444, 51.1917625 ], "geometry": { "type": "Point", "coordinates": [ -0.374444, 51.1917625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12448538" }, "bbox": [ -0.3864573, 51.1877258, -0.3864573, 51.1877258 ], "geometry": { "type": "Point", "coordinates": [ -0.3864573, 51.1877258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07477082" }, "bbox": [ -0.4592197, 51.2194597, -0.4592197, 51.2194597 ], "geometry": { "type": "Point", "coordinates": [ -0.4592197, 51.2194597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93624852" }, "bbox": [ -0.658936, 51.3541528, -0.658936, 51.3541528 ], "geometry": { "type": "Point", "coordinates": [ -0.658936, 51.3541528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02376606" }, "bbox": [ -0.5343385, 51.1236361, -0.5343385, 51.1236361 ], "geometry": { "type": "Point", "coordinates": [ -0.5343385, 51.1236361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30423375" }, "bbox": [ -0.1372366, 51.1691779, -0.1372366, 51.1691779 ], "geometry": { "type": "Point", "coordinates": [ -0.1372366, 51.1691779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30423270" }, "bbox": [ -0.1372373, 51.168739, -0.1372373, 51.168739 ], "geometry": { "type": "Point", "coordinates": [ -0.1372373, 51.168739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30423679" }, "bbox": [ -0.1366573, 51.169951, -0.1366573, 51.169951 ], "geometry": { "type": "Point", "coordinates": [ -0.1366573, 51.169951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30423972" }, "bbox": [ -0.1364654, 51.168889, -0.1364654, 51.168889 ], "geometry": { "type": "Point", "coordinates": [ -0.1364654, 51.168889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30423873" }, "bbox": [ -0.1364109, 51.1689932, -0.1364109, 51.1689932 ], "geometry": { "type": "Point", "coordinates": [ -0.1364109, 51.1689932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43414455" }, "bbox": [ 0.0497419, 51.1552342, 0.0497419, 51.1552342 ], "geometry": { "type": "Point", "coordinates": [ 0.0497419, 51.1552342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43414245" }, "bbox": [ 0.0486694, 51.1546398, 0.0486694, 51.1546398 ], "geometry": { "type": "Point", "coordinates": [ 0.0486694, 51.1546398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43412168" }, "bbox": [ 0.0465415, 51.1564747, 0.0465415, 51.1564747 ], "geometry": { "type": "Point", "coordinates": [ 0.0465415, 51.1564747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19607675" }, "bbox": [ -0.2823477, 51.3332872, -0.2823477, 51.3332872 ], "geometry": { "type": "Point", "coordinates": [ -0.2823477, 51.3332872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01551239" }, "bbox": [ -0.5512749, 51.2887355, -0.5512749, 51.2887355 ], "geometry": { "type": "Point", "coordinates": [ -0.5512749, 51.2887355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12383767" }, "bbox": [ -0.3952254, 51.1363139, -0.3952254, 51.1363139 ], "geometry": { "type": "Point", "coordinates": [ -0.3952254, 51.1363139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93490077" }, "bbox": [ -0.6694355, 51.2394558, -0.6694355, 51.2394558 ], "geometry": { "type": "Point", "coordinates": [ -0.6694355, 51.2394558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34504842" }, "bbox": [ -0.0764898, 51.2370065, -0.0764898, 51.2370065 ], "geometry": { "type": "Point", "coordinates": [ -0.0764898, 51.2370065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03347445" }, "bbox": [ -0.5193413, 51.099976, -0.5193413, 51.099976 ], "geometry": { "type": "Point", "coordinates": [ -0.5193413, 51.099976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42544749" }, "bbox": [ 0.0411083, 51.2718079, 0.0411083, 51.2718079 ], "geometry": { "type": "Point", "coordinates": [ 0.0411083, 51.2718079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89347261" }, "bbox": [ -0.7197916, 51.1038407, -0.7197916, 51.1038407 ], "geometry": { "type": "Point", "coordinates": [ -0.7197916, 51.1038407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89345103" }, "bbox": [ -0.7230236, 51.0987165, -0.7230236, 51.0987165 ], "geometry": { "type": "Point", "coordinates": [ -0.7230236, 51.0987165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05576385" }, "bbox": [ -0.4857181, 51.3099128, -0.4857181, 51.3099128 ], "geometry": { "type": "Point", "coordinates": [ -0.4857181, 51.3099128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05573773" }, "bbox": [ -0.4896779, 51.3089342, -0.4896779, 51.3089342 ], "geometry": { "type": "Point", "coordinates": [ -0.4896779, 51.3089342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05573071" }, "bbox": [ -0.4905567, 51.3087945, -0.4905567, 51.3087945 ], "geometry": { "type": "Point", "coordinates": [ -0.4905567, 51.3087945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05574675" }, "bbox": [ -0.4882428, 51.3093308, -0.4882428, 51.3093308 ], "geometry": { "type": "Point", "coordinates": [ -0.4882428, 51.3093308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05574367" }, "bbox": [ -0.4887391, 51.3084682, -0.4887391, 51.3084682 ], "geometry": { "type": "Point", "coordinates": [ -0.4887391, 51.3084682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05575365" }, "bbox": [ -0.48734, 51.3082343, -0.48734, 51.3082343 ], "geometry": { "type": "Point", "coordinates": [ -0.48734, 51.3082343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05576161" }, "bbox": [ -0.4861742, 51.3078326, -0.4861742, 51.3078326 ], "geometry": { "type": "Point", "coordinates": [ -0.4861742, 51.3078326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05574760" }, "bbox": [ -0.4881474, 51.3078228, -0.4881474, 51.3078228 ], "geometry": { "type": "Point", "coordinates": [ -0.4881474, 51.3078228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05575779" }, "bbox": [ -0.4868136, 51.3094967, -0.4868136, 51.3094967 ], "geometry": { "type": "Point", "coordinates": [ -0.4868136, 51.3094967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00483342" }, "bbox": [ -0.5644112, 51.2261996, -0.5644112, 51.2261996 ], "geometry": { "type": "Point", "coordinates": [ -0.5644112, 51.2261996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30476238" }, "bbox": [ -0.1303827, 51.2106943, -0.1303827, 51.2106943 ], "geometry": { "type": "Point", "coordinates": [ -0.1303827, 51.2106943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30482349" }, "bbox": [ -0.136501, 51.2195096, -0.136501, 51.2195096 ], "geometry": { "type": "Point", "coordinates": [ -0.136501, 51.2195096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30480852" }, "bbox": [ -0.1385935, 51.2210262, -0.1385935, 51.2210262 ], "geometry": { "type": "Point", "coordinates": [ -0.1385935, 51.2210262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35409215" }, "bbox": [ -0.0583226, 51.1444919, -0.0583226, 51.1444919 ], "geometry": { "type": "Point", "coordinates": [ -0.0583226, 51.1444919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92368676" }, "bbox": [ -0.6745676, 51.1226184, -0.6745676, 51.1226184 ], "geometry": { "type": "Point", "coordinates": [ -0.6745676, 51.1226184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92368482" }, "bbox": [ -0.6747975, 51.1231163, -0.6747975, 51.1231163 ], "geometry": { "type": "Point", "coordinates": [ -0.6747975, 51.1231163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92368078" }, "bbox": [ -0.6750898, 51.1228441, -0.6750898, 51.1228441 ], "geometry": { "type": "Point", "coordinates": [ -0.6750898, 51.1228441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14482924" }, "bbox": [ -0.3646629, 51.2220336, -0.3646629, 51.2220336 ], "geometry": { "type": "Point", "coordinates": [ -0.3646629, 51.2220336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27597778" }, "bbox": [ -0.1668174, 51.322307, -0.1668174, 51.322307 ], "geometry": { "type": "Point", "coordinates": [ -0.1668174, 51.322307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27599688" }, "bbox": [ -0.1648633, 51.3236548, -0.1648633, 51.3236548 ], "geometry": { "type": "Point", "coordinates": [ -0.1648633, 51.3236548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27597271" }, "bbox": [ -0.1684476, 51.3221175, -0.1684476, 51.3221175 ], "geometry": { "type": "Point", "coordinates": [ -0.1684476, 51.3221175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28590783" }, "bbox": [ -0.1631183, 51.3223344, -0.1631183, 51.3223344 ], "geometry": { "type": "Point", "coordinates": [ -0.1631183, 51.3223344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93658571" }, "bbox": [ -0.652725, 51.3826799, -0.652725, 51.3826799 ], "geometry": { "type": "Point", "coordinates": [ -0.652725, 51.3826799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93656747" }, "bbox": [ -0.6553701, 51.3805984, -0.6553701, 51.3805984 ], "geometry": { "type": "Point", "coordinates": [ -0.6553701, 51.3805984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93657558" }, "bbox": [ -0.6541431, 51.3815383, -0.6541431, 51.3815383 ], "geometry": { "type": "Point", "coordinates": [ -0.6541431, 51.3815383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00350474" }, "bbox": [ -0.5727523, 51.1125894, -0.5727523, 51.1125894 ], "geometry": { "type": "Point", "coordinates": [ -0.5727523, 51.1125894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30503376" }, "bbox": [ -0.1342813, 51.2414324, -0.1342813, 51.2414324 ], "geometry": { "type": "Point", "coordinates": [ -0.1342813, 51.2414324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30508575" }, "bbox": [ -0.1266126, 51.2408149, -0.1266126, 51.2408149 ], "geometry": { "type": "Point", "coordinates": [ -0.1266126, 51.2408149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30500263" }, "bbox": [ -0.1386127, 51.2399577, -0.1386127, 51.2399577 ], "geometry": { "type": "Point", "coordinates": [ -0.1386127, 51.2399577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30501771" }, "bbox": [ -0.1369461, 51.2405745, -0.1369461, 51.2405745 ], "geometry": { "type": "Point", "coordinates": [ -0.1369461, 51.2405745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30514002" }, "bbox": [ -0.1325546, 51.2439482, -0.1325546, 51.2439482 ], "geometry": { "type": "Point", "coordinates": [ -0.1325546, 51.2439482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29509477" }, "bbox": [ -0.1401705, 51.2414276, -0.1401705, 51.2414276 ], "geometry": { "type": "Point", "coordinates": [ -0.1401705, 51.2414276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94360003" }, "bbox": [ -0.6583185, 51.1160049, -0.6583185, 51.1160049 ], "geometry": { "type": "Point", "coordinates": [ -0.6583185, 51.1160049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24535404" }, "bbox": [ -0.2165249, 51.2628763, -0.2165249, 51.2628763 ], "geometry": { "type": "Point", "coordinates": [ -0.2165249, 51.2628763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39429749" }, "bbox": [ 0.0004956, 51.164507, 0.0004956, 51.164507 ], "geometry": { "type": "Point", "coordinates": [ 0.0004956, 51.164507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85425510" }, "bbox": [ -0.7777457, 51.1718122, -0.7777457, 51.1718122 ], "geometry": { "type": "Point", "coordinates": [ -0.7777457, 51.1718122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85426880" }, "bbox": [ -0.7754013, 51.1779974, -0.7754013, 51.1779974 ], "geometry": { "type": "Point", "coordinates": [ -0.7754013, 51.1779974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42527673" }, "bbox": [ 0.044305, 51.2553943, 0.044305, 51.2553943 ], "geometry": { "type": "Point", "coordinates": [ 0.044305, 51.2553943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84416471" }, "bbox": [ -0.7907626, 51.1683117, -0.7907626, 51.1683117 ], "geometry": { "type": "Point", "coordinates": [ -0.7907626, 51.1683117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84413552" }, "bbox": [ -0.7946973, 51.16679, -0.7946973, 51.16679 ], "geometry": { "type": "Point", "coordinates": [ -0.7946973, 51.16679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84416970" }, "bbox": [ -0.7901777, 51.1682847, -0.7901777, 51.1682847 ], "geometry": { "type": "Point", "coordinates": [ -0.7901777, 51.1682847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500792" }, "bbox": [ -0.3956976, 51.2464696, -0.3956976, 51.2464696 ], "geometry": { "type": "Point", "coordinates": [ -0.3956976, 51.2464696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12500172" }, "bbox": [ -0.3967063, 51.2448443, -0.3967063, 51.2448443 ], "geometry": { "type": "Point", "coordinates": [ -0.3967063, 51.2448443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04394586" }, "bbox": [ -0.5080504, 51.1484359, -0.5080504, 51.1484359 ], "geometry": { "type": "Point", "coordinates": [ -0.5080504, 51.1484359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26590624" }, "bbox": [ -0.1923404, 51.3183201, -0.1923404, 51.3183201 ], "geometry": { "type": "Point", "coordinates": [ -0.1923404, 51.3183201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26592537" }, "bbox": [ -0.1897703, 51.3193718, -0.1897703, 51.3193718 ], "geometry": { "type": "Point", "coordinates": [ -0.1897703, 51.3193718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26593828" }, "bbox": [ -0.1878557, 51.3185925, -0.1878557, 51.3185925 ], "geometry": { "type": "Point", "coordinates": [ -0.1878557, 51.3185925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27602472" }, "bbox": [ -0.1751526, 51.3306195, -0.1751526, 51.3306195 ], "geometry": { "type": "Point", "coordinates": [ -0.1751526, 51.3306195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451099" }, "bbox": [ -0.1533597, 51.1985276, -0.1533597, 51.1985276 ], "geometry": { "type": "Point", "coordinates": [ -0.1533597, 51.1985276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03734776" }, "bbox": [ -0.5120217, 51.4537121, -0.5120217, 51.4537121 ], "geometry": { "type": "Point", "coordinates": [ -0.5120217, 51.4537121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03746607" }, "bbox": [ -0.5094137, 51.4561835, -0.5094137, 51.4561835 ], "geometry": { "type": "Point", "coordinates": [ -0.5094137, 51.4561835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19390474" }, "bbox": [ -0.299822, 51.144909, -0.299822, 51.144909 ], "geometry": { "type": "Point", "coordinates": [ -0.299822, 51.144909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16391467" }, "bbox": [ -0.3412189, 51.1443892, -0.3412189, 51.1443892 ], "geometry": { "type": "Point", "coordinates": [ -0.3412189, 51.1443892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96338277" }, "bbox": [ -0.6186604, 51.0950475, -0.6186604, 51.0950475 ], "geometry": { "type": "Point", "coordinates": [ -0.6186604, 51.0950475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96338463" }, "bbox": [ -0.6186591, 51.0937826, -0.6186591, 51.0937826 ], "geometry": { "type": "Point", "coordinates": [ -0.6186591, 51.0937826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96337175" }, "bbox": [ -0.6203376, 51.0949387, -0.6203376, 51.0949387 ], "geometry": { "type": "Point", "coordinates": [ -0.6203376, 51.0949387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39580578" }, "bbox": [ -0.0060984, 51.3113225, -0.0060984, 51.3113225 ], "geometry": { "type": "Point", "coordinates": [ -0.0060984, 51.3113225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02493766" }, "bbox": [ -0.5348215, 51.237037, -0.5348215, 51.237037 ], "geometry": { "type": "Point", "coordinates": [ -0.5348215, 51.237037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02493959" }, "bbox": [ -0.5345502, 51.2363781, -0.5345502, 51.2363781 ], "geometry": { "type": "Point", "coordinates": [ -0.5345502, 51.2363781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02494150" }, "bbox": [ -0.5343119, 51.2355805, -0.5343119, 51.2355805 ], "geometry": { "type": "Point", "coordinates": [ -0.5343119, 51.2355805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02492945" }, "bbox": [ -0.5360693, 51.2351341, -0.5360693, 51.2351341 ], "geometry": { "type": "Point", "coordinates": [ -0.5360693, 51.2351341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40559754" }, "bbox": [ 0.0222437, 51.2820488, 0.0222437, 51.2820488 ], "geometry": { "type": "Point", "coordinates": [ 0.0222437, 51.2820488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41555828" }, "bbox": [ 0.0280994, 51.2789691, 0.0280994, 51.2789691 ], "geometry": { "type": "Point", "coordinates": [ 0.0280994, 51.2789691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41554050" }, "bbox": [ 0.0260286, 51.2810295, 0.0260286, 51.2810295 ], "geometry": { "type": "Point", "coordinates": [ 0.0260286, 51.2810295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37568745" }, "bbox": [ -0.0240724, 51.2904999, -0.0240724, 51.2904999 ], "geometry": { "type": "Point", "coordinates": [ -0.0240724, 51.2904999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03429281" }, "bbox": [ -0.5148, 51.1751428, -0.5148, 51.1751428 ], "geometry": { "type": "Point", "coordinates": [ -0.5148, 51.1751428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26458024" }, "bbox": [ -0.1870061, 51.1923001, -0.1870061, 51.1923001 ], "geometry": { "type": "Point", "coordinates": [ -0.1870061, 51.1923001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24579243" }, "bbox": [ -0.2095274, 51.3022993, -0.2095274, 51.3022993 ], "geometry": { "type": "Point", "coordinates": [ -0.2095274, 51.3022993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25571658" }, "bbox": [ -0.20579, 51.3037438, -0.20579, 51.3037438 ], "geometry": { "type": "Point", "coordinates": [ -0.20579, 51.3037438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29456577" }, "bbox": [ -0.145997, 51.1965514, -0.145997, 51.1965514 ], "geometry": { "type": "Point", "coordinates": [ -0.145997, 51.1965514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17443912" }, "bbox": [ -0.3216274, 51.1842241, -0.3216274, 51.1842241 ], "geometry": { "type": "Point", "coordinates": [ -0.3216274, 51.1842241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17435595" }, "bbox": [ -0.3194224, 51.1827269, -0.3194224, 51.1827269 ], "geometry": { "type": "Point", "coordinates": [ -0.3194224, 51.1827269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19417089" }, "bbox": [ -0.2896478, 51.1637075, -0.2896478, 51.1637075 ], "geometry": { "type": "Point", "coordinates": [ -0.2896478, 51.1637075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19412344" }, "bbox": [ -0.2960751, 51.1599791, -0.2960751, 51.1599791 ], "geometry": { "type": "Point", "coordinates": [ -0.2960751, 51.1599791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91502491" }, "bbox": [ -0.6935361, 51.250021, -0.6935361, 51.250021 ], "geometry": { "type": "Point", "coordinates": [ -0.6935361, 51.250021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29569563" }, "bbox": [ -0.1375031, 51.293923, -0.1375031, 51.293923 ], "geometry": { "type": "Point", "coordinates": [ -0.1375031, 51.293923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22396189" }, "bbox": [ -0.2484503, 51.1453642, -0.2484503, 51.1453642 ], "geometry": { "type": "Point", "coordinates": [ -0.2484503, 51.1453642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14396420" }, "bbox": [ -0.3627546, 51.1407452, -0.3627546, 51.1407452 ], "geometry": { "type": "Point", "coordinates": [ -0.3627546, 51.1407452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93452775" }, "bbox": [ -0.6665679, 51.20323, -0.6665679, 51.20323 ], "geometry": { "type": "Point", "coordinates": [ -0.6665679, 51.20323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33505470" }, "bbox": [ -0.0883461, 51.2398559, -0.0883461, 51.2398559 ], "geometry": { "type": "Point", "coordinates": [ -0.0883461, 51.2398559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11438507" }, "bbox": [ -0.4013581, 51.1758897, -0.4013581, 51.1758897 ], "geometry": { "type": "Point", "coordinates": [ -0.4013581, 51.1758897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93492091" }, "bbox": [ -0.6662853, 51.2408483, -0.6662853, 51.2408483 ], "geometry": { "type": "Point", "coordinates": [ -0.6662853, 51.2408483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14683897" }, "bbox": [ -0.3566296, 51.408077, -0.3566296, 51.408077 ], "geometry": { "type": "Point", "coordinates": [ -0.3566296, 51.408077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16632306" }, "bbox": [ -0.3316201, 51.3547101, -0.3316201, 51.3547101 ], "geometry": { "type": "Point", "coordinates": [ -0.3316201, 51.3547101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16633704" }, "bbox": [ -0.3294293, 51.3544894, -0.3294293, 51.3544894 ], "geometry": { "type": "Point", "coordinates": [ -0.3294293, 51.3544894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16630504" }, "bbox": [ -0.3350682, 51.3549288, -0.3350682, 51.3549288 ], "geometry": { "type": "Point", "coordinates": [ -0.3350682, 51.3549288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16625588" }, "bbox": [ -0.3289135, 51.3524744, -0.3289135, 51.3524744 ], "geometry": { "type": "Point", "coordinates": [ -0.3289135, 51.3524744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16622686" }, "bbox": [ -0.3320173, 51.3530398, -0.3320173, 51.3530398 ], "geometry": { "type": "Point", "coordinates": [ -0.3320173, 51.3530398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16622394" }, "bbox": [ -0.3320807, 51.3539807, -0.3320807, 51.3539807 ], "geometry": { "type": "Point", "coordinates": [ -0.3320807, 51.3539807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16624189" }, "bbox": [ -0.3295398, 51.352758, -0.3295398, 51.352758 ], "geometry": { "type": "Point", "coordinates": [ -0.3295398, 51.352758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16624898" }, "bbox": [ -0.3275732, 51.3539089, -0.3275732, 51.3539089 ], "geometry": { "type": "Point", "coordinates": [ -0.3275732, 51.3539089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16623795" }, "bbox": [ -0.3302428, 51.3537418, -0.3302428, 51.3537418 ], "geometry": { "type": "Point", "coordinates": [ -0.3302428, 51.3537418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86374621" }, "bbox": [ -0.7666394, 51.1274886, -0.7666394, 51.1274886 ], "geometry": { "type": "Point", "coordinates": [ -0.7666394, 51.1274886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19591781" }, "bbox": [ -0.2914206, 51.32499, -0.2914206, 51.32499 ], "geometry": { "type": "Point", "coordinates": [ -0.2914206, 51.32499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18617947" }, "bbox": [ -0.2960004, 51.3397845, -0.2960004, 51.3397845 ], "geometry": { "type": "Point", "coordinates": [ -0.2960004, 51.3397845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18618650" }, "bbox": [ -0.2949641, 51.3402247, -0.2949641, 51.3402247 ], "geometry": { "type": "Point", "coordinates": [ -0.2949641, 51.3402247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40429262" }, "bbox": [ 0.0144602, 51.1655463, 0.0144602, 51.1655463 ], "geometry": { "type": "Point", "coordinates": [ 0.0144602, 51.1655463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41424671" }, "bbox": [ 0.0217082, 51.1661801, 0.0217082, 51.1661801 ], "geometry": { "type": "Point", "coordinates": [ 0.0217082, 51.1661801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42436524" }, "bbox": [ 0.0389069, 51.1705954, 0.0389069, 51.1705954 ], "geometry": { "type": "Point", "coordinates": [ 0.0389069, 51.1705954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42434905" }, "bbox": [ 0.0369358, 51.1695087, 0.0369358, 51.1695087 ], "geometry": { "type": "Point", "coordinates": [ 0.0369358, 51.1695087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42434413" }, "bbox": [ 0.0356602, 51.1694926, 0.0356602, 51.1694926 ], "geometry": { "type": "Point", "coordinates": [ 0.0356602, 51.1694926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41568205" }, "bbox": [ 0.0324439, 51.285966, 0.0324439, 51.285966 ], "geometry": { "type": "Point", "coordinates": [ 0.0324439, 51.285966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07591631" }, "bbox": [ -0.4633175, 51.3226889, -0.4633175, 51.3226889 ], "geometry": { "type": "Point", "coordinates": [ -0.4633175, 51.3226889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07592644" }, "bbox": [ -0.4619833, 51.3239425, -0.4619833, 51.3239425 ], "geometry": { "type": "Point", "coordinates": [ -0.4619833, 51.3239425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08583361" }, "bbox": [ -0.4457169, 51.3155837, -0.4457169, 51.3155837 ], "geometry": { "type": "Point", "coordinates": [ -0.4457169, 51.3155837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08594040" }, "bbox": [ -0.4457704, 51.3234189, -0.4457704, 51.3234189 ], "geometry": { "type": "Point", "coordinates": [ -0.4457704, 51.3234189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97620499" }, "bbox": [ -0.6074053, 51.3578176, -0.6074053, 51.3578176 ], "geometry": { "type": "Point", "coordinates": [ -0.6074053, 51.3578176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96663560" }, "bbox": [ -0.6158704, 51.3902599, -0.6158704, 51.3902599 ], "geometry": { "type": "Point", "coordinates": [ -0.6158704, 51.3902599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99633746" }, "bbox": [ -0.5742401, 51.3613688, -0.5742401, 51.3613688 ], "geometry": { "type": "Point", "coordinates": [ -0.5742401, 51.3613688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97667954" }, "bbox": [ -0.5958302, 51.3894349, -0.5958302, 51.3894349 ], "geometry": { "type": "Point", "coordinates": [ -0.5958302, 51.3894349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99642401" }, "bbox": [ -0.5763378, 51.3675358, -0.5763378, 51.3675358 ], "geometry": { "type": "Point", "coordinates": [ -0.5763378, 51.3675358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96647884" }, "bbox": [ -0.6091811, 51.3747232, -0.6091811, 51.3747232 ], "geometry": { "type": "Point", "coordinates": [ -0.6091811, 51.3747232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21447692" }, "bbox": [ -0.2588211, 51.1906495, -0.2588211, 51.1906495 ], "geometry": { "type": "Point", "coordinates": [ -0.2588211, 51.1906495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21448537" }, "bbox": [ -0.2580761, 51.1855101, -0.2580761, 51.1855101 ], "geometry": { "type": "Point", "coordinates": [ -0.2580761, 51.1855101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39549518" }, "bbox": [ 0.0048057, 51.2695848, 0.0048057, 51.2695848 ], "geometry": { "type": "Point", "coordinates": [ 0.0048057, 51.2695848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39544612" }, "bbox": [ -0.0022868, 51.2691402, -0.0022868, 51.2691402 ], "geometry": { "type": "Point", "coordinates": [ -0.0022868, 51.2691402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39549717" }, "bbox": [ 0.0050781, 51.2693149, 0.0050781, 51.2693149 ], "geometry": { "type": "Point", "coordinates": [ 0.0050781, 51.2693149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88486643" }, "bbox": [ -0.7317795, 51.2276853, -0.7317795, 51.2276853 ], "geometry": { "type": "Point", "coordinates": [ -0.7317795, 51.2276853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88486557" }, "bbox": [ -0.7315465, 51.2293988, -0.7315465, 51.2293988 ], "geometry": { "type": "Point", "coordinates": [ -0.7315465, 51.2293988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07575185" }, "bbox": [ -0.4588645, 51.3094746, -0.4588645, 51.3094746 ], "geometry": { "type": "Point", "coordinates": [ -0.4588645, 51.3094746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97685659" }, "bbox": [ -0.5986601, 51.4081366, -0.5986601, 51.4081366 ], "geometry": { "type": "Point", "coordinates": [ -0.5986601, 51.4081366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10392662" }, "bbox": [ -0.424999, 51.145308, -0.424999, 51.145308 ], "geometry": { "type": "Point", "coordinates": [ -0.424999, 51.145308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22490699" }, "bbox": [ -0.2533205, 51.2360893, -0.2533205, 51.2360893 ], "geometry": { "type": "Point", "coordinates": [ -0.2533205, 51.2360893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06676435" }, "bbox": [ -0.4670815, 51.3955048, -0.4670815, 51.3955048 ], "geometry": { "type": "Point", "coordinates": [ -0.4670815, 51.3955048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06643739" }, "bbox": [ -0.4735243, 51.3685238, -0.4735243, 51.3685238 ], "geometry": { "type": "Point", "coordinates": [ -0.4735243, 51.3685238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06645024" }, "bbox": [ -0.4714688, 51.36729, -0.4714688, 51.36729 ], "geometry": { "type": "Point", "coordinates": [ -0.4714688, 51.36729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81452355" }, "bbox": [ -0.8386085, 51.2034858, -0.8386085, 51.2034858 ], "geometry": { "type": "Point", "coordinates": [ -0.8386085, 51.2034858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30453199" }, "bbox": [ -0.1365149, 51.1983939, -0.1365149, 51.1983939 ], "geometry": { "type": "Point", "coordinates": [ -0.1365149, 51.1983939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30452499" }, "bbox": [ -0.1373229, 51.1985302, -0.1373229, 51.1985302 ], "geometry": { "type": "Point", "coordinates": [ -0.1373229, 51.1985302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20518254" }, "bbox": [ -0.2700952, 51.2502404, -0.2700952, 51.2502404 ], "geometry": { "type": "Point", "coordinates": [ -0.2700952, 51.2502404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20519048" }, "bbox": [ -0.2689609, 51.2497331, -0.2689609, 51.2497331 ], "geometry": { "type": "Point", "coordinates": [ -0.2689609, 51.2497331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85429228" }, "bbox": [ -0.7720855, 51.1733455, -0.7720855, 51.1733455 ], "geometry": { "type": "Point", "coordinates": [ -0.7720855, 51.1733455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82404080" }, "bbox": [ -0.8228807, 51.1607181, -0.8228807, 51.1607181 ], "geometry": { "type": "Point", "coordinates": [ -0.8228807, 51.1607181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82403583" }, "bbox": [ -0.8236193, 51.1608612, -0.8236193, 51.1608612 ], "geometry": { "type": "Point", "coordinates": [ -0.8236193, 51.1608612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82404977" }, "bbox": [ -0.8219085, 51.1602994, -0.8219085, 51.1602994 ], "geometry": { "type": "Point", "coordinates": [ -0.8219085, 51.1602994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84429304" }, "bbox": [ -0.7860924, 51.1712835, -0.7860924, 51.1712835 ], "geometry": { "type": "Point", "coordinates": [ -0.7860924, 51.1712835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665404" }, "bbox": [ -0.5279422, 51.3840092, -0.5279422, 51.3840092 ], "geometry": { "type": "Point", "coordinates": [ -0.5279422, 51.3840092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85449786" }, "bbox": [ -0.7711084, 51.196552, -0.7711084, 51.196552 ], "geometry": { "type": "Point", "coordinates": [ -0.7711084, 51.196552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86446639" }, "bbox": [ -0.761608, 51.1922072, -0.761608, 51.1922072 ], "geometry": { "type": "Point", "coordinates": [ -0.761608, 51.1922072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86444351" }, "bbox": [ -0.7640983, 51.1931072, -0.7640983, 51.1931072 ], "geometry": { "type": "Point", "coordinates": [ -0.7640983, 51.1931072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86445855" }, "bbox": [ -0.7624106, 51.1935917, -0.7624106, 51.1935917 ], "geometry": { "type": "Point", "coordinates": [ -0.7624106, 51.1935917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86447106" }, "bbox": [ -0.7604998, 51.189175, -0.7604998, 51.189175 ], "geometry": { "type": "Point", "coordinates": [ -0.7604998, 51.189175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08485979" }, "bbox": [ -0.4463715, 51.2281139, -0.4463715, 51.2281139 ], "geometry": { "type": "Point", "coordinates": [ -0.4463715, 51.2281139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94574973" }, "bbox": [ -0.6462928, 51.3104495, -0.6462928, 51.3104495 ], "geometry": { "type": "Point", "coordinates": [ -0.6462928, 51.3104495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85481255" }, "bbox": [ -0.7823706, 51.2296662, -0.7823706, 51.2296662 ], "geometry": { "type": "Point", "coordinates": [ -0.7823706, 51.2296662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43400828" }, "bbox": [ 0.0439926, 51.1439687, 0.0439926, 51.1439687 ], "geometry": { "type": "Point", "coordinates": [ 0.0439926, 51.1439687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43402442" }, "bbox": [ 0.0463487, 51.145101, 0.0463487, 51.145101 ], "geometry": { "type": "Point", "coordinates": [ 0.0463487, 51.145101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43400444" }, "bbox": [ 0.0434845, 51.1453989, 0.0434845, 51.1453989 ], "geometry": { "type": "Point", "coordinates": [ 0.0434845, 51.1453989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35549999" }, "bbox": [ -0.0515354, 51.2778679, -0.0515354, 51.2778679 ], "geometry": { "type": "Point", "coordinates": [ -0.0515354, 51.2778679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35548486" }, "bbox": [ -0.0535209, 51.2764421, -0.0535209, 51.2764421 ], "geometry": { "type": "Point", "coordinates": [ -0.0535209, 51.2764421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36535083" }, "bbox": [ -0.0448442, 51.2673648, -0.0448442, 51.2673648 ], "geometry": { "type": "Point", "coordinates": [ -0.0448442, 51.2673648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36545195" }, "bbox": [ -0.0442197, 51.2769459, -0.0442197, 51.2769459 ], "geometry": { "type": "Point", "coordinates": [ -0.0442197, 51.2769459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473901" }, "bbox": [ -0.1920218, 51.2083329, -0.1920218, 51.2083329 ], "geometry": { "type": "Point", "coordinates": [ -0.1920218, 51.2083329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20461750" }, "bbox": [ -0.2806893, 51.2053944, -0.2806893, 51.2053944 ], "geometry": { "type": "Point", "coordinates": [ -0.2806893, 51.2053944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15450960" }, "bbox": [ -0.3539359, 51.1979561, -0.3539359, 51.1979561 ], "geometry": { "type": "Point", "coordinates": [ -0.3539359, 51.1979561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14458932" }, "bbox": [ -0.3568445, 51.1956558, -0.3568445, 51.1956558 ], "geometry": { "type": "Point", "coordinates": [ -0.3568445, 51.1956558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14459474" }, "bbox": [ -0.3562564, 51.1994308, -0.3562564, 51.1994308 ], "geometry": { "type": "Point", "coordinates": [ -0.3562564, 51.1994308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19637918" }, "bbox": [ -0.2809236, 51.3551887, -0.2809236, 51.3551887 ], "geometry": { "type": "Point", "coordinates": [ -0.2809236, 51.3551887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19638431" }, "bbox": [ -0.2811845, 51.355977, -0.2811845, 51.355977 ], "geometry": { "type": "Point", "coordinates": [ -0.2811845, 51.355977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19634717" }, "bbox": [ -0.2856235, 51.3550026, -0.2856235, 51.3550026 ], "geometry": { "type": "Point", "coordinates": [ -0.2856235, 51.3550026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19636710" }, "bbox": [ -0.2829574, 51.3543981, -0.2829574, 51.3543981 ], "geometry": { "type": "Point", "coordinates": [ -0.2829574, 51.3543981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36437470" }, "bbox": [ -0.045179, 51.1762248, -0.045179, 51.1762248 ], "geometry": { "type": "Point", "coordinates": [ -0.045179, 51.1762248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22415881" }, "bbox": [ -0.2476688, 51.1625076, -0.2476688, 51.1625076 ], "geometry": { "type": "Point", "coordinates": [ -0.2476688, 51.1625076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22419294" }, "bbox": [ -0.2432283, 51.1635189, -0.2432283, 51.1635189 ], "geometry": { "type": "Point", "coordinates": [ -0.2432283, 51.1635189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22426363" }, "bbox": [ -0.2475073, 51.1698636, -0.2475073, 51.1698636 ], "geometry": { "type": "Point", "coordinates": [ -0.2475073, 51.1698636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08459350" }, "bbox": [ -0.4422069, 51.1984131, -0.4422069, 51.1984131 ], "geometry": { "type": "Point", "coordinates": [ -0.4422069, 51.1984131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30491943" }, "bbox": [ -0.1367369, 51.2293018, -0.1367369, 51.2293018 ], "geometry": { "type": "Point", "coordinates": [ -0.1367369, 51.2293018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30545212" }, "bbox": [ -0.1310156, 51.2718927, -0.1310156, 51.2718927 ], "geometry": { "type": "Point", "coordinates": [ -0.1310156, 51.2718927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495133" }, "bbox": [ -0.2324344, 51.2298595, -0.2324344, 51.2298595 ], "geometry": { "type": "Point", "coordinates": [ -0.2324344, 51.2298595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05370766" }, "bbox": [ -0.4997475, 51.1286052, -0.4997475, 51.1286052 ], "geometry": { "type": "Point", "coordinates": [ -0.4997475, 51.1286052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02483102" }, "bbox": [ -0.5367221, 51.2221563, -0.5367221, 51.2221563 ], "geometry": { "type": "Point", "coordinates": [ -0.5367221, 51.2221563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02472887" }, "bbox": [ -0.5365202, 51.2208804, -0.5365202, 51.2208804 ], "geometry": { "type": "Point", "coordinates": [ -0.5365202, 51.2208804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02471890" }, "bbox": [ -0.5381533, 51.221226, -0.5381533, 51.221226 ], "geometry": { "type": "Point", "coordinates": [ -0.5381533, 51.221226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02663936" }, "bbox": [ -0.5310875, 51.3865575, -0.5310875, 51.3865575 ], "geometry": { "type": "Point", "coordinates": [ -0.5310875, 51.3865575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03368410" }, "bbox": [ -0.5178631, 51.1148452, -0.5178631, 51.1148452 ], "geometry": { "type": "Point", "coordinates": [ -0.5178631, 51.1148452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10363874" }, "bbox": [ -0.4240964, 51.1194783, -0.4240964, 51.1194783 ], "geometry": { "type": "Point", "coordinates": [ -0.4240964, 51.1194783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07589205" }, "bbox": [ -0.4530018, 51.311347, -0.4530018, 51.311347 ], "geometry": { "type": "Point", "coordinates": [ -0.4530018, 51.311347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07586414" }, "bbox": [ -0.4583128, 51.3132049, -0.4583128, 51.3132049 ], "geometry": { "type": "Point", "coordinates": [ -0.4583128, 51.3132049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00354392" }, "bbox": [ -0.5666045, 51.1138451, -0.5666045, 51.1138451 ], "geometry": { "type": "Point", "coordinates": [ -0.5666045, 51.1138451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06440792" }, "bbox": [ -0.4832751, 51.1937064, -0.4832751, 51.1937064 ], "geometry": { "type": "Point", "coordinates": [ -0.4832751, 51.1937064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06441179" }, "bbox": [ -0.482881, 51.192499, -0.482881, 51.192499 ], "geometry": { "type": "Point", "coordinates": [ -0.482881, 51.192499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05449876" }, "bbox": [ -0.4848014, 51.1923605, -0.4848014, 51.1923605 ], "geometry": { "type": "Point", "coordinates": [ -0.4848014, 51.1923605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20467979" }, "bbox": [ -0.2721731, 51.207644, -0.2721731, 51.207644 ], "geometry": { "type": "Point", "coordinates": [ -0.2721731, 51.207644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20467581" }, "bbox": [ -0.2727829, 51.207798, -0.2727829, 51.207798 ], "geometry": { "type": "Point", "coordinates": [ -0.2727829, 51.207798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20506488" }, "bbox": [ -0.272957, 51.2444139, -0.272957, 51.2444139 ], "geometry": { "type": "Point", "coordinates": [ -0.272957, 51.2444139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24461440" }, "bbox": [ -0.2243407, 51.2034549, -0.2243407, 51.2034549 ], "geometry": { "type": "Point", "coordinates": [ -0.2243407, 51.2034549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23456830" }, "bbox": [ -0.2314229, 51.1936075, -0.2314229, 51.1936075 ], "geometry": { "type": "Point", "coordinates": [ -0.2314229, 51.1936075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23457038" }, "bbox": [ -0.230951, 51.1941317, -0.230951, 51.1941317 ], "geometry": { "type": "Point", "coordinates": [ -0.230951, 51.1941317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20620712" }, "bbox": [ -0.2774875, 51.3454618, -0.2774875, 51.3454618 ], "geometry": { "type": "Point", "coordinates": [ -0.2774875, 51.3454618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20621611" }, "bbox": [ -0.2761982, 51.3453563, -0.2761982, 51.3453563 ], "geometry": { "type": "Point", "coordinates": [ -0.2761982, 51.3453563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04443742" }, "bbox": [ -0.5077057, 51.1896058, -0.5077057, 51.1896058 ], "geometry": { "type": "Point", "coordinates": [ -0.5077057, 51.1896058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38483122" }, "bbox": [ -0.0209702, 51.216598, -0.0209702, 51.216598 ], "geometry": { "type": "Point", "coordinates": [ -0.0209702, 51.216598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01541651" }, "bbox": [ -0.5508452, 51.2808974, -0.5508452, 51.2808974 ], "geometry": { "type": "Point", "coordinates": [ -0.5508452, 51.2808974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88560112" }, "bbox": [ -0.7389137, 51.297338, -0.7389137, 51.297338 ], "geometry": { "type": "Point", "coordinates": [ -0.7389137, 51.297338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88551034" }, "bbox": [ -0.7371878, 51.2899853, -0.7371878, 51.2899853 ], "geometry": { "type": "Point", "coordinates": [ -0.7371878, 51.2899853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87569999" }, "bbox": [ -0.7389742, 51.3042739, -0.7389742, 51.3042739 ], "geometry": { "type": "Point", "coordinates": [ -0.7389742, 51.3042739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87567895" }, "bbox": [ -0.7429701, 51.3055908, -0.7429701, 51.3055908 ], "geometry": { "type": "Point", "coordinates": [ -0.7429701, 51.3055908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11560749" }, "bbox": [ -0.408477, 51.2961324, -0.408477, 51.2961324 ], "geometry": { "type": "Point", "coordinates": [ -0.408477, 51.2961324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11560133" }, "bbox": [ -0.4089293, 51.2954989, -0.4089293, 51.2954989 ], "geometry": { "type": "Point", "coordinates": [ -0.4089293, 51.2954989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10566823" }, "bbox": [ -0.4111452, 51.2957255, -0.4111452, 51.2957255 ], "geometry": { "type": "Point", "coordinates": [ -0.4111452, 51.2957255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31422352" }, "bbox": [ -0.124451, 51.166832, -0.124451, 51.166832 ], "geometry": { "type": "Point", "coordinates": [ -0.124451, 51.166832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93527426" }, "bbox": [ -0.658452, 51.2612186, -0.658452, 51.2612186 ], "geometry": { "type": "Point", "coordinates": [ -0.658452, 51.2612186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446390" }, "bbox": [ -0.1320488, 51.188485, -0.1320488, 51.188485 ], "geometry": { "type": "Point", "coordinates": [ -0.1320488, 51.188485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447863" }, "bbox": [ -0.1299963, 51.1861145, -0.1299963, 51.1861145 ], "geometry": { "type": "Point", "coordinates": [ -0.1299963, 51.1861145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446487" }, "bbox": [ -0.1323363, 51.1876499, -0.1323363, 51.1876499 ], "geometry": { "type": "Point", "coordinates": [ -0.1323363, 51.1876499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30447770" }, "bbox": [ -0.1304693, 51.1865401, -0.1304693, 51.1865401 ], "geometry": { "type": "Point", "coordinates": [ -0.1304693, 51.1865401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08373017" }, "bbox": [ -0.4527076, 51.1238167, -0.4527076, 51.1238167 ], "geometry": { "type": "Point", "coordinates": [ -0.4527076, 51.1238167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18406456" }, "bbox": [ -0.3048951, 51.1519516, -0.3048951, 51.1519516 ], "geometry": { "type": "Point", "coordinates": [ -0.3048951, 51.1519516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08448297" }, "bbox": [ -0.4438211, 51.1938681, -0.4438211, 51.1938681 ], "geometry": { "type": "Point", "coordinates": [ -0.4438211, 51.1938681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03399528" }, "bbox": [ -0.5153829, 51.1431362, -0.5153829, 51.1431362 ], "geometry": { "type": "Point", "coordinates": [ -0.5153829, 51.1431362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28547664" }, "bbox": [ -0.1554011, 51.2762713, -0.1554011, 51.2762713 ], "geometry": { "type": "Point", "coordinates": [ -0.1554011, 51.2762713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28547606" }, "bbox": [ -0.1556122, 51.2710197, -0.1556122, 51.2710197 ], "geometry": { "type": "Point", "coordinates": [ -0.1556122, 51.2710197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07448268" }, "bbox": [ -0.4584317, 51.1912406, -0.4584317, 51.1912406 ], "geometry": { "type": "Point", "coordinates": [ -0.4584317, 51.1912406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08452397" }, "bbox": [ -0.4522269, 51.2024846, -0.4522269, 51.2024846 ], "geometry": { "type": "Point", "coordinates": [ -0.4522269, 51.2024846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29473695" }, "bbox": [ -0.1500606, 51.2165542, -0.1500606, 51.2165542 ], "geometry": { "type": "Point", "coordinates": [ -0.1500606, 51.2165542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494708" }, "bbox": [ -0.1470262, 51.2264293, -0.1470262, 51.2264293 ], "geometry": { "type": "Point", "coordinates": [ -0.1470262, 51.2264293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40536545" }, "bbox": [ 0.0143745, 51.2629778, 0.0143745, 51.2629778 ], "geometry": { "type": "Point", "coordinates": [ 0.0143745, 51.2629778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13467791" }, "bbox": [ -0.3726672, 51.2101912, -0.3726672, 51.2101912 ], "geometry": { "type": "Point", "coordinates": [ -0.3726672, 51.2101912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30525190" }, "bbox": [ -0.1307689, 51.2603809, -0.1307689, 51.2603809 ], "geometry": { "type": "Point", "coordinates": [ -0.1307689, 51.2603809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30524475" }, "bbox": [ -0.1318337, 51.2590423, -0.1318337, 51.2590423 ], "geometry": { "type": "Point", "coordinates": [ -0.1318337, 51.2590423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30525367" }, "bbox": [ -0.1304108, 51.258478, -0.1304108, 51.258478 ], "geometry": { "type": "Point", "coordinates": [ -0.1304108, 51.258478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09589316" }, "bbox": [ -0.4240852, 51.3121075, -0.4240852, 51.3121075 ], "geometry": { "type": "Point", "coordinates": [ -0.4240852, 51.3121075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21517346" }, "bbox": [ -0.2572229, 51.2491929, -0.2572229, 51.2491929 ], "geometry": { "type": "Point", "coordinates": [ -0.2572229, 51.2491929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33447078" }, "bbox": [ -0.0881356, 51.1868052, -0.0881356, 51.1868052 ], "geometry": { "type": "Point", "coordinates": [ -0.0881356, 51.1868052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81463321" }, "bbox": [ -0.8391793, 51.2089051, -0.8391793, 51.2089051 ], "geometry": { "type": "Point", "coordinates": [ -0.8391793, 51.2089051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81464115" }, "bbox": [ -0.835986, 51.208754, -0.835986, 51.208754 ], "geometry": { "type": "Point", "coordinates": [ -0.835986, 51.208754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15408443" }, "bbox": [ -0.3449952, 51.1514014, -0.3449952, 51.1514014 ], "geometry": { "type": "Point", "coordinates": [ -0.3449952, 51.1514014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25422188" }, "bbox": [ -0.2106933, 51.1715115, -0.2106933, 51.1715115 ], "geometry": { "type": "Point", "coordinates": [ -0.2106933, 51.1715115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24482037" }, "bbox": [ -0.222911, 51.2210103, -0.222911, 51.2210103 ], "geometry": { "type": "Point", "coordinates": [ -0.222911, 51.2210103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20404895" }, "bbox": [ -0.2780752, 51.1548359, -0.2780752, 51.1548359 ], "geometry": { "type": "Point", "coordinates": [ -0.2780752, 51.1548359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12399298" }, "bbox": [ -0.3868263, 51.1480792, -0.3868263, 51.1480792 ], "geometry": { "type": "Point", "coordinates": [ -0.3868263, 51.1480792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13376895" }, "bbox": [ -0.3771055, 51.1293579, -0.3771055, 51.1293579 ], "geometry": { "type": "Point", "coordinates": [ -0.3771055, 51.1293579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31519067" }, "bbox": [ -0.1116096, 51.2488705, -0.1116096, 51.2488705 ], "geometry": { "type": "Point", "coordinates": [ -0.1116096, 51.2488705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30467344" }, "bbox": [ -0.1300656, 51.2022671, -0.1300656, 51.2022671 ], "geometry": { "type": "Point", "coordinates": [ -0.1300656, 51.2022671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30466178" }, "bbox": [ -0.1316395, 51.2053173, -0.1316395, 51.2053173 ], "geometry": { "type": "Point", "coordinates": [ -0.1316395, 51.2053173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05410008" }, "bbox": [ -0.5000183, 51.1593668, -0.5000183, 51.1593668 ], "geometry": { "type": "Point", "coordinates": [ -0.5000183, 51.1593668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17653861" }, "bbox": [ -0.3147684, 51.3773558, -0.3147684, 51.3773558 ], "geometry": { "type": "Point", "coordinates": [ -0.3147684, 51.3773558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09420517" }, "bbox": [ -0.4415264, 51.1684595, -0.4415264, 51.1684595 ], "geometry": { "type": "Point", "coordinates": [ -0.4415264, 51.1684595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96366896" }, "bbox": [ -0.6200151, 51.123749, -0.6200151, 51.123749 ], "geometry": { "type": "Point", "coordinates": [ -0.6200151, 51.123749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369736" }, "bbox": [ -0.5586856, 51.117697, -0.5586856, 51.117697 ], "geometry": { "type": "Point", "coordinates": [ -0.5586856, 51.117697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12564386" }, "bbox": [ -0.3886445, 51.2998855, -0.3886445, 51.2998855 ], "geometry": { "type": "Point", "coordinates": [ -0.3886445, 51.2998855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12563183" }, "bbox": [ -0.3903599, 51.2995611, -0.3903599, 51.2995611 ], "geometry": { "type": "Point", "coordinates": [ -0.3903599, 51.2995611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98561739" }, "bbox": [ -0.5934344, 51.2983383, -0.5934344, 51.2983383 ], "geometry": { "type": "Point", "coordinates": [ -0.5934344, 51.2983383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04384643" }, "bbox": [ -0.508262, 51.1356177, -0.508262, 51.1356177 ], "geometry": { "type": "Point", "coordinates": [ -0.508262, 51.1356177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22535025" }, "bbox": [ -0.2455236, 51.2653314, -0.2455236, 51.2653314 ], "geometry": { "type": "Point", "coordinates": [ -0.2455236, 51.2653314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39422149" }, "bbox": [ -0.0106887, 51.1647929, -0.0106887, 51.1647929 ], "geometry": { "type": "Point", "coordinates": [ -0.0106887, 51.1647929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34412399" }, "bbox": [ -0.0817857, 51.1611734, -0.0817857, 51.1611734 ], "geometry": { "type": "Point", "coordinates": [ -0.0817857, 51.1611734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406503" }, "bbox": [ -0.5335359, 51.1503145, -0.5335359, 51.1503145 ], "geometry": { "type": "Point", "coordinates": [ -0.5335359, 51.1503145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93627074" }, "bbox": [ -0.6556363, 51.3560849, -0.6556363, 51.3560849 ], "geometry": { "type": "Point", "coordinates": [ -0.6556363, 51.3560849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93625875" }, "bbox": [ -0.6573227, 51.3561905, -0.6573227, 51.3561905 ], "geometry": { "type": "Point", "coordinates": [ -0.6573227, 51.3561905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20516163" }, "bbox": [ -0.2736864, 51.2509497, -0.2736864, 51.2509497 ], "geometry": { "type": "Point", "coordinates": [ -0.2736864, 51.2509497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14572538" }, "bbox": [ -0.3624134, 51.3041098, -0.3624134, 51.3041098 ], "geometry": { "type": "Point", "coordinates": [ -0.3624134, 51.3041098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21424233" }, "bbox": [ -0.2646964, 51.1673109, -0.2646964, 51.1673109 ], "geometry": { "type": "Point", "coordinates": [ -0.2646964, 51.1673109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02561922" }, "bbox": [ -0.535448, 51.2959683, -0.535448, 51.2959683 ], "geometry": { "type": "Point", "coordinates": [ -0.535448, 51.2959683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92356194" }, "bbox": [ -0.6785641, 51.1151068, -0.6785641, 51.1151068 ], "geometry": { "type": "Point", "coordinates": [ -0.6785641, 51.1151068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99355641" }, "bbox": [ -0.5789154, 51.1093047, -0.5789154, 51.1093047 ], "geometry": { "type": "Point", "coordinates": [ -0.5789154, 51.1093047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21538603" }, "bbox": [ -0.2548056, 51.2634939, -0.2548056, 51.2634939 ], "geometry": { "type": "Point", "coordinates": [ -0.2548056, 51.2634939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06669522" }, "bbox": [ -0.4641788, 51.3865007, -0.4641788, 51.3865007 ], "geometry": { "type": "Point", "coordinates": [ -0.4641788, 51.3865007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33468385" }, "bbox": [ -0.0857077, 51.2052254, -0.0857077, 51.2052254 ], "geometry": { "type": "Point", "coordinates": [ -0.0857077, 51.2052254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33469887" }, "bbox": [ -0.0841319, 51.2057071, -0.0841319, 51.2057071 ], "geometry": { "type": "Point", "coordinates": [ -0.0841319, 51.2057071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99378486" }, "bbox": [ -0.5744725, 51.131216, -0.5744725, 51.131216 ], "geometry": { "type": "Point", "coordinates": [ -0.5744725, 51.131216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32507127" }, "bbox": [ -0.1004922, 51.2362359, -0.1004922, 51.2362359 ], "geometry": { "type": "Point", "coordinates": [ -0.1004922, 51.2362359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12534759" }, "bbox": [ -0.3891585, 51.2704588, -0.3891585, 51.2704588 ], "geometry": { "type": "Point", "coordinates": [ -0.3891585, 51.2704588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82393672" }, "bbox": [ -0.8237798, 51.1508945, -0.8237798, 51.1508945 ], "geometry": { "type": "Point", "coordinates": [ -0.8237798, 51.1508945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81409174" }, "bbox": [ -0.8299241, 51.1601229, -0.8299241, 51.1601229 ], "geometry": { "type": "Point", "coordinates": [ -0.8299241, 51.1601229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92369985" }, "bbox": [ -0.6725599, 51.123466, -0.6725599, 51.123466 ], "geometry": { "type": "Point", "coordinates": [ -0.6725599, 51.123466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92369978" }, "bbox": [ -0.6724095, 51.1226882, -0.6724095, 51.1226882 ], "geometry": { "type": "Point", "coordinates": [ -0.6724095, 51.1226882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09453754" }, "bbox": [ -0.4359861, 51.1986267, -0.4359861, 51.1986267 ], "geometry": { "type": "Point", "coordinates": [ -0.4359861, 51.1986267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11433409" }, "bbox": [ -0.4085276, 51.1763415, -0.4085276, 51.1763415 ], "geometry": { "type": "Point", "coordinates": [ -0.4085276, 51.1763415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15486405" }, "bbox": [ -0.3459014, 51.2195647, -0.3459014, 51.2195647 ], "geometry": { "type": "Point", "coordinates": [ -0.3459014, 51.2195647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23492416" }, "bbox": [ -0.2363009, 51.2284057, -0.2363009, 51.2284057 ], "geometry": { "type": "Point", "coordinates": [ -0.2363009, 51.2284057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96329583" }, "bbox": [ -0.6169705, 51.0866321, -0.6169705, 51.0866321 ], "geometry": { "type": "Point", "coordinates": [ -0.6169705, 51.0866321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42497884" }, "bbox": [ 0.0433547, 51.2300532, 0.0433547, 51.2300532 ], "geometry": { "type": "Point", "coordinates": [ 0.0433547, 51.2300532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90321571" }, "bbox": [ -0.7139691, 51.0867952, -0.7139691, 51.0867952 ], "geometry": { "type": "Point", "coordinates": [ -0.7139691, 51.0867952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02434076" }, "bbox": [ -0.5362255, 51.1838409, -0.5362255, 51.1838409 ], "geometry": { "type": "Point", "coordinates": [ -0.5362255, 51.1838409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02435086" }, "bbox": [ -0.5348565, 51.1846288, -0.5348565, 51.1846288 ], "geometry": { "type": "Point", "coordinates": [ -0.5348565, 51.1846288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97440708" }, "bbox": [ -0.6125331, 51.1876901, -0.6125331, 51.1876901 ], "geometry": { "type": "Point", "coordinates": [ -0.6125331, 51.1876901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26460402" }, "bbox": [ -0.1965409, 51.1997821, -0.1965409, 51.1997821 ], "geometry": { "type": "Point", "coordinates": [ -0.1965409, 51.1997821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06423341" }, "bbox": [ -0.4795145, 51.1707893, -0.4795145, 51.1707893 ], "geometry": { "type": "Point", "coordinates": [ -0.4795145, 51.1707893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88431216" }, "bbox": [ -0.7407076, 51.180828, -0.7407076, 51.180828 ], "geometry": { "type": "Point", "coordinates": [ -0.7407076, 51.180828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408403" }, "bbox": [ -0.2591333, 51.1464168, -0.2591333, 51.1464168 ], "geometry": { "type": "Point", "coordinates": [ -0.2591333, 51.1464168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21406212" }, "bbox": [ -0.2616329, 51.1470356, -0.2616329, 51.1470356 ], "geometry": { "type": "Point", "coordinates": [ -0.2616329, 51.1470356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14424189" }, "bbox": [ -0.3648615, 51.1739032, -0.3648615, 51.1739032 ], "geometry": { "type": "Point", "coordinates": [ -0.3648615, 51.1739032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95373207" }, "bbox": [ -0.638956, 51.1250619, -0.638956, 51.1250619 ], "geometry": { "type": "Point", "coordinates": [ -0.638956, 51.1250619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95374106" }, "bbox": [ -0.6379731, 51.1250264, -0.6379731, 51.1250264 ], "geometry": { "type": "Point", "coordinates": [ -0.6379731, 51.1250264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14478777" }, "bbox": [ -0.3569787, 51.2175629, -0.3569787, 51.2175629 ], "geometry": { "type": "Point", "coordinates": [ -0.3569787, 51.2175629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28420608" }, "bbox": [ -0.169102, 51.1634316, -0.169102, 51.1634316 ], "geometry": { "type": "Point", "coordinates": [ -0.169102, 51.1634316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23494574" }, "bbox": [ -0.2331014, 51.2335545, -0.2331014, 51.2335545 ], "geometry": { "type": "Point", "coordinates": [ -0.2331014, 51.2335545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06348037" }, "bbox": [ -0.4765255, 51.0988431, -0.4765255, 51.0988431 ], "geometry": { "type": "Point", "coordinates": [ -0.4765255, 51.0988431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06345254" }, "bbox": [ -0.4799872, 51.1003115, -0.4799872, 51.1003115 ], "geometry": { "type": "Point", "coordinates": [ -0.4799872, 51.1003115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06347735" }, "bbox": [ -0.4763845, 51.0985526, -0.4763845, 51.0985526 ], "geometry": { "type": "Point", "coordinates": [ -0.4763845, 51.0985526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21565962" }, "bbox": [ -0.2573917, 51.2958108, -0.2573917, 51.2958108 ], "geometry": { "type": "Point", "coordinates": [ -0.2573917, 51.2958108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04504667" }, "bbox": [ -0.5053305, 51.2454031, -0.5053305, 51.2454031 ], "geometry": { "type": "Point", "coordinates": [ -0.5053305, 51.2454031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37473216" }, "bbox": [ -0.0355021, 51.2072329, -0.0355021, 51.2072329 ], "geometry": { "type": "Point", "coordinates": [ -0.0355021, 51.2072329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37472921" }, "bbox": [ -0.0359466, 51.2076461, -0.0359466, 51.2076461 ], "geometry": { "type": "Point", "coordinates": [ -0.0359466, 51.2076461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86464519" }, "bbox": [ -0.7623384, 51.2075758, -0.7623384, 51.2075758 ], "geometry": { "type": "Point", "coordinates": [ -0.7623384, 51.2075758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30502801" }, "bbox": [ -0.1352586, 51.2343748, -0.1352586, 51.2343748 ], "geometry": { "type": "Point", "coordinates": [ -0.1352586, 51.2343748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95596855" }, "bbox": [ -0.6280852, 51.3270624, -0.6280852, 51.3270624 ], "geometry": { "type": "Point", "coordinates": [ -0.6280852, 51.3270624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34509056" }, "bbox": [ -0.0687272, 51.2382895, -0.0687272, 51.2382895 ], "geometry": { "type": "Point", "coordinates": [ -0.0687272, 51.2382895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94589993" }, "bbox": [ -0.6380717, 51.3216384, -0.6380717, 51.3216384 ], "geometry": { "type": "Point", "coordinates": [ -0.6380717, 51.3216384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95590200" }, "bbox": [ -0.6379703, 51.3222326, -0.6379703, 51.3222326 ], "geometry": { "type": "Point", "coordinates": [ -0.6379703, 51.3222326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05466699" }, "bbox": [ -0.4887361, 51.2123234, -0.4887361, 51.2123234 ], "geometry": { "type": "Point", "coordinates": [ -0.4887361, 51.2123234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89608737" }, "bbox": [ -0.7109597, 51.3356323, -0.7109597, 51.3356323 ], "geometry": { "type": "Point", "coordinates": [ -0.7109597, 51.3356323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89591258" }, "bbox": [ -0.7222891, 51.3283224, -0.7222891, 51.3283224 ], "geometry": { "type": "Point", "coordinates": [ -0.7222891, 51.3283224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89598293" }, "bbox": [ -0.7120416, 51.331577, -0.7120416, 51.331577 ], "geometry": { "type": "Point", "coordinates": [ -0.7120416, 51.331577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03540974" }, "bbox": [ -0.523228, 51.2824965, -0.523228, 51.2824965 ], "geometry": { "type": "Point", "coordinates": [ -0.523228, 51.2824965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02538745" }, "bbox": [ -0.5268014, 51.270778, -0.5268014, 51.270778 ], "geometry": { "type": "Point", "coordinates": [ -0.5268014, 51.270778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02538037" }, "bbox": [ -0.5278633, 51.2702327, -0.5278633, 51.2702327 ], "geometry": { "type": "Point", "coordinates": [ -0.5278633, 51.2702327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31539568" }, "bbox": [ -0.1106139, 51.2668822, -0.1106139, 51.2668822 ], "geometry": { "type": "Point", "coordinates": [ -0.1106139, 51.2668822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03439418" }, "bbox": [ -0.5143597, 51.1784179, -0.5143597, 51.1784179 ], "geometry": { "type": "Point", "coordinates": [ -0.5143597, 51.1784179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35402025" }, "bbox": [ -0.0691055, 51.1455636, -0.0691055, 51.1455636 ], "geometry": { "type": "Point", "coordinates": [ -0.0691055, 51.1455636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23619091" }, "bbox": [ -0.2225052, 51.3425905, -0.2225052, 51.3425905 ], "geometry": { "type": "Point", "coordinates": [ -0.2225052, 51.3425905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23499476" }, "bbox": [ -0.2262038, 51.2336448, -0.2262038, 51.2336448 ], "geometry": { "type": "Point", "coordinates": [ -0.2262038, 51.2336448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89383480" }, "bbox": [ -0.7243324, 51.1415459, -0.7243324, 51.1415459 ], "geometry": { "type": "Point", "coordinates": [ -0.7243324, 51.1415459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86454440" }, "bbox": [ -0.7639917, 51.2013391, -0.7639917, 51.2013391 ], "geometry": { "type": "Point", "coordinates": [ -0.7639917, 51.2013391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00478559" }, "bbox": [ -0.5573623, 51.2185758, -0.5573623, 51.2185758 ], "geometry": { "type": "Point", "coordinates": [ -0.5573623, 51.2185758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00478947" }, "bbox": [ -0.5569124, 51.2173163, -0.5569124, 51.2173163 ], "geometry": { "type": "Point", "coordinates": [ -0.5569124, 51.2173163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02401527" }, "bbox": [ -0.5407981, 51.152608, -0.5407981, 51.152608 ], "geometry": { "type": "Point", "coordinates": [ -0.5407981, 51.152608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98344499" }, "bbox": [ -0.5954854, 51.1056099, -0.5954854, 51.1056099 ], "geometry": { "type": "Point", "coordinates": [ -0.5954854, 51.1056099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19472346" }, "bbox": [ -0.2945523, 51.2138459, -0.2945523, 51.2138459 ], "geometry": { "type": "Point", "coordinates": [ -0.2945523, 51.2138459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38407517" }, "bbox": [ -0.0178463, 51.1440004, -0.0178463, 51.1440004 ], "geometry": { "type": "Point", "coordinates": [ -0.0178463, 51.1440004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39412271" }, "bbox": [ -0.0105736, 51.1576546, -0.0105736, 51.1576546 ], "geometry": { "type": "Point", "coordinates": [ -0.0105736, 51.1576546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400961" }, "bbox": [ -0.5128594, 51.1553173, -0.5128594, 51.1553173 ], "geometry": { "type": "Point", "coordinates": [ -0.5128594, 51.1553173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37473011" }, "bbox": [ -0.0358551, 51.2067726, -0.0358551, 51.2067726 ], "geometry": { "type": "Point", "coordinates": [ -0.0358551, 51.2067726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97680182" }, "bbox": [ -0.6081023, 51.4100793, -0.6081023, 51.4100793 ], "geometry": { "type": "Point", "coordinates": [ -0.6081023, 51.4100793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07493772" }, "bbox": [ -0.4638403, 51.2363367, -0.4638403, 51.2363367 ], "geometry": { "type": "Point", "coordinates": [ -0.4638403, 51.2363367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14581399" }, "bbox": [ -0.3636254, 51.3185969, -0.3636254, 51.3185969 ], "geometry": { "type": "Point", "coordinates": [ -0.3636254, 51.3185969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469243" }, "bbox": [ -0.2279593, 51.2036939, -0.2279593, 51.2036939 ], "geometry": { "type": "Point", "coordinates": [ -0.2279593, 51.2036939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35515862" }, "bbox": [ -0.0584069, 51.2477662, -0.0584069, 51.2477662 ], "geometry": { "type": "Point", "coordinates": [ -0.0584069, 51.2477662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34470925" }, "bbox": [ -0.0817298, 51.2087718, -0.0817298, 51.2087718 ], "geometry": { "type": "Point", "coordinates": [ -0.0817298, 51.2087718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42556322" }, "bbox": [ 0.043453, 51.2783358, 0.043453, 51.2783358 ], "geometry": { "type": "Point", "coordinates": [ 0.043453, 51.2783358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39544069" }, "bbox": [ -0.0024804, 51.2760034, -0.0024804, 51.2760034 ], "geometry": { "type": "Point", "coordinates": [ -0.0024804, 51.2760034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04650433" }, "bbox": [ -0.5066387, 51.3774485, -0.5066387, 51.3774485 ], "geometry": { "type": "Point", "coordinates": [ -0.5066387, 51.3774485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03346121" }, "bbox": [ -0.5209894, 51.0980296, -0.5209894, 51.0980296 ], "geometry": { "type": "Point", "coordinates": [ -0.5209894, 51.0980296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39583068" }, "bbox": [ -0.0026319, 51.3102618, -0.0026319, 51.3102618 ], "geometry": { "type": "Point", "coordinates": [ -0.0026319, 51.3102618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36472261" }, "bbox": [ -0.0510205, 51.2113789, -0.0510205, 51.2113789 ], "geometry": { "type": "Point", "coordinates": [ -0.0510205, 51.2113789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32426785" }, "bbox": [ -0.1036926, 51.1694784, -0.1036926, 51.1694784 ], "geometry": { "type": "Point", "coordinates": [ -0.1036926, 51.1694784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32425990" }, "bbox": [ -0.1048919, 51.1699922, -0.1048919, 51.1699922 ], "geometry": { "type": "Point", "coordinates": [ -0.1048919, 51.1699922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32425285" }, "bbox": [ -0.1058615, 51.1695766, -0.1058615, 51.1695766 ], "geometry": { "type": "Point", "coordinates": [ -0.1058615, 51.1695766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15478469" }, "bbox": [ -0.3427502, 51.2166817, -0.3427502, 51.2166817 ], "geometry": { "type": "Point", "coordinates": [ -0.3427502, 51.2166817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04606423" }, "bbox": [ -0.499332, 51.3315695, -0.499332, 51.3315695 ], "geometry": { "type": "Point", "coordinates": [ -0.499332, 51.3315695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04606129" }, "bbox": [ -0.4998129, 51.3321394, -0.4998129, 51.3321394 ], "geometry": { "type": "Point", "coordinates": [ -0.4998129, 51.3321394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36409305" }, "bbox": [ -0.0439138, 51.1432909, -0.0439138, 51.1432909 ], "geometry": { "type": "Point", "coordinates": [ -0.0439138, 51.1432909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36408904" }, "bbox": [ -0.0444783, 51.1432545, -0.0444783, 51.1432545 ], "geometry": { "type": "Point", "coordinates": [ -0.0444783, 51.1432545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36409112" }, "bbox": [ -0.0442045, 51.1439614, -0.0442045, 51.1439614 ], "geometry": { "type": "Point", "coordinates": [ -0.0442045, 51.1439614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01431085" }, "bbox": [ -0.554748, 51.1846376, -0.554748, 51.1846376 ], "geometry": { "type": "Point", "coordinates": [ -0.554748, 51.1846376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11611342" }, "bbox": [ -0.4059281, 51.3410523, -0.4059281, 51.3410523 ], "geometry": { "type": "Point", "coordinates": [ -0.4059281, 51.3410523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11611633" }, "bbox": [ -0.4053856, 51.340261, -0.4053856, 51.340261 ], "geometry": { "type": "Point", "coordinates": [ -0.4053856, 51.340261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11610944" }, "bbox": [ -0.4069233, 51.3410094, -0.4069233, 51.3410094 ], "geometry": { "type": "Point", "coordinates": [ -0.4069233, 51.3410094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10619862" }, "bbox": [ -0.4083875, 51.3424249, -0.4083875, 51.3424249 ], "geometry": { "type": "Point", "coordinates": [ -0.4083875, 51.3424249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91344691" }, "bbox": [ -0.6950785, 51.106235, -0.6950785, 51.106235 ], "geometry": { "type": "Point", "coordinates": [ -0.6950785, 51.106235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91344990" }, "bbox": [ -0.6945855, 51.1060241, -0.6945855, 51.1060241 ], "geometry": { "type": "Point", "coordinates": [ -0.6945855, 51.1060241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92516290" }, "bbox": [ -0.6739489, 51.2588026, -0.6739489, 51.2588026 ], "geometry": { "type": "Point", "coordinates": [ -0.6739489, 51.2588026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92515187" }, "bbox": [ -0.675595, 51.2585855, -0.675595, 51.2585855 ], "geometry": { "type": "Point", "coordinates": [ -0.675595, 51.2585855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388442" }, "bbox": [ -0.5314958, 51.1358473, -0.5314958, 51.1358473 ], "geometry": { "type": "Point", "coordinates": [ -0.5314958, 51.1358473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388625" }, "bbox": [ -0.5311763, 51.134297, -0.5311763, 51.134297 ], "geometry": { "type": "Point", "coordinates": [ -0.5311763, 51.134297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03628689" }, "bbox": [ -0.5102198, 51.3555423, -0.5102198, 51.3555423 ], "geometry": { "type": "Point", "coordinates": [ -0.5102198, 51.3555423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04635659" }, "bbox": [ -0.4995802, 51.3617948, -0.4995802, 51.3617948 ], "geometry": { "type": "Point", "coordinates": [ -0.4995802, 51.3617948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24510682" }, "bbox": [ -0.2235785, 51.2520689, -0.2235785, 51.2520689 ], "geometry": { "type": "Point", "coordinates": [ -0.2235785, 51.2520689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24510869" }, "bbox": [ -0.2234338, 51.2509038, -0.2234338, 51.2509038 ], "geometry": { "type": "Point", "coordinates": [ -0.2234338, 51.2509038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24500622" }, "bbox": [ -0.2243039, 51.2376682, -0.2243039, 51.2376682 ], "geometry": { "type": "Point", "coordinates": [ -0.2243039, 51.2376682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21432914" }, "bbox": [ -0.2663382, 51.1747021, -0.2663382, 51.1747021 ], "geometry": { "type": "Point", "coordinates": [ -0.2663382, 51.1747021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26424480" }, "bbox": [ -0.1927335, 51.1704838, -0.1927335, 51.1704838 ], "geometry": { "type": "Point", "coordinates": [ -0.1927335, 51.1704838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07414369" }, "bbox": [ -0.4647387, 51.164409, -0.4647387, 51.164409 ], "geometry": { "type": "Point", "coordinates": [ -0.4647387, 51.164409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22413064" }, "bbox": [ -0.2524432, 51.1609348, -0.2524432, 51.1609348 ], "geometry": { "type": "Point", "coordinates": [ -0.2524432, 51.1609348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03657165" }, "bbox": [ -0.5093284, 51.3800476, -0.5093284, 51.3800476 ], "geometry": { "type": "Point", "coordinates": [ -0.5093284, 51.3800476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10404525" }, "bbox": [ -0.4221144, 51.150956, -0.4221144, 51.150956 ], "geometry": { "type": "Point", "coordinates": [ -0.4221144, 51.150956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40411474" }, "bbox": [ 0.0027096, 51.1578563, 0.0027096, 51.1578563 ], "geometry": { "type": "Point", "coordinates": [ 0.0027096, 51.1578563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34474128" }, "bbox": [ -0.0771207, 51.2089957, -0.0771207, 51.2089957 ], "geometry": { "type": "Point", "coordinates": [ -0.0771207, 51.2089957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22429160" }, "bbox": [ -0.2433095, 51.1695019, -0.2433095, 51.1695019 ], "geometry": { "type": "Point", "coordinates": [ -0.2433095, 51.1695019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35448228" }, "bbox": [ -0.0580811, 51.1816541, -0.0580811, 51.1816541 ], "geometry": { "type": "Point", "coordinates": [ -0.0580811, 51.1816541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24457259" }, "bbox": [ -0.2164983, 51.1956943, -0.2164983, 51.1956943 ], "geometry": { "type": "Point", "coordinates": [ -0.2164983, 51.1956943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00601385" }, "bbox": [ -0.5639069, 51.3378835, -0.5639069, 51.3378835 ], "geometry": { "type": "Point", "coordinates": [ -0.5639069, 51.3378835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81409301" }, "bbox": [ -0.8303908, 51.153935, -0.8303908, 51.153935 ], "geometry": { "type": "Point", "coordinates": [ -0.8303908, 51.153935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99436185" }, "bbox": [ -0.5754165, 51.1851457, -0.5754165, 51.1851457 ], "geometry": { "type": "Point", "coordinates": [ -0.5754165, 51.1851457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31550524" }, "bbox": [ -0.1221731, 51.2812203, -0.1221731, 51.2812203 ], "geometry": { "type": "Point", "coordinates": [ -0.1221731, 51.2812203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89334874" }, "bbox": [ -0.7235019, 51.0960254, -0.7235019, 51.0960254 ], "geometry": { "type": "Point", "coordinates": [ -0.7235019, 51.0960254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89334571" }, "bbox": [ -0.7239253, 51.0957584, -0.7239253, 51.0957584 ], "geometry": { "type": "Point", "coordinates": [ -0.7239253, 51.0957584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99359080" }, "bbox": [ -0.57409, 51.1129046, -0.57409, 51.1129046 ], "geometry": { "type": "Point", "coordinates": [ -0.57409, 51.1129046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99357885" }, "bbox": [ -0.5758136, 51.1133474, -0.5758136, 51.1133474 ], "geometry": { "type": "Point", "coordinates": [ -0.5758136, 51.1133474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41418257" }, "bbox": [ 0.0264222, 51.1558097, 0.0264222, 51.1558097 ], "geometry": { "type": "Point", "coordinates": [ 0.0264222, 51.1558097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41418777" }, "bbox": [ 0.027877, 51.1579742, 0.027877, 51.1579742 ], "geometry": { "type": "Point", "coordinates": [ 0.027877, 51.1579742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30512890" }, "bbox": [ -0.1347672, 51.2514306, -0.1347672, 51.2514306 ], "geometry": { "type": "Point", "coordinates": [ -0.1347672, 51.2514306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20528678" }, "bbox": [ -0.2692325, 51.2614604, -0.2692325, 51.2614604 ], "geometry": { "type": "Point", "coordinates": [ -0.2692325, 51.2614604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34468379" }, "bbox": [ -0.071319, 51.2044566, -0.071319, 51.2044566 ], "geometry": { "type": "Point", "coordinates": [ -0.071319, 51.2044566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32537244" }, "bbox": [ -0.0993822, 51.2647131, -0.0993822, 51.2647131 ], "geometry": { "type": "Point", "coordinates": [ -0.0993822, 51.2647131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16461941" }, "bbox": [ -0.338001, 51.2051672, -0.338001, 51.2051672 ], "geometry": { "type": "Point", "coordinates": [ -0.338001, 51.2051672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446741" }, "bbox": [ -0.0887432, 51.1833507, -0.0887432, 51.1833507 ], "geometry": { "type": "Point", "coordinates": [ -0.0887432, 51.1833507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06664439" }, "bbox": [ -0.4717733, 51.3866075, -0.4717733, 51.3866075 ], "geometry": { "type": "Point", "coordinates": [ -0.4717733, 51.3866075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37435940" }, "bbox": [ -0.0332368, 51.173356, -0.0332368, 51.173356 ], "geometry": { "type": "Point", "coordinates": [ -0.0332368, 51.173356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37436746" }, "bbox": [ -0.0320501, 51.1738287, -0.0320501, 51.1738287 ], "geometry": { "type": "Point", "coordinates": [ -0.0320501, 51.1738287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36480228" }, "bbox": [ -0.0537694, 51.21751, -0.0537694, 51.21751 ], "geometry": { "type": "Point", "coordinates": [ -0.0537694, 51.21751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99362957" }, "bbox": [ -0.5826796, 51.1197236, -0.5826796, 51.1197236 ], "geometry": { "type": "Point", "coordinates": [ -0.5826796, 51.1197236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07442829" }, "bbox": [ -0.4663179, 51.1876111, -0.4663179, 51.1876111 ], "geometry": { "type": "Point", "coordinates": [ -0.4663179, 51.1876111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19404318" }, "bbox": [ -0.2937904, 51.1484702, -0.2937904, 51.1484702 ], "geometry": { "type": "Point", "coordinates": [ -0.2937904, 51.1484702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17524699" }, "bbox": [ -0.3175987, 51.2641347, -0.3175987, 51.2641347 ], "geometry": { "type": "Point", "coordinates": [ -0.3175987, 51.2641347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17522199" }, "bbox": [ -0.3214281, 51.2640223, -0.3214281, 51.2640223 ], "geometry": { "type": "Point", "coordinates": [ -0.3214281, 51.2640223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17521691" }, "bbox": [ -0.3220963, 51.2634507, -0.3220963, 51.2634507 ], "geometry": { "type": "Point", "coordinates": [ -0.3220963, 51.2634507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93356008" }, "bbox": [ -0.6647109, 51.1071162, -0.6647109, 51.1071162 ], "geometry": { "type": "Point", "coordinates": [ -0.6647109, 51.1071162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36535864" }, "bbox": [ -0.0435398, 51.2650194, -0.0435398, 51.2650194 ], "geometry": { "type": "Point", "coordinates": [ -0.0435398, 51.2650194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27467382" }, "bbox": [ -0.1730464, 51.2065003, -0.1730464, 51.2065003 ], "geometry": { "type": "Point", "coordinates": [ -0.1730464, 51.2065003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27467298" }, "bbox": [ -0.1728717, 51.2079579, -0.1728717, 51.2079579 ], "geometry": { "type": "Point", "coordinates": [ -0.1728717, 51.2079579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18392379" }, "bbox": [ -0.3112213, 51.1451956, -0.3112213, 51.1451956 ], "geometry": { "type": "Point", "coordinates": [ -0.3112213, 51.1451956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96402010" }, "bbox": [ -0.6253257, 51.1515471, -0.6253257, 51.1515471 ], "geometry": { "type": "Point", "coordinates": [ -0.6253257, 51.1515471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38550301" }, "bbox": [ -0.0223624, 51.2774235, -0.0223624, 51.2774235 ], "geometry": { "type": "Point", "coordinates": [ -0.0223624, 51.2774235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29439180" }, "bbox": [ -0.1428141, 51.1786244, -0.1428141, 51.1786244 ], "geometry": { "type": "Point", "coordinates": [ -0.1428141, 51.1786244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11429416" }, "bbox": [ -0.4000539, 51.1676227, -0.4000539, 51.1676227 ], "geometry": { "type": "Point", "coordinates": [ -0.4000539, 51.1676227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11429716" }, "bbox": [ -0.3998693, 51.167845, -0.3998693, 51.167845 ], "geometry": { "type": "Point", "coordinates": [ -0.3998693, 51.167845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00401051" }, "bbox": [ -0.5702109, 51.1552323, -0.5702109, 51.1552323 ], "geometry": { "type": "Point", "coordinates": [ -0.5702109, 51.1552323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12436787" }, "bbox": [ -0.3892346, 51.1826321, -0.3892346, 51.1826321 ], "geometry": { "type": "Point", "coordinates": [ -0.3892346, 51.1826321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09409604" }, "bbox": [ -0.4288778, 51.1491509, -0.4288778, 51.1491509 ], "geometry": { "type": "Point", "coordinates": [ -0.4288778, 51.1491509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23407566" }, "bbox": [ -0.2320573, 51.1519124, -0.2320573, 51.1519124 ], "geometry": { "type": "Point", "coordinates": [ -0.2320573, 51.1519124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14476856" }, "bbox": [ -0.3593442, 51.2162826, -0.3593442, 51.2162826 ], "geometry": { "type": "Point", "coordinates": [ -0.3593442, 51.2162826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92354609" }, "bbox": [ -0.6812715, 51.1075693, -0.6812715, 51.1075693 ], "geometry": { "type": "Point", "coordinates": [ -0.6812715, 51.1075693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05330757" }, "bbox": [ -0.5011964, 51.091892, -0.5011964, 51.091892 ], "geometry": { "type": "Point", "coordinates": [ -0.5011964, 51.091892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33538415" }, "bbox": [ -0.0829986, 51.2619909, -0.0829986, 51.2619909 ], "geometry": { "type": "Point", "coordinates": [ -0.0829986, 51.2619909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35519224" }, "bbox": [ -0.0540426, 51.2441825, -0.0540426, 51.2441825 ], "geometry": { "type": "Point", "coordinates": [ -0.0540426, 51.2441825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35518039" }, "bbox": [ -0.0551293, 51.2457666, -0.0551293, 51.2457666 ], "geometry": { "type": "Point", "coordinates": [ -0.0551293, 51.2457666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89413543" }, "bbox": [ -0.7236056, 51.1652374, -0.7236056, 51.1652374 ], "geometry": { "type": "Point", "coordinates": [ -0.7236056, 51.1652374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479906" }, "bbox": [ -0.0403505, 51.2062853, -0.0403505, 51.2062853 ], "geometry": { "type": "Point", "coordinates": [ -0.0403505, 51.2062853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08490231" }, "bbox": [ -0.4535973, 51.2317856, -0.4535973, 51.2317856 ], "geometry": { "type": "Point", "coordinates": [ -0.4535973, 51.2317856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323569" }, "bbox": [ -0.611324, 51.0852466, -0.611324, 51.0852466 ], "geometry": { "type": "Point", "coordinates": [ -0.611324, 51.0852466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401229" }, "bbox": [ -0.2559659, 51.1496854, -0.2559659, 51.1496854 ], "geometry": { "type": "Point", "coordinates": [ -0.2559659, 51.1496854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401048" }, "bbox": [ -0.2551832, 51.1511394, -0.2551832, 51.1511394 ], "geometry": { "type": "Point", "coordinates": [ -0.2551832, 51.1511394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11545581" }, "bbox": [ -0.4014653, 51.2806617, -0.4014653, 51.2806617 ], "geometry": { "type": "Point", "coordinates": [ -0.4014653, 51.2806617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12541557" }, "bbox": [ -0.393379, 51.2792724, -0.393379, 51.2792724 ], "geometry": { "type": "Point", "coordinates": [ -0.393379, 51.2792724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41408684" }, "bbox": [ 0.0267948, 51.149216, 0.0267948, 51.149216 ], "geometry": { "type": "Point", "coordinates": [ 0.0267948, 51.149216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27543164" }, "bbox": [ -0.176143, 51.2766764, -0.176143, 51.2766764 ], "geometry": { "type": "Point", "coordinates": [ -0.176143, 51.2766764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85448793" }, "bbox": [ -0.7723089, 51.1972585, -0.7723089, 51.1972585 ], "geometry": { "type": "Point", "coordinates": [ -0.7723089, 51.1972585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86450805" }, "bbox": [ -0.7699202, 51.198116, -0.7699202, 51.198116 ], "geometry": { "type": "Point", "coordinates": [ -0.7699202, 51.198116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17370272" }, "bbox": [ -0.3284035, 51.1268113, -0.3284035, 51.1268113 ], "geometry": { "type": "Point", "coordinates": [ -0.3284035, 51.1268113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17542111" }, "bbox": [ -0.3214004, 51.2745216, -0.3214004, 51.2745216 ], "geometry": { "type": "Point", "coordinates": [ -0.3214004, 51.2745216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07572765" }, "bbox": [ -0.4624448, 51.3080173, -0.4624448, 51.3080173 ], "geometry": { "type": "Point", "coordinates": [ -0.4624448, 51.3080173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27450926" }, "bbox": [ -0.1827975, 51.1924987, -0.1827975, 51.1924987 ], "geometry": { "type": "Point", "coordinates": [ -0.1827975, 51.1924987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16542351" }, "bbox": [ -0.3349448, 51.2780558, -0.3349448, 51.2780558 ], "geometry": { "type": "Point", "coordinates": [ -0.3349448, 51.2780558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15521942" }, "bbox": [ -0.3505567, 51.2593961, -0.3505567, 51.2593961 ], "geometry": { "type": "Point", "coordinates": [ -0.3505567, 51.2593961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19466469" }, "bbox": [ -0.2890428, 51.2068753, -0.2890428, 51.2068753 ], "geometry": { "type": "Point", "coordinates": [ -0.2890428, 51.2068753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16545970" }, "bbox": [ -0.3289531, 51.2781849, -0.3289531, 51.2781849 ], "geometry": { "type": "Point", "coordinates": [ -0.3289531, 51.2781849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16545174" }, "bbox": [ -0.3306619, 51.2798992, -0.3306619, 51.2798992 ], "geometry": { "type": "Point", "coordinates": [ -0.3306619, 51.2798992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16547855" }, "bbox": [ -0.3279873, 51.2796644, -0.3279873, 51.2796644 ], "geometry": { "type": "Point", "coordinates": [ -0.3279873, 51.2796644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16547590" }, "bbox": [ -0.327333, 51.2811191, -0.327333, 51.2811191 ], "geometry": { "type": "Point", "coordinates": [ -0.327333, 51.2811191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15524141" }, "bbox": [ -0.3475796, 51.2591498, -0.3475796, 51.2591498 ], "geometry": { "type": "Point", "coordinates": [ -0.3475796, 51.2591498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15530408" }, "bbox": [ -0.3523526, 51.2653147, -0.3523526, 51.2653147 ], "geometry": { "type": "Point", "coordinates": [ -0.3523526, 51.2653147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16526999" }, "bbox": [ -0.3290214, 51.2640579, -0.3290214, 51.2640579 ], "geometry": { "type": "Point", "coordinates": [ -0.3290214, 51.2640579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16541993" }, "bbox": [ -0.335182, 51.2820665, -0.335182, 51.2820665 ], "geometry": { "type": "Point", "coordinates": [ -0.335182, 51.2820665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15526541" }, "bbox": [ -0.3443562, 51.2591253, -0.3443562, 51.2591253 ], "geometry": { "type": "Point", "coordinates": [ -0.3443562, 51.2591253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16527990" }, "bbox": [ -0.3275108, 51.2633309, -0.3275108, 51.2633309 ], "geometry": { "type": "Point", "coordinates": [ -0.3275108, 51.2633309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15521980" }, "bbox": [ -0.3504329, 51.2628515, -0.3504329, 51.2628515 ], "geometry": { "type": "Point", "coordinates": [ -0.3504329, 51.2628515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17520378" }, "bbox": [ -0.3237565, 51.2622442, -0.3237565, 51.2622442 ], "geometry": { "type": "Point", "coordinates": [ -0.3237565, 51.2622442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14538729" }, "bbox": [ -0.3550639, 51.2671808, -0.3550639, 51.2671808 ], "geometry": { "type": "Point", "coordinates": [ -0.3550639, 51.2671808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16529303" }, "bbox": [ -0.3260104, 51.2554343, -0.3260104, 51.2554343 ], "geometry": { "type": "Point", "coordinates": [ -0.3260104, 51.2554343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16528471" }, "bbox": [ -0.3268026, 51.2615422, -0.3268026, 51.2615422 ], "geometry": { "type": "Point", "coordinates": [ -0.3268026, 51.2615422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16547304" }, "bbox": [ -0.3282798, 51.2739259, -0.3282798, 51.2739259 ], "geometry": { "type": "Point", "coordinates": [ -0.3282798, 51.2739259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16545138" }, "bbox": [ -0.3296138, 51.276559, -0.3296138, 51.276559 ], "geometry": { "type": "Point", "coordinates": [ -0.3296138, 51.276559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18550275" }, "bbox": [ -0.3088799, 51.2886632, -0.3088799, 51.2886632 ], "geometry": { "type": "Point", "coordinates": [ -0.3088799, 51.2886632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28469814" }, "bbox": [ -0.1552582, 51.2000675, -0.1552582, 51.2000675 ], "geometry": { "type": "Point", "coordinates": [ -0.1552582, 51.2000675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28469090" }, "bbox": [ -0.1553781, 51.205614, -0.1553781, 51.205614 ], "geometry": { "type": "Point", "coordinates": [ -0.1553781, 51.205614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29470110" }, "bbox": [ -0.1543841, 51.2089604, -0.1543841, 51.2089604 ], "geometry": { "type": "Point", "coordinates": [ -0.1543841, 51.2089604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37441116" }, "bbox": [ -0.039684, 51.180314, -0.039684, 51.180314 ], "geometry": { "type": "Point", "coordinates": [ -0.039684, 51.180314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439896" }, "bbox": [ -0.0417656, 51.1784488, -0.0417656, 51.1784488 ], "geometry": { "type": "Point", "coordinates": [ -0.0417656, 51.1784488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439778" }, "bbox": [ -0.0418604, 51.1768999, -0.0418604, 51.1768999 ], "geometry": { "type": "Point", "coordinates": [ -0.0418604, 51.1768999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36446903" }, "bbox": [ -0.0456912, 51.1793107, -0.0456912, 51.1793107 ], "geometry": { "type": "Point", "coordinates": [ -0.0456912, 51.1793107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36448607" }, "bbox": [ -0.0435246, 51.1792344, -0.0435246, 51.1792344 ], "geometry": { "type": "Point", "coordinates": [ -0.0435246, 51.1792344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12424883" }, "bbox": [ -0.393226, 51.1739192, -0.393226, 51.1739192 ], "geometry": { "type": "Point", "coordinates": [ -0.393226, 51.1739192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38419415" }, "bbox": [ -0.0147306, 51.152521, -0.0147306, 51.152521 ], "geometry": { "type": "Point", "coordinates": [ -0.0147306, 51.152521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38417451" }, "bbox": [ -0.0172371, 51.1562471, -0.0172371, 51.1562471 ], "geometry": { "type": "Point", "coordinates": [ -0.0172371, 51.1562471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38418459" }, "bbox": [ -0.0158008, 51.1568228, -0.0158008, 51.1568228 ], "geometry": { "type": "Point", "coordinates": [ -0.0158008, 51.1568228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38417516" }, "bbox": [ -0.0176532, 51.1529891, -0.0176532, 51.1529891 ], "geometry": { "type": "Point", "coordinates": [ -0.0176532, 51.1529891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38418744" }, "bbox": [ -0.0152422, 51.1554135, -0.0152422, 51.1554135 ], "geometry": { "type": "Point", "coordinates": [ -0.0152422, 51.1554135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38418537" }, "bbox": [ -0.0157101, 51.1547375, -0.0157101, 51.1547375 ], "geometry": { "type": "Point", "coordinates": [ -0.0157101, 51.1547375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38418230" }, "bbox": [ -0.0163222, 51.1541589, -0.0163222, 51.1541589 ], "geometry": { "type": "Point", "coordinates": [ -0.0163222, 51.1541589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23498815" }, "bbox": [ -0.227275, 51.2282117, -0.227275, 51.2282117 ], "geometry": { "type": "Point", "coordinates": [ -0.227275, 51.2282117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24483265" }, "bbox": [ -0.2209461, 51.2234828, -0.2209461, 51.2234828 ], "geometry": { "type": "Point", "coordinates": [ -0.2209461, 51.2234828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24483645" }, "bbox": [ -0.2205699, 51.2217156, -0.2205699, 51.2217156 ], "geometry": { "type": "Point", "coordinates": [ -0.2205699, 51.2217156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24485948" }, "bbox": [ -0.2173167, 51.2218936, -0.2173167, 51.2218936 ], "geometry": { "type": "Point", "coordinates": [ -0.2173167, 51.2218936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16543787" }, "bbox": [ -0.332595, 51.2813187, -0.332595, 51.2813187 ], "geometry": { "type": "Point", "coordinates": [ -0.332595, 51.2813187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16538995" }, "bbox": [ -0.3256867, 51.2722826, -0.3256867, 51.2722826 ], "geometry": { "type": "Point", "coordinates": [ -0.3256867, 51.2722826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14623153" }, "bbox": [ -0.3599136, 51.350307, -0.3599136, 51.350307 ], "geometry": { "type": "Point", "coordinates": [ -0.3599136, 51.350307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99439172" }, "bbox": [ -0.5718922, 51.1840274, -0.5718922, 51.1840274 ], "geometry": { "type": "Point", "coordinates": [ -0.5718922, 51.1840274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521589" }, "bbox": [ -0.393874, 51.264173, -0.393874, 51.264173 ], "geometry": { "type": "Point", "coordinates": [ -0.393874, 51.264173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08383165" }, "bbox": [ -0.4532956, 51.1367245, -0.4532956, 51.1367245 ], "geometry": { "type": "Point", "coordinates": [ -0.4532956, 51.1367245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02552893" }, "bbox": [ -0.5344236, 51.2934056, -0.5344236, 51.2934056 ], "geometry": { "type": "Point", "coordinates": [ -0.5344236, 51.2934056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95361899" }, "bbox": [ -0.6408029, 51.1238077, -0.6408029, 51.1238077 ], "geometry": { "type": "Point", "coordinates": [ -0.6408029, 51.1238077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29486591" }, "bbox": [ -0.1444512, 51.2250447, -0.1444512, 51.2250447 ], "geometry": { "type": "Point", "coordinates": [ -0.1444512, 51.2250447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15386085" }, "bbox": [ -0.3500422, 51.1368681, -0.3500422, 51.1368681 ], "geometry": { "type": "Point", "coordinates": [ -0.3500422, 51.1368681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04385054" }, "bbox": [ -0.5064469, 51.1363408, -0.5064469, 51.1363408 ], "geometry": { "type": "Point", "coordinates": [ -0.5064469, 51.1363408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33567439" }, "bbox": [ -0.0831776, 51.2909566, -0.0831776, 51.2909566 ], "geometry": { "type": "Point", "coordinates": [ -0.0831776, 51.2909566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96470356" }, "bbox": [ -0.6263785, 51.2191411, -0.6263785, 51.2191411 ], "geometry": { "type": "Point", "coordinates": [ -0.6263785, 51.2191411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05485390" }, "bbox": [ -0.4900496, 51.2295221, -0.4900496, 51.2295221 ], "geometry": { "type": "Point", "coordinates": [ -0.4900496, 51.2295221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99624101" }, "bbox": [ -0.5743024, 51.348496, -0.5743024, 51.348496 ], "geometry": { "type": "Point", "coordinates": [ -0.5743024, 51.348496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99625601" }, "bbox": [ -0.5723605, 51.3485779, -0.5723605, 51.3485779 ], "geometry": { "type": "Point", "coordinates": [ -0.5723605, 51.3485779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91554519" }, "bbox": [ -0.686075, 51.289131, -0.686075, 51.289131 ], "geometry": { "type": "Point", "coordinates": [ -0.686075, 51.289131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04443977" }, "bbox": [ -0.5073696, 51.1923398, -0.5073696, 51.1923398 ], "geometry": { "type": "Point", "coordinates": [ -0.5073696, 51.1923398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04577801" }, "bbox": [ -0.4983813, 51.3026751, -0.4983813, 51.3026751 ], "geometry": { "type": "Point", "coordinates": [ -0.4983813, 51.3026751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86463580" }, "bbox": [ -0.7651497, 51.2144836, -0.7651497, 51.2144836 ], "geometry": { "type": "Point", "coordinates": [ -0.7651497, 51.2144836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11551530" }, "bbox": [ -0.4081133, 51.2859131, -0.4081133, 51.2859131 ], "geometry": { "type": "Point", "coordinates": [ -0.4081133, 51.2859131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40569885" }, "bbox": [ 0.0206363, 51.2933391, 0.0206363, 51.2933391 ], "geometry": { "type": "Point", "coordinates": [ 0.0206363, 51.2933391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37577723" }, "bbox": [ -0.0253013, 51.2979289, -0.0253013, 51.2979289 ], "geometry": { "type": "Point", "coordinates": [ -0.0253013, 51.2979289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19542819" }, "bbox": [ -0.2914271, 51.274411, -0.2914271, 51.274411 ], "geometry": { "type": "Point", "coordinates": [ -0.2914271, 51.274411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19541531" }, "bbox": [ -0.2931279, 51.2755303, -0.2931279, 51.2755303 ], "geometry": { "type": "Point", "coordinates": [ -0.2931279, 51.2755303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95374981" }, "bbox": [ -0.6367148, 51.1316578, -0.6367148, 51.1316578 ], "geometry": { "type": "Point", "coordinates": [ -0.6367148, 51.1316578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95370959" }, "bbox": [ -0.6423733, 51.129919, -0.6423733, 51.129919 ], "geometry": { "type": "Point", "coordinates": [ -0.6423733, 51.129919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95373636" }, "bbox": [ -0.6383322, 51.1276479, -0.6383322, 51.1276479 ], "geometry": { "type": "Point", "coordinates": [ -0.6383322, 51.1276479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95372455" }, "bbox": [ -0.6401519, 51.1293647, -0.6401519, 51.1293647 ], "geometry": { "type": "Point", "coordinates": [ -0.6401519, 51.1293647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95371748" }, "bbox": [ -0.6415792, 51.128383, -0.6415792, 51.128383 ], "geometry": { "type": "Point", "coordinates": [ -0.6415792, 51.128383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95375980" }, "bbox": [ -0.6352911, 51.1316166, -0.6352911, 51.1316166 ], "geometry": { "type": "Point", "coordinates": [ -0.6352911, 51.1316166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95373648" }, "bbox": [ -0.6384006, 51.1286843, -0.6384006, 51.1286843 ], "geometry": { "type": "Point", "coordinates": [ -0.6384006, 51.1286843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95372081" }, "bbox": [ -0.6409168, 51.1316883, -0.6409168, 51.1316883 ], "geometry": { "type": "Point", "coordinates": [ -0.6409168, 51.1316883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95374077" }, "bbox": [ -0.6379761, 51.1312584, -0.6379761, 51.1312584 ], "geometry": { "type": "Point", "coordinates": [ -0.6379761, 51.1312584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95372868" }, "bbox": [ -0.6397296, 51.1304694, -0.6397296, 51.1304694 ], "geometry": { "type": "Point", "coordinates": [ -0.6397296, 51.1304694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95373657" }, "bbox": [ -0.638481, 51.1295581, -0.638481, 51.1295581 ], "geometry": { "type": "Point", "coordinates": [ -0.638481, 51.1295581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432689" }, "bbox": [ -0.6811311, 51.1869025, -0.6811311, 51.1869025 ], "geometry": { "type": "Point", "coordinates": [ -0.6811311, 51.1869025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19418111" }, "bbox": [ -0.288117, 51.1566219, -0.288117, 51.1566219 ], "geometry": { "type": "Point", "coordinates": [ -0.288117, 51.1566219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408494" }, "bbox": [ -0.2878526, 51.1554219, -0.2878526, 51.1554219 ], "geometry": { "type": "Point", "coordinates": [ -0.2878526, 51.1554219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14485643" }, "bbox": [ -0.3602691, 51.2237165, -0.3602691, 51.2237165 ], "geometry": { "type": "Point", "coordinates": [ -0.3602691, 51.2237165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40470583" }, "bbox": [ 0.0036243, 51.2124677, 0.0036243, 51.2124677 ], "geometry": { "type": "Point", "coordinates": [ 0.0036243, 51.2124677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95375354" }, "bbox": [ -0.63627, 51.1292317, -0.63627, 51.1292317 ], "geometry": { "type": "Point", "coordinates": [ -0.63627, 51.1292317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95378742" }, "bbox": [ -0.6312478, 51.1280564, -0.6312478, 51.1280564 ], "geometry": { "type": "Point", "coordinates": [ -0.6312478, 51.1280564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95375836" }, "bbox": [ -0.6354496, 51.1276405, -0.6354496, 51.1276405 ], "geometry": { "type": "Point", "coordinates": [ -0.6354496, 51.1276405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95377972" }, "bbox": [ -0.6324773, 51.1308677, -0.6324773, 51.1308677 ], "geometry": { "type": "Point", "coordinates": [ -0.6324773, 51.1308677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95376551" }, "bbox": [ -0.6342533, 51.1287198, -0.6342533, 51.1287198 ], "geometry": { "type": "Point", "coordinates": [ -0.6342533, 51.1287198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87433758" }, "bbox": [ -0.7512825, 51.1848097, -0.7512825, 51.1848097 ], "geometry": { "type": "Point", "coordinates": [ -0.7512825, 51.1848097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39487867" }, "bbox": [ 0.0005841, 51.2201777, 0.0005841, 51.2201777 ], "geometry": { "type": "Point", "coordinates": [ 0.0005841, 51.2201777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39498424" }, "bbox": [ 0.0011073, 51.2250957, 0.0011073, 51.2250957 ], "geometry": { "type": "Point", "coordinates": [ 0.0011073, 51.2250957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412254" }, "bbox": [ -0.5535045, 51.1643043, -0.5535045, 51.1643043 ], "geometry": { "type": "Point", "coordinates": [ -0.5535045, 51.1643043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412163" }, "bbox": [ -0.5539378, 51.1652099, -0.5539378, 51.1652099 ], "geometry": { "type": "Point", "coordinates": [ -0.5539378, 51.1652099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418957" }, "bbox": [ -0.5583886, 51.1641908, -0.5583886, 51.1641908 ], "geometry": { "type": "Point", "coordinates": [ -0.5583886, 51.1641908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00419143" }, "bbox": [ -0.5578477, 51.1622815, -0.5578477, 51.1622815 ], "geometry": { "type": "Point", "coordinates": [ -0.5578477, 51.1622815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412102" }, "bbox": [ -0.5540569, 51.1594936, -0.5540569, 51.1594936 ], "geometry": { "type": "Point", "coordinates": [ -0.5540569, 51.1594936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00409364" }, "bbox": [ -0.5582463, 51.1560748, -0.5582463, 51.1560748 ], "geometry": { "type": "Point", "coordinates": [ -0.5582463, 51.1560748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01391452" }, "bbox": [ -0.5555205, 51.1459007, -0.5555205, 51.1459007 ], "geometry": { "type": "Point", "coordinates": [ -0.5555205, 51.1459007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92467993" }, "bbox": [ -0.6728662, 51.2139484, -0.6728662, 51.2139484 ], "geometry": { "type": "Point", "coordinates": [ -0.6728662, 51.2139484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92478557" }, "bbox": [ -0.6719993, 51.2197643, -0.6719993, 51.2197643 ], "geometry": { "type": "Point", "coordinates": [ -0.6719993, 51.2197643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08560624" }, "bbox": [ -0.4514712, 51.2948863, -0.4514712, 51.2948863 ], "geometry": { "type": "Point", "coordinates": [ -0.4514712, 51.2948863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07567827" }, "bbox": [ -0.4552242, 51.2948594, -0.4552242, 51.2948594 ], "geometry": { "type": "Point", "coordinates": [ -0.4552242, 51.2948594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04384056" }, "bbox": [ -0.5096285, 51.136876, -0.5096285, 51.136876 ], "geometry": { "type": "Point", "coordinates": [ -0.5096285, 51.136876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26593350" }, "bbox": [ -0.1886729, 51.3206226, -0.1886729, 51.3206226 ], "geometry": { "type": "Point", "coordinates": [ -0.1886729, 51.3206226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98394745" }, "bbox": [ -0.5935551, 51.14589, -0.5935551, 51.14589 ], "geometry": { "type": "Point", "coordinates": [ -0.5935551, 51.14589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395744" }, "bbox": [ -0.5920913, 51.1458774, -0.5920913, 51.1458774 ], "geometry": { "type": "Point", "coordinates": [ -0.5920913, 51.1458774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580469" }, "bbox": [ -0.3648798, 51.3160723, -0.3648798, 51.3160723 ], "geometry": { "type": "Point", "coordinates": [ -0.3648798, 51.3160723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580574" }, "bbox": [ -0.3647037, 51.3163325, -0.3647037, 51.3163325 ], "geometry": { "type": "Point", "coordinates": [ -0.3647037, 51.3163325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94346829" }, "bbox": [ -0.6487464, 51.100141, -0.6487464, 51.100141 ], "geometry": { "type": "Point", "coordinates": [ -0.6487464, 51.100141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94349942" }, "bbox": [ -0.644599, 51.1012672, -0.644599, 51.1012672 ], "geometry": { "type": "Point", "coordinates": [ -0.644599, 51.1012672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94348140" }, "bbox": [ -0.6469929, 51.1011349, -0.6469929, 51.1011349 ], "geometry": { "type": "Point", "coordinates": [ -0.6469929, 51.1011349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85434578" }, "bbox": [ -0.7791378, 51.1866508, -0.7791378, 51.1866508 ], "geometry": { "type": "Point", "coordinates": [ -0.7791378, 51.1866508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40483539" }, "bbox": [ 0.0085088, 51.2176104, 0.0085088, 51.2176104 ], "geometry": { "type": "Point", "coordinates": [ 0.0085088, 51.2176104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40482647" }, "bbox": [ 0.0071291, 51.2183406, 0.0071291, 51.2183406 ], "geometry": { "type": "Point", "coordinates": [ 0.0071291, 51.2183406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28458602" }, "bbox": [ -0.15743, 51.1900625, -0.15743, 51.1900625 ], "geometry": { "type": "Point", "coordinates": [ -0.15743, 51.1900625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31394899" }, "bbox": [ -0.1217129, 51.1446925, -0.1217129, 51.1446925 ], "geometry": { "type": "Point", "coordinates": [ -0.1217129, 51.1446925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31397398" }, "bbox": [ -0.1182737, 51.1440076, -0.1182737, 51.1440076 ], "geometry": { "type": "Point", "coordinates": [ -0.1182737, 51.1440076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31406823" }, "bbox": [ -0.118832, 51.1462296, -0.118832, 51.1462296 ], "geometry": { "type": "Point", "coordinates": [ -0.118832, 51.1462296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31407472" }, "bbox": [ -0.1175512, 51.1504586, -0.1175512, 51.1504586 ], "geometry": { "type": "Point", "coordinates": [ -0.1175512, 51.1504586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31408037" }, "bbox": [ -0.1171027, 51.1469946, -0.1171027, 51.1469946 ], "geometry": { "type": "Point", "coordinates": [ -0.1171027, 51.1469946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31403688" }, "bbox": [ -0.1219563, 51.1518, -0.1219563, 51.1518 ], "geometry": { "type": "Point", "coordinates": [ -0.1219563, 51.1518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31403095" }, "bbox": [ -0.1236649, 51.153072, -0.1236649, 51.153072 ], "geometry": { "type": "Point", "coordinates": [ -0.1236649, 51.153072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31401972" }, "bbox": [ -0.1257294, 51.1505991, -0.1257294, 51.1505991 ], "geometry": { "type": "Point", "coordinates": [ -0.1257294, 51.1505991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31407437" }, "bbox": [ -0.1179107, 51.1474442, -0.1179107, 51.1474442 ], "geometry": { "type": "Point", "coordinates": [ -0.1179107, 51.1474442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31406466" }, "bbox": [ -0.1193377, 51.1504497, -0.1193377, 51.1504497 ], "geometry": { "type": "Point", "coordinates": [ -0.1193377, 51.1504497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31408040" }, "bbox": [ -0.1169808, 51.147765, -0.1169808, 51.147765 ], "geometry": { "type": "Point", "coordinates": [ -0.1169808, 51.147765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32403368" }, "bbox": [ -0.1094491, 51.1501976, -0.1094491, 51.1501976 ], "geometry": { "type": "Point", "coordinates": [ -0.1094491, 51.1501976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32400992" }, "bbox": [ -0.1127161, 51.1522713, -0.1127161, 51.1522713 ], "geometry": { "type": "Point", "coordinates": [ -0.1127161, 51.1522713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32402162" }, "bbox": [ -0.1110673, 51.1494675, -0.1110673, 51.1494675 ], "geometry": { "type": "Point", "coordinates": [ -0.1110673, 51.1494675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32403753" }, "bbox": [ -0.1091936, 51.148725, -0.1091936, 51.148725 ], "geometry": { "type": "Point", "coordinates": [ -0.1091936, 51.148725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32403726" }, "bbox": [ -0.1090741, 51.1464484, -0.1090741, 51.1464484 ], "geometry": { "type": "Point", "coordinates": [ -0.1090741, 51.1464484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32401166" }, "bbox": [ -0.1126527, 51.1498158, -0.1126527, 51.1498158 ], "geometry": { "type": "Point", "coordinates": [ -0.1126527, 51.1498158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32403640" }, "bbox": [ -0.1090072, 51.1476229, -0.1090072, 51.1476229 ], "geometry": { "type": "Point", "coordinates": [ -0.1090072, 51.1476229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87420426" }, "bbox": [ -0.7562809, 51.1730038, -0.7562809, 51.1730038 ], "geometry": { "type": "Point", "coordinates": [ -0.7562809, 51.1730038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86412650" }, "bbox": [ -0.7675492, 51.1662947, -0.7675492, 51.1662947 ], "geometry": { "type": "Point", "coordinates": [ -0.7675492, 51.1662947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86414294" }, "bbox": [ -0.7645446, 51.1706815, -0.7645446, 51.1706815 ], "geometry": { "type": "Point", "coordinates": [ -0.7645446, 51.1706815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86413187" }, "bbox": [ -0.766743, 51.1696089, -0.766743, 51.1696089 ], "geometry": { "type": "Point", "coordinates": [ -0.766743, 51.1696089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86416751" }, "bbox": [ -0.7615869, 51.1663316, -0.7615869, 51.1663316 ], "geometry": { "type": "Point", "coordinates": [ -0.7615869, 51.1663316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09530920" }, "bbox": [ -0.4376695, 51.267509, -0.4376695, 51.267509 ], "geometry": { "type": "Point", "coordinates": [ -0.4376695, 51.267509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03470912" }, "bbox": [ -0.525102, 51.2140108, -0.525102, 51.2140108 ], "geometry": { "type": "Point", "coordinates": [ -0.525102, 51.2140108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03460195" }, "bbox": [ -0.5265401, 51.2124233, -0.5265401, 51.2124233 ], "geometry": { "type": "Point", "coordinates": [ -0.5265401, 51.2124233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02469783" }, "bbox": [ -0.5264849, 51.2116853, -0.5264849, 51.2116853 ], "geometry": { "type": "Point", "coordinates": [ -0.5264849, 51.2116853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42449086" }, "bbox": [ 0.0440444, 51.1851673, 0.0440444, 51.1851673 ], "geometry": { "type": "Point", "coordinates": [ 0.0440444, 51.1851673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05487096" }, "bbox": [ -0.4879657, 51.2302419, -0.4879657, 51.2302419 ], "geometry": { "type": "Point", "coordinates": [ -0.4879657, 51.2302419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35535226" }, "bbox": [ -0.0606037, 51.2609635, -0.0606037, 51.2609635 ], "geometry": { "type": "Point", "coordinates": [ -0.0606037, 51.2609635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37431872" }, "bbox": [ -0.0386766, 51.1761261, -0.0386766, 51.1761261 ], "geometry": { "type": "Point", "coordinates": [ -0.0386766, 51.1761261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37430669" }, "bbox": [ -0.04066, 51.1759526, -0.04066, 51.1759526 ], "geometry": { "type": "Point", "coordinates": [ -0.04066, 51.1759526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33439001" }, "bbox": [ -0.0861381, 51.1706079, -0.0861381, 51.1706079 ], "geometry": { "type": "Point", "coordinates": [ -0.0861381, 51.1706079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97471752" }, "bbox": [ -0.6100393, 51.2186206, -0.6100393, 51.2186206 ], "geometry": { "type": "Point", "coordinates": [ -0.6100393, 51.2186206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96466791" }, "bbox": [ -0.6178499, 51.2136092, -0.6178499, 51.2136092 ], "geometry": { "type": "Point", "coordinates": [ -0.6178499, 51.2136092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96478923" }, "bbox": [ -0.6141475, 51.2162286, -0.6141475, 51.2162286 ], "geometry": { "type": "Point", "coordinates": [ -0.6141475, 51.2162286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08561064" }, "bbox": [ -0.4511051, 51.2987721, -0.4511051, 51.2987721 ], "geometry": { "type": "Point", "coordinates": [ -0.4511051, 51.2987721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10507947" }, "bbox": [ -0.414293, 51.243233, -0.414293, 51.243233 ], "geometry": { "type": "Point", "coordinates": [ -0.414293, 51.243233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10381254" }, "bbox": [ -0.4269644, 51.1355594, -0.4269644, 51.1355594 ], "geometry": { "type": "Point", "coordinates": [ -0.4269644, 51.1355594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38418967" }, "bbox": [ -0.0150898, 51.1575662, -0.0150898, 51.1575662 ], "geometry": { "type": "Point", "coordinates": [ -0.0150898, 51.1575662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09359259" }, "bbox": [ -0.4312179, 51.1089915, -0.4312179, 51.1089915 ], "geometry": { "type": "Point", "coordinates": [ -0.4312179, 51.1089915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04396847" }, "bbox": [ -0.5047429, 51.1447391, -0.5047429, 51.1447391 ], "geometry": { "type": "Point", "coordinates": [ -0.5047429, 51.1447391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08340073" }, "bbox": [ -0.4596323, 51.1022704, -0.4596323, 51.1022704 ], "geometry": { "type": "Point", "coordinates": [ -0.4596323, 51.1022704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06399364" }, "bbox": [ -0.4728427, 51.146059, -0.4728427, 51.146059 ], "geometry": { "type": "Point", "coordinates": [ -0.4728427, 51.146059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06397754" }, "bbox": [ -0.474895, 51.1452277, -0.474895, 51.1452277 ], "geometry": { "type": "Point", "coordinates": [ -0.474895, 51.1452277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06395281" }, "bbox": [ -0.4782862, 51.1476355, -0.4782862, 51.1476355 ], "geometry": { "type": "Point", "coordinates": [ -0.4782862, 51.1476355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06397788" }, "bbox": [ -0.474996, 51.1482316, -0.474996, 51.1482316 ], "geometry": { "type": "Point", "coordinates": [ -0.474996, 51.1482316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04407852" }, "bbox": [ -0.5031862, 51.1543872, -0.5031862, 51.1543872 ], "geometry": { "type": "Point", "coordinates": [ -0.5031862, 51.1543872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04407848" }, "bbox": [ -0.5031716, 51.1539914, -0.5031716, 51.1539914 ], "geometry": { "type": "Point", "coordinates": [ -0.5031716, 51.1539914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04408248" }, "bbox": [ -0.5025848, 51.1539549, -0.5025848, 51.1539549 ], "geometry": { "type": "Point", "coordinates": [ -0.5025848, 51.1539549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32432534" }, "bbox": [ -0.109524, 51.1740276, -0.109524, 51.1740276 ], "geometry": { "type": "Point", "coordinates": [ -0.109524, 51.1740276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32433565" }, "bbox": [ -0.1078944, 51.1767754, -0.1078944, 51.1767754 ], "geometry": { "type": "Point", "coordinates": [ -0.1078944, 51.1767754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32431860" }, "bbox": [ -0.1103017, 51.1763529, -0.1103017, 51.1763529 ], "geometry": { "type": "Point", "coordinates": [ -0.1103017, 51.1763529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13450093" }, "bbox": [ -0.3836991, 51.2014366, -0.3836991, 51.2014366 ], "geometry": { "type": "Point", "coordinates": [ -0.3836991, 51.2014366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12456997" }, "bbox": [ -0.3887527, 51.2022443, -0.3887527, 51.2022443 ], "geometry": { "type": "Point", "coordinates": [ -0.3887527, 51.2022443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20419094" }, "bbox": [ -0.2721982, 51.1641826, -0.2721982, 51.1641826 ], "geometry": { "type": "Point", "coordinates": [ -0.2721982, 51.1641826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20418097" }, "bbox": [ -0.2737359, 51.1642358, -0.2737359, 51.1642358 ], "geometry": { "type": "Point", "coordinates": [ -0.2737359, 51.1642358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20417995" }, "bbox": [ -0.2739506, 51.1640104, -0.2739506, 51.1640104 ], "geometry": { "type": "Point", "coordinates": [ -0.2739506, 51.1640104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20428919" }, "bbox": [ -0.2720392, 51.1649176, -0.2720392, 51.1649176 ], "geometry": { "type": "Point", "coordinates": [ -0.2720392, 51.1649176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20429522" }, "bbox": [ -0.2713189, 51.1664675, -0.2713189, 51.1664675 ], "geometry": { "type": "Point", "coordinates": [ -0.2713189, 51.1664675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20428234" }, "bbox": [ -0.273468, 51.1672657, -0.273468, 51.1672657 ], "geometry": { "type": "Point", "coordinates": [ -0.273468, 51.1672657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20427812" }, "bbox": [ -0.2740175, 51.1657321, -0.2740175, 51.1657321 ], "geometry": { "type": "Point", "coordinates": [ -0.2740175, 51.1657321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20428208" }, "bbox": [ -0.2734778, 51.1651458, -0.2734778, 51.1651458 ], "geometry": { "type": "Point", "coordinates": [ -0.2734778, 51.1651458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20429208" }, "bbox": [ -0.2720823, 51.165439, -0.2720823, 51.165439 ], "geometry": { "type": "Point", "coordinates": [ -0.2720823, 51.165439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20427404" }, "bbox": [ -0.2744609, 51.1646097, -0.2744609, 51.1646097 ], "geometry": { "type": "Point", "coordinates": [ -0.2744609, 51.1646097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23445046" }, "bbox": [ -0.234235, 51.1860437, -0.234235, 51.1860437 ], "geometry": { "type": "Point", "coordinates": [ -0.234235, 51.1860437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23442522" }, "bbox": [ -0.2380614, 51.1838463, -0.2380614, 51.1838463 ], "geometry": { "type": "Point", "coordinates": [ -0.2380614, 51.1838463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23449843" }, "bbox": [ -0.227507, 51.185622, -0.227507, 51.185622 ], "geometry": { "type": "Point", "coordinates": [ -0.227507, 51.185622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32433922" }, "bbox": [ -0.1074721, 51.1729712, -0.1074721, 51.1729712 ], "geometry": { "type": "Point", "coordinates": [ -0.1074721, 51.1729712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388612" }, "bbox": [ -0.6883685, 51.1350698, -0.6883685, 51.1350698 ], "geometry": { "type": "Point", "coordinates": [ -0.6883685, 51.1350698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91389912" }, "bbox": [ -0.6864202, 51.1350398, -0.6864202, 51.1350398 ], "geometry": { "type": "Point", "coordinates": [ -0.6864202, 51.1350398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91389211" }, "bbox": [ -0.6874014, 51.1349836, -0.6874014, 51.1349836 ], "geometry": { "type": "Point", "coordinates": [ -0.6874014, 51.1349836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20418093" }, "bbox": [ -0.2735989, 51.1638581, -0.2735989, 51.1638581 ], "geometry": { "type": "Point", "coordinates": [ -0.2735989, 51.1638581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06477653" }, "bbox": [ -0.4726782, 51.217007, -0.4726782, 51.217007 ], "geometry": { "type": "Point", "coordinates": [ -0.4726782, 51.217007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09415127" }, "bbox": [ -0.4363452, 51.1595774, -0.4363452, 51.1595774 ], "geometry": { "type": "Point", "coordinates": [ -0.4363452, 51.1595774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09416138" }, "bbox": [ -0.4337365, 51.161227, -0.4337365, 51.161227 ], "geometry": { "type": "Point", "coordinates": [ -0.4337365, 51.161227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08418822" }, "bbox": [ -0.4441283, 51.1599376, -0.4441283, 51.1599376 ], "geometry": { "type": "Point", "coordinates": [ -0.4441283, 51.1599376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09402099" }, "bbox": [ -0.4397672, 51.157792, -0.4397672, 51.157792 ], "geometry": { "type": "Point", "coordinates": [ -0.4397672, 51.157792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09404486" }, "bbox": [ -0.43647, 51.1566113, -0.43647, 51.1566113 ], "geometry": { "type": "Point", "coordinates": [ -0.43647, 51.1566113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34508578" }, "bbox": [ -0.0696279, 51.2402718, -0.0696279, 51.2402718 ], "geometry": { "type": "Point", "coordinates": [ -0.0696279, 51.2402718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34509586" }, "bbox": [ -0.0677455, 51.2410892, -0.0677455, 51.2410892 ], "geometry": { "type": "Point", "coordinates": [ -0.0677455, 51.2410892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34519207" }, "bbox": [ -0.0686647, 51.2429204, -0.0686647, 51.2429204 ], "geometry": { "type": "Point", "coordinates": [ -0.0686647, 51.2429204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35500971" }, "bbox": [ -0.06597, 51.2391793, -0.06597, 51.2391793 ], "geometry": { "type": "Point", "coordinates": [ -0.06597, 51.2391793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35510308" }, "bbox": [ -0.0670031, 51.2428954, -0.0670031, 51.2428954 ], "geometry": { "type": "Point", "coordinates": [ -0.0670031, 51.2428954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35511407" }, "bbox": [ -0.065482, 51.242782, -0.065482, 51.242782 ], "geometry": { "type": "Point", "coordinates": [ -0.065482, 51.242782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22457386" }, "bbox": [ -0.2443424, 51.1984179, -0.2443424, 51.1984179 ], "geometry": { "type": "Point", "coordinates": [ -0.2443424, 51.1984179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33516734" }, "bbox": [ -0.0861529, 51.245678, -0.0861529, 51.245678 ], "geometry": { "type": "Point", "coordinates": [ -0.0861529, 51.245678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18426601" }, "bbox": [ -0.3020007, 51.164883, -0.3020007, 51.164883 ], "geometry": { "type": "Point", "coordinates": [ -0.3020007, 51.164883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37589972" }, "bbox": [ -0.0210975, 51.3109335, -0.0210975, 51.3109335 ], "geometry": { "type": "Point", "coordinates": [ -0.0210975, 51.3109335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40444494" }, "bbox": [ 0.0083276, 51.1864076, 0.0083276, 51.1864076 ], "geometry": { "type": "Point", "coordinates": [ 0.0083276, 51.1864076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97475162" }, "bbox": [ -0.6053042, 51.2193792, -0.6053042, 51.2193792 ], "geometry": { "type": "Point", "coordinates": [ -0.6053042, 51.2193792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96468946" }, "bbox": [ -0.6144071, 51.2090921, -0.6144071, 51.2090921 ], "geometry": { "type": "Point", "coordinates": [ -0.6144071, 51.2090921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97460193" }, "bbox": [ -0.6133288, 51.21347, -0.6133288, 51.21347 ], "geometry": { "type": "Point", "coordinates": [ -0.6133288, 51.21347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96476731" }, "bbox": [ -0.6173836, 51.2165037, -0.6173836, 51.2165037 ], "geometry": { "type": "Point", "coordinates": [ -0.6173836, 51.2165037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09609943" }, "bbox": [ -0.4223245, 51.332501, -0.4223245, 51.332501 ], "geometry": { "type": "Point", "coordinates": [ -0.4223245, 51.332501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11588433" }, "bbox": [ -0.3964892, 51.313152, -0.3964892, 51.313152 ], "geometry": { "type": "Point", "coordinates": [ -0.3964892, 51.313152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38509140" }, "bbox": [ -0.0121557, 51.2355065, -0.0121557, 51.2355065 ], "geometry": { "type": "Point", "coordinates": [ -0.0121557, 51.2355065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21529203" }, "bbox": [ -0.2546505, 51.2543377, -0.2546505, 51.2543377 ], "geometry": { "type": "Point", "coordinates": [ -0.2546505, 51.2543377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22510724" }, "bbox": [ -0.2523436, 51.2473575, -0.2523436, 51.2473575 ], "geometry": { "type": "Point", "coordinates": [ -0.2523436, 51.2473575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22521207" }, "bbox": [ -0.2514837, 51.2542155, -0.2514837, 51.2542155 ], "geometry": { "type": "Point", "coordinates": [ -0.2514837, 51.2542155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493961" }, "bbox": [ -0.0621549, 51.2296785, -0.0621549, 51.2296785 ], "geometry": { "type": "Point", "coordinates": [ -0.0621549, 51.2296785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35494057" }, "bbox": [ -0.0621592, 51.2293242, -0.0621592, 51.2293242 ], "geometry": { "type": "Point", "coordinates": [ -0.0621592, 51.2293242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493359" }, "bbox": [ -0.0631953, 51.2294822, -0.0631953, 51.2294822 ], "geometry": { "type": "Point", "coordinates": [ -0.0631953, 51.2294822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93436906" }, "bbox": [ -0.6604791, 51.1790652, -0.6604791, 51.1790652 ], "geometry": { "type": "Point", "coordinates": [ -0.6604791, 51.1790652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94420350" }, "bbox": [ -0.6562558, 51.1741207, -0.6562558, 51.1741207 ], "geometry": { "type": "Point", "coordinates": [ -0.6562558, 51.1741207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94420792" }, "bbox": [ -0.6554883, 51.17776, -0.6554883, 51.17776 ], "geometry": { "type": "Point", "coordinates": [ -0.6554883, 51.17776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92429353" }, "bbox": [ -0.6720735, 51.1744914, -0.6720735, 51.1744914 ], "geometry": { "type": "Point", "coordinates": [ -0.6720735, 51.1744914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92429373" }, "bbox": [ -0.67279, 51.1759384, -0.67279, 51.1759384 ], "geometry": { "type": "Point", "coordinates": [ -0.67279, 51.1759384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92439761" }, "bbox": [ -0.6711268, 51.1842824, -0.6711268, 51.1842824 ], "geometry": { "type": "Point", "coordinates": [ -0.6711268, 51.1842824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93423853" }, "bbox": [ -0.6655426, 51.1744865, -0.6655426, 51.1744865 ], "geometry": { "type": "Point", "coordinates": [ -0.6655426, 51.1744865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93422343" }, "bbox": [ -0.6675504, 51.1735879, -0.6675504, 51.1735879 ], "geometry": { "type": "Point", "coordinates": [ -0.6675504, 51.1735879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37576673" }, "bbox": [ -0.0267657, 51.3023376, -0.0267657, 51.3023376 ], "geometry": { "type": "Point", "coordinates": [ -0.0267657, 51.3023376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36505581" }, "bbox": [ -0.0446823, 51.2400862, -0.0446823, 51.2400862 ], "geometry": { "type": "Point", "coordinates": [ -0.0446823, 51.2400862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87475991" }, "bbox": [ -0.746835, 51.2237705, -0.746835, 51.2237705 ], "geometry": { "type": "Point", "coordinates": [ -0.746835, 51.2237705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87485404" }, "bbox": [ -0.747852, 51.2250993, -0.747852, 51.2250993 ], "geometry": { "type": "Point", "coordinates": [ -0.747852, 51.2250993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98540273" }, "bbox": [ -0.5960286, 51.2832161, -0.5960286, 51.2832161 ], "geometry": { "type": "Point", "coordinates": [ -0.5960286, 51.2832161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98547360" }, "bbox": [ -0.5857859, 51.2820536, -0.5857859, 51.2820536 ], "geometry": { "type": "Point", "coordinates": [ -0.5857859, 51.2820536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98548339" }, "bbox": [ -0.5842504, 51.2802768, -0.5842504, 51.2802768 ], "geometry": { "type": "Point", "coordinates": [ -0.5842504, 51.2802768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98548262" }, "bbox": [ -0.584375, 51.2823463, -0.584375, 51.2823463 ], "geometry": { "type": "Point", "coordinates": [ -0.584375, 51.2823463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98544014" }, "bbox": [ -0.5905923, 51.2778999, -0.5905923, 51.2778999 ], "geometry": { "type": "Point", "coordinates": [ -0.5905923, 51.2778999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98542034" }, "bbox": [ -0.5934873, 51.2798603, -0.5934873, 51.2798603 ], "geometry": { "type": "Point", "coordinates": [ -0.5934873, 51.2798603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98542576" }, "bbox": [ -0.5930316, 51.2836399, -0.5930316, 51.2836399 ], "geometry": { "type": "Point", "coordinates": [ -0.5930316, 51.2836399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98542865" }, "bbox": [ -0.5921724, 51.2825659, -0.5921724, 51.2825659 ], "geometry": { "type": "Point", "coordinates": [ -0.5921724, 51.2825659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98541768" }, "bbox": [ -0.5937866, 51.2829019, -0.5937866, 51.2829019 ], "geometry": { "type": "Point", "coordinates": [ -0.5937866, 51.2829019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98547561" }, "bbox": [ -0.5851574, 51.2821687, -0.5851574, 51.2821687 ], "geometry": { "type": "Point", "coordinates": [ -0.5851574, 51.2821687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98548280" }, "bbox": [ -0.5845714, 51.2838264, -0.5845714, 51.2838264 ], "geometry": { "type": "Point", "coordinates": [ -0.5845714, 51.2838264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98547737" }, "bbox": [ -0.5854443, 51.280012, -0.5854443, 51.280012 ], "geometry": { "type": "Point", "coordinates": [ -0.5854443, 51.280012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98544145" }, "bbox": [ -0.590455, 51.280622, -0.590455, 51.280622 ], "geometry": { "type": "Point", "coordinates": [ -0.590455, 51.280622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98548486" }, "bbox": [ -0.5840244, 51.2843121, -0.5840244, 51.2843121 ], "geometry": { "type": "Point", "coordinates": [ -0.5840244, 51.2843121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98545959" }, "bbox": [ -0.5878356, 51.282032, -0.5878356, 51.282032 ], "geometry": { "type": "Point", "coordinates": [ -0.5878356, 51.282032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98542925" }, "bbox": [ -0.5921581, 51.279011, -0.5921581, 51.279011 ], "geometry": { "type": "Point", "coordinates": [ -0.5921581, 51.279011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98540851" }, "bbox": [ -0.5950683, 51.2814076, -0.5950683, 51.2814076 ], "geometry": { "type": "Point", "coordinates": [ -0.5950683, 51.2814076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98545778" }, "bbox": [ -0.5881919, 51.2837012, -0.5881919, 51.2837012 ], "geometry": { "type": "Point", "coordinates": [ -0.5881919, 51.2837012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28577836" }, "bbox": [ -0.1541305, 51.3008172, -0.1541305, 51.3008172 ], "geometry": { "type": "Point", "coordinates": [ -0.1541305, 51.3008172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28575532" }, "bbox": [ -0.1584783, 51.3000903, -0.1584783, 51.3000903 ], "geometry": { "type": "Point", "coordinates": [ -0.1584783, 51.3000903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28577320" }, "bbox": [ -0.1548424, 51.2993557, -0.1548424, 51.2993557 ], "geometry": { "type": "Point", "coordinates": [ -0.1548424, 51.2993557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28571707" }, "bbox": [ -0.1616287, 51.2983643, -0.1616287, 51.2983643 ], "geometry": { "type": "Point", "coordinates": [ -0.1616287, 51.2983643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35559860" }, "bbox": [ -0.0508283, 51.2829127, -0.0508283, 51.2829127 ], "geometry": { "type": "Point", "coordinates": [ -0.0508283, 51.2829127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36551457" }, "bbox": [ -0.0491048, 51.2830116, -0.0491048, 51.2830116 ], "geometry": { "type": "Point", "coordinates": [ -0.0491048, 51.2830116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30541178" }, "bbox": [ -0.1358842, 51.2772777, -0.1358842, 51.2772777 ], "geometry": { "type": "Point", "coordinates": [ -0.1358842, 51.2772777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35489794" }, "bbox": [ -0.0547905, 51.2237359, -0.0547905, 51.2237359 ], "geometry": { "type": "Point", "coordinates": [ -0.0547905, 51.2237359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95373772" }, "bbox": [ -0.6381382, 51.1306605, -0.6381382, 51.1306605 ], "geometry": { "type": "Point", "coordinates": [ -0.6381382, 51.1306605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38476896" }, "bbox": [ -0.0156961, 51.2141759, -0.0156961, 51.2141759 ], "geometry": { "type": "Point", "coordinates": [ -0.0156961, 51.2141759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38476695" }, "bbox": [ -0.0168202, 51.2138706, -0.0168202, 51.2138706 ], "geometry": { "type": "Point", "coordinates": [ -0.0168202, 51.2138706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18400156" }, "bbox": [ -0.3140233, 51.1523936, -0.3140233, 51.1523936 ], "geometry": { "type": "Point", "coordinates": [ -0.3140233, 51.1523936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17408061" }, "bbox": [ -0.3168828, 51.1526812, -0.3168828, 51.1526812 ], "geometry": { "type": "Point", "coordinates": [ -0.3168828, 51.1526812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17409248" }, "bbox": [ -0.3152369, 51.1514445, -0.3152369, 51.1514445 ], "geometry": { "type": "Point", "coordinates": [ -0.3152369, 51.1514445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10569581" }, "bbox": [ -0.4099103, 51.2997174, -0.4099103, 51.2997174 ], "geometry": { "type": "Point", "coordinates": [ -0.4099103, 51.2997174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25451446" }, "bbox": [ -0.2106163, 51.1946084, -0.2106163, 51.1946084 ], "geometry": { "type": "Point", "coordinates": [ -0.2106163, 51.1946084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25452890" }, "bbox": [ -0.208319, 51.1985477, -0.208319, 51.1985477 ], "geometry": { "type": "Point", "coordinates": [ -0.208319, 51.1985477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25453362" }, "bbox": [ -0.2076296, 51.1959437, -0.2076296, 51.1959437 ], "geometry": { "type": "Point", "coordinates": [ -0.2076296, 51.1959437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24428781" }, "bbox": [ -0.2151936, 51.1709558, -0.2151936, 51.1709558 ], "geometry": { "type": "Point", "coordinates": [ -0.2151936, 51.1709558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16495415" }, "bbox": [ -0.3322588, 51.2296845, -0.3322588, 51.2296845 ], "geometry": { "type": "Point", "coordinates": [ -0.3322588, 51.2296845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06632812" }, "bbox": [ -0.4733266, 51.3572607, -0.4733266, 51.3572607 ], "geometry": { "type": "Point", "coordinates": [ -0.4733266, 51.3572607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06632723" }, "bbox": [ -0.4751317, 51.3583811, -0.4751317, 51.3583811 ], "geometry": { "type": "Point", "coordinates": [ -0.4751317, 51.3583811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06633810" }, "bbox": [ -0.4733688, 51.3571074, -0.4733688, 51.3571074 ], "geometry": { "type": "Point", "coordinates": [ -0.4733688, 51.3571074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06631393" }, "bbox": [ -0.4768522, 51.3646036, -0.4768522, 51.3646036 ], "geometry": { "type": "Point", "coordinates": [ -0.4768522, 51.3646036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06631343" }, "bbox": [ -0.4768731, 51.3600858, -0.4768731, 51.3600858 ], "geometry": { "type": "Point", "coordinates": [ -0.4768731, 51.3600858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05636855" }, "bbox": [ -0.4834638, 51.361278, -0.4834638, 51.361278 ], "geometry": { "type": "Point", "coordinates": [ -0.4834638, 51.361278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05637541" }, "bbox": [ -0.482305, 51.3598346, -0.482305, 51.3598346 ], "geometry": { "type": "Point", "coordinates": [ -0.482305, 51.3598346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05638573" }, "bbox": [ -0.4808448, 51.3629517, -0.4808448, 51.3629517 ], "geometry": { "type": "Point", "coordinates": [ -0.4808448, 51.3629517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95417239" }, "bbox": [ -0.6325095, 51.1637008, -0.6325095, 51.1637008 ], "geometry": { "type": "Point", "coordinates": [ -0.6325095, 51.1637008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95419156" }, "bbox": [ -0.6295688, 51.1653122, -0.6295688, 51.1653122 ], "geometry": { "type": "Point", "coordinates": [ -0.6295688, 51.1653122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96400299" }, "bbox": [ -0.6273547, 51.1595147, -0.6273547, 51.1595147 ], "geometry": { "type": "Point", "coordinates": [ -0.6273547, 51.1595147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96417892" }, "bbox": [ -0.6171828, 51.1681717, -0.6171828, 51.1681717 ], "geometry": { "type": "Point", "coordinates": [ -0.6171828, 51.1681717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16510667" }, "bbox": [ -0.3385146, 51.2525286, -0.3385146, 51.2525286 ], "geometry": { "type": "Point", "coordinates": [ -0.3385146, 51.2525286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15520222" }, "bbox": [ -0.352234, 51.2574697, -0.352234, 51.2574697 ], "geometry": { "type": "Point", "coordinates": [ -0.352234, 51.2574697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15515890" }, "bbox": [ -0.3445401, 51.2548075, -0.3445401, 51.2548075 ], "geometry": { "type": "Point", "coordinates": [ -0.3445401, 51.2548075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15517994" }, "bbox": [ -0.3419812, 51.2549416, -0.3419812, 51.2549416 ], "geometry": { "type": "Point", "coordinates": [ -0.3419812, 51.2549416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15518895" }, "bbox": [ -0.3408082, 51.2549588, -0.3408082, 51.2549588 ], "geometry": { "type": "Point", "coordinates": [ -0.3408082, 51.2549588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15513080" }, "bbox": [ -0.3496229, 51.2536046, -0.3496229, 51.2536046 ], "geometry": { "type": "Point", "coordinates": [ -0.3496229, 51.2536046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36605727" }, "bbox": [ -0.0415431, 51.3253015, -0.0415431, 51.3253015 ], "geometry": { "type": "Point", "coordinates": [ -0.0415431, 51.3253015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586425" }, "bbox": [ -0.3996721, 51.3124744, -0.3996721, 51.3124744 ], "geometry": { "type": "Point", "coordinates": [ -0.3996721, 51.3124744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05689521" }, "bbox": [ -0.4776504, 51.4029712, -0.4776504, 51.4029712 ], "geometry": { "type": "Point", "coordinates": [ -0.4776504, 51.4029712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06670794" }, "bbox": [ -0.476605, 51.4005551, -0.476605, 51.4005551 ], "geometry": { "type": "Point", "coordinates": [ -0.476605, 51.4005551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05678499" }, "bbox": [ -0.479691, 51.4011172, -0.479691, 51.4011172 ], "geometry": { "type": "Point", "coordinates": [ -0.479691, 51.4011172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05679497" }, "bbox": [ -0.4783339, 51.4010024, -0.4783339, 51.4010024 ], "geometry": { "type": "Point", "coordinates": [ -0.4783339, 51.4010024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83420544" }, "bbox": [ -0.8132591, 51.1753144, -0.8132591, 51.1753144 ], "geometry": { "type": "Point", "coordinates": [ -0.8132591, 51.1753144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28457354" }, "bbox": [ -0.1593234, 51.1957347, -0.1593234, 51.1957347 ], "geometry": { "type": "Point", "coordinates": [ -0.1593234, 51.1957347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28457033" }, "bbox": [ -0.1593358, 51.1926466, -0.1593358, 51.1926466 ], "geometry": { "type": "Point", "coordinates": [ -0.1593358, 51.1926466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05433201" }, "bbox": [ -0.4956772, 51.1769692, -0.4956772, 51.1769692 ], "geometry": { "type": "Point", "coordinates": [ -0.4956772, 51.1769692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05436720" }, "bbox": [ -0.4898093, 51.1782632, -0.4898093, 51.1782632 ], "geometry": { "type": "Point", "coordinates": [ -0.4898093, 51.1782632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05436446" }, "bbox": [ -0.4895378, 51.1805948, -0.4895378, 51.1805948 ], "geometry": { "type": "Point", "coordinates": [ -0.4895378, 51.1805948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05436949" }, "bbox": [ -0.4890836, 51.1810222, -0.4890836, 51.1810222 ], "geometry": { "type": "Point", "coordinates": [ -0.4890836, 51.1810222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05437928" }, "bbox": [ -0.4880944, 51.1787625, -0.4880944, 51.1787625 ], "geometry": { "type": "Point", "coordinates": [ -0.4880944, 51.1787625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05436421" }, "bbox": [ -0.4905419, 51.1786458, -0.4905419, 51.1786458 ], "geometry": { "type": "Point", "coordinates": [ -0.4905419, 51.1786458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05423819" }, "bbox": [ -0.494443, 51.169501, -0.494443, 51.169501 ], "geometry": { "type": "Point", "coordinates": [ -0.494443, 51.169501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05421118" }, "bbox": [ -0.4978172, 51.1693361, -0.4978172, 51.1693361 ], "geometry": { "type": "Point", "coordinates": [ -0.4978172, 51.1693361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05421694" }, "bbox": [ -0.4965072, 51.1761567, -0.4965072, 51.1761567 ], "geometry": { "type": "Point", "coordinates": [ -0.4965072, 51.1761567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05421740" }, "bbox": [ -0.4975887, 51.1712495, -0.4975887, 51.1712495 ], "geometry": { "type": "Point", "coordinates": [ -0.4975887, 51.1712495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05422715" }, "bbox": [ -0.4955056, 51.1689635, -0.4955056, 51.1689635 ], "geometry": { "type": "Point", "coordinates": [ -0.4955056, 51.1689635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05426490" }, "bbox": [ -0.4900812, 51.1757197, -0.4900812, 51.1757197 ], "geometry": { "type": "Point", "coordinates": [ -0.4900812, 51.1757197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05422424" }, "bbox": [ -0.4959748, 51.1698274, -0.4959748, 51.1698274 ], "geometry": { "type": "Point", "coordinates": [ -0.4959748, 51.1698274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05422695" }, "bbox": [ -0.4954356, 51.176162, -0.4954356, 51.176162 ], "geometry": { "type": "Point", "coordinates": [ -0.4954356, 51.176162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05420686" }, "bbox": [ -0.4983164, 51.1754862, -0.4983164, 51.1754862 ], "geometry": { "type": "Point", "coordinates": [ -0.4983164, 51.1754862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05420884" }, "bbox": [ -0.4980081, 51.1752061, -0.4980081, 51.1752061 ], "geometry": { "type": "Point", "coordinates": [ -0.4980081, 51.1752061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05420406" }, "bbox": [ -0.4990232, 51.1681635, -0.4990232, 51.1681635 ], "geometry": { "type": "Point", "coordinates": [ -0.4990232, 51.1681635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04438709" }, "bbox": [ -0.4998388, 51.1775562, -0.4998388, 51.1775562 ], "geometry": { "type": "Point", "coordinates": [ -0.4998388, 51.1775562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04438668" }, "bbox": [ -0.5011823, 51.1829192, -0.5011823, 51.1829192 ], "geometry": { "type": "Point", "coordinates": [ -0.5011823, 51.1829192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04439808" }, "bbox": [ -0.4994936, 51.1775155, -0.4994936, 51.1775155 ], "geometry": { "type": "Point", "coordinates": [ -0.4994936, 51.1775155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04437507" }, "bbox": [ -0.5027331, 51.1774382, -0.5027331, 51.1774382 ], "geometry": { "type": "Point", "coordinates": [ -0.5027331, 51.1774382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04427024" }, "bbox": [ -0.5032445, 51.1698114, -0.5032445, 51.1698114 ], "geometry": { "type": "Point", "coordinates": [ -0.5032445, 51.1698114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04424728" }, "bbox": [ -0.5072639, 51.1701505, -0.5072639, 51.1701505 ], "geometry": { "type": "Point", "coordinates": [ -0.5072639, 51.1701505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04423171" }, "bbox": [ -0.508602, 51.1742572, -0.508602, 51.1742572 ], "geometry": { "type": "Point", "coordinates": [ -0.508602, 51.1742572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04424704" }, "bbox": [ -0.5063339, 51.1683293, -0.5063339, 51.1683293 ], "geometry": { "type": "Point", "coordinates": [ -0.5063339, 51.1683293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04429975" }, "bbox": [ -0.4994169, 51.174482, -0.4994169, 51.174482 ], "geometry": { "type": "Point", "coordinates": [ -0.4994169, 51.174482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04427050" }, "bbox": [ -0.5038274, 51.1722328, -0.5038274, 51.1722328 ], "geometry": { "type": "Point", "coordinates": [ -0.5038274, 51.1722328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07475026" }, "bbox": [ -0.4623071, 51.2144413, -0.4623071, 51.2144413 ], "geometry": { "type": "Point", "coordinates": [ -0.4623071, 51.2144413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00407194" }, "bbox": [ -0.5612041, 51.15887, -0.5612041, 51.15887 ], "geometry": { "type": "Point", "coordinates": [ -0.5612041, 51.15887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00408782" }, "bbox": [ -0.5589439, 51.1578931, -0.5589439, 51.1578931 ], "geometry": { "type": "Point", "coordinates": [ -0.5589439, 51.1578931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410304" }, "bbox": [ -0.5566678, 51.159448, -0.5566678, 51.159448 ], "geometry": { "type": "Point", "coordinates": [ -0.5566678, 51.159448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07475150" }, "bbox": [ -0.4614839, 51.2164989, -0.4614839, 51.2164989 ], "geometry": { "type": "Point", "coordinates": [ -0.4614839, 51.2164989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13391668" }, "bbox": [ -0.3835228, 51.1452967, -0.3835228, 51.1452967 ], "geometry": { "type": "Point", "coordinates": [ -0.3835228, 51.1452967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13391854" }, "bbox": [ -0.3837347, 51.144347, -0.3837347, 51.144347 ], "geometry": { "type": "Point", "coordinates": [ -0.3837347, 51.144347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16414607" }, "bbox": [ -0.3363129, 51.1562507, -0.3363129, 51.1562507 ], "geometry": { "type": "Point", "coordinates": [ -0.3363129, 51.1562507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28467786" }, "bbox": [ -0.1586532, 51.2065286, -0.1586532, 51.2065286 ], "geometry": { "type": "Point", "coordinates": [ -0.1586532, 51.2065286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28466990" }, "bbox": [ -0.1586026, 51.2069859, -0.1586026, 51.2069859 ], "geometry": { "type": "Point", "coordinates": [ -0.1586026, 51.2069859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94338166" }, "bbox": [ -0.6470098, 51.0951374, -0.6470098, 51.0951374 ], "geometry": { "type": "Point", "coordinates": [ -0.6470098, 51.0951374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05432751" }, "bbox": [ -0.4951261, 51.1812652, -0.4951261, 51.1812652 ], "geometry": { "type": "Point", "coordinates": [ -0.4951261, 51.1812652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05432152" }, "bbox": [ -0.4958185, 51.1810902, -0.4958185, 51.1810902 ], "geometry": { "type": "Point", "coordinates": [ -0.4958185, 51.1810902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15520864" }, "bbox": [ -0.3513639, 51.2611028, -0.3513639, 51.2611028 ], "geometry": { "type": "Point", "coordinates": [ -0.3513639, 51.2611028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15520296" }, "bbox": [ -0.3538247, 51.2638706, -0.3538247, 51.2638706 ], "geometry": { "type": "Point", "coordinates": [ -0.3538247, 51.2638706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14528667" }, "bbox": [ -0.3549465, 51.2617655, -0.3549465, 51.2617655 ], "geometry": { "type": "Point", "coordinates": [ -0.3549465, 51.2617655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14523391" }, "bbox": [ -0.3624954, 51.2636133, -0.3624954, 51.2636133 ], "geometry": { "type": "Point", "coordinates": [ -0.3624954, 51.2636133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28456590" }, "bbox": [ -0.160114, 51.1978822, -0.160114, 51.1978822 ], "geometry": { "type": "Point", "coordinates": [ -0.160114, 51.1978822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26436262" }, "bbox": [ -0.1898968, 51.1776946, -0.1898968, 51.1776946 ], "geometry": { "type": "Point", "coordinates": [ -0.1898968, 51.1776946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94349126" }, "bbox": [ -0.645817, 51.0996504, -0.645817, 51.0996504 ], "geometry": { "type": "Point", "coordinates": [ -0.645817, 51.0996504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425446" }, "bbox": [ -0.7637315, 51.1747566, -0.7637315, 51.1747566 ], "geometry": { "type": "Point", "coordinates": [ -0.7637315, 51.1747566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28459231" }, "bbox": [ -0.1562736, 51.1920902, -0.1562736, 51.1920902 ], "geometry": { "type": "Point", "coordinates": [ -0.1562736, 51.1920902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28458934" }, "bbox": [ -0.1564867, 51.1929389, -0.1564867, 51.1929389 ], "geometry": { "type": "Point", "coordinates": [ -0.1564867, 51.1929389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05462618" }, "bbox": [ -0.4960822, 51.2055956, -0.4960822, 51.2055956 ], "geometry": { "type": "Point", "coordinates": [ -0.4960822, 51.2055956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08360146" }, "bbox": [ -0.4572199, 51.1178866, -0.4572199, 51.1178866 ], "geometry": { "type": "Point", "coordinates": [ -0.4572199, 51.1178866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02428342" }, "bbox": [ -0.5301989, 51.1718882, -0.5301989, 51.1718882 ], "geometry": { "type": "Point", "coordinates": [ -0.5301989, 51.1718882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08361479" }, "bbox": [ -0.4562512, 51.1201266, -0.4562512, 51.1201266 ], "geometry": { "type": "Point", "coordinates": [ -0.4562512, 51.1201266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37430711" }, "bbox": [ -0.040655, 51.1708525, -0.040655, 51.1708525 ], "geometry": { "type": "Point", "coordinates": [ -0.040655, 51.1708525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35512239" }, "bbox": [ -0.0640978, 51.2458234, -0.0640978, 51.2458234 ], "geometry": { "type": "Point", "coordinates": [ -0.0640978, 51.2458234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39598452" }, "bbox": [ 0.0050195, 51.3176016, 0.0050195, 51.3176016 ], "geometry": { "type": "Point", "coordinates": [ 0.0050195, 51.3176016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39487415" }, "bbox": [ -0.0002008, 51.2153138, -0.0002008, 51.2153138 ], "geometry": { "type": "Point", "coordinates": [ -0.0002008, 51.2153138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02350451" }, "bbox": [ -0.5437528, 51.1098446, -0.5437528, 51.1098446 ], "geometry": { "type": "Point", "coordinates": [ -0.5437528, 51.1098446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01357238" }, "bbox": [ -0.5482988, 51.1087345, -0.5482988, 51.1087345 ], "geometry": { "type": "Point", "coordinates": [ -0.5482988, 51.1087345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01358462" }, "bbox": [ -0.5462551, 51.1108836, -0.5462551, 51.1108836 ], "geometry": { "type": "Point", "coordinates": [ -0.5462551, 51.1108836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01359074" }, "bbox": [ -0.5454392, 51.1120503, -0.5454392, 51.1120503 ], "geometry": { "type": "Point", "coordinates": [ -0.5454392, 51.1120503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01358842" }, "bbox": [ -0.5460201, 51.1090601, -0.5460201, 51.1090601 ], "geometry": { "type": "Point", "coordinates": [ -0.5460201, 51.1090601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01358648" }, "bbox": [ -0.5463485, 51.1098017, -0.5463485, 51.1098017 ], "geometry": { "type": "Point", "coordinates": [ -0.5463485, 51.1098017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35599473" }, "bbox": [ -0.0504657, 51.3204259, -0.0504657, 51.3204259 ], "geometry": { "type": "Point", "coordinates": [ -0.0504657, 51.3204259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22619366" }, "bbox": [ -0.2366616, 51.3404398, -0.2366616, 51.3404398 ], "geometry": { "type": "Point", "coordinates": [ -0.2366616, 51.3404398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22619524" }, "bbox": [ -0.2348561, 51.3377987, -0.2348561, 51.3377987 ], "geometry": { "type": "Point", "coordinates": [ -0.2348561, 51.3377987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22617003" }, "bbox": [ -0.2400184, 51.335126, -0.2400184, 51.335126 ], "geometry": { "type": "Point", "coordinates": [ -0.2400184, 51.335126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99640073" }, "bbox": [ -0.578527, 51.3731337, -0.578527, 51.3731337 ], "geometry": { "type": "Point", "coordinates": [ -0.578527, 51.3731337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18509373" }, "bbox": [ -0.2974417, 51.243441, -0.2974417, 51.243441 ], "geometry": { "type": "Point", "coordinates": [ -0.2974417, 51.243441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18505732" }, "bbox": [ -0.3031748, 51.2397009, -0.3031748, 51.2397009 ], "geometry": { "type": "Point", "coordinates": [ -0.3031748, 51.2397009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07600374" }, "bbox": [ -0.464962, 51.3356504, -0.464962, 51.3356504 ], "geometry": { "type": "Point", "coordinates": [ -0.464962, 51.3356504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17509430" }, "bbox": [ -0.3118708, 51.2397314, -0.3118708, 51.2397314 ], "geometry": { "type": "Point", "coordinates": [ -0.3118708, 51.2397314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06608671" }, "bbox": [ -0.4673377, 51.3353782, -0.4673377, 51.3353782 ], "geometry": { "type": "Point", "coordinates": [ -0.4673377, 51.3353782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92363452" }, "bbox": [ -0.6821236, 51.1204577, -0.6821236, 51.1204577 ], "geometry": { "type": "Point", "coordinates": [ -0.6821236, 51.1204577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92366273" }, "bbox": [ -0.6780841, 51.1224645, -0.6780841, 51.1224645 ], "geometry": { "type": "Point", "coordinates": [ -0.6780841, 51.1224645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94453651" }, "bbox": [ -0.6505672, 51.2011103, -0.6505672, 51.2011103 ], "geometry": { "type": "Point", "coordinates": [ -0.6505672, 51.2011103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442740" }, "bbox": [ -0.3233898, 51.1868252, -0.3233898, 51.1868252 ], "geometry": { "type": "Point", "coordinates": [ -0.3233898, 51.1868252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01353448" }, "bbox": [ -0.5538282, 51.1096251, -0.5538282, 51.1096251 ], "geometry": { "type": "Point", "coordinates": [ -0.5538282, 51.1096251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19490605" }, "bbox": [ -0.2962767, 51.2282482, -0.2962767, 51.2282482 ], "geometry": { "type": "Point", "coordinates": [ -0.2962767, 51.2282482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81477356" }, "bbox": [ -0.8310667, 51.2214244, -0.8310667, 51.2214244 ], "geometry": { "type": "Point", "coordinates": [ -0.8310667, 51.2214244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85436133" }, "bbox": [ -0.7758394, 51.1831831, -0.7758394, 51.1831831 ], "geometry": { "type": "Point", "coordinates": [ -0.7758394, 51.1831831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92377827" }, "bbox": [ -0.6755457, 51.1272372, -0.6755457, 51.1272372 ], "geometry": { "type": "Point", "coordinates": [ -0.6755457, 51.1272372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92376739" }, "bbox": [ -0.6770892, 51.12831, -0.6770892, 51.12831 ], "geometry": { "type": "Point", "coordinates": [ -0.6770892, 51.12831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92373743" }, "bbox": [ -0.6827877, 51.1276956, -0.6827877, 51.1276956 ], "geometry": { "type": "Point", "coordinates": [ -0.6827877, 51.1276956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92377634" }, "bbox": [ -0.6754694, 51.1278521, -0.6754694, 51.1278521 ], "geometry": { "type": "Point", "coordinates": [ -0.6754694, 51.1278521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92377356" }, "bbox": [ -0.6762995, 51.1296379, -0.6762995, 51.1296379 ], "geometry": { "type": "Point", "coordinates": [ -0.6762995, 51.1296379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92375225" }, "bbox": [ -0.6815426, 51.126446, -0.6815426, 51.126446 ], "geometry": { "type": "Point", "coordinates": [ -0.6815426, 51.126446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92376729" }, "bbox": [ -0.6771254, 51.1274889, -0.6771254, 51.1274889 ], "geometry": { "type": "Point", "coordinates": [ -0.6771254, 51.1274889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361089" }, "bbox": [ -0.6855653, 51.124, -0.6855653, 51.124 ], "geometry": { "type": "Point", "coordinates": [ -0.6855653, 51.124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01420604" }, "bbox": [ -0.5555741, 51.1687689, -0.5555741, 51.1687689 ], "geometry": { "type": "Point", "coordinates": [ -0.5555741, 51.1687689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421021" }, "bbox": [ -0.5544283, 51.1701562, -0.5544283, 51.1701562 ], "geometry": { "type": "Point", "coordinates": [ -0.5544283, 51.1701562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86475161" }, "bbox": [ -0.7623882, 51.2210729, -0.7623882, 51.2210729 ], "geometry": { "type": "Point", "coordinates": [ -0.7623882, 51.2210729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86477563" }, "bbox": [ -0.7591256, 51.2213619, -0.7591256, 51.2213619 ], "geometry": { "type": "Point", "coordinates": [ -0.7591256, 51.2213619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86477207" }, "bbox": [ -0.7596742, 51.2164291, -0.7596742, 51.2164291 ], "geometry": { "type": "Point", "coordinates": [ -0.7596742, 51.2164291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86475728" }, "bbox": [ -0.7617844, 51.2182692, -0.7617844, 51.2182692 ], "geometry": { "type": "Point", "coordinates": [ -0.7617844, 51.2182692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86465572" }, "bbox": [ -0.7619348, 51.2130376, -0.7619348, 51.2130376 ], "geometry": { "type": "Point", "coordinates": [ -0.7619348, 51.2130376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92475033" }, "bbox": [ -0.6769674, 51.2176933, -0.6769674, 51.2176933 ], "geometry": { "type": "Point", "coordinates": [ -0.6769674, 51.2176933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92475513" }, "bbox": [ -0.6762643, 51.2159215, -0.6762643, 51.2159215 ], "geometry": { "type": "Point", "coordinates": [ -0.6762643, 51.2159215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476757" }, "bbox": [ -0.67427, 51.2198154, -0.67427, 51.2198154 ], "geometry": { "type": "Point", "coordinates": [ -0.67427, 51.2198154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92476922" }, "bbox": [ -0.6737239, 51.2186045, -0.6737239, 51.2186045 ], "geometry": { "type": "Point", "coordinates": [ -0.6737239, 51.2186045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92479152" }, "bbox": [ -0.6710364, 51.2194226, -0.6710364, 51.2194226 ], "geometry": { "type": "Point", "coordinates": [ -0.6710364, 51.2194226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06447276" }, "bbox": [ -0.4743044, 51.1921337, -0.4743044, 51.1921337 ], "geometry": { "type": "Point", "coordinates": [ -0.4743044, 51.1921337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06447595" }, "bbox": [ -0.4736295, 51.1939124, -0.4736295, 51.1939124 ], "geometry": { "type": "Point", "coordinates": [ -0.4736295, 51.1939124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06448590" }, "bbox": [ -0.4723745, 51.1934061, -0.4723745, 51.1934061 ], "geometry": { "type": "Point", "coordinates": [ -0.4723745, 51.1934061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06445989" }, "bbox": [ -0.4759997, 51.1932856, -0.4759997, 51.1932856 ], "geometry": { "type": "Point", "coordinates": [ -0.4759997, 51.1932856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06447882" }, "bbox": [ -0.473539, 51.1926711, -0.473539, 51.1926711 ], "geometry": { "type": "Point", "coordinates": [ -0.473539, 51.1926711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89480459" }, "bbox": [ -0.7259962, 51.2296637, -0.7259962, 51.2296637 ], "geometry": { "type": "Point", "coordinates": [ -0.7259962, 51.2296637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87487917" }, "bbox": [ -0.745724, 51.226085, -0.745724, 51.226085 ], "geometry": { "type": "Point", "coordinates": [ -0.745724, 51.226085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87486410" }, "bbox": [ -0.7446891, 51.2249745, -0.7446891, 51.2249745 ], "geometry": { "type": "Point", "coordinates": [ -0.7446891, 51.2249745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88488278" }, "bbox": [ -0.7293132, 51.2312191, -0.7293132, 51.2312191 ], "geometry": { "type": "Point", "coordinates": [ -0.7293132, 51.2312191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98397940" }, "bbox": [ -0.5888172, 51.1452767, -0.5888172, 51.1452767 ], "geometry": { "type": "Point", "coordinates": [ -0.5888172, 51.1452767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96574740" }, "bbox": [ -0.6190467, 51.3074856, -0.6190467, 51.3074856 ], "geometry": { "type": "Point", "coordinates": [ -0.6190467, 51.3074856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87455272" }, "bbox": [ -0.749445, 51.203768, -0.749445, 51.203768 ], "geometry": { "type": "Point", "coordinates": [ -0.749445, 51.203768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432893" }, "bbox": [ -0.6806353, 51.1871061, -0.6806353, 51.1871061 ], "geometry": { "type": "Point", "coordinates": [ -0.6806353, 51.1871061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431684" }, "bbox": [ -0.6827766, 51.1864171, -0.6827766, 51.1864171 ], "geometry": { "type": "Point", "coordinates": [ -0.6827766, 51.1864171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432189" }, "bbox": [ -0.6817332, 51.1868948, -0.6817332, 51.1868948 ], "geometry": { "type": "Point", "coordinates": [ -0.6817332, 51.1868948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432394" }, "bbox": [ -0.6815546, 51.1873219, -0.6815546, 51.1873219 ], "geometry": { "type": "Point", "coordinates": [ -0.6815546, 51.1873219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431687" }, "bbox": [ -0.6824489, 51.1867131, -0.6824489, 51.1867131 ], "geometry": { "type": "Point", "coordinates": [ -0.6824489, 51.1867131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432887" }, "bbox": [ -0.6808385, 51.1866395, -0.6808385, 51.1866395 ], "geometry": { "type": "Point", "coordinates": [ -0.6808385, 51.1866395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92435887" }, "bbox": [ -0.6762778, 51.1865735, -0.6762778, 51.1865735 ], "geometry": { "type": "Point", "coordinates": [ -0.6762778, 51.1865735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432091" }, "bbox": [ -0.6819805, 51.1870702, -0.6819805, 51.1870702 ], "geometry": { "type": "Point", "coordinates": [ -0.6819805, 51.1870702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432393" }, "bbox": [ -0.6815222, 51.1871406, -0.6815222, 51.1871406 ], "geometry": { "type": "Point", "coordinates": [ -0.6815222, 51.1871406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432896" }, "bbox": [ -0.6810654, 51.1873818, -0.6810654, 51.1873818 ], "geometry": { "type": "Point", "coordinates": [ -0.6810654, 51.1873818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432498" }, "bbox": [ -0.6813216, 51.1876686, -0.6813216, 51.1876686 ], "geometry": { "type": "Point", "coordinates": [ -0.6813216, 51.1876686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42428371" }, "bbox": [ 0.0415297, 51.1659099, 0.0415297, 51.1659099 ], "geometry": { "type": "Point", "coordinates": [ 0.0415297, 51.1659099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42428072" }, "bbox": [ 0.0404158, 51.1658557, 0.0404158, 51.1658557 ], "geometry": { "type": "Point", "coordinates": [ 0.0404158, 51.1658557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42427556" }, "bbox": [ 0.0401228, 51.1644893, 0.0401228, 51.1644893 ], "geometry": { "type": "Point", "coordinates": [ 0.0401228, 51.1644893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99669668" }, "bbox": [ -0.5645151, 51.3904571, -0.5645151, 51.3904571 ], "geometry": { "type": "Point", "coordinates": [ -0.5645151, 51.3904571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00660225" }, "bbox": [ -0.563914, 51.3866559, -0.563914, 51.3866559 ], "geometry": { "type": "Point", "coordinates": [ -0.563914, 51.3866559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00660532" }, "bbox": [ -0.5632896, 51.387462, -0.5632896, 51.387462 ], "geometry": { "type": "Point", "coordinates": [ -0.5632896, 51.387462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36560358" }, "bbox": [ -0.0504896, 51.2921451, -0.0504896, 51.2921451 ], "geometry": { "type": "Point", "coordinates": [ -0.0504896, 51.2921451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05347501" }, "bbox": [ -0.4911269, 51.0958783, -0.4911269, 51.0958783 ], "geometry": { "type": "Point", "coordinates": [ -0.4911269, 51.0958783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86458529" }, "bbox": [ -0.758753, 51.2002132, -0.758753, 51.2002132 ], "geometry": { "type": "Point", "coordinates": [ -0.758753, 51.2002132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86456337" }, "bbox": [ -0.7616533, 51.2010059, -0.7616533, 51.2010059 ], "geometry": { "type": "Point", "coordinates": [ -0.7616533, 51.2010059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87451038" }, "bbox": [ -0.7547216, 51.2010536, -0.7547216, 51.2010536 ], "geometry": { "type": "Point", "coordinates": [ -0.7547216, 51.2010536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85398377" }, "bbox": [ -0.7742168, 51.150801, -0.7742168, 51.150801 ], "geometry": { "type": "Point", "coordinates": [ -0.7742168, 51.150801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00663639" }, "bbox": [ -0.5596311, 51.3872986, -0.5596311, 51.3872986 ], "geometry": { "type": "Point", "coordinates": [ -0.5596311, 51.3872986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00661950" }, "bbox": [ -0.5615844, 51.3886873, -0.5615844, 51.3886873 ], "geometry": { "type": "Point", "coordinates": [ -0.5615844, 51.3886873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00661254" }, "bbox": [ -0.5622703, 51.3891162, -0.5622703, 51.3891162 ], "geometry": { "type": "Point", "coordinates": [ -0.5622703, 51.3891162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35424094" }, "bbox": [ -0.0645146, 51.169161, -0.0645146, 51.169161 ], "geometry": { "type": "Point", "coordinates": [ -0.0645146, 51.169161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35433608" }, "bbox": [ -0.0650011, 51.1710488, -0.0650011, 51.1710488 ], "geometry": { "type": "Point", "coordinates": [ -0.0650011, 51.1710488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35421982" }, "bbox": [ -0.0675929, 51.1686737, -0.0675929, 51.1686737 ], "geometry": { "type": "Point", "coordinates": [ -0.0675929, 51.1686737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35427135" }, "bbox": [ -0.0603732, 51.1644212, -0.0603732, 51.1644212 ], "geometry": { "type": "Point", "coordinates": [ -0.0603732, 51.1644212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35426334" }, "bbox": [ -0.0616505, 51.1643474, -0.0616505, 51.1643474 ], "geometry": { "type": "Point", "coordinates": [ -0.0616505, 51.1643474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90459302" }, "bbox": [ -0.699373, 51.1968223, -0.699373, 51.1968223 ], "geometry": { "type": "Point", "coordinates": [ -0.699373, 51.1968223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11425308" }, "bbox": [ -0.4062262, 51.1672, -0.4062262, 51.1672 ], "geometry": { "type": "Point", "coordinates": [ -0.4062262, 51.1672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11418598" }, "bbox": [ -0.4016886, 51.1662527, -0.4016886, 51.1662527 ], "geometry": { "type": "Point", "coordinates": [ -0.4016886, 51.1662527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14398274" }, "bbox": [ -0.3597951, 51.1455207, -0.3597951, 51.1455207 ], "geometry": { "type": "Point", "coordinates": [ -0.3597951, 51.1455207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29419199" }, "bbox": [ -0.1442503, 51.1618587, -0.1442503, 51.1618587 ], "geometry": { "type": "Point", "coordinates": [ -0.1442503, 51.1618587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29424979" }, "bbox": [ -0.1491053, 51.1695881, -0.1491053, 51.1695881 ], "geometry": { "type": "Point", "coordinates": [ -0.1491053, 51.1695881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29424179" }, "bbox": [ -0.1503816, 51.1698563, -0.1503816, 51.1698563 ], "geometry": { "type": "Point", "coordinates": [ -0.1503816, 51.1698563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29424987" }, "bbox": [ -0.1490105, 51.1705297, -0.1490105, 51.1705297 ], "geometry": { "type": "Point", "coordinates": [ -0.1490105, 51.1705297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29426476" }, "bbox": [ -0.147017, 51.1693163, -0.147017, 51.1693163 ], "geometry": { "type": "Point", "coordinates": [ -0.147017, 51.1693163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29425472" }, "bbox": [ -0.1484029, 51.1690201, -0.1484029, 51.1690201 ], "geometry": { "type": "Point", "coordinates": [ -0.1484029, 51.1690201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30412954" }, "bbox": [ -0.1381965, 51.1582942, -0.1381965, 51.1582942 ], "geometry": { "type": "Point", "coordinates": [ -0.1381965, 51.1582942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30412848" }, "bbox": [ -0.1383452, 51.1577691, -0.1383452, 51.1577691 ], "geometry": { "type": "Point", "coordinates": [ -0.1383452, 51.1577691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30411634" }, "bbox": [ -0.1401179, 51.1565839, -0.1401179, 51.1565839 ], "geometry": { "type": "Point", "coordinates": [ -0.1401179, 51.1565839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30411389" }, "bbox": [ -0.140044, 51.1614593, -0.140044, 51.1614593 ], "geometry": { "type": "Point", "coordinates": [ -0.140044, 51.1614593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30413089" }, "bbox": [ -0.1379603, 51.1613878, -0.1379603, 51.1613878 ], "geometry": { "type": "Point", "coordinates": [ -0.1379603, 51.1613878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30411752" }, "bbox": [ -0.1399072, 51.1581457, -0.1399072, 51.1581457 ], "geometry": { "type": "Point", "coordinates": [ -0.1399072, 51.1581457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30412262" }, "bbox": [ -0.1392202, 51.1590463, -0.1392202, 51.1590463 ], "geometry": { "type": "Point", "coordinates": [ -0.1392202, 51.1590463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92430654" }, "bbox": [ -0.6836539, 51.1836649, -0.6836539, 51.1836649 ], "geometry": { "type": "Point", "coordinates": [ -0.6836539, 51.1836649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431254" }, "bbox": [ -0.6832413, 51.1836629, -0.6832413, 51.1836629 ], "geometry": { "type": "Point", "coordinates": [ -0.6832413, 51.1836629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431174" }, "bbox": [ -0.683342, 51.1855838, -0.683342, 51.1855838 ], "geometry": { "type": "Point", "coordinates": [ -0.683342, 51.1855838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92431563" }, "bbox": [ -0.6828972, 51.1844987, -0.6828972, 51.1844987 ], "geometry": { "type": "Point", "coordinates": [ -0.6828972, 51.1844987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432876" }, "bbox": [ -0.6810507, 51.1857476, -0.6810507, 51.1857476 ], "geometry": { "type": "Point", "coordinates": [ -0.6810507, 51.1857476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92430655" }, "bbox": [ -0.684219, 51.1837983, -0.684219, 51.1837983 ], "geometry": { "type": "Point", "coordinates": [ -0.684219, 51.1837983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92432152" }, "bbox": [ -0.6821703, 51.183579, -0.6821703, 51.183579 ], "geometry": { "type": "Point", "coordinates": [ -0.6821703, 51.183579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04722821" }, "bbox": [ -0.5009649, 51.4394127, -0.5009649, 51.4394127 ], "geometry": { "type": "Point", "coordinates": [ -0.5009649, 51.4394127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04723221" }, "bbox": [ -0.5002929, 51.4394088, -0.5002929, 51.4394088 ], "geometry": { "type": "Point", "coordinates": [ -0.5002929, 51.4394088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04723419" }, "bbox": [ -0.5001174, 51.4391976, -0.5001174, 51.4391976 ], "geometry": { "type": "Point", "coordinates": [ -0.5001174, 51.4391976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04724946" }, "bbox": [ -0.4990087, 51.4418192, -0.4990087, 51.4418192 ], "geometry": { "type": "Point", "coordinates": [ -0.4990087, 51.4418192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07685380" }, "bbox": [ -0.4555138, 51.4079953, -0.4555138, 51.4079953 ], "geometry": { "type": "Point", "coordinates": [ -0.4555138, 51.4079953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06702910" }, "bbox": [ -0.4731863, 51.4192893, -0.4731863, 51.4192893 ], "geometry": { "type": "Point", "coordinates": [ -0.4731863, 51.4192893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02736840" }, "bbox": [ -0.5236686, 51.4503603, -0.5236686, 51.4503603 ], "geometry": { "type": "Point", "coordinates": [ -0.5236686, 51.4503603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02736445" }, "bbox": [ -0.5241428, 51.4508022, -0.5241428, 51.4508022 ], "geometry": { "type": "Point", "coordinates": [ -0.5241428, 51.4508022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02733534" }, "bbox": [ -0.5287436, 51.4498752, -0.5287436, 51.4498752 ], "geometry": { "type": "Point", "coordinates": [ -0.5287436, 51.4498752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12670180" }, "bbox": [ -0.3917895, 51.4004284, -0.3917895, 51.4004284 ], "geometry": { "type": "Point", "coordinates": [ -0.3917895, 51.4004284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13669065" }, "bbox": [ -0.3620571, 51.3895759, -0.3620571, 51.3895759 ], "geometry": { "type": "Point", "coordinates": [ -0.3620571, 51.3895759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04726060" }, "bbox": [ -0.4958843, 51.4414342, -0.4958843, 51.4414342 ], "geometry": { "type": "Point", "coordinates": [ -0.4958843, 51.4414342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05723035" }, "bbox": [ -0.4796941, 51.4437181, -0.4796941, 51.4437181 ], "geometry": { "type": "Point", "coordinates": [ -0.4796941, 51.4437181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04722122" }, "bbox": [ -0.5021343, 51.4394186, -0.5021343, 51.4394186 ], "geometry": { "type": "Point", "coordinates": [ -0.5021343, 51.4394186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04722020" }, "bbox": [ -0.5022241, 51.4391259, -0.5022241, 51.4391259 ], "geometry": { "type": "Point", "coordinates": [ -0.5022241, 51.4391259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03736861" }, "bbox": [ -0.5093303, 51.452087, -0.5093303, 51.452087 ], "geometry": { "type": "Point", "coordinates": [ -0.5093303, 51.452087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03737731" }, "bbox": [ -0.5088587, 51.4491881, -0.5088587, 51.4491881 ], "geometry": { "type": "Point", "coordinates": [ -0.5088587, 51.4491881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03737245" }, "bbox": [ -0.5087104, 51.4504452, -0.5087104, 51.4504452 ], "geometry": { "type": "Point", "coordinates": [ -0.5087104, 51.4504452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04722911" }, "bbox": [ -0.500967, 51.438405, -0.500967, 51.438405 ], "geometry": { "type": "Point", "coordinates": [ -0.500967, 51.438405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04722513" }, "bbox": [ -0.5015051, 51.4386065, -0.5015051, 51.4386065 ], "geometry": { "type": "Point", "coordinates": [ -0.5015051, 51.4386065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04720922" }, "bbox": [ -0.5036741, 51.4395021, -0.5036741, 51.4395021 ], "geometry": { "type": "Point", "coordinates": [ -0.5036741, 51.4395021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03728731" }, "bbox": [ -0.5071901, 51.4403155, -0.5071901, 51.4403155 ], "geometry": { "type": "Point", "coordinates": [ -0.5071901, 51.4403155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04741325" }, "bbox": [ -0.5024092, 51.4576007, -0.5024092, 51.4576007 ], "geometry": { "type": "Point", "coordinates": [ -0.5024092, 51.4576007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03749325" }, "bbox": [ -0.5054304, 51.4576835, -0.5054304, 51.4576835 ], "geometry": { "type": "Point", "coordinates": [ -0.5054304, 51.4576835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04735319" }, "bbox": [ -0.4961531, 51.4524612, -0.4961531, 51.4524612 ], "geometry": { "type": "Point", "coordinates": [ -0.4961531, 51.4524612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03747614" }, "bbox": [ -0.5081634, 51.456484, -0.5081634, 51.456484 ], "geometry": { "type": "Point", "coordinates": [ -0.5081634, 51.456484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11390301" }, "bbox": [ -0.4143475, 51.1397428, -0.4143475, 51.1397428 ], "geometry": { "type": "Point", "coordinates": [ -0.4143475, 51.1397428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11380590" }, "bbox": [ -0.4136527, 51.138942, -0.4136527, 51.138942 ], "geometry": { "type": "Point", "coordinates": [ -0.4136527, 51.138942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11381284" }, "bbox": [ -0.4130654, 51.1380119, -0.4130654, 51.1380119 ], "geometry": { "type": "Point", "coordinates": [ -0.4130654, 51.1380119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10386999" }, "bbox": [ -0.4189019, 51.1394642, -0.4189019, 51.1394642 ], "geometry": { "type": "Point", "coordinates": [ -0.4189019, 51.1394642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10388691" }, "bbox": [ -0.4168082, 51.1388903, -0.4168082, 51.1388903 ], "geometry": { "type": "Point", "coordinates": [ -0.4168082, 51.1388903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10388885" }, "bbox": [ -0.416362, 51.1382304, -0.416362, 51.1382304 ], "geometry": { "type": "Point", "coordinates": [ -0.416362, 51.1382304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10389179" }, "bbox": [ -0.4160693, 51.1377314, -0.4160693, 51.1377314 ], "geometry": { "type": "Point", "coordinates": [ -0.4160693, 51.1377314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10388675" }, "bbox": [ -0.4167932, 51.1373637, -0.4167932, 51.1373637 ], "geometry": { "type": "Point", "coordinates": [ -0.4167932, 51.1373637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10387749" }, "bbox": [ -0.4179987, 51.1349938, -0.4179987, 51.1349938 ], "geometry": { "type": "Point", "coordinates": [ -0.4179987, 51.1349938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10387061" }, "bbox": [ -0.4190743, 51.1366466, -0.4190743, 51.1366466 ], "geometry": { "type": "Point", "coordinates": [ -0.4190743, 51.1366466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10389789" }, "bbox": [ -0.4149932, 51.1385964, -0.4149932, 51.1385964 ], "geometry": { "type": "Point", "coordinates": [ -0.4149932, 51.1385964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10387768" }, "bbox": [ -0.4168606, 51.1375242, -0.4168606, 51.1375242 ], "geometry": { "type": "Point", "coordinates": [ -0.4168606, 51.1375242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03727020" }, "bbox": [ -0.5077255, 51.4389607, -0.5077255, 51.4389607 ], "geometry": { "type": "Point", "coordinates": [ -0.5077255, 51.4389607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13674615" }, "bbox": [ -0.3707651, 51.3893338, -0.3707651, 51.3893338 ], "geometry": { "type": "Point", "coordinates": [ -0.3707651, 51.3893338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13664094" }, "bbox": [ -0.3713732, 51.3903065, -0.3713732, 51.3903065 ], "geometry": { "type": "Point", "coordinates": [ -0.3713732, 51.3903065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03572200" }, "bbox": [ -0.5199223, 51.3027718, -0.5199223, 51.3027718 ], "geometry": { "type": "Point", "coordinates": [ -0.5199223, 51.3027718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03561187" }, "bbox": [ -0.5229606, 51.3011238, -0.5229606, 51.3011238 ], "geometry": { "type": "Point", "coordinates": [ -0.5229606, 51.3011238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03563199" }, "bbox": [ -0.5193825, 51.30274, -0.5193825, 51.30274 ], "geometry": { "type": "Point", "coordinates": [ -0.5193825, 51.30274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01424962" }, "bbox": [ -0.5503716, 51.1739207, -0.5503716, 51.1739207 ], "geometry": { "type": "Point", "coordinates": [ -0.5503716, 51.1739207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422156" }, "bbox": [ -0.5535354, 51.1733025, -0.5535354, 51.1733025 ], "geometry": { "type": "Point", "coordinates": [ -0.5535354, 51.1733025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01423794" }, "bbox": [ -0.5509855, 51.176812, -0.5509855, 51.176812 ], "geometry": { "type": "Point", "coordinates": [ -0.5509855, 51.176812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01423082" }, "bbox": [ -0.5520557, 51.1755995, -0.5520557, 51.1755995 ], "geometry": { "type": "Point", "coordinates": [ -0.5520557, 51.1755995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422765" }, "bbox": [ -0.5526749, 51.174148, -0.5526749, 51.174148 ], "geometry": { "type": "Point", "coordinates": [ -0.5526749, 51.174148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422062" }, "bbox": [ -0.5535106, 51.1739746, -0.5535106, 51.1739746 ], "geometry": { "type": "Point", "coordinates": [ -0.5535106, 51.1739746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422575" }, "bbox": [ -0.5528353, 51.1749643, -0.5528353, 51.1749643 ], "geometry": { "type": "Point", "coordinates": [ -0.5528353, 51.1749643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421263" }, "bbox": [ -0.5548027, 51.1740038, -0.5548027, 51.1740038 ], "geometry": { "type": "Point", "coordinates": [ -0.5548027, 51.1740038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01420760" }, "bbox": [ -0.5555239, 51.1737555, -0.5555239, 51.1737555 ], "geometry": { "type": "Point", "coordinates": [ -0.5555239, 51.1737555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422387" }, "bbox": [ -0.5532815, 51.176156, -0.5532815, 51.176156 ], "geometry": { "type": "Point", "coordinates": [ -0.5532815, 51.176156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422490" }, "bbox": [ -0.5530994, 51.1764064, -0.5530994, 51.1764064 ], "geometry": { "type": "Point", "coordinates": [ -0.5530994, 51.1764064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422288" }, "bbox": [ -0.5534371, 51.1761945, -0.5534371, 51.1761945 ], "geometry": { "type": "Point", "coordinates": [ -0.5534371, 51.1761945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04723210" }, "bbox": [ -0.500349, 51.438347, -0.500349, 51.438347 ], "geometry": { "type": "Point", "coordinates": [ -0.500349, 51.438347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00437239" }, "bbox": [ -0.5605842, 51.1806891, -0.5605842, 51.1806891 ], "geometry": { "type": "Point", "coordinates": [ -0.5605842, 51.1806891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00437442" }, "bbox": [ -0.560197, 51.181178, -0.560197, 51.181178 ], "geometry": { "type": "Point", "coordinates": [ -0.560197, 51.181178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01434551" }, "bbox": [ -0.5496064, 51.1819588, -0.5496064, 51.1819588 ], "geometry": { "type": "Point", "coordinates": [ -0.5496064, 51.1819588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01433533" }, "bbox": [ -0.5515246, 51.1800795, -0.5515246, 51.1800795 ], "geometry": { "type": "Point", "coordinates": [ -0.5515246, 51.1800795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00447410" }, "bbox": [ -0.5602691, 51.1864793, -0.5602691, 51.1864793 ], "geometry": { "type": "Point", "coordinates": [ -0.5602691, 51.1864793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92358423" }, "bbox": [ -0.6756072, 51.1087109, -0.6756072, 51.1087109 ], "geometry": { "type": "Point", "coordinates": [ -0.6756072, 51.1087109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98377554" }, "bbox": [ -0.5900856, 51.1287148, -0.5900856, 51.1287148 ], "geometry": { "type": "Point", "coordinates": [ -0.5900856, 51.1287148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31537392" }, "bbox": [ -0.1132099, 51.2692979, -0.1132099, 51.2692979 ], "geometry": { "type": "Point", "coordinates": [ -0.1132099, 51.2692979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02347053" }, "bbox": [ -0.5348494, 51.1007632, -0.5348494, 51.1007632 ], "geometry": { "type": "Point", "coordinates": [ -0.5348494, 51.1007632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02345639" }, "bbox": [ -0.5363231, 51.0995327, -0.5363231, 51.0995327 ], "geometry": { "type": "Point", "coordinates": [ -0.5363231, 51.0995327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02343909" }, "bbox": [ -0.5391397, 51.0969142, -0.5391397, 51.0969142 ], "geometry": { "type": "Point", "coordinates": [ -0.5391397, 51.0969142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02347607" }, "bbox": [ -0.5336033, 51.0966219, -0.5336033, 51.0966219 ], "geometry": { "type": "Point", "coordinates": [ -0.5336033, 51.0966219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02345757" }, "bbox": [ -0.536675, 51.1012258, -0.536675, 51.1012258 ], "geometry": { "type": "Point", "coordinates": [ -0.536675, 51.1012258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02344957" }, "bbox": [ -0.5376277, 51.1012002, -0.5376277, 51.1012002 ], "geometry": { "type": "Point", "coordinates": [ -0.5376277, 51.1012002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02347117" }, "bbox": [ -0.534357, 51.0977516, -0.534357, 51.0977516 ], "geometry": { "type": "Point", "coordinates": [ -0.534357, 51.0977516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02339077" }, "bbox": [ -0.5321454, 51.0934915, -0.5321454, 51.0934915 ], "geometry": { "type": "Point", "coordinates": [ -0.5321454, 51.0934915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333387" }, "bbox": [ -0.5399625, 51.0949872, -0.5399625, 51.0949872 ], "geometry": { "type": "Point", "coordinates": [ -0.5399625, 51.0949872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02337675" }, "bbox": [ -0.5340065, 51.0940535, -0.5340065, 51.0940535 ], "geometry": { "type": "Point", "coordinates": [ -0.5340065, 51.0940535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02335745" }, "bbox": [ -0.5365521, 51.0911327, -0.5365521, 51.0911327 ], "geometry": { "type": "Point", "coordinates": [ -0.5365521, 51.0911327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02326866" }, "bbox": [ -0.5351814, 51.0841638, -0.5351814, 51.0841638 ], "geometry": { "type": "Point", "coordinates": [ -0.5351814, 51.0841638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03340803" }, "bbox": [ -0.529005, 51.096153, -0.529005, 51.096153 ], "geometry": { "type": "Point", "coordinates": [ -0.529005, 51.096153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04392934" }, "bbox": [ -0.5103501, 51.1437544, -0.5103501, 51.1437544 ], "geometry": { "type": "Point", "coordinates": [ -0.5103501, 51.1437544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04393835" }, "bbox": [ -0.5091277, 51.1440214, -0.5091277, 51.1440214 ], "geometry": { "type": "Point", "coordinates": [ -0.5091277, 51.1440214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04395237" }, "bbox": [ -0.5072217, 51.1441445, -0.5072217, 51.1441445 ], "geometry": { "type": "Point", "coordinates": [ -0.5072217, 51.1441445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411796" }, "bbox": [ -0.5542532, 51.1681337, -0.5542532, 51.1681337 ], "geometry": { "type": "Point", "coordinates": [ -0.5542532, 51.1681337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18536935" }, "bbox": [ -0.3001964, 51.2668619, -0.3001964, 51.2668619 ], "geometry": { "type": "Point", "coordinates": [ -0.3001964, 51.2668619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88477960" }, "bbox": [ -0.7298317, 51.2209287, -0.7298317, 51.2209287 ], "geometry": { "type": "Point", "coordinates": [ -0.7298317, 51.2209287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85427326" }, "bbox": [ -0.7750783, 51.1731338, -0.7750783, 51.1731338 ], "geometry": { "type": "Point", "coordinates": [ -0.7750783, 51.1731338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85421841" }, "bbox": [ -0.7827121, 51.1746351, -0.7827121, 51.1746351 ], "geometry": { "type": "Point", "coordinates": [ -0.7827121, 51.1746351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85420135" }, "bbox": [ -0.7853622, 51.1741712, -0.7853622, 51.1741712 ], "geometry": { "type": "Point", "coordinates": [ -0.7853622, 51.1741712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05382382" }, "bbox": [ -0.4973859, 51.1390497, -0.4973859, 51.1390497 ], "geometry": { "type": "Point", "coordinates": [ -0.4973859, 51.1390497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02335432" }, "bbox": [ -0.5375933, 51.0901678, -0.5375933, 51.0901678 ], "geometry": { "type": "Point", "coordinates": [ -0.5375933, 51.0901678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333557" }, "bbox": [ -0.5397222, 51.0922618, -0.5397222, 51.0922618 ], "geometry": { "type": "Point", "coordinates": [ -0.5397222, 51.0922618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02326981" }, "bbox": [ -0.5350983, 51.0853967, -0.5350983, 51.0853967 ], "geometry": { "type": "Point", "coordinates": [ -0.5350983, 51.0853967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02325896" }, "bbox": [ -0.5366892, 51.0869182, -0.5366892, 51.0869182 ], "geometry": { "type": "Point", "coordinates": [ -0.5366892, 51.0869182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06456001" }, "bbox": [ -0.4757397, 51.1942882, -0.4757397, 51.1942882 ], "geometry": { "type": "Point", "coordinates": [ -0.4757397, 51.1942882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06446895" }, "bbox": [ -0.4749987, 51.1939023, -0.4749987, 51.1939023 ], "geometry": { "type": "Point", "coordinates": [ -0.4749987, 51.1939023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37524441" }, "bbox": [ -0.0312434, 51.2545217, -0.0312434, 51.2545217 ], "geometry": { "type": "Point", "coordinates": [ -0.0312434, 51.2545217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37525329" }, "bbox": [ -0.0304604, 51.2533148, -0.0304604, 51.2533148 ], "geometry": { "type": "Point", "coordinates": [ -0.0304604, 51.2533148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91490949" }, "bbox": [ -0.6964166, 51.2374342, -0.6964166, 51.2374342 ], "geometry": { "type": "Point", "coordinates": [ -0.6964166, 51.2374342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491936" }, "bbox": [ -0.6950479, 51.2362064, -0.6950479, 51.2362064 ], "geometry": { "type": "Point", "coordinates": [ -0.6950479, 51.2362064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491444" }, "bbox": [ -0.6961431, 51.2362284, -0.6961431, 51.2362284 ], "geometry": { "type": "Point", "coordinates": [ -0.6961431, 51.2362284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91490134" }, "bbox": [ -0.6975982, 51.2361741, -0.6975982, 51.2361741 ], "geometry": { "type": "Point", "coordinates": [ -0.6975982, 51.2361741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491654" }, "bbox": [ -0.6956903, 51.2378735, -0.6956903, 51.2378735 ], "geometry": { "type": "Point", "coordinates": [ -0.6956903, 51.2378735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90499034" }, "bbox": [ -0.6992235, 51.2360518, -0.6992235, 51.2360518 ], "geometry": { "type": "Point", "coordinates": [ -0.6992235, 51.2360518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90499635" }, "bbox": [ -0.6986922, 51.2361305, -0.6986922, 51.2361305 ], "geometry": { "type": "Point", "coordinates": [ -0.6986922, 51.2361305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91436486" }, "bbox": [ -0.6899298, 51.1866573, -0.6899298, 51.1866573 ], "geometry": { "type": "Point", "coordinates": [ -0.6899298, 51.1866573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91435988" }, "bbox": [ -0.6908639, 51.1867737, -0.6908639, 51.1867737 ], "geometry": { "type": "Point", "coordinates": [ -0.6908639, 51.1867737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91447704" }, "bbox": [ -0.6880717, 51.1882487, -0.6880717, 51.1882487 ], "geometry": { "type": "Point", "coordinates": [ -0.6880717, 51.1882487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95336525" }, "bbox": [ -0.6357129, 51.0905867, -0.6357129, 51.0905867 ], "geometry": { "type": "Point", "coordinates": [ -0.6357129, 51.0905867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95336151" }, "bbox": [ -0.6359757, 51.0929698, -0.6359757, 51.0929698 ], "geometry": { "type": "Point", "coordinates": [ -0.6359757, 51.0929698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90429658" }, "bbox": [ -0.7007849, 51.1752559, -0.7007849, 51.1752559 ], "geometry": { "type": "Point", "coordinates": [ -0.7007849, 51.1752559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90426268" }, "bbox": [ -0.7049842, 51.176242, -0.7049842, 51.176242 ], "geometry": { "type": "Point", "coordinates": [ -0.7049842, 51.176242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98412180" }, "bbox": [ -0.5967069, 51.1666567, -0.5967069, 51.1666567 ], "geometry": { "type": "Point", "coordinates": [ -0.5967069, 51.1666567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457778" }, "bbox": [ -0.6733398, 51.2038151, -0.6733398, 51.2038151 ], "geometry": { "type": "Point", "coordinates": [ -0.6733398, 51.2038151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92457682" }, "bbox": [ -0.673532, 51.204069, -0.673532, 51.204069 ], "geometry": { "type": "Point", "coordinates": [ -0.673532, 51.204069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92455056" }, "bbox": [ -0.6774414, 51.2018216, -0.6774414, 51.2018216 ], "geometry": { "type": "Point", "coordinates": [ -0.6774414, 51.2018216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92458785" }, "bbox": [ -0.6718162, 51.2043401, -0.6718162, 51.2043401 ], "geometry": { "type": "Point", "coordinates": [ -0.6718162, 51.2043401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82425524" }, "bbox": [ -0.8201747, 51.1734124, -0.8201747, 51.1734124 ], "geometry": { "type": "Point", "coordinates": [ -0.8201747, 51.1734124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82426114" }, "bbox": [ -0.8197112, 51.172563, -0.8197112, 51.172563 ], "geometry": { "type": "Point", "coordinates": [ -0.8197112, 51.172563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22481223" }, "bbox": [ -0.2526466, 51.2203128, -0.2526466, 51.2203128 ], "geometry": { "type": "Point", "coordinates": [ -0.2526466, 51.2203128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22483051" }, "bbox": [ -0.2501406, 51.2225174, -0.2501406, 51.2225174 ], "geometry": { "type": "Point", "coordinates": [ -0.2501406, 51.2225174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21485268" }, "bbox": [ -0.2615164, 51.2243046, -0.2615164, 51.2243046 ], "geometry": { "type": "Point", "coordinates": [ -0.2615164, 51.2243046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95343308" }, "bbox": [ -0.6398966, 51.0980327, -0.6398966, 51.0980327 ], "geometry": { "type": "Point", "coordinates": [ -0.6398966, 51.0980327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95331896" }, "bbox": [ -0.642124, 51.0970444, -0.642124, 51.0970444 ], "geometry": { "type": "Point", "coordinates": [ -0.642124, 51.0970444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23476519" }, "bbox": [ -0.2311212, 51.2105166, -0.2311212, 51.2105166 ], "geometry": { "type": "Point", "coordinates": [ -0.2311212, 51.2105166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23479062" }, "bbox": [ -0.2272114, 51.2143031, -0.2272114, 51.2143031 ], "geometry": { "type": "Point", "coordinates": [ -0.2272114, 51.2143031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23476720" }, "bbox": [ -0.2308226, 51.2107344, -0.2308226, 51.2107344 ], "geometry": { "type": "Point", "coordinates": [ -0.2308226, 51.2107344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23478545" }, "bbox": [ -0.2281083, 51.2128376, -0.2281083, 51.2128376 ], "geometry": { "type": "Point", "coordinates": [ -0.2281083, 51.2128376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24470131" }, "bbox": [ -0.2259995, 51.2116319, -0.2259995, 51.2116319 ], "geometry": { "type": "Point", "coordinates": [ -0.2259995, 51.2116319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24470456" }, "bbox": [ -0.2252707, 51.2136087, -0.2252707, 51.2136087 ], "geometry": { "type": "Point", "coordinates": [ -0.2252707, 51.2136087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24472420" }, "bbox": [ -0.2227372, 51.2104301, -0.2227372, 51.2104301 ], "geometry": { "type": "Point", "coordinates": [ -0.2227372, 51.2104301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98362174" }, "bbox": [ -0.5978329, 51.1214103, -0.5978329, 51.1214103 ], "geometry": { "type": "Point", "coordinates": [ -0.5978329, 51.1214103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472278" }, "bbox": [ -0.2370085, 51.2159588, -0.2370085, 51.2159588 ], "geometry": { "type": "Point", "coordinates": [ -0.2370085, 51.2159588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23470239" }, "bbox": [ -0.2401549, 51.2124836, -0.2401549, 51.2124836 ], "geometry": { "type": "Point", "coordinates": [ -0.2401549, 51.2124836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23471644" }, "bbox": [ -0.238102, 51.2129462, -0.238102, 51.2129462 ], "geometry": { "type": "Point", "coordinates": [ -0.238102, 51.2129462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23470116" }, "bbox": [ -0.240125, 51.2107508, -0.240125, 51.2107508 ], "geometry": { "type": "Point", "coordinates": [ -0.240125, 51.2107508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472542" }, "bbox": [ -0.2368398, 51.212776, -0.2368398, 51.212776 ], "geometry": { "type": "Point", "coordinates": [ -0.2368398, 51.212776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23472261" }, "bbox": [ -0.2370125, 51.2144307, -0.2370125, 51.2144307 ], "geometry": { "type": "Point", "coordinates": [ -0.2370125, 51.2144307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23462493" }, "bbox": [ -0.2372824, 51.2083072, -0.2372824, 51.2083072 ], "geometry": { "type": "Point", "coordinates": [ -0.2372824, 51.2083072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24464865" }, "bbox": [ -0.2183914, 51.2051149, -0.2183914, 51.2051149 ], "geometry": { "type": "Point", "coordinates": [ -0.2183914, 51.2051149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24462372" }, "bbox": [ -0.2229357, 51.2062535, -0.2229357, 51.2062535 ], "geometry": { "type": "Point", "coordinates": [ -0.2229357, 51.2062535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35475892" }, "bbox": [ -0.0601684, 51.2142851, -0.0601684, 51.2142851 ], "geometry": { "type": "Point", "coordinates": [ -0.0601684, 51.2142851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35478297" }, "bbox": [ -0.0566905, 51.2147932, -0.0566905, 51.2147932 ], "geometry": { "type": "Point", "coordinates": [ -0.0566905, 51.2147932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35486805" }, "bbox": [ -0.0586228, 51.2155988, -0.0586228, 51.2155988 ], "geometry": { "type": "Point", "coordinates": [ -0.0586228, 51.2155988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35482102" }, "bbox": [ -0.0657653, 51.2155651, -0.0657653, 51.2155651 ], "geometry": { "type": "Point", "coordinates": [ -0.0657653, 51.2155651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35483108" }, "bbox": [ -0.0641351, 51.2159516, -0.0641351, 51.2159516 ], "geometry": { "type": "Point", "coordinates": [ -0.0641351, 51.2159516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34494392" }, "bbox": [ -0.0757473, 51.2324528, -0.0757473, 51.2324528 ], "geometry": { "type": "Point", "coordinates": [ -0.0757473, 51.2324528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34495820" }, "bbox": [ -0.0740809, 51.2261973, -0.0740809, 51.2261973 ], "geometry": { "type": "Point", "coordinates": [ -0.0740809, 51.2261973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83460203" }, "bbox": [ -0.8134653, 51.207269, -0.8134653, 51.207269 ], "geometry": { "type": "Point", "coordinates": [ -0.8134653, 51.207269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82466724" }, "bbox": [ -0.8181195, 51.2098542, -0.8181195, 51.2098542 ], "geometry": { "type": "Point", "coordinates": [ -0.8181195, 51.2098542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82463491" }, "bbox": [ -0.8224947, 51.2154512, -0.8224947, 51.2154512 ], "geometry": { "type": "Point", "coordinates": [ -0.8224947, 51.2154512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82463467" }, "bbox": [ -0.8225072, 51.213292, -0.8225072, 51.213292 ], "geometry": { "type": "Point", "coordinates": [ -0.8225072, 51.213292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82464064" }, "bbox": [ -0.8213402, 51.2130529, -0.8213402, 51.2130529 ], "geometry": { "type": "Point", "coordinates": [ -0.8213402, 51.2130529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82464256" }, "bbox": [ -0.8214554, 51.2123105, -0.8214554, 51.2123105 ], "geometry": { "type": "Point", "coordinates": [ -0.8214554, 51.2123105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37395686" }, "bbox": [ -0.0349541, 51.1415499, -0.0349541, 51.1415499 ], "geometry": { "type": "Point", "coordinates": [ -0.0349541, 51.1415499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23489506" }, "bbox": [ -0.2265589, 51.2182799, -0.2265589, 51.2182799 ], "geometry": { "type": "Point", "coordinates": [ -0.2265589, 51.2182799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24481715" }, "bbox": [ -0.2234468, 51.2191054, -0.2234468, 51.2191054 ], "geometry": { "type": "Point", "coordinates": [ -0.2234468, 51.2191054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90447204" }, "bbox": [ -0.7031361, 51.1886113, -0.7031361, 51.1886113 ], "geometry": { "type": "Point", "coordinates": [ -0.7031361, 51.1886113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21497034" }, "bbox": [ -0.2580442, 51.2302556, -0.2580442, 51.2302556 ], "geometry": { "type": "Point", "coordinates": [ -0.2580442, 51.2302556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21499417" }, "bbox": [ -0.2551051, 51.2287333, -0.2551051, 51.2287333 ], "geometry": { "type": "Point", "coordinates": [ -0.2551051, 51.2287333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22493229" }, "bbox": [ -0.2500717, 51.2294997, -0.2500717, 51.2294997 ], "geometry": { "type": "Point", "coordinates": [ -0.2500717, 51.2294997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22492129" }, "bbox": [ -0.2509787, 51.22975, -0.2509787, 51.22975 ], "geometry": { "type": "Point", "coordinates": [ -0.2509787, 51.22975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446540" }, "bbox": [ -0.0891658, 51.1832315, -0.0891658, 51.1832315 ], "geometry": { "type": "Point", "coordinates": [ -0.0891658, 51.1832315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35473634" }, "bbox": [ -0.063696, 51.2091823, -0.063696, 51.2091823 ], "geometry": { "type": "Point", "coordinates": [ -0.063696, 51.2091823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35472337" }, "bbox": [ -0.0653316, 51.2094039, -0.0653316, 51.2094039 ], "geometry": { "type": "Point", "coordinates": [ -0.0653316, 51.2094039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24477540" }, "bbox": [ -0.2150097, 51.212159, -0.2150097, 51.212159 ], "geometry": { "type": "Point", "coordinates": [ -0.2150097, 51.212159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24475595" }, "bbox": [ -0.2176032, 51.2176498, -0.2176032, 51.2176498 ], "geometry": { "type": "Point", "coordinates": [ -0.2176032, 51.2176498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24475749" }, "bbox": [ -0.2182287, 51.2125485, -0.2182287, 51.2125485 ], "geometry": { "type": "Point", "coordinates": [ -0.2182287, 51.2125485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24489817" }, "bbox": [ -0.2117345, 51.2190706, -0.2117345, 51.2190706 ], "geometry": { "type": "Point", "coordinates": [ -0.2117345, 51.2190706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25481611" }, "bbox": [ -0.2093038, 51.2185119, -0.2093038, 51.2185119 ], "geometry": { "type": "Point", "coordinates": [ -0.2093038, 51.2185119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87372683" }, "bbox": [ -0.7544383, 51.1333913, -0.7544383, 51.1333913 ], "geometry": { "type": "Point", "coordinates": [ -0.7544383, 51.1333913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88370455" }, "bbox": [ -0.7431355, 51.1305513, -0.7431355, 51.1305513 ], "geometry": { "type": "Point", "coordinates": [ -0.7431355, 51.1305513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88371241" }, "bbox": [ -0.7418504, 51.1289215, -0.7418504, 51.1289215 ], "geometry": { "type": "Point", "coordinates": [ -0.7418504, 51.1289215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20497108" }, "bbox": [ -0.2726814, 51.2280915, -0.2726814, 51.2280915 ], "geometry": { "type": "Point", "coordinates": [ -0.2726814, 51.2280915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20487355" }, "bbox": [ -0.2725454, 51.2234859, -0.2725454, 51.2234859 ], "geometry": { "type": "Point", "coordinates": [ -0.2725454, 51.2234859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558830" }, "bbox": [ -0.4974249, 51.2873379, -0.4974249, 51.2873379 ], "geometry": { "type": "Point", "coordinates": [ -0.4974249, 51.2873379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558335" }, "bbox": [ -0.4980599, 51.2877953, -0.4980599, 51.2877953 ], "geometry": { "type": "Point", "coordinates": [ -0.4980599, 51.2877953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34446237" }, "bbox": [ -0.0757837, 51.1828374, -0.0757837, 51.1828374 ], "geometry": { "type": "Point", "coordinates": [ -0.0757837, 51.1828374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34447215" }, "bbox": [ -0.0740113, 51.1806571, -0.0740113, 51.1806571 ], "geometry": { "type": "Point", "coordinates": [ -0.0740113, 51.1806571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353959" }, "bbox": [ -0.6101607, 51.1113106, -0.6101607, 51.1113106 ], "geometry": { "type": "Point", "coordinates": [ -0.6101607, 51.1113106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97352448" }, "bbox": [ -0.612248, 51.1104427, -0.612248, 51.1104427 ], "geometry": { "type": "Point", "coordinates": [ -0.612248, 51.1104427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33441732" }, "bbox": [ -0.0960321, 51.1825637, -0.0960321, 51.1825637 ], "geometry": { "type": "Point", "coordinates": [ -0.0960321, 51.1825637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16540489" }, "bbox": [ -0.3373885, 51.2814164, -0.3373885, 51.2814164 ], "geometry": { "type": "Point", "coordinates": [ -0.3373885, 51.2814164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545667" }, "bbox": [ -0.3444137, 51.279486, -0.3444137, 51.279486 ], "geometry": { "type": "Point", "coordinates": [ -0.3444137, 51.279486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546685" }, "bbox": [ -0.3430388, 51.2811, -0.3430388, 51.2811 ], "geometry": { "type": "Point", "coordinates": [ -0.3430388, 51.2811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546778" }, "bbox": [ -0.3435728, 51.2806101, -0.3435728, 51.2806101 ], "geometry": { "type": "Point", "coordinates": [ -0.3435728, 51.2806101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665011" }, "bbox": [ -0.5283112, 51.3848364, -0.5283112, 51.3848364 ], "geometry": { "type": "Point", "coordinates": [ -0.5283112, 51.3848364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02655789" }, "bbox": [ -0.5271106, 51.3829177, -0.5271106, 51.3829177 ], "geometry": { "type": "Point", "coordinates": [ -0.5271106, 51.3829177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02654587" }, "bbox": [ -0.5289977, 51.3827417, -0.5289977, 51.3827417 ], "geometry": { "type": "Point", "coordinates": [ -0.5289977, 51.3827417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32477440" }, "bbox": [ -0.1009179, 51.2104208, -0.1009179, 51.2104208 ], "geometry": { "type": "Point", "coordinates": [ -0.1009179, 51.2104208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22487476" }, "bbox": [ -0.2436925, 51.2247751, -0.2436925, 51.2247751 ], "geometry": { "type": "Point", "coordinates": [ -0.2436925, 51.2247751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37455913" }, "bbox": [ -0.0325598, 51.1886583, -0.0325598, 51.1886583 ], "geometry": { "type": "Point", "coordinates": [ -0.0325598, 51.1886583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37453808" }, "bbox": [ -0.0345007, 51.1879383, -0.0345007, 51.1879383 ], "geometry": { "type": "Point", "coordinates": [ -0.0345007, 51.1879383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97321879" }, "bbox": [ -0.6136783, 51.086254, -0.6136783, 51.086254 ], "geometry": { "type": "Point", "coordinates": [ -0.6136783, 51.086254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97323057" }, "bbox": [ -0.6121373, 51.08422, -0.6121373, 51.08422 ], "geometry": { "type": "Point", "coordinates": [ -0.6121373, 51.08422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25452832" }, "bbox": [ -0.2084554, 51.1934224, -0.2084554, 51.1934224 ], "geometry": { "type": "Point", "coordinates": [ -0.2084554, 51.1934224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25467965" }, "bbox": [ -0.199815, 51.2049192, -0.199815, 51.2049192 ], "geometry": { "type": "Point", "coordinates": [ -0.199815, 51.2049192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25443293" }, "bbox": [ -0.2079071, 51.1898154, -0.2079071, 51.1898154 ], "geometry": { "type": "Point", "coordinates": [ -0.2079071, 51.1898154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35417621" }, "bbox": [ -0.0600702, 51.1539719, -0.0600702, 51.1539719 ], "geometry": { "type": "Point", "coordinates": [ -0.0600702, 51.1539719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551410" }, "bbox": [ -0.6516831, 51.2871095, -0.6516831, 51.2871095 ], "geometry": { "type": "Point", "coordinates": [ -0.6516831, 51.2871095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440552" }, "bbox": [ -0.3263594, 51.1880112, -0.3263594, 51.1880112 ], "geometry": { "type": "Point", "coordinates": [ -0.3263594, 51.1880112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442533" }, "bbox": [ -0.3235282, 51.1863137, -0.3235282, 51.1863137 ], "geometry": { "type": "Point", "coordinates": [ -0.3235282, 51.1863137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17443105" }, "bbox": [ -0.3233328, 51.1838877, -0.3233328, 51.1838877 ], "geometry": { "type": "Point", "coordinates": [ -0.3233328, 51.1838877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442046" }, "bbox": [ -0.3244525, 51.1873657, -0.3244525, 51.1873657 ], "geometry": { "type": "Point", "coordinates": [ -0.3244525, 51.1873657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442749" }, "bbox": [ -0.3237728, 51.187775, -0.3237728, 51.187775 ], "geometry": { "type": "Point", "coordinates": [ -0.3237728, 51.187775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16439585" }, "bbox": [ -0.3281178, 51.1819511, -0.3281178, 51.1819511 ], "geometry": { "type": "Point", "coordinates": [ -0.3281178, 51.1819511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14478802" }, "bbox": [ -0.3566237, 51.210932, -0.3566237, 51.210932 ], "geometry": { "type": "Point", "coordinates": [ -0.3566237, 51.210932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14468498" }, "bbox": [ -0.3572206, 51.2105901, -0.3572206, 51.2105901 ], "geometry": { "type": "Point", "coordinates": [ -0.3572206, 51.2105901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14469191" }, "bbox": [ -0.3563055, 51.20991, -0.3563055, 51.20991 ], "geometry": { "type": "Point", "coordinates": [ -0.3563055, 51.20991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36477105" }, "bbox": [ -0.0441564, 51.2062943, -0.0441564, 51.2062943 ], "geometry": { "type": "Point", "coordinates": [ -0.0441564, 51.2062943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40478264" }, "bbox": [ 0.0145542, 51.2106327, 0.0145542, 51.2106327 ], "geometry": { "type": "Point", "coordinates": [ 0.0145542, 51.2106327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40476264" }, "bbox": [ 0.0116988, 51.2104334, 0.0116988, 51.2104334 ], "geometry": { "type": "Point", "coordinates": [ 0.0116988, 51.2104334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33450581" }, "bbox": [ -0.097171, 51.1959946, -0.097171, 51.1959946 ], "geometry": { "type": "Point", "coordinates": [ -0.097171, 51.1959946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34463797" }, "bbox": [ -0.0778257, 51.2063683, -0.0778257, 51.2063683 ], "geometry": { "type": "Point", "coordinates": [ -0.0778257, 51.2063683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34473040" }, "bbox": [ -0.07878, 51.2100299, -0.07878, 51.2100299 ], "geometry": { "type": "Point", "coordinates": [ -0.07878, 51.2100299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34473402" }, "bbox": [ -0.0781457, 51.2066326, -0.0781457, 51.2066326 ], "geometry": { "type": "Point", "coordinates": [ -0.0781457, 51.2066326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34473711" }, "bbox": [ -0.077828, 51.2074774, -0.077828, 51.2074774 ], "geometry": { "type": "Point", "coordinates": [ -0.077828, 51.2074774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93499075" }, "bbox": [ -0.6557177, 51.2389138, -0.6557177, 51.2389138 ], "geometry": { "type": "Point", "coordinates": [ -0.6557177, 51.2389138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94496006" }, "bbox": [ -0.646432, 51.2330587, -0.646432, 51.2330587 ], "geometry": { "type": "Point", "coordinates": [ -0.646432, 51.2330587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35436363" }, "bbox": [ -0.0611038, 51.1757996, -0.0611038, 51.1757996 ], "geometry": { "type": "Point", "coordinates": [ -0.0611038, 51.1757996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36468085" }, "bbox": [ -0.04325, 51.2044977, -0.04325, 51.2044977 ], "geometry": { "type": "Point", "coordinates": [ -0.04325, 51.2044977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36467890" }, "bbox": [ -0.0434131, 51.2048916, -0.0434131, 51.2048916 ], "geometry": { "type": "Point", "coordinates": [ -0.0434131, 51.2048916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36467184" }, "bbox": [ -0.0445745, 51.2044665, -0.0445745, 51.2044665 ], "geometry": { "type": "Point", "coordinates": [ -0.0445745, 51.2044665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36467494" }, "bbox": [ -0.043613, 51.2053353, -0.043613, 51.2053353 ], "geometry": { "type": "Point", "coordinates": [ -0.043613, 51.2053353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36468996" }, "bbox": [ -0.0415663, 51.2050479, -0.0415663, 51.2050479 ], "geometry": { "type": "Point", "coordinates": [ -0.0415663, 51.2050479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36466990" }, "bbox": [ -0.0447023, 51.2049551, -0.0447023, 51.2049551 ], "geometry": { "type": "Point", "coordinates": [ -0.0447023, 51.2049551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36467492" }, "bbox": [ -0.0440359, 51.2051392, -0.0440359, 51.2051392 ], "geometry": { "type": "Point", "coordinates": [ -0.0440359, 51.2051392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36466996" }, "bbox": [ -0.0447745, 51.2054811, -0.0447745, 51.2054811 ], "geometry": { "type": "Point", "coordinates": [ -0.0447745, 51.2054811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36477500" }, "bbox": [ -0.0437845, 51.20586, -0.0437845, 51.20586 ], "geometry": { "type": "Point", "coordinates": [ -0.0437845, 51.20586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37460392" }, "bbox": [ -0.0396229, 51.2050478, -0.0396229, 51.2050478 ], "geometry": { "type": "Point", "coordinates": [ -0.0396229, 51.2050478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37460893" }, "bbox": [ -0.0391452, 51.2051027, -0.0391452, 51.2051027 ], "geometry": { "type": "Point", "coordinates": [ -0.0391452, 51.2051027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37460899" }, "bbox": [ -0.0391624, 51.2056753, -0.0391624, 51.2056753 ], "geometry": { "type": "Point", "coordinates": [ -0.0391624, 51.2056753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478400" }, "bbox": [ -0.0420727, 51.2057555, -0.0420727, 51.2057555 ], "geometry": { "type": "Point", "coordinates": [ -0.0420727, 51.2057555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478704" }, "bbox": [ -0.0416585, 51.2062126, -0.0416585, 51.2062126 ], "geometry": { "type": "Point", "coordinates": [ -0.0416585, 51.2062126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42420660" }, "bbox": [ 0.0301374, 51.1649419, 0.0301374, 51.1649419 ], "geometry": { "type": "Point", "coordinates": [ 0.0301374, 51.1649419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41439787" }, "bbox": [ 0.0296595, 51.1764891, 0.0296595, 51.1764891 ], "geometry": { "type": "Point", "coordinates": [ 0.0296595, 51.1764891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20486916" }, "bbox": [ -0.2731998, 51.2200732, -0.2731998, 51.2200732 ], "geometry": { "type": "Point", "coordinates": [ -0.2731998, 51.2200732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20476587" }, "bbox": [ -0.2737556, 51.2172288, -0.2737556, 51.2172288 ], "geometry": { "type": "Point", "coordinates": [ -0.2737556, 51.2172288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36435447" }, "bbox": [ -0.0480615, 51.1741491, -0.0480615, 51.1741491 ], "geometry": { "type": "Point", "coordinates": [ -0.0480615, 51.1741491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14486639" }, "bbox": [ -0.3594179, 51.2233808, -0.3594179, 51.2233808 ], "geometry": { "type": "Point", "coordinates": [ -0.3594179, 51.2233808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20484745" }, "bbox": [ -0.276247, 51.2225882, -0.276247, 51.2225882 ], "geometry": { "type": "Point", "coordinates": [ -0.276247, 51.2225882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20481517" }, "bbox": [ -0.2809066, 51.2201814, -0.2809066, 51.2201814 ], "geometry": { "type": "Point", "coordinates": [ -0.2809066, 51.2201814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20470790" }, "bbox": [ -0.2822441, 51.2175915, -0.2822441, 51.2175915 ], "geometry": { "type": "Point", "coordinates": [ -0.2822441, 51.2175915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19447580" }, "bbox": [ -0.2877595, 51.1899707, -0.2877595, 51.1899707 ], "geometry": { "type": "Point", "coordinates": [ -0.2877595, 51.1899707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02673221" }, "bbox": [ -0.5306373, 51.3947121, -0.5306373, 51.3947121 ], "geometry": { "type": "Point", "coordinates": [ -0.5306373, 51.3947121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11476246" }, "bbox": [ -0.4026644, 51.2155039, -0.4026644, 51.2155039 ], "geometry": { "type": "Point", "coordinates": [ -0.4026644, 51.2155039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22505865" }, "bbox": [ -0.2453243, 51.241853, -0.2453243, 51.241853 ], "geometry": { "type": "Point", "coordinates": [ -0.2453243, 51.241853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23487661" }, "bbox": [ -0.2289301, 51.2232068, -0.2289301, 51.2232068 ], "geometry": { "type": "Point", "coordinates": [ -0.2289301, 51.2232068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24491819" }, "bbox": [ -0.2229516, 51.2282546, -0.2229516, 51.2282546 ], "geometry": { "type": "Point", "coordinates": [ -0.2229516, 51.2282546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22551298" }, "bbox": [ -0.2501265, 51.2898444, -0.2501265, 51.2898444 ], "geometry": { "type": "Point", "coordinates": [ -0.2501265, 51.2898444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22560906" }, "bbox": [ -0.2508169, 51.2906489, -0.2508169, 51.2906489 ], "geometry": { "type": "Point", "coordinates": [ -0.2508169, 51.2906489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21568523" }, "bbox": [ -0.2538395, 51.2921144, -0.2538395, 51.2921144 ], "geometry": { "type": "Point", "coordinates": [ -0.2538395, 51.2921144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503296" }, "bbox": [ -0.0628941, 51.2417335, -0.0628941, 51.2417335 ], "geometry": { "type": "Point", "coordinates": [ -0.0628941, 51.2417335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503692" }, "bbox": [ -0.0624795, 51.2415138, -0.0624795, 51.2415138 ], "geometry": { "type": "Point", "coordinates": [ -0.0624795, 51.2415138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504873" }, "bbox": [ -0.0604862, 51.2396972, -0.0604862, 51.2396972 ], "geometry": { "type": "Point", "coordinates": [ -0.0604862, 51.2396972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504068" }, "bbox": [ -0.0616718, 51.2393023, -0.0616718, 51.2393023 ], "geometry": { "type": "Point", "coordinates": [ -0.0616718, 51.2393023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513201" }, "bbox": [ -0.062935, 51.2421896, -0.062935, 51.2421896 ], "geometry": { "type": "Point", "coordinates": [ -0.062935, 51.2421896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513900" }, "bbox": [ -0.0617711, 51.2420981, -0.0617711, 51.2420981 ], "geometry": { "type": "Point", "coordinates": [ -0.0617711, 51.2420981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23476287" }, "bbox": [ -0.2313356, 51.2166316, -0.2313356, 51.2166316 ], "geometry": { "type": "Point", "coordinates": [ -0.2313356, 51.2166316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23473576" }, "bbox": [ -0.2353068, 51.2157813, -0.2353068, 51.2157813 ], "geometry": { "type": "Point", "coordinates": [ -0.2353068, 51.2157813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23486545" }, "bbox": [ -0.230457, 51.2219582, -0.230457, 51.2219582 ], "geometry": { "type": "Point", "coordinates": [ -0.230457, 51.2219582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23488332" }, "bbox": [ -0.2282499, 51.2207243, -0.2282499, 51.2207243 ], "geometry": { "type": "Point", "coordinates": [ -0.2282499, 51.2207243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23485281" }, "bbox": [ -0.2324734, 51.2251143, -0.2324734, 51.2251143 ], "geometry": { "type": "Point", "coordinates": [ -0.2324734, 51.2251143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23483542" }, "bbox": [ -0.2349914, 51.2217252, -0.2349914, 51.2217252 ], "geometry": { "type": "Point", "coordinates": [ -0.2349914, 51.2217252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35435125" }, "bbox": [ -0.0630539, 51.1724773, -0.0630539, 51.1724773 ], "geometry": { "type": "Point", "coordinates": [ -0.0630539, 51.1724773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39431780" }, "bbox": [ -0.0111014, 51.1762674, -0.0111014, 51.1762674 ], "geometry": { "type": "Point", "coordinates": [ -0.0111014, 51.1762674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33433203" }, "bbox": [ -0.094262, 51.1708287, -0.094262, 51.1708287 ], "geometry": { "type": "Point", "coordinates": [ -0.094262, 51.1708287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04377962" }, "bbox": [ -0.5039971, 51.1283084, -0.5039971, 51.1283084 ], "geometry": { "type": "Point", "coordinates": [ -0.5039971, 51.1283084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87473699" }, "bbox": [ -0.7506088, 51.2247588, -0.7506088, 51.2247588 ], "geometry": { "type": "Point", "coordinates": [ -0.7506088, 51.2247588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25555505" }, "bbox": [ -0.2013557, 51.2803688, -0.2013557, 51.2803688 ], "geometry": { "type": "Point", "coordinates": [ -0.2013557, 51.2803688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05608501" }, "bbox": [ -0.4820597, 51.3294787, -0.4820597, 51.3294787 ], "geometry": { "type": "Point", "coordinates": [ -0.4820597, 51.3294787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33448148" }, "bbox": [ -0.0866992, 51.1837391, -0.0866992, 51.1837391 ], "geometry": { "type": "Point", "coordinates": [ -0.0866992, 51.1837391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14534314" }, "bbox": [ -0.3613, 51.2663146, -0.3613, 51.2663146 ], "geometry": { "type": "Point", "coordinates": [ -0.3613, 51.2663146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05591477" }, "bbox": [ -0.4918845, 51.3274324, -0.4918845, 51.3274324 ], "geometry": { "type": "Point", "coordinates": [ -0.4918845, 51.3274324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14463368" }, "bbox": [ -0.3650672, 51.207381, -0.3650672, 51.207381 ], "geometry": { "type": "Point", "coordinates": [ -0.3650672, 51.207381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28554795" }, "bbox": [ -0.159208, 51.2880051, -0.159208, 51.2880051 ], "geometry": { "type": "Point", "coordinates": [ -0.159208, 51.2880051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38449039" }, "bbox": [ -0.0141469, 51.181868, -0.0141469, 51.181868 ], "geometry": { "type": "Point", "coordinates": [ -0.0141469, 51.181868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91384220" }, "bbox": [ -0.6946483, 51.1357571, -0.6946483, 51.1357571 ], "geometry": { "type": "Point", "coordinates": [ -0.6946483, 51.1357571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39488233" }, "bbox": [ 0.0007294, 51.2170652, 0.0007294, 51.2170652 ], "geometry": { "type": "Point", "coordinates": [ 0.0007294, 51.2170652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39483848" }, "bbox": [ -0.0056853, 51.2187269, -0.0056853, 51.2187269 ], "geometry": { "type": "Point", "coordinates": [ -0.0056853, 51.2187269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05392107" }, "bbox": [ -0.4975976, 51.1412975, -0.4975976, 51.1412975 ], "geometry": { "type": "Point", "coordinates": [ -0.4975976, 51.1412975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31476058" }, "bbox": [ -0.1170818, 51.2116885, -0.1170818, 51.2116885 ], "geometry": { "type": "Point", "coordinates": [ -0.1170818, 51.2116885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32470126" }, "bbox": [ -0.1116948, 51.209423, -0.1116948, 51.209423 ], "geometry": { "type": "Point", "coordinates": [ -0.1116948, 51.209423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31479554" }, "bbox": [ -0.1123055, 51.2118291, -0.1123055, 51.2118291 ], "geometry": { "type": "Point", "coordinates": [ -0.1123055, 51.2118291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32471360" }, "bbox": [ -0.1097385, 51.2123024, -0.1097385, 51.2123024 ], "geometry": { "type": "Point", "coordinates": [ -0.1097385, 51.2123024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428364" }, "bbox": [ -0.086767, 51.1677906, -0.086767, 51.1677906 ], "geometry": { "type": "Point", "coordinates": [ -0.086767, 51.1677906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40489694" }, "bbox": [ 0.0171871, 51.222036, 0.0171871, 51.222036 ], "geometry": { "type": "Point", "coordinates": [ 0.0171871, 51.222036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41486885" }, "bbox": [ 0.0276161, 51.221169, 0.0276161, 51.221169 ], "geometry": { "type": "Point", "coordinates": [ 0.0276161, 51.221169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32472767" }, "bbox": [ -0.10776, 51.2130553, -0.10776, 51.2130553 ], "geometry": { "type": "Point", "coordinates": [ -0.10776, 51.2130553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42462672" }, "bbox": [ 0.0349626, 51.2021053, 0.0349626, 51.2021053 ], "geometry": { "type": "Point", "coordinates": [ 0.0349626, 51.2021053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42461078" }, "bbox": [ 0.0326369, 51.2025325, 0.0326369, 51.2025325 ], "geometry": { "type": "Point", "coordinates": [ 0.0326369, 51.2025325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41466960" }, "bbox": [ 0.0271439, 51.2011441, 0.0271439, 51.2011441 ], "geometry": { "type": "Point", "coordinates": [ 0.0271439, 51.2011441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43412827" }, "bbox": [ 0.0476677, 51.1529439, 0.0476677, 51.1529439 ], "geometry": { "type": "Point", "coordinates": [ 0.0476677, 51.1529439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21492772" }, "bbox": [ -0.2644283, 51.2338085, -0.2644283, 51.2338085 ], "geometry": { "type": "Point", "coordinates": [ -0.2644283, 51.2338085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21492060" }, "bbox": [ -0.2654593, 51.2327746, -0.2654593, 51.2327746 ], "geometry": { "type": "Point", "coordinates": [ -0.2654593, 51.2327746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20496638" }, "bbox": [ -0.2731611, 51.2309345, -0.2731611, 51.2309345 ], "geometry": { "type": "Point", "coordinates": [ -0.2731611, 51.2309345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20498072" }, "bbox": [ -0.2712027, 51.2339425, -0.2712027, 51.2339425 ], "geometry": { "type": "Point", "coordinates": [ -0.2712027, 51.2339425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42407198" }, "bbox": [ 0.0390526, 51.1501664, 0.0390526, 51.1501664 ], "geometry": { "type": "Point", "coordinates": [ 0.0390526, 51.1501664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32539880" }, "bbox": [ -0.0954339, 51.2692196, -0.0954339, 51.2692196 ], "geometry": { "type": "Point", "coordinates": [ -0.0954339, 51.2692196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42483035" }, "bbox": [ 0.0360424, 51.2166617, 0.0360424, 51.2166617 ], "geometry": { "type": "Point", "coordinates": [ 0.0360424, 51.2166617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40461884" }, "bbox": [ 0.0051465, 51.2034971, 0.0051465, 51.2034971 ], "geometry": { "type": "Point", "coordinates": [ 0.0051465, 51.2034971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40460658" }, "bbox": [ 0.0031845, 51.201369, 0.0031845, 51.201369 ], "geometry": { "type": "Point", "coordinates": [ 0.0031845, 51.201369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442805" }, "bbox": [ -0.0230447, 51.1789276, -0.0230447, 51.1789276 ], "geometry": { "type": "Point", "coordinates": [ -0.0230447, 51.1789276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442911" }, "bbox": [ -0.0230831, 51.1794921, -0.0230831, 51.1794921 ], "geometry": { "type": "Point", "coordinates": [ -0.0230831, 51.1794921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27456560" }, "bbox": [ -0.1745712, 51.1954297, -0.1745712, 51.1954297 ], "geometry": { "type": "Point", "coordinates": [ -0.1745712, 51.1954297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455295" }, "bbox": [ -0.1762686, 51.1985701, -0.1762686, 51.1985701 ], "geometry": { "type": "Point", "coordinates": [ -0.1762686, 51.1985701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28450833" }, "bbox": [ -0.1691348, 51.1925854, -0.1691348, 51.1925854 ], "geometry": { "type": "Point", "coordinates": [ -0.1691348, 51.1925854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32487871" }, "bbox": [ -0.0999172, 51.2221592, -0.0999172, 51.2221592 ], "geometry": { "type": "Point", "coordinates": [ -0.0999172, 51.2221592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33583828" }, "bbox": [ -0.0877634, 51.3073867, -0.0877634, 51.3073867 ], "geometry": { "type": "Point", "coordinates": [ -0.0877634, 51.3073867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37463439" }, "bbox": [ -0.0356646, 51.2002371, -0.0356646, 51.2002371 ], "geometry": { "type": "Point", "coordinates": [ -0.0356646, 51.2002371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10414759" }, "bbox": [ -0.4218244, 51.1625258, -0.4218244, 51.1625258 ], "geometry": { "type": "Point", "coordinates": [ -0.4218244, 51.1625258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93469898" }, "bbox": [ -0.6552528, 51.2140064, -0.6552528, 51.2140064 ], "geometry": { "type": "Point", "coordinates": [ -0.6552528, 51.2140064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93469674" }, "bbox": [ -0.6578038, 51.2132858, -0.6578038, 51.2132858 ], "geometry": { "type": "Point", "coordinates": [ -0.6578038, 51.2132858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20405416" }, "bbox": [ -0.277966, 51.1480664, -0.277966, 51.1480664 ], "geometry": { "type": "Point", "coordinates": [ -0.277966, 51.1480664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20403939" }, "bbox": [ -0.2799578, 51.1501502, -0.2799578, 51.1501502 ], "geometry": { "type": "Point", "coordinates": [ -0.2799578, 51.1501502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20402324" }, "bbox": [ -0.2821864, 51.1489821, -0.2821864, 51.1489821 ], "geometry": { "type": "Point", "coordinates": [ -0.2821864, 51.1489821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20405734" }, "bbox": [ -0.2762431, 51.1491559, -0.2762431, 51.1491559 ], "geometry": { "type": "Point", "coordinates": [ -0.2762431, 51.1491559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22466179" }, "bbox": [ -0.246191, 51.2073205, -0.246191, 51.2073205 ], "geometry": { "type": "Point", "coordinates": [ -0.246191, 51.2073205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22477410" }, "bbox": [ -0.2442039, 51.2099529, -0.2442039, 51.2099529 ], "geometry": { "type": "Point", "coordinates": [ -0.2442039, 51.2099529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36430732" }, "bbox": [ -0.0548181, 51.1728652, -0.0548181, 51.1728652 ], "geometry": { "type": "Point", "coordinates": [ -0.0548181, 51.1728652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36432646" }, "bbox": [ -0.0516706, 51.1744216, -0.0516706, 51.1744216 ], "geometry": { "type": "Point", "coordinates": [ -0.0516706, 51.1744216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36440466" }, "bbox": [ -0.0547508, 51.1850107, -0.0547508, 51.1850107 ], "geometry": { "type": "Point", "coordinates": [ -0.0547508, 51.1850107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25475019" }, "bbox": [ -0.2046969, 51.2101887, -0.2046969, 51.2101887 ], "geometry": { "type": "Point", "coordinates": [ -0.2046969, 51.2101887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37399263" }, "bbox": [ -0.0299, 51.1393362, -0.0299, 51.1393362 ], "geometry": { "type": "Point", "coordinates": [ -0.0299, 51.1393362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38562389" }, "bbox": [ -0.0185472, 51.2944755, -0.0185472, 51.2944755 ], "geometry": { "type": "Point", "coordinates": [ -0.0185472, 51.2944755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38563578" }, "bbox": [ -0.0177031, 51.2930989, -0.0177031, 51.2930989 ], "geometry": { "type": "Point", "coordinates": [ -0.0177031, 51.2930989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498867" }, "bbox": [ -0.0694146, 51.2303333, -0.0694146, 51.2303333 ], "geometry": { "type": "Point", "coordinates": [ -0.0694146, 51.2303333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498558" }, "bbox": [ -0.0709794, 51.2303663, -0.0709794, 51.2303663 ], "geometry": { "type": "Point", "coordinates": [ -0.0709794, 51.2303663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34497646" }, "bbox": [ -0.0712303, 51.2283484, -0.0712303, 51.2283484 ], "geometry": { "type": "Point", "coordinates": [ -0.0712303, 51.2283484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498566" }, "bbox": [ -0.0696177, 51.2297943, -0.0696177, 51.2297943 ], "geometry": { "type": "Point", "coordinates": [ -0.0696177, 51.2297943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35490968" }, "bbox": [ -0.0661201, 51.2304405, -0.0661201, 51.2304405 ], "geometry": { "type": "Point", "coordinates": [ -0.0661201, 51.2304405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36575188" }, "bbox": [ -0.0434763, 51.3037714, -0.0434763, 51.3037714 ], "geometry": { "type": "Point", "coordinates": [ -0.0434763, 51.3037714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19417139" }, "bbox": [ -0.2893998, 51.1591206, -0.2893998, 51.1591206 ], "geometry": { "type": "Point", "coordinates": [ -0.2893998, 51.1591206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38411763" }, "bbox": [ -0.0254464, 51.1573659, -0.0254464, 51.1573659 ], "geometry": { "type": "Point", "coordinates": [ -0.0254464, 51.1573659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95494506" }, "bbox": [ -0.6338445, 51.2328265, -0.6338445, 51.2328265 ], "geometry": { "type": "Point", "coordinates": [ -0.6338445, 51.2328265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90465684" }, "bbox": [ -0.7047774, 51.2132165, -0.7047774, 51.2132165 ], "geometry": { "type": "Point", "coordinates": [ -0.7047774, 51.2132165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90478190" }, "bbox": [ -0.7008011, 51.2231904, -0.7008011, 51.2231904 ], "geometry": { "type": "Point", "coordinates": [ -0.7008011, 51.2231904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90486803" }, "bbox": [ -0.7027492, 51.2243375, -0.7027492, 51.2243375 ], "geometry": { "type": "Point", "coordinates": [ -0.7027492, 51.2243375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95435761" }, "bbox": [ -0.6337299, 51.1836663, -0.6337299, 51.1836663 ], "geometry": { "type": "Point", "coordinates": [ -0.6337299, 51.1836663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95435374" }, "bbox": [ -0.6340359, 51.1850001, -0.6340359, 51.1850001 ], "geometry": { "type": "Point", "coordinates": [ -0.6340359, 51.1850001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95447813" }, "bbox": [ -0.6309419, 51.1886435, -0.6309419, 51.1886435 ], "geometry": { "type": "Point", "coordinates": [ -0.6309419, 51.1886435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93456587" }, "bbox": [ -0.661136, 51.2043741, -0.661136, 51.2043741 ], "geometry": { "type": "Point", "coordinates": [ -0.661136, 51.2043741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93464410" }, "bbox": [ -0.6638724, 51.2064377, -0.6638724, 51.2064377 ], "geometry": { "type": "Point", "coordinates": [ -0.6638724, 51.2064377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20474212" }, "bbox": [ -0.2773511, 51.2106436, -0.2773511, 51.2106436 ], "geometry": { "type": "Point", "coordinates": [ -0.2773511, 51.2106436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20475420" }, "bbox": [ -0.2756004, 51.2113307, -0.2756004, 51.2113307 ], "geometry": { "type": "Point", "coordinates": [ -0.2756004, 51.2113307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20479540" }, "bbox": [ -0.2697042, 51.2130779, -0.2697042, 51.2130779 ], "geometry": { "type": "Point", "coordinates": [ -0.2697042, 51.2130779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20461390" }, "bbox": [ -0.2815909, 51.2087255, -0.2815909, 51.2087255 ], "geometry": { "type": "Point", "coordinates": [ -0.2815909, 51.2087255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29493995" }, "bbox": [ -0.1478865, 51.2340741, -0.1478865, 51.2340741 ], "geometry": { "type": "Point", "coordinates": [ -0.1478865, 51.2340741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494893" }, "bbox": [ -0.1464981, 51.2339663, -0.1464981, 51.2339663 ], "geometry": { "type": "Point", "coordinates": [ -0.1464981, 51.2339663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29496087" }, "bbox": [ -0.1449958, 51.2333124, -0.1449958, 51.2333124 ], "geometry": { "type": "Point", "coordinates": [ -0.1449958, 51.2333124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29496770" }, "bbox": [ -0.1439314, 51.2319422, -0.1439314, 51.2319422 ], "geometry": { "type": "Point", "coordinates": [ -0.1439314, 51.2319422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29505002" }, "bbox": [ -0.1464563, 51.234587, -0.1464563, 51.234587 ], "geometry": { "type": "Point", "coordinates": [ -0.1464563, 51.234587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30494682" }, "bbox": [ -0.1326688, 51.232607, -0.1326688, 51.232607 ], "geometry": { "type": "Point", "coordinates": [ -0.1326688, 51.232607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29503701" }, "bbox": [ -0.1484005, 51.2345705, -0.1484005, 51.2345705 ], "geometry": { "type": "Point", "coordinates": [ -0.1484005, 51.2345705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29504101" }, "bbox": [ -0.147369, 51.2347556, -0.147369, 51.2347556 ], "geometry": { "type": "Point", "coordinates": [ -0.147369, 51.2347556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29504508" }, "bbox": [ -0.146557, 51.2356978, -0.146557, 51.2356978 ], "geometry": { "type": "Point", "coordinates": [ -0.146557, 51.2356978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29506709" }, "bbox": [ -0.144503, 51.2355218, -0.144503, 51.2355218 ], "geometry": { "type": "Point", "coordinates": [ -0.144503, 51.2355218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30500401" }, "bbox": [ -0.1382734, 51.2345653, -0.1382734, 51.2345653 ], "geometry": { "type": "Point", "coordinates": [ -0.1382734, 51.2345653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81474211" }, "bbox": [ -0.835657, 51.2171052, -0.835657, 51.2171052 ], "geometry": { "type": "Point", "coordinates": [ -0.835657, 51.2171052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99451219" }, "bbox": [ -0.5828324, 51.1974326, -0.5828324, 51.1974326 ], "geometry": { "type": "Point", "coordinates": [ -0.5828324, 51.1974326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99451314" }, "bbox": [ -0.5826406, 51.1968769, -0.5826406, 51.1968769 ], "geometry": { "type": "Point", "coordinates": [ -0.5826406, 51.1968769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99451920" }, "bbox": [ -0.5820832, 51.197144, -0.5820832, 51.197144 ], "geometry": { "type": "Point", "coordinates": [ -0.5820832, 51.197144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459922" }, "bbox": [ -0.5847187, 51.1977422, -0.5847187, 51.1977422 ], "geometry": { "type": "Point", "coordinates": [ -0.5847187, 51.1977422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89475980" }, "bbox": [ -0.718301, 51.2224976, -0.718301, 51.2224976 ], "geometry": { "type": "Point", "coordinates": [ -0.718301, 51.2224976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89453848" }, "bbox": [ -0.7220624, 51.2015229, -0.7220624, 51.2015229 ], "geometry": { "type": "Point", "coordinates": [ -0.7220624, 51.2015229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89454152" }, "bbox": [ -0.721747, 51.2018724, -0.721747, 51.2018724 ], "geometry": { "type": "Point", "coordinates": [ -0.721747, 51.2018724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20466606" }, "bbox": [ -0.2741806, 51.2012195, -0.2741806, 51.2012195 ], "geometry": { "type": "Point", "coordinates": [ -0.2741806, 51.2012195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39453828" }, "bbox": [ -0.0070902, 51.1898465, -0.0070902, 51.1898465 ], "geometry": { "type": "Point", "coordinates": [ -0.0070902, 51.1898465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382933" }, "bbox": [ -0.7251403, 51.1375996, -0.7251403, 51.1375996 ], "geometry": { "type": "Point", "coordinates": [ -0.7251403, 51.1375996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27546303" }, "bbox": [ -0.1715068, 51.2709147, -0.1715068, 51.2709147 ], "geometry": { "type": "Point", "coordinates": [ -0.1715068, 51.2709147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97354483" }, "bbox": [ -0.6095526, 51.1134057, -0.6095526, 51.1134057 ], "geometry": { "type": "Point", "coordinates": [ -0.6095526, 51.1134057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01483850" }, "bbox": [ -0.5496603, 51.226637, -0.5496603, 51.226637 ], "geometry": { "type": "Point", "coordinates": [ -0.5496603, 51.226637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04523526" }, "bbox": [ -0.5058722, 51.2598526, -0.5058722, 51.2598526 ], "geometry": { "type": "Point", "coordinates": [ -0.5058722, 51.2598526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04524505" }, "bbox": [ -0.5045706, 51.2578877, -0.5045706, 51.2578877 ], "geometry": { "type": "Point", "coordinates": [ -0.5045706, 51.2578877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529830" }, "bbox": [ -0.5109417, 51.2603479, -0.5109417, 51.2603479 ], "geometry": { "type": "Point", "coordinates": [ -0.5109417, 51.2603479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03529029" }, "bbox": [ -0.5114919, 51.2605344, -0.5114919, 51.2605344 ], "geometry": { "type": "Point", "coordinates": [ -0.5114919, 51.2605344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32428291" }, "bbox": [ -0.1011166, 51.1699912, -0.1011166, 51.1699912 ], "geometry": { "type": "Point", "coordinates": [ -0.1011166, 51.1699912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07386237" }, "bbox": [ -0.4634391, 51.1341806, -0.4634391, 51.1341806 ], "geometry": { "type": "Point", "coordinates": [ -0.4634391, 51.1341806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07381037" }, "bbox": [ -0.4706081, 51.1346403, -0.4706081, 51.1346403 ], "geometry": { "type": "Point", "coordinates": [ -0.4706081, 51.1346403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07382821" }, "bbox": [ -0.4680377, 51.1332358, -0.4680377, 51.1332358 ], "geometry": { "type": "Point", "coordinates": [ -0.4680377, 51.1332358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07383756" }, "bbox": [ -0.4670377, 51.1365283, -0.4670377, 51.1365283 ], "geometry": { "type": "Point", "coordinates": [ -0.4670377, 51.1365283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07385575" }, "bbox": [ -0.4640208, 51.1379312, -0.4640208, 51.1379312 ], "geometry": { "type": "Point", "coordinates": [ -0.4640208, 51.1379312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07386198" }, "bbox": [ -0.4637243, 51.1402338, -0.4637243, 51.1402338 ], "geometry": { "type": "Point", "coordinates": [ -0.4637243, 51.1402338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96483395" }, "bbox": [ -0.6215054, 51.2314439, -0.6215054, 51.2314439 ], "geometry": { "type": "Point", "coordinates": [ -0.6215054, 51.2314439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96480385" }, "bbox": [ -0.6259914, 51.230827, -0.6259914, 51.230827 ], "geometry": { "type": "Point", "coordinates": [ -0.6259914, 51.230827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96483891" }, "bbox": [ -0.6209669, 51.2312583, -0.6209669, 51.2312583 ], "geometry": { "type": "Point", "coordinates": [ -0.6209669, 51.2312583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91412037" }, "bbox": [ -0.6970434, 51.164358, -0.6970434, 51.164358 ], "geometry": { "type": "Point", "coordinates": [ -0.6970434, 51.164358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23443638" }, "bbox": [ -0.2360276, 51.1852042, -0.2360276, 51.1852042 ], "geometry": { "type": "Point", "coordinates": [ -0.2360276, 51.1852042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24444475" }, "bbox": [ -0.2202304, 51.1887051, -0.2202304, 51.1887051 ], "geometry": { "type": "Point", "coordinates": [ -0.2202304, 51.1887051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38441879" }, "bbox": [ -0.0241999, 51.1856011, -0.0241999, 51.1856011 ], "geometry": { "type": "Point", "coordinates": [ -0.0241999, 51.1856011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90465607" }, "bbox": [ -0.7049872, 51.2066159, -0.7049872, 51.2066159 ], "geometry": { "type": "Point", "coordinates": [ -0.7049872, 51.2066159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90457693" }, "bbox": [ -0.702192, 51.2054677, -0.702192, 51.2054677 ], "geometry": { "type": "Point", "coordinates": [ -0.702192, 51.2054677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90456674" }, "bbox": [ -0.704291, 51.2036104, -0.704291, 51.2036104 ], "geometry": { "type": "Point", "coordinates": [ -0.704291, 51.2036104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19458110" }, "bbox": [ -0.2872097, 51.1921623, -0.2872097, 51.1921623 ], "geometry": { "type": "Point", "coordinates": [ -0.2872097, 51.1921623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19449418" }, "bbox": [ -0.2858377, 51.1844483, -0.2858377, 51.1844483 ], "geometry": { "type": "Point", "coordinates": [ -0.2858377, 51.1844483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90469287" }, "bbox": [ -0.6995837, 51.2137599, -0.6995837, 51.2137599 ], "geometry": { "type": "Point", "coordinates": [ -0.6995837, 51.2137599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90468996" }, "bbox": [ -0.7000728, 51.2145012, -0.7000728, 51.2145012 ], "geometry": { "type": "Point", "coordinates": [ -0.7000728, 51.2145012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90477548" }, "bbox": [ -0.702935, 51.2189938, -0.702935, 51.2189938 ], "geometry": { "type": "Point", "coordinates": [ -0.702935, 51.2189938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91471047" }, "bbox": [ -0.6966302, 51.2195312, -0.6966302, 51.2195312 ], "geometry": { "type": "Point", "coordinates": [ -0.6966302, 51.2195312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91473688" }, "bbox": [ -0.6928441, 51.2227911, -0.6928441, 51.2227911 ], "geometry": { "type": "Point", "coordinates": [ -0.6928441, 51.2227911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482102" }, "bbox": [ -0.6947917, 51.2242869, -0.6947917, 51.2242869 ], "geometry": { "type": "Point", "coordinates": [ -0.6947917, 51.2242869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33509740" }, "bbox": [ -0.0831164, 51.2377356, -0.0831164, 51.2377356 ], "geometry": { "type": "Point", "coordinates": [ -0.0831164, 51.2377356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35465253" }, "bbox": [ -0.061418, 51.2019018, -0.061418, 51.2019018 ], "geometry": { "type": "Point", "coordinates": [ -0.061418, 51.2019018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25541817" }, "bbox": [ -0.2072211, 51.272702, -0.2072211, 51.272702 ], "geometry": { "type": "Point", "coordinates": [ -0.2072211, 51.272702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90448065" }, "bbox": [ -0.7018026, 51.1940003, -0.7018026, 51.1940003 ], "geometry": { "type": "Point", "coordinates": [ -0.7018026, 51.1940003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90451435" }, "bbox": [ -0.7118322, 51.199604, -0.7118322, 51.199604 ], "geometry": { "type": "Point", "coordinates": [ -0.7118322, 51.199604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91441475" }, "bbox": [ -0.6971617, 51.1946887, -0.6971617, 51.1946887 ], "geometry": { "type": "Point", "coordinates": [ -0.6971617, 51.1946887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91441362" }, "bbox": [ -0.6972184, 51.1936136, -0.6972184, 51.1936136 ], "geometry": { "type": "Point", "coordinates": [ -0.6972184, 51.1936136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91442767" }, "bbox": [ -0.6951177, 51.1939893, -0.6951177, 51.1939893 ], "geometry": { "type": "Point", "coordinates": [ -0.6951177, 51.1939893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39416801" }, "bbox": [ -0.0041765, 51.1510969, -0.0041765, 51.1510969 ], "geometry": { "type": "Point", "coordinates": [ -0.0041765, 51.1510969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36494001" }, "bbox": [ -0.0500862, 51.2237018, -0.0500862, 51.2237018 ], "geometry": { "type": "Point", "coordinates": [ -0.0500862, 51.2237018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30446686" }, "bbox": [ -0.1316016, 51.1881003, -0.1316016, 51.1881003 ], "geometry": { "type": "Point", "coordinates": [ -0.1316016, 51.1881003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37467306" }, "bbox": [ -0.0302251, 51.1971347, -0.0302251, 51.1971347 ], "geometry": { "type": "Point", "coordinates": [ -0.0302251, 51.1971347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37469905" }, "bbox": [ -0.0263888, 51.1970024, -0.0263888, 51.1970024 ], "geometry": { "type": "Point", "coordinates": [ -0.0263888, 51.1970024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36490113" }, "bbox": [ -0.0538574, 51.2250473, -0.0538574, 51.2250473 ], "geometry": { "type": "Point", "coordinates": [ -0.0538574, 51.2250473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96596623" }, "bbox": [ -0.6147913, 51.32406, -0.6147913, 51.32406 ], "geometry": { "type": "Point", "coordinates": [ -0.6147913, 51.32406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14624868" }, "bbox": [ -0.3573053, 51.3517658, -0.3573053, 51.3517658 ], "geometry": { "type": "Point", "coordinates": [ -0.3573053, 51.3517658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20502539" }, "bbox": [ -0.2785522, 51.2402511, -0.2785522, 51.2402511 ], "geometry": { "type": "Point", "coordinates": [ -0.2785522, 51.2402511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510901" }, "bbox": [ -0.3955896, 51.2488502, -0.3955896, 51.2488502 ], "geometry": { "type": "Point", "coordinates": [ -0.3955896, 51.2488502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12501375" }, "bbox": [ -0.3950774, 51.2448058, -0.3950774, 51.2448058 ], "geometry": { "type": "Point", "coordinates": [ -0.3950774, 51.2448058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10382342" }, "bbox": [ -0.4257274, 51.1345618, -0.4257274, 51.1345618 ], "geometry": { "type": "Point", "coordinates": [ -0.4257274, 51.1345618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92379159" }, "bbox": [ -0.6736569, 51.1301073, -0.6736569, 51.1301073 ], "geometry": { "type": "Point", "coordinates": [ -0.6736569, 51.1301073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07477517" }, "bbox": [ -0.4587029, 51.2136106, -0.4587029, 51.2136106 ], "geometry": { "type": "Point", "coordinates": [ -0.4587029, 51.2136106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07475109" }, "bbox": [ -0.4620696, 51.212967, -0.4620696, 51.212967 ], "geometry": { "type": "Point", "coordinates": [ -0.4620696, 51.212967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07474512" }, "bbox": [ -0.46283, 51.2131318, -0.46283, 51.2131318 ], "geometry": { "type": "Point", "coordinates": [ -0.46283, 51.2131318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07478322" }, "bbox": [ -0.4576012, 51.2139441, -0.4576012, 51.2139441 ], "geometry": { "type": "Point", "coordinates": [ -0.4576012, 51.2139441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01383680" }, "bbox": [ -0.5523794, 51.1394932, -0.5523794, 51.1394932 ], "geometry": { "type": "Point", "coordinates": [ -0.5523794, 51.1394932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00388705" }, "bbox": [ -0.5597581, 51.1328899, -0.5597581, 51.1328899 ], "geometry": { "type": "Point", "coordinates": [ -0.5597581, 51.1328899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04427859" }, "bbox": [ -0.5025088, 51.173127, -0.5025088, 51.173127 ], "geometry": { "type": "Point", "coordinates": [ -0.5025088, 51.173127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88489558" }, "bbox": [ -0.7289372, 51.2294981, -0.7289372, 51.2294981 ], "geometry": { "type": "Point", "coordinates": [ -0.7289372, 51.2294981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04755408" }, "bbox": [ -0.4963966, 51.4650525, -0.4963966, 51.4650525 ], "geometry": { "type": "Point", "coordinates": [ -0.4963966, 51.4650525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04745682" }, "bbox": [ -0.4968174, 51.4628161, -0.4968174, 51.4628161 ], "geometry": { "type": "Point", "coordinates": [ -0.4968174, 51.4628161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04746969" }, "bbox": [ -0.4943853, 51.461515, -0.4943853, 51.461515 ], "geometry": { "type": "Point", "coordinates": [ -0.4943853, 51.461515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04743698" }, "bbox": [ -0.4988448, 51.4641683, -0.4988448, 51.4641683 ], "geometry": { "type": "Point", "coordinates": [ -0.4988448, 51.4641683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32446293" }, "bbox": [ -0.1036698, 51.1883333, -0.1036698, 51.1883333 ], "geometry": { "type": "Point", "coordinates": [ -0.1036698, 51.1883333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03335855" }, "bbox": [ -0.5224351, 51.0918846, -0.5224351, 51.0918846 ], "geometry": { "type": "Point", "coordinates": [ -0.5224351, 51.0918846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39454086" }, "bbox": [ -0.0063301, 51.195002, -0.0063301, 51.195002 ], "geometry": { "type": "Point", "coordinates": [ -0.0063301, 51.195002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12677530" }, "bbox": [ -0.3810706, 51.3936894, -0.3810706, 51.3936894 ], "geometry": { "type": "Point", "coordinates": [ -0.3810706, 51.3936894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14420538" }, "bbox": [ -0.3704195, 51.1693533, -0.3704195, 51.1693533 ], "geometry": { "type": "Point", "coordinates": [ -0.3704195, 51.1693533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14426822" }, "bbox": [ -0.3611025, 51.1678127, -0.3611025, 51.1678127 ], "geometry": { "type": "Point", "coordinates": [ -0.3611025, 51.1678127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14420018" }, "bbox": [ -0.3708197, 51.1675809, -0.3708197, 51.1675809 ], "geometry": { "type": "Point", "coordinates": [ -0.3708197, 51.1675809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13429724" }, "bbox": [ -0.3713276, 51.1680188, -0.3713276, 51.1680188 ], "geometry": { "type": "Point", "coordinates": [ -0.3713276, 51.1680188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14410183" }, "bbox": [ -0.3708694, 51.164713, -0.3708694, 51.164713 ], "geometry": { "type": "Point", "coordinates": [ -0.3708694, 51.164713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14414549" }, "bbox": [ -0.3651219, 51.1606204, -0.3651219, 51.1606204 ], "geometry": { "type": "Point", "coordinates": [ -0.3651219, 51.1606204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14416758" }, "bbox": [ -0.3615089, 51.1619904, -0.3615089, 51.1619904 ], "geometry": { "type": "Point", "coordinates": [ -0.3615089, 51.1619904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14410170" }, "bbox": [ -0.3709985, 51.1633816, -0.3709985, 51.1633816 ], "geometry": { "type": "Point", "coordinates": [ -0.3709985, 51.1633816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19612093" }, "bbox": [ -0.2899263, 51.3438587, -0.2899263, 51.3438587 ], "geometry": { "type": "Point", "coordinates": [ -0.2899263, 51.3438587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42413198" }, "bbox": [ 0.0336583, 51.1595102, 0.0336583, 51.1595102 ], "geometry": { "type": "Point", "coordinates": [ 0.0336583, 51.1595102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42421020" }, "bbox": [ 0.0312364, 51.1615767, 0.0312364, 51.1615767 ], "geometry": { "type": "Point", "coordinates": [ 0.0312364, 51.1615767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22405784" }, "bbox": [ -0.2484216, 51.1538162, -0.2484216, 51.1538162 ], "geometry": { "type": "Point", "coordinates": [ -0.2484216, 51.1538162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408369" }, "bbox": [ -0.2438398, 51.1530549, -0.2438398, 51.1530549 ], "geometry": { "type": "Point", "coordinates": [ -0.2438398, 51.1530549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22406885" }, "bbox": [ -0.2471994, 51.1538839, -0.2471994, 51.1538839 ], "geometry": { "type": "Point", "coordinates": [ -0.2471994, 51.1538839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408789" }, "bbox": [ -0.2444688, 51.1540287, -0.2444688, 51.1540287 ], "geometry": { "type": "Point", "coordinates": [ -0.2444688, 51.1540287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23420483" }, "bbox": [ -0.2411805, 51.1716679, -0.2411805, 51.1716679 ], "geometry": { "type": "Point", "coordinates": [ -0.2411805, 51.1716679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23424902" }, "bbox": [ -0.2352764, 51.16411, -0.2352764, 51.16411 ], "geometry": { "type": "Point", "coordinates": [ -0.2352764, 51.16411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23425904" }, "bbox": [ -0.2338753, 51.1642114, -0.2338753, 51.1642114 ], "geometry": { "type": "Point", "coordinates": [ -0.2338753, 51.1642114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23425010" }, "bbox": [ -0.2342128, 51.164971, -0.2342128, 51.164971 ], "geometry": { "type": "Point", "coordinates": [ -0.2342128, 51.164971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23427010" }, "bbox": [ -0.2317312, 51.1646212, -0.2317312, 51.1646212 ], "geometry": { "type": "Point", "coordinates": [ -0.2317312, 51.1646212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23424710" }, "bbox": [ -0.23549, 51.1648629, -0.23549, 51.1648629 ], "geometry": { "type": "Point", "coordinates": [ -0.23549, 51.1648629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23427821" }, "bbox": [ -0.2338773, 51.1678279, -0.2338773, 51.1678279 ], "geometry": { "type": "Point", "coordinates": [ -0.2338773, 51.1678279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14391674" }, "bbox": [ -0.3689494, 51.1460272, -0.3689494, 51.1460272 ], "geometry": { "type": "Point", "coordinates": [ -0.3689494, 51.1460272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14392969" }, "bbox": [ -0.3673229, 51.1450364, -0.3673229, 51.1450364 ], "geometry": { "type": "Point", "coordinates": [ -0.3673229, 51.1450364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14388897" }, "bbox": [ -0.3600256, 51.1387547, -0.3600256, 51.1387547 ], "geometry": { "type": "Point", "coordinates": [ -0.3600256, 51.1387547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41412580" }, "bbox": [ 0.0176078, 51.1577325, 0.0176078, 51.1577325 ], "geometry": { "type": "Point", "coordinates": [ 0.0176078, 51.1577325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40487273" }, "bbox": [ 0.0138948, 51.2206451, 0.0138948, 51.2206451 ], "geometry": { "type": "Point", "coordinates": [ 0.0138948, 51.2206451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40486095" }, "bbox": [ 0.0120746, 51.222457, 0.0120746, 51.222457 ], "geometry": { "type": "Point", "coordinates": [ 0.0120746, 51.222457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41483479" }, "bbox": [ 0.0223087, 51.2206005, 0.0223087, 51.2206005 ], "geometry": { "type": "Point", "coordinates": [ 0.0223087, 51.2206005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41493205" }, "bbox": [ 0.0221068, 51.2228143, 0.0221068, 51.2228143 ], "geometry": { "type": "Point", "coordinates": [ 0.0221068, 51.2228143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15380515" }, "bbox": [ -0.3569732, 51.1314212, -0.3569732, 51.1314212 ], "geometry": { "type": "Point", "coordinates": [ -0.3569732, 51.1314212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15383551" }, "bbox": [ -0.3527432, 51.1342231, -0.3527432, 51.1342231 ], "geometry": { "type": "Point", "coordinates": [ -0.3527432, 51.1342231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15382068" }, "bbox": [ -0.3548301, 51.1358209, -0.3548301, 51.1358209 ], "geometry": { "type": "Point", "coordinates": [ -0.3548301, 51.1358209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15371469" }, "bbox": [ -0.3557541, 51.1273216, -0.3557541, 51.1273216 ], "geometry": { "type": "Point", "coordinates": [ -0.3557541, 51.1273216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13376662" }, "bbox": [ -0.3769371, 51.1267564, -0.3769371, 51.1267564 ], "geometry": { "type": "Point", "coordinates": [ -0.3769371, 51.1267564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13373555" }, "bbox": [ -0.3816896, 51.1260023, -0.3816896, 51.1260023 ], "geometry": { "type": "Point", "coordinates": [ -0.3816896, 51.1260023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13377538" }, "bbox": [ -0.3751516, 51.1250078, -0.3751516, 51.1250078 ], "geometry": { "type": "Point", "coordinates": [ -0.3751516, 51.1250078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18394203" }, "bbox": [ -0.3088692, 51.1383791, -0.3088692, 51.1383791 ], "geometry": { "type": "Point", "coordinates": [ -0.3088692, 51.1383791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35432866" }, "bbox": [ -0.0660939, 51.1762593, -0.0660939, 51.1762593 ], "geometry": { "type": "Point", "coordinates": [ -0.0660939, 51.1762593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377793" }, "bbox": [ -0.3612059, 51.1291961, -0.3612059, 51.1291961 ], "geometry": { "type": "Point", "coordinates": [ -0.3612059, 51.1291961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14376986" }, "bbox": [ -0.3621854, 51.1285129, -0.3621854, 51.1285129 ], "geometry": { "type": "Point", "coordinates": [ -0.3621854, 51.1285129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14371774" }, "bbox": [ -0.3697923, 51.1278015, -0.3697923, 51.1278015 ], "geometry": { "type": "Point", "coordinates": [ -0.3697923, 51.1278015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14372482" }, "bbox": [ -0.3688155, 51.1282895, -0.3688155, 51.1282895 ], "geometry": { "type": "Point", "coordinates": [ -0.3688155, 51.1282895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14377778" }, "bbox": [ -0.3612726, 51.1278035, -0.3612726, 51.1278035 ], "geometry": { "type": "Point", "coordinates": [ -0.3612726, 51.1278035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14385344" }, "bbox": [ -0.3645046, 51.1337512, -0.3645046, 51.1337512 ], "geometry": { "type": "Point", "coordinates": [ -0.3645046, 51.1337512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14385123" }, "bbox": [ -0.3647105, 51.131808, -0.3647105, 51.131808 ], "geometry": { "type": "Point", "coordinates": [ -0.3647105, 51.131808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14382007" }, "bbox": [ -0.3693766, 51.1304717, -0.3693766, 51.1304717 ], "geometry": { "type": "Point", "coordinates": [ -0.3693766, 51.1304717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14386604" }, "bbox": [ -0.3627169, 51.1302353, -0.3627169, 51.1302353 ], "geometry": { "type": "Point", "coordinates": [ -0.3627169, 51.1302353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09589222" }, "bbox": [ -0.4241397, 51.3124153, -0.4241397, 51.3124153 ], "geometry": { "type": "Point", "coordinates": [ -0.4241397, 51.3124153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21564761" }, "bbox": [ -0.2592364, 51.2956987, -0.2592364, 51.2956987 ], "geometry": { "type": "Point", "coordinates": [ -0.2592364, 51.2956987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20567553" }, "bbox": [ -0.2700939, 51.2950994, -0.2700939, 51.2950994 ], "geometry": { "type": "Point", "coordinates": [ -0.2700939, 51.2950994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20568468" }, "bbox": [ -0.2679383, 51.2966676, -0.2679383, 51.2966676 ], "geometry": { "type": "Point", "coordinates": [ -0.2679383, 51.2966676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32505524" }, "bbox": [ -0.1030969, 51.2366246, -0.1030969, 51.2366246 ], "geometry": { "type": "Point", "coordinates": [ -0.1030969, 51.2366246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99729242" }, "bbox": [ -0.5635541, 51.4420946, -0.5635541, 51.4420946 ], "geometry": { "type": "Point", "coordinates": [ -0.5635541, 51.4420946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31466606" }, "bbox": [ -0.1169329, 51.1986298, -0.1169329, 51.1986298 ], "geometry": { "type": "Point", "coordinates": [ -0.1169329, 51.1986298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31467404" }, "bbox": [ -0.1158135, 51.1983985, -0.1158135, 51.1983985 ], "geometry": { "type": "Point", "coordinates": [ -0.1158135, 51.1983985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33486267" }, "bbox": [ -0.0883853, 51.2215213, -0.0883853, 51.2215213 ], "geometry": { "type": "Point", "coordinates": [ -0.0883853, 51.2215213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38471721" }, "bbox": [ -0.0237963, 51.2074958, -0.0237963, 51.2074958 ], "geometry": { "type": "Point", "coordinates": [ -0.0237963, 51.2074958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38470822" }, "bbox": [ -0.0247806, 51.207465, -0.0247806, 51.207465 ], "geometry": { "type": "Point", "coordinates": [ -0.0247806, 51.207465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14409877" }, "bbox": [ -0.3573163, 51.1546796, -0.3573163, 51.1546796 ], "geometry": { "type": "Point", "coordinates": [ -0.3573163, 51.1546796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403257" }, "bbox": [ -0.3667207, 51.1529782, -0.3667207, 51.1529782 ], "geometry": { "type": "Point", "coordinates": [ -0.3667207, 51.1529782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13415801" }, "bbox": [ -0.3767448, 51.1569611, -0.3767448, 51.1569611 ], "geometry": { "type": "Point", "coordinates": [ -0.3767448, 51.1569611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14416201" }, "bbox": [ -0.361901, 51.1580887, -0.361901, 51.1580887 ], "geometry": { "type": "Point", "coordinates": [ -0.361901, 51.1580887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14407220" }, "bbox": [ -0.3613526, 51.1492736, -0.3613526, 51.1492736 ], "geometry": { "type": "Point", "coordinates": [ -0.3613526, 51.1492736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14418603" }, "bbox": [ -0.3588267, 51.1568707, -0.3588267, 51.1568707 ], "geometry": { "type": "Point", "coordinates": [ -0.3588267, 51.1568707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35539559" }, "bbox": [ -0.0529327, 51.2653111, -0.0529327, 51.2653111 ], "geometry": { "type": "Point", "coordinates": [ -0.0529327, 51.2653111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36531040" }, "bbox": [ -0.0500178, 51.2642153, -0.0500178, 51.2642153 ], "geometry": { "type": "Point", "coordinates": [ -0.0500178, 51.2642153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36539090" }, "bbox": [ -0.0382695, 51.2687338, -0.0382695, 51.2687338 ], "geometry": { "type": "Point", "coordinates": [ -0.0382695, 51.2687338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37531077" }, "bbox": [ -0.0363878, 51.2665011, -0.0363878, 51.2665011 ], "geometry": { "type": "Point", "coordinates": [ -0.0363878, 51.2665011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37541040" }, "bbox": [ -0.0357437, 51.2723678, -0.0357437, 51.2723678 ], "geometry": { "type": "Point", "coordinates": [ -0.0357437, 51.2723678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13417190" }, "bbox": [ -0.3749051, 51.1647292, -0.3749051, 51.1647292 ], "geometry": { "type": "Point", "coordinates": [ -0.3749051, 51.1647292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37420695" }, "bbox": [ -0.0404892, 51.1694402, -0.0404892, 51.1694402 ], "geometry": { "type": "Point", "coordinates": [ -0.0404892, 51.1694402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36439619" }, "bbox": [ -0.0422894, 51.1715455, -0.0422894, 51.1715455 ], "geometry": { "type": "Point", "coordinates": [ -0.0422894, 51.1715455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28574862" }, "bbox": [ -0.1582011, 51.3034028, -0.1582011, 51.3034028 ], "geometry": { "type": "Point", "coordinates": [ -0.1582011, 51.3034028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15401328" }, "bbox": [ -0.3553472, 51.1501168, -0.3553472, 51.1501168 ], "geometry": { "type": "Point", "coordinates": [ -0.3553472, 51.1501168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461445" }, "bbox": [ -0.1243455, 51.2022183, -0.1243455, 51.2022183 ], "geometry": { "type": "Point", "coordinates": [ -0.1243455, 51.2022183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461245" }, "bbox": [ -0.1245662, 51.2022306, -0.1245662, 51.2022306 ], "geometry": { "type": "Point", "coordinates": [ -0.1245662, 51.2022306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42440492" }, "bbox": [ 0.0305119, 51.1858906, 0.0305119, 51.1858906 ], "geometry": { "type": "Point", "coordinates": [ 0.0305119, 51.1858906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17476040" }, "bbox": [ -0.3171288, 51.2141075, -0.3171288, 51.2141075 ], "geometry": { "type": "Point", "coordinates": [ -0.3171288, 51.2141075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17474638" }, "bbox": [ -0.3194549, 51.2136186, -0.3194549, 51.2136186 ], "geometry": { "type": "Point", "coordinates": [ -0.3194549, 51.2136186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17473030" }, "bbox": [ -0.3219411, 51.2131341, -0.3219411, 51.2131341 ], "geometry": { "type": "Point", "coordinates": [ -0.3219411, 51.2131341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25577701" }, "bbox": [ -0.1972667, 51.2981952, -0.1972667, 51.2981952 ], "geometry": { "type": "Point", "coordinates": [ -0.1972667, 51.2981952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20400116" }, "bbox": [ -0.2859843, 51.1486011, -0.2859843, 51.1486011 ], "geometry": { "type": "Point", "coordinates": [ -0.2859843, 51.1486011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02322377" }, "bbox": [ -0.5417641, 51.0851703, -0.5417641, 51.0851703 ], "geometry": { "type": "Point", "coordinates": [ -0.5417641, 51.0851703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00524585" }, "bbox": [ -0.5604522, 51.2660141, -0.5604522, 51.2660141 ], "geometry": { "type": "Point", "coordinates": [ -0.5604522, 51.2660141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32460280" }, "bbox": [ -0.1112966, 51.2044501, -0.1112966, 51.2044501 ], "geometry": { "type": "Point", "coordinates": [ -0.1112966, 51.2044501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10531888" }, "bbox": [ -0.4220792, 51.273915, -0.4220792, 51.273915 ], "geometry": { "type": "Point", "coordinates": [ -0.4220792, 51.273915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04707411" }, "bbox": [ -0.4950409, 51.4203692, -0.4950409, 51.4203692 ], "geometry": { "type": "Point", "coordinates": [ -0.4950409, 51.4203692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07434678" }, "bbox": [ -0.4708524, 51.1815783, -0.4708524, 51.1815783 ], "geometry": { "type": "Point", "coordinates": [ -0.4708524, 51.1815783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80459287" }, "bbox": [ -0.8430738, 51.2062685, -0.8430738, 51.2062685 ], "geometry": { "type": "Point", "coordinates": [ -0.8430738, 51.2062685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80459889" }, "bbox": [ -0.8421949, 51.2065167, -0.8421949, 51.2065167 ], "geometry": { "type": "Point", "coordinates": [ -0.8421949, 51.2065167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440465" }, "bbox": [ -0.3266236, 51.1891524, -0.3266236, 51.1891524 ], "geometry": { "type": "Point", "coordinates": [ -0.3266236, 51.1891524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03662690" }, "bbox": [ -0.5171883, 51.3915372, -0.5171883, 51.3915372 ], "geometry": { "type": "Point", "coordinates": [ -0.5171883, 51.3915372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31481577" }, "bbox": [ -0.1231253, 51.2230984, -0.1231253, 51.2230984 ], "geometry": { "type": "Point", "coordinates": [ -0.1231253, 51.2230984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27432202" }, "bbox": [ -0.1811723, 51.1723893, -0.1811723, 51.1723893 ], "geometry": { "type": "Point", "coordinates": [ -0.1811723, 51.1723893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27424079" }, "bbox": [ -0.1792204, 51.1698455, -0.1792204, 51.1698455 ], "geometry": { "type": "Point", "coordinates": [ -0.1792204, 51.1698455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05501585" }, "bbox": [ -0.4947309, 51.2469278, -0.4947309, 51.2469278 ], "geometry": { "type": "Point", "coordinates": [ -0.4947309, 51.2469278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31501789" }, "bbox": [ -0.1222835, 51.2422175, -0.1222835, 51.2422175 ], "geometry": { "type": "Point", "coordinates": [ -0.1222835, 51.2422175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32400216" }, "bbox": [ -0.114509, 51.146795, -0.114509, 51.146795 ], "geometry": { "type": "Point", "coordinates": [ -0.114509, 51.146795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96417071" }, "bbox": [ -0.6184967, 51.1661701, -0.6184967, 51.1661701 ], "geometry": { "type": "Point", "coordinates": [ -0.6184967, 51.1661701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36433492" }, "bbox": [ -0.0510282, 51.1781261, -0.0510282, 51.1781261 ], "geometry": { "type": "Point", "coordinates": [ -0.0510282, 51.1781261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12576776" }, "bbox": [ -0.3851576, 51.307755, -0.3851576, 51.307755 ], "geometry": { "type": "Point", "coordinates": [ -0.3851576, 51.307755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06663407" }, "bbox": [ -0.4732999, 51.3836793, -0.4732999, 51.3836793 ], "geometry": { "type": "Point", "coordinates": [ -0.4732999, 51.3836793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06653789" }, "bbox": [ -0.4732468, 51.3819314, -0.4732468, 51.3819314 ], "geometry": { "type": "Point", "coordinates": [ -0.4732468, 51.3819314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38584975" }, "bbox": [ -0.0138928, 51.3111229, -0.0138928, 51.3111229 ], "geometry": { "type": "Point", "coordinates": [ -0.0138928, 51.3111229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22412042" }, "bbox": [ -0.2532731, 51.1591614, -0.2532731, 51.1591614 ], "geometry": { "type": "Point", "coordinates": [ -0.2532731, 51.1591614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90499511" }, "bbox": [ -0.6987331, 51.2339521, -0.6987331, 51.2339521 ], "geometry": { "type": "Point", "coordinates": [ -0.6987331, 51.2339521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90495013" }, "bbox": [ -0.70478, 51.234093, -0.70478, 51.234093 ], "geometry": { "type": "Point", "coordinates": [ -0.70478, 51.234093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00443176" }, "bbox": [ -0.5651153, 51.192912, -0.5651153, 51.192912 ], "geometry": { "type": "Point", "coordinates": [ -0.5651153, 51.192912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03647812" }, "bbox": [ -0.5105023, 51.366725, -0.5105023, 51.366725 ], "geometry": { "type": "Point", "coordinates": [ -0.5105023, 51.366725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19427596" }, "bbox": [ -0.2883556, 51.1733928, -0.2883556, 51.1733928 ], "geometry": { "type": "Point", "coordinates": [ -0.2883556, 51.1733928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33475314" }, "bbox": [ -0.0895838, 51.2076076, -0.0895838, 51.2076076 ], "geometry": { "type": "Point", "coordinates": [ -0.0895838, 51.2076076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07499898" }, "bbox": [ -0.4541294, 51.2380734, -0.4541294, 51.2380734 ], "geometry": { "type": "Point", "coordinates": [ -0.4541294, 51.2380734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10363795" }, "bbox": [ -0.4242617, 51.121236, -0.4242617, 51.121236 ], "geometry": { "type": "Point", "coordinates": [ -0.4242617, 51.121236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14599604" }, "bbox": [ -0.3496726, 51.3190139, -0.3496726, 51.3190139 ], "geometry": { "type": "Point", "coordinates": [ -0.3496726, 51.3190139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09542087" }, "bbox": [ -0.4357568, 51.2824325, -0.4357568, 51.2824325 ], "geometry": { "type": "Point", "coordinates": [ -0.4357568, 51.2824325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83463209" }, "bbox": [ -0.8087529, 51.2079514, -0.8087529, 51.2079514 ], "geometry": { "type": "Point", "coordinates": [ -0.8087529, 51.2079514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83462217" }, "bbox": [ -0.8099547, 51.2088093, -0.8099547, 51.2088093 ], "geometry": { "type": "Point", "coordinates": [ -0.8099547, 51.2088093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83467342" }, "bbox": [ -0.8027515, 51.2108696, -0.8027515, 51.2108696 ], "geometry": { "type": "Point", "coordinates": [ -0.8027515, 51.2108696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83462210" }, "bbox": [ -0.8096537, 51.2080958, -0.8096537, 51.2080958 ], "geometry": { "type": "Point", "coordinates": [ -0.8096537, 51.2080958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83465731" }, "bbox": [ -0.8049357, 51.2098692, -0.8049357, 51.2098692 ], "geometry": { "type": "Point", "coordinates": [ -0.8049357, 51.2098692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83461811" }, "bbox": [ -0.8105487, 51.2082087, -0.8105487, 51.2082087 ], "geometry": { "type": "Point", "coordinates": [ -0.8105487, 51.2082087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83462821" }, "bbox": [ -0.8087402, 51.208763, -0.8087402, 51.208763 ], "geometry": { "type": "Point", "coordinates": [ -0.8087402, 51.208763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83464221" }, "bbox": [ -0.8068065, 51.2089869, -0.8068065, 51.2089869 ], "geometry": { "type": "Point", "coordinates": [ -0.8068065, 51.2089869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83463026" }, "bbox": [ -0.8086961, 51.2095328, -0.8086961, 51.2095328 ], "geometry": { "type": "Point", "coordinates": [ -0.8086961, 51.2095328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87441035" }, "bbox": [ -0.7548465, 51.1918022, -0.7548465, 51.1918022 ], "geometry": { "type": "Point", "coordinates": [ -0.7548465, 51.1918022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87441433" }, "bbox": [ -0.7542223, 51.1916825, -0.7542223, 51.1916825 ], "geometry": { "type": "Point", "coordinates": [ -0.7542223, 51.1916825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87441132" }, "bbox": [ -0.7550006, 51.1913186, -0.7550006, 51.1913186 ], "geometry": { "type": "Point", "coordinates": [ -0.7550006, 51.1913186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08367074" }, "bbox": [ -0.4482383, 51.1197035, -0.4482383, 51.1197035 ], "geometry": { "type": "Point", "coordinates": [ -0.4482383, 51.1197035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08355045" }, "bbox": [ -0.4514041, 51.1082637, -0.4514041, 51.1082637 ], "geometry": { "type": "Point", "coordinates": [ -0.4514041, 51.1082637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08355873" }, "bbox": [ -0.4497737, 51.1105574, -0.4497737, 51.1105574 ], "geometry": { "type": "Point", "coordinates": [ -0.4497737, 51.1105574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07366352" }, "bbox": [ -0.4637611, 51.1178539, -0.4637611, 51.1178539 ], "geometry": { "type": "Point", "coordinates": [ -0.4637611, 51.1178539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16475042" }, "bbox": [ -0.333572, 51.2143292, -0.333572, 51.2143292 ], "geometry": { "type": "Point", "coordinates": [ -0.333572, 51.2143292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16475743" }, "bbox": [ -0.3326785, 51.2140385, -0.3326785, 51.2140385 ], "geometry": { "type": "Point", "coordinates": [ -0.3326785, 51.2140385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477497" }, "bbox": [ -0.674009, 51.2229961, -0.674009, 51.2229961 ], "geometry": { "type": "Point", "coordinates": [ -0.674009, 51.2229961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01418537" }, "bbox": [ -0.5446971, 51.1625944, -0.5446971, 51.1625944 ], "geometry": { "type": "Point", "coordinates": [ -0.5446971, 51.1625944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01417847" }, "bbox": [ -0.545422, 51.1633614, -0.545422, 51.1633614 ], "geometry": { "type": "Point", "coordinates": [ -0.545422, 51.1633614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12402703" }, "bbox": [ -0.3967812, 51.1486069, -0.3967812, 51.1486069 ], "geometry": { "type": "Point", "coordinates": [ -0.3967812, 51.1486069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11406521" }, "bbox": [ -0.4051481, 51.1503271, -0.4051481, 51.1503271 ], "geometry": { "type": "Point", "coordinates": [ -0.4051481, 51.1503271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11408128" }, "bbox": [ -0.4040252, 51.1510063, -0.4040252, 51.1510063 ], "geometry": { "type": "Point", "coordinates": [ -0.4040252, 51.1510063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14483928" }, "bbox": [ -0.3634112, 51.2222878, -0.3634112, 51.2222878 ], "geometry": { "type": "Point", "coordinates": [ -0.3634112, 51.2222878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99426225" }, "bbox": [ -0.5761834, 51.1708887, -0.5761834, 51.1708887 ], "geometry": { "type": "Point", "coordinates": [ -0.5761834, 51.1708887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03390943" }, "bbox": [ -0.52746, 51.1449683, -0.52746, 51.1449683 ], "geometry": { "type": "Point", "coordinates": [ -0.52746, 51.1449683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391543" }, "bbox": [ -0.5266358, 51.1449684, -0.5266358, 51.1449684 ], "geometry": { "type": "Point", "coordinates": [ -0.5266358, 51.1449684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391944" }, "bbox": [ -0.5270257, 51.1447896, -0.5270257, 51.1447896 ], "geometry": { "type": "Point", "coordinates": [ -0.5270257, 51.1447896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03393753" }, "bbox": [ -0.5237255, 51.1460699, -0.5237255, 51.1460699 ], "geometry": { "type": "Point", "coordinates": [ -0.5237255, 51.1460699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391471" }, "bbox": [ -0.5268627, 51.1473838, -0.5268627, 51.1473838 ], "geometry": { "type": "Point", "coordinates": [ -0.5268627, 51.1473838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391463" }, "bbox": [ -0.5267205, 51.1465023, -0.5267205, 51.1465023 ], "geometry": { "type": "Point", "coordinates": [ -0.5267205, 51.1465023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03390350" }, "bbox": [ -0.529472, 51.1447044, -0.529472, 51.1447044 ], "geometry": { "type": "Point", "coordinates": [ -0.529472, 51.1447044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391251" }, "bbox": [ -0.5270644, 51.145547, -0.5270644, 51.145547 ], "geometry": { "type": "Point", "coordinates": [ -0.5270644, 51.145547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03391052" }, "bbox": [ -0.527366, 51.145738, -0.527366, 51.145738 ], "geometry": { "type": "Point", "coordinates": [ -0.527366, 51.145738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02399372" }, "bbox": [ -0.529528, 51.1475831, -0.529528, 51.1475831 ], "geometry": { "type": "Point", "coordinates": [ -0.529528, 51.1475831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02397075" }, "bbox": [ -0.5332865, 51.1477638, -0.5332865, 51.1477638 ], "geometry": { "type": "Point", "coordinates": [ -0.5332865, 51.1477638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02397270" }, "bbox": [ -0.5327735, 51.1468749, -0.5327735, 51.1468749 ], "geometry": { "type": "Point", "coordinates": [ -0.5327735, 51.1468749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02399756" }, "bbox": [ -0.5291291, 51.1460397, -0.5291291, 51.1460397 ], "geometry": { "type": "Point", "coordinates": [ -0.5291291, 51.1460397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02396363" }, "bbox": [ -0.5340278, 51.1468072, -0.5340278, 51.1468072 ], "geometry": { "type": "Point", "coordinates": [ -0.5340278, 51.1468072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02398335" }, "bbox": [ -0.5313152, 51.1441508, -0.5313152, 51.1441508 ], "geometry": { "type": "Point", "coordinates": [ -0.5313152, 51.1441508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02397346" }, "bbox": [ -0.532779, 51.1452202, -0.532779, 51.1452202 ], "geometry": { "type": "Point", "coordinates": [ -0.532779, 51.1452202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02398247" }, "bbox": [ -0.5315015, 51.1452775, -0.5315015, 51.1452775 ], "geometry": { "type": "Point", "coordinates": [ -0.5315015, 51.1452775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16472814" }, "bbox": [ -0.3366721, 51.2115943, -0.3366721, 51.2115943 ], "geometry": { "type": "Point", "coordinates": [ -0.3366721, 51.2115943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16473235" }, "bbox": [ -0.3360348, 51.2135648, -0.3360348, 51.2135648 ], "geometry": { "type": "Point", "coordinates": [ -0.3360348, 51.2135648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16471209" }, "bbox": [ -0.339147, 51.2111739, -0.339147, 51.2111739 ], "geometry": { "type": "Point", "coordinates": [ -0.339147, 51.2111739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16472235" }, "bbox": [ -0.3373823, 51.2137512, -0.3373823, 51.2137512 ], "geometry": { "type": "Point", "coordinates": [ -0.3373823, 51.2137512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16471502" }, "bbox": [ -0.3388577, 51.2105551, -0.3388577, 51.2105551 ], "geometry": { "type": "Point", "coordinates": [ -0.3388577, 51.2105551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395023" }, "bbox": [ -0.2931581, 51.1399185, -0.2931581, 51.1399185 ], "geometry": { "type": "Point", "coordinates": [ -0.2931581, 51.1399185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20383584" }, "bbox": [ -0.2810916, 51.136298, -0.2810916, 51.136298 ], "geometry": { "type": "Point", "coordinates": [ -0.2810916, 51.136298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20383177" }, "bbox": [ -0.2817189, 51.1356066, -0.2817189, 51.1356066 ], "geometry": { "type": "Point", "coordinates": [ -0.2817189, 51.1356066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20381659" }, "bbox": [ -0.2835483, 51.1337875, -0.2835483, 51.1337875 ], "geometry": { "type": "Point", "coordinates": [ -0.2835483, 51.1337875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20380744" }, "bbox": [ -0.2851874, 51.1326839, -0.2851874, 51.1326839 ], "geometry": { "type": "Point", "coordinates": [ -0.2851874, 51.1326839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20391866" }, "bbox": [ -0.2834467, 51.1437229, -0.2834467, 51.1437229 ], "geometry": { "type": "Point", "coordinates": [ -0.2834467, 51.1437229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02370632" }, "bbox": [ -0.542646, 51.1259266, -0.542646, 51.1259266 ], "geometry": { "type": "Point", "coordinates": [ -0.542646, 51.1259266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02372337" }, "bbox": [ -0.5421678, 51.1264029, -0.5421678, 51.1264029 ], "geometry": { "type": "Point", "coordinates": [ -0.5421678, 51.1264029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01379638" }, "bbox": [ -0.5447825, 51.1264925, -0.5447825, 51.1264925 ], "geometry": { "type": "Point", "coordinates": [ -0.5447825, 51.1264925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01355044" }, "bbox": [ -0.5515733, 51.1083097, -0.5515733, 51.1083097 ], "geometry": { "type": "Point", "coordinates": [ -0.5515733, 51.1083097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99329394" }, "bbox": [ -0.5737835, 51.0867139, -0.5737835, 51.0867139 ], "geometry": { "type": "Point", "coordinates": [ -0.5737835, 51.0867139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22400801" }, "bbox": [ -0.2560667, 51.146268, -0.2560667, 51.146268 ], "geometry": { "type": "Point", "coordinates": [ -0.2560667, 51.146268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10363634" }, "bbox": [ -0.4253346, 51.1154845, -0.4253346, 51.1154845 ], "geometry": { "type": "Point", "coordinates": [ -0.4253346, 51.1154845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94322746" }, "bbox": [ -0.6552448, 51.0838187, -0.6552448, 51.0838187 ], "geometry": { "type": "Point", "coordinates": [ -0.6552448, 51.0838187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13404246" }, "bbox": [ -0.3795417, 51.1522245, -0.3795417, 51.1522245 ], "geometry": { "type": "Point", "coordinates": [ -0.3795417, 51.1522245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13405060" }, "bbox": [ -0.378226, 51.1534616, -0.378226, 51.1534616 ], "geometry": { "type": "Point", "coordinates": [ -0.378226, 51.1534616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13402347" }, "bbox": [ -0.3822745, 51.1523941, -0.3822745, 51.1523941 ], "geometry": { "type": "Point", "coordinates": [ -0.3822745, 51.1523941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403252" }, "bbox": [ -0.3807824, 51.1526459, -0.3807824, 51.1526459 ], "geometry": { "type": "Point", "coordinates": [ -0.3807824, 51.1526459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13402552" }, "bbox": [ -0.3819635, 51.1527952, -0.3819635, 51.1527952 ], "geometry": { "type": "Point", "coordinates": [ -0.3819635, 51.1527952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13402848" }, "bbox": [ -0.3814929, 51.1524294, -0.3814929, 51.1524294 ], "geometry": { "type": "Point", "coordinates": [ -0.3814929, 51.1524294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403239" }, "bbox": [ -0.3812704, 51.1516365, -0.3812704, 51.1516365 ], "geometry": { "type": "Point", "coordinates": [ -0.3812704, 51.1516365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363259" }, "bbox": [ -0.5964434, 51.1202163, -0.5964434, 51.1202163 ], "geometry": { "type": "Point", "coordinates": [ -0.5964434, 51.1202163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363892" }, "bbox": [ -0.5955179, 51.1232715, -0.5955179, 51.1232715 ], "geometry": { "type": "Point", "coordinates": [ -0.5955179, 51.1232715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363490" }, "bbox": [ -0.5968056, 51.1227401, -0.5968056, 51.1227401 ], "geometry": { "type": "Point", "coordinates": [ -0.5968056, 51.1227401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98365236" }, "bbox": [ -0.5936253, 51.1180953, -0.5936253, 51.1180953 ], "geometry": { "type": "Point", "coordinates": [ -0.5936253, 51.1180953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98365325" }, "bbox": [ -0.5938646, 51.1171958, -0.5938646, 51.1171958 ], "geometry": { "type": "Point", "coordinates": [ -0.5938646, 51.1171958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90468465" }, "bbox": [ -0.7009852, 51.2115543, -0.7009852, 51.2115543 ], "geometry": { "type": "Point", "coordinates": [ -0.7009852, 51.2115543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91490433" }, "bbox": [ -0.6972196, 51.236118, -0.6972196, 51.236118 ], "geometry": { "type": "Point", "coordinates": [ -0.6972196, 51.236118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351951" }, "bbox": [ -0.612986, 51.1106366, -0.612986, 51.1106366 ], "geometry": { "type": "Point", "coordinates": [ -0.612986, 51.1106366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37461992" }, "bbox": [ -0.0380437, 51.2050721, -0.0380437, 51.2050721 ], "geometry": { "type": "Point", "coordinates": [ -0.0380437, 51.2050721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86413165" }, "bbox": [ -0.7668765, 51.1676778, -0.7668765, 51.1676778 ], "geometry": { "type": "Point", "coordinates": [ -0.7668765, 51.1676778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85392172" }, "bbox": [ -0.7828238, 51.1505459, -0.7828238, 51.1505459 ], "geometry": { "type": "Point", "coordinates": [ -0.7828238, 51.1505459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85394086" }, "bbox": [ -0.7803162, 51.1517534, -0.7803162, 51.1517534 ], "geometry": { "type": "Point", "coordinates": [ -0.7803162, 51.1517534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85393064" }, "bbox": [ -0.7826347, 51.1495618, -0.7826347, 51.1495618 ], "geometry": { "type": "Point", "coordinates": [ -0.7826347, 51.1495618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85396093" }, "bbox": [ -0.7771785, 51.1523437, -0.7771785, 51.1523437 ], "geometry": { "type": "Point", "coordinates": [ -0.7771785, 51.1523437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85394581" }, "bbox": [ -0.7792092, 51.151301, -0.7792092, 51.151301 ], "geometry": { "type": "Point", "coordinates": [ -0.7792092, 51.151301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85395093" }, "bbox": [ -0.7788233, 51.1523226, -0.7788233, 51.1523226 ], "geometry": { "type": "Point", "coordinates": [ -0.7788233, 51.1523226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85393770" }, "bbox": [ -0.7807065, 51.1502158, -0.7807065, 51.1502158 ], "geometry": { "type": "Point", "coordinates": [ -0.7807065, 51.1502158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02411926" }, "bbox": [ -0.5402553, 51.1614878, -0.5402553, 51.1614878 ], "geometry": { "type": "Point", "coordinates": [ -0.5402553, 51.1614878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01409990" }, "bbox": [ -0.5428875, 51.1583329, -0.5428875, 51.1583329 ], "geometry": { "type": "Point", "coordinates": [ -0.5428875, 51.1583329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82483560" }, "bbox": [ -0.821753, 51.2302897, -0.821753, 51.2302897 ], "geometry": { "type": "Point", "coordinates": [ -0.821753, 51.2302897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82485670" }, "bbox": [ -0.8189494, 51.2316288, -0.8189494, 51.2316288 ], "geometry": { "type": "Point", "coordinates": [ -0.8189494, 51.2316288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82485970" }, "bbox": [ -0.8185055, 51.2318103, -0.8185055, 51.2318103 ], "geometry": { "type": "Point", "coordinates": [ -0.8185055, 51.2318103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82486472" }, "bbox": [ -0.8178835, 51.2316261, -0.8178835, 51.2316261 ], "geometry": { "type": "Point", "coordinates": [ -0.8178835, 51.2316261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43412895" }, "bbox": [ 0.0477245, 51.1590122, 0.0477245, 51.1590122 ], "geometry": { "type": "Point", "coordinates": [ 0.0477245, 51.1590122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42429911" }, "bbox": [ 0.0436759, 51.1603991, 0.0436759, 51.1603991 ], "geometry": { "type": "Point", "coordinates": [ 0.0436759, 51.1603991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43421107" }, "bbox": [ 0.0453177, 51.1599661, 0.0453177, 51.1599661 ], "geometry": { "type": "Point", "coordinates": [ 0.0453177, 51.1599661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43420612" }, "bbox": [ 0.0446898, 51.1605677, 0.0446898, 51.1605677 ], "geometry": { "type": "Point", "coordinates": [ 0.0446898, 51.1605677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03658265" }, "bbox": [ -0.5094176, 51.3804949, -0.5094176, 51.3804949 ], "geometry": { "type": "Point", "coordinates": [ -0.5094176, 51.3804949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03658389" }, "bbox": [ -0.5097679, 51.3825656, -0.5097679, 51.3825656 ], "geometry": { "type": "Point", "coordinates": [ -0.5097679, 51.3825656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15406195" }, "bbox": [ -0.3484606, 51.1556154, -0.3484606, 51.1556154 ], "geometry": { "type": "Point", "coordinates": [ -0.3484606, 51.1556154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15403473" }, "bbox": [ -0.3523488, 51.1542592, -0.3523488, 51.1542592 ], "geometry": { "type": "Point", "coordinates": [ -0.3523488, 51.1542592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15405845" }, "bbox": [ -0.349032, 51.1517122, -0.349032, 51.1517122 ], "geometry": { "type": "Point", "coordinates": [ -0.349032, 51.1517122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15404330" }, "bbox": [ -0.3509313, 51.1503767, -0.3509313, 51.1503767 ], "geometry": { "type": "Point", "coordinates": [ -0.3509313, 51.1503767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16401848" }, "bbox": [ -0.339995, 51.1516252, -0.339995, 51.1516252 ], "geometry": { "type": "Point", "coordinates": [ -0.339995, 51.1516252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16401658" }, "bbox": [ -0.3413161, 51.1526829, -0.3413161, 51.1526829 ], "geometry": { "type": "Point", "coordinates": [ -0.3413161, 51.1526829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16400363" }, "bbox": [ -0.3417251, 51.1533051, -0.3417251, 51.1533051 ], "geometry": { "type": "Point", "coordinates": [ -0.3417251, 51.1533051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15404889" }, "bbox": [ -0.3500427, 51.1556978, -0.3500427, 51.1556978 ], "geometry": { "type": "Point", "coordinates": [ -0.3500427, 51.1556978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15400270" }, "bbox": [ -0.3568377, 51.1538744, -0.3568377, 51.1538744 ], "geometry": { "type": "Point", "coordinates": [ -0.3568377, 51.1538744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15400969" }, "bbox": [ -0.3555223, 51.1539288, -0.3555223, 51.1539288 ], "geometry": { "type": "Point", "coordinates": [ -0.3555223, 51.1539288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16410226" }, "bbox": [ -0.3422944, 51.1589663, -0.3422944, 51.1589663 ], "geometry": { "type": "Point", "coordinates": [ -0.3422944, 51.1589663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15414523" }, "bbox": [ -0.3509831, 51.1589, -0.3509831, 51.1589 ], "geometry": { "type": "Point", "coordinates": [ -0.3509831, 51.1589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16401486" }, "bbox": [ -0.3410124, 51.1551578, -0.3410124, 51.1551578 ], "geometry": { "type": "Point", "coordinates": [ -0.3410124, 51.1551578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15402492" }, "bbox": [ -0.3536808, 51.1559748, -0.3536808, 51.1559748 ], "geometry": { "type": "Point", "coordinates": [ -0.3536808, 51.1559748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465814" }, "bbox": [ -0.3327362, 51.2025906, -0.3327362, 51.2025906 ], "geometry": { "type": "Point", "coordinates": [ -0.3327362, 51.2025906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15408217" }, "bbox": [ -0.345097, 51.1489336, -0.345097, 51.1489336 ], "geometry": { "type": "Point", "coordinates": [ -0.345097, 51.1489336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16414061" }, "bbox": [ -0.3364615, 51.1618036, -0.3364615, 51.1618036 ], "geometry": { "type": "Point", "coordinates": [ -0.3364615, 51.1618036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16412718" }, "bbox": [ -0.3385286, 51.157902, -0.3385286, 51.157902 ], "geometry": { "type": "Point", "coordinates": [ -0.3385286, 51.157902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15417758" }, "bbox": [ -0.3460441, 51.1617636, -0.3460441, 51.1617636 ], "geometry": { "type": "Point", "coordinates": [ -0.3460441, 51.1617636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15403256" }, "bbox": [ -0.352747, 51.152535, -0.352747, 51.152535 ], "geometry": { "type": "Point", "coordinates": [ -0.352747, 51.152535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15400950" }, "bbox": [ -0.3559175, 51.1522072, -0.3559175, 51.1522072 ], "geometry": { "type": "Point", "coordinates": [ -0.3559175, 51.1522072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15406852" }, "bbox": [ -0.3472575, 51.1521032, -0.3472575, 51.1521032 ], "geometry": { "type": "Point", "coordinates": [ -0.3472575, 51.1521032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418410" }, "bbox": [ -0.5735126, 51.1605454, -0.5735126, 51.1605454 ], "geometry": { "type": "Point", "coordinates": [ -0.5735126, 51.1605454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418624" }, "bbox": [ -0.5738964, 51.1617025, -0.5738964, 51.1617025 ], "geometry": { "type": "Point", "coordinates": [ -0.5738964, 51.1617025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419319" }, "bbox": [ -0.5721169, 51.1613023, -0.5721169, 51.1613023 ], "geometry": { "type": "Point", "coordinates": [ -0.5721169, 51.1613023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99408499" }, "bbox": [ -0.5739027, 51.159441, -0.5739027, 51.159441 ], "geometry": { "type": "Point", "coordinates": [ -0.5739027, 51.159441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00414490" }, "bbox": [ -0.5646198, 51.167568, -0.5646198, 51.167568 ], "geometry": { "type": "Point", "coordinates": [ -0.5646198, 51.167568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411018" }, "bbox": [ -0.56987, 51.1610958, -0.56987, 51.1610958 ], "geometry": { "type": "Point", "coordinates": [ -0.56987, 51.1610958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00400291" }, "bbox": [ -0.5709739, 51.1588233, -0.5709739, 51.1588233 ], "geometry": { "type": "Point", "coordinates": [ -0.5709739, 51.1588233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00406958" }, "bbox": [ -0.5615824, 51.1558091, -0.5615824, 51.1558091 ], "geometry": { "type": "Point", "coordinates": [ -0.5615824, 51.1558091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00405388" }, "bbox": [ -0.5645891, 51.1592473, -0.5645891, 51.1592473 ], "geometry": { "type": "Point", "coordinates": [ -0.5645891, 51.1592473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00407371" }, "bbox": [ -0.5608474, 51.1568225, -0.5608474, 51.1568225 ], "geometry": { "type": "Point", "coordinates": [ -0.5608474, 51.1568225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00404566" }, "bbox": [ -0.5648935, 51.1565045, -0.5648935, 51.1565045 ], "geometry": { "type": "Point", "coordinates": [ -0.5648935, 51.1565045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00405559" }, "bbox": [ -0.5635509, 51.1559462, -0.5635509, 51.1559462 ], "geometry": { "type": "Point", "coordinates": [ -0.5635509, 51.1559462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15407876" }, "bbox": [ -0.3456393, 51.1541826, -0.3456393, 51.1541826 ], "geometry": { "type": "Point", "coordinates": [ -0.3456393, 51.1541826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00423616" }, "bbox": [ -0.5654158, 51.1696951, -0.5654158, 51.1696951 ], "geometry": { "type": "Point", "coordinates": [ -0.5654158, 51.1696951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38486011" }, "bbox": [ -0.0167221, 51.2154909, -0.0167221, 51.2154909 ], "geometry": { "type": "Point", "coordinates": [ -0.0167221, 51.2154909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38486912" }, "bbox": [ -0.0163074, 51.2155215, -0.0163074, 51.2155215 ], "geometry": { "type": "Point", "coordinates": [ -0.0163074, 51.2155215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38494236" }, "bbox": [ -0.018845, 51.2268014, -0.018845, 51.2268014 ], "geometry": { "type": "Point", "coordinates": [ -0.018845, 51.2268014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460673" }, "bbox": [ -0.3683371, 51.2082033, -0.3683371, 51.2082033 ], "geometry": { "type": "Point", "coordinates": [ -0.3683371, 51.2082033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41396385" }, "bbox": [ 0.0234088, 51.1404014, 0.0234088, 51.1404014 ], "geometry": { "type": "Point", "coordinates": [ 0.0234088, 51.1404014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41392185" }, "bbox": [ 0.0167516, 51.1401501, 0.0167516, 51.1401501 ], "geometry": { "type": "Point", "coordinates": [ 0.0167516, 51.1401501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41402292" }, "bbox": [ 0.0176298, 51.1501226, 0.0176298, 51.1501226 ], "geometry": { "type": "Point", "coordinates": [ 0.0176298, 51.1501226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41406969" }, "bbox": [ 0.0253746, 51.1476372, 0.0253746, 51.1476372 ], "geometry": { "type": "Point", "coordinates": [ 0.0253746, 51.1476372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41409036" }, "bbox": [ 0.0268432, 51.1449283, 0.0268432, 51.1449283 ], "geometry": { "type": "Point", "coordinates": [ 0.0268432, 51.1449283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41406384" }, "bbox": [ 0.0234887, 51.1493623, 0.0234887, 51.1493623 ], "geometry": { "type": "Point", "coordinates": [ 0.0234887, 51.1493623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41400676" }, "bbox": [ 0.0158534, 51.1487412, 0.0158534, 51.1487412 ], "geometry": { "type": "Point", "coordinates": [ 0.0158534, 51.1487412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41405205" }, "bbox": [ 0.0215229, 51.1421731, 0.0215229, 51.1421731 ], "geometry": { "type": "Point", "coordinates": [ 0.0215229, 51.1421731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41403685" }, "bbox": [ 0.0197154, 51.1494311, 0.0197154, 51.1494311 ], "geometry": { "type": "Point", "coordinates": [ 0.0197154, 51.1494311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41401517" }, "bbox": [ 0.0161285, 51.1434921, 0.0161285, 51.1434921 ], "geometry": { "type": "Point", "coordinates": [ 0.0161285, 51.1434921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42400323" }, "bbox": [ 0.0291617, 51.1436687, 0.0291617, 51.1436687 ], "geometry": { "type": "Point", "coordinates": [ 0.0291617, 51.1436687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42402065" }, "bbox": [ 0.0316229, 51.1474724, 0.0316229, 51.1474724 ], "geometry": { "type": "Point", "coordinates": [ 0.0316229, 51.1474724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42401663" }, "bbox": [ 0.031135, 51.1473281, 0.031135, 51.1473281 ], "geometry": { "type": "Point", "coordinates": [ 0.031135, 51.1473281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41413907" }, "bbox": [ 0.0201763, 51.1511625, 0.0201763, 51.1511625 ], "geometry": { "type": "Point", "coordinates": [ 0.0201763, 51.1511625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42403129" }, "bbox": [ 0.0326514, 51.1444807, 0.0326514, 51.1444807 ], "geometry": { "type": "Point", "coordinates": [ 0.0326514, 51.1444807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41405974" }, "bbox": [ 0.0231553, 51.1483943, 0.0231553, 51.1483943 ], "geometry": { "type": "Point", "coordinates": [ 0.0231553, 51.1483943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41403553" }, "bbox": [ 0.0193753, 51.1466145, 0.0193753, 51.1466145 ], "geometry": { "type": "Point", "coordinates": [ 0.0193753, 51.1466145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41409348" }, "bbox": [ 0.0278102, 51.1460001, 0.0278102, 51.1460001 ], "geometry": { "type": "Point", "coordinates": [ 0.0278102, 51.1460001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41404983" }, "bbox": [ 0.0216311, 51.1492465, 0.0216311, 51.1492465 ], "geometry": { "type": "Point", "coordinates": [ 0.0216311, 51.1492465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41395998" }, "bbox": [ 0.0225705, 51.1415751, 0.0225705, 51.1415751 ], "geometry": { "type": "Point", "coordinates": [ 0.0225705, 51.1415751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42396185" }, "bbox": [ 0.0368158, 51.1402205, 0.0368158, 51.1402205 ], "geometry": { "type": "Point", "coordinates": [ 0.0368158, 51.1402205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42401076" }, "bbox": [ 0.0304799, 51.1481167, 0.0304799, 51.1481167 ], "geometry": { "type": "Point", "coordinates": [ 0.0304799, 51.1481167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42402763" }, "bbox": [ 0.0321902, 51.1475872, 0.0321902, 51.1475872 ], "geometry": { "type": "Point", "coordinates": [ 0.0321902, 51.1475872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42402227" }, "bbox": [ 0.0317062, 51.143926, 0.0317062, 51.143926 ], "geometry": { "type": "Point", "coordinates": [ 0.0317062, 51.143926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42400335" }, "bbox": [ 0.0290947, 51.1452601, 0.0290947, 51.1452601 ], "geometry": { "type": "Point", "coordinates": [ 0.0290947, 51.1452601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40409059" }, "bbox": [ 0.0193654, 51.1454443, 0.0193654, 51.1454443 ], "geometry": { "type": "Point", "coordinates": [ 0.0193654, 51.1454443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91392722" }, "bbox": [ -0.6965488, 51.1450552, -0.6965488, 51.1450552 ], "geometry": { "type": "Point", "coordinates": [ -0.6965488, 51.1450552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91394225" }, "bbox": [ -0.6941174, 51.1463049, -0.6941174, 51.1463049 ], "geometry": { "type": "Point", "coordinates": [ -0.6941174, 51.1463049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91392371" }, "bbox": [ -0.6974668, 51.1492173, -0.6974668, 51.1492173 ], "geometry": { "type": "Point", "coordinates": [ -0.6974668, 51.1492173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91394161" }, "bbox": [ -0.6969467, 51.1471404, -0.6969467, 51.1471404 ], "geometry": { "type": "Point", "coordinates": [ -0.6969467, 51.1471404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91393034" }, "bbox": [ -0.6959581, 51.1461396, -0.6959581, 51.1461396 ], "geometry": { "type": "Point", "coordinates": [ -0.6959581, 51.1461396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91395481" }, "bbox": [ -0.6926511, 51.150041, -0.6926511, 51.150041 ], "geometry": { "type": "Point", "coordinates": [ -0.6926511, 51.150041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91394361" }, "bbox": [ -0.6940754, 51.1484074, -0.6940754, 51.1484074 ], "geometry": { "type": "Point", "coordinates": [ -0.6940754, 51.1484074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37404623" }, "bbox": [ -0.0361774, 51.1448596, -0.0361774, 51.1448596 ], "geometry": { "type": "Point", "coordinates": [ -0.0361774, 51.1448596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37404830" }, "bbox": [ -0.0359149, 51.1454557, -0.0359149, 51.1454557 ], "geometry": { "type": "Point", "coordinates": [ -0.0359149, 51.1454557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37405022" }, "bbox": [ -0.0355605, 51.1447802, -0.0355605, 51.1447802 ], "geometry": { "type": "Point", "coordinates": [ -0.0355605, 51.1447802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37405622" }, "bbox": [ -0.0349474, 51.1445586, -0.0349474, 51.1445586 ], "geometry": { "type": "Point", "coordinates": [ -0.0349474, 51.1445586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96478158" }, "bbox": [ -0.6151662, 51.2192015, -0.6151662, 51.2192015 ], "geometry": { "type": "Point", "coordinates": [ -0.6151662, 51.2192015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97377467" }, "bbox": [ -0.6037116, 51.1300315, -0.6037116, 51.1300315 ], "geometry": { "type": "Point", "coordinates": [ -0.6037116, 51.1300315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97379345" }, "bbox": [ -0.6019401, 51.1279173, -0.6019401, 51.1279173 ], "geometry": { "type": "Point", "coordinates": [ -0.6019401, 51.1279173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81409805" }, "bbox": [ -0.8291818, 51.1538476, -0.8291818, 51.1538476 ], "geometry": { "type": "Point", "coordinates": [ -0.8291818, 51.1538476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82401504" }, "bbox": [ -0.8267044, 51.1535451, -0.8267044, 51.1535451 ], "geometry": { "type": "Point", "coordinates": [ -0.8267044, 51.1535451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82400619" }, "bbox": [ -0.8281092, 51.1551687, -0.8281092, 51.1551687 ], "geometry": { "type": "Point", "coordinates": [ -0.8281092, 51.1551687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82402521" }, "bbox": [ -0.825458, 51.1552033, -0.825458, 51.1552033 ], "geometry": { "type": "Point", "coordinates": [ -0.825458, 51.1552033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82400516" }, "bbox": [ -0.8281354, 51.1548441, -0.8281354, 51.1548441 ], "geometry": { "type": "Point", "coordinates": [ -0.8281354, 51.1548441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83471084" }, "bbox": [ -0.8116332, 51.2235337, -0.8116332, 51.2235337 ], "geometry": { "type": "Point", "coordinates": [ -0.8116332, 51.2235337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42482938" }, "bbox": [ 0.0360108, 51.2169832, 0.0360108, 51.2169832 ], "geometry": { "type": "Point", "coordinates": [ 0.0360108, 51.2169832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30525504" }, "bbox": [ -0.1289082, 51.2506876, -0.1289082, 51.2506876 ], "geometry": { "type": "Point", "coordinates": [ -0.1289082, 51.2506876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31486364" }, "bbox": [ -0.1143904, 51.2217677, -0.1143904, 51.2217677 ], "geometry": { "type": "Point", "coordinates": [ -0.1143904, 51.2217677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31487882" }, "bbox": [ -0.1141648, 51.2234074, -0.1141648, 51.2234074 ], "geometry": { "type": "Point", "coordinates": [ -0.1141648, 51.2234074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31489971" }, "bbox": [ -0.1117694, 51.2222678, -0.1117694, 51.2222678 ], "geometry": { "type": "Point", "coordinates": [ -0.1117694, 51.2222678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37419595" }, "bbox": [ -0.0285585, 51.1602507, -0.0285585, 51.1602507 ], "geometry": { "type": "Point", "coordinates": [ -0.0285585, 51.1602507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42486988" }, "bbox": [ 0.0419308, 51.2210966, 0.0419308, 51.2210966 ], "geometry": { "type": "Point", "coordinates": [ 0.0419308, 51.2210966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20565390" }, "bbox": [ -0.2725644, 51.298463, -0.2725644, 51.298463 ], "geometry": { "type": "Point", "coordinates": [ -0.2725644, 51.298463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20562095" }, "bbox": [ -0.277351, 51.2990002, -0.277351, 51.2990002 ], "geometry": { "type": "Point", "coordinates": [ -0.277351, 51.2990002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21565513" }, "bbox": [ -0.2580674, 51.2912417, -0.2580674, 51.2912417 ], "geometry": { "type": "Point", "coordinates": [ -0.2580674, 51.2912417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21562914" }, "bbox": [ -0.2620612, 51.2911905, -0.2620612, 51.2911905 ], "geometry": { "type": "Point", "coordinates": [ -0.2620612, 51.2911905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20574824" }, "bbox": [ -0.2737861, 51.3014357, -0.2737861, 51.3014357 ], "geometry": { "type": "Point", "coordinates": [ -0.2737861, 51.3014357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20575700" }, "bbox": [ -0.2718656, 51.2994769, -0.2718656, 51.2994769 ], "geometry": { "type": "Point", "coordinates": [ -0.2718656, 51.2994769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42481037" }, "bbox": [ 0.0328706, 51.2167115, 0.0328706, 51.2167115 ], "geometry": { "type": "Point", "coordinates": [ 0.0328706, 51.2167115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42464006" }, "bbox": [ 0.0357998, 51.1961381, 0.0357998, 51.1961381 ], "geometry": { "type": "Point", "coordinates": [ 0.0357998, 51.1961381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42450471" }, "bbox": [ 0.0313594, 51.1933784, 0.0313594, 51.1933784 ], "geometry": { "type": "Point", "coordinates": [ 0.0313594, 51.1933784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35488773" }, "bbox": [ -0.0560752, 51.2215072, -0.0560752, 51.2215072 ], "geometry": { "type": "Point", "coordinates": [ -0.0560752, 51.2215072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85389646" }, "bbox": [ -0.7723931, 51.1390769, -0.7723931, 51.1390769 ], "geometry": { "type": "Point", "coordinates": [ -0.7723931, 51.1390769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97471426" }, "bbox": [ -0.6105486, 51.2162363, -0.6105486, 51.2162363 ], "geometry": { "type": "Point", "coordinates": [ -0.6105486, 51.2162363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40439234" }, "bbox": [ 0.0138226, 51.1721266, 0.0138226, 51.1721266 ], "geometry": { "type": "Point", "coordinates": [ 0.0138226, 51.1721266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40438029" }, "bbox": [ 0.0125329, 51.1717411, 0.0125329, 51.1717411 ], "geometry": { "type": "Point", "coordinates": [ 0.0125329, 51.1717411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94392829" }, "bbox": [ -0.6539787, 51.1459996, -0.6539787, 51.1459996 ], "geometry": { "type": "Point", "coordinates": [ -0.6539787, 51.1459996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93387995" }, "bbox": [ -0.6612079, 51.1419948, -0.6612079, 51.1419948 ], "geometry": { "type": "Point", "coordinates": [ -0.6612079, 51.1419948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93389480" }, "bbox": [ -0.6588027, 51.1408221, -0.6588027, 51.1408221 ], "geometry": { "type": "Point", "coordinates": [ -0.6588027, 51.1408221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93396228" }, "bbox": [ -0.6618915, 51.1444217, -0.6618915, 51.1444217 ], "geometry": { "type": "Point", "coordinates": [ -0.6618915, 51.1444217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93399852" }, "bbox": [ -0.6596809, 51.1475535, -0.6596809, 51.1475535 ], "geometry": { "type": "Point", "coordinates": [ -0.6596809, 51.1475535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93395220" }, "bbox": [ -0.6655749, 51.1446078, -0.6655749, 51.1446078 ], "geometry": { "type": "Point", "coordinates": [ -0.6655749, 51.1446078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93392219" }, "bbox": [ -0.6688186, 51.1445471, -0.6688186, 51.1445471 ], "geometry": { "type": "Point", "coordinates": [ -0.6688186, 51.1445471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93391167" }, "bbox": [ -0.6695943, 51.1488212, -0.6695943, 51.1488212 ], "geometry": { "type": "Point", "coordinates": [ -0.6695943, 51.1488212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93393767" }, "bbox": [ -0.6662655, 51.1487543, -0.6662655, 51.1487543 ], "geometry": { "type": "Point", "coordinates": [ -0.6662655, 51.1487543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18467131" }, "bbox": [ -0.302009, 51.2036513, -0.302009, 51.2036513 ], "geometry": { "type": "Point", "coordinates": [ -0.302009, 51.2036513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18469618" }, "bbox": [ -0.2984928, 51.2025301, -0.2984928, 51.2025301 ], "geometry": { "type": "Point", "coordinates": [ -0.2984928, 51.2025301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18459987" }, "bbox": [ -0.2982934, 51.1996233, -0.2982934, 51.1996233 ], "geometry": { "type": "Point", "coordinates": [ -0.2982934, 51.1996233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95369357" }, "bbox": [ -0.6305276, 51.1203718, -0.6305276, 51.1203718 ], "geometry": { "type": "Point", "coordinates": [ -0.6305276, 51.1203718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96360522" }, "bbox": [ -0.6290116, 51.1171387, -0.6290116, 51.1171387 ], "geometry": { "type": "Point", "coordinates": [ -0.6290116, 51.1171387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96362421" }, "bbox": [ -0.6266788, 51.1168133, -0.6266788, 51.1168133 ], "geometry": { "type": "Point", "coordinates": [ -0.6266788, 51.1168133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31507337" }, "bbox": [ -0.1142528, 51.2371591, -0.1142528, 51.2371591 ], "geometry": { "type": "Point", "coordinates": [ -0.1142528, 51.2371591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16371433" }, "bbox": [ -0.3418312, 51.123403, -0.3418312, 51.123403 ], "geometry": { "type": "Point", "coordinates": [ -0.3418312, 51.123403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86461180" }, "bbox": [ -0.7688817, 51.213334, -0.7688817, 51.213334 ], "geometry": { "type": "Point", "coordinates": [ -0.7688817, 51.213334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398520" }, "bbox": [ -0.2882465, 51.1386249, -0.2882465, 51.1386249 ], "geometry": { "type": "Point", "coordinates": [ -0.2882465, 51.1386249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399727" }, "bbox": [ -0.286231, 51.1400429, -0.286231, 51.1400429 ], "geometry": { "type": "Point", "coordinates": [ -0.286231, 51.1400429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19389677" }, "bbox": [ -0.2866686, 51.1353026, -0.2866686, 51.1353026 ], "geometry": { "type": "Point", "coordinates": [ -0.2866686, 51.1353026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20381996" }, "bbox": [ -0.2827704, 51.1370943, -0.2827704, 51.1370943 ], "geometry": { "type": "Point", "coordinates": [ -0.2827704, 51.1370943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05686902" }, "bbox": [ -0.4821696, 51.401387, -0.4821696, 51.401387 ], "geometry": { "type": "Point", "coordinates": [ -0.4821696, 51.401387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03538534" }, "bbox": [ -0.5124559, 51.2695774, -0.5124559, 51.2695774 ], "geometry": { "type": "Point", "coordinates": [ -0.5124559, 51.2695774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04521181" }, "bbox": [ -0.509405, 51.2653992, -0.509405, 51.2653992 ], "geometry": { "type": "Point", "coordinates": [ -0.509405, 51.2653992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99560537" }, "bbox": [ -0.5800235, 51.2979289, -0.5800235, 51.2979289 ], "geometry": { "type": "Point", "coordinates": [ -0.5800235, 51.2979289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02546564" }, "bbox": [ -0.5291698, 51.2813306, -0.5291698, 51.2813306 ], "geometry": { "type": "Point", "coordinates": [ -0.5291698, 51.2813306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20424708" }, "bbox": [ -0.2785183, 51.1653744, -0.2785183, 51.1653744 ], "geometry": { "type": "Point", "coordinates": [ -0.2785183, 51.1653744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20423511" }, "bbox": [ -0.2798182, 51.1656411, -0.2798182, 51.1656411 ], "geometry": { "type": "Point", "coordinates": [ -0.2798182, 51.1656411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07495590" }, "bbox": [ -0.4610135, 51.2381362, -0.4610135, 51.2381362 ], "geometry": { "type": "Point", "coordinates": [ -0.4610135, 51.2381362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19385401" }, "bbox": [ -0.2928181, 51.1290136, -0.2928181, 51.1290136 ], "geometry": { "type": "Point", "coordinates": [ -0.2928181, 51.1290136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18381877" }, "bbox": [ -0.3120667, 51.1360156, -0.3120667, 51.1360156 ], "geometry": { "type": "Point", "coordinates": [ -0.3120667, 51.1360156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19375086" }, "bbox": [ -0.2935306, 51.1276435, -0.2935306, 51.1276435 ], "geometry": { "type": "Point", "coordinates": [ -0.2935306, 51.1276435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19374595" }, "bbox": [ -0.2942601, 51.1285067, -0.2942601, 51.1285067 ], "geometry": { "type": "Point", "coordinates": [ -0.2942601, 51.1285067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06491667" }, "bbox": [ -0.4805381, 51.2365046, -0.4805381, 51.2365046 ], "geometry": { "type": "Point", "coordinates": [ -0.4805381, 51.2365046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06492076" }, "bbox": [ -0.4800442, 51.2371938, -0.4800442, 51.2371938 ], "geometry": { "type": "Point", "coordinates": [ -0.4800442, 51.2371938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06491681" }, "bbox": [ -0.480767, 51.2377559, -0.480767, 51.2377559 ], "geometry": { "type": "Point", "coordinates": [ -0.480767, 51.2377559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06494897" }, "bbox": [ -0.477418, 51.2387738, -0.477418, 51.2387738 ], "geometry": { "type": "Point", "coordinates": [ -0.477418, 51.2387738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06503303" }, "bbox": [ -0.4771444, 51.2396889, -0.4771444, 51.2396889 ], "geometry": { "type": "Point", "coordinates": [ -0.4771444, 51.2396889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06485541" }, "bbox": [ -0.4768504, 51.2253113, -0.4768504, 51.2253113 ], "geometry": { "type": "Point", "coordinates": [ -0.4768504, 51.2253113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06484659" }, "bbox": [ -0.4766347, 51.2265826, -0.4766347, 51.2265826 ], "geometry": { "type": "Point", "coordinates": [ -0.4766347, 51.2265826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06485167" }, "bbox": [ -0.4760837, 51.2273382, -0.4760837, 51.2273382 ], "geometry": { "type": "Point", "coordinates": [ -0.4760837, 51.2273382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06482578" }, "bbox": [ -0.4798981, 51.2282697, -0.4798981, 51.2282697 ], "geometry": { "type": "Point", "coordinates": [ -0.4798981, 51.2282697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06483576" }, "bbox": [ -0.4781518, 51.2281906, -0.4781518, 51.2281906 ], "geometry": { "type": "Point", "coordinates": [ -0.4781518, 51.2281906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06496439" }, "bbox": [ -0.4741499, 51.2337694, -0.4741499, 51.2337694 ], "geometry": { "type": "Point", "coordinates": [ -0.4741499, 51.2337694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06496839" }, "bbox": [ -0.4733167, 51.2338026, -0.4733167, 51.2338026 ], "geometry": { "type": "Point", "coordinates": [ -0.4733167, 51.2338026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07497684" }, "bbox": [ -0.4579924, 51.2376106, -0.4579924, 51.2376106 ], "geometry": { "type": "Point", "coordinates": [ -0.4579924, 51.2376106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07497876" }, "bbox": [ -0.4572421, 51.2368707, -0.4572421, 51.2368707 ], "geometry": { "type": "Point", "coordinates": [ -0.4572421, 51.2368707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06482391" }, "bbox": [ -0.4792884, 51.2294524, -0.4792884, 51.2294524 ], "geometry": { "type": "Point", "coordinates": [ -0.4792884, 51.2294524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06482896" }, "bbox": [ -0.4788354, 51.230173, -0.4788354, 51.230173 ], "geometry": { "type": "Point", "coordinates": [ -0.4788354, 51.230173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06484385" }, "bbox": [ -0.4769867, 51.2290454, -0.4769867, 51.2290454 ], "geometry": { "type": "Point", "coordinates": [ -0.4769867, 51.2290454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06497243" }, "bbox": [ -0.4727302, 51.2340928, -0.4727302, 51.2340928 ], "geometry": { "type": "Point", "coordinates": [ -0.4727302, 51.2340928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06498745" }, "bbox": [ -0.4708462, 51.2342295, -0.4708462, 51.2342295 ], "geometry": { "type": "Point", "coordinates": [ -0.4708462, 51.2342295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06495954" }, "bbox": [ -0.4749361, 51.2350705, -0.4749361, 51.2350705 ], "geometry": { "type": "Point", "coordinates": [ -0.4749361, 51.2350705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06492751" }, "bbox": [ -0.47869, 51.2347588, -0.47869, 51.2347588 ], "geometry": { "type": "Point", "coordinates": [ -0.47869, 51.2347588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06495137" }, "bbox": [ -0.4758403, 51.2335185, -0.4758403, 51.2335185 ], "geometry": { "type": "Point", "coordinates": [ -0.4758403, 51.2335185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05489012" }, "bbox": [ -0.4852819, 51.2223755, -0.4852819, 51.2223755 ], "geometry": { "type": "Point", "coordinates": [ -0.4852819, 51.2223755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06487035" }, "bbox": [ -0.47337, 51.2243846, -0.47337, 51.2243846 ], "geometry": { "type": "Point", "coordinates": [ -0.47337, 51.2243846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07492447" }, "bbox": [ -0.4654584, 51.2343901, -0.4654584, 51.2343901 ], "geometry": { "type": "Point", "coordinates": [ -0.4654584, 51.2343901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06480644" }, "bbox": [ -0.4824022, 51.2253863, -0.4824022, 51.2253863 ], "geometry": { "type": "Point", "coordinates": [ -0.4824022, 51.2253863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05496365" }, "bbox": [ -0.4884023, 51.2364574, -0.4884023, 51.2364574 ], "geometry": { "type": "Point", "coordinates": [ -0.4884023, 51.2364574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06502808" }, "bbox": [ -0.4792065, 51.2401444, -0.4792065, 51.2401444 ], "geometry": { "type": "Point", "coordinates": [ -0.4792065, 51.2401444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06500803" }, "bbox": [ -0.4818033, 51.239792, -0.4818033, 51.239792 ], "geometry": { "type": "Point", "coordinates": [ -0.4818033, 51.239792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06481643" }, "bbox": [ -0.4806604, 51.225236, -0.4806604, 51.225236 ], "geometry": { "type": "Point", "coordinates": [ -0.4806604, 51.225236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06497369" }, "bbox": [ -0.4725597, 51.2364302, -0.4725597, 51.2364302 ], "geometry": { "type": "Point", "coordinates": [ -0.4725597, 51.2364302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06482261" }, "bbox": [ -0.4797823, 51.2267911, -0.4797823, 51.2267911 ], "geometry": { "type": "Point", "coordinates": [ -0.4797823, 51.2267911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06496196" }, "bbox": [ -0.474163, 51.2388619, -0.474163, 51.2388619 ], "geometry": { "type": "Point", "coordinates": [ -0.474163, 51.2388619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06482347" }, "bbox": [ -0.4800706, 51.2256996, -0.4800706, 51.2256996 ], "geometry": { "type": "Point", "coordinates": [ -0.4800706, 51.2256996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12531002" }, "bbox": [ -0.3942799, 51.2652159, -0.3942799, 51.2652159 ], "geometry": { "type": "Point", "coordinates": [ -0.3942799, 51.2652159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06481462" }, "bbox": [ -0.4812465, 51.2270872, -0.4812465, 51.2270872 ], "geometry": { "type": "Point", "coordinates": [ -0.4812465, 51.2270872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89391610" }, "bbox": [ -0.7270806, 51.1432803, -0.7270806, 51.1432803 ], "geometry": { "type": "Point", "coordinates": [ -0.7270806, 51.1432803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02524509" }, "bbox": [ -0.5334942, 51.2591579, -0.5334942, 51.2591579 ], "geometry": { "type": "Point", "coordinates": [ -0.5334942, 51.2591579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98564046" }, "bbox": [ -0.5893486, 51.2988619, -0.5893486, 51.2988619 ], "geometry": { "type": "Point", "coordinates": [ -0.5893486, 51.2988619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98563044" }, "bbox": [ -0.5912385, 51.2987168, -0.5912385, 51.2987168 ], "geometry": { "type": "Point", "coordinates": [ -0.5912385, 51.2987168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98563963" }, "bbox": [ -0.5899924, 51.3002978, -0.5899924, 51.3002978 ], "geometry": { "type": "Point", "coordinates": [ -0.5899924, 51.3002978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03541467" }, "bbox": [ -0.5225025, 51.2819155, -0.5225025, 51.2819155 ], "geometry": { "type": "Point", "coordinates": [ -0.5225025, 51.2819155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02418582" }, "bbox": [ -0.5303283, 51.1666359, -0.5303283, 51.1666359 ], "geometry": { "type": "Point", "coordinates": [ -0.5303283, 51.1666359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03420509" }, "bbox": [ -0.5274796, 51.1688462, -0.5274796, 51.1688462 ], "geometry": { "type": "Point", "coordinates": [ -0.5274796, 51.1688462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03421030" }, "bbox": [ -0.5267577, 51.1707732, -0.5267577, 51.1707732 ], "geometry": { "type": "Point", "coordinates": [ -0.5267577, 51.1707732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03420102" }, "bbox": [ -0.5283209, 51.1681186, -0.5283209, 51.1681186 ], "geometry": { "type": "Point", "coordinates": [ -0.5283209, 51.1681186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02427825" }, "bbox": [ -0.5310682, 51.170293, -0.5310682, 51.170293 ], "geometry": { "type": "Point", "coordinates": [ -0.5310682, 51.170293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02427417" }, "bbox": [ -0.5317933, 51.1696011, -0.5317933, 51.1696011 ], "geometry": { "type": "Point", "coordinates": [ -0.5317933, 51.1696011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02429126" }, "bbox": [ -0.5292852, 51.170362, -0.5292852, 51.170362 ], "geometry": { "type": "Point", "coordinates": [ -0.5292852, 51.170362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02429947" }, "bbox": [ -0.5280964, 51.1722627, -0.5280964, 51.1722627 ], "geometry": { "type": "Point", "coordinates": [ -0.5280964, 51.1722627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08350896" }, "bbox": [ -0.4580096, 51.1129794, -0.4580096, 51.1129794 ], "geometry": { "type": "Point", "coordinates": [ -0.4580096, 51.1129794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07377901" }, "bbox": [ -0.4589866, 51.1232961, -0.4589866, 51.1232961 ], "geometry": { "type": "Point", "coordinates": [ -0.4589866, 51.1232961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08350640" }, "bbox": [ -0.4578888, 51.1075735, -0.4578888, 51.1075735 ], "geometry": { "type": "Point", "coordinates": [ -0.4578888, 51.1075735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09367304" }, "bbox": [ -0.4337433, 51.1130164, -0.4337433, 51.1130164 ], "geometry": { "type": "Point", "coordinates": [ -0.4337433, 51.1130164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09366206" }, "bbox": [ -0.4352213, 51.113402, -0.4352213, 51.113402 ], "geometry": { "type": "Point", "coordinates": [ -0.4352213, 51.113402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09365101" }, "bbox": [ -0.4368738, 51.1131126, -0.4368738, 51.1131126 ], "geometry": { "type": "Point", "coordinates": [ -0.4368738, 51.1131126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07686516" }, "bbox": [ -0.4542919, 51.4022032, -0.4542919, 51.4022032 ], "geometry": { "type": "Point", "coordinates": [ -0.4542919, 51.4022032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04753804" }, "bbox": [ -0.4985958, 51.464815, -0.4985958, 51.464815 ], "geometry": { "type": "Point", "coordinates": [ -0.4985958, 51.464815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04746593" }, "bbox": [ -0.4951413, 51.4638563, -0.4951413, 51.4638563 ], "geometry": { "type": "Point", "coordinates": [ -0.4951413, 51.4638563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33407448" }, "bbox": [ -0.0890342, 51.1481013, -0.0890342, 51.1481013 ], "geometry": { "type": "Point", "coordinates": [ -0.0890342, 51.1481013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33406550" }, "bbox": [ -0.0909795, 51.1482802, -0.0909795, 51.1482802 ], "geometry": { "type": "Point", "coordinates": [ -0.0909795, 51.1482802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33404760" }, "bbox": [ -0.0930166, 51.1491602, -0.0930166, 51.1491602 ], "geometry": { "type": "Point", "coordinates": [ -0.0930166, 51.1491602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41465877" }, "bbox": [ 0.0249375, 51.2025216, 0.0249375, 51.2025216 ], "geometry": { "type": "Point", "coordinates": [ 0.0249375, 51.2025216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81441795" }, "bbox": [ -0.8394619, 51.1981658, -0.8394619, 51.1981658 ], "geometry": { "type": "Point", "coordinates": [ -0.8394619, 51.1981658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81441391" }, "bbox": [ -0.8401613, 51.1977546, -0.8401613, 51.1977546 ], "geometry": { "type": "Point", "coordinates": [ -0.8401613, 51.1977546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81442791" }, "bbox": [ -0.8387824, 51.1974518, -0.8387824, 51.1974518 ], "geometry": { "type": "Point", "coordinates": [ -0.8387824, 51.1974518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21513112" }, "bbox": [ -0.2633562, 51.2463056, -0.2633562, 51.2463056 ], "geometry": { "type": "Point", "coordinates": [ -0.2633562, 51.2463056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41555501" }, "bbox": [ 0.0275048, 51.2762279, 0.0275048, 51.2762279 ], "geometry": { "type": "Point", "coordinates": [ 0.0275048, 51.2762279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40441110" }, "bbox": [ 0.0031951, 51.1789994, 0.0031951, 51.1789994 ], "geometry": { "type": "Point", "coordinates": [ 0.0031951, 51.1789994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06480203" }, "bbox": [ -0.4832119, 51.2215357, -0.4832119, 51.2215357 ], "geometry": { "type": "Point", "coordinates": [ -0.4832119, 51.2215357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87384482" }, "bbox": [ -0.7514961, 51.1420301, -0.7514961, 51.1420301 ], "geometry": { "type": "Point", "coordinates": [ -0.7514961, 51.1420301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81477337" }, "bbox": [ -0.8308989, 51.2192022, -0.8308989, 51.2192022 ], "geometry": { "type": "Point", "coordinates": [ -0.8308989, 51.2192022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81477048" }, "bbox": [ -0.8313984, 51.2205926, -0.8313984, 51.2205926 ], "geometry": { "type": "Point", "coordinates": [ -0.8313984, 51.2205926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39456479" }, "bbox": [ -0.0028848, 51.1943212, -0.0028848, 51.1943212 ], "geometry": { "type": "Point", "coordinates": [ -0.0028848, 51.1943212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39455068" }, "bbox": [ -0.0048496, 51.1933183, -0.0048496, 51.1933183 ], "geometry": { "type": "Point", "coordinates": [ -0.0048496, 51.1933183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96556241" }, "bbox": [ -0.6155565, 51.2897844, -0.6155565, 51.2897844 ], "geometry": { "type": "Point", "coordinates": [ -0.6155565, 51.2897844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96556045" }, "bbox": [ -0.6158959, 51.2901099, -0.6158959, 51.2901099 ], "geometry": { "type": "Point", "coordinates": [ -0.6158959, 51.2901099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96557303" }, "bbox": [ -0.6142235, 51.2862508, -0.6142235, 51.2862508 ], "geometry": { "type": "Point", "coordinates": [ -0.6142235, 51.2862508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96557811" }, "bbox": [ -0.6135014, 51.2870218, -0.6135014, 51.2870218 ], "geometry": { "type": "Point", "coordinates": [ -0.6135014, 51.2870218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96556410" }, "bbox": [ -0.6153963, 51.2869022, -0.6153963, 51.2869022 ], "geometry": { "type": "Point", "coordinates": [ -0.6153963, 51.2869022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96556932" }, "bbox": [ -0.6146065, 51.2889672, -0.6146065, 51.2889672 ], "geometry": { "type": "Point", "coordinates": [ -0.6146065, 51.2889672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90384537" }, "bbox": [ -0.7089779, 51.1373973, -0.7089779, 51.1373973 ], "geometry": { "type": "Point", "coordinates": [ -0.7089779, 51.1373973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33583417" }, "bbox": [ -0.0868894, 51.3089827, -0.0868894, 51.3089827 ], "geometry": { "type": "Point", "coordinates": [ -0.0868894, 51.3089827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21390162" }, "bbox": [ -0.2716054, 51.1431242, -0.2716054, 51.1431242 ], "geometry": { "type": "Point", "coordinates": [ -0.2716054, 51.1431242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20395867" }, "bbox": [ -0.2775551, 51.1436546, -0.2775551, 51.1436546 ], "geometry": { "type": "Point", "coordinates": [ -0.2775551, 51.1436546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20456007" }, "bbox": [ -0.2756615, 51.1921954, -0.2756615, 51.1921954 ], "geometry": { "type": "Point", "coordinates": [ -0.2756615, 51.1921954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20446469" }, "bbox": [ -0.2750591, 51.1888122, -0.2750591, 51.1888122 ], "geometry": { "type": "Point", "coordinates": [ -0.2750591, 51.1888122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20445664" }, "bbox": [ -0.2763337, 51.1882482, -0.2763337, 51.1882482 ], "geometry": { "type": "Point", "coordinates": [ -0.2763337, 51.1882482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20445369" }, "bbox": [ -0.2771546, 51.1890805, -0.2771546, 51.1890805 ], "geometry": { "type": "Point", "coordinates": [ -0.2771546, 51.1890805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95611498" }, "bbox": [ -0.6352127, 51.3490962, -0.6352127, 51.3490962 ], "geometry": { "type": "Point", "coordinates": [ -0.6352127, 51.3490962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621307" }, "bbox": [ -0.6352516, 51.3499004, -0.6352516, 51.3499004 ], "geometry": { "type": "Point", "coordinates": [ -0.6352516, 51.3499004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621512" }, "bbox": [ -0.634987, 51.3502738, -0.634987, 51.3502738 ], "geometry": { "type": "Point", "coordinates": [ -0.634987, 51.3502738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621418" }, "bbox": [ -0.6350229, 51.350786, -0.6350229, 51.350786 ], "geometry": { "type": "Point", "coordinates": [ -0.6350229, 51.350786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620827" }, "bbox": [ -0.6357484, 51.3515355, -0.6357484, 51.3515355 ], "geometry": { "type": "Point", "coordinates": [ -0.6357484, 51.3515355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95622015" }, "bbox": [ -0.6340867, 51.350348, -0.6340867, 51.350348 ], "geometry": { "type": "Point", "coordinates": [ -0.6340867, 51.350348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95622005" }, "bbox": [ -0.6342856, 51.3497194, -0.6342856, 51.3497194 ], "geometry": { "type": "Point", "coordinates": [ -0.6342856, 51.3497194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620912" }, "bbox": [ -0.6358204, 51.3502708, -0.6358204, 51.3502708 ], "geometry": { "type": "Point", "coordinates": [ -0.6358204, 51.3502708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621725" }, "bbox": [ -0.6350267, 51.3516701, -0.6350267, 51.3516701 ], "geometry": { "type": "Point", "coordinates": [ -0.6350267, 51.3516701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95621204" }, "bbox": [ -0.6354378, 51.3495533, -0.6354378, 51.3495533 ], "geometry": { "type": "Point", "coordinates": [ -0.6354378, 51.3495533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02697606" }, "bbox": [ -0.5239142, 51.4113085, -0.5239142, 51.4113085 ], "geometry": { "type": "Point", "coordinates": [ -0.5239142, 51.4113085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02695000" }, "bbox": [ -0.5273205, 51.4108034, -0.5273205, 51.4108034 ], "geometry": { "type": "Point", "coordinates": [ -0.5273205, 51.4108034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06363907" }, "bbox": [ -0.4816183, 51.1141236, -0.4816183, 51.1141236 ], "geometry": { "type": "Point", "coordinates": [ -0.4816183, 51.1141236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06366068" }, "bbox": [ -0.4782068, 51.1195226, -0.4782068, 51.1195226 ], "geometry": { "type": "Point", "coordinates": [ -0.4782068, 51.1195226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361114" }, "bbox": [ -0.4854473, 51.1147366, -0.4854473, 51.1147366 ], "geometry": { "type": "Point", "coordinates": [ -0.4854473, 51.1147366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06370132" }, "bbox": [ -0.4866232, 51.1252602, -0.4866232, 51.1252602 ], "geometry": { "type": "Point", "coordinates": [ -0.4866232, 51.1252602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06370383" }, "bbox": [ -0.4859989, 51.1300505, -0.4859989, 51.1300505 ], "geometry": { "type": "Point", "coordinates": [ -0.4859989, 51.1300505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06370674" }, "bbox": [ -0.4856174, 51.129111, -0.4856174, 51.129111 ], "geometry": { "type": "Point", "coordinates": [ -0.4856174, 51.129111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06371649" }, "bbox": [ -0.4843964, 51.1269766, -0.4843964, 51.1269766 ], "geometry": { "type": "Point", "coordinates": [ -0.4843964, 51.1269766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06371919" }, "bbox": [ -0.4839879, 51.1242236, -0.4839879, 51.1242236 ], "geometry": { "type": "Point", "coordinates": [ -0.4839879, 51.1242236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06374161" }, "bbox": [ -0.4807792, 51.1276508, -0.4807792, 51.1276508 ], "geometry": { "type": "Point", "coordinates": [ -0.4807792, 51.1276508 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06374804" }, "bbox": [ -0.4800894, 51.1225617, -0.4800894, 51.1225617 ], "geometry": { "type": "Point", "coordinates": [ -0.4800894, 51.1225617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05378523" }, "bbox": [ -0.4886021, 51.1246891, -0.4886021, 51.1246891 ], "geometry": { "type": "Point", "coordinates": [ -0.4886021, 51.1246891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06361661" }, "bbox": [ -0.4839583, 51.119634, -0.4839583, 51.119634 ], "geometry": { "type": "Point", "coordinates": [ -0.4839583, 51.119634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05379870" }, "bbox": [ -0.4869359, 51.1286987, -0.4869359, 51.1286987 ], "geometry": { "type": "Point", "coordinates": [ -0.4869359, 51.1286987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05379893" }, "bbox": [ -0.4874902, 51.13065, -0.4874902, 51.13065 ], "geometry": { "type": "Point", "coordinates": [ -0.4874902, 51.13065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06362225" }, "bbox": [ -0.4836944, 51.1157614, -0.4836944, 51.1157614 ], "geometry": { "type": "Point", "coordinates": [ -0.4836944, 51.1157614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06365620" }, "bbox": [ -0.4789479, 51.1150449, -0.4789479, 51.1150449 ], "geometry": { "type": "Point", "coordinates": [ -0.4789479, 51.1150449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06368805" }, "bbox": [ -0.473988, 51.1140329, -0.473988, 51.1140329 ], "geometry": { "type": "Point", "coordinates": [ -0.473988, 51.1140329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06365705" }, "bbox": [ -0.4787178, 51.1138194, -0.4787178, 51.1138194 ], "geometry": { "type": "Point", "coordinates": [ -0.4787178, 51.1138194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06366247" }, "bbox": [ -0.4780115, 51.1176272, -0.4780115, 51.1176272 ], "geometry": { "type": "Point", "coordinates": [ -0.4780115, 51.1176272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06368540" }, "bbox": [ -0.4744708, 51.1172229, -0.4744708, 51.1172229 ], "geometry": { "type": "Point", "coordinates": [ -0.4744708, 51.1172229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05369696" }, "bbox": [ -0.4875994, 51.1222682, -0.4875994, 51.1222682 ], "geometry": { "type": "Point", "coordinates": [ -0.4875994, 51.1222682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05369782" }, "bbox": [ -0.4875491, 51.1209305, -0.4875491, 51.1209305 ], "geometry": { "type": "Point", "coordinates": [ -0.4875491, 51.1209305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05369944" }, "bbox": [ -0.4871154, 51.1174911, -0.4871154, 51.1174911 ], "geometry": { "type": "Point", "coordinates": [ -0.4871154, 51.1174911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06379863" }, "bbox": [ -0.473447, 51.1283811, -0.473447, 51.1283811 ], "geometry": { "type": "Point", "coordinates": [ -0.473447, 51.1283811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11383907" }, "bbox": [ -0.4093441, 51.1311007, -0.4093441, 51.1311007 ], "geometry": { "type": "Point", "coordinates": [ -0.4093441, 51.1311007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85397179" }, "bbox": [ -0.7763636, 51.1511298, -0.7763636, 51.1511298 ], "geometry": { "type": "Point", "coordinates": [ -0.7763636, 51.1511298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85397092" }, "bbox": [ -0.7757037, 51.1520671, -0.7757037, 51.1520671 ], "geometry": { "type": "Point", "coordinates": [ -0.7757037, 51.1520671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85395665" }, "bbox": [ -0.7774347, 51.149923, -0.7774347, 51.149923 ], "geometry": { "type": "Point", "coordinates": [ -0.7774347, 51.149923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86437682" }, "bbox": [ -0.7599086, 51.1869985, -0.7599086, 51.1869985 ], "geometry": { "type": "Point", "coordinates": [ -0.7599086, 51.1869985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628908" }, "bbox": [ -0.6385209, 51.3498934, -0.6385209, 51.3498934 ], "geometry": { "type": "Point", "coordinates": [ -0.6385209, 51.3498934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94629319" }, "bbox": [ -0.638073, 51.3509898, -0.638073, 51.3509898 ], "geometry": { "type": "Point", "coordinates": [ -0.638073, 51.3509898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628911" }, "bbox": [ -0.6386328, 51.3503336, -0.6386328, 51.3503336 ], "geometry": { "type": "Point", "coordinates": [ -0.6386328, 51.3503336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94629710" }, "bbox": [ -0.6374595, 51.350125, -0.6374595, 51.350125 ], "geometry": { "type": "Point", "coordinates": [ -0.6374595, 51.350125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94629619" }, "bbox": [ -0.6375954, 51.3509534, -0.6375954, 51.3509534 ], "geometry": { "type": "Point", "coordinates": [ -0.6375954, 51.3509534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628521" }, "bbox": [ -0.6392734, 51.3511459, -0.6392734, 51.3511459 ], "geometry": { "type": "Point", "coordinates": [ -0.6392734, 51.3511459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628513" }, "bbox": [ -0.6392442, 51.3504847, -0.6392442, 51.3504847 ], "geometry": { "type": "Point", "coordinates": [ -0.6392442, 51.3504847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94627912" }, "bbox": [ -0.6400309, 51.3502382, -0.6400309, 51.3502382 ], "geometry": { "type": "Point", "coordinates": [ -0.6400309, 51.3502382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94629410" }, "bbox": [ -0.6380252, 51.3501371, -0.6380252, 51.3501371 ], "geometry": { "type": "Point", "coordinates": [ -0.6380252, 51.3501371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628920" }, "bbox": [ -0.638625, 51.3510534, -0.638625, 51.3510534 ], "geometry": { "type": "Point", "coordinates": [ -0.638625, 51.3510534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628108" }, "bbox": [ -0.6398498, 51.3500332, -0.6398498, 51.3500332 ], "geometry": { "type": "Point", "coordinates": [ -0.6398498, 51.3500332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620504" }, "bbox": [ -0.6358431, 51.3494694, -0.6358431, 51.3494694 ], "geometry": { "type": "Point", "coordinates": [ -0.6358431, 51.3494694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620407" }, "bbox": [ -0.6365681, 51.3498349, -0.6365681, 51.3498349 ], "geometry": { "type": "Point", "coordinates": [ -0.6365681, 51.3498349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620019" }, "bbox": [ -0.6371246, 51.3508979, -0.6371246, 51.3508979 ], "geometry": { "type": "Point", "coordinates": [ -0.6371246, 51.3508979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620423" }, "bbox": [ -0.6362841, 51.3516957, -0.6362841, 51.3516957 ], "geometry": { "type": "Point", "coordinates": [ -0.6362841, 51.3516957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620216" }, "bbox": [ -0.6382346, 51.350831, -0.6382346, 51.350831 ], "geometry": { "type": "Point", "coordinates": [ -0.6382346, 51.350831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620205" }, "bbox": [ -0.6369912, 51.3495633, -0.6369912, 51.3495633 ], "geometry": { "type": "Point", "coordinates": [ -0.6369912, 51.3495633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620501" }, "bbox": [ -0.6365773, 51.3493252, -0.6365773, 51.3493252 ], "geometry": { "type": "Point", "coordinates": [ -0.6365773, 51.3493252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620209" }, "bbox": [ -0.636881, 51.3500371, -0.636881, 51.3500371 ], "geometry": { "type": "Point", "coordinates": [ -0.636881, 51.3500371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620418" }, "bbox": [ -0.6367871, 51.3505516, -0.6367871, 51.3505516 ], "geometry": { "type": "Point", "coordinates": [ -0.6367871, 51.3505516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620811" }, "bbox": [ -0.6359653, 51.3504287, -0.6359653, 51.3504287 ], "geometry": { "type": "Point", "coordinates": [ -0.6359653, 51.3504287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620516" }, "bbox": [ -0.6363087, 51.3506505, -0.6363087, 51.3506505 ], "geometry": { "type": "Point", "coordinates": [ -0.6363087, 51.3506505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95620800" }, "bbox": [ -0.6360354, 51.3492312, -0.6360354, 51.3492312 ], "geometry": { "type": "Point", "coordinates": [ -0.6360354, 51.3492312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03370370" }, "bbox": [ -0.5284503, 51.1295217, -0.5284503, 51.1295217 ], "geometry": { "type": "Point", "coordinates": [ -0.5284503, 51.1295217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03371703" }, "bbox": [ -0.5272932, 51.1233361, -0.5272932, 51.1233361 ], "geometry": { "type": "Point", "coordinates": [ -0.5272932, 51.1233361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03372061" }, "bbox": [ -0.526701, 51.1284799, -0.526701, 51.1284799 ], "geometry": { "type": "Point", "coordinates": [ -0.526701, 51.1284799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03373852" }, "bbox": [ -0.5241879, 51.1274909, -0.5241879, 51.1274909 ], "geometry": { "type": "Point", "coordinates": [ -0.5241879, 51.1274909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03375772" }, "bbox": [ -0.5211504, 51.1294557, -0.5211504, 51.1294557 ], "geometry": { "type": "Point", "coordinates": [ -0.5211504, 51.1294557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03376187" }, "bbox": [ -0.5196223, 51.1301489, -0.5196223, 51.1301489 ], "geometry": { "type": "Point", "coordinates": [ -0.5196223, 51.1301489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03376999" }, "bbox": [ -0.5194315, 51.1314552, -0.5194315, 51.1314552 ], "geometry": { "type": "Point", "coordinates": [ -0.5194315, 51.1314552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03384740" }, "bbox": [ -0.5223406, 51.1356227, -0.5223406, 51.1356227 ], "geometry": { "type": "Point", "coordinates": [ -0.5223406, 51.1356227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03385520" }, "bbox": [ -0.5213651, 51.1337269, -0.5213651, 51.1337269 ], "geometry": { "type": "Point", "coordinates": [ -0.5213651, 51.1337269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03385778" }, "bbox": [ -0.5208442, 51.1389125, -0.5208442, 51.1389125 ], "geometry": { "type": "Point", "coordinates": [ -0.5208442, 51.1389125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03386360" }, "bbox": [ -0.5200759, 51.1373395, -0.5200759, 51.1373395 ], "geometry": { "type": "Point", "coordinates": [ -0.5200759, 51.1373395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03387039" }, "bbox": [ -0.519051, 51.1354606, -0.519051, 51.1354606 ], "geometry": { "type": "Point", "coordinates": [ -0.519051, 51.1354606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03388125" }, "bbox": [ -0.5174598, 51.134244, -0.5174598, 51.134244 ], "geometry": { "type": "Point", "coordinates": [ -0.5174598, 51.134244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00390331" }, "bbox": [ -0.5712915, 51.1443305, -0.5712915, 51.1443305 ], "geometry": { "type": "Point", "coordinates": [ -0.5712915, 51.1443305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98353515" }, "bbox": [ -0.5962031, 51.1072265, -0.5962031, 51.1072265 ], "geometry": { "type": "Point", "coordinates": [ -0.5962031, 51.1072265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98353201" }, "bbox": [ -0.5968613, 51.1060531, -0.5968613, 51.1060531 ], "geometry": { "type": "Point", "coordinates": [ -0.5968613, 51.1060531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399730" }, "bbox": [ -0.5720761, 51.144203, -0.5720761, 51.144203 ], "geometry": { "type": "Point", "coordinates": [ -0.5720761, 51.144203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333772" }, "bbox": [ -0.5395503, 51.0936717, -0.5395503, 51.0936717 ], "geometry": { "type": "Point", "coordinates": [ -0.5395503, 51.0936717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97414546" }, "bbox": [ -0.6076662, 51.1642176, -0.6076662, 51.1642176 ], "geometry": { "type": "Point", "coordinates": [ -0.6076662, 51.1642176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97415646" }, "bbox": [ -0.6056574, 51.1639916, -0.6056574, 51.1639916 ], "geometry": { "type": "Point", "coordinates": [ -0.6056574, 51.1639916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37420277" }, "bbox": [ -0.0414826, 51.16788, -0.0414826, 51.16788 ], "geometry": { "type": "Point", "coordinates": [ -0.0414826, 51.16788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37420580" }, "bbox": [ -0.0409389, 51.1680877, -0.0409389, 51.1680877 ], "geometry": { "type": "Point", "coordinates": [ -0.0409389, 51.1680877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18374794" }, "bbox": [ -0.3082558, 51.1285909, -0.3082558, 51.1285909 ], "geometry": { "type": "Point", "coordinates": [ -0.3082558, 51.1285909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18375685" }, "bbox": [ -0.3071387, 51.1276256, -0.3071387, 51.1276256 ], "geometry": { "type": "Point", "coordinates": [ -0.3071387, 51.1276256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398574" }, "bbox": [ -0.2879277, 51.1443825, -0.2879277, 51.1443825 ], "geometry": { "type": "Point", "coordinates": [ -0.2879277, 51.1443825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398979" }, "bbox": [ -0.2873437, 51.1449268, -0.2873437, 51.1449268 ], "geometry": { "type": "Point", "coordinates": [ -0.2873437, 51.1449268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399313" }, "bbox": [ -0.2862973, 51.1389093, -0.2862973, 51.1389093 ], "geometry": { "type": "Point", "coordinates": [ -0.2862973, 51.1389093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398873" }, "bbox": [ -0.2874352, 51.1442757, -0.2874352, 51.1442757 ], "geometry": { "type": "Point", "coordinates": [ -0.2874352, 51.1442757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398761" }, "bbox": [ -0.2875033, 51.1433289, -0.2875033, 51.1433289 ], "geometry": { "type": "Point", "coordinates": [ -0.2875033, 51.1433289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20380563" }, "bbox": [ -0.2853568, 51.1345102, -0.2853568, 51.1345102 ], "geometry": { "type": "Point", "coordinates": [ -0.2853568, 51.1345102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20380885" }, "bbox": [ -0.285301, 51.1363448, -0.285301, 51.1363448 ], "geometry": { "type": "Point", "coordinates": [ -0.285301, 51.1363448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20381162" }, "bbox": [ -0.2848283, 51.1343387, -0.2848283, 51.1343387 ], "geometry": { "type": "Point", "coordinates": [ -0.2848283, 51.1343387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09676469" }, "bbox": [ -0.4258249, 51.3975787, -0.4258249, 51.3975787 ], "geometry": { "type": "Point", "coordinates": [ -0.4258249, 51.3975787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03550195" }, "bbox": [ -0.5236121, 51.2945172, -0.5236121, 51.2945172 ], "geometry": { "type": "Point", "coordinates": [ -0.5236121, 51.2945172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03761163" }, "bbox": [ -0.5165508, 51.4792727, -0.5165508, 51.4792727 ], "geometry": { "type": "Point", "coordinates": [ -0.5165508, 51.4792727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02767190" }, "bbox": [ -0.5222275, 51.481685, -0.5222275, 51.481685 ], "geometry": { "type": "Point", "coordinates": [ -0.5222275, 51.481685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02767550" }, "bbox": [ -0.5218226, 51.4782108, -0.5218226, 51.4782108 ], "geometry": { "type": "Point", "coordinates": [ -0.5218226, 51.4782108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85425428" }, "bbox": [ -0.7776444, 51.1734226, -0.7776444, 51.1734226 ], "geometry": { "type": "Point", "coordinates": [ -0.7776444, 51.1734226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374374" }, "bbox": [ -0.4662238, 51.1289463, -0.4662238, 51.1289463 ], "geometry": { "type": "Point", "coordinates": [ -0.4662238, 51.1289463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07375428" }, "bbox": [ -0.4645868, 51.1248078, -0.4645868, 51.1248078 ], "geometry": { "type": "Point", "coordinates": [ -0.4645868, 51.1248078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07375508" }, "bbox": [ -0.4645912, 51.1229009, -0.4645912, 51.1229009 ], "geometry": { "type": "Point", "coordinates": [ -0.4645912, 51.1229009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07379944" }, "bbox": [ -0.4595702, 51.1257547, -0.4595702, 51.1257547 ], "geometry": { "type": "Point", "coordinates": [ -0.4595702, 51.1257547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07379272" }, "bbox": [ -0.4590729, 51.1286303, -0.4590729, 51.1286303 ], "geometry": { "type": "Point", "coordinates": [ -0.4590729, 51.1286303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07371870" }, "bbox": [ -0.4695474, 51.1286153, -0.4695474, 51.1286153 ], "geometry": { "type": "Point", "coordinates": [ -0.4695474, 51.1286153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07374218" }, "bbox": [ -0.4664941, 51.1239622, -0.4664941, 51.1239622 ], "geometry": { "type": "Point", "coordinates": [ -0.4664941, 51.1239622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07361624" }, "bbox": [ -0.4703064, 51.1154725, -0.4703064, 51.1154725 ], "geometry": { "type": "Point", "coordinates": [ -0.4703064, 51.1154725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07362086" }, "bbox": [ -0.4694862, 51.1210255, -0.4694862, 51.1210255 ], "geometry": { "type": "Point", "coordinates": [ -0.4694862, 51.1210255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07362172" }, "bbox": [ -0.469534, 51.1197649, -0.469534, 51.1197649 ], "geometry": { "type": "Point", "coordinates": [ -0.469534, 51.1197649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07364248" }, "bbox": [ -0.4666815, 51.1178054, -0.4666815, 51.1178054 ], "geometry": { "type": "Point", "coordinates": [ -0.4666815, 51.1178054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07365212" }, "bbox": [ -0.4649331, 51.1139651, -0.4649331, 51.1139651 ], "geometry": { "type": "Point", "coordinates": [ -0.4649331, 51.1139651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23450373" }, "bbox": [ -0.2403985, 51.1976707, -0.2403985, 51.1976707 ], "geometry": { "type": "Point", "coordinates": [ -0.2403985, 51.1976707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42449680" }, "bbox": [ 0.0438664, 51.1844031, 0.0438664, 51.1844031 ], "geometry": { "type": "Point", "coordinates": [ 0.0438664, 51.1844031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42447075" }, "bbox": [ 0.0406463, 51.1841957, 0.0406463, 51.1841957 ], "geometry": { "type": "Point", "coordinates": [ 0.0406463, 51.1841957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42449180" }, "bbox": [ 0.0431404, 51.1844498, 0.0431404, 51.1844498 ], "geometry": { "type": "Point", "coordinates": [ 0.0431404, 51.1844498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43442061" }, "bbox": [ 0.0475704, 51.1827644, 0.0475704, 51.1827644 ], "geometry": { "type": "Point", "coordinates": [ 0.0475704, 51.1827644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43441491" }, "bbox": [ 0.0468486, 51.1856095, 0.0468486, 51.1856095 ], "geometry": { "type": "Point", "coordinates": [ 0.0468486, 51.1856095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43443353" }, "bbox": [ 0.049717, 51.1819242, 0.049717, 51.1819242 ], "geometry": { "type": "Point", "coordinates": [ 0.049717, 51.1819242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10360630" }, "bbox": [ -0.4288607, 51.1155563, -0.4288607, 51.1155563 ], "geometry": { "type": "Point", "coordinates": [ -0.4288607, 51.1155563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10360709" }, "bbox": [ -0.4289012, 51.1135784, -0.4289012, 51.1135784 ], "geometry": { "type": "Point", "coordinates": [ -0.4289012, 51.1135784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03562908" }, "bbox": [ -0.5200602, 51.2948376, -0.5200602, 51.2948376 ], "geometry": { "type": "Point", "coordinates": [ -0.5200602, 51.2948376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07574785" }, "bbox": [ -0.4595291, 51.3095441, -0.4595291, 51.3095441 ], "geometry": { "type": "Point", "coordinates": [ -0.4595291, 51.3095441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06576338" }, "bbox": [ -0.4714511, 51.305535, -0.4714511, 51.305535 ], "geometry": { "type": "Point", "coordinates": [ -0.4714511, 51.305535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06579038" }, "bbox": [ -0.4665852, 51.3056366, -0.4665852, 51.3056366 ], "geometry": { "type": "Point", "coordinates": [ -0.4665852, 51.3056366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06579660" }, "bbox": [ -0.4662688, 51.3072808, -0.4662688, 51.3072808 ], "geometry": { "type": "Point", "coordinates": [ -0.4662688, 51.3072808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06579964" }, "bbox": [ -0.4668446, 51.3077305, -0.4668446, 51.3077305 ], "geometry": { "type": "Point", "coordinates": [ -0.4668446, 51.3077305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02709244" }, "bbox": [ -0.5210814, 51.423588, -0.5210814, 51.423588 ], "geometry": { "type": "Point", "coordinates": [ -0.5210814, 51.423588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03703887" }, "bbox": [ -0.5143564, 51.4273931, -0.5143564, 51.4273931 ], "geometry": { "type": "Point", "coordinates": [ -0.5143564, 51.4273931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03553589" }, "bbox": [ -0.5193488, 51.2926154, -0.5193488, 51.2926154 ], "geometry": { "type": "Point", "coordinates": [ -0.5193488, 51.2926154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03767733" }, "bbox": [ -0.5075884, 51.4756843, -0.5075884, 51.4756843 ], "geometry": { "type": "Point", "coordinates": [ -0.5075884, 51.4756843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01330048" }, "bbox": [ -0.5590516, 51.0918723, -0.5590516, 51.0918723 ], "geometry": { "type": "Point", "coordinates": [ -0.5590516, 51.0918723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00403576" }, "bbox": [ -0.5669577, 51.1578422, -0.5669577, 51.1578422 ], "geometry": { "type": "Point", "coordinates": [ -0.5669577, 51.1578422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00425101" }, "bbox": [ -0.563274, 51.1691887, -0.563274, 51.1691887 ], "geometry": { "type": "Point", "coordinates": [ -0.563274, 51.1691887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82397062" }, "bbox": [ -0.8190378, 51.1498675, -0.8190378, 51.1498675 ], "geometry": { "type": "Point", "coordinates": [ -0.8190378, 51.1498675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82391745" }, "bbox": [ -0.8265354, 51.1481862, -0.8265354, 51.1481862 ], "geometry": { "type": "Point", "coordinates": [ -0.8265354, 51.1481862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82394242" }, "bbox": [ -0.8230835, 51.1480677, -0.8230835, 51.1480677 ], "geometry": { "type": "Point", "coordinates": [ -0.8230835, 51.1480677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82396041" }, "bbox": [ -0.8205967, 51.1481404, -0.8205967, 51.1481404 ], "geometry": { "type": "Point", "coordinates": [ -0.8205967, 51.1481404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38484892" }, "bbox": [ -0.0179989, 51.2227973, -0.0179989, 51.2227973 ], "geometry": { "type": "Point", "coordinates": [ -0.0179989, 51.2227973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39476883" }, "bbox": [ -0.0016536, 51.2125911, -0.0016536, 51.2125911 ], "geometry": { "type": "Point", "coordinates": [ -0.0016536, 51.2125911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39477986" }, "bbox": [ 0.0000057, 51.2129261, 0.0000057, 51.2129261 ], "geometry": { "type": "Point", "coordinates": [ 0.0000057, 51.2129261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39473474" }, "bbox": [ -0.0063486, 51.2119407, -0.0063486, 51.2119407 ], "geometry": { "type": "Point", "coordinates": [ -0.0063486, 51.2119407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39477980" }, "bbox": [ -0.0004035, 51.2123745, -0.0004035, 51.2123745 ], "geometry": { "type": "Point", "coordinates": [ -0.0004035, 51.2123745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37497329" }, "bbox": [ -0.0288792, 51.2260762, -0.0288792, 51.2260762 ], "geometry": { "type": "Point", "coordinates": [ -0.0288792, 51.2260762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38486278" }, "bbox": [ -0.0163101, 51.2215028, -0.0163101, 51.2215028 ], "geometry": { "type": "Point", "coordinates": [ -0.0163101, 51.2215028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38485382" }, "bbox": [ -0.0184392, 51.2219022, -0.0184392, 51.2219022 ], "geometry": { "type": "Point", "coordinates": [ -0.0184392, 51.2219022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37491593" }, "bbox": [ -0.0368579, 51.2320491, -0.0368579, 51.2320491 ], "geometry": { "type": "Point", "coordinates": [ -0.0368579, 51.2320491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38490336" }, "bbox": [ -0.024455, 51.2268184, -0.024455, 51.2268184 ], "geometry": { "type": "Point", "coordinates": [ -0.024455, 51.2268184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36508750" }, "bbox": [ -0.041774, 51.2375063, -0.041774, 51.2375063 ], "geometry": { "type": "Point", "coordinates": [ -0.041774, 51.2375063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36507735" }, "bbox": [ -0.0419783, 51.2359412, -0.0419783, 51.2359412 ], "geometry": { "type": "Point", "coordinates": [ -0.0419783, 51.2359412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37500353" }, "bbox": [ -0.0381673, 51.2373957, -0.0381673, 51.2373957 ], "geometry": { "type": "Point", "coordinates": [ -0.0381673, 51.2373957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37500626" }, "bbox": [ -0.0379607, 51.2350978, -0.0379607, 51.2350978 ], "geometry": { "type": "Point", "coordinates": [ -0.0379607, 51.2350978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38587591" }, "bbox": [ -0.010484, 51.3124002, -0.010484, 51.3124002 ], "geometry": { "type": "Point", "coordinates": [ -0.010484, 51.3124002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38586663" }, "bbox": [ -0.0125179, 51.3098431, -0.0125179, 51.3098431 ], "geometry": { "type": "Point", "coordinates": [ -0.0125179, 51.3098431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38587258" }, "bbox": [ -0.0109992, 51.3095318, -0.0109992, 51.3095318 ], "geometry": { "type": "Point", "coordinates": [ -0.0109992, 51.3095318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82408407" }, "bbox": [ -0.8171898, 51.1537604, -0.8171898, 51.1537604 ], "geometry": { "type": "Point", "coordinates": [ -0.8171898, 51.1537604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81489949" }, "bbox": [ -0.8270883, 51.2298024, -0.8270883, 51.2298024 ], "geometry": { "type": "Point", "coordinates": [ -0.8270883, 51.2298024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04709115" }, "bbox": [ -0.4921089, 51.4208418, -0.4921089, 51.4208418 ], "geometry": { "type": "Point", "coordinates": [ -0.4921089, 51.4208418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04378257" }, "bbox": [ -0.5030852, 51.1279, -0.5030852, 51.1279 ], "geometry": { "type": "Point", "coordinates": [ -0.5030852, 51.1279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29510927" }, "bbox": [ -0.1519179, 51.2462545, -0.1519179, 51.2462545 ], "geometry": { "type": "Point", "coordinates": [ -0.1519179, 51.2462545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440870" }, "bbox": [ -0.3260051, 51.1892487, -0.3260051, 51.1892487 ], "geometry": { "type": "Point", "coordinates": [ -0.3260051, 51.1892487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34497074" }, "bbox": [ -0.0722718, 51.2310033, -0.0722718, 51.2310033 ], "geometry": { "type": "Point", "coordinates": [ -0.0722718, 51.2310033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41394776" }, "bbox": [ 0.0207787, 51.1397242, 0.0207787, 51.1397242 ], "geometry": { "type": "Point", "coordinates": [ 0.0207787, 51.1397242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37540348" }, "bbox": [ -0.0374277, 51.2742449, -0.0374277, 51.2742449 ], "geometry": { "type": "Point", "coordinates": [ -0.0374277, 51.2742449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37541909" }, "bbox": [ -0.0351076, 51.2698953, -0.0351076, 51.2698953 ], "geometry": { "type": "Point", "coordinates": [ -0.0351076, 51.2698953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94463170" }, "bbox": [ -0.6511379, 51.2118216, -0.6511379, 51.2118216 ], "geometry": { "type": "Point", "coordinates": [ -0.6511379, 51.2118216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94463366" }, "bbox": [ -0.6508816, 51.2112639, -0.6508816, 51.2112639 ], "geometry": { "type": "Point", "coordinates": [ -0.6508816, 51.2112639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94461358" }, "bbox": [ -0.6532872, 51.2106423, -0.6532872, 51.2106423 ], "geometry": { "type": "Point", "coordinates": [ -0.6532872, 51.2106423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93462753" }, "bbox": [ -0.6662272, 51.2104841, -0.6662272, 51.2104841 ], "geometry": { "type": "Point", "coordinates": [ -0.6662272, 51.2104841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13516571" }, "bbox": [ -0.3726298, 51.2530917, -0.3726298, 51.2530917 ], "geometry": { "type": "Point", "coordinates": [ -0.3726298, 51.2530917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16537431" }, "bbox": [ -0.3279285, 51.2673056, -0.3279285, 51.2673056 ], "geometry": { "type": "Point", "coordinates": [ -0.3279285, 51.2673056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01416755" }, "bbox": [ -0.5473234, 51.1642912, -0.5473234, 51.1642912 ], "geometry": { "type": "Point", "coordinates": [ -0.5473234, 51.1642912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01415561" }, "bbox": [ -0.5493411, 51.1637972, -0.5493411, 51.1637972 ], "geometry": { "type": "Point", "coordinates": [ -0.5493411, 51.1637972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01416875" }, "bbox": [ -0.5472128, 51.1662051, -0.5472128, 51.1662051 ], "geometry": { "type": "Point", "coordinates": [ -0.5472128, 51.1662051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01414379" }, "bbox": [ -0.54946, 51.1659328, -0.54946, 51.1659328 ], "geometry": { "type": "Point", "coordinates": [ -0.54946, 51.1659328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01413572" }, "bbox": [ -0.5517911, 51.1658084, -0.5517911, 51.1658084 ], "geometry": { "type": "Point", "coordinates": [ -0.5517911, 51.1658084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20566990" }, "bbox": [ -0.2695566, 51.297785, -0.2695566, 51.297785 ], "geometry": { "type": "Point", "coordinates": [ -0.2695566, 51.297785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20576802" }, "bbox": [ -0.270203, 51.2996449, -0.270203, 51.2996449 ], "geometry": { "type": "Point", "coordinates": [ -0.270203, 51.2996449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20562879" }, "bbox": [ -0.2762005, 51.2975946, -0.2762005, 51.2975946 ], "geometry": { "type": "Point", "coordinates": [ -0.2762005, 51.2975946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20565563" }, "bbox": [ -0.2726536, 51.2958356, -0.2726536, 51.2958356 ], "geometry": { "type": "Point", "coordinates": [ -0.2726536, 51.2958356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20578905" }, "bbox": [ -0.2666987, 51.2993845, -0.2666987, 51.2993845 ], "geometry": { "type": "Point", "coordinates": [ -0.2666987, 51.2993845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20578104" }, "bbox": [ -0.2683789, 51.2999739, -0.2683789, 51.2999739 ], "geometry": { "type": "Point", "coordinates": [ -0.2683789, 51.2999739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20575624" }, "bbox": [ -0.2720182, 51.3017021, -0.2720182, 51.3017021 ], "geometry": { "type": "Point", "coordinates": [ -0.2720182, 51.3017021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00427107" }, "bbox": [ -0.5607895, 51.1690762, -0.5607895, 51.1690762 ], "geometry": { "type": "Point", "coordinates": [ -0.5607895, 51.1690762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411078" }, "bbox": [ -0.5558926, 51.1665523, -0.5558926, 51.1665523 ], "geometry": { "type": "Point", "coordinates": [ -0.5558926, 51.1665523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411383" }, "bbox": [ -0.5548265, 51.1667773, -0.5548265, 51.1667773 ], "geometry": { "type": "Point", "coordinates": [ -0.5548265, 51.1667773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410047" }, "bbox": [ -0.5563085, 51.1636601, -0.5563085, 51.1636601 ], "geometry": { "type": "Point", "coordinates": [ -0.5563085, 51.1636601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411974" }, "bbox": [ -0.5541807, 51.1659423, -0.5541807, 51.1659423 ], "geometry": { "type": "Point", "coordinates": [ -0.5541807, 51.1659423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412079" }, "bbox": [ -0.5540823, 51.1664011, -0.5540823, 51.1664011 ], "geometry": { "type": "Point", "coordinates": [ -0.5540823, 51.1664011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411774" }, "bbox": [ -0.5541242, 51.1660967, -0.5541242, 51.1660967 ], "geometry": { "type": "Point", "coordinates": [ -0.5541242, 51.1660967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411049" }, "bbox": [ -0.5554436, 51.1637677, -0.5554436, 51.1637677 ], "geometry": { "type": "Point", "coordinates": [ -0.5554436, 51.1637677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00419572" }, "bbox": [ -0.5576821, 51.1659743, -0.5576821, 51.1659743 ], "geometry": { "type": "Point", "coordinates": [ -0.5576821, 51.1659743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00419863" }, "bbox": [ -0.5570176, 51.1650816, -0.5570176, 51.1650816 ], "geometry": { "type": "Point", "coordinates": [ -0.5570176, 51.1650816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01425122" }, "bbox": [ -0.5493817, 51.1702731, -0.5493817, 51.1702731 ], "geometry": { "type": "Point", "coordinates": [ -0.5493817, 51.1702731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00428244" }, "bbox": [ -0.559292, 51.1721531, -0.559292, 51.1721531 ], "geometry": { "type": "Point", "coordinates": [ -0.559292, 51.1721531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00429442" }, "bbox": [ -0.5573523, 51.1723253, -0.5573523, 51.1723253 ], "geometry": { "type": "Point", "coordinates": [ -0.5573523, 51.1723253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00429764" }, "bbox": [ -0.5568201, 51.174201, -0.5568201, 51.174201 ], "geometry": { "type": "Point", "coordinates": [ -0.5568201, 51.174201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00428526" }, "bbox": [ -0.5586181, 51.1707716, -0.5586181, 51.1707716 ], "geometry": { "type": "Point", "coordinates": [ -0.5586181, 51.1707716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20569439" }, "bbox": [ -0.2669165, 51.2940279, -0.2669165, 51.2940279 ], "geometry": { "type": "Point", "coordinates": [ -0.2669165, 51.2940279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20569216" }, "bbox": [ -0.2666538, 51.2914716, -0.2666538, 51.2914716 ], "geometry": { "type": "Point", "coordinates": [ -0.2666538, 51.2914716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20567035" }, "bbox": [ -0.2704545, 51.293491, -0.2704545, 51.293491 ], "geometry": { "type": "Point", "coordinates": [ -0.2704545, 51.293491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20568434" }, "bbox": [ -0.268417, 51.2933441, -0.268417, 51.2933441 ], "geometry": { "type": "Point", "coordinates": [ -0.268417, 51.2933441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20567221" }, "bbox": [ -0.2699304, 51.2921852, -0.2699304, 51.2921852 ], "geometry": { "type": "Point", "coordinates": [ -0.2699304, 51.2921852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21552477" }, "bbox": [ -0.2632897, 51.2881133, -0.2632897, 51.2881133 ], "geometry": { "type": "Point", "coordinates": [ -0.2632897, 51.2881133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21552389" }, "bbox": [ -0.2627419, 51.2893028, -0.2627419, 51.2893028 ], "geometry": { "type": "Point", "coordinates": [ -0.2627419, 51.2893028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21564213" }, "bbox": [ -0.2598895, 51.2914235, -0.2598895, 51.2914235 ], "geometry": { "type": "Point", "coordinates": [ -0.2598895, 51.2914235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21563035" }, "bbox": [ -0.261886, 51.2933808, -0.261886, 51.2933808 ], "geometry": { "type": "Point", "coordinates": [ -0.261886, 51.2933808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20576247" }, "bbox": [ -0.2710747, 51.3036175, -0.2710747, 51.3036175 ], "geometry": { "type": "Point", "coordinates": [ -0.2710747, 51.3036175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20572241" }, "bbox": [ -0.276225, 51.302144, -0.276225, 51.302144 ], "geometry": { "type": "Point", "coordinates": [ -0.276225, 51.302144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20573544" }, "bbox": [ -0.2736764, 51.3035599, -0.2736764, 51.3035599 ], "geometry": { "type": "Point", "coordinates": [ -0.2736764, 51.3035599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20575462" }, "bbox": [ -0.2721295, 51.3048385, -0.2721295, 51.3048385 ], "geometry": { "type": "Point", "coordinates": [ -0.2721295, 51.3048385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01412998" }, "bbox": [ -0.5519491, 51.16798, -0.5519491, 51.16798 ], "geometry": { "type": "Point", "coordinates": [ -0.5519491, 51.16798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01413086" }, "bbox": [ -0.5524576, 51.1670068, -0.5524576, 51.1670068 ], "geometry": { "type": "Point", "coordinates": [ -0.5524576, 51.1670068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20564091" }, "bbox": [ -0.2742116, 51.2985413, -0.2742116, 51.2985413 ], "geometry": { "type": "Point", "coordinates": [ -0.2742116, 51.2985413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20574301" }, "bbox": [ -0.2740418, 51.2992298, -0.2740418, 51.2992298 ], "geometry": { "type": "Point", "coordinates": [ -0.2740418, 51.2992298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20574700" }, "bbox": [ -0.273297, 51.299457, -0.273297, 51.299457 ], "geometry": { "type": "Point", "coordinates": [ -0.273297, 51.299457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20569863" }, "bbox": [ -0.2660924, 51.2956839, -0.2660924, 51.2956839 ], "geometry": { "type": "Point", "coordinates": [ -0.2660924, 51.2956839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20568872" }, "bbox": [ -0.2678252, 51.2964044, -0.2678252, 51.2964044 ], "geometry": { "type": "Point", "coordinates": [ -0.2678252, 51.2964044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21566023" }, "bbox": [ -0.2573305, 51.2924651, -0.2573305, 51.2924651 ], "geometry": { "type": "Point", "coordinates": [ -0.2573305, 51.2924651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21566310" }, "bbox": [ -0.2565018, 51.2907341, -0.2565018, 51.2907341 ], "geometry": { "type": "Point", "coordinates": [ -0.2565018, 51.2907341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20569604" }, "bbox": [ -0.2656388, 51.2906997, -0.2656388, 51.2906997 ], "geometry": { "type": "Point", "coordinates": [ -0.2656388, 51.2906997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21560507" }, "bbox": [ -0.2651865, 51.2906992, -0.2651865, 51.2906992 ], "geometry": { "type": "Point", "coordinates": [ -0.2651865, 51.2906992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21565843" }, "bbox": [ -0.2578279, 51.2943413, -0.2578279, 51.2943413 ], "geometry": { "type": "Point", "coordinates": [ -0.2578279, 51.2943413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21551837" }, "bbox": [ -0.2640606, 51.2847767, -0.2640606, 51.2847767 ], "geometry": { "type": "Point", "coordinates": [ -0.2640606, 51.2847767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21554350" }, "bbox": [ -0.2604768, 51.2856328, -0.2604768, 51.2856328 ], "geometry": { "type": "Point", "coordinates": [ -0.2604768, 51.2856328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410594" }, "bbox": [ -0.5560123, 51.1677954, -0.5560123, 51.1677954 ], "geometry": { "type": "Point", "coordinates": [ -0.5560123, 51.1677954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00419690" }, "bbox": [ -0.5568594, 51.1675374, -0.5568594, 51.1675374 ], "geometry": { "type": "Point", "coordinates": [ -0.5568594, 51.1675374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418792" }, "bbox": [ -0.5590071, 51.1674054, -0.5590071, 51.1674054 ], "geometry": { "type": "Point", "coordinates": [ -0.5590071, 51.1674054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418885" }, "bbox": [ -0.5583185, 51.1670186, -0.5583185, 51.1670186 ], "geometry": { "type": "Point", "coordinates": [ -0.5583185, 51.1670186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95630144" }, "bbox": [ -0.6367668, 51.3621356, -0.6367668, 51.3621356 ], "geometry": { "type": "Point", "coordinates": [ -0.6367668, 51.3621356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94628096" }, "bbox": [ -0.6400111, 51.3579604, -0.6400111, 51.3579604 ], "geometry": { "type": "Point", "coordinates": [ -0.6400111, 51.3579604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94638014" }, "bbox": [ -0.6403552, 51.3592914, -0.6403552, 51.3592914 ], "geometry": { "type": "Point", "coordinates": [ -0.6403552, 51.3592914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94638536" }, "bbox": [ -0.6390557, 51.3613541, -0.6390557, 51.3613541 ], "geometry": { "type": "Point", "coordinates": [ -0.6390557, 51.3613541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94637944" }, "bbox": [ -0.6399796, 51.3621306, -0.6399796, 51.3621306 ], "geometry": { "type": "Point", "coordinates": [ -0.6399796, 51.3621306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94636730" }, "bbox": [ -0.6406911, 51.3607353, -0.6406911, 51.3607353 ], "geometry": { "type": "Point", "coordinates": [ -0.6406911, 51.3607353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21562278" }, "bbox": [ -0.2626026, 51.2977159, -0.2626026, 51.2977159 ], "geometry": { "type": "Point", "coordinates": [ -0.2626026, 51.2977159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21562564" }, "bbox": [ -0.2621925, 51.2958102, -0.2621925, 51.2958102 ], "geometry": { "type": "Point", "coordinates": [ -0.2621925, 51.2958102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21564575" }, "bbox": [ -0.2596248, 51.2969299, -0.2596248, 51.2969299 ], "geometry": { "type": "Point", "coordinates": [ -0.2596248, 51.2969299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21565085" }, "bbox": [ -0.2584749, 51.2979437, -0.2584749, 51.2979437 ], "geometry": { "type": "Point", "coordinates": [ -0.2584749, 51.2979437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00429312" }, "bbox": [ -0.5575782, 51.1694977, -0.5575782, 51.1694977 ], "geometry": { "type": "Point", "coordinates": [ -0.5575782, 51.1694977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00428104" }, "bbox": [ -0.5590389, 51.1683531, -0.5590389, 51.1683531 ], "geometry": { "type": "Point", "coordinates": [ -0.5590389, 51.1683531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418091" }, "bbox": [ -0.5596459, 51.1676092, -0.5596459, 51.1676092 ], "geometry": { "type": "Point", "coordinates": [ -0.5596459, 51.1676092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21569065" }, "bbox": [ -0.2530721, 51.295567, -0.2530721, 51.295567 ], "geometry": { "type": "Point", "coordinates": [ -0.2530721, 51.295567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21566569" }, "bbox": [ -0.256339, 51.2964827, -0.256339, 51.2964827 ], "geometry": { "type": "Point", "coordinates": [ -0.256339, 51.2964827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21567460" }, "bbox": [ -0.2544931, 51.295681, -0.2544931, 51.295681 ], "geometry": { "type": "Point", "coordinates": [ -0.2544931, 51.295681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21567390" }, "bbox": [ -0.255438, 51.2984644, -0.255438, 51.2984644 ], "geometry": { "type": "Point", "coordinates": [ -0.255438, 51.2984644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21567235" }, "bbox": [ -0.2557417, 51.2941468, -0.2557417, 51.2941468 ], "geometry": { "type": "Point", "coordinates": [ -0.2557417, 51.2941468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35429231" }, "bbox": [ -0.0573931, 51.1640404, -0.0573931, 51.1640404 ], "geometry": { "type": "Point", "coordinates": [ -0.0573931, 51.1640404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35426418" }, "bbox": [ -0.0615145, 51.1629836, -0.0615145, 51.1629836 ], "geometry": { "type": "Point", "coordinates": [ -0.0615145, 51.1629836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35427724" }, "bbox": [ -0.059547, 51.1633853, -0.059547, 51.1633853 ], "geometry": { "type": "Point", "coordinates": [ -0.059547, 51.1633853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35427113" }, "bbox": [ -0.0604341, 51.1624271, -0.0604341, 51.1624271 ], "geometry": { "type": "Point", "coordinates": [ -0.0604341, 51.1624271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35427917" }, "bbox": [ -0.0592814, 51.1627154, -0.0592814, 51.1627154 ], "geometry": { "type": "Point", "coordinates": [ -0.0592814, 51.1627154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35429633" }, "bbox": [ -0.0567402, 51.164173, -0.0567402, 51.164173 ], "geometry": { "type": "Point", "coordinates": [ -0.0567402, 51.164173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35426927" }, "bbox": [ -0.0604599, 51.1637209, -0.0604599, 51.1637209 ], "geometry": { "type": "Point", "coordinates": [ -0.0604599, 51.1637209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36420034" }, "bbox": [ -0.0561747, 51.1642291, -0.0561747, 51.1642291 ], "geometry": { "type": "Point", "coordinates": [ -0.0561747, 51.1642291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36420536" }, "bbox": [ -0.0554352, 51.1644356, -0.0554352, 51.1644356 ], "geometry": { "type": "Point", "coordinates": [ -0.0554352, 51.1644356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07489761" }, "bbox": [ -0.4552663, 51.2264588, -0.4552663, 51.2264588 ], "geometry": { "type": "Point", "coordinates": [ -0.4552663, 51.2264588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25527917" }, "bbox": [ -0.1987292, 51.2548534, -0.1987292, 51.2548534 ], "geometry": { "type": "Point", "coordinates": [ -0.1987292, 51.2548534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25517594" }, "bbox": [ -0.1991323, 51.2529038, -0.1991323, 51.2529038 ], "geometry": { "type": "Point", "coordinates": [ -0.1991323, 51.2529038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25529810" }, "bbox": [ -0.1960709, 51.2537527, -0.1960709, 51.2537527 ], "geometry": { "type": "Point", "coordinates": [ -0.1960709, 51.2537527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19550365" }, "bbox": [ -0.2944761, 51.2876718, -0.2944761, 51.2876718 ], "geometry": { "type": "Point", "coordinates": [ -0.2944761, 51.2876718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19553045" }, "bbox": [ -0.2905743, 51.2856754, -0.2905743, 51.2856754 ], "geometry": { "type": "Point", "coordinates": [ -0.2905743, 51.2856754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19552452" }, "bbox": [ -0.2914276, 51.2864285, -0.2914276, 51.2864285 ], "geometry": { "type": "Point", "coordinates": [ -0.2914276, 51.2864285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19551758" }, "bbox": [ -0.2923607, 51.2869982, -0.2923607, 51.2869982 ], "geometry": { "type": "Point", "coordinates": [ -0.2923607, 51.2869982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09479972" }, "bbox": [ -0.4273498, 51.2181324, -0.4273498, 51.2181324 ], "geometry": { "type": "Point", "coordinates": [ -0.4273498, 51.2181324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13497074" }, "bbox": [ -0.3726687, 51.2355448, -0.3726687, 51.2355448 ], "geometry": { "type": "Point", "coordinates": [ -0.3726687, 51.2355448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90327388" }, "bbox": [ -0.7061533, 51.0884344, -0.7061533, 51.0884344 ], "geometry": { "type": "Point", "coordinates": [ -0.7061533, 51.0884344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90327787" }, "bbox": [ -0.7054395, 51.0879149, -0.7054395, 51.0879149 ], "geometry": { "type": "Point", "coordinates": [ -0.7054395, 51.0879149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91320170" }, "bbox": [ -0.7019218, 51.0863775, -0.7019218, 51.0863775 ], "geometry": { "type": "Point", "coordinates": [ -0.7019218, 51.0863775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37546220" }, "bbox": [ -0.0289075, 51.2704894, -0.0289075, 51.2704894 ], "geometry": { "type": "Point", "coordinates": [ -0.0289075, 51.2704894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22560174" }, "bbox": [ -0.2511747, 51.2968098, -0.2511747, 51.2968098 ], "geometry": { "type": "Point", "coordinates": [ -0.2511747, 51.2968098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22560346" }, "bbox": [ -0.2499529, 51.29374, -0.2499529, 51.29374 ], "geometry": { "type": "Point", "coordinates": [ -0.2499529, 51.29374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31481091" }, "bbox": [ -0.1236371, 51.2245755, -0.1236371, 51.2245755 ], "geometry": { "type": "Point", "coordinates": [ -0.1236371, 51.2245755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18520564" }, "bbox": [ -0.3090858, 51.260775, -0.3090858, 51.260775 ], "geometry": { "type": "Point", "coordinates": [ -0.3090858, 51.260775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22561847" }, "bbox": [ -0.248122, 51.293539, -0.248122, 51.293539 ], "geometry": { "type": "Point", "coordinates": [ -0.248122, 51.293539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18510512" }, "bbox": [ -0.302933, 51.2472288, -0.302933, 51.2472288 ], "geometry": { "type": "Point", "coordinates": [ -0.302933, 51.2472288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18511916" }, "bbox": [ -0.3076359, 51.24752, -0.3076359, 51.24752 ], "geometry": { "type": "Point", "coordinates": [ -0.3076359, 51.24752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17519419" }, "bbox": [ -0.3112692, 51.2476854, -0.3112692, 51.2476854 ], "geometry": { "type": "Point", "coordinates": [ -0.3112692, 51.2476854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410558" }, "bbox": [ -0.5561683, 51.1642278, -0.5561683, 51.1642278 ], "geometry": { "type": "Point", "coordinates": [ -0.5561683, 51.1642278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410970" }, "bbox": [ -0.5552491, 51.1658236, -0.5552491, 51.1658236 ], "geometry": { "type": "Point", "coordinates": [ -0.5552491, 51.1658236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89364093" }, "bbox": [ -0.7240535, 51.1248709, -0.7240535, 51.1248709 ], "geometry": { "type": "Point", "coordinates": [ -0.7240535, 51.1248709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89364098" }, "bbox": [ -0.7237347, 51.1252918, -0.7237347, 51.1252918 ], "geometry": { "type": "Point", "coordinates": [ -0.7237347, 51.1252918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16433868" }, "bbox": [ -0.3360391, 51.18064, -0.3360391, 51.18064 ], "geometry": { "type": "Point", "coordinates": [ -0.3360391, 51.18064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16434958" }, "bbox": [ -0.3346405, 51.1796263, -0.3346405, 51.1796263 ], "geometry": { "type": "Point", "coordinates": [ -0.3346405, 51.1796263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99423957" }, "bbox": [ -0.5799502, 51.1737981, -0.5799502, 51.1737981 ], "geometry": { "type": "Point", "coordinates": [ -0.5799502, 51.1737981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99421656" }, "bbox": [ -0.5818252, 51.1739044, -0.5818252, 51.1739044 ], "geometry": { "type": "Point", "coordinates": [ -0.5818252, 51.1739044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00416535" }, "bbox": [ -0.5626967, 51.1625258, -0.5626967, 51.1625258 ], "geometry": { "type": "Point", "coordinates": [ -0.5626967, 51.1625258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00415045" }, "bbox": [ -0.5617483, 51.1638064, -0.5617483, 51.1638064 ], "geometry": { "type": "Point", "coordinates": [ -0.5617483, 51.1638064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24462160" }, "bbox": [ -0.2237952, 51.2050961, -0.2237952, 51.2050961 ], "geometry": { "type": "Point", "coordinates": [ -0.2237952, 51.2050961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23489518" }, "bbox": [ -0.2264688, 51.2194676, -0.2264688, 51.2194676 ], "geometry": { "type": "Point", "coordinates": [ -0.2264688, 51.2194676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23485212" }, "bbox": [ -0.2325801, 51.2188604, -0.2325801, 51.2188604 ], "geometry": { "type": "Point", "coordinates": [ -0.2325801, 51.2188604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99429040" }, "bbox": [ -0.5722504, 51.1722446, -0.5722504, 51.1722446 ], "geometry": { "type": "Point", "coordinates": [ -0.5722504, 51.1722446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00420451" }, "bbox": [ -0.570308, 51.1727442, -0.570308, 51.1727442 ], "geometry": { "type": "Point", "coordinates": [ -0.570308, 51.1727442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418257" }, "bbox": [ -0.5593614, 51.164552, -0.5593614, 51.164552 ], "geometry": { "type": "Point", "coordinates": [ -0.5593614, 51.164552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88369987" }, "bbox": [ -0.7297805, 51.124264, -0.7297805, 51.124264 ], "geometry": { "type": "Point", "coordinates": [ -0.7297805, 51.124264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86361369" }, "bbox": [ -0.7695709, 51.1228865, -0.7695709, 51.1228865 ], "geometry": { "type": "Point", "coordinates": [ -0.7695709, 51.1228865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90329184" }, "bbox": [ -0.7031659, 51.0875817, -0.7031659, 51.0875817 ], "geometry": { "type": "Point", "coordinates": [ -0.7031659, 51.0875817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89360096" }, "bbox": [ -0.729414, 51.1250131, -0.729414, 51.1250131 ], "geometry": { "type": "Point", "coordinates": [ -0.729414, 51.1250131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91316834" }, "bbox": [ -0.692782, 51.0742888, -0.692782, 51.0742888 ], "geometry": { "type": "Point", "coordinates": [ -0.692782, 51.0742888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91326284" }, "bbox": [ -0.6931134, 51.0876172, -0.6931134, 51.0876172 ], "geometry": { "type": "Point", "coordinates": [ -0.6931134, 51.0876172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99466316" }, "bbox": [ -0.5749362, 51.2063429, -0.5749362, 51.2063429 ], "geometry": { "type": "Point", "coordinates": [ -0.5749362, 51.2063429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99416254" }, "bbox": [ -0.5765478, 51.164567, -0.5765478, 51.164567 ], "geometry": { "type": "Point", "coordinates": [ -0.5765478, 51.164567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99465631" }, "bbox": [ -0.5760598, 51.2073549, -0.5760598, 51.2073549 ], "geometry": { "type": "Point", "coordinates": [ -0.5760598, 51.2073549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00413925" }, "bbox": [ -0.5658434, 51.1619315, -0.5658434, 51.1619315 ], "geometry": { "type": "Point", "coordinates": [ -0.5658434, 51.1619315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00413842" }, "bbox": [ -0.5662481, 51.1633096, -0.5662481, 51.1633096 ], "geometry": { "type": "Point", "coordinates": [ -0.5662481, 51.1633096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00412449" }, "bbox": [ -0.5678861, 51.163755, -0.5678861, 51.163755 ], "geometry": { "type": "Point", "coordinates": [ -0.5678861, 51.163755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99463216" }, "bbox": [ -0.5796599, 51.2060927, -0.5796599, 51.2060927 ], "geometry": { "type": "Point", "coordinates": [ -0.5796599, 51.2060927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90488917" }, "bbox": [ -0.6998712, 51.2255703, -0.6998712, 51.2255703 ], "geometry": { "type": "Point", "coordinates": [ -0.6998712, 51.2255703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90482520" }, "bbox": [ -0.7078213, 51.2257979, -0.7078213, 51.2257979 ], "geometry": { "type": "Point", "coordinates": [ -0.7078213, 51.2257979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90483513" }, "bbox": [ -0.7076161, 51.2250617, -0.7076161, 51.2250617 ], "geometry": { "type": "Point", "coordinates": [ -0.7076161, 51.2250617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90489610" }, "bbox": [ -0.6986538, 51.2247995, -0.6986538, 51.2247995 ], "geometry": { "type": "Point", "coordinates": [ -0.6986538, 51.2247995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90487122" }, "bbox": [ -0.70024, 51.2262825, -0.70024, 51.2262825 ], "geometry": { "type": "Point", "coordinates": [ -0.70024, 51.2262825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482429" }, "bbox": [ -0.6942346, 51.2265604, -0.6942346, 51.2265604 ], "geometry": { "type": "Point", "coordinates": [ -0.6942346, 51.2265604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482726" }, "bbox": [ -0.6947012, 51.2262767, -0.6947012, 51.2262767 ], "geometry": { "type": "Point", "coordinates": [ -0.6947012, 51.2262767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91482523" }, "bbox": [ -0.694587, 51.2260262, -0.694587, 51.2260262 ], "geometry": { "type": "Point", "coordinates": [ -0.694587, 51.2260262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93431955" }, "bbox": [ -0.6677275, 51.1831024, -0.6677275, 51.1831024 ], "geometry": { "type": "Point", "coordinates": [ -0.6677275, 51.1831024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93430784" }, "bbox": [ -0.6695822, 51.1863113, -0.6695822, 51.1863113 ], "geometry": { "type": "Point", "coordinates": [ -0.6695822, 51.1863113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93427146" }, "bbox": [ -0.6607516, 51.1741173, -0.6607516, 51.1741173 ], "geometry": { "type": "Point", "coordinates": [ -0.6607516, 51.1741173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93425547" }, "bbox": [ -0.6630562, 51.1738552, -0.6630562, 51.1738552 ], "geometry": { "type": "Point", "coordinates": [ -0.6630562, 51.1738552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11370180" }, "bbox": [ -0.4130288, 51.1277882, -0.4130288, 51.1277882 ], "geometry": { "type": "Point", "coordinates": [ -0.4130288, 51.1277882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11364265" }, "bbox": [ -0.4096647, 51.1183101, -0.4096647, 51.1183101 ], "geometry": { "type": "Point", "coordinates": [ -0.4096647, 51.1183101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11364987" }, "bbox": [ -0.4084909, 51.1202043, -0.4084909, 51.1202043 ], "geometry": { "type": "Point", "coordinates": [ -0.4084909, 51.1202043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11368275" }, "bbox": [ -0.403584, 51.1190995, -0.403584, 51.1190995 ], "geometry": { "type": "Point", "coordinates": [ -0.403584, 51.1190995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40525946" }, "bbox": [ 0.0132843, 51.2539851, 0.0132843, 51.2539851 ], "geometry": { "type": "Point", "coordinates": [ 0.0132843, 51.2539851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26460735" }, "bbox": [ -0.1963435, 51.202437, -0.1963435, 51.202437 ], "geometry": { "type": "Point", "coordinates": [ -0.1963435, 51.202437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37565220" }, "bbox": [ -0.0290517, 51.2882782, -0.0290517, 51.2882782 ], "geometry": { "type": "Point", "coordinates": [ -0.0290517, 51.2882782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37566021" }, "bbox": [ -0.028067, 51.2884839, -0.028067, 51.2884839 ], "geometry": { "type": "Point", "coordinates": [ -0.028067, 51.2884839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86435636" }, "bbox": [ -0.7630134, 51.1828663, -0.7630134, 51.1828663 ], "geometry": { "type": "Point", "coordinates": [ -0.7630134, 51.1828663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92401502" }, "bbox": [ -0.6838128, 51.1521012, -0.6838128, 51.1521012 ], "geometry": { "type": "Point", "coordinates": [ -0.6838128, 51.1521012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07520629" }, "bbox": [ -0.4670658, 51.2597189, -0.4670658, 51.2597189 ], "geometry": { "type": "Point", "coordinates": [ -0.4670658, 51.2597189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07520622" }, "bbox": [ -0.4670504, 51.2591024, -0.4670504, 51.2591024 ], "geometry": { "type": "Point", "coordinates": [ -0.4670504, 51.2591024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07520332" }, "bbox": [ -0.4685597, 51.2602045, -0.4685597, 51.2602045 ], "geometry": { "type": "Point", "coordinates": [ -0.4685597, 51.2602045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01381226" }, "bbox": [ -0.5558371, 51.136755, -0.5558371, 51.136755 ], "geometry": { "type": "Point", "coordinates": [ -0.5558371, 51.136755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01384344" }, "bbox": [ -0.5516541, 51.1364418, -0.5516541, 51.1364418 ], "geometry": { "type": "Point", "coordinates": [ -0.5516541, 51.1364418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01387901" }, "bbox": [ -0.5473277, 51.1325424, -0.5473277, 51.1325424 ], "geometry": { "type": "Point", "coordinates": [ -0.5473277, 51.1325424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01386542" }, "bbox": [ -0.5487136, 51.1362284, -0.5487136, 51.1362284 ], "geometry": { "type": "Point", "coordinates": [ -0.5487136, 51.1362284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01387226" }, "bbox": [ -0.5474363, 51.1346437, -0.5474363, 51.1346437 ], "geometry": { "type": "Point", "coordinates": [ -0.5474363, 51.1346437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444334" }, "bbox": [ -0.6929662, 51.1911079, -0.6929662, 51.1911079 ], "geometry": { "type": "Point", "coordinates": [ -0.6929662, 51.1911079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443452" }, "bbox": [ -0.694074, 51.1926331, -0.694074, 51.1926331 ], "geometry": { "type": "Point", "coordinates": [ -0.694074, 51.1926331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373476" }, "bbox": [ -0.5535199, 51.1303915, -0.5535199, 51.1303915 ], "geometry": { "type": "Point", "coordinates": [ -0.5535199, 51.1303915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01371372" }, "bbox": [ -0.5544634, 51.1294797, -0.5544634, 51.1294797 ], "geometry": { "type": "Point", "coordinates": [ -0.5544634, 51.1294797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40451628" }, "bbox": [ 0.0044127, 51.1896137, 0.0044127, 51.1896137 ], "geometry": { "type": "Point", "coordinates": [ 0.0044127, 51.1896137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26569687" }, "bbox": [ -0.1807965, 51.2972148, -0.1807965, 51.2972148 ], "geometry": { "type": "Point", "coordinates": [ -0.1807965, 51.2972148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27562587" }, "bbox": [ -0.1762399, 51.2968583, -0.1762399, 51.2968583 ], "geometry": { "type": "Point", "coordinates": [ -0.1762399, 51.2968583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27560490" }, "bbox": [ -0.1780278, 51.2972044, -0.1780278, 51.2972044 ], "geometry": { "type": "Point", "coordinates": [ -0.1780278, 51.2972044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26568329" }, "bbox": [ -0.1826544, 51.2908816, -0.1826544, 51.2908816 ], "geometry": { "type": "Point", "coordinates": [ -0.1826544, 51.2908816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27560429" }, "bbox": [ -0.1793973, 51.2914862, -0.1793973, 51.2914862 ], "geometry": { "type": "Point", "coordinates": [ -0.1793973, 51.2914862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27563392" }, "bbox": [ -0.1752134, 51.297066, -0.1752134, 51.297066 ], "geometry": { "type": "Point", "coordinates": [ -0.1752134, 51.297066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27565563" }, "bbox": [ -0.1720924, 51.2946533, -0.1720924, 51.2946533 ], "geometry": { "type": "Point", "coordinates": [ -0.1720924, 51.2946533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27554068" }, "bbox": [ -0.1739982, 51.2861784, -0.1739982, 51.2861784 ], "geometry": { "type": "Point", "coordinates": [ -0.1739982, 51.2861784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08390609" }, "bbox": [ -0.4566865, 51.1410251, -0.4566865, 51.1410251 ], "geometry": { "type": "Point", "coordinates": [ -0.4566865, 51.1410251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27565939" }, "bbox": [ -0.1718822, 51.2927312, -0.1718822, 51.2927312 ], "geometry": { "type": "Point", "coordinates": [ -0.1718822, 51.2927312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27564445" }, "bbox": [ -0.1740762, 51.2928143, -0.1740762, 51.2928143 ], "geometry": { "type": "Point", "coordinates": [ -0.1740762, 51.2928143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26558858" }, "bbox": [ -0.1812297, 51.2844443, -0.1812297, 51.2844443 ], "geometry": { "type": "Point", "coordinates": [ -0.1812297, 51.2844443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26556450" }, "bbox": [ -0.1839897, 51.2849961, -0.1839897, 51.2849961 ], "geometry": { "type": "Point", "coordinates": [ -0.1839897, 51.2849961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26558136" }, "bbox": [ -0.1822214, 51.2831885, -0.1822214, 51.2831885 ], "geometry": { "type": "Point", "coordinates": [ -0.1822214, 51.2831885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26556604" }, "bbox": [ -0.1856293, 51.280698, -0.1856293, 51.280698 ], "geometry": { "type": "Point", "coordinates": [ -0.1856293, 51.280698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26557009" }, "bbox": [ -0.1845638, 51.2810839, -0.1845638, 51.2810839 ], "geometry": { "type": "Point", "coordinates": [ -0.1845638, 51.2810839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26548488" }, "bbox": [ -0.1832034, 51.2788575, -0.1832034, 51.2788575 ], "geometry": { "type": "Point", "coordinates": [ -0.1832034, 51.2788575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09579762" }, "bbox": [ -0.4237258, 51.3070699, -0.4237258, 51.3070699 ], "geometry": { "type": "Point", "coordinates": [ -0.4237258, 51.3070699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00353614" }, "bbox": [ -0.5674526, 51.1067931, -0.5674526, 51.1067931 ], "geometry": { "type": "Point", "coordinates": [ -0.5674526, 51.1067931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00349118" }, "bbox": [ -0.5601653, 51.0980076, -0.5601653, 51.0980076 ], "geometry": { "type": "Point", "coordinates": [ -0.5601653, 51.0980076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00345610" }, "bbox": [ -0.5650433, 51.0975216, -0.5650433, 51.0975216 ], "geometry": { "type": "Point", "coordinates": [ -0.5650433, 51.0975216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00342690" }, "bbox": [ -0.5694201, 51.104649, -0.5694201, 51.104649 ], "geometry": { "type": "Point", "coordinates": [ -0.5694201, 51.104649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08384140" }, "bbox": [ -0.4530955, 51.1345024, -0.4530955, 51.1345024 ], "geometry": { "type": "Point", "coordinates": [ -0.4530955, 51.1345024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96520112" }, "bbox": [ -0.6251127, 51.2603769, -0.6251127, 51.2603769 ], "geometry": { "type": "Point", "coordinates": [ -0.6251127, 51.2603769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347858" }, "bbox": [ -0.6619657, 51.1027038, -0.6619657, 51.1027038 ], "geometry": { "type": "Point", "coordinates": [ -0.6619657, 51.1027038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93348257" }, "bbox": [ -0.6613555, 51.1027963, -0.6613555, 51.1027963 ], "geometry": { "type": "Point", "coordinates": [ -0.6613555, 51.1027963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93348262" }, "bbox": [ -0.661351, 51.1032336, -0.661351, 51.1032336 ], "geometry": { "type": "Point", "coordinates": [ -0.661351, 51.1032336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347356" }, "bbox": [ -0.6623793, 51.1026289, -0.6623793, 51.1026289 ], "geometry": { "type": "Point", "coordinates": [ -0.6623793, 51.1026289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332417" }, "bbox": [ -0.6131715, 51.089535, -0.6131715, 51.089535 ], "geometry": { "type": "Point", "coordinates": [ -0.6131715, 51.089535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91345699" }, "bbox": [ -0.6935872, 51.1068245, -0.6935872, 51.1068245 ], "geometry": { "type": "Point", "coordinates": [ -0.6935872, 51.1068245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91356509" }, "bbox": [ -0.6910302, 51.1076671, -0.6910302, 51.1076671 ], "geometry": { "type": "Point", "coordinates": [ -0.6910302, 51.1076671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91358928" }, "bbox": [ -0.6887771, 51.1094503, -0.6887771, 51.1094503 ], "geometry": { "type": "Point", "coordinates": [ -0.6887771, 51.1094503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91358026" }, "bbox": [ -0.6898083, 51.1093424, -0.6898083, 51.1093424 ], "geometry": { "type": "Point", "coordinates": [ -0.6898083, 51.1093424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94367050" }, "bbox": [ -0.6481351, 51.1200459, -0.6481351, 51.1200459 ], "geometry": { "type": "Point", "coordinates": [ -0.6481351, 51.1200459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94377245" }, "bbox": [ -0.6481452, 51.128799, -0.6481452, 51.128799 ], "geometry": { "type": "Point", "coordinates": [ -0.6481452, 51.128799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94377732" }, "bbox": [ -0.6473184, 51.1272912, -0.6473184, 51.1272912 ], "geometry": { "type": "Point", "coordinates": [ -0.6473184, 51.1272912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94371809" }, "bbox": [ -0.6558411, 51.1251985, -0.6558411, 51.1251985 ], "geometry": { "type": "Point", "coordinates": [ -0.6558411, 51.1251985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91478532" }, "bbox": [ -0.6864186, 51.217676, -0.6864186, 51.217676 ], "geometry": { "type": "Point", "coordinates": [ -0.6864186, 51.217676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92470139" }, "bbox": [ -0.6840103, 51.2183422, -0.6840103, 51.2183422 ], "geometry": { "type": "Point", "coordinates": [ -0.6840103, 51.2183422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15612475" }, "bbox": [ -0.3469002, 51.343075, -0.3469002, 51.343075 ], "geometry": { "type": "Point", "coordinates": [ -0.3469002, 51.343075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362147" }, "bbox": [ -0.6125946, 51.1192168, -0.6125946, 51.1192168 ], "geometry": { "type": "Point", "coordinates": [ -0.6125946, 51.1192168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362946" }, "bbox": [ -0.611259, 51.1192382, -0.611259, 51.1192382 ], "geometry": { "type": "Point", "coordinates": [ -0.611259, 51.1192382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362751" }, "bbox": [ -0.6116769, 51.1197227, -0.6116769, 51.1197227 ], "geometry": { "type": "Point", "coordinates": [ -0.6116769, 51.1197227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362436" }, "bbox": [ -0.6120469, 51.1178965, -0.6120469, 51.1178965 ], "geometry": { "type": "Point", "coordinates": [ -0.6120469, 51.1178965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93320755" }, "bbox": [ -0.6726563, 51.0846446, -0.6726563, 51.0846446 ], "geometry": { "type": "Point", "coordinates": [ -0.6726563, 51.0846446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93322063" }, "bbox": [ -0.6706959, 51.085372, -0.6706959, 51.085372 ], "geometry": { "type": "Point", "coordinates": [ -0.6706959, 51.085372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17410107" }, "bbox": [ -0.3280685, 51.1569202, -0.3280685, 51.1569202 ], "geometry": { "type": "Point", "coordinates": [ -0.3280685, 51.1569202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17410609" }, "bbox": [ -0.3274402, 51.1571427, -0.3274402, 51.1571427 ], "geometry": { "type": "Point", "coordinates": [ -0.3274402, 51.1571427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10342283" }, "bbox": [ -0.4266992, 51.1024041, -0.4266992, 51.1024041 ], "geometry": { "type": "Point", "coordinates": [ -0.4266992, 51.1024041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10343087" }, "bbox": [ -0.4255658, 51.1025634, -0.4255658, 51.1025634 ], "geometry": { "type": "Point", "coordinates": [ -0.4255658, 51.1025634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92516798" }, "bbox": [ -0.6732404, 51.2595499, -0.6732404, 51.2595499 ], "geometry": { "type": "Point", "coordinates": [ -0.6732404, 51.2595499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517092" }, "bbox": [ -0.6727185, 51.2589298, -0.6727185, 51.2589298 ], "geometry": { "type": "Point", "coordinates": [ -0.6727185, 51.2589298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517198" }, "bbox": [ -0.6726621, 51.2595316, -0.6726621, 51.2595316 ], "geometry": { "type": "Point", "coordinates": [ -0.6726621, 51.2595316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517087" }, "bbox": [ -0.6730441, 51.2586269, -0.6730441, 51.2586269 ], "geometry": { "type": "Point", "coordinates": [ -0.6730441, 51.2586269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92526700" }, "bbox": [ -0.6733251, 51.2596351, -0.6733251, 51.2596351 ], "geometry": { "type": "Point", "coordinates": [ -0.6733251, 51.2596351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90495871" }, "bbox": [ -0.7040512, 51.2396343, -0.7040512, 51.2396343 ], "geometry": { "type": "Point", "coordinates": [ -0.7040512, 51.2396343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81465259" }, "bbox": [ -0.8341901, 51.2127566, -0.8341901, 51.2127566 ], "geometry": { "type": "Point", "coordinates": [ -0.8341901, 51.2127566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466461" }, "bbox": [ -0.832983, 51.2129321, -0.832983, 51.2129321 ], "geometry": { "type": "Point", "coordinates": [ -0.832983, 51.2129321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22477777" }, "bbox": [ -0.2437172, 51.2159656, -0.2437172, 51.2159656 ], "geometry": { "type": "Point", "coordinates": [ -0.2437172, 51.2159656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22477863" }, "bbox": [ -0.2434785, 51.2147106, -0.2434785, 51.2147106 ], "geometry": { "type": "Point", "coordinates": [ -0.2434785, 51.2147106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22471971" }, "bbox": [ -0.2507544, 51.2156399, -0.2507544, 51.2156399 ], "geometry": { "type": "Point", "coordinates": [ -0.2507544, 51.2156399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21443493" }, "bbox": [ -0.2652714, 51.1903657, -0.2652714, 51.1903657 ], "geometry": { "type": "Point", "coordinates": [ -0.2652714, 51.1903657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21456935" }, "bbox": [ -0.2600317, 51.1945661, -0.2600317, 51.1945661 ], "geometry": { "type": "Point", "coordinates": [ -0.2600317, 51.1945661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23432038" }, "bbox": [ -0.2384532, 51.1762611, -0.2384532, 51.1762611 ], "geometry": { "type": "Point", "coordinates": [ -0.2384532, 51.1762611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23432940" }, "bbox": [ -0.2393942, 51.1782539, -0.2393942, 51.1782539 ], "geometry": { "type": "Point", "coordinates": [ -0.2393942, 51.1782539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91369877" }, "bbox": [ -0.6869179, 51.1229499, -0.6869179, 51.1229499 ], "geometry": { "type": "Point", "coordinates": [ -0.6869179, 51.1229499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360166" }, "bbox": [ -0.6865505, 51.1218876, -0.6865505, 51.1218876 ], "geometry": { "type": "Point", "coordinates": [ -0.6865505, 51.1218876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92362167" }, "bbox": [ -0.6844764, 51.12227, -0.6844764, 51.12227 ], "geometry": { "type": "Point", "coordinates": [ -0.6844764, 51.12227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81466701" }, "bbox": [ -0.8321237, 51.2074329, -0.8321237, 51.2074329 ], "geometry": { "type": "Point", "coordinates": [ -0.8321237, 51.2074329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81468909" }, "bbox": [ -0.829074, 51.2081872, -0.829074, 51.2081872 ], "geometry": { "type": "Point", "coordinates": [ -0.829074, 51.2081872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81468605" }, "bbox": [ -0.8296227, 51.2076269, -0.8296227, 51.2076269 ], "geometry": { "type": "Point", "coordinates": [ -0.8296227, 51.2076269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97550258" }, "bbox": [ -0.6098792, 51.291178, -0.6098792, 51.291178 ], "geometry": { "type": "Point", "coordinates": [ -0.6098792, 51.291178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22507766" }, "bbox": [ -0.2425009, 51.2420513, -0.2425009, 51.2420513 ], "geometry": { "type": "Point", "coordinates": [ -0.2425009, 51.2420513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22507483" }, "bbox": [ -0.2434498, 51.2431983, -0.2434498, 51.2431983 ], "geometry": { "type": "Point", "coordinates": [ -0.2434498, 51.2431983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22506499" }, "bbox": [ -0.2439989, 51.2447959, -0.2439989, 51.2447959 ], "geometry": { "type": "Point", "coordinates": [ -0.2439989, 51.2447959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22509943" }, "bbox": [ -0.239495, 51.2397128, -0.239495, 51.2397128 ], "geometry": { "type": "Point", "coordinates": [ -0.239495, 51.2397128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22507695" }, "bbox": [ -0.2425393, 51.2445324, -0.2425393, 51.2445324 ], "geometry": { "type": "Point", "coordinates": [ -0.2425393, 51.2445324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22506764" }, "bbox": [ -0.2440272, 51.2417794, -0.2440272, 51.2417794 ], "geometry": { "type": "Point", "coordinates": [ -0.2440272, 51.2417794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23501783" }, "bbox": [ -0.2368109, 51.2436235, -0.2368109, 51.2436235 ], "geometry": { "type": "Point", "coordinates": [ -0.2368109, 51.2436235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22518202" }, "bbox": [ -0.2409417, 51.24542, -0.2409417, 51.24542 ], "geometry": { "type": "Point", "coordinates": [ -0.2409417, 51.24542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23503695" }, "bbox": [ -0.2340473, 51.2443733, -0.2340473, 51.2443733 ], "geometry": { "type": "Point", "coordinates": [ -0.2340473, 51.2443733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512405" }, "bbox": [ -0.2356791, 51.2453006, -0.2356791, 51.2453006 ], "geometry": { "type": "Point", "coordinates": [ -0.2356791, 51.2453006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512410" }, "bbox": [ -0.2355818, 51.2458427, -0.2355818, 51.2458427 ], "geometry": { "type": "Point", "coordinates": [ -0.2355818, 51.2458427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23511312" }, "bbox": [ -0.2371519, 51.2460359, -0.2371519, 51.2460359 ], "geometry": { "type": "Point", "coordinates": [ -0.2371519, 51.2460359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23510130" }, "bbox": [ -0.2399404, 51.2472435, -0.2399404, 51.2472435 ], "geometry": { "type": "Point", "coordinates": [ -0.2399404, 51.2472435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00534949" }, "bbox": [ -0.5608602, 51.2717595, -0.5608602, 51.2717595 ], "geometry": { "type": "Point", "coordinates": [ -0.5608602, 51.2717595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00535060" }, "bbox": [ -0.5603589, 51.2726242, -0.5603589, 51.2726242 ], "geometry": { "type": "Point", "coordinates": [ -0.5603589, 51.2726242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09561817" }, "bbox": [ -0.4341557, 51.294481, -0.4341557, 51.294481 ], "geometry": { "type": "Point", "coordinates": [ -0.4341557, 51.294481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08566114" }, "bbox": [ -0.442595, 51.2949372, -0.442595, 51.2949372 ], "geometry": { "type": "Point", "coordinates": [ -0.442595, 51.2949372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18454726" }, "bbox": [ -0.3060866, 51.1942564, -0.3060866, 51.1942564 ], "geometry": { "type": "Point", "coordinates": [ -0.3060866, 51.1942564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18463477" }, "bbox": [ -0.3073579, 51.2078911, -0.3073579, 51.2078911 ], "geometry": { "type": "Point", "coordinates": [ -0.3073579, 51.2078911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416819" }, "bbox": [ -0.518639, 51.1605767, -0.518639, 51.1605767 ], "geometry": { "type": "Point", "coordinates": [ -0.518639, 51.1605767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418015" }, "bbox": [ -0.5168845, 51.1602708, -0.5168845, 51.1602708 ], "geometry": { "type": "Point", "coordinates": [ -0.5168845, 51.1602708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09435711" }, "bbox": [ -0.4339048, 51.1767038, -0.4339048, 51.1767038 ], "geometry": { "type": "Point", "coordinates": [ -0.4339048, 51.1767038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06568590" }, "bbox": [ -0.4686357, 51.3012046, -0.4686357, 51.3012046 ], "geometry": { "type": "Point", "coordinates": [ -0.4686357, 51.3012046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13391773" }, "bbox": [ -0.3834767, 51.1456897, -0.3834767, 51.1456897 ], "geometry": { "type": "Point", "coordinates": [ -0.3834767, 51.1456897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418268" }, "bbox": [ -0.5735623, 51.1657182, -0.5735623, 51.1657182 ], "geometry": { "type": "Point", "coordinates": [ -0.5735623, 51.1657182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10559003" }, "bbox": [ -0.4111953, 51.2833579, -0.4111953, 51.2833579 ], "geometry": { "type": "Point", "coordinates": [ -0.4111953, 51.2833579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11540928" }, "bbox": [ -0.4092394, 51.2765516, -0.4092394, 51.2765516 ], "geometry": { "type": "Point", "coordinates": [ -0.4092394, 51.2765516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11542566" }, "bbox": [ -0.4061923, 51.2802871, -0.4061923, 51.2802871 ], "geometry": { "type": "Point", "coordinates": [ -0.4061923, 51.2802871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11541552" }, "bbox": [ -0.4075601, 51.2790177, -0.4075601, 51.2790177 ], "geometry": { "type": "Point", "coordinates": [ -0.4075601, 51.2790177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11543159" }, "bbox": [ -0.4053562, 51.2796137, -0.4053562, 51.2796137 ], "geometry": { "type": "Point", "coordinates": [ -0.4053562, 51.2796137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10546997" }, "bbox": [ -0.4140073, 51.2831654, -0.4140073, 51.2831654 ], "geometry": { "type": "Point", "coordinates": [ -0.4140073, 51.2831654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38479027" }, "bbox": [ -0.0130356, 51.2077431, -0.0130356, 51.2077431 ], "geometry": { "type": "Point", "coordinates": [ -0.0130356, 51.2077431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39454683" }, "bbox": [ -0.0055912, 51.1946337, -0.0055912, 51.1946337 ], "geometry": { "type": "Point", "coordinates": [ -0.0055912, 51.1946337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39454394" }, "bbox": [ -0.0059068, 51.1957059, -0.0059068, 51.1957059 ], "geometry": { "type": "Point", "coordinates": [ -0.0059068, 51.1957059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39454383" }, "bbox": [ -0.0058398, 51.1948204, -0.0058398, 51.1948204 ], "geometry": { "type": "Point", "coordinates": [ -0.0058398, 51.1948204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96387083" }, "bbox": [ -0.6190838, 51.14059, -0.6190838, 51.14059 ], "geometry": { "type": "Point", "coordinates": [ -0.6190838, 51.14059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18438432" }, "bbox": [ -0.3016828, 51.1771941, -0.3016828, 51.1771941 ], "geometry": { "type": "Point", "coordinates": [ -0.3016828, 51.1771941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437142" }, "bbox": [ -0.303321, 51.1778655, -0.303321, 51.1778655 ], "geometry": { "type": "Point", "coordinates": [ -0.303321, 51.1778655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437147" }, "bbox": [ -0.3030244, 51.1781112, -0.3030244, 51.1781112 ], "geometry": { "type": "Point", "coordinates": [ -0.3030244, 51.1781112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437245" }, "bbox": [ -0.3030782, 51.1779339, -0.3030782, 51.1779339 ], "geometry": { "type": "Point", "coordinates": [ -0.3030782, 51.1779339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18437511" }, "bbox": [ -0.3038178, 51.17433, -0.3038178, 51.17433 ], "geometry": { "type": "Point", "coordinates": [ -0.3038178, 51.17433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18436145" }, "bbox": [ -0.3051188, 51.1779222, -0.3051188, 51.1779222 ], "geometry": { "type": "Point", "coordinates": [ -0.3051188, 51.1779222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18436018" }, "bbox": [ -0.3047991, 51.1755747, -0.3047991, 51.1755747 ], "geometry": { "type": "Point", "coordinates": [ -0.3047991, 51.1755747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511819" }, "bbox": [ -0.651862, 51.2519564, -0.651862, 51.2519564 ], "geometry": { "type": "Point", "coordinates": [ -0.651862, 51.2519564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511854" }, "bbox": [ -0.6518237, 51.2555256, -0.6518237, 51.2555256 ], "geometry": { "type": "Point", "coordinates": [ -0.6518237, 51.2555256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511139" }, "bbox": [ -0.6528497, 51.2538857, -0.6528497, 51.2538857 ], "geometry": { "type": "Point", "coordinates": [ -0.6528497, 51.2538857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511132" }, "bbox": [ -0.6529685, 51.2532485, -0.6529685, 51.2532485 ], "geometry": { "type": "Point", "coordinates": [ -0.6529685, 51.2532485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94510953" }, "bbox": [ -0.6530485, 51.2551937, -0.6530485, 51.2551937 ], "geometry": { "type": "Point", "coordinates": [ -0.6530485, 51.2551937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94511534" }, "bbox": [ -0.6511752, 51.2532197, -0.6511752, 51.2532197 ], "geometry": { "type": "Point", "coordinates": [ -0.6511752, 51.2532197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94510431" }, "bbox": [ -0.6538901, 51.2532677, -0.6538901, 51.2532677 ], "geometry": { "type": "Point", "coordinates": [ -0.6538901, 51.2532677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94512438" }, "bbox": [ -0.6510385, 51.2538632, -0.6510385, 51.2538632 ], "geometry": { "type": "Point", "coordinates": [ -0.6510385, 51.2538632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93518943" }, "bbox": [ -0.6558376, 51.2542157, -0.6558376, 51.2542157 ], "geometry": { "type": "Point", "coordinates": [ -0.6558376, 51.2542157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09348679" }, "bbox": [ -0.4322716, 51.101906, -0.4322716, 51.101906 ], "geometry": { "type": "Point", "coordinates": [ -0.4322716, 51.101906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19476195" }, "bbox": [ -0.2886977, 51.218214, -0.2886977, 51.218214 ], "geometry": { "type": "Point", "coordinates": [ -0.2886977, 51.218214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19470504" }, "bbox": [ -0.297262, 51.2102038, -0.297262, 51.2102038 ], "geometry": { "type": "Point", "coordinates": [ -0.297262, 51.2102038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19461772" }, "bbox": [ -0.2964695, 51.2075786, -0.2964695, 51.2075786 ], "geometry": { "type": "Point", "coordinates": [ -0.2964695, 51.2075786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510612" }, "bbox": [ -0.3958538, 51.2483807, -0.3958538, 51.2483807 ], "geometry": { "type": "Point", "coordinates": [ -0.3958538, 51.2483807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510129" }, "bbox": [ -0.3963958, 51.2498221, -0.3963958, 51.2498221 ], "geometry": { "type": "Point", "coordinates": [ -0.3963958, 51.2498221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510212" }, "bbox": [ -0.3964874, 51.2478459, -0.3964874, 51.2478459 ], "geometry": { "type": "Point", "coordinates": [ -0.3964874, 51.2478459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12512702" }, "bbox": [ -0.3926887, 51.2471932, -0.3926887, 51.2471932 ], "geometry": { "type": "Point", "coordinates": [ -0.3926887, 51.2471932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12512908" }, "bbox": [ -0.392649, 51.2477808, -0.392649, 51.2477808 ], "geometry": { "type": "Point", "coordinates": [ -0.392649, 51.2477808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510024" }, "bbox": [ -0.396627, 51.2493476, -0.396627, 51.2493476 ], "geometry": { "type": "Point", "coordinates": [ -0.396627, 51.2493476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10365173" }, "bbox": [ -0.4222871, 51.1191284, -0.4222871, 51.1191284 ], "geometry": { "type": "Point", "coordinates": [ -0.4222871, 51.1191284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11519722" }, "bbox": [ -0.3969935, 51.24917, -0.3969935, 51.24917 ], "geometry": { "type": "Point", "coordinates": [ -0.3969935, 51.24917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12501799" }, "bbox": [ -0.3944256, 51.2468009, -0.3944256, 51.2468009 ], "geometry": { "type": "Point", "coordinates": [ -0.3944256, 51.2468009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11519601" }, "bbox": [ -0.3972969, 51.2471968, -0.3972969, 51.2471968 ], "geometry": { "type": "Point", "coordinates": [ -0.3972969, 51.2471968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34441859" }, "bbox": [ -0.0814665, 51.1847192, -0.0814665, 51.1847192 ], "geometry": { "type": "Point", "coordinates": [ -0.0814665, 51.1847192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23419984" }, "bbox": [ -0.2280761, 51.162448, -0.2280761, 51.162448 ], "geometry": { "type": "Point", "coordinates": [ -0.2280761, 51.162448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24415390" }, "bbox": [ -0.2203753, 51.1629096, -0.2203753, 51.1629096 ], "geometry": { "type": "Point", "coordinates": [ -0.2203753, 51.1629096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24416164" }, "bbox": [ -0.2192743, 51.1605354, -0.2192743, 51.1605354 ], "geometry": { "type": "Point", "coordinates": [ -0.2192743, 51.1605354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24414955" }, "bbox": [ -0.2212562, 51.1596591, -0.2212562, 51.1596591 ], "geometry": { "type": "Point", "coordinates": [ -0.2212562, 51.1596591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24412962" }, "bbox": [ -0.2233685, 51.1603014, -0.2233685, 51.1603014 ], "geometry": { "type": "Point", "coordinates": [ -0.2233685, 51.1603014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27548341" }, "bbox": [ -0.1686286, 51.2745663, -0.1686286, 51.2745663 ], "geometry": { "type": "Point", "coordinates": [ -0.1686286, 51.2745663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28447395" }, "bbox": [ -0.1592911, 51.1891222, -0.1592911, 51.1891222 ], "geometry": { "type": "Point", "coordinates": [ -0.1592911, 51.1891222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448865" }, "bbox": [ -0.1572582, 51.1866454, -0.1572582, 51.1866454 ], "geometry": { "type": "Point", "coordinates": [ -0.1572582, 51.1866454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448487" }, "bbox": [ -0.1578145, 51.1886746, -0.1578145, 51.1886746 ], "geometry": { "type": "Point", "coordinates": [ -0.1578145, 51.1886746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19497070" }, "bbox": [ -0.2868703, 51.2339707, -0.2868703, 51.2339707 ], "geometry": { "type": "Point", "coordinates": [ -0.2868703, 51.2339707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94551812" }, "bbox": [ -0.6499556, 51.2874591, -0.6499556, 51.2874591 ], "geometry": { "type": "Point", "coordinates": [ -0.6499556, 51.2874591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04334645" }, "bbox": [ -0.5099429, 51.0908784, -0.5099429, 51.0908784 ], "geometry": { "type": "Point", "coordinates": [ -0.5099429, 51.0908784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03366820" }, "bbox": [ -0.5200301, 51.1157988, -0.5200301, 51.1157988 ], "geometry": { "type": "Point", "coordinates": [ -0.5200301, 51.1157988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02323285" }, "bbox": [ -0.5403738, 51.0859951, -0.5403738, 51.0859951 ], "geometry": { "type": "Point", "coordinates": [ -0.5403738, 51.0859951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02320764" }, "bbox": [ -0.5438514, 51.0839783, -0.5438514, 51.0839783 ], "geometry": { "type": "Point", "coordinates": [ -0.5438514, 51.0839783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10380755" }, "bbox": [ -0.4275321, 51.1356757, -0.4275321, 51.1356757 ], "geometry": { "type": "Point", "coordinates": [ -0.4275321, 51.1356757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10380634" }, "bbox": [ -0.4283094, 51.1339062, -0.4283094, 51.1339062 ], "geometry": { "type": "Point", "coordinates": [ -0.4283094, 51.1339062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25429149" }, "bbox": [ -0.2004598, 51.1678583, -0.2004598, 51.1678583 ], "geometry": { "type": "Point", "coordinates": [ -0.2004598, 51.1678583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25429737" }, "bbox": [ -0.1994525, 51.1667197, -0.1994525, 51.1667197 ], "geometry": { "type": "Point", "coordinates": [ -0.1994525, 51.1667197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26421455" }, "bbox": [ -0.1970847, 51.1684105, -0.1970847, 51.1684105 ], "geometry": { "type": "Point", "coordinates": [ -0.1970847, 51.1684105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25436410" }, "bbox": [ -0.2046315, 51.1730811, -0.2046315, 51.1730811 ], "geometry": { "type": "Point", "coordinates": [ -0.2046315, 51.1730811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26421236" }, "bbox": [ -0.1974675, 51.1665522, -0.1974675, 51.1665522 ], "geometry": { "type": "Point", "coordinates": [ -0.1974675, 51.1665522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15448125" }, "bbox": [ -0.344478, 51.1858212, -0.344478, 51.1858212 ], "geometry": { "type": "Point", "coordinates": [ -0.344478, 51.1858212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03355290" }, "bbox": [ -0.5227884, 51.113055, -0.5227884, 51.113055 ], "geometry": { "type": "Point", "coordinates": [ -0.5227884, 51.113055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01359735" }, "bbox": [ -0.5448423, 51.1083455, -0.5448423, 51.1083455 ], "geometry": { "type": "Point", "coordinates": [ -0.5448423, 51.1083455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01359426" }, "bbox": [ -0.5451352, 51.1074742, -0.5451352, 51.1074742 ], "geometry": { "type": "Point", "coordinates": [ -0.5451352, 51.1074742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06468886" }, "bbox": [ -0.4711429, 51.2109724, -0.4711429, 51.2109724 ], "geometry": { "type": "Point", "coordinates": [ -0.4711429, 51.2109724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09351217" }, "bbox": [ -0.4426409, 51.1055979, -0.4426409, 51.1055979 ], "geometry": { "type": "Point", "coordinates": [ -0.4426409, 51.1055979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08354709" }, "bbox": [ -0.4521189, 51.1048227, -0.4521189, 51.1048227 ], "geometry": { "type": "Point", "coordinates": [ -0.4521189, 51.1048227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09343395" }, "bbox": [ -0.439808, 51.1034717, -0.439808, 51.1034717 ], "geometry": { "type": "Point", "coordinates": [ -0.439808, 51.1034717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22459060" }, "bbox": [ -0.2423261, 51.1964571, -0.2423261, 51.1964571 ], "geometry": { "type": "Point", "coordinates": [ -0.2423261, 51.1964571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22459659" }, "bbox": [ -0.2415129, 51.1961188, -0.2415129, 51.1961188 ], "geometry": { "type": "Point", "coordinates": [ -0.2415129, 51.1961188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23453176" }, "bbox": [ -0.2366108, 51.1978224, -0.2366108, 51.1978224 ], "geometry": { "type": "Point", "coordinates": [ -0.2366108, 51.1978224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21394850" }, "bbox": [ -0.2647417, 51.1419321, -0.2647417, 51.1419321 ], "geometry": { "type": "Point", "coordinates": [ -0.2647417, 51.1419321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21394534" }, "bbox": [ -0.2648931, 51.1403421, -0.2648931, 51.1403421 ], "geometry": { "type": "Point", "coordinates": [ -0.2648931, 51.1403421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03358313" }, "bbox": [ -0.5178213, 51.1062153, -0.5178213, 51.1062153 ], "geometry": { "type": "Point", "coordinates": [ -0.5178213, 51.1062153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25417898" }, "bbox": [ -0.2024944, 51.1632339, -0.2024944, 51.1632339 ], "geometry": { "type": "Point", "coordinates": [ -0.2024944, 51.1632339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25429819" }, "bbox": [ -0.1995394, 51.1651348, -0.1995394, 51.1651348 ], "geometry": { "type": "Point", "coordinates": [ -0.1995394, 51.1651348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97352652" }, "bbox": [ -0.6127414, 51.1105877, -0.6127414, 51.1105877 ], "geometry": { "type": "Point", "coordinates": [ -0.6127414, 51.1105877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22415387" }, "bbox": [ -0.248963, 51.1629793, -0.248963, 51.1629793 ], "geometry": { "type": "Point", "coordinates": [ -0.248963, 51.1629793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22423609" }, "bbox": [ -0.2515999, 51.1648215, -0.2515999, 51.1648215 ], "geometry": { "type": "Point", "coordinates": [ -0.2515999, 51.1648215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05368060" }, "bbox": [ -0.4896049, 51.1195567, -0.4896049, 51.1195567 ], "geometry": { "type": "Point", "coordinates": [ -0.4896049, 51.1195567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05365558" }, "bbox": [ -0.4934163, 51.118729, -0.4934163, 51.118729 ], "geometry": { "type": "Point", "coordinates": [ -0.4934163, 51.118729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479704" }, "bbox": [ -0.0405995, 51.2061738, -0.0405995, 51.2061738 ], "geometry": { "type": "Point", "coordinates": [ -0.0405995, 51.2061738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368466" }, "bbox": [ -0.6891783, 51.1219441, -0.6891783, 51.1219441 ], "geometry": { "type": "Point", "coordinates": [ -0.6891783, 51.1219441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18394687" }, "bbox": [ -0.3079211, 51.1458983, -0.3079211, 51.1458983 ], "geometry": { "type": "Point", "coordinates": [ -0.3079211, 51.1458983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18397278" }, "bbox": [ -0.3040318, 51.1448989, -0.3040318, 51.1448989 ], "geometry": { "type": "Point", "coordinates": [ -0.3040318, 51.1448989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18398794" }, "bbox": [ -0.3017847, 51.1465402, -0.3017847, 51.1465402 ], "geometry": { "type": "Point", "coordinates": [ -0.3017847, 51.1465402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27454206" }, "bbox": [ -0.1779012, 51.1906375, -0.1779012, 51.1906375 ], "geometry": { "type": "Point", "coordinates": [ -0.1779012, 51.1906375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08382574" }, "bbox": [ -0.4541597, 51.1377298, -0.4541597, 51.1377298 ], "geometry": { "type": "Point", "coordinates": [ -0.4541597, 51.1377298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07388367" }, "bbox": [ -0.4600464, 51.1371842, -0.4600464, 51.1371842 ], "geometry": { "type": "Point", "coordinates": [ -0.4600464, 51.1371842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24434165" }, "bbox": [ -0.2215403, 51.178638, -0.2215403, 51.178638 ], "geometry": { "type": "Point", "coordinates": [ -0.2215403, 51.178638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25432664" }, "bbox": [ -0.2092128, 51.1782243, -0.2092128, 51.1782243 ], "geometry": { "type": "Point", "coordinates": [ -0.2092128, 51.1782243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30451376" }, "bbox": [ -0.1389323, 51.1963103, -0.1389323, 51.1963103 ], "geometry": { "type": "Point", "coordinates": [ -0.1389323, 51.1963103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05384324" }, "bbox": [ -0.4943426, 51.1338169, -0.4943426, 51.1338169 ], "geometry": { "type": "Point", "coordinates": [ -0.4943426, 51.1338169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05383520" }, "bbox": [ -0.4956516, 51.1334367, -0.4956516, 51.1334367 ], "geometry": { "type": "Point", "coordinates": [ -0.4956516, 51.1334367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00405901" }, "bbox": [ -0.5636577, 51.150437, -0.5636577, 51.150437 ], "geometry": { "type": "Point", "coordinates": [ -0.5636577, 51.150437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01471155" }, "bbox": [ -0.5539542, 51.2181174, -0.5539542, 51.2181174 ], "geometry": { "type": "Point", "coordinates": [ -0.5539542, 51.2181174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04378240" }, "bbox": [ -0.5031349, 51.126638, -0.5031349, 51.126638 ], "geometry": { "type": "Point", "coordinates": [ -0.5031349, 51.126638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01473026" }, "bbox": [ -0.5510126, 51.2156454, -0.5510126, 51.2156454 ], "geometry": { "type": "Point", "coordinates": [ -0.5510126, 51.2156454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03378259" }, "bbox": [ -0.5176023, 51.1282176, -0.5176023, 51.1282176 ], "geometry": { "type": "Point", "coordinates": [ -0.5176023, 51.1282176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05462993" }, "bbox": [ -0.4943071, 51.2112303, -0.4943071, 51.2112303 ], "geometry": { "type": "Point", "coordinates": [ -0.4943071, 51.2112303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18404958" }, "bbox": [ -0.3070378, 51.1522326, -0.3070378, 51.1522326 ], "geometry": { "type": "Point", "coordinates": [ -0.3070378, 51.1522326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01393801" }, "bbox": [ -0.5520533, 51.1413846, -0.5520533, 51.1413846 ], "geometry": { "type": "Point", "coordinates": [ -0.5520533, 51.1413846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02381180" }, "bbox": [ -0.5417541, 51.139447, -0.5417541, 51.139447 ], "geometry": { "type": "Point", "coordinates": [ -0.5417541, 51.139447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01399383" }, "bbox": [ -0.5427987, 51.1493163, -0.5427987, 51.1493163 ], "geometry": { "type": "Point", "coordinates": [ -0.5427987, 51.1493163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01398040" }, "bbox": [ -0.5457881, 51.1443627, -0.5457881, 51.1443627 ], "geometry": { "type": "Point", "coordinates": [ -0.5457881, 51.1443627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18373992" }, "bbox": [ -0.3096234, 51.1282446, -0.3096234, 51.1282446 ], "geometry": { "type": "Point", "coordinates": [ -0.3096234, 51.1282446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18373892" }, "bbox": [ -0.309613, 51.128369, -0.309613, 51.128369 ], "geometry": { "type": "Point", "coordinates": [ -0.309613, 51.128369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18372585" }, "bbox": [ -0.3113952, 51.1277873, -0.3113952, 51.1277873 ], "geometry": { "type": "Point", "coordinates": [ -0.3113952, 51.1277873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18371884" }, "bbox": [ -0.3123621, 51.1277098, -0.3123621, 51.1277098 ], "geometry": { "type": "Point", "coordinates": [ -0.3123621, 51.1277098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18372897" }, "bbox": [ -0.3110067, 51.1286452, -0.3110067, 51.1286452 ], "geometry": { "type": "Point", "coordinates": [ -0.3110067, 51.1286452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18383501" }, "bbox": [ -0.310143, 51.1291879, -0.310143, 51.1291879 ], "geometry": { "type": "Point", "coordinates": [ -0.310143, 51.1291879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18385113" }, "bbox": [ -0.3073494, 51.1304027, -0.3073494, 51.1304027 ], "geometry": { "type": "Point", "coordinates": [ -0.3073494, 51.1304027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18382510" }, "bbox": [ -0.3114525, 51.1301184, -0.3114525, 51.1301184 ], "geometry": { "type": "Point", "coordinates": [ -0.3114525, 51.1301184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416528" }, "bbox": [ -0.5189799, 51.1614635, -0.5189799, 51.1614635 ], "geometry": { "type": "Point", "coordinates": [ -0.5189799, 51.1614635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416634" }, "bbox": [ -0.5190498, 51.1619145, -0.5190498, 51.1619145 ], "geometry": { "type": "Point", "coordinates": [ -0.5190498, 51.1619145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03418244" }, "bbox": [ -0.5166116, 51.1628506, -0.5166116, 51.1628506 ], "geometry": { "type": "Point", "coordinates": [ -0.5166116, 51.1628506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408368" }, "bbox": [ -0.259209, 51.1525111, -0.259209, 51.1525111 ], "geometry": { "type": "Point", "coordinates": [ -0.259209, 51.1525111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401589" }, "bbox": [ -0.2549685, 51.154264, -0.2549685, 51.154264 ], "geometry": { "type": "Point", "coordinates": [ -0.2549685, 51.154264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22401469" }, "bbox": [ -0.2549699, 51.152451, -0.2549699, 51.152451 ], "geometry": { "type": "Point", "coordinates": [ -0.2549699, 51.152451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18385914" }, "bbox": [ -0.3067492, 51.1303529, -0.3067492, 51.1303529 ], "geometry": { "type": "Point", "coordinates": [ -0.3067492, 51.1303529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18383808" }, "bbox": [ -0.3098955, 51.1298993, -0.3098955, 51.1298993 ], "geometry": { "type": "Point", "coordinates": [ -0.3098955, 51.1298993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29562156" }, "bbox": [ -0.1482065, 51.2934059, -0.1482065, 51.2934059 ], "geometry": { "type": "Point", "coordinates": [ -0.1482065, 51.2934059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29561557" }, "bbox": [ -0.1491218, 51.2937561, -0.1491218, 51.2937561 ], "geometry": { "type": "Point", "coordinates": [ -0.1491218, 51.2937561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07370502" }, "bbox": [ -0.4717498, 51.1224495, -0.4717498, 51.1224495 ], "geometry": { "type": "Point", "coordinates": [ -0.4717498, 51.1224495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25422956" }, "bbox": [ -0.2090464, 51.1688592, -0.2090464, 51.1688592 ], "geometry": { "type": "Point", "coordinates": [ -0.2090464, 51.1688592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25423016" }, "bbox": [ -0.209475, 51.16511, -0.209475, 51.16511 ], "geometry": { "type": "Point", "coordinates": [ -0.209475, 51.16511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06517830" }, "bbox": [ -0.4713781, 51.2507147, -0.4713781, 51.2507147 ], "geometry": { "type": "Point", "coordinates": [ -0.4713781, 51.2507147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08410609" }, "bbox": [ -0.4569306, 51.158547, -0.4569306, 51.158547 ], "geometry": { "type": "Point", "coordinates": [ -0.4569306, 51.158547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08400294" }, "bbox": [ -0.4560835, 51.1569616, -0.4560835, 51.1569616 ], "geometry": { "type": "Point", "coordinates": [ -0.4560835, 51.1569616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07417631" }, "bbox": [ -0.4604403, 51.1610114, -0.4604403, 51.1610114 ], "geometry": { "type": "Point", "coordinates": [ -0.4604403, 51.1610114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07418852" }, "bbox": [ -0.4584623, 51.1628062, -0.4584623, 51.1628062 ], "geometry": { "type": "Point", "coordinates": [ -0.4584623, 51.1628062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07408693" }, "bbox": [ -0.4590281, 51.1570786, -0.4590281, 51.1570786 ], "geometry": { "type": "Point", "coordinates": [ -0.4590281, 51.1570786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21446618" }, "bbox": [ -0.2608424, 51.1837597, -0.2608424, 51.1837597 ], "geometry": { "type": "Point", "coordinates": [ -0.2608424, 51.1837597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09421245" }, "bbox": [ -0.4404729, 51.1708099, -0.4404729, 51.1708099 ], "geometry": { "type": "Point", "coordinates": [ -0.4404729, 51.1708099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09422818" }, "bbox": [ -0.438394, 51.1684879, -0.438394, 51.1684879 ], "geometry": { "type": "Point", "coordinates": [ -0.438394, 51.1684879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09420633" }, "bbox": [ -0.4414636, 51.1699084, -0.4414636, 51.1699084 ], "geometry": { "type": "Point", "coordinates": [ -0.4414636, 51.1699084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09420326" }, "bbox": [ -0.4419456, 51.1691747, -0.4419456, 51.1691747 ], "geometry": { "type": "Point", "coordinates": [ -0.4419456, 51.1691747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18370096" }, "bbox": [ -0.3149848, 51.1287592, -0.3149848, 51.1287592 ], "geometry": { "type": "Point", "coordinates": [ -0.3149848, 51.1287592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18382763" }, "bbox": [ -0.3107275, 51.1349308, -0.3107275, 51.1349308 ], "geometry": { "type": "Point", "coordinates": [ -0.3107275, 51.1349308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01356991" }, "bbox": [ -0.5490144, 51.1137222, -0.5490144, 51.1137222 ], "geometry": { "type": "Point", "coordinates": [ -0.5490144, 51.1137222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01367229" }, "bbox": [ -0.5478942, 51.1165305, -0.5478942, 51.1165305 ], "geometry": { "type": "Point", "coordinates": [ -0.5478942, 51.1165305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01366643" }, "bbox": [ -0.5488909, 51.1182332, -0.5488909, 51.1182332 ], "geometry": { "type": "Point", "coordinates": [ -0.5488909, 51.1182332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01367444" }, "bbox": [ -0.547738, 51.1182377, -0.547738, 51.1182377 ], "geometry": { "type": "Point", "coordinates": [ -0.547738, 51.1182377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09560262" }, "bbox": [ -0.4374593, 51.2983916, -0.4374593, 51.2983916 ], "geometry": { "type": "Point", "coordinates": [ -0.4374593, 51.2983916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08569186" }, "bbox": [ -0.4391258, 51.300377, -0.4391258, 51.300377 ], "geometry": { "type": "Point", "coordinates": [ -0.4391258, 51.300377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02370934" }, "bbox": [ -0.5422326, 51.1263984, -0.5422326, 51.1263984 ], "geometry": { "type": "Point", "coordinates": [ -0.5422326, 51.1263984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02370989" }, "bbox": [ -0.5424486, 51.1312399, -0.5424486, 51.1312399 ], "geometry": { "type": "Point", "coordinates": [ -0.5424486, 51.1312399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01375331" }, "bbox": [ -0.5504696, 51.1260061, -0.5504696, 51.1260061 ], "geometry": { "type": "Point", "coordinates": [ -0.5504696, 51.1260061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01375559" }, "bbox": [ -0.5496313, 51.128623, -0.5496313, 51.128623 ], "geometry": { "type": "Point", "coordinates": [ -0.5496313, 51.128623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01379321" }, "bbox": [ -0.5454172, 51.125122, -0.5454172, 51.125122 ], "geometry": { "type": "Point", "coordinates": [ -0.5454172, 51.125122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14531951" }, "bbox": [ -0.3646564, 51.2693585, -0.3646564, 51.2693585 ], "geometry": { "type": "Point", "coordinates": [ -0.3646564, 51.2693585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07378151" }, "bbox": [ -0.4607784, 51.1267311, -0.4607784, 51.1267311 ], "geometry": { "type": "Point", "coordinates": [ -0.4607784, 51.1267311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00410633" }, "bbox": [ -0.5704173, 51.1624593, -0.5704173, 51.1624593 ], "geometry": { "type": "Point", "coordinates": [ -0.5704173, 51.1624593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11555168" }, "bbox": [ -0.4017934, 51.2894044, -0.4017934, 51.2894044 ], "geometry": { "type": "Point", "coordinates": [ -0.4017934, 51.2894044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11559043" }, "bbox": [ -0.396806, 51.2869568, -0.396806, 51.2869568 ], "geometry": { "type": "Point", "coordinates": [ -0.396806, 51.2869568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11555432" }, "bbox": [ -0.401152, 51.2859839, -0.401152, 51.2859839 ], "geometry": { "type": "Point", "coordinates": [ -0.401152, 51.2859839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11555682" }, "bbox": [ -0.4017089, 51.2907226, -0.4017089, 51.2907226 ], "geometry": { "type": "Point", "coordinates": [ -0.4017089, 51.2907226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08363106" }, "bbox": [ -0.4538758, 51.1137383, -0.4538758, 51.1137383 ], "geometry": { "type": "Point", "coordinates": [ -0.4538758, 51.1137383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08353227" }, "bbox": [ -0.453595, 51.1079271, -0.453595, 51.1079271 ], "geometry": { "type": "Point", "coordinates": [ -0.453595, 51.1079271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03406126" }, "bbox": [ -0.5198075, 51.1522871, -0.5198075, 51.1522871 ], "geometry": { "type": "Point", "coordinates": [ -0.5198075, 51.1522871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13477008" }, "bbox": [ -0.3736378, 51.2122141, -0.3736378, 51.2122141 ], "geometry": { "type": "Point", "coordinates": [ -0.3736378, 51.2122141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13477701" }, "bbox": [ -0.3724616, 51.2110261, -0.3724616, 51.2110261 ], "geometry": { "type": "Point", "coordinates": [ -0.3724616, 51.2110261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13468192" }, "bbox": [ -0.3720489, 51.2102108, -0.3720489, 51.2102108 ], "geometry": { "type": "Point", "coordinates": [ -0.3720489, 51.2102108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13467298" }, "bbox": [ -0.3731726, 51.2107414, -0.3731726, 51.2107414 ], "geometry": { "type": "Point", "coordinates": [ -0.3731726, 51.2107414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13468585" }, "bbox": [ -0.3714848, 51.2095621, -0.3714848, 51.2095621 ], "geometry": { "type": "Point", "coordinates": [ -0.3714848, 51.2095621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96432196" }, "bbox": [ -0.6246962, 51.1866623, -0.6246962, 51.1866623 ], "geometry": { "type": "Point", "coordinates": [ -0.6246962, 51.1866623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15422155" }, "bbox": [ -0.3533862, 51.1706631, -0.3533862, 51.1706631 ], "geometry": { "type": "Point", "coordinates": [ -0.3533862, 51.1706631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02384851" }, "bbox": [ -0.5361712, 51.1363591, -0.5361712, 51.1363591 ], "geometry": { "type": "Point", "coordinates": [ -0.5361712, 51.1363591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02385063" }, "bbox": [ -0.5361065, 51.1378442, -0.5361065, 51.1378442 ], "geometry": { "type": "Point", "coordinates": [ -0.5361065, 51.1378442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02385573" }, "bbox": [ -0.5355083, 51.1388363, -0.5355083, 51.1388363 ], "geometry": { "type": "Point", "coordinates": [ -0.5355083, 51.1388363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02385692" }, "bbox": [ -0.5352589, 51.1403975, -0.5352589, 51.1403975 ], "geometry": { "type": "Point", "coordinates": [ -0.5352589, 51.1403975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433399" }, "bbox": [ -0.6945889, 51.1879309, -0.6945889, 51.1879309 ], "geometry": { "type": "Point", "coordinates": [ -0.6945889, 51.1879309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01467273" }, "bbox": [ -0.5455563, 51.2106572, -0.5455563, 51.2106572 ], "geometry": { "type": "Point", "coordinates": [ -0.5455563, 51.2106572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00346962" }, "bbox": [ -0.5632329, 51.101994, -0.5632329, 51.101994 ], "geometry": { "type": "Point", "coordinates": [ -0.5632329, 51.101994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523365" }, "bbox": [ -0.3914682, 51.2619997, -0.3914682, 51.2619997 ], "geometry": { "type": "Point", "coordinates": [ -0.3914682, 51.2619997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523359" }, "bbox": [ -0.391501, 51.2614617, -0.391501, 51.2614617 ], "geometry": { "type": "Point", "coordinates": [ -0.391501, 51.2614617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523371" }, "bbox": [ -0.3913876, 51.2625116, -0.3913876, 51.2625116 ], "geometry": { "type": "Point", "coordinates": [ -0.3913876, 51.2625116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523582" }, "bbox": [ -0.3911253, 51.2635406, -0.3911253, 51.2635406 ], "geometry": { "type": "Point", "coordinates": [ -0.3911253, 51.2635406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523476" }, "bbox": [ -0.3912714, 51.2630109, -0.3912714, 51.2630109 ], "geometry": { "type": "Point", "coordinates": [ -0.3912714, 51.2630109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521029" }, "bbox": [ -0.3948307, 51.2587903, -0.3948307, 51.2587903 ], "geometry": { "type": "Point", "coordinates": [ -0.3948307, 51.2587903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12523254" }, "bbox": [ -0.3915442, 51.2610247, -0.3915442, 51.2610247 ], "geometry": { "type": "Point", "coordinates": [ -0.3915442, 51.2610247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464743" }, "bbox": [ -0.4623136, 51.2068856, -0.4623136, 51.2068856 ], "geometry": { "type": "Point", "coordinates": [ -0.4623136, 51.2068856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466153" }, "bbox": [ -0.4606699, 51.2079562, -0.4606699, 51.2079562 ], "geometry": { "type": "Point", "coordinates": [ -0.4606699, 51.2079562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07468570" }, "bbox": [ -0.4573274, 51.2093656, -0.4573274, 51.2093656 ], "geometry": { "type": "Point", "coordinates": [ -0.4573274, 51.2093656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07465845" }, "bbox": [ -0.4616495, 51.207071, -0.4616495, 51.207071 ], "geometry": { "type": "Point", "coordinates": [ -0.4616495, 51.207071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07467974" }, "bbox": [ -0.4581116, 51.2097754, -0.4581116, 51.2097754 ], "geometry": { "type": "Point", "coordinates": [ -0.4581116, 51.2097754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07466541" }, "bbox": [ -0.4604495, 51.2067322, -0.4604495, 51.2067322 ], "geometry": { "type": "Point", "coordinates": [ -0.4604495, 51.2067322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33413434" }, "bbox": [ -0.0944989, 51.1559153, -0.0944989, 51.1559153 ], "geometry": { "type": "Point", "coordinates": [ -0.0944989, 51.1559153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33412448" }, "bbox": [ -0.0962464, 51.1567056, -0.0962464, 51.1567056 ], "geometry": { "type": "Point", "coordinates": [ -0.0962464, 51.1567056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12570527" }, "bbox": [ -0.3940093, 51.3034073, -0.3940093, 51.3034073 ], "geometry": { "type": "Point", "coordinates": [ -0.3940093, 51.3034073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11578213" }, "bbox": [ -0.3974314, 51.3023724, -0.3974314, 51.3023724 ], "geometry": { "type": "Point", "coordinates": [ -0.3974314, 51.3023724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34501038" }, "bbox": [ -0.0802665, 51.2369543, -0.0802665, 51.2369543 ], "geometry": { "type": "Point", "coordinates": [ -0.0802665, 51.2369543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34501658" }, "bbox": [ -0.079709, 51.2391281, -0.079709, 51.2391281 ], "geometry": { "type": "Point", "coordinates": [ -0.079709, 51.2391281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35515421" }, "bbox": [ -0.0593514, 51.243983, -0.0593514, 51.243983 ], "geometry": { "type": "Point", "coordinates": [ -0.0593514, 51.243983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22510864" }, "bbox": [ -0.2520623, 51.2508953, -0.2520623, 51.2508953 ], "geometry": { "type": "Point", "coordinates": [ -0.2520623, 51.2508953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97364550" }, "bbox": [ -0.6089766, 51.1195817, -0.6089766, 51.1195817 ], "geometry": { "type": "Point", "coordinates": [ -0.6089766, 51.1195817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97367161" }, "bbox": [ -0.605487, 51.120453, -0.605487, 51.120453 ], "geometry": { "type": "Point", "coordinates": [ -0.605487, 51.120453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98360273" }, "bbox": [ -0.600948, 51.1214826, -0.600948, 51.1214826 ], "geometry": { "type": "Point", "coordinates": [ -0.600948, 51.1214826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96398330" }, "bbox": [ -0.6171349, 51.1448277, -0.6171349, 51.1448277 ], "geometry": { "type": "Point", "coordinates": [ -0.6171349, 51.1448277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96399538" }, "bbox": [ -0.6150056, 51.145769, -0.6150056, 51.145769 ], "geometry": { "type": "Point", "coordinates": [ -0.6150056, 51.145769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390337" }, "bbox": [ -0.6140223, 51.1453609, -0.6140223, 51.1453609 ], "geometry": { "type": "Point", "coordinates": [ -0.6140223, 51.1453609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390139" }, "bbox": [ -0.6146716, 51.1453833, -0.6146716, 51.1453833 ], "geometry": { "type": "Point", "coordinates": [ -0.6146716, 51.1453833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390327" }, "bbox": [ -0.6141575, 51.1444984, -0.6141575, 51.1444984 ], "geometry": { "type": "Point", "coordinates": [ -0.6141575, 51.1444984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09386327" }, "bbox": [ -0.4344295, 51.1332616, -0.4344295, 51.1332616 ], "geometry": { "type": "Point", "coordinates": [ -0.4344295, 51.1332616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09384219" }, "bbox": [ -0.4374549, 51.1324418, -0.4374549, 51.1324418 ], "geometry": { "type": "Point", "coordinates": [ -0.4374549, 51.1324418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09372333" }, "bbox": [ -0.4413145, 51.1240556, -0.4413145, 51.1240556 ], "geometry": { "type": "Point", "coordinates": [ -0.4413145, 51.1240556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09371684" }, "bbox": [ -0.4415917, 51.1294257, -0.4415917, 51.1294257 ], "geometry": { "type": "Point", "coordinates": [ -0.4415917, 51.1294257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08388506" }, "bbox": [ -0.44582, 51.1314362, -0.44582, 51.1314362 ], "geometry": { "type": "Point", "coordinates": [ -0.44582, 51.1314362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14374365" }, "bbox": [ -0.3661312, 51.1265667, -0.3661312, 51.1265667 ], "geometry": { "type": "Point", "coordinates": [ -0.3661312, 51.1265667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14384010" }, "bbox": [ -0.3665313, 51.1307029, -0.3665313, 51.1307029 ], "geometry": { "type": "Point", "coordinates": [ -0.3665313, 51.1307029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14382627" }, "bbox": [ -0.3684991, 51.1318293, -0.3684991, 51.1318293 ], "geometry": { "type": "Point", "coordinates": [ -0.3684991, 51.1318293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92335963" }, "bbox": [ -0.6792787, 51.0944641, -0.6792787, 51.0944641 ], "geometry": { "type": "Point", "coordinates": [ -0.6792787, 51.0944641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88548015" }, "bbox": [ -0.728265, 51.2794966, -0.728265, 51.2794966 ], "geometry": { "type": "Point", "coordinates": [ -0.728265, 51.2794966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89444370" }, "bbox": [ -0.7215372, 51.1946583, -0.7215372, 51.1946583 ], "geometry": { "type": "Point", "coordinates": [ -0.7215372, 51.1946583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98410699" }, "bbox": [ -0.5989219, 51.1693611, -0.5989219, 51.1693611 ], "geometry": { "type": "Point", "coordinates": [ -0.5989219, 51.1693611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367540" }, "bbox": [ -0.6189334, 51.1187319, -0.6189334, 51.1187319 ], "geometry": { "type": "Point", "coordinates": [ -0.6189334, 51.1187319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96367039" }, "bbox": [ -0.6197803, 51.1186878, -0.6197803, 51.1186878 ], "geometry": { "type": "Point", "coordinates": [ -0.6197803, 51.1186878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389416" }, "bbox": [ -0.6157217, 51.1345522, -0.6157217, 51.1345522 ], "geometry": { "type": "Point", "coordinates": [ -0.6157217, 51.1345522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96389032" }, "bbox": [ -0.6162766, 51.1359506, -0.6162766, 51.1359506 ], "geometry": { "type": "Point", "coordinates": [ -0.6162766, 51.1359506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97380126" }, "bbox": [ -0.6148479, 51.1355161, -0.6148479, 51.1355161 ], "geometry": { "type": "Point", "coordinates": [ -0.6148479, 51.1355161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91343619" }, "bbox": [ -0.6962554, 51.0997329, -0.6962554, 51.0997329 ], "geometry": { "type": "Point", "coordinates": [ -0.6962554, 51.0997329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91344411" }, "bbox": [ -0.6952944, 51.0991249, -0.6952944, 51.0991249 ], "geometry": { "type": "Point", "coordinates": [ -0.6952944, 51.0991249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90330396" }, "bbox": [ -0.7153955, 51.097974, -0.7153955, 51.097974 ], "geometry": { "type": "Point", "coordinates": [ -0.7153955, 51.097974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90341402" }, "bbox": [ -0.7137705, 51.0987878, -0.7137705, 51.0987878 ], "geometry": { "type": "Point", "coordinates": [ -0.7137705, 51.0987878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91331397" }, "bbox": [ -0.6994947, 51.0978271, -0.6994947, 51.0978271 ], "geometry": { "type": "Point", "coordinates": [ -0.6994947, 51.0978271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91331178" }, "bbox": [ -0.7001265, 51.0961301, -0.7001265, 51.0961301 ], "geometry": { "type": "Point", "coordinates": [ -0.7001265, 51.0961301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06347155" }, "bbox": [ -0.4773734, 51.1001776, -0.4773734, 51.1001776 ], "geometry": { "type": "Point", "coordinates": [ -0.4773734, 51.1001776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07354202" }, "bbox": [ -0.4674246, 51.1042164, -0.4674246, 51.1042164 ], "geometry": { "type": "Point", "coordinates": [ -0.4674246, 51.1042164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06350658" }, "bbox": [ -0.4863588, 51.109749, -0.4863588, 51.109749 ], "geometry": { "type": "Point", "coordinates": [ -0.4863588, 51.109749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91341876" }, "bbox": [ -0.6992378, 51.1050612, -0.6992378, 51.1050612 ], "geometry": { "type": "Point", "coordinates": [ -0.6992378, 51.1050612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98418466" }, "bbox": [ -0.5877929, 51.1658728, -0.5877929, 51.1658728 ], "geometry": { "type": "Point", "coordinates": [ -0.5877929, 51.1658728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08475237" }, "bbox": [ -0.4478565, 51.215113, -0.4478565, 51.215113 ], "geometry": { "type": "Point", "coordinates": [ -0.4478565, 51.215113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94516350" }, "bbox": [ -0.6448402, 51.2546615, -0.6448402, 51.2546615 ], "geometry": { "type": "Point", "coordinates": [ -0.6448402, 51.2546615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94507062" }, "bbox": [ -0.6445994, 51.2469439, -0.6445994, 51.2469439 ], "geometry": { "type": "Point", "coordinates": [ -0.6445994, 51.2469439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19569929" }, "bbox": [ -0.280541, 51.2931155, -0.280541, 51.2931155 ], "geometry": { "type": "Point", "coordinates": [ -0.280541, 51.2931155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20560232" }, "bbox": [ -0.2801475, 51.2935392, -0.2801475, 51.2935392 ], "geometry": { "type": "Point", "coordinates": [ -0.2801475, 51.2935392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40474346" }, "bbox": [ 0.0083739, 51.2089375, 0.0083739, 51.2089375 ], "geometry": { "type": "Point", "coordinates": [ 0.0083739, 51.2089375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16393300" }, "bbox": [ -0.3386885, 51.1383291, -0.3386885, 51.1383291 ], "geometry": { "type": "Point", "coordinates": [ -0.3386885, 51.1383291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15376515" }, "bbox": [ -0.3477437, 51.1204906, -0.3477437, 51.1204906 ], "geometry": { "type": "Point", "coordinates": [ -0.3477437, 51.1204906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21462401" }, "bbox": [ -0.2659322, 51.2001788, -0.2659322, 51.2001788 ], "geometry": { "type": "Point", "coordinates": [ -0.2659322, 51.2001788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06340774" }, "bbox": [ -0.4861215, 51.1022323, -0.4861215, 51.1022323 ], "geometry": { "type": "Point", "coordinates": [ -0.4861215, 51.1022323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06340284" }, "bbox": [ -0.4870607, 51.10314, -0.4870607, 51.10314 ], "geometry": { "type": "Point", "coordinates": [ -0.4870607, 51.10314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05345249" }, "bbox": [ -0.4941798, 51.0998947, -0.4941798, 51.0998947 ], "geometry": { "type": "Point", "coordinates": [ -0.4941798, 51.0998947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05348870" }, "bbox": [ -0.4893888, 51.1018839, -0.4893888, 51.1018839 ], "geometry": { "type": "Point", "coordinates": [ -0.4893888, 51.1018839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06351504" }, "bbox": [ -0.485245, 51.1046186, -0.485245, 51.1046186 ], "geometry": { "type": "Point", "coordinates": [ -0.485245, 51.1046186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06350006" }, "bbox": [ -0.4873425, 51.1050882, -0.4873425, 51.1050882 ], "geometry": { "type": "Point", "coordinates": [ -0.4873425, 51.1050882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96455877" }, "bbox": [ -0.6189223, 51.2028927, -0.6189223, 51.2028927 ], "geometry": { "type": "Point", "coordinates": [ -0.6189223, 51.2028927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02441030" }, "bbox": [ -0.540068, 51.1889375, -0.540068, 51.1889375 ], "geometry": { "type": "Point", "coordinates": [ -0.540068, 51.1889375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02433627" }, "bbox": [ -0.5368781, 51.1796664, -0.5368781, 51.1796664 ], "geometry": { "type": "Point", "coordinates": [ -0.5368781, 51.1796664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23496234" }, "bbox": [ -0.2307867, 51.2299542, -0.2307867, 51.2299542 ], "geometry": { "type": "Point", "coordinates": [ -0.2307867, 51.2299542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23494740" }, "bbox": [ -0.2328996, 51.2305762, -0.2328996, 51.2305762 ], "geometry": { "type": "Point", "coordinates": [ -0.2328996, 51.2305762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23495138" }, "bbox": [ -0.232296, 51.2303006, -0.232296, 51.2303006 ], "geometry": { "type": "Point", "coordinates": [ -0.232296, 51.2303006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95479138" }, "bbox": [ -0.6280853, 51.217682, -0.6280853, 51.217682 ], "geometry": { "type": "Point", "coordinates": [ -0.6280853, 51.217682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95476644" }, "bbox": [ -0.6316846, 51.218254, -0.6316846, 51.218254 ], "geometry": { "type": "Point", "coordinates": [ -0.6316846, 51.218254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95478750" }, "bbox": [ -0.6285786, 51.2186732, -0.6285786, 51.2186732 ], "geometry": { "type": "Point", "coordinates": [ -0.6285786, 51.2186732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95479940" }, "bbox": [ -0.6269361, 51.2178771, -0.6269361, 51.2178771 ], "geometry": { "type": "Point", "coordinates": [ -0.6269361, 51.2178771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04372347" }, "bbox": [ -0.5119442, 51.1270195, -0.5119442, 51.1270195 ], "geometry": { "type": "Point", "coordinates": [ -0.5119442, 51.1270195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04371851" }, "bbox": [ -0.512225, 51.1275297, -0.512225, 51.1275297 ], "geometry": { "type": "Point", "coordinates": [ -0.512225, 51.1275297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97380612" }, "bbox": [ -0.6140171, 51.1341158, -0.6140171, 51.1341158 ], "geometry": { "type": "Point", "coordinates": [ -0.6140171, 51.1341158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98485632" }, "bbox": [ -0.5893403, 51.225563, -0.5893403, 51.225563 ], "geometry": { "type": "Point", "coordinates": [ -0.5893403, 51.225563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38543523" }, "bbox": [ -0.0183288, 51.2704869, -0.0183288, 51.2704869 ], "geometry": { "type": "Point", "coordinates": [ -0.0183288, 51.2704869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36531508" }, "bbox": [ -0.0501579, 51.2606859, -0.0501579, 51.2606859 ], "geometry": { "type": "Point", "coordinates": [ -0.0501579, 51.2606859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36532107" }, "bbox": [ -0.0490608, 51.2603994, -0.0490608, 51.2603994 ], "geometry": { "type": "Point", "coordinates": [ -0.0490608, 51.2603994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37534054" }, "bbox": [ -0.0319923, 51.2646415, -0.0319923, 51.2646415 ], "geometry": { "type": "Point", "coordinates": [ -0.0319923, 51.2646415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91351802" }, "bbox": [ -0.6990517, 51.1072156, -0.6990517, 51.1072156 ], "geometry": { "type": "Point", "coordinates": [ -0.6990517, 51.1072156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27454748" }, "bbox": [ -0.1770904, 51.1943059, -0.1770904, 51.1943059 ], "geometry": { "type": "Point", "coordinates": [ -0.1770904, 51.1943059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455748" }, "bbox": [ -0.1747997, 51.1944785, -0.1747997, 51.1944785 ], "geometry": { "type": "Point", "coordinates": [ -0.1747997, 51.1944785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27456446" }, "bbox": [ -0.1746932, 51.1938486, -0.1746932, 51.1938486 ], "geometry": { "type": "Point", "coordinates": [ -0.1746932, 51.1938486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15557801" }, "bbox": [ -0.3410786, 51.2823851, -0.3410786, 51.2823851 ], "geometry": { "type": "Point", "coordinates": [ -0.3410786, 51.2823851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15557502" }, "bbox": [ -0.3416084, 51.2826931, -0.3416084, 51.2826931 ], "geometry": { "type": "Point", "coordinates": [ -0.3416084, 51.2826931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547695" }, "bbox": [ -0.3414291, 51.2820137, -0.3414291, 51.2820137 ], "geometry": { "type": "Point", "coordinates": [ -0.3414291, 51.2820137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549396" }, "bbox": [ -0.3391566, 51.2820024, -0.3391566, 51.2820024 ], "geometry": { "type": "Point", "coordinates": [ -0.3391566, 51.2820024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547494" }, "bbox": [ -0.341709, 51.2818394, -0.341709, 51.2818394 ], "geometry": { "type": "Point", "coordinates": [ -0.341709, 51.2818394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547898" }, "bbox": [ -0.3411487, 51.2821558, -0.3411487, 51.2821558 ], "geometry": { "type": "Point", "coordinates": [ -0.3411487, 51.2821558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548291" }, "bbox": [ -0.3404212, 51.2817828, -0.3404212, 51.2817828 ], "geometry": { "type": "Point", "coordinates": [ -0.3404212, 51.2817828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547396" }, "bbox": [ -0.3420781, 51.2820491, -0.3420781, 51.2820491 ], "geometry": { "type": "Point", "coordinates": [ -0.3420781, 51.2820491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548585" }, "bbox": [ -0.3405349, 51.2811271, -0.3405349, 51.2811271 ], "geometry": { "type": "Point", "coordinates": [ -0.3405349, 51.2811271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15549493" }, "bbox": [ -0.3390256, 51.2816759, -0.3390256, 51.2816759 ], "geometry": { "type": "Point", "coordinates": [ -0.3390256, 51.2816759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01332162" }, "bbox": [ -0.5561561, 51.092643, -0.5561561, 51.092643 ], "geometry": { "type": "Point", "coordinates": [ -0.5561561, 51.092643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92369964" }, "bbox": [ -0.6728675, 51.1214358, -0.6728675, 51.1214358 ], "geometry": { "type": "Point", "coordinates": [ -0.6728675, 51.1214358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92366509" }, "bbox": [ -0.6778164, 51.1166726, -0.6778164, 51.1166726 ], "geometry": { "type": "Point", "coordinates": [ -0.6778164, 51.1166726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09409044" }, "bbox": [ -0.4299669, 51.1526656, -0.4299669, 51.1526656 ], "geometry": { "type": "Point", "coordinates": [ -0.4299669, 51.1526656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09407847" }, "bbox": [ -0.4315817, 51.1531529, -0.4315817, 51.1531529 ], "geometry": { "type": "Point", "coordinates": [ -0.4315817, 51.1531529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96371266" }, "bbox": [ -0.6274539, 51.1302388, -0.6274539, 51.1302388 ], "geometry": { "type": "Point", "coordinates": [ -0.6274539, 51.1302388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96370870" }, "bbox": [ -0.6282035, 51.1305892, -0.6282035, 51.1305892 ], "geometry": { "type": "Point", "coordinates": [ -0.6282035, 51.1305892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95379871" }, "bbox": [ -0.6297226, 51.1306988, -0.6297226, 51.1306988 ], "geometry": { "type": "Point", "coordinates": [ -0.6297226, 51.1306988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477017" }, "bbox": [ -0.3164136, 51.2117262, -0.3164136, 51.2117262 ], "geometry": { "type": "Point", "coordinates": [ -0.3164136, 51.2117262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477320" }, "bbox": [ -0.3158573, 51.211896, -0.3158573, 51.211896 ], "geometry": { "type": "Point", "coordinates": [ -0.3158573, 51.211896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477441" }, "bbox": [ -0.3156277, 51.2137548, -0.3156277, 51.2137548 ], "geometry": { "type": "Point", "coordinates": [ -0.3156277, 51.2137548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94359778" }, "bbox": [ -0.6446287, 51.1135405, -0.6446287, 51.1135405 ], "geometry": { "type": "Point", "coordinates": [ -0.6446287, 51.1135405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20439030" }, "bbox": [ -0.2716129, 51.1761956, -0.2716129, 51.1761956 ], "geometry": { "type": "Point", "coordinates": [ -0.2716129, 51.1761956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20426982" }, "bbox": [ -0.2749045, 51.1718581, -0.2749045, 51.1718581 ], "geometry": { "type": "Point", "coordinates": [ -0.2749045, 51.1718581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10357540" }, "bbox": [ -0.4189769, 51.1068253, -0.4189769, 51.1068253 ], "geometry": { "type": "Point", "coordinates": [ -0.4189769, 51.1068253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14378693" }, "bbox": [ -0.3594389, 51.1291064, -0.3594389, 51.1291064 ], "geometry": { "type": "Point", "coordinates": [ -0.3594389, 51.1291064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438270" }, "bbox": [ -0.5589015, 51.1836186, -0.5589015, 51.1836186 ], "geometry": { "type": "Point", "coordinates": [ -0.5589015, 51.1836186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438481" }, "bbox": [ -0.5585102, 51.1846389, -0.5585102, 51.1846389 ], "geometry": { "type": "Point", "coordinates": [ -0.5585102, 51.1846389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00436873" }, "bbox": [ -0.5608147, 51.1839136, -0.5608147, 51.1839136 ], "geometry": { "type": "Point", "coordinates": [ -0.5608147, 51.1839136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01440822" }, "bbox": [ -0.5549575, 51.1882907, -0.5549575, 51.1882907 ], "geometry": { "type": "Point", "coordinates": [ -0.5549575, 51.1882907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12362761" }, "bbox": [ -0.3971699, 51.1177096, -0.3971699, 51.1177096 ], "geometry": { "type": "Point", "coordinates": [ -0.3971699, 51.1177096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12366651" }, "bbox": [ -0.3916117, 51.116781, -0.3916117, 51.116781 ], "geometry": { "type": "Point", "coordinates": [ -0.3916117, 51.116781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12365450" }, "bbox": [ -0.3937342, 51.1168767, -0.3937342, 51.1168767 ], "geometry": { "type": "Point", "coordinates": [ -0.3937342, 51.1168767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12366754" }, "bbox": [ -0.3916689, 51.1170265, -0.3916689, 51.1170265 ], "geometry": { "type": "Point", "coordinates": [ -0.3916689, 51.1170265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96388507" }, "bbox": [ -0.6170395, 51.133643, -0.6170395, 51.133643 ], "geometry": { "type": "Point", "coordinates": [ -0.6170395, 51.133643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96387007" }, "bbox": [ -0.619057, 51.1338976, -0.619057, 51.1338976 ], "geometry": { "type": "Point", "coordinates": [ -0.619057, 51.1338976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96386015" }, "bbox": [ -0.6206607, 51.1345462, -0.6206607, 51.1345462 ], "geometry": { "type": "Point", "coordinates": [ -0.6206607, 51.1345462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96386003" }, "bbox": [ -0.6207308, 51.1334472, -0.6207308, 51.1334472 ], "geometry": { "type": "Point", "coordinates": [ -0.6207308, 51.1334472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10588154" }, "bbox": [ -0.4114265, 51.3152348, -0.4114265, 51.3152348 ], "geometry": { "type": "Point", "coordinates": [ -0.4114265, 51.3152348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26535138" }, "bbox": [ -0.1879825, 51.2656211, -0.1879825, 51.2656211 ], "geometry": { "type": "Point", "coordinates": [ -0.1879825, 51.2656211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02335634" }, "bbox": [ -0.5369617, 51.0900113, -0.5369617, 51.0900113 ], "geometry": { "type": "Point", "coordinates": [ -0.5369617, 51.0900113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98551601" }, "bbox": [ -0.5935916, 51.285734, -0.5935916, 51.285734 ], "geometry": { "type": "Point", "coordinates": [ -0.5935916, 51.285734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98551305" }, "bbox": [ -0.5939426, 51.2862159, -0.5939426, 51.2862159 ], "geometry": { "type": "Point", "coordinates": [ -0.5939426, 51.2862159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91320739" }, "bbox": [ -0.7012056, 51.0837971, -0.7012056, 51.0837971 ], "geometry": { "type": "Point", "coordinates": [ -0.7012056, 51.0837971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91321329" }, "bbox": [ -0.6997637, 51.0830572, -0.6997637, 51.0830572 ], "geometry": { "type": "Point", "coordinates": [ -0.6997637, 51.0830572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91321010" }, "bbox": [ -0.7009611, 51.0811601, -0.7009611, 51.0811601 ], "geometry": { "type": "Point", "coordinates": [ -0.7009611, 51.0811601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90329430" }, "bbox": [ -0.7030294, 51.0828196, -0.7030294, 51.0828196 ], "geometry": { "type": "Point", "coordinates": [ -0.7030294, 51.0828196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18380101" }, "bbox": [ -0.3146538, 51.1292947, -0.3146538, 51.1292947 ], "geometry": { "type": "Point", "coordinates": [ -0.3146538, 51.1292947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24406180" }, "bbox": [ -0.2197871, 51.1528608, -0.2197871, 51.1528608 ], "geometry": { "type": "Point", "coordinates": [ -0.2197871, 51.1528608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24404956" }, "bbox": [ -0.2214234, 51.1507943, -0.2214234, 51.1507943 ], "geometry": { "type": "Point", "coordinates": [ -0.2214234, 51.1507943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24403342" }, "bbox": [ -0.2237918, 51.1495157, -0.2237918, 51.1495157 ], "geometry": { "type": "Point", "coordinates": [ -0.2237918, 51.1495157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92329145" }, "bbox": [ -0.6755503, 51.0840282, -0.6755503, 51.0840282 ], "geometry": { "type": "Point", "coordinates": [ -0.6755503, 51.0840282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92327943" }, "bbox": [ -0.6761886, 51.0837879, -0.6761886, 51.0837879 ], "geometry": { "type": "Point", "coordinates": [ -0.6761886, 51.0837879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92326541" }, "bbox": [ -0.6780281, 51.0835498, -0.6780281, 51.0835498 ], "geometry": { "type": "Point", "coordinates": [ -0.6780281, 51.0835498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06456701" }, "bbox": [ -0.4748586, 51.1944048, -0.4748586, 51.1944048 ], "geometry": { "type": "Point", "coordinates": [ -0.4748586, 51.1944048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91327025" }, "bbox": [ -0.692212, 51.0822682, -0.692212, 51.0822682 ], "geometry": { "type": "Point", "coordinates": [ -0.692212, 51.0822682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91508289" }, "bbox": [ -0.6856172, 51.2498655, -0.6856172, 51.2498655 ], "geometry": { "type": "Point", "coordinates": [ -0.6856172, 51.2498655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91509685" }, "bbox": [ -0.6843006, 51.2497437, -0.6843006, 51.2497437 ], "geometry": { "type": "Point", "coordinates": [ -0.6843006, 51.2497437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91509191" }, "bbox": [ -0.6844337, 51.2499839, -0.6844337, 51.2499839 ], "geometry": { "type": "Point", "coordinates": [ -0.6844337, 51.2499839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12392841" }, "bbox": [ -0.3962347, 51.1429815, -0.3962347, 51.1429815 ], "geometry": { "type": "Point", "coordinates": [ -0.3962347, 51.1429815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16391619" }, "bbox": [ -0.3411358, 51.1402386, -0.3411358, 51.1402386 ], "geometry": { "type": "Point", "coordinates": [ -0.3411358, 51.1402386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01351336" }, "bbox": [ -0.5568302, 51.1086256, -0.5568302, 51.1086256 ], "geometry": { "type": "Point", "coordinates": [ -0.5568302, 51.1086256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01352217" }, "bbox": [ -0.5565151, 51.106405, -0.5565151, 51.106405 ], "geometry": { "type": "Point", "coordinates": [ -0.5565151, 51.106405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01353508" }, "bbox": [ -0.5532703, 51.1061598, -0.5532703, 51.1061598 ], "geometry": { "type": "Point", "coordinates": [ -0.5532703, 51.1061598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01351505" }, "bbox": [ -0.5563886, 51.1058842, -0.5563886, 51.1058842 ], "geometry": { "type": "Point", "coordinates": [ -0.5563886, 51.1058842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01352622" }, "bbox": [ -0.5550049, 51.107315, -0.5550049, 51.107315 ], "geometry": { "type": "Point", "coordinates": [ -0.5550049, 51.107315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01351551" }, "bbox": [ -0.5564661, 51.1098789, -0.5564661, 51.1098789 ], "geometry": { "type": "Point", "coordinates": [ -0.5564661, 51.1098789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01352106" }, "bbox": [ -0.5555787, 51.1060264, -0.5555787, 51.1060264 ], "geometry": { "type": "Point", "coordinates": [ -0.5555787, 51.1060264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01341191" }, "bbox": [ -0.5571416, 51.1046603, -0.5571416, 51.1046603 ], "geometry": { "type": "Point", "coordinates": [ -0.5571416, 51.1046603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454302" }, "bbox": [ -0.249673, 51.1914571, -0.249673, 51.1914571 ], "geometry": { "type": "Point", "coordinates": [ -0.249673, 51.1914571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96514249" }, "bbox": [ -0.6196902, 51.2544622, -0.6196902, 51.2544622 ], "geometry": { "type": "Point", "coordinates": [ -0.6196902, 51.2544622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95516051" }, "bbox": [ -0.631514, 51.2548022, -0.631514, 51.2548022 ], "geometry": { "type": "Point", "coordinates": [ -0.631514, 51.2548022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95516770" }, "bbox": [ -0.6306507, 51.2565141, -0.6306507, 51.2565141 ], "geometry": { "type": "Point", "coordinates": [ -0.6306507, 51.2565141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14584896" }, "bbox": [ -0.3579597, 51.3183242, -0.3579597, 51.3183242 ], "geometry": { "type": "Point", "coordinates": [ -0.3579597, 51.3183242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580957" }, "bbox": [ -0.3642227, 51.3145499, -0.3642227, 51.3145499 ], "geometry": { "type": "Point", "coordinates": [ -0.3642227, 51.3145499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14580153" }, "bbox": [ -0.3652651, 51.3144966, -0.3652651, 51.3144966 ], "geometry": { "type": "Point", "coordinates": [ -0.3652651, 51.3144966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14581943" }, "bbox": [ -0.3625455, 51.3135539, -0.3625455, 51.3135539 ], "geometry": { "type": "Point", "coordinates": [ -0.3625455, 51.3135539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09530705" }, "bbox": [ -0.437821, 51.2660097, -0.437821, 51.2660097 ], "geometry": { "type": "Point", "coordinates": [ -0.437821, 51.2660097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09531342" }, "bbox": [ -0.4372026, 51.2695159, -0.4372026, 51.2695159 ], "geometry": { "type": "Point", "coordinates": [ -0.4372026, 51.2695159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09531106" }, "bbox": [ -0.4370517, 51.2662196, -0.4370517, 51.2662196 ], "geometry": { "type": "Point", "coordinates": [ -0.4370517, 51.2662196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09530842" }, "bbox": [ -0.4378991, 51.2695021, -0.4378991, 51.2695021 ], "geometry": { "type": "Point", "coordinates": [ -0.4378991, 51.2695021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08531930" }, "bbox": [ -0.451446, 51.2686108, -0.451446, 51.2686108 ], "geometry": { "type": "Point", "coordinates": [ -0.451446, 51.2686108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33435910" }, "bbox": [ -0.0902607, 51.1715534, -0.0902607, 51.1715534 ], "geometry": { "type": "Point", "coordinates": [ -0.0902607, 51.1715534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95517689" }, "bbox": [ -0.6287984, 51.2582597, -0.6287984, 51.2582597 ], "geometry": { "type": "Point", "coordinates": [ -0.6287984, 51.2582597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04567197" }, "bbox": [ -0.4992605, 51.3025152, -0.4992605, 51.3025152 ], "geometry": { "type": "Point", "coordinates": [ -0.4992605, 51.3025152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568564" }, "bbox": [ -0.2823074, 51.2962821, -0.2823074, 51.2962821 ], "geometry": { "type": "Point", "coordinates": [ -0.2823074, 51.2962821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568071" }, "bbox": [ -0.2829507, 51.2967877, -0.2829507, 51.2967877 ], "geometry": { "type": "Point", "coordinates": [ -0.2829507, 51.2967877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19567666" }, "bbox": [ -0.2836629, 51.2964951, -0.2836629, 51.2964951 ], "geometry": { "type": "Point", "coordinates": [ -0.2836629, 51.2964951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01481621" }, "bbox": [ -0.5524382, 51.224226, -0.5524382, 51.224226 ], "geometry": { "type": "Point", "coordinates": [ -0.5524382, 51.224226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00483936" }, "bbox": [ -0.5637479, 51.2256276, -0.5637479, 51.2256276 ], "geometry": { "type": "Point", "coordinates": [ -0.5637479, 51.2256276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07445773" }, "bbox": [ -0.4619631, 51.1917218, -0.4619631, 51.1917218 ], "geometry": { "type": "Point", "coordinates": [ -0.4619631, 51.1917218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08450643" }, "bbox": [ -0.4548264, 51.1979425, -0.4548264, 51.1979425 ], "geometry": { "type": "Point", "coordinates": [ -0.4548264, 51.1979425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07459593" }, "bbox": [ -0.4560875, 51.2023548, -0.4560875, 51.2023548 ], "geometry": { "type": "Point", "coordinates": [ -0.4560875, 51.2023548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21408017" }, "bbox": [ -0.2599887, 51.1479205, -0.2599887, 51.1479205 ], "geometry": { "type": "Point", "coordinates": [ -0.2599887, 51.1479205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04456434" }, "bbox": [ -0.5042643, 51.1976298, -0.5042643, 51.1976298 ], "geometry": { "type": "Point", "coordinates": [ -0.5042643, 51.1976298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04455424" }, "bbox": [ -0.5051075, 51.1968644, -0.5051075, 51.1968644 ], "geometry": { "type": "Point", "coordinates": [ -0.5051075, 51.1968644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04453808" }, "bbox": [ -0.5074344, 51.1954983, -0.5074344, 51.1954983 ], "geometry": { "type": "Point", "coordinates": [ -0.5074344, 51.1954983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04454616" }, "bbox": [ -0.5065022, 51.1962241, -0.5065022, 51.1962241 ], "geometry": { "type": "Point", "coordinates": [ -0.5065022, 51.1962241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04453901" }, "bbox": [ -0.5073274, 51.1947616, -0.5073274, 51.1947616 ], "geometry": { "type": "Point", "coordinates": [ -0.5073274, 51.1947616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04444494" }, "bbox": [ -0.5068045, 51.1942509, -0.5068045, 51.1942509 ], "geometry": { "type": "Point", "coordinates": [ -0.5068045, 51.1942509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02356344" }, "bbox": [ -0.5352706, 51.108951, -0.5352706, 51.108951 ], "geometry": { "type": "Point", "coordinates": [ -0.5352706, 51.108951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04432576" }, "bbox": [ -0.5096871, 51.1836056, -0.5096871, 51.1836056 ], "geometry": { "type": "Point", "coordinates": [ -0.5096871, 51.1836056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09592897" }, "bbox": [ -0.4329428, 51.3283413, -0.4329428, 51.3283413 ], "geometry": { "type": "Point", "coordinates": [ -0.4329428, 51.3283413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594887" }, "bbox": [ -0.4300387, 51.3274267, -0.4300387, 51.3274267 ], "geometry": { "type": "Point", "coordinates": [ -0.4300387, 51.3274267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09597896" }, "bbox": [ -0.4256168, 51.328186, -0.4256168, 51.328186 ], "geometry": { "type": "Point", "coordinates": [ -0.4256168, 51.328186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09593193" }, "bbox": [ -0.4324527, 51.3280164, -0.4324527, 51.3280164 ], "geometry": { "type": "Point", "coordinates": [ -0.4324527, 51.3280164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594990" }, "bbox": [ -0.4290315, 51.3279655, -0.4290315, 51.3279655 ], "geometry": { "type": "Point", "coordinates": [ -0.4290315, 51.3279655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09594294" }, "bbox": [ -0.4306191, 51.3280792, -0.4306191, 51.3280792 ], "geometry": { "type": "Point", "coordinates": [ -0.4306191, 51.3280792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09598192" }, "bbox": [ -0.4255343, 51.327765, -0.4255343, 51.327765 ], "geometry": { "type": "Point", "coordinates": [ -0.4255343, 51.327765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93558183" }, "bbox": [ -0.6556941, 51.2936711, -0.6556941, 51.2936711 ], "geometry": { "type": "Point", "coordinates": [ -0.6556941, 51.2936711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30497866" }, "bbox": [ -0.1281171, 51.2311643, -0.1281171, 51.2311643 ], "geometry": { "type": "Point", "coordinates": [ -0.1281171, 51.2311643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93555076" }, "bbox": [ -0.6603669, 51.2932748, -0.6603669, 51.2932748 ], "geometry": { "type": "Point", "coordinates": [ -0.6603669, 51.2932748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93556568" }, "bbox": [ -0.6584884, 51.2925036, -0.6584884, 51.2925036 ], "geometry": { "type": "Point", "coordinates": [ -0.6584884, 51.2925036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93555690" }, "bbox": [ -0.6595594, 51.2947486, -0.6595594, 51.2947486 ], "geometry": { "type": "Point", "coordinates": [ -0.6595594, 51.2947486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93557387" }, "bbox": [ -0.6571261, 51.2945099, -0.6571261, 51.2945099 ], "geometry": { "type": "Point", "coordinates": [ -0.6571261, 51.2945099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93554194" }, "bbox": [ -0.6615461, 51.294928, -0.6615461, 51.294928 ], "geometry": { "type": "Point", "coordinates": [ -0.6615461, 51.294928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93556085" }, "bbox": [ -0.6587176, 51.2941815, -0.6587176, 51.2941815 ], "geometry": { "type": "Point", "coordinates": [ -0.6587176, 51.2941815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03395437" }, "bbox": [ -0.5211841, 51.1442871, -0.5211841, 51.1442871 ], "geometry": { "type": "Point", "coordinates": [ -0.5211841, 51.1442871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38412782" }, "bbox": [ -0.0241693, 51.1589346, -0.0241693, 51.1589346 ], "geometry": { "type": "Point", "coordinates": [ -0.0241693, 51.1589346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38458827" }, "bbox": [ -0.0138835, 51.189936, -0.0138835, 51.189936 ], "geometry": { "type": "Point", "coordinates": [ -0.0138835, 51.189936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38458281" }, "bbox": [ -0.0143178, 51.1945603, -0.0143178, 51.1945603 ], "geometry": { "type": "Point", "coordinates": [ -0.0143178, 51.1945603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39450226" }, "bbox": [ -0.0120189, 51.1896109, -0.0120189, 51.1896109 ], "geometry": { "type": "Point", "coordinates": [ -0.0120189, 51.1896109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24427243" }, "bbox": [ -0.2175101, 51.1674588, -0.2175101, 51.1674588 ], "geometry": { "type": "Point", "coordinates": [ -0.2175101, 51.1674588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429367" }, "bbox": [ -0.2142037, 51.169617, -0.2142037, 51.169617 ], "geometry": { "type": "Point", "coordinates": [ -0.2142037, 51.169617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24428703" }, "bbox": [ -0.2154625, 51.163946, -0.2154625, 51.163946 ], "geometry": { "type": "Point", "coordinates": [ -0.2154625, 51.163946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24427139" }, "bbox": [ -0.2176153, 51.1672378, -0.2176153, 51.1672378 ], "geometry": { "type": "Point", "coordinates": [ -0.2176153, 51.1672378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24419798" }, "bbox": [ -0.2140632, 51.1633667, -0.2140632, 51.1633667 ], "geometry": { "type": "Point", "coordinates": [ -0.2140632, 51.1633667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91355645" }, "bbox": [ -0.6930681, 51.1110392, -0.6930681, 51.1110392 ], "geometry": { "type": "Point", "coordinates": [ -0.6930681, 51.1110392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91358649" }, "bbox": [ -0.6891886, 51.1113499, -0.6891886, 51.1113499 ], "geometry": { "type": "Point", "coordinates": [ -0.6891886, 51.1113499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99387493" }, "bbox": [ -0.575357, 51.1407926, -0.575357, 51.1407926 ], "geometry": { "type": "Point", "coordinates": [ -0.575357, 51.1407926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15555307" }, "bbox": [ -0.3452382, 51.2836112, -0.3452382, 51.2836112 ], "geometry": { "type": "Point", "coordinates": [ -0.3452382, 51.2836112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546889" }, "bbox": [ -0.3427869, 51.2814015, -0.3427869, 51.2814015 ], "geometry": { "type": "Point", "coordinates": [ -0.3427869, 51.2814015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546991" }, "bbox": [ -0.3424645, 51.2816834, -0.3424645, 51.2816834 ], "geometry": { "type": "Point", "coordinates": [ -0.3424645, 51.2816834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546894" }, "bbox": [ -0.3426803, 51.281965, -0.3426803, 51.281965 ], "geometry": { "type": "Point", "coordinates": [ -0.3426803, 51.281965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546986" }, "bbox": [ -0.3424732, 51.2812066, -0.3424732, 51.2812066 ], "geometry": { "type": "Point", "coordinates": [ -0.3424732, 51.2812066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546790" }, "bbox": [ -0.3429196, 51.281447, -0.3429196, 51.281447 ], "geometry": { "type": "Point", "coordinates": [ -0.3429196, 51.281447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546892" }, "bbox": [ -0.3426227, 51.2817881, -0.3426227, 51.2817881 ], "geometry": { "type": "Point", "coordinates": [ -0.3426227, 51.2817881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89498825" }, "bbox": [ -0.7140318, 51.2354873, -0.7140318, 51.2354873 ], "geometry": { "type": "Point", "coordinates": [ -0.7140318, 51.2354873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22466632" }, "bbox": [ -0.2457577, 51.202916, -0.2457577, 51.202916 ], "geometry": { "type": "Point", "coordinates": [ -0.2457577, 51.202916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465535" }, "bbox": [ -0.2473204, 51.2030702, -0.2473204, 51.2030702 ], "geometry": { "type": "Point", "coordinates": [ -0.2473204, 51.2030702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18446457" }, "bbox": [ -0.3037171, 51.1880435, -0.3037171, 51.1880435 ], "geometry": { "type": "Point", "coordinates": [ -0.3037171, 51.1880435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447860" }, "bbox": [ -0.3018555, 51.1883526, -0.3018555, 51.1883526 ], "geometry": { "type": "Point", "coordinates": [ -0.3018555, 51.1883526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10414592" }, "bbox": [ -0.4212997, 51.1660165, -0.4212997, 51.1660165 ], "geometry": { "type": "Point", "coordinates": [ -0.4212997, 51.1660165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415296" }, "bbox": [ -0.4206398, 51.166207, -0.4206398, 51.166207 ], "geometry": { "type": "Point", "coordinates": [ -0.4206398, 51.166207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415186" }, "bbox": [ -0.4209837, 51.1652981, -0.4209837, 51.1652981 ], "geometry": { "type": "Point", "coordinates": [ -0.4209837, 51.1652981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24436694" }, "bbox": [ -0.2177594, 51.1811718, -0.2177594, 51.1811718 ], "geometry": { "type": "Point", "coordinates": [ -0.2177594, 51.1811718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99452437" }, "bbox": [ -0.5810052, 51.1988662, -0.5810052, 51.1988662 ], "geometry": { "type": "Point", "coordinates": [ -0.5810052, 51.1988662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99453388" }, "bbox": [ -0.5797652, 51.2033388, -0.5797652, 51.2033388 ], "geometry": { "type": "Point", "coordinates": [ -0.5797652, 51.2033388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05358640" }, "bbox": [ -0.489114, 51.1080346, -0.489114, 51.1080346 ], "geometry": { "type": "Point", "coordinates": [ -0.489114, 51.1080346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05358556" }, "bbox": [ -0.4893311, 51.1095946, -0.4893311, 51.1095946 ], "geometry": { "type": "Point", "coordinates": [ -0.4893311, 51.1095946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06343098" }, "bbox": [ -0.4832522, 51.1042311, -0.4832522, 51.1042311 ], "geometry": { "type": "Point", "coordinates": [ -0.4832522, 51.1042311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06343264" }, "bbox": [ -0.4827951, 51.1011115, -0.4827951, 51.1011115 ], "geometry": { "type": "Point", "coordinates": [ -0.4827951, 51.1011115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05354828" }, "bbox": [ -0.494155, 51.1071541, -0.494155, 51.1071541 ], "geometry": { "type": "Point", "coordinates": [ -0.494155, 51.1071541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05355915" }, "bbox": [ -0.4931422, 51.1059245, -0.4931422, 51.1059245 ], "geometry": { "type": "Point", "coordinates": [ -0.4931422, 51.1059245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06340539" }, "bbox": [ -0.4872489, 51.0988777, -0.4872489, 51.0988777 ], "geometry": { "type": "Point", "coordinates": [ -0.4872489, 51.0988777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05344196" }, "bbox": [ -0.4958211, 51.1042771, -0.4958211, 51.1042771 ], "geometry": { "type": "Point", "coordinates": [ -0.4958211, 51.1042771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05343172" }, "bbox": [ -0.4974622, 51.1022486, -0.4974622, 51.1022486 ], "geometry": { "type": "Point", "coordinates": [ -0.4974622, 51.1022486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05346591" }, "bbox": [ -0.4923111, 51.1038028, -0.4923111, 51.1038028 ], "geometry": { "type": "Point", "coordinates": [ -0.4923111, 51.1038028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08541457" }, "bbox": [ -0.45096, 51.2800076, -0.45096, 51.2800076 ], "geometry": { "type": "Point", "coordinates": [ -0.45096, 51.2800076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08544717" }, "bbox": [ -0.4465037, 51.276414, -0.4465037, 51.276414 ], "geometry": { "type": "Point", "coordinates": [ -0.4465037, 51.276414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30409895" }, "bbox": [ -0.128529, 51.1529105, -0.128529, 51.1529105 ], "geometry": { "type": "Point", "coordinates": [ -0.128529, 51.1529105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30419009" }, "bbox": [ -0.1298877, 51.1543848, -0.1298877, 51.1543848 ], "geometry": { "type": "Point", "coordinates": [ -0.1298877, 51.1543848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30419706" }, "bbox": [ -0.1286282, 51.1538476, -0.1286282, 51.1538476 ], "geometry": { "type": "Point", "coordinates": [ -0.1286282, 51.1538476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97522033" }, "bbox": [ -0.6082132, 51.2618763, -0.6082132, 51.2618763 ], "geometry": { "type": "Point", "coordinates": [ -0.6082132, 51.2618763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04455066" }, "bbox": [ -0.5053365, 51.2005694, -0.5053365, 51.2005694 ], "geometry": { "type": "Point", "coordinates": [ -0.5053365, 51.2005694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05488751" }, "bbox": [ -0.4851295, 51.2259825, -0.4851295, 51.2259825 ], "geometry": { "type": "Point", "coordinates": [ -0.4851295, 51.2259825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05484015" }, "bbox": [ -0.4942412, 51.2238971, -0.4942412, 51.2238971 ], "geometry": { "type": "Point", "coordinates": [ -0.4942412, 51.2238971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05475623" }, "bbox": [ -0.4920529, 51.2145983, -0.4920529, 51.2145983 ], "geometry": { "type": "Point", "coordinates": [ -0.4920529, 51.2145983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08368409" }, "bbox": [ -0.4467321, 51.1152111, -0.4467321, 51.1152111 ], "geometry": { "type": "Point", "coordinates": [ -0.4467321, 51.1152111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04390782" }, "bbox": [ -0.5135682, 51.1480468, -0.5135682, 51.1480468 ], "geometry": { "type": "Point", "coordinates": [ -0.5135682, 51.1480468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03395776" }, "bbox": [ -0.5209078, 51.1477095, -0.5209078, 51.1477095 ], "geometry": { "type": "Point", "coordinates": [ -0.5209078, 51.1477095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03409601" }, "bbox": [ -0.5150711, 51.1491452, -0.5150711, 51.1491452 ], "geometry": { "type": "Point", "coordinates": [ -0.5150711, 51.1491452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15540977" }, "bbox": [ -0.3509037, 51.2805851, -0.3509037, 51.2805851 ], "geometry": { "type": "Point", "coordinates": [ -0.3509037, 51.2805851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27469980" }, "bbox": [ -0.1695935, 51.2061327, -0.1695935, 51.2061327 ], "geometry": { "type": "Point", "coordinates": [ -0.1695935, 51.2061327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02333708" }, "bbox": [ -0.5396313, 51.0879772, -0.5396313, 51.0879772 ], "geometry": { "type": "Point", "coordinates": [ -0.5396313, 51.0879772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02331404" }, "bbox": [ -0.5427819, 51.0874389, -0.5427819, 51.0874389 ], "geometry": { "type": "Point", "coordinates": [ -0.5427819, 51.0874389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02331829" }, "bbox": [ -0.5422761, 51.0893957, -0.5422761, 51.0893957 ], "geometry": { "type": "Point", "coordinates": [ -0.5422761, 51.0893957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02321390" }, "bbox": [ -0.5433465, 51.0863869, -0.5433465, 51.0863869 ], "geometry": { "type": "Point", "coordinates": [ -0.5433465, 51.0863869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91365998" }, "bbox": [ -0.6922953, 51.1255891, -0.6922953, 51.1255891 ], "geometry": { "type": "Point", "coordinates": [ -0.6922953, 51.1255891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11377606" }, "bbox": [ -0.4044517, 51.1219696, -0.4044517, 51.1219696 ], "geometry": { "type": "Point", "coordinates": [ -0.4044517, 51.1219696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11378605" }, "bbox": [ -0.4028847, 51.1218427, -0.4028847, 51.1218427 ], "geometry": { "type": "Point", "coordinates": [ -0.4028847, 51.1218427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11377901" }, "bbox": [ -0.4040953, 51.1214438, -0.4040953, 51.1214438 ], "geometry": { "type": "Point", "coordinates": [ -0.4040953, 51.1214438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427358" }, "bbox": [ -0.7036691, 51.1753053, -0.7036691, 51.1753053 ], "geometry": { "type": "Point", "coordinates": [ -0.7036691, 51.1753053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99550503" }, "bbox": [ -0.5813911, 51.2857056, -0.5813911, 51.2857056 ], "geometry": { "type": "Point", "coordinates": [ -0.5813911, 51.2857056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93434351" }, "bbox": [ -0.6645672, 51.1831919, -0.6645672, 51.1831919 ], "geometry": { "type": "Point", "coordinates": [ -0.6645672, 51.1831919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93424699" }, "bbox": [ -0.6644259, 51.1785877, -0.6644259, 51.1785877 ], "geometry": { "type": "Point", "coordinates": [ -0.6644259, 51.1785877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30417288" }, "bbox": [ -0.1316693, 51.1612837, -0.1316693, 51.1612837 ], "geometry": { "type": "Point", "coordinates": [ -0.1316693, 51.1612837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14490145" }, "bbox": [ -0.3682785, 51.2328874, -0.3682785, 51.2328874 ], "geometry": { "type": "Point", "coordinates": [ -0.3682785, 51.2328874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546580" }, "bbox": [ -0.3431988, 51.280619, -0.3431988, 51.280619 ], "geometry": { "type": "Point", "coordinates": [ -0.3431988, 51.280619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547359" }, "bbox": [ -0.3420867, 51.2787527, -0.3420867, 51.2787527 ], "geometry": { "type": "Point", "coordinates": [ -0.3420867, 51.2787527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547074" }, "bbox": [ -0.3424932, 51.2801001, -0.3424932, 51.2801001 ], "geometry": { "type": "Point", "coordinates": [ -0.3424932, 51.2801001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21548560" }, "bbox": [ -0.2544838, 51.2777281, -0.2544838, 51.2777281 ], "geometry": { "type": "Point", "coordinates": [ -0.2544838, 51.2777281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21549226" }, "bbox": [ -0.2539131, 51.2742232, -0.2539131, 51.2742232 ], "geometry": { "type": "Point", "coordinates": [ -0.2539131, 51.2742232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521733" }, "bbox": [ -0.2075441, 51.2566726, -0.2075441, 51.2566726 ], "geometry": { "type": "Point", "coordinates": [ -0.2075441, 51.2566726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529020" }, "bbox": [ -0.2113505, 51.2555333, -0.2113505, 51.2555333 ], "geometry": { "type": "Point", "coordinates": [ -0.2113505, 51.2555333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10506857" }, "bbox": [ -0.4154311, 51.2442344, -0.4154311, 51.2442344 ], "geometry": { "type": "Point", "coordinates": [ -0.4154311, 51.2442344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10508998" }, "bbox": [ -0.4126718, 51.2471492, -0.4126718, 51.2471492 ], "geometry": { "type": "Point", "coordinates": [ -0.4126718, 51.2471492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30396190" }, "bbox": [ -0.133288, 51.1438472, -0.133288, 51.1438472 ], "geometry": { "type": "Point", "coordinates": [ -0.133288, 51.1438472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94367322" }, "bbox": [ -0.6476837, 51.1174999, -0.6476837, 51.1174999 ], "geometry": { "type": "Point", "coordinates": [ -0.6476837, 51.1174999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94368621" }, "bbox": [ -0.6461802, 51.1172433, -0.6461802, 51.1172433 ], "geometry": { "type": "Point", "coordinates": [ -0.6461802, 51.1172433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24424025" }, "bbox": [ -0.2223381, 51.165806, -0.2223381, 51.165806 ], "geometry": { "type": "Point", "coordinates": [ -0.2223381, 51.165806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97355394" }, "bbox": [ -0.6080696, 51.1144128, -0.6080696, 51.1144128 ], "geometry": { "type": "Point", "coordinates": [ -0.6080696, 51.1144128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25577946" }, "bbox": [ -0.1962664, 51.3023357, -0.1962664, 51.3023357 ], "geometry": { "type": "Point", "coordinates": [ -0.1962664, 51.3023357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94458905" }, "bbox": [ -0.6431872, 51.1968127, -0.6431872, 51.1968127 ], "geometry": { "type": "Point", "coordinates": [ -0.6431872, 51.1968127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98352708" }, "bbox": [ -0.5978609, 51.1064746, -0.5978609, 51.1064746 ], "geometry": { "type": "Point", "coordinates": [ -0.5978609, 51.1064746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05362567" }, "bbox": [ -0.4975463, 51.1196304, -0.4975463, 51.1196304 ], "geometry": { "type": "Point", "coordinates": [ -0.4975463, 51.1196304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05362863" }, "bbox": [ -0.4972731, 51.119375, -0.4972731, 51.119375 ], "geometry": { "type": "Point", "coordinates": [ -0.4972731, 51.119375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99477622" }, "bbox": [ -0.5719487, 51.2165804, -0.5719487, 51.2165804 ], "geometry": { "type": "Point", "coordinates": [ -0.5719487, 51.2165804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570365" }, "bbox": [ -0.3797964, 51.3067687, -0.3797964, 51.3067687 ], "geometry": { "type": "Point", "coordinates": [ -0.3797964, 51.3067687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572197" }, "bbox": [ -0.3777656, 51.309459, -0.3777656, 51.309459 ], "geometry": { "type": "Point", "coordinates": [ -0.3777656, 51.309459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570996" }, "bbox": [ -0.3790154, 51.3098814, -0.3790154, 51.3098814 ], "geometry": { "type": "Point", "coordinates": [ -0.3790154, 51.3098814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13570674" }, "bbox": [ -0.3793992, 51.3075642, -0.3793992, 51.3075642 ], "geometry": { "type": "Point", "coordinates": [ -0.3793992, 51.3075642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12578271" }, "bbox": [ -0.3826326, 51.3073671, -0.3826326, 51.3073671 ], "geometry": { "type": "Point", "coordinates": [ -0.3826326, 51.3073671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12578262" }, "bbox": [ -0.3828024, 51.3066106, -0.3828024, 51.3066106 ], "geometry": { "type": "Point", "coordinates": [ -0.3828024, 51.3066106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12578780" }, "bbox": [ -0.3820871, 51.3081585, -0.3820871, 51.3081585 ], "geometry": { "type": "Point", "coordinates": [ -0.3820871, 51.3081585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12579568" }, "bbox": [ -0.3809239, 51.3071123, -0.3809239, 51.3071123 ], "geometry": { "type": "Point", "coordinates": [ -0.3809239, 51.3071123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93430992" }, "bbox": [ -0.6693229, 51.1869093, -0.6693229, 51.1869093 ], "geometry": { "type": "Point", "coordinates": [ -0.6693229, 51.1869093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93441101" }, "bbox": [ -0.6691489, 51.1876889, -0.6691489, 51.1876889 ], "geometry": { "type": "Point", "coordinates": [ -0.6691489, 51.1876889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24465734" }, "bbox": [ -0.2183118, 51.2027196, -0.2183118, 51.2027196 ], "geometry": { "type": "Point", "coordinates": [ -0.2183118, 51.2027196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366336" }, "bbox": [ -0.5636731, 51.117745, -0.5636731, 51.117745 ], "geometry": { "type": "Point", "coordinates": [ -0.5636731, 51.117745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00366392" }, "bbox": [ -0.5634865, 51.1227863, -0.5634865, 51.1227863 ], "geometry": { "type": "Point", "coordinates": [ -0.5634865, 51.1227863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00365971" }, "bbox": [ -0.5641496, 51.1201574, -0.5641496, 51.1201574 ], "geometry": { "type": "Point", "coordinates": [ -0.5641496, 51.1201574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00365581" }, "bbox": [ -0.56424, 51.1218553, -0.56424, 51.1218553 ], "geometry": { "type": "Point", "coordinates": [ -0.56424, 51.1218553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07391484" }, "bbox": [ -0.4699641, 51.1476838, -0.4699641, 51.1476838 ], "geometry": { "type": "Point", "coordinates": [ -0.4699641, 51.1476838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07392567" }, "bbox": [ -0.4680301, 51.1462557, -0.4680301, 51.1462557 ], "geometry": { "type": "Point", "coordinates": [ -0.4680301, 51.1462557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07394178" }, "bbox": [ -0.4657677, 51.1472317, -0.4657677, 51.1472317 ], "geometry": { "type": "Point", "coordinates": [ -0.4657677, 51.1472317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07397092" }, "bbox": [ -0.4576556, 51.1484085, -0.4576556, 51.1484085 ], "geometry": { "type": "Point", "coordinates": [ -0.4576556, 51.1484085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19382158" }, "bbox": [ -0.2973087, 51.1340688, -0.2973087, 51.1340688 ], "geometry": { "type": "Point", "coordinates": [ -0.2973087, 51.1340688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497802" }, "bbox": [ -0.7152363, 51.2333532, -0.7152363, 51.2333532 ], "geometry": { "type": "Point", "coordinates": [ -0.7152363, 51.2333532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00549474" }, "bbox": [ -0.5538895, 51.282881, -0.5538895, 51.282881 ], "geometry": { "type": "Point", "coordinates": [ -0.5538895, 51.282881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00549171" }, "bbox": [ -0.5544958, 51.282367, -0.5544958, 51.282367 ], "geometry": { "type": "Point", "coordinates": [ -0.5544958, 51.282367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00549276" }, "bbox": [ -0.5542631, 51.2831645, -0.5542631, 51.2831645 ], "geometry": { "type": "Point", "coordinates": [ -0.5542631, 51.2831645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01540759" }, "bbox": [ -0.5521662, 51.2814806, -0.5521662, 51.2814806 ], "geometry": { "type": "Point", "coordinates": [ -0.5521662, 51.2814806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07369956" }, "bbox": [ -0.4590958, 51.1177829, -0.4590958, 51.1177829 ], "geometry": { "type": "Point", "coordinates": [ -0.4590958, 51.1177829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06370655" }, "bbox": [ -0.4857378, 51.1273548, -0.4857378, 51.1273548 ], "geometry": { "type": "Point", "coordinates": [ -0.4857378, 51.1273548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07442385" }, "bbox": [ -0.4664787, 51.1928602, -0.4664787, 51.1928602 ], "geometry": { "type": "Point", "coordinates": [ -0.4664787, 51.1928602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10399462" }, "bbox": [ -0.4153713, 51.1451049, -0.4153713, 51.1451049 ], "geometry": { "type": "Point", "coordinates": [ -0.4153713, 51.1451049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25534501" }, "bbox": [ -0.2032204, 51.2625018, -0.2032204, 51.2625018 ], "geometry": { "type": "Point", "coordinates": [ -0.2032204, 51.2625018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25450015" }, "bbox": [ -0.2126274, 51.1918743, -0.2126274, 51.1918743 ], "geometry": { "type": "Point", "coordinates": [ -0.2126274, 51.1918743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24459412" }, "bbox": [ -0.2134255, 51.1916982, -0.2134255, 51.1916982 ], "geometry": { "type": "Point", "coordinates": [ -0.2134255, 51.1916982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24457812" }, "bbox": [ -0.2156904, 51.1917035, -0.2156904, 51.1917035 ], "geometry": { "type": "Point", "coordinates": [ -0.2156904, 51.1917035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95596305" }, "bbox": [ -0.6289085, 51.3224881, -0.6289085, 51.3224881 ], "geometry": { "type": "Point", "coordinates": [ -0.6289085, 51.3224881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02357631" }, "bbox": [ -0.5318238, 51.1083279, -0.5318238, 51.1083279 ], "geometry": { "type": "Point", "coordinates": [ -0.5318238, 51.1083279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02358448" }, "bbox": [ -0.5323025, 51.1094615, -0.5323025, 51.1094615 ], "geometry": { "type": "Point", "coordinates": [ -0.5323025, 51.1094615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03365485" }, "bbox": [ -0.5223094, 51.1214936, -0.5223094, 51.1214936 ], "geometry": { "type": "Point", "coordinates": [ -0.5223094, 51.1214936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03362726" }, "bbox": [ -0.525898, 51.1163771, -0.525898, 51.1163771 ], "geometry": { "type": "Point", "coordinates": [ -0.525898, 51.1163771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361440" }, "bbox": [ -0.6837905, 51.1199771, -0.6837905, 51.1199771 ], "geometry": { "type": "Point", "coordinates": [ -0.6837905, 51.1199771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92361236" }, "bbox": [ -0.6852473, 51.1190064, -0.6852473, 51.1190064 ], "geometry": { "type": "Point", "coordinates": [ -0.6852473, 51.1190064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92335947" }, "bbox": [ -0.6795988, 51.0931827, -0.6795988, 51.0931827 ], "geometry": { "type": "Point", "coordinates": [ -0.6795988, 51.0931827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92337433" }, "bbox": [ -0.6770996, 51.0917847, -0.6770996, 51.0917847 ], "geometry": { "type": "Point", "coordinates": [ -0.6770996, 51.0917847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92345788" }, "bbox": [ -0.6789991, 51.1058178, -0.6789991, 51.1058178 ], "geometry": { "type": "Point", "coordinates": [ -0.6789991, 51.1058178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92346575" }, "bbox": [ -0.6782284, 51.1045482, -0.6782284, 51.1045482 ], "geometry": { "type": "Point", "coordinates": [ -0.6782284, 51.1045482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92344877" }, "bbox": [ -0.6805662, 51.1047586, -0.6805662, 51.1047586 ], "geometry": { "type": "Point", "coordinates": [ -0.6805662, 51.1047586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02435726" }, "bbox": [ -0.5337752, 51.1794419, -0.5337752, 51.1794419 ], "geometry": { "type": "Point", "coordinates": [ -0.5337752, 51.1794419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02435423" }, "bbox": [ -0.5335495, 51.1789774, -0.5335495, 51.1789774 ], "geometry": { "type": "Point", "coordinates": [ -0.5335495, 51.1789774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03420598" }, "bbox": [ -0.527306, 51.1768007, -0.527306, 51.1768007 ], "geometry": { "type": "Point", "coordinates": [ -0.527306, 51.1768007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03422579" }, "bbox": [ -0.5244187, 51.1750629, -0.5244187, 51.1750629 ], "geometry": { "type": "Point", "coordinates": [ -0.5244187, 51.1750629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03425292" }, "bbox": [ -0.5203828, 51.1761907, -0.5203828, 51.1761907 ], "geometry": { "type": "Point", "coordinates": [ -0.5203828, 51.1761907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02436917" }, "bbox": [ -0.532095, 51.1785418, -0.532095, 51.1785418 ], "geometry": { "type": "Point", "coordinates": [ -0.532095, 51.1785418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03424788" }, "bbox": [ -0.5210813, 51.1757921, -0.5210813, 51.1757921 ], "geometry": { "type": "Point", "coordinates": [ -0.5210813, 51.1757921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00353191" }, "bbox": [ -0.5684264, 51.1137514, -0.5684264, 51.1137514 ], "geometry": { "type": "Point", "coordinates": [ -0.5684264, 51.1137514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37468696" }, "bbox": [ -0.0278202, 51.2053443, -0.0278202, 51.2053443 ], "geometry": { "type": "Point", "coordinates": [ -0.0278202, 51.2053443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24411639" }, "bbox": [ -0.2260259, 51.1583677, -0.2260259, 51.1583677 ], "geometry": { "type": "Point", "coordinates": [ -0.2260259, 51.1583677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05466718" }, "bbox": [ -0.4879136, 51.2047564, -0.4879136, 51.2047564 ], "geometry": { "type": "Point", "coordinates": [ -0.4879136, 51.2047564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05468526" }, "bbox": [ -0.4861094, 51.2057878, -0.4861094, 51.2057878 ], "geometry": { "type": "Point", "coordinates": [ -0.4861094, 51.2057878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05462944" }, "bbox": [ -0.493925, 51.2075481, -0.493925, 51.2075481 ], "geometry": { "type": "Point", "coordinates": [ -0.493925, 51.2075481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09409365" }, "bbox": [ -0.429298, 51.1547186, -0.429298, 51.1547186 ], "geometry": { "type": "Point", "coordinates": [ -0.429298, 51.1547186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09408968" }, "bbox": [ -0.4302873, 51.1548159, -0.4302873, 51.1548159 ], "geometry": { "type": "Point", "coordinates": [ -0.4302873, 51.1548159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23492128" }, "bbox": [ -0.2366931, 51.2294761, -0.2366931, 51.2294761 ], "geometry": { "type": "Point", "coordinates": [ -0.2366931, 51.2294761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10362984" }, "bbox": [ -0.4254989, 51.1202641, -0.4254989, 51.1202641 ], "geometry": { "type": "Point", "coordinates": [ -0.4254989, 51.1202641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82475958" }, "bbox": [ -0.8181666, 51.2218007, -0.8181666, 51.2218007 ], "geometry": { "type": "Point", "coordinates": [ -0.8181666, 51.2218007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98417541" }, "bbox": [ -0.5891614, 51.1634413, -0.5891614, 51.1634413 ], "geometry": { "type": "Point", "coordinates": [ -0.5891614, 51.1634413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27557973" }, "bbox": [ -0.1686429, 51.2863528, -0.1686429, 51.2863528 ], "geometry": { "type": "Point", "coordinates": [ -0.1686429, 51.2863528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27559871" }, "bbox": [ -0.1659229, 51.2864876, -0.1659229, 51.2864876 ], "geometry": { "type": "Point", "coordinates": [ -0.1659229, 51.2864876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27557867" }, "bbox": [ -0.1689897, 51.2858692, -0.1689897, 51.2858692 ], "geometry": { "type": "Point", "coordinates": [ -0.1689897, 51.2858692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01338702" }, "bbox": [ -0.5471686, 51.0873628, -0.5471686, 51.0873628 ], "geometry": { "type": "Point", "coordinates": [ -0.5471686, 51.0873628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01322671" }, "bbox": [ -0.5555253, 51.0848562, -0.5555253, 51.0848562 ], "geometry": { "type": "Point", "coordinates": [ -0.5555253, 51.0848562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01323681" }, "bbox": [ -0.5542125, 51.0858455, -0.5542125, 51.0858455 ], "geometry": { "type": "Point", "coordinates": [ -0.5542125, 51.0858455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05385478" }, "bbox": [ -0.492734, 51.1386416, -0.492734, 51.1386416 ], "geometry": { "type": "Point", "coordinates": [ -0.492734, 51.1386416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13483775" }, "bbox": [ -0.3775921, 51.2267543, -0.3775921, 51.2267543 ], "geometry": { "type": "Point", "coordinates": [ -0.3775921, 51.2267543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36560601" }, "bbox": [ -0.0503186, 51.2869152, -0.0503186, 51.2869152 ], "geometry": { "type": "Point", "coordinates": [ -0.0503186, 51.2869152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36572727" }, "bbox": [ -0.0468924, 51.2983529, -0.0468924, 51.2983529 ], "geometry": { "type": "Point", "coordinates": [ -0.0468924, 51.2983529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36571273" }, "bbox": [ -0.0479901, 51.3024971, -0.0479901, 51.3024971 ], "geometry": { "type": "Point", "coordinates": [ -0.0479901, 51.3024971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36574740" }, "bbox": [ -0.044029, 51.2994547, -0.044029, 51.2994547 ], "geometry": { "type": "Point", "coordinates": [ -0.044029, 51.2994547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36551189" }, "bbox": [ -0.0494228, 51.2859537, -0.0494228, 51.2859537 ], "geometry": { "type": "Point", "coordinates": [ -0.0494228, 51.2859537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36550783" }, "bbox": [ -0.0502591, 51.285355, -0.0502591, 51.285355 ], "geometry": { "type": "Point", "coordinates": [ -0.0502591, 51.285355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484283" }, "bbox": [ -0.2196124, 51.2251223, -0.2196124, 51.2251223 ], "geometry": { "type": "Point", "coordinates": [ -0.2196124, 51.2251223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484187" }, "bbox": [ -0.2200826, 51.2253034, -0.2200826, 51.2253034 ], "geometry": { "type": "Point", "coordinates": [ -0.2200826, 51.2253034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24483684" }, "bbox": [ -0.2204564, 51.2252446, -0.2204564, 51.2252446 ], "geometry": { "type": "Point", "coordinates": [ -0.2204564, 51.2252446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484281" }, "bbox": [ -0.2193758, 51.2249275, -0.2193758, 51.2249275 ], "geometry": { "type": "Point", "coordinates": [ -0.2193758, 51.2249275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24484979" }, "bbox": [ -0.218535, 51.2248251, -0.218535, 51.2248251 ], "geometry": { "type": "Point", "coordinates": [ -0.218535, 51.2248251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39576843" }, "bbox": [ 0.0022386, 51.2989383, 0.0022386, 51.2989383 ], "geometry": { "type": "Point", "coordinates": [ 0.0022386, 51.2989383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22485270" }, "bbox": [ -0.2469703, 51.2244432, -0.2469703, 51.2244432 ], "geometry": { "type": "Point", "coordinates": [ -0.2469703, 51.2244432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39565858" }, "bbox": [ 0.000098, 51.2911953, 0.000098, 51.2911953 ], "geometry": { "type": "Point", "coordinates": [ 0.000098, 51.2911953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39565761" }, "bbox": [ 0.0004262, 51.2916237, 0.0004262, 51.2916237 ], "geometry": { "type": "Point", "coordinates": [ 0.0004262, 51.2916237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39569727" }, "bbox": [ 0.0060616, 51.2883789, 0.0060616, 51.2883789 ], "geometry": { "type": "Point", "coordinates": [ 0.0060616, 51.2883789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98472582" }, "bbox": [ -0.5945804, 51.2211621, -0.5945804, 51.2211621 ], "geometry": { "type": "Point", "coordinates": [ -0.5945804, 51.2211621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21508914" }, "bbox": [ -0.2553918, 51.2374468, -0.2553918, 51.2374468 ], "geometry": { "type": "Point", "coordinates": [ -0.2553918, 51.2374468 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22461825" }, "bbox": [ -0.2523468, 51.2022989, -0.2523468, 51.2022989 ], "geometry": { "type": "Point", "coordinates": [ -0.2523468, 51.2022989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22462332" }, "bbox": [ -0.25146, 51.2031347, -0.25146, 51.2031347 ], "geometry": { "type": "Point", "coordinates": [ -0.25146, 51.2031347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22394677" }, "bbox": [ -0.2508251, 51.1440616, -0.2508251, 51.1440616 ], "geometry": { "type": "Point", "coordinates": [ -0.2508251, 51.1440616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33412628" }, "bbox": [ -0.0960743, 51.1551115, -0.0960743, 51.1551115 ], "geometry": { "type": "Point", "coordinates": [ -0.0960743, 51.1551115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33424428" }, "bbox": [ -0.0932496, 51.1639728, -0.0932496, 51.1639728 ], "geometry": { "type": "Point", "coordinates": [ -0.0932496, 51.1639728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97559713" }, "bbox": [ -0.5963549, 51.2869878, -0.5963549, 51.2869878 ], "geometry": { "type": "Point", "coordinates": [ -0.5963549, 51.2869878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98550317" }, "bbox": [ -0.5955386, 51.2873318, -0.5955386, 51.2873318 ], "geometry": { "type": "Point", "coordinates": [ -0.5955386, 51.2873318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93360648" }, "bbox": [ -0.6718209, 51.1200343, -0.6718209, 51.1200343 ], "geometry": { "type": "Point", "coordinates": [ -0.6718209, 51.1200343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93362164" }, "bbox": [ -0.6696301, 51.1214893, -0.6696301, 51.1214893 ], "geometry": { "type": "Point", "coordinates": [ -0.6696301, 51.1214893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18400294" }, "bbox": [ -0.3137289, 51.1556743, -0.3137289, 51.1556743 ], "geometry": { "type": "Point", "coordinates": [ -0.3137289, 51.1556743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18411462" }, "bbox": [ -0.312447, 51.161324, -0.312447, 51.161324 ], "geometry": { "type": "Point", "coordinates": [ -0.312447, 51.161324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18411058" }, "bbox": [ -0.3124373, 51.1612685, -0.3124373, 51.1612685 ], "geometry": { "type": "Point", "coordinates": [ -0.3124373, 51.1612685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18412261" }, "bbox": [ -0.310709, 51.1615484, -0.310709, 51.1615484 ], "geometry": { "type": "Point", "coordinates": [ -0.310709, 51.1615484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99386101" }, "bbox": [ -0.5779552, 51.1323389, -0.5779552, 51.1323389 ], "geometry": { "type": "Point", "coordinates": [ -0.5779552, 51.1323389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99374193" }, "bbox": [ -0.5805591, 51.1319471, -0.5805591, 51.1319471 ], "geometry": { "type": "Point", "coordinates": [ -0.5805591, 51.1319471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99372795" }, "bbox": [ -0.5825138, 51.1321076, -0.5825138, 51.1321076 ], "geometry": { "type": "Point", "coordinates": [ -0.5825138, 51.1321076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39437998" }, "bbox": [ -0.0013909, 51.177901, -0.0013909, 51.177901 ], "geometry": { "type": "Point", "coordinates": [ -0.0013909, 51.177901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39447931" }, "bbox": [ -0.0014628, 51.1809471, -0.0014628, 51.1809471 ], "geometry": { "type": "Point", "coordinates": [ -0.0014628, 51.1809471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39447518" }, "bbox": [ -0.0019318, 51.1798461, -0.0019318, 51.1798461 ], "geometry": { "type": "Point", "coordinates": [ -0.0019318, 51.1798461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13370713" }, "bbox": [ -0.3857278, 51.1223479, -0.3857278, 51.1223479 ], "geometry": { "type": "Point", "coordinates": [ -0.3857278, 51.1223479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24471747" }, "bbox": [ -0.2235632, 51.2129619, -0.2235632, 51.2129619 ], "geometry": { "type": "Point", "coordinates": [ -0.2235632, 51.2129619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24475706" }, "bbox": [ -0.2182596, 51.2091996, -0.2182596, 51.2091996 ], "geometry": { "type": "Point", "coordinates": [ -0.2182596, 51.2091996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01414923" }, "bbox": [ -0.5499793, 51.1610833, -0.5499793, 51.1610833 ], "geometry": { "type": "Point", "coordinates": [ -0.5499793, 51.1610833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01410832" }, "bbox": [ -0.5557355, 51.1622327, -0.5557355, 51.1622327 ], "geometry": { "type": "Point", "coordinates": [ -0.5557355, 51.1622327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527868" }, "bbox": [ -0.0267874, 51.2567525, -0.0267874, 51.2567525 ], "geometry": { "type": "Point", "coordinates": [ -0.0267874, 51.2567525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37528168" }, "bbox": [ -0.0262523, 51.2565802, -0.0262523, 51.2565802 ], "geometry": { "type": "Point", "coordinates": [ -0.0262523, 51.2565802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527974" }, "bbox": [ -0.0264681, 51.2571747, -0.0264681, 51.2571747 ], "geometry": { "type": "Point", "coordinates": [ -0.0264681, 51.2571747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99335080" }, "bbox": [ -0.5801031, 51.0952884, -0.5801031, 51.0952884 ], "geometry": { "type": "Point", "coordinates": [ -0.5801031, 51.0952884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28544436" }, "bbox": [ -0.1599098, 51.2739534, -0.1599098, 51.2739534 ], "geometry": { "type": "Point", "coordinates": [ -0.1599098, 51.2739534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15378221" }, "bbox": [ -0.3463844, 51.1224147, -0.3463844, 51.1224147 ], "geometry": { "type": "Point", "coordinates": [ -0.3463844, 51.1224147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24439297" }, "bbox": [ -0.2141233, 51.1810924, -0.2141233, 51.1810924 ], "geometry": { "type": "Point", "coordinates": [ -0.2141233, 51.1810924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15558005" }, "bbox": [ -0.3407541, 51.2829351, -0.3407541, 51.2829351 ], "geometry": { "type": "Point", "coordinates": [ -0.3407541, 51.2829351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15557007" }, "bbox": [ -0.3423395, 51.2830298, -0.3423395, 51.2830298 ], "geometry": { "type": "Point", "coordinates": [ -0.3423395, 51.2830298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15557105" }, "bbox": [ -0.3419508, 51.2829472, -0.3419508, 51.2829472 ], "geometry": { "type": "Point", "coordinates": [ -0.3419508, 51.2829472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15558610" }, "bbox": [ -0.3387736, 51.2832953, -0.3387736, 51.2832953 ], "geometry": { "type": "Point", "coordinates": [ -0.3387736, 51.2832953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15558009" }, "bbox": [ -0.3408693, 51.2833137, -0.3408693, 51.2833137 ], "geometry": { "type": "Point", "coordinates": [ -0.3408693, 51.2833137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15556706" }, "bbox": [ -0.3426596, 51.2829371, -0.3426596, 51.2829371 ], "geometry": { "type": "Point", "coordinates": [ -0.3426596, 51.2829371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407293" }, "bbox": [ -0.5325902, 51.1582326, -0.5325902, 51.1582326 ], "geometry": { "type": "Point", "coordinates": [ -0.5325902, 51.1582326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412929" }, "bbox": [ -0.5240816, 51.1617105, -0.5240816, 51.1617105 ], "geometry": { "type": "Point", "coordinates": [ -0.5240816, 51.1617105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412619" }, "bbox": [ -0.5244728, 51.1607403, -0.5244728, 51.1607403 ], "geometry": { "type": "Point", "coordinates": [ -0.5244728, 51.1607403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411714" }, "bbox": [ -0.5258644, 51.1603123, -0.5258644, 51.1603123 ], "geometry": { "type": "Point", "coordinates": [ -0.5258644, 51.1603123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412509" }, "bbox": [ -0.5247433, 51.159914, -0.5247433, 51.159914 ], "geometry": { "type": "Point", "coordinates": [ -0.5247433, 51.159914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03413520" }, "bbox": [ -0.5232945, 51.1607107, -0.5232945, 51.1607107 ], "geometry": { "type": "Point", "coordinates": [ -0.5232945, 51.1607107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411608" }, "bbox": [ -0.5262003, 51.1596395, -0.5262003, 51.1596395 ], "geometry": { "type": "Point", "coordinates": [ -0.5262003, 51.1596395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412918" }, "bbox": [ -0.524233, 51.1605196, -0.524233, 51.1605196 ], "geometry": { "type": "Point", "coordinates": [ -0.524233, 51.1605196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14396754" }, "bbox": [ -0.3625483, 51.1437016, -0.3625483, 51.1437016 ], "geometry": { "type": "Point", "coordinates": [ -0.3625483, 51.1437016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91491849" }, "bbox": [ -0.6951367, 51.2373906, -0.6951367, 51.2373906 ], "geometry": { "type": "Point", "coordinates": [ -0.6951367, 51.2373906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36538113" }, "bbox": [ -0.0405833, 51.2609622, -0.0405833, 51.2609622 ], "geometry": { "type": "Point", "coordinates": [ -0.0405833, 51.2609622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36538016" }, "bbox": [ -0.040659, 51.2613021, -0.040659, 51.2613021 ], "geometry": { "type": "Point", "coordinates": [ -0.040659, 51.2613021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00388700" }, "bbox": [ -0.5596933, 51.1323952, -0.5596933, 51.1323952 ], "geometry": { "type": "Point", "coordinates": [ -0.5596933, 51.1323952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00378699" }, "bbox": [ -0.5601489, 51.1324133, -0.5601489, 51.1324133 ], "geometry": { "type": "Point", "coordinates": [ -0.5601489, 51.1324133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00379092" }, "bbox": [ -0.5594435, 51.1317692, -0.5594435, 51.1317692 ], "geometry": { "type": "Point", "coordinates": [ -0.5594435, 51.1317692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28478886" }, "bbox": [ -0.156021, 51.2154696, -0.156021, 51.2154696 ], "geometry": { "type": "Point", "coordinates": [ -0.156021, 51.2154696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415608" }, "bbox": [ -0.4632788, 51.1587629, -0.4632788, 51.1587629 ], "geometry": { "type": "Point", "coordinates": [ -0.4632788, 51.1587629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07416018" }, "bbox": [ -0.4625267, 51.1595554, -0.4625267, 51.1595554 ], "geometry": { "type": "Point", "coordinates": [ -0.4625267, 51.1595554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19396259" }, "bbox": [ -0.2912879, 51.1431663, -0.2912879, 51.1431663 ], "geometry": { "type": "Point", "coordinates": [ -0.2912879, 51.1431663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19394015" }, "bbox": [ -0.294601, 51.1390829, -0.294601, 51.1390829 ], "geometry": { "type": "Point", "coordinates": [ -0.294601, 51.1390829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19393971" }, "bbox": [ -0.2944661, 51.1441755, -0.2944661, 51.1441755 ], "geometry": { "type": "Point", "coordinates": [ -0.2944661, 51.1441755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21399718" }, "bbox": [ -0.2581362, 51.1391768, -0.2581362, 51.1391768 ], "geometry": { "type": "Point", "coordinates": [ -0.2581362, 51.1391768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21398026" }, "bbox": [ -0.2604951, 51.1395703, -0.2604951, 51.1395703 ], "geometry": { "type": "Point", "coordinates": [ -0.2604951, 51.1395703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497596" }, "bbox": [ -0.143031, 51.2340635, -0.143031, 51.2340635 ], "geometry": { "type": "Point", "coordinates": [ -0.143031, 51.2340635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498877" }, "bbox": [ -0.1410815, 51.2324312, -0.1410815, 51.2324312 ], "geometry": { "type": "Point", "coordinates": [ -0.1410815, 51.2324312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29498999" }, "bbox": [ -0.1410266, 51.2343898, -0.1410266, 51.2343898 ], "geometry": { "type": "Point", "coordinates": [ -0.1410266, 51.2343898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29464760" }, "bbox": [ -0.1480985, 51.2039922, -0.1480985, 51.2039922 ], "geometry": { "type": "Point", "coordinates": [ -0.1480985, 51.2039922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29462596" }, "bbox": [ -0.1510903, 51.2072395, -0.1510903, 51.2072395 ], "geometry": { "type": "Point", "coordinates": [ -0.1510903, 51.2072395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04363404" }, "bbox": [ -0.5107364, 51.1142054, -0.5107364, 51.1142054 ], "geometry": { "type": "Point", "coordinates": [ -0.5107364, 51.1142054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94576008" }, "bbox": [ -0.6371106, 51.3056608, -0.6371106, 51.3056608 ], "geometry": { "type": "Point", "coordinates": [ -0.6371106, 51.3056608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98583014" }, "bbox": [ -0.5919772, 51.3137857, -0.5919772, 51.3137857 ], "geometry": { "type": "Point", "coordinates": [ -0.5919772, 51.3137857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25437236" }, "bbox": [ -0.2032566, 51.1757326, -0.2032566, 51.1757326 ], "geometry": { "type": "Point", "coordinates": [ -0.2032566, 51.1757326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25434232" }, "bbox": [ -0.2073006, 51.1753986, -0.2073006, 51.1753986 ], "geometry": { "type": "Point", "coordinates": [ -0.2073006, 51.1753986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00716364" }, "bbox": [ -0.5536283, 51.4347489, -0.5536283, 51.4347489 ], "geometry": { "type": "Point", "coordinates": [ -0.5536283, 51.4347489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08500709" }, "bbox": [ -0.4529378, 51.2398794, -0.4529378, 51.2398794 ], "geometry": { "type": "Point", "coordinates": [ -0.4529378, 51.2398794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07507426" }, "bbox": [ -0.4577926, 51.2414366, -0.4577926, 51.2414366 ], "geometry": { "type": "Point", "coordinates": [ -0.4577926, 51.2414366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07508029" }, "bbox": [ -0.4568714, 51.2417238, -0.4568714, 51.2417238 ], "geometry": { "type": "Point", "coordinates": [ -0.4568714, 51.2417238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07508827" }, "bbox": [ -0.4558005, 51.2414846, -0.4558005, 51.2414846 ], "geometry": { "type": "Point", "coordinates": [ -0.4558005, 51.2414846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07508020" }, "bbox": [ -0.4574482, 51.2406615, -0.4574482, 51.2406615 ], "geometry": { "type": "Point", "coordinates": [ -0.4574482, 51.2406615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11444412" }, "bbox": [ -0.4067049, 51.1855474, -0.4067049, 51.1855474 ], "geometry": { "type": "Point", "coordinates": [ -0.4067049, 51.1855474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23456020" }, "bbox": [ -0.2326032, 51.1925427, -0.2326032, 51.1925427 ], "geometry": { "type": "Point", "coordinates": [ -0.2326032, 51.1925427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07533737" }, "bbox": [ -0.4623252, 51.2693427, -0.4623252, 51.2693427 ], "geometry": { "type": "Point", "coordinates": [ -0.4623252, 51.2693427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07532422" }, "bbox": [ -0.4642805, 51.268052, -0.4642805, 51.268052 ], "geometry": { "type": "Point", "coordinates": [ -0.4642805, 51.268052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21428334" }, "bbox": [ -0.2587909, 51.1673234, -0.2587909, 51.1673234 ], "geometry": { "type": "Point", "coordinates": [ -0.2587909, 51.1673234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21427919" }, "bbox": [ -0.2595241, 51.1660353, -0.2595241, 51.1660353 ], "geometry": { "type": "Point", "coordinates": [ -0.2595241, 51.1660353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11404206" }, "bbox": [ -0.4085048, 51.1490407, -0.4085048, 51.1490407 ], "geometry": { "type": "Point", "coordinates": [ -0.4085048, 51.1490407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11402206" }, "bbox": [ -0.4115378, 51.1490122, -0.4115378, 51.1490122 ], "geometry": { "type": "Point", "coordinates": [ -0.4115378, 51.1490122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21421318" }, "bbox": [ -0.2689107, 51.1661148, -0.2689107, 51.1661148 ], "geometry": { "type": "Point", "coordinates": [ -0.2689107, 51.1661148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21411085" }, "bbox": [ -0.2691272, 51.1632942, -0.2691272, 51.1632942 ], "geometry": { "type": "Point", "coordinates": [ -0.2691272, 51.1632942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21410888" }, "bbox": [ -0.2702563, 51.1633777, -0.2702563, 51.1633777 ], "geometry": { "type": "Point", "coordinates": [ -0.2702563, 51.1633777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97362762" }, "bbox": [ -0.6116167, 51.1206941, -0.6116167, 51.1206941 ], "geometry": { "type": "Point", "coordinates": [ -0.6116167, 51.1206941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97363970" }, "bbox": [ -0.6097077, 51.1214343, -0.6097077, 51.1214343 ], "geometry": { "type": "Point", "coordinates": [ -0.6097077, 51.1214343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97363665" }, "bbox": [ -0.6102988, 51.1209373, -0.6102988, 51.1209373 ], "geometry": { "type": "Point", "coordinates": [ -0.6102988, 51.1209373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85435256" }, "bbox": [ -0.7782094, 51.1834835, -0.7782094, 51.1834835 ], "geometry": { "type": "Point", "coordinates": [ -0.7782094, 51.1834835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86442718" }, "bbox": [ -0.7680413, 51.1874771, -0.7680413, 51.1874771 ], "geometry": { "type": "Point", "coordinates": [ -0.7680413, 51.1874771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397642" }, "bbox": [ -0.4465823, 51.1437168, -0.4465823, 51.1437168 ], "geometry": { "type": "Point", "coordinates": [ -0.4465823, 51.1437168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397838" }, "bbox": [ -0.4463195, 51.1433722, -0.4463195, 51.1433722 ], "geometry": { "type": "Point", "coordinates": [ -0.4463195, 51.1433722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08397437" }, "bbox": [ -0.4468903, 51.143292, -0.4468903, 51.143292 ], "geometry": { "type": "Point", "coordinates": [ -0.4468903, 51.143292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19381363" }, "bbox": [ -0.2990109, 51.1345313, -0.2990109, 51.1345313 ], "geometry": { "type": "Point", "coordinates": [ -0.2990109, 51.1345313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19380155" }, "bbox": [ -0.3005424, 51.133903, -0.3005424, 51.133903 ], "geometry": { "type": "Point", "coordinates": [ -0.3005424, 51.133903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18385664" }, "bbox": [ -0.3068538, 51.1348548, -0.3068538, 51.1348548 ], "geometry": { "type": "Point", "coordinates": [ -0.3068538, 51.1348548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18388422" }, "bbox": [ -0.3027197, 51.1313549, -0.3027197, 51.1313549 ], "geometry": { "type": "Point", "coordinates": [ -0.3027197, 51.1313549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12513307" }, "bbox": [ -0.3919072, 51.2477573, -0.3919072, 51.2477573 ], "geometry": { "type": "Point", "coordinates": [ -0.3919072, 51.2477573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12511415" }, "bbox": [ -0.3946785, 51.2485476, -0.3946785, 51.2485476 ], "geometry": { "type": "Point", "coordinates": [ -0.3946785, 51.2485476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12502472" }, "bbox": [ -0.3934268, 51.2446192, -0.3934268, 51.2446192 ], "geometry": { "type": "Point", "coordinates": [ -0.3934268, 51.2446192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20414841" }, "bbox": [ -0.2784225, 51.1592175, -0.2784225, 51.1592175 ], "geometry": { "type": "Point", "coordinates": [ -0.2784225, 51.1592175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20416850" }, "bbox": [ -0.2755516, 51.1600831, -0.2755516, 51.1600831 ], "geometry": { "type": "Point", "coordinates": [ -0.2755516, 51.1600831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92426993" }, "bbox": [ -0.6756542, 51.1779272, -0.6756542, 51.1779272 ], "geometry": { "type": "Point", "coordinates": [ -0.6756542, 51.1779272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92439322" }, "bbox": [ -0.6722402, 51.1802453, -0.6722402, 51.1802453 ], "geometry": { "type": "Point", "coordinates": [ -0.6722402, 51.1802453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21381683" }, "bbox": [ -0.2699184, 51.1358735, -0.2699184, 51.1358735 ], "geometry": { "type": "Point", "coordinates": [ -0.2699184, 51.1358735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17381364" }, "bbox": [ -0.3272374, 51.1350072, -0.3272374, 51.1350072 ], "geometry": { "type": "Point", "coordinates": [ -0.3272374, 51.1350072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27573719" }, "bbox": [ -0.1739308, 51.2997927, -0.1739308, 51.2997927 ], "geometry": { "type": "Point", "coordinates": [ -0.1739308, 51.2997927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99458499" }, "bbox": [ -0.571875, 51.2039933, -0.571875, 51.2039933 ], "geometry": { "type": "Point", "coordinates": [ -0.571875, 51.2039933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98468525" }, "bbox": [ -0.5868489, 51.2067666, -0.5868489, 51.2067666 ], "geometry": { "type": "Point", "coordinates": [ -0.5868489, 51.2067666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99461253" }, "bbox": [ -0.5823652, 51.2094634, -0.5823652, 51.2094634 ], "geometry": { "type": "Point", "coordinates": [ -0.5823652, 51.2094634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458062" }, "bbox": [ -0.5874772, 51.2014545, -0.5874772, 51.2014545 ], "geometry": { "type": "Point", "coordinates": [ -0.5874772, 51.2014545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02358114" }, "bbox": [ -0.5328518, 51.1063984, -0.5328518, 51.1063984 ], "geometry": { "type": "Point", "coordinates": [ -0.5328518, 51.1063984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21470021" }, "bbox": [ -0.2689207, 51.2112326, -0.2689207, 51.2112326 ], "geometry": { "type": "Point", "coordinates": [ -0.2689207, 51.2112326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94432286" }, "bbox": [ -0.6542702, 51.1870695, -0.6542702, 51.1870695 ], "geometry": { "type": "Point", "coordinates": [ -0.6542702, 51.1870695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23402327" }, "bbox": [ -0.2397338, 51.1484192, -0.2397338, 51.1484192 ], "geometry": { "type": "Point", "coordinates": [ -0.2397338, 51.1484192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34415084" }, "bbox": [ -0.07778, 51.1600834, -0.07778, 51.1600834 ], "geometry": { "type": "Point", "coordinates": [ -0.07778, 51.1600834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34411174" }, "bbox": [ -0.0835992, 51.1585505, -0.0835992, 51.1585505 ], "geometry": { "type": "Point", "coordinates": [ -0.0835992, 51.1585505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91360663" }, "bbox": [ -0.7000438, 51.1218709, -0.7000438, 51.1218709 ], "geometry": { "type": "Point", "coordinates": [ -0.7000438, 51.1218709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90485552" }, "bbox": [ -0.7045438, 51.2287062, -0.7045438, 51.2287062 ], "geometry": { "type": "Point", "coordinates": [ -0.7045438, 51.2287062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04557010" }, "bbox": [ -0.5005323, 51.2854636, -0.5005323, 51.2854636 ], "geometry": { "type": "Point", "coordinates": [ -0.5005323, 51.2854636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04553509" }, "bbox": [ -0.5046272, 51.2851051, -0.5046272, 51.2851051 ], "geometry": { "type": "Point", "coordinates": [ -0.5046272, 51.2851051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09572021" }, "bbox": [ -0.4347781, 51.3034932, -0.4347781, 51.3034932 ], "geometry": { "type": "Point", "coordinates": [ -0.4347781, 51.3034932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571826" }, "bbox": [ -0.4348376, 51.3039943, -0.4348376, 51.3039943 ], "geometry": { "type": "Point", "coordinates": [ -0.4348376, 51.3039943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92357793" }, "bbox": [ -0.6761345, 51.1150658, -0.6761345, 51.1150658 ], "geometry": { "type": "Point", "coordinates": [ -0.6761345, 51.1150658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91515832" }, "bbox": [ -0.6890424, 51.2537155, -0.6890424, 51.2537155 ], "geometry": { "type": "Point", "coordinates": [ -0.6890424, 51.2537155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91514618" }, "bbox": [ -0.6908804, 51.2520422, -0.6908804, 51.2520422 ], "geometry": { "type": "Point", "coordinates": [ -0.6908804, 51.2520422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03352590" }, "bbox": [ -0.5257557, 51.1135161, -0.5257557, 51.1135161 ], "geometry": { "type": "Point", "coordinates": [ -0.5257557, 51.1135161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10512006" }, "bbox": [ -0.4220581, 51.2480988, -0.4220581, 51.2480988 ], "geometry": { "type": "Point", "coordinates": [ -0.4220581, 51.2480988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19397873" }, "bbox": [ -0.2890254, 51.1443872, -0.2890254, 51.1443872 ], "geometry": { "type": "Point", "coordinates": [ -0.2890254, 51.1443872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398065" }, "bbox": [ -0.288635, 51.1436643, -0.288635, 51.1436643 ], "geometry": { "type": "Point", "coordinates": [ -0.288635, 51.1436643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398769" }, "bbox": [ -0.2876807, 51.1439677, -0.2876807, 51.1439677 ], "geometry": { "type": "Point", "coordinates": [ -0.2876807, 51.1439677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399779" }, "bbox": [ -0.2867131, 51.1447948, -0.2867131, 51.1447948 ], "geometry": { "type": "Point", "coordinates": [ -0.2867131, 51.1447948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38459848" }, "bbox": [ -0.0125583, 51.1916654, -0.0125583, 51.1916654 ], "geometry": { "type": "Point", "coordinates": [ -0.0125583, 51.1916654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38459944" }, "bbox": [ -0.0122787, 51.1913154, -0.0122787, 51.1913154 ], "geometry": { "type": "Point", "coordinates": [ -0.0122787, 51.1913154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89427533" }, "bbox": [ -0.7175952, 51.1732517, -0.7175952, 51.1732517 ], "geometry": { "type": "Point", "coordinates": [ -0.7175952, 51.1732517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89427521" }, "bbox": [ -0.7175728, 51.1721, -0.7175728, 51.1721 ], "geometry": { "type": "Point", "coordinates": [ -0.7175728, 51.1721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89428844" }, "bbox": [ -0.7155805, 51.174171, -0.7155805, 51.174171 ], "geometry": { "type": "Point", "coordinates": [ -0.7155805, 51.174171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95473197" }, "bbox": [ -0.636476, 51.2229707, -0.636476, 51.2229707 ], "geometry": { "type": "Point", "coordinates": [ -0.636476, 51.2229707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95473595" }, "bbox": [ -0.6351825, 51.2228132, -0.6351825, 51.2228132 ], "geometry": { "type": "Point", "coordinates": [ -0.6351825, 51.2228132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95474297" }, "bbox": [ -0.6350044, 51.2229328, -0.6350044, 51.2229328 ], "geometry": { "type": "Point", "coordinates": [ -0.6350044, 51.2229328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95474797" }, "bbox": [ -0.6350561, 51.2229185, -0.6350561, 51.2229185 ], "geometry": { "type": "Point", "coordinates": [ -0.6350561, 51.2229185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95471488" }, "bbox": [ -0.6393526, 51.2223198, -0.6393526, 51.2223198 ], "geometry": { "type": "Point", "coordinates": [ -0.6393526, 51.2223198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95481313" }, "bbox": [ -0.6381216, 51.224235, -0.6381216, 51.224235 ], "geometry": { "type": "Point", "coordinates": [ -0.6381216, 51.224235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95481001" }, "bbox": [ -0.6397317, 51.2234283, -0.6397317, 51.2234283 ], "geometry": { "type": "Point", "coordinates": [ -0.6397317, 51.2234283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95482510" }, "bbox": [ -0.637582, 51.2244181, -0.637582, 51.2244181 ], "geometry": { "type": "Point", "coordinates": [ -0.637582, 51.2244181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95483202" }, "bbox": [ -0.6361969, 51.2231902, -0.6361969, 51.2231902 ], "geometry": { "type": "Point", "coordinates": [ -0.6361969, 51.2231902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95481615" }, "bbox": [ -0.6374896, 51.2244885, -0.6374896, 51.2244885 ], "geometry": { "type": "Point", "coordinates": [ -0.6374896, 51.2244885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95481214" }, "bbox": [ -0.638053, 51.2238261, -0.638053, 51.2238261 ], "geometry": { "type": "Point", "coordinates": [ -0.638053, 51.2238261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99587059" }, "bbox": [ -0.570581, 51.3177938, -0.570581, 51.3177938 ], "geometry": { "type": "Point", "coordinates": [ -0.570581, 51.3177938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95570518" }, "bbox": [ -0.6393459, 51.3061173, -0.6393459, 51.3061173 ], "geometry": { "type": "Point", "coordinates": [ -0.6393459, 51.3061173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02389662" }, "bbox": [ -0.5288817, 51.1378341, -0.5288817, 51.1378341 ], "geometry": { "type": "Point", "coordinates": [ -0.5288817, 51.1378341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388431" }, "bbox": [ -0.5308391, 51.1340744, -0.5308391, 51.1340744 ], "geometry": { "type": "Point", "coordinates": [ -0.5308391, 51.1340744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02387834" }, "bbox": [ -0.5321316, 51.1351443, -0.5321316, 51.1351443 ], "geometry": { "type": "Point", "coordinates": [ -0.5321316, 51.1351443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02388353" }, "bbox": [ -0.5314701, 51.1368619, -0.5314701, 51.1368619 ], "geometry": { "type": "Point", "coordinates": [ -0.5314701, 51.1368619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85426833" }, "bbox": [ -0.7758955, 51.1741624, -0.7758955, 51.1741624 ], "geometry": { "type": "Point", "coordinates": [ -0.7758955, 51.1741624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85428324" }, "bbox": [ -0.7738952, 51.1731474, -0.7738952, 51.1731474 ], "geometry": { "type": "Point", "coordinates": [ -0.7738952, 51.1731474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86398813" }, "bbox": [ -0.7593201, 51.1448957, -0.7593201, 51.1448957 ], "geometry": { "type": "Point", "coordinates": [ -0.7593201, 51.1448957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422331" }, "bbox": [ -0.8249785, 51.1741722, -0.8249785, 51.1741722 ], "geometry": { "type": "Point", "coordinates": [ -0.8249785, 51.1741722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422324" }, "bbox": [ -0.8249963, 51.1735684, -0.8249963, 51.1735684 ], "geometry": { "type": "Point", "coordinates": [ -0.8249963, 51.1735684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380511" }, "bbox": [ -0.7571881, 51.1357818, -0.7571881, 51.1357818 ], "geometry": { "type": "Point", "coordinates": [ -0.7571881, 51.1357818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87381220" }, "bbox": [ -0.756091, 51.1365064, -0.756091, 51.1365064 ], "geometry": { "type": "Point", "coordinates": [ -0.756091, 51.1365064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22562402" }, "bbox": [ -0.2481473, 51.2903344, -0.2481473, 51.2903344 ], "geometry": { "type": "Point", "coordinates": [ -0.2481473, 51.2903344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22563608" }, "bbox": [ -0.2464722, 51.2907954, -0.2464722, 51.2907954 ], "geometry": { "type": "Point", "coordinates": [ -0.2464722, 51.2907954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22564201" }, "bbox": [ -0.2457671, 51.2900678, -0.2457671, 51.2900678 ], "geometry": { "type": "Point", "coordinates": [ -0.2457671, 51.2900678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00427712" }, "bbox": [ -0.5598873, 51.1695577, -0.5598873, 51.1695577 ], "geometry": { "type": "Point", "coordinates": [ -0.5598873, 51.1695577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00417487" }, "bbox": [ -0.5604894, 51.16762, -0.5604894, 51.16762 ], "geometry": { "type": "Point", "coordinates": [ -0.5604894, 51.16762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08352192" }, "bbox": [ -0.455436, 51.1124453, -0.455436, 51.1124453 ], "geometry": { "type": "Point", "coordinates": [ -0.455436, 51.1124453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08352383" }, "bbox": [ -0.4551344, 51.1115646, -0.4551344, 51.1115646 ], "geometry": { "type": "Point", "coordinates": [ -0.4551344, 51.1115646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82392931" }, "bbox": [ -0.8250531, 51.1469519, -0.8250531, 51.1469519 ], "geometry": { "type": "Point", "coordinates": [ -0.8250531, 51.1469519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25520270" }, "bbox": [ -0.2095735, 51.2597835, -0.2095735, 51.2597835 ], "geometry": { "type": "Point", "coordinates": [ -0.2095735, 51.2597835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521577" }, "bbox": [ -0.2079198, 51.2600574, -0.2079198, 51.2600574 ], "geometry": { "type": "Point", "coordinates": [ -0.2079198, 51.2600574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521153" }, "bbox": [ -0.2083042, 51.2582983, -0.2083042, 51.2582983 ], "geometry": { "type": "Point", "coordinates": [ -0.2083042, 51.2582983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24529536" }, "bbox": [ -0.2106034, 51.2568386, -0.2106034, 51.2568386 ], "geometry": { "type": "Point", "coordinates": [ -0.2106034, 51.2568386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36527562" }, "bbox": [ -0.0410777, 51.2560138, -0.0410777, 51.2560138 ], "geometry": { "type": "Point", "coordinates": [ -0.0410777, 51.2560138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82400688" }, "bbox": [ -0.8277134, 51.1613411, -0.8277134, 51.1613411 ], "geometry": { "type": "Point", "coordinates": [ -0.8277134, 51.1613411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94520776" }, "bbox": [ -0.6519339, 51.2662925, -0.6519339, 51.2662925 ], "geometry": { "type": "Point", "coordinates": [ -0.6519339, 51.2662925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20416967" }, "bbox": [ -0.2754098, 51.1615281, -0.2754098, 51.1615281 ], "geometry": { "type": "Point", "coordinates": [ -0.2754098, 51.1615281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382577" }, "bbox": [ -0.7256217, 51.1412786, -0.7256217, 51.1412786 ], "geometry": { "type": "Point", "coordinates": [ -0.7256217, 51.1412786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89383080" }, "bbox": [ -0.7248828, 51.1414017, -0.7248828, 51.1414017 ], "geometry": { "type": "Point", "coordinates": [ -0.7248828, 51.1414017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24524098" }, "bbox": [ -0.2181118, 51.262269, -0.2181118, 51.262269 ], "geometry": { "type": "Point", "coordinates": [ -0.2181118, 51.262269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27448284" }, "bbox": [ -0.1722349, 51.188509, -0.1722349, 51.188509 ], "geometry": { "type": "Point", "coordinates": [ -0.1722349, 51.188509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00386186" }, "bbox": [ -0.5655094, 51.1402304, -0.5655094, 51.1402304 ], "geometry": { "type": "Point", "coordinates": [ -0.5655094, 51.1402304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499142" }, "bbox": [ -0.7133985, 51.2368793, -0.7133985, 51.2368793 ], "geometry": { "type": "Point", "coordinates": [ -0.7133985, 51.2368793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86429413" }, "bbox": [ -0.7579355, 51.171892, -0.7579355, 51.171892 ], "geometry": { "type": "Point", "coordinates": [ -0.7579355, 51.171892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04452909" }, "bbox": [ -0.5087651, 51.1955219, -0.5087651, 51.1955219 ], "geometry": { "type": "Point", "coordinates": [ -0.5087651, 51.1955219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93366876" }, "bbox": [ -0.6627459, 51.1224995, -0.6627459, 51.1224995 ], "geometry": { "type": "Point", "coordinates": [ -0.6627459, 51.1224995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93369079" }, "bbox": [ -0.6595717, 51.1227532, -0.6595717, 51.1227532 ], "geometry": { "type": "Point", "coordinates": [ -0.6595717, 51.1227532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93369196" }, "bbox": [ -0.6596384, 51.1242114, -0.6596384, 51.1242114 ], "geometry": { "type": "Point", "coordinates": [ -0.6596384, 51.1242114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94360289" }, "bbox": [ -0.6577686, 51.1236976, -0.6577686, 51.1236976 ], "geometry": { "type": "Point", "coordinates": [ -0.6577686, 51.1236976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87352475" }, "bbox": [ -0.7547836, 51.1145122, -0.7547836, 51.1145122 ], "geometry": { "type": "Point", "coordinates": [ -0.7547836, 51.1145122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28582773" }, "bbox": [ -0.1613417, 51.313735, -0.1613417, 51.313735 ], "geometry": { "type": "Point", "coordinates": [ -0.1613417, 51.313735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407570" }, "bbox": [ -0.4607993, 51.1554107, -0.4607993, 51.1554107 ], "geometry": { "type": "Point", "coordinates": [ -0.4607993, 51.1554107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07407478" }, "bbox": [ -0.4607682, 51.1559821, -0.4607682, 51.1559821 ], "geometry": { "type": "Point", "coordinates": [ -0.4607682, 51.1559821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40573101" }, "bbox": [ 0.0110938, 51.2949013, 0.0110938, 51.2949013 ], "geometry": { "type": "Point", "coordinates": [ 0.0110938, 51.2949013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41419009" }, "bbox": [ 0.0275615, 51.1516322, 0.0275615, 51.1516322 ], "geometry": { "type": "Point", "coordinates": [ 0.0275615, 51.1516322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41419660" }, "bbox": [ 0.0286474, 51.1560749, 0.0286474, 51.1560749 ], "geometry": { "type": "Point", "coordinates": [ 0.0286474, 51.1560749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41417043" }, "bbox": [ 0.0247841, 51.1544591, 0.0247841, 51.1544591 ], "geometry": { "type": "Point", "coordinates": [ 0.0247841, 51.1544591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41417221" }, "bbox": [ 0.0249605, 51.1526232, 0.0249605, 51.1526232 ], "geometry": { "type": "Point", "coordinates": [ 0.0249605, 51.1526232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42411519" }, "bbox": [ 0.0309305, 51.1523713, 0.0309305, 51.1523713 ], "geometry": { "type": "Point", "coordinates": [ 0.0309305, 51.1523713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41553484" }, "bbox": [ 0.0255806, 51.2841854, 0.0255806, 51.2841854 ], "geometry": { "type": "Point", "coordinates": [ 0.0255806, 51.2841854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21465452" }, "bbox": [ -0.2616964, 51.204982, -0.2616964, 51.204982 ], "geometry": { "type": "Point", "coordinates": [ -0.2616964, 51.204982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25536280" }, "bbox": [ -0.2006226, 51.2695838, -0.2006226, 51.2695838 ], "geometry": { "type": "Point", "coordinates": [ -0.2006226, 51.2695838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387736" }, "bbox": [ -0.7325477, 51.1377109, -0.7325477, 51.1377109 ], "geometry": { "type": "Point", "coordinates": [ -0.7325477, 51.1377109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88387858" }, "bbox": [ -0.7322991, 51.1396143, -0.7322991, 51.1396143 ], "geometry": { "type": "Point", "coordinates": [ -0.7322991, 51.1396143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30524467" }, "bbox": [ -0.131899, 51.2583322, -0.131899, 51.2583322 ], "geometry": { "type": "Point", "coordinates": [ -0.131899, 51.2583322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23507043" }, "bbox": [ -0.2290973, 51.2392788, -0.2290973, 51.2392788 ], "geometry": { "type": "Point", "coordinates": [ -0.2290973, 51.2392788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23505918" }, "bbox": [ -0.2325418, 51.2366191, -0.2325418, 51.2366191 ], "geometry": { "type": "Point", "coordinates": [ -0.2325418, 51.2366191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32535701" }, "bbox": [ -0.1023756, 51.26118, -0.1023756, 51.26118 ], "geometry": { "type": "Point", "coordinates": [ -0.1023756, 51.26118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35490453" }, "bbox": [ -0.0669472, 51.2289478, -0.0669472, 51.2289478 ], "geometry": { "type": "Point", "coordinates": [ -0.0669472, 51.2289478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431239" }, "bbox": [ -0.5400261, 51.1805619, -0.5400261, 51.1805619 ], "geometry": { "type": "Point", "coordinates": [ -0.5400261, 51.1805619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431584" }, "bbox": [ -0.539658, 51.184903, -0.539658, 51.184903 ], "geometry": { "type": "Point", "coordinates": [ -0.539658, 51.184903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02430839" }, "bbox": [ -0.5406738, 51.1803943, -0.5406738, 51.1803943 ], "geometry": { "type": "Point", "coordinates": [ -0.5406738, 51.1803943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02432969" }, "bbox": [ -0.5379727, 51.183247, -0.5379727, 51.183247 ], "geometry": { "type": "Point", "coordinates": [ -0.5379727, 51.183247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98612429" }, "bbox": [ -0.5906711, 51.3422345, -0.5906711, 51.3422345 ], "geometry": { "type": "Point", "coordinates": [ -0.5906711, 51.3422345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35405385" }, "bbox": [ -0.0636453, 51.1508678, -0.0636453, 51.1508678 ], "geometry": { "type": "Point", "coordinates": [ -0.0636453, 51.1508678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02767871" }, "bbox": [ -0.5212841, 51.4798858, -0.5212841, 51.4798858 ], "geometry": { "type": "Point", "coordinates": [ -0.5212841, 51.4798858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23514581" }, "bbox": [ -0.2324023, 51.2521132, -0.2324023, 51.2521132 ], "geometry": { "type": "Point", "coordinates": [ -0.2324023, 51.2521132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513780" }, "bbox": [ -0.2336256, 51.2520214, -0.2336256, 51.2520214 ], "geometry": { "type": "Point", "coordinates": [ -0.2336256, 51.2520214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513562" }, "bbox": [ -0.2335458, 51.2507778, -0.2335458, 51.2507778 ], "geometry": { "type": "Point", "coordinates": [ -0.2335458, 51.2507778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23514792" }, "bbox": [ -0.2327888, 51.2533369, -0.2327888, 51.2533369 ], "geometry": { "type": "Point", "coordinates": [ -0.2327888, 51.2533369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23513548" }, "bbox": [ -0.2340008, 51.2491791, -0.2340008, 51.2491791 ], "geometry": { "type": "Point", "coordinates": [ -0.2340008, 51.2491791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23510971" }, "bbox": [ -0.2378794, 51.2513955, -0.2378794, 51.2513955 ], "geometry": { "type": "Point", "coordinates": [ -0.2378794, 51.2513955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23512060" }, "bbox": [ -0.2359201, 51.2503176, -0.2359201, 51.2503176 ], "geometry": { "type": "Point", "coordinates": [ -0.2359201, 51.2503176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23524706" }, "bbox": [ -0.2320358, 51.2544129, -0.2320358, 51.2544129 ], "geometry": { "type": "Point", "coordinates": [ -0.2320358, 51.2544129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22553893" }, "bbox": [ -0.2463799, 51.2893749, -0.2463799, 51.2893749 ], "geometry": { "type": "Point", "coordinates": [ -0.2463799, 51.2893749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22565301" }, "bbox": [ -0.2442015, 51.2900248, -0.2442015, 51.2900248 ], "geometry": { "type": "Point", "coordinates": [ -0.2442015, 51.2900248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96365773" }, "bbox": [ -0.6215469, 51.1217213, -0.6215469, 51.1217213 ], "geometry": { "type": "Point", "coordinates": [ -0.6215469, 51.1217213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97558181" }, "bbox": [ -0.5983474, 51.2931348, -0.5983474, 51.2931348 ], "geometry": { "type": "Point", "coordinates": [ -0.5983474, 51.2931348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89431587" }, "bbox": [ -0.7256103, 51.1873728, -0.7256103, 51.1873728 ], "geometry": { "type": "Point", "coordinates": [ -0.7256103, 51.1873728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395404" }, "bbox": [ -0.5927746, 51.1421298, -0.5927746, 51.1421298 ], "geometry": { "type": "Point", "coordinates": [ -0.5927746, 51.1421298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395501" }, "bbox": [ -0.5925452, 51.1419066, -0.5925452, 51.1419066 ], "geometry": { "type": "Point", "coordinates": [ -0.5925452, 51.1419066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99393357" }, "bbox": [ -0.5814922, 51.1460411, -0.5814922, 51.1460411 ], "geometry": { "type": "Point", "coordinates": [ -0.5814922, 51.1460411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98386869" }, "bbox": [ -0.5910257, 51.1390115, -0.5910257, 51.1390115 ], "geometry": { "type": "Point", "coordinates": [ -0.5910257, 51.1390115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97463859" }, "bbox": [ -0.6073791, 51.2104004, -0.6073791, 51.2104004 ], "geometry": { "type": "Point", "coordinates": [ -0.6073791, 51.2104004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94362033" }, "bbox": [ -0.656208, 51.117947, -0.656208, 51.117947 ], "geometry": { "type": "Point", "coordinates": [ -0.656208, 51.117947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06453224" }, "bbox": [ -0.479756, 51.1965872, -0.479756, 51.1965872 ], "geometry": { "type": "Point", "coordinates": [ -0.479756, 51.1965872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06454842" }, "bbox": [ -0.4773668, 51.1980363, -0.4773668, 51.1980363 ], "geometry": { "type": "Point", "coordinates": [ -0.4773668, 51.1980363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06443297" }, "bbox": [ -0.4797338, 51.1940869, -0.4797338, 51.1940869 ], "geometry": { "type": "Point", "coordinates": [ -0.4797338, 51.1940869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08379000" }, "bbox": [ -0.4454705, 51.1221227, -0.4454705, 51.1221227 ], "geometry": { "type": "Point", "coordinates": [ -0.4454705, 51.1221227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28468501" }, "bbox": [ -0.1571342, 51.1987236, -0.1571342, 51.1987236 ], "geometry": { "type": "Point", "coordinates": [ -0.1571342, 51.1987236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399406" }, "bbox": [ -0.572812, 51.1421011, -0.572812, 51.1421011 ], "geometry": { "type": "Point", "coordinates": [ -0.572812, 51.1421011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86383614" }, "bbox": [ -0.7669926, 51.1360143, -0.7669926, 51.1360143 ], "geometry": { "type": "Point", "coordinates": [ -0.7669926, 51.1360143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35509703" }, "bbox": [ -0.0537742, 51.2332776, -0.0537742, 51.2332776 ], "geometry": { "type": "Point", "coordinates": [ -0.0537742, 51.2332776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35508310" }, "bbox": [ -0.0557037, 51.2336037, -0.0557037, 51.2336037 ], "geometry": { "type": "Point", "coordinates": [ -0.0557037, 51.2336037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35507604" }, "bbox": [ -0.0569431, 51.2334233, -0.0569431, 51.2334233 ], "geometry": { "type": "Point", "coordinates": [ -0.0569431, 51.2334233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88487544" }, "bbox": [ -0.7305065, 51.2282875, -0.7305065, 51.2282875 ], "geometry": { "type": "Point", "coordinates": [ -0.7305065, 51.2282875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96559153" }, "bbox": [ -0.611537, 51.2906413, -0.611537, 51.2906413 ], "geometry": { "type": "Point", "coordinates": [ -0.611537, 51.2906413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01560818" }, "bbox": [ -0.5516, 51.2958285, -0.5516, 51.2958285 ], "geometry": { "type": "Point", "coordinates": [ -0.5516, 51.2958285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01560313" }, "bbox": [ -0.5522414, 51.2954334, -0.5522414, 51.2954334 ], "geometry": { "type": "Point", "coordinates": [ -0.5522414, 51.2954334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11577090" }, "bbox": [ -0.3987436, 51.3092192, -0.3987436, 51.3092192 ], "geometry": { "type": "Point", "coordinates": [ -0.3987436, 51.3092192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38447428" }, "bbox": [ -0.0162418, 51.1808164, -0.0162418, 51.1808164 ], "geometry": { "type": "Point", "coordinates": [ -0.0162418, 51.1808164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01593266" }, "bbox": [ -0.5459524, 51.3271481, -0.5459524, 51.3271481 ], "geometry": { "type": "Point", "coordinates": [ -0.5459524, 51.3271481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395283" }, "bbox": [ -0.8214446, 51.1516661, -0.8214446, 51.1516661 ], "geometry": { "type": "Point", "coordinates": [ -0.8214446, 51.1516661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82396071" }, "bbox": [ -0.8204172, 51.150722, -0.8204172, 51.150722 ], "geometry": { "type": "Point", "coordinates": [ -0.8204172, 51.150722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82396175" }, "bbox": [ -0.8204691, 51.151023, -0.8204691, 51.151023 ], "geometry": { "type": "Point", "coordinates": [ -0.8204691, 51.151023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82395488" }, "bbox": [ -0.8211313, 51.1522167, -0.8211313, 51.1522167 ], "geometry": { "type": "Point", "coordinates": [ -0.8211313, 51.1522167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98399825" }, "bbox": [ -0.5863144, 51.144082, -0.5863144, 51.144082 ], "geometry": { "type": "Point", "coordinates": [ -0.5863144, 51.144082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98397821" }, "bbox": [ -0.5888581, 51.1436208, -0.5888581, 51.1436208 ], "geometry": { "type": "Point", "coordinates": [ -0.5888581, 51.1436208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99392257" }, "bbox": [ -0.5837458, 51.1472158, -0.5837458, 51.1472158 ], "geometry": { "type": "Point", "coordinates": [ -0.5837458, 51.1472158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99391329" }, "bbox": [ -0.5841578, 51.1444158, -0.5841578, 51.1444158 ], "geometry": { "type": "Point", "coordinates": [ -0.5841578, 51.1444158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91629007" }, "bbox": [ -0.6824729, 51.350011, -0.6824729, 51.350011 ], "geometry": { "type": "Point", "coordinates": [ -0.6824729, 51.350011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15498958" }, "bbox": [ -0.3413844, 51.233627, -0.3413844, 51.233627 ], "geometry": { "type": "Point", "coordinates": [ -0.3413844, 51.233627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15497759" }, "bbox": [ -0.3432057, 51.2337628, -0.3432057, 51.2337628 ], "geometry": { "type": "Point", "coordinates": [ -0.3432057, 51.2337628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14497166" }, "bbox": [ -0.3582883, 51.2345566, -0.3582883, 51.2345566 ], "geometry": { "type": "Point", "coordinates": [ -0.3582883, 51.2345566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14493468" }, "bbox": [ -0.3635001, 51.2349322, -0.3635001, 51.2349322 ], "geometry": { "type": "Point", "coordinates": [ -0.3635001, 51.2349322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98368696" }, "bbox": [ -0.5879544, 51.1232636, -0.5879544, 51.1232636 ], "geometry": { "type": "Point", "coordinates": [ -0.5879544, 51.1232636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98367296" }, "bbox": [ -0.5908055, 51.1234935, -0.5908055, 51.1234935 ], "geometry": { "type": "Point", "coordinates": [ -0.5908055, 51.1234935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98369987" }, "bbox": [ -0.5866526, 51.1225439, -0.5866526, 51.1225439 ], "geometry": { "type": "Point", "coordinates": [ -0.5866526, 51.1225439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98368673" }, "bbox": [ -0.5889047, 51.1213926, -0.5889047, 51.1213926 ], "geometry": { "type": "Point", "coordinates": [ -0.5889047, 51.1213926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98368783" }, "bbox": [ -0.5884154, 51.1220935, -0.5884154, 51.1220935 ], "geometry": { "type": "Point", "coordinates": [ -0.5884154, 51.1220935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98368589" }, "bbox": [ -0.5891122, 51.1227018, -0.5891122, 51.1227018 ], "geometry": { "type": "Point", "coordinates": [ -0.5891122, 51.1227018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99363583" }, "bbox": [ -0.5817955, 51.1222745, -0.5817955, 51.1222745 ], "geometry": { "type": "Point", "coordinates": [ -0.5817955, 51.1222745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99362198" }, "bbox": [ -0.5839742, 51.1235419, -0.5839742, 51.1235419 ], "geometry": { "type": "Point", "coordinates": [ -0.5839742, 51.1235419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99361167" }, "bbox": [ -0.5852348, 51.1208102, -0.5852348, 51.1208102 ], "geometry": { "type": "Point", "coordinates": [ -0.5852348, 51.1208102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99363173" }, "bbox": [ -0.5820979, 51.1210485, -0.5820979, 51.1210485 ], "geometry": { "type": "Point", "coordinates": [ -0.5820979, 51.1210485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99363078" }, "bbox": [ -0.5825888, 51.1217771, -0.5825888, 51.1217771 ], "geometry": { "type": "Point", "coordinates": [ -0.5825888, 51.1217771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99362582" }, "bbox": [ -0.5825432, 51.1219435, -0.5825432, 51.1219435 ], "geometry": { "type": "Point", "coordinates": [ -0.5825432, 51.1219435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99361384" }, "bbox": [ -0.5848212, 51.1223351, -0.5848212, 51.1223351 ], "geometry": { "type": "Point", "coordinates": [ -0.5848212, 51.1223351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99362772" }, "bbox": [ -0.5822891, 51.121377, -0.5822891, 51.121377 ], "geometry": { "type": "Point", "coordinates": [ -0.5822891, 51.121377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07347456" }, "bbox": [ -0.4625043, 51.1003281, -0.4625043, 51.1003281 ], "geometry": { "type": "Point", "coordinates": [ -0.4625043, 51.1003281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07347144" }, "bbox": [ -0.4631235, 51.0992147, -0.4631235, 51.0992147 ], "geometry": { "type": "Point", "coordinates": [ -0.4631235, 51.0992147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21528012" }, "bbox": [ -0.256108, 51.2553475, -0.256108, 51.2553475 ], "geometry": { "type": "Point", "coordinates": [ -0.256108, 51.2553475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21527538" }, "bbox": [ -0.2567197, 51.2577158, -0.2567197, 51.2577158 ], "geometry": { "type": "Point", "coordinates": [ -0.2567197, 51.2577158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21526319" }, "bbox": [ -0.2588458, 51.2560229, -0.2588458, 51.2560229 ], "geometry": { "type": "Point", "coordinates": [ -0.2588458, 51.2560229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21527546" }, "bbox": [ -0.2563518, 51.2584186, -0.2563518, 51.2584186 ], "geometry": { "type": "Point", "coordinates": [ -0.2563518, 51.2584186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22524555" }, "bbox": [ -0.247328, 51.2588641, -0.247328, 51.2588641 ], "geometry": { "type": "Point", "coordinates": [ -0.247328, 51.2588641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22521049" }, "bbox": [ -0.2514811, 51.2583888, -0.2514811, 51.2583888 ], "geometry": { "type": "Point", "coordinates": [ -0.2514811, 51.2583888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86381185" }, "bbox": [ -0.7703725, 51.1424676, -0.7703725, 51.1424676 ], "geometry": { "type": "Point", "coordinates": [ -0.7703725, 51.1424676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82411799" }, "bbox": [ -0.8260049, 51.1712418, -0.8260049, 51.1712418 ], "geometry": { "type": "Point", "coordinates": [ -0.8260049, 51.1712418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82421302" }, "bbox": [ -0.8265944, 51.1716061, -0.8265944, 51.1716061 ], "geometry": { "type": "Point", "coordinates": [ -0.8265944, 51.1716061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90486082" }, "bbox": [ -0.7051381, 51.2313498, -0.7051381, 51.2313498 ], "geometry": { "type": "Point", "coordinates": [ -0.7051381, 51.2313498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90486347" }, "bbox": [ -0.7034245, 51.2283071, -0.7034245, 51.2283071 ], "geometry": { "type": "Point", "coordinates": [ -0.7034245, 51.2283071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438651" }, "bbox": [ -0.7586026, 51.1842674, -0.7586026, 51.1842674 ], "geometry": { "type": "Point", "coordinates": [ -0.7586026, 51.1842674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438346" }, "bbox": [ -0.7589939, 51.1838218, -0.7589939, 51.1838218 ], "geometry": { "type": "Point", "coordinates": [ -0.7589939, 51.1838218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37487119" }, "bbox": [ -0.029572, 51.2163789, -0.029572, 51.2163789 ], "geometry": { "type": "Point", "coordinates": [ -0.029572, 51.2163789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37481736" }, "bbox": [ -0.0375882, 51.217452, -0.0375882, 51.217452 ], "geometry": { "type": "Point", "coordinates": [ -0.0375882, 51.217452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37486126" }, "bbox": [ -0.0310438, 51.2170342, -0.0310438, 51.2170342 ], "geometry": { "type": "Point", "coordinates": [ -0.0310438, 51.2170342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37483753" }, "bbox": [ -0.0339163, 51.2195189, -0.0339163, 51.2195189 ], "geometry": { "type": "Point", "coordinates": [ -0.0339163, 51.2195189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37487230" }, "bbox": [ -0.0300268, 51.2175725, -0.0300268, 51.2175725 ], "geometry": { "type": "Point", "coordinates": [ -0.0300268, 51.2175725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37481262" }, "bbox": [ -0.037968, 51.2204322, -0.037968, 51.2204322 ], "geometry": { "type": "Point", "coordinates": [ -0.037968, 51.2204322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06514570" }, "bbox": [ -0.4757793, 51.2546141, -0.4757793, 51.2546141 ], "geometry": { "type": "Point", "coordinates": [ -0.4757793, 51.2546141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11358859" }, "bbox": [ -0.4031302, 51.1086769, -0.4031302, 51.1086769 ], "geometry": { "type": "Point", "coordinates": [ -0.4031302, 51.1086769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458875" }, "bbox": [ -0.5861247, 51.2023675, -0.5861247, 51.2023675 ], "geometry": { "type": "Point", "coordinates": [ -0.5861247, 51.2023675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458475" }, "bbox": [ -0.5865573, 51.2024641, -0.5865573, 51.2024641 ], "geometry": { "type": "Point", "coordinates": [ -0.5865573, 51.2024641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98458879" }, "bbox": [ -0.5858725, 51.2029431, -0.5858725, 51.2029431 ], "geometry": { "type": "Point", "coordinates": [ -0.5858725, 51.2029431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92370783" }, "bbox": [ -0.6854096, 51.13236, -0.6854096, 51.13236 ], "geometry": { "type": "Point", "coordinates": [ -0.6854096, 51.13236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92383815" }, "bbox": [ -0.6797684, 51.1353977, -0.6797684, 51.1353977 ], "geometry": { "type": "Point", "coordinates": [ -0.6797684, 51.1353977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14375247" }, "bbox": [ -0.3648347, 51.1251596, -0.3648347, 51.1251596 ], "geometry": { "type": "Point", "coordinates": [ -0.3648347, 51.1251596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14375139" }, "bbox": [ -0.3653591, 51.1242229, -0.3653591, 51.1242229 ], "geometry": { "type": "Point", "coordinates": [ -0.3653591, 51.1242229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06526821" }, "bbox": [ -0.4723142, 51.2585951, -0.4723142, 51.2585951 ], "geometry": { "type": "Point", "coordinates": [ -0.4723142, 51.2585951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06515185" }, "bbox": [ -0.4750172, 51.2559348, -0.4750172, 51.2559348 ], "geometry": { "type": "Point", "coordinates": [ -0.4750172, 51.2559348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82426421" }, "bbox": [ -0.8190981, 51.1731752, -0.8190981, 51.1731752 ], "geometry": { "type": "Point", "coordinates": [ -0.8190981, 51.1731752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82426968" }, "bbox": [ -0.8183669, 51.1773272, -0.8183669, 51.1773272 ], "geometry": { "type": "Point", "coordinates": [ -0.8183669, 51.1773272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82424824" }, "bbox": [ -0.8213351, 51.1736311, -0.8213351, 51.1736311 ], "geometry": { "type": "Point", "coordinates": [ -0.8213351, 51.1736311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502471" }, "bbox": [ -0.6501721, 51.2478182, -0.6501721, 51.2478182 ], "geometry": { "type": "Point", "coordinates": [ -0.6501721, 51.2478182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20576179" }, "bbox": [ -0.270989, 51.3064661, -0.270989, 51.3064661 ], "geometry": { "type": "Point", "coordinates": [ -0.270989, 51.3064661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31407340" }, "bbox": [ -0.1179094, 51.1477828, -0.1179094, 51.1477828 ], "geometry": { "type": "Point", "coordinates": [ -0.1179094, 51.1477828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31408646" }, "bbox": [ -0.1159952, 51.1483071, -0.1159952, 51.1483071 ], "geometry": { "type": "Point", "coordinates": [ -0.1159952, 51.1483071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443604" }, "bbox": [ -0.6940452, 51.1883822, -0.6940452, 51.1883822 ], "geometry": { "type": "Point", "coordinates": [ -0.6940452, 51.1883822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86388970" }, "bbox": [ -0.7592425, 51.1410495, -0.7592425, 51.1410495 ], "geometry": { "type": "Point", "coordinates": [ -0.7592425, 51.1410495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30514558" }, "bbox": [ -0.1322827, 51.248608, -0.1322827, 51.248608 ], "geometry": { "type": "Point", "coordinates": [ -0.1322827, 51.248608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31511735" }, "bbox": [ -0.1225931, 51.2462235, -0.1225931, 51.2462235 ], "geometry": { "type": "Point", "coordinates": [ -0.1225931, 51.2462235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31528137" }, "bbox": [ -0.1122676, 51.255394, -0.1122676, 51.255394 ], "geometry": { "type": "Point", "coordinates": [ -0.1122676, 51.255394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12398490" }, "bbox": [ -0.3880956, 51.147391, -0.3880956, 51.147391 ], "geometry": { "type": "Point", "coordinates": [ -0.3880956, 51.147391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12397499" }, "bbox": [ -0.3894736, 51.1481042, -0.3894736, 51.1481042 ], "geometry": { "type": "Point", "coordinates": [ -0.3894736, 51.1481042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07525050" }, "bbox": [ -0.4609203, 51.2613224, -0.4609203, 51.2613224 ], "geometry": { "type": "Point", "coordinates": [ -0.4609203, 51.2613224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07525741" }, "bbox": [ -0.4595432, 51.2608826, -0.4595432, 51.2608826 ], "geometry": { "type": "Point", "coordinates": [ -0.4595432, 51.2608826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04496230" }, "bbox": [ -0.5029053, 51.2333152, -0.5029053, 51.2333152 ], "geometry": { "type": "Point", "coordinates": [ -0.5029053, 51.2333152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500564" }, "bbox": [ -0.6968367, 51.2477792, -0.6968367, 51.2477792 ], "geometry": { "type": "Point", "coordinates": [ -0.6968367, 51.2477792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11591687" }, "bbox": [ -0.4059282, 51.3271293, -0.4059282, 51.3271293 ], "geometry": { "type": "Point", "coordinates": [ -0.4059282, 51.3271293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10599062" }, "bbox": [ -0.4096523, 51.3249491, -0.4096523, 51.3249491 ], "geometry": { "type": "Point", "coordinates": [ -0.4096523, 51.3249491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10592958" }, "bbox": [ -0.4184507, 51.3246861, -0.4184507, 51.3246861 ], "geometry": { "type": "Point", "coordinates": [ -0.4184507, 51.3246861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05374253" }, "bbox": [ -0.4946763, 51.1276472, -0.4946763, 51.1276472 ], "geometry": { "type": "Point", "coordinates": [ -0.4946763, 51.1276472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80459511" }, "bbox": [ -0.8428454, 51.1994944, -0.8428454, 51.1994944 ], "geometry": { "type": "Point", "coordinates": [ -0.8428454, 51.1994944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80457618" }, "bbox": [ -0.8452856, 51.2001842, -0.8452856, 51.2001842 ], "geometry": { "type": "Point", "coordinates": [ -0.8452856, 51.2001842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81453307" }, "bbox": [ -0.8373961, 51.198929, -0.8373961, 51.198929 ], "geometry": { "type": "Point", "coordinates": [ -0.8373961, 51.198929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10406066" }, "bbox": [ -0.4198226, 51.1545646, -0.4198226, 51.1545646 ], "geometry": { "type": "Point", "coordinates": [ -0.4198226, 51.1545646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31462948" }, "bbox": [ -0.1223286, 51.2022815, -0.1223286, 51.2022815 ], "geometry": { "type": "Point", "coordinates": [ -0.1223286, 51.2022815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461953" }, "bbox": [ -0.1234376, 51.2029878, -0.1234376, 51.2029878 ], "geometry": { "type": "Point", "coordinates": [ -0.1234376, 51.2029878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01370587" }, "bbox": [ -0.5571311, 51.1311934, -0.5571311, 51.1311934 ], "geometry": { "type": "Point", "coordinates": [ -0.5571311, 51.1311934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21398731" }, "bbox": [ -0.259326, 51.140231, -0.259326, 51.140231 ], "geometry": { "type": "Point", "coordinates": [ -0.259326, 51.140231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00395182" }, "bbox": [ -0.5641989, 51.1488809, -0.5641989, 51.1488809 ], "geometry": { "type": "Point", "coordinates": [ -0.5641989, 51.1488809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00395581" }, "bbox": [ -0.5637288, 51.1488423, -0.5637288, 51.1488423 ], "geometry": { "type": "Point", "coordinates": [ -0.5637288, 51.1488423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00394582" }, "bbox": [ -0.5651219, 51.1489488, -0.5651219, 51.1489488 ], "geometry": { "type": "Point", "coordinates": [ -0.5651219, 51.1489488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00394882" }, "bbox": [ -0.5646581, 51.1489172, -0.5646581, 51.1489172 ], "geometry": { "type": "Point", "coordinates": [ -0.5646581, 51.1489172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00396777" }, "bbox": [ -0.5620362, 51.1485118, -0.5620362, 51.1485118 ], "geometry": { "type": "Point", "coordinates": [ -0.5620362, 51.1485118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00395077" }, "bbox": [ -0.5649702, 51.1483528, -0.5649702, 51.1483528 ], "geometry": { "type": "Point", "coordinates": [ -0.5649702, 51.1483528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00395474" }, "bbox": [ -0.5639828, 51.1482931, -0.5639828, 51.1482931 ], "geometry": { "type": "Point", "coordinates": [ -0.5639828, 51.1482931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389531" }, "bbox": [ -0.7584482, 51.1376099, -0.7584482, 51.1376099 ], "geometry": { "type": "Point", "coordinates": [ -0.7584482, 51.1376099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87380134" }, "bbox": [ -0.7575247, 51.1376979, -0.7575247, 51.1376979 ], "geometry": { "type": "Point", "coordinates": [ -0.7575247, 51.1376979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521024" }, "bbox": [ -0.6240495, 51.2612727, -0.6240495, 51.2612727 ], "geometry": { "type": "Point", "coordinates": [ -0.6240495, 51.2612727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96521030" }, "bbox": [ -0.6240151, 51.2618411, -0.6240151, 51.2618411 ], "geometry": { "type": "Point", "coordinates": [ -0.6240151, 51.2618411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403206" }, "bbox": [ -0.4095243, 51.1490111, -0.4095243, 51.1490111 ], "geometry": { "type": "Point", "coordinates": [ -0.4095243, 51.1490111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403502" }, "bbox": [ -0.4095872, 51.1486074, -0.4095872, 51.1486074 ], "geometry": { "type": "Point", "coordinates": [ -0.4095872, 51.1486074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03416752" }, "bbox": [ -0.5186971, 51.1635381, -0.5186971, 51.1635381 ], "geometry": { "type": "Point", "coordinates": [ -0.5186971, 51.1635381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83463529" }, "bbox": [ -0.8081176, 51.2098416, -0.8081176, 51.2098416 ], "geometry": { "type": "Point", "coordinates": [ -0.8081176, 51.2098416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04583319" }, "bbox": [ -0.5035768, 51.3137093, -0.5035768, 51.3137093 ], "geometry": { "type": "Point", "coordinates": [ -0.5035768, 51.3137093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04581231" }, "bbox": [ -0.5072194, 51.3139708, -0.5072194, 51.3139708 ], "geometry": { "type": "Point", "coordinates": [ -0.5072194, 51.3139708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02578117" }, "bbox": [ -0.5265404, 51.3044543, -0.5265404, 51.3044543 ], "geometry": { "type": "Point", "coordinates": [ -0.5265404, 51.3044543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02562679" }, "bbox": [ -0.5341784, 51.301055, -0.5341784, 51.301055 ], "geometry": { "type": "Point", "coordinates": [ -0.5341784, 51.301055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02561876" }, "bbox": [ -0.5356415, 51.3008725, -0.5356415, 51.3008725 ], "geometry": { "type": "Point", "coordinates": [ -0.5356415, 51.3008725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90396253" }, "bbox": [ -0.7056886, 51.1477615, -0.7056886, 51.1477615 ], "geometry": { "type": "Point", "coordinates": [ -0.7056886, 51.1477615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90384275" }, "bbox": [ -0.7089013, 51.1408291, -0.7089013, 51.1408291 ], "geometry": { "type": "Point", "coordinates": [ -0.7089013, 51.1408291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34462245" }, "bbox": [ -0.080127, 51.2014875, -0.080127, 51.2014875 ], "geometry": { "type": "Point", "coordinates": [ -0.080127, 51.2014875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34462327" }, "bbox": [ -0.0804905, 51.1998958, -0.0804905, 51.1998958 ], "geometry": { "type": "Point", "coordinates": [ -0.0804905, 51.1998958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34464114" }, "bbox": [ -0.0777932, 51.1986957, -0.0777932, 51.1986957 ], "geometry": { "type": "Point", "coordinates": [ -0.0777932, 51.1986957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33477240" }, "bbox": [ -0.0856557, 51.2101998, -0.0856557, 51.2101998 ], "geometry": { "type": "Point", "coordinates": [ -0.0856557, 51.2101998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33476543" }, "bbox": [ -0.0879725, 51.2104991, -0.0879725, 51.2104991 ], "geometry": { "type": "Point", "coordinates": [ -0.0879725, 51.2104991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33479728" }, "bbox": [ -0.0838332, 51.2088259, -0.0838332, 51.2088259 ], "geometry": { "type": "Point", "coordinates": [ -0.0838332, 51.2088259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34463311" }, "bbox": [ -0.0788966, 51.1984457, -0.0788966, 51.1984457 ], "geometry": { "type": "Point", "coordinates": [ -0.0788966, 51.1984457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97639643" }, "bbox": [ -0.5942845, 51.3615798, -0.5942845, 51.3615798 ], "geometry": { "type": "Point", "coordinates": [ -0.5942845, 51.3615798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97639560" }, "bbox": [ -0.5944628, 51.3630481, -0.5944628, 51.3630481 ], "geometry": { "type": "Point", "coordinates": [ -0.5944628, 51.3630481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97639654" }, "bbox": [ -0.5943083, 51.3625633, -0.5943083, 51.3625633 ], "geometry": { "type": "Point", "coordinates": [ -0.5943083, 51.3625633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630261" }, "bbox": [ -0.5934222, 51.3631788, -0.5934222, 51.3631788 ], "geometry": { "type": "Point", "coordinates": [ -0.5934222, 51.3631788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630542" }, "bbox": [ -0.5929226, 51.3614346, -0.5929226, 51.3614346 ], "geometry": { "type": "Point", "coordinates": [ -0.5929226, 51.3614346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630149" }, "bbox": [ -0.5936972, 51.3620657, -0.5936972, 51.3620657 ], "geometry": { "type": "Point", "coordinates": [ -0.5936972, 51.3620657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630654" }, "bbox": [ -0.5929092, 51.3625385, -0.5929092, 51.3625385 ], "geometry": { "type": "Point", "coordinates": [ -0.5929092, 51.3625385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630960" }, "bbox": [ -0.5923366, 51.3630292, -0.5923366, 51.3630292 ], "geometry": { "type": "Point", "coordinates": [ -0.5923366, 51.3630292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630359" }, "bbox": [ -0.5933034, 51.3630033, -0.5933034, 51.3630033 ], "geometry": { "type": "Point", "coordinates": [ -0.5933034, 51.3630033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630367" }, "bbox": [ -0.593259, 51.3636586, -0.593259, 51.3636586 ], "geometry": { "type": "Point", "coordinates": [ -0.593259, 51.3636586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98630164" }, "bbox": [ -0.5937266, 51.3634528, -0.5937266, 51.3634528 ], "geometry": { "type": "Point", "coordinates": [ -0.5937266, 51.3634528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94522308" }, "bbox": [ -0.6510356, 51.2601693, -0.6510356, 51.2601693 ], "geometry": { "type": "Point", "coordinates": [ -0.6510356, 51.2601693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94525210" }, "bbox": [ -0.6472274, 51.2609116, -0.6472274, 51.2609116 ], "geometry": { "type": "Point", "coordinates": [ -0.6472274, 51.2609116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91387974" }, "bbox": [ -0.6890744, 51.1405861, -0.6890744, 51.1405861 ], "geometry": { "type": "Point", "coordinates": [ -0.6890744, 51.1405861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388969" }, "bbox": [ -0.6876339, 51.1402647, -0.6876339, 51.1402647 ], "geometry": { "type": "Point", "coordinates": [ -0.6876339, 51.1402647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96464351" }, "bbox": [ -0.6207988, 51.2097046, -0.6207988, 51.2097046 ], "geometry": { "type": "Point", "coordinates": [ -0.6207988, 51.2097046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27454853" }, "bbox": [ -0.1769328, 51.1948382, -0.1769328, 51.1948382 ], "geometry": { "type": "Point", "coordinates": [ -0.1769328, 51.1948382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95467677" }, "bbox": [ -0.6303583, 51.2121555, -0.6303583, 51.2121555 ], "geometry": { "type": "Point", "coordinates": [ -0.6303583, 51.2121555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05385438" }, "bbox": [ -0.492751, 51.1349017, -0.492751, 51.1349017 ], "geometry": { "type": "Point", "coordinates": [ -0.492751, 51.1349017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90340812" }, "bbox": [ -0.7149619, 51.0993721, -0.7149619, 51.0993721 ], "geometry": { "type": "Point", "coordinates": [ -0.7149619, 51.0993721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00399245" }, "bbox": [ -0.5587872, 51.1454134, -0.5587872, 51.1454134 ], "geometry": { "type": "Point", "coordinates": [ -0.5587872, 51.1454134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97549291" }, "bbox": [ -0.5970532, 51.2848336, -0.5970532, 51.2848336 ], "geometry": { "type": "Point", "coordinates": [ -0.5970532, 51.2848336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97549789" }, "bbox": [ -0.5967047, 51.2850048, -0.5967047, 51.2850048 ], "geometry": { "type": "Point", "coordinates": [ -0.5967047, 51.2850048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98540885" }, "bbox": [ -0.5946925, 51.2846808, -0.5946925, 51.2846808 ], "geometry": { "type": "Point", "coordinates": [ -0.5946925, 51.2846808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98540591" }, "bbox": [ -0.5955587, 51.2848159, -0.5955587, 51.2848159 ], "geometry": { "type": "Point", "coordinates": [ -0.5955587, 51.2848159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38606172" }, "bbox": [ -0.0118366, 51.328481, -0.0118366, 51.328481 ], "geometry": { "type": "Point", "coordinates": [ -0.0118366, 51.328481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84416783" }, "bbox": [ -0.7902731, 51.1694445, -0.7902731, 51.1694445 ], "geometry": { "type": "Point", "coordinates": [ -0.7902731, 51.1694445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84416156" }, "bbox": [ -0.791304, 51.1669373, -0.791304, 51.1669373 ], "geometry": { "type": "Point", "coordinates": [ -0.791304, 51.1669373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14658017" }, "bbox": [ -0.3512577, 51.3742521, -0.3512577, 51.3742521 ], "geometry": { "type": "Point", "coordinates": [ -0.3512577, 51.3742521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99364972" }, "bbox": [ -0.5796616, 51.1213371, -0.5796616, 51.1213371 ], "geometry": { "type": "Point", "coordinates": [ -0.5796616, 51.1213371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08564721" }, "bbox": [ -0.4481545, 51.294067, -0.4481545, 51.294067 ], "geometry": { "type": "Point", "coordinates": [ -0.4481545, 51.294067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08550291" }, "bbox": [ -0.4524747, 51.2920509, -0.4524747, 51.2920509 ], "geometry": { "type": "Point", "coordinates": [ -0.4524747, 51.2920509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08550790" }, "bbox": [ -0.4516129, 51.2922761, -0.4516129, 51.2922761 ], "geometry": { "type": "Point", "coordinates": [ -0.4516129, 51.2922761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90380976" }, "bbox": [ -0.7135075, 51.1410505, -0.7135075, 51.1410505 ], "geometry": { "type": "Point", "coordinates": [ -0.7135075, 51.1410505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90383758" }, "bbox": [ -0.710077, 51.1393847, -0.710077, 51.1393847 ], "geometry": { "type": "Point", "coordinates": [ -0.710077, 51.1393847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92478068" }, "bbox": [ -0.6724876, 51.2208695, -0.6724876, 51.2208695 ], "geometry": { "type": "Point", "coordinates": [ -0.6724876, 51.2208695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477568" }, "bbox": [ -0.6731477, 51.2208602, -0.6731477, 51.2208602 ], "geometry": { "type": "Point", "coordinates": [ -0.6731477, 51.2208602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92477358" }, "bbox": [ -0.6735254, 51.219911, -0.6735254, 51.219911 ], "geometry": { "type": "Point", "coordinates": [ -0.6735254, 51.219911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01322882" }, "bbox": [ -0.5552836, 51.0858553, -0.5552836, 51.0858553 ], "geometry": { "type": "Point", "coordinates": [ -0.5552836, 51.0858553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18373979" }, "bbox": [ -0.3094062, 51.127021, -0.3094062, 51.127021 ], "geometry": { "type": "Point", "coordinates": [ -0.3094062, 51.127021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18374766" }, "bbox": [ -0.3083571, 51.1259041, -0.3083571, 51.1259041 ], "geometry": { "type": "Point", "coordinates": [ -0.3083571, 51.1259041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18378456" }, "bbox": [ -0.3030664, 51.1251602, -0.3030664, 51.1251602 ], "geometry": { "type": "Point", "coordinates": [ -0.3030664, 51.1251602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98625191" }, "bbox": [ -0.5866529, 51.3566716, -0.5866529, 51.3566716 ], "geometry": { "type": "Point", "coordinates": [ -0.5866529, 51.3566716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98624390" }, "bbox": [ -0.5889676, 51.3565905, -0.5889676, 51.3565905 ], "geometry": { "type": "Point", "coordinates": [ -0.5889676, 51.3565905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98622178" }, "bbox": [ -0.5909775, 51.3556187, -0.5909775, 51.3556187 ], "geometry": { "type": "Point", "coordinates": [ -0.5909775, 51.3556187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98623681" }, "bbox": [ -0.5888421, 51.3558956, -0.5888421, 51.3558956 ], "geometry": { "type": "Point", "coordinates": [ -0.5888421, 51.3558956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98624371" }, "bbox": [ -0.5877173, 51.3548797, -0.5877173, 51.3548797 ], "geometry": { "type": "Point", "coordinates": [ -0.5877173, 51.3548797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98628595" }, "bbox": [ -0.5815916, 51.3570158, -0.5815916, 51.3570158 ], "geometry": { "type": "Point", "coordinates": [ -0.5815916, 51.3570158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98628272" }, "bbox": [ -0.5818898, 51.3548383, -0.5818898, 51.3548383 ], "geometry": { "type": "Point", "coordinates": [ -0.5818898, 51.3548383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98627463" }, "bbox": [ -0.5834402, 51.3540577, -0.5834402, 51.3540577 ], "geometry": { "type": "Point", "coordinates": [ -0.5834402, 51.3540577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83410453" }, "bbox": [ -0.8137547, 51.1671685, -0.8137547, 51.1671685 ], "geometry": { "type": "Point", "coordinates": [ -0.8137547, 51.1671685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83410590" }, "bbox": [ -0.8133699, 51.1702179, -0.8133699, 51.1702179 ], "geometry": { "type": "Point", "coordinates": [ -0.8133699, 51.1702179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30474107" }, "bbox": [ -0.1340267, 51.2079256, -0.1340267, 51.2079256 ], "geometry": { "type": "Point", "coordinates": [ -0.1340267, 51.2079256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98393324" }, "bbox": [ -0.5957099, 51.1440767, -0.5957099, 51.1440767 ], "geometry": { "type": "Point", "coordinates": [ -0.5957099, 51.1440767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399758" }, "bbox": [ -0.5721277, 51.1467735, -0.5721277, 51.1467735 ], "geometry": { "type": "Point", "coordinates": [ -0.5721277, 51.1467735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98382485" }, "bbox": [ -0.5976194, 51.1403755, -0.5976194, 51.1403755 ], "geometry": { "type": "Point", "coordinates": [ -0.5976194, 51.1403755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93472756" }, "bbox": [ -0.665836, 51.2195493, -0.665836, 51.2195493 ], "geometry": { "type": "Point", "coordinates": [ -0.665836, 51.2195493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00369302" }, "bbox": [ -0.5596977, 51.1147179, -0.5596977, 51.1147179 ], "geometry": { "type": "Point", "coordinates": [ -0.5596977, 51.1147179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25436969" }, "bbox": [ -0.2030792, 51.1787681, -0.2030792, 51.1787681 ], "geometry": { "type": "Point", "coordinates": [ -0.2030792, 51.1787681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97415962" }, "bbox": [ -0.6059381, 51.1656696, -0.6059381, 51.1656696 ], "geometry": { "type": "Point", "coordinates": [ -0.6059381, 51.1656696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20461765" }, "bbox": [ -0.2810798, 51.2064298, -0.2810798, 51.2064298 ], "geometry": { "type": "Point", "coordinates": [ -0.2810798, 51.2064298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04576002" }, "bbox": [ -0.5006042, 51.3029423, -0.5006042, 51.3029423 ], "geometry": { "type": "Point", "coordinates": [ -0.5006042, 51.3029423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37448386" }, "bbox": [ -0.0291857, 51.1863868, -0.0291857, 51.1863868 ], "geometry": { "type": "Point", "coordinates": [ -0.0291857, 51.1863868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10353870" }, "bbox": [ -0.4251209, 51.1100949, -0.4251209, 51.1100949 ], "geometry": { "type": "Point", "coordinates": [ -0.4251209, 51.1100949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37578355" }, "bbox": [ -0.0242325, 51.300443, -0.0242325, 51.300443 ], "geometry": { "type": "Point", "coordinates": [ -0.0242325, 51.300443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38573911" }, "bbox": [ -0.0163767, 51.2963849, -0.0163767, 51.2963849 ], "geometry": { "type": "Point", "coordinates": [ -0.0163767, 51.2963849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95367089" }, "bbox": [ -0.633836, 51.1232422, -0.633836, 51.1232422 ], "geometry": { "type": "Point", "coordinates": [ -0.633836, 51.1232422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95371228" }, "bbox": [ -0.6420555, 51.1270221, -0.6420555, 51.1270221 ], "geometry": { "type": "Point", "coordinates": [ -0.6420555, 51.1270221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95371414" }, "bbox": [ -0.6418266, 51.1256415, -0.6418266, 51.1256415 ], "geometry": { "type": "Point", "coordinates": [ -0.6418266, 51.1256415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95373320" }, "bbox": [ -0.6391392, 51.1262629, -0.6391392, 51.1262629 ], "geometry": { "type": "Point", "coordinates": [ -0.6391392, 51.1262629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35550064" }, "bbox": [ -0.0655823, 51.2839562, -0.0655823, 51.2839562 ], "geometry": { "type": "Point", "coordinates": [ -0.0655823, 51.2839562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35550056" }, "bbox": [ -0.0656888, 51.2831709, -0.0656888, 51.2831709 ], "geometry": { "type": "Point", "coordinates": [ -0.0656888, 51.2831709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35551625" }, "bbox": [ -0.0633559, 51.2804039, -0.0633559, 51.2804039 ], "geometry": { "type": "Point", "coordinates": [ -0.0633559, 51.2804039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34569608" }, "bbox": [ -0.0657817, 51.2877759, -0.0657817, 51.2877759 ], "geometry": { "type": "Point", "coordinates": [ -0.0657817, 51.2877759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35550075" }, "bbox": [ -0.0655752, 51.285091, -0.0655752, 51.285091 ], "geometry": { "type": "Point", "coordinates": [ -0.0655752, 51.285091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97463853" }, "bbox": [ -0.6073432, 51.2097909, -0.6073432, 51.2097909 ], "geometry": { "type": "Point", "coordinates": [ -0.6073432, 51.2097909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04581313" }, "bbox": [ -0.5072283, 51.3127928, -0.5072283, 51.3127928 ], "geometry": { "type": "Point", "coordinates": [ -0.5072283, 51.3127928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94515002" }, "bbox": [ -0.6479731, 51.2503682, -0.6479731, 51.2503682 ], "geometry": { "type": "Point", "coordinates": [ -0.6479731, 51.2503682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94515412" }, "bbox": [ -0.6467782, 51.2513328, -0.6467782, 51.2513328 ], "geometry": { "type": "Point", "coordinates": [ -0.6467782, 51.2513328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98426583" }, "bbox": [ -0.5898321, 51.1761237, -0.5898321, 51.1761237 ], "geometry": { "type": "Point", "coordinates": [ -0.5898321, 51.1761237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98425789" }, "bbox": [ -0.5911768, 51.1767714, -0.5911768, 51.1767714 ], "geometry": { "type": "Point", "coordinates": [ -0.5911768, 51.1767714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98436717" }, "bbox": [ -0.5900306, 51.1794156, -0.5900306, 51.1794156 ], "geometry": { "type": "Point", "coordinates": [ -0.5900306, 51.1794156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98435904" }, "bbox": [ -0.590507, 51.1778957, -0.590507, 51.1778957 ], "geometry": { "type": "Point", "coordinates": [ -0.590507, 51.1778957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98436734" }, "bbox": [ -0.5897038, 51.180714, -0.5897038, 51.180714 ], "geometry": { "type": "Point", "coordinates": [ -0.5897038, 51.180714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08560984" }, "bbox": [ -0.4509425, 51.3003952, -0.4509425, 51.3003952 ], "geometry": { "type": "Point", "coordinates": [ -0.4509425, 51.3003952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08560192" }, "bbox": [ -0.4516241, 51.3012263, -0.4516241, 51.3012263 ], "geometry": { "type": "Point", "coordinates": [ -0.4516241, 51.3012263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13422852" }, "bbox": [ -0.381075, 51.1703792, -0.381075, 51.1703792 ], "geometry": { "type": "Point", "coordinates": [ -0.381075, 51.1703792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86438313" }, "bbox": [ -0.7592111, 51.1804462, -0.7592111, 51.1804462 ], "geometry": { "type": "Point", "coordinates": [ -0.7592111, 51.1804462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86447451" }, "bbox": [ -0.7602933, 51.1932014, -0.7602933, 51.1932014 ], "geometry": { "type": "Point", "coordinates": [ -0.7602933, 51.1932014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408189" }, "bbox": [ -0.2880456, 51.1547085, -0.2880456, 51.1547085 ], "geometry": { "type": "Point", "coordinates": [ -0.2880456, 51.1547085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40507935" }, "bbox": [ 0.0153314, 51.2349996, 0.0153314, 51.2349996 ], "geometry": { "type": "Point", "coordinates": [ 0.0153314, 51.2349996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40508840" }, "bbox": [ 0.0166939, 51.235402, 0.0166939, 51.235402 ], "geometry": { "type": "Point", "coordinates": [ 0.0166939, 51.235402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90357026" }, "bbox": [ -0.7056662, 51.1095786, -0.7056662, 51.1095786 ], "geometry": { "type": "Point", "coordinates": [ -0.7056662, 51.1095786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90357634" }, "bbox": [ -0.7048382, 51.1102375, -0.7048382, 51.1102375 ], "geometry": { "type": "Point", "coordinates": [ -0.7048382, 51.1102375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30463298" }, "bbox": [ -0.1357348, 51.2073024, -0.1357348, 51.2073024 ], "geometry": { "type": "Point", "coordinates": [ -0.1357348, 51.2073024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97335217" }, "bbox": [ -0.6088178, 51.0895019, -0.6088178, 51.0895019 ], "geometry": { "type": "Point", "coordinates": [ -0.6088178, 51.0895019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01461274" }, "bbox": [ -0.5546828, 51.2109772, -0.5546828, 51.2109772 ], "geometry": { "type": "Point", "coordinates": [ -0.5546828, 51.2109772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20395582" }, "bbox": [ -0.2780747, 51.1449525, -0.2780747, 51.1449525 ], "geometry": { "type": "Point", "coordinates": [ -0.2780747, 51.1449525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05363029" }, "bbox": [ -0.4970272, 51.1164096, -0.4970272, 51.1164096 ], "geometry": { "type": "Point", "coordinates": [ -0.4970272, 51.1164096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35515685" }, "bbox": [ -0.0590202, 51.2496662, -0.0590202, 51.2496662 ], "geometry": { "type": "Point", "coordinates": [ -0.0590202, 51.2496662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20399988" }, "bbox": [ -0.2718434, 51.1450937, -0.2718434, 51.1450937 ], "geometry": { "type": "Point", "coordinates": [ -0.2718434, 51.1450937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20398075" }, "bbox": [ -0.2744297, 51.1442812, -0.2744297, 51.1442812 ], "geometry": { "type": "Point", "coordinates": [ -0.2744297, 51.1442812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20398355" }, "bbox": [ -0.2742114, 51.1424865, -0.2742114, 51.1424865 ], "geometry": { "type": "Point", "coordinates": [ -0.2742114, 51.1424865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20397983" }, "bbox": [ -0.2746987, 51.1451197, -0.2746987, 51.1451197 ], "geometry": { "type": "Point", "coordinates": [ -0.2746987, 51.1451197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98352806" }, "bbox": [ -0.5973616, 51.1064409, -0.5973616, 51.1064409 ], "geometry": { "type": "Point", "coordinates": [ -0.5973616, 51.1064409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98352702" }, "bbox": [ -0.5975248, 51.1061555, -0.5975248, 51.1061555 ], "geometry": { "type": "Point", "coordinates": [ -0.5975248, 51.1061555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98341678" }, "bbox": [ -0.5994036, 51.1040356, -0.5994036, 51.1040356 ], "geometry": { "type": "Point", "coordinates": [ -0.5994036, 51.1040356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09603344" }, "bbox": [ -0.4318195, 51.3324252, -0.4318195, 51.3324252 ], "geometry": { "type": "Point", "coordinates": [ -0.4318195, 51.3324252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09609032" }, "bbox": [ -0.4238112, 51.3312995, -0.4238112, 51.3312995 ], "geometry": { "type": "Point", "coordinates": [ -0.4238112, 51.3312995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09603838" }, "bbox": [ -0.4310541, 51.3319566, -0.4310541, 51.3319566 ], "geometry": { "type": "Point", "coordinates": [ -0.4310541, 51.3319566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09605920" }, "bbox": [ -0.4285006, 51.3301947, -0.4285006, 51.3301947 ], "geometry": { "type": "Point", "coordinates": [ -0.4285006, 51.3301947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09609018" }, "bbox": [ -0.4234506, 51.3300645, -0.4234506, 51.3300645 ], "geometry": { "type": "Point", "coordinates": [ -0.4234506, 51.3300645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09605833" }, "bbox": [ -0.4287156, 51.3317373, -0.4287156, 51.3317373 ], "geometry": { "type": "Point", "coordinates": [ -0.4287156, 51.3317373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92376169" }, "bbox": [ -0.6778975, 51.1309446, -0.6778975, 51.1309446 ], "geometry": { "type": "Point", "coordinates": [ -0.6778975, 51.1309446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99347254" }, "bbox": [ -0.5770288, 51.1014704, -0.5770288, 51.1014704 ], "geometry": { "type": "Point", "coordinates": [ -0.5770288, 51.1014704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37453990" }, "bbox": [ -0.0351093, 51.1958143, -0.0351093, 51.1958143 ], "geometry": { "type": "Point", "coordinates": [ -0.0351093, 51.1958143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38460146" }, "bbox": [ -0.0259876, 51.2007494, -0.0259876, 51.2007494 ], "geometry": { "type": "Point", "coordinates": [ -0.0259876, 51.2007494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395924" }, "bbox": [ -0.2918275, 51.1395824, -0.2918275, 51.1395824 ], "geometry": { "type": "Point", "coordinates": [ -0.2918275, 51.1395824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19397506" }, "bbox": [ -0.2891701, 51.137953, -0.2891701, 51.137953 ], "geometry": { "type": "Point", "coordinates": [ -0.2891701, 51.137953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19389356" }, "bbox": [ -0.2874456, 51.1338114, -0.2874456, 51.1338114 ], "geometry": { "type": "Point", "coordinates": [ -0.2874456, 51.1338114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04362570" }, "bbox": [ -0.5118337, 51.1202432, -0.5118337, 51.1202432 ], "geometry": { "type": "Point", "coordinates": [ -0.5118337, 51.1202432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06376626" }, "bbox": [ -0.4777246, 51.1249419, -0.4777246, 51.1249419 ], "geometry": { "type": "Point", "coordinates": [ -0.4777246, 51.1249419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32438667" }, "bbox": [ -0.1005677, 51.1772466, -0.1005677, 51.1772466 ], "geometry": { "type": "Point", "coordinates": [ -0.1005677, 51.1772466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11649710" }, "bbox": [ -0.3929316, 51.3650242, -0.3929316, 51.3650242 ], "geometry": { "type": "Point", "coordinates": [ -0.3929316, 51.3650242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12634524" }, "bbox": [ -0.385972, 51.3573932, -0.385972, 51.3573932 ], "geometry": { "type": "Point", "coordinates": [ -0.385972, 51.3573932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14612255" }, "bbox": [ -0.3616218, 51.3415421, -0.3616218, 51.3415421 ], "geometry": { "type": "Point", "coordinates": [ -0.3616218, 51.3415421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13621927" }, "bbox": [ -0.374578, 51.3497723, -0.374578, 51.3497723 ], "geometry": { "type": "Point", "coordinates": [ -0.374578, 51.3497723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11637682" }, "bbox": [ -0.3960378, 51.3625263, -0.3960378, 51.3625263 ], "geometry": { "type": "Point", "coordinates": [ -0.3960378, 51.3625263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13614295" }, "bbox": [ -0.3714338, 51.3444004, -0.3714338, 51.3444004 ], "geometry": { "type": "Point", "coordinates": [ -0.3714338, 51.3444004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14633801" }, "bbox": [ -0.3596333, 51.3546877, -0.3596333, 51.3546877 ], "geometry": { "type": "Point", "coordinates": [ -0.3596333, 51.3546877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10568174" }, "bbox": [ -0.4118357, 51.2991552, -0.4118357, 51.2991552 ], "geometry": { "type": "Point", "coordinates": [ -0.4118357, 51.2991552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13410956" }, "bbox": [ -0.3840065, 51.1621703, -0.3840065, 51.1621703 ], "geometry": { "type": "Point", "coordinates": [ -0.3840065, 51.1621703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13425607" }, "bbox": [ -0.376845, 51.1672661, -0.376845, 51.1672661 ], "geometry": { "type": "Point", "coordinates": [ -0.376845, 51.1672661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11361364" }, "bbox": [ -0.4135167, 51.1182953, -0.4135167, 51.1182953 ], "geometry": { "type": "Point", "coordinates": [ -0.4135167, 51.1182953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10369352" }, "bbox": [ -0.4164013, 51.1172692, -0.4164013, 51.1172692 ], "geometry": { "type": "Point", "coordinates": [ -0.4164013, 51.1172692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90421954" }, "bbox": [ -0.7115636, 51.1750946, -0.7115636, 51.1750946 ], "geometry": { "type": "Point", "coordinates": [ -0.7115636, 51.1750946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16621878" }, "bbox": [ -0.333122, 51.3520723, -0.333122, 51.3520723 ], "geometry": { "type": "Point", "coordinates": [ -0.333122, 51.3520723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87438816" }, "bbox": [ -0.7432384, 51.1812227, -0.7432384, 51.1812227 ], "geometry": { "type": "Point", "coordinates": [ -0.7432384, 51.1812227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88433263" }, "bbox": [ -0.738035, 51.185016, -0.738035, 51.185016 ], "geometry": { "type": "Point", "coordinates": [ -0.738035, 51.185016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88430207" }, "bbox": [ -0.7421167, 51.1800828, -0.7421167, 51.1800828 ], "geometry": { "type": "Point", "coordinates": [ -0.7421167, 51.1800828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99364339" }, "bbox": [ -0.5814907, 51.1187347, -0.5814907, 51.1187347 ], "geometry": { "type": "Point", "coordinates": [ -0.5814907, 51.1187347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99364557" }, "bbox": [ -0.5805648, 51.1197375, -0.5805648, 51.1197375 ], "geometry": { "type": "Point", "coordinates": [ -0.5805648, 51.1197375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21472005" }, "bbox": [ -0.2664138, 51.209691, -0.2664138, 51.209691 ], "geometry": { "type": "Point", "coordinates": [ -0.2664138, 51.209691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07634277" }, "bbox": [ -0.4582714, 51.3628116, -0.4582714, 51.3628116 ], "geometry": { "type": "Point", "coordinates": [ -0.4582714, 51.3628116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07632895" }, "bbox": [ -0.4607092, 51.3654609, -0.4607092, 51.3654609 ], "geometry": { "type": "Point", "coordinates": [ -0.4607092, 51.3654609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07638182" }, "bbox": [ -0.4528054, 51.3632364, -0.4528054, 51.3632364 ], "geometry": { "type": "Point", "coordinates": [ -0.4528054, 51.3632364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13373248" }, "bbox": [ -0.3817202, 51.125288, -0.3817202, 51.125288 ], "geometry": { "type": "Point", "coordinates": [ -0.3817202, 51.125288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12369594" }, "bbox": [ -0.3877216, 51.1208333, -0.3877216, 51.1208333 ], "geometry": { "type": "Point", "coordinates": [ -0.3877216, 51.1208333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28525764" }, "bbox": [ -0.1588159, 51.258264, -0.1588159, 51.258264 ], "geometry": { "type": "Point", "coordinates": [ -0.1588159, 51.258264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31520391" }, "bbox": [ -0.1235613, 51.2603398, -0.1235613, 51.2603398 ], "geometry": { "type": "Point", "coordinates": [ -0.1235613, 51.2603398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91394278" }, "bbox": [ -0.6949671, 51.1500123, -0.6949671, 51.1500123 ], "geometry": { "type": "Point", "coordinates": [ -0.6949671, 51.1500123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84388876" }, "bbox": [ -0.7881601, 51.1417621, -0.7881601, 51.1417621 ], "geometry": { "type": "Point", "coordinates": [ -0.7881601, 51.1417621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84388683" }, "bbox": [ -0.7882709, 51.1425193, -0.7882709, 51.1425193 ], "geometry": { "type": "Point", "coordinates": [ -0.7882709, 51.1425193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26449491" }, "bbox": [ -0.185141, 51.1894731, -0.185141, 51.1894731 ], "geometry": { "type": "Point", "coordinates": [ -0.185141, 51.1894731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39550115" }, "bbox": [ -0.0083908, 51.2786021, -0.0083908, 51.2786021 ], "geometry": { "type": "Point", "coordinates": [ -0.0083908, 51.2786021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01418902" }, "bbox": [ -0.5442629, 51.1594361, -0.5442629, 51.1594361 ], "geometry": { "type": "Point", "coordinates": [ -0.5442629, 51.1594361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01418059" }, "bbox": [ -0.5451726, 51.1645954, -0.5451726, 51.1645954 ], "geometry": { "type": "Point", "coordinates": [ -0.5451726, 51.1645954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94322556" }, "bbox": [ -0.655611, 51.0846432, -0.655611, 51.0846432 ], "geometry": { "type": "Point", "coordinates": [ -0.655611, 51.0846432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31421254" }, "bbox": [ -0.126304, 51.1671845, -0.126304, 51.1671845 ], "geometry": { "type": "Point", "coordinates": [ -0.126304, 51.1671845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19376194" }, "bbox": [ -0.2919564, 51.1283154, -0.2919564, 51.1283154 ], "geometry": { "type": "Point", "coordinates": [ -0.2919564, 51.1283154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19373692" }, "bbox": [ -0.295467, 51.12818, -0.295467, 51.12818 ], "geometry": { "type": "Point", "coordinates": [ -0.295467, 51.12818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34556819" }, "bbox": [ -0.0702602, 51.2799935, -0.0702602, 51.2799935 ], "geometry": { "type": "Point", "coordinates": [ -0.0702602, 51.2799935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34559456" }, "bbox": [ -0.0664909, 51.2832525, -0.0664909, 51.2832525 ], "geometry": { "type": "Point", "coordinates": [ -0.0664909, 51.2832525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34557082" }, "bbox": [ -0.0687852, 51.2864329, -0.0687852, 51.2864329 ], "geometry": { "type": "Point", "coordinates": [ -0.0687852, 51.2864329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85459523" }, "bbox": [ -0.7711593, 51.1998166, -0.7711593, 51.1998166 ], "geometry": { "type": "Point", "coordinates": [ -0.7711593, 51.1998166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37455999" }, "bbox": [ -0.0320683, 51.1964828, -0.0320683, 51.1964828 ], "geometry": { "type": "Point", "coordinates": [ -0.0320683, 51.1964828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37464561" }, "bbox": [ -0.0338702, 51.2021454, -0.0338702, 51.2021454 ], "geometry": { "type": "Point", "coordinates": [ -0.0338702, 51.2021454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37464185" }, "bbox": [ -0.0343093, 51.2043706, -0.0343093, 51.2043706 ], "geometry": { "type": "Point", "coordinates": [ -0.0343093, 51.2043706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02393113" }, "bbox": [ -0.5388945, 51.1422421, -0.5388945, 51.1422421 ], "geometry": { "type": "Point", "coordinates": [ -0.5388945, 51.1422421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04750301" }, "bbox": [ -0.503575, 51.4644023, -0.503575, 51.4644023 ], "geometry": { "type": "Point", "coordinates": [ -0.503575, 51.4644023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04740397" }, "bbox": [ -0.5039683, 51.4642189, -0.5039683, 51.4642189 ], "geometry": { "type": "Point", "coordinates": [ -0.5039683, 51.4642189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98364381" }, "bbox": [ -0.594931, 51.1221894, -0.594931, 51.1221894 ], "geometry": { "type": "Point", "coordinates": [ -0.594931, 51.1221894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98363779" }, "bbox": [ -0.5958215, 51.1220356, -0.5958215, 51.1220356 ], "geometry": { "type": "Point", "coordinates": [ -0.5958215, 51.1220356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01429267" }, "bbox": [ -0.5439184, 51.173961, -0.5439184, 51.173961 ], "geometry": { "type": "Point", "coordinates": [ -0.5439184, 51.173961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02420467" }, "bbox": [ -0.5433839, 51.1742292, -0.5433839, 51.1742292 ], "geometry": { "type": "Point", "coordinates": [ -0.5433839, 51.1742292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02423658" }, "bbox": [ -0.5372156, 51.173238, -0.5372156, 51.173238 ], "geometry": { "type": "Point", "coordinates": [ -0.5372156, 51.173238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02421984" }, "bbox": [ -0.5394584, 51.1756687, -0.5394584, 51.1756687 ], "geometry": { "type": "Point", "coordinates": [ -0.5394584, 51.1756687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24500824" }, "bbox": [ -0.2239394, 51.237908, -0.2239394, 51.237908 ], "geometry": { "type": "Point", "coordinates": [ -0.2239394, 51.237908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03452617" }, "bbox": [ -0.5235872, 51.1965545, -0.5235872, 51.1965545 ], "geometry": { "type": "Point", "coordinates": [ -0.5235872, 51.1965545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83472812" }, "bbox": [ -0.8085507, 51.2175552, -0.8085507, 51.2175552 ], "geometry": { "type": "Point", "coordinates": [ -0.8085507, 51.2175552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35565080" }, "bbox": [ -0.0580193, 51.2941961, -0.0580193, 51.2941961 ], "geometry": { "type": "Point", "coordinates": [ -0.0580193, 51.2941961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422781" }, "bbox": [ -0.8243031, 51.1786209, -0.8243031, 51.1786209 ], "geometry": { "type": "Point", "coordinates": [ -0.8243031, 51.1786209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82422485" }, "bbox": [ -0.8247549, 51.1790162, -0.8247549, 51.1790162 ], "geometry": { "type": "Point", "coordinates": [ -0.8247549, 51.1790162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82421981" }, "bbox": [ -0.8255221, 51.1786638, -0.8255221, 51.1786638 ], "geometry": { "type": "Point", "coordinates": [ -0.8255221, 51.1786638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94398760" }, "bbox": [ -0.6444782, 51.1480528, -0.6444782, 51.1480528 ], "geometry": { "type": "Point", "coordinates": [ -0.6444782, 51.1480528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10595368" }, "bbox": [ -0.4146425, 51.3255693, -0.4146425, 51.3255693 ], "geometry": { "type": "Point", "coordinates": [ -0.4146425, 51.3255693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86389504" }, "bbox": [ -0.7586041, 51.1350921, -0.7586041, 51.1350921 ], "geometry": { "type": "Point", "coordinates": [ -0.7586041, 51.1350921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81464303" }, "bbox": [ -0.8356634, 51.2077116, -0.8356634, 51.2077116 ], "geometry": { "type": "Point", "coordinates": [ -0.8356634, 51.2077116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81465402" }, "bbox": [ -0.8343222, 51.207662, -0.8343222, 51.207662 ], "geometry": { "type": "Point", "coordinates": [ -0.8343222, 51.207662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38399386" }, "bbox": [ -0.015427, 51.1409677, -0.015427, 51.1409677 ], "geometry": { "type": "Point", "coordinates": [ -0.015427, 51.1409677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38419680" }, "bbox": [ -0.0142476, 51.1585975, -0.0142476, 51.1585975 ], "geometry": { "type": "Point", "coordinates": [ -0.0142476, 51.1585975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39410475" }, "bbox": [ -0.0137167, 51.1581784, -0.0137167, 51.1581784 ], "geometry": { "type": "Point", "coordinates": [ -0.0137167, 51.1581784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39410380" }, "bbox": [ -0.013131, 51.1585302, -0.013131, 51.1585302 ], "geometry": { "type": "Point", "coordinates": [ -0.013131, 51.1585302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12418243" }, "bbox": [ -0.3879493, 51.161086, -0.3879493, 51.161086 ], "geometry": { "type": "Point", "coordinates": [ -0.3879493, 51.161086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87334970" }, "bbox": [ -0.751992, 51.0961054, -0.751992, 51.0961054 ], "geometry": { "type": "Point", "coordinates": [ -0.751992, 51.0961054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21430567" }, "bbox": [ -0.2695161, 51.1795089, -0.2695161, 51.1795089 ], "geometry": { "type": "Point", "coordinates": [ -0.2695161, 51.1795089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23437988" }, "bbox": [ -0.2302637, 51.1807844, -0.2302637, 51.1807844 ], "geometry": { "type": "Point", "coordinates": [ -0.2302637, 51.1807844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87335357" }, "bbox": [ -0.7515435, 51.0948027, -0.7515435, 51.0948027 ], "geometry": { "type": "Point", "coordinates": [ -0.7515435, 51.0948027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95489231" }, "bbox": [ -0.6277539, 51.2259698, -0.6277539, 51.2259698 ], "geometry": { "type": "Point", "coordinates": [ -0.6277539, 51.2259698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08555642" }, "bbox": [ -0.4444851, 51.2876005, -0.4444851, 51.2876005 ], "geometry": { "type": "Point", "coordinates": [ -0.4444851, 51.2876005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11550681" }, "bbox": [ -0.4087924, 51.2906301, -0.4087924, 51.2906301 ], "geometry": { "type": "Point", "coordinates": [ -0.4087924, 51.2906301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89382659" }, "bbox": [ -0.7253556, 51.1396676, -0.7253556, 51.1396676 ], "geometry": { "type": "Point", "coordinates": [ -0.7253556, 51.1396676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89380862" }, "bbox": [ -0.7276021, 51.1400296, -0.7276021, 51.1400296 ], "geometry": { "type": "Point", "coordinates": [ -0.7276021, 51.1400296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21399699" }, "bbox": [ -0.2577988, 51.1462008, -0.2577988, 51.1462008 ], "geometry": { "type": "Point", "coordinates": [ -0.2577988, 51.1462008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92456006" }, "bbox": [ -0.6760323, 51.1973123, -0.6760323, 51.1973123 ], "geometry": { "type": "Point", "coordinates": [ -0.6760323, 51.1973123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20412702" }, "bbox": [ -0.281777, 51.1557771, -0.281777, 51.1557771 ], "geometry": { "type": "Point", "coordinates": [ -0.281777, 51.1557771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04548001" }, "bbox": [ -0.4988934, 51.2754181, -0.4988934, 51.2754181 ], "geometry": { "type": "Point", "coordinates": [ -0.4988934, 51.2754181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83478344" }, "bbox": [ -0.8012289, 51.2198642, -0.8012289, 51.2198642 ], "geometry": { "type": "Point", "coordinates": [ -0.8012289, 51.2198642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83479040" }, "bbox": [ -0.7986808, 51.2205779, -0.7986808, 51.2205779 ], "geometry": { "type": "Point", "coordinates": [ -0.7986808, 51.2205779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17409057" }, "bbox": [ -0.3156347, 51.1523092, -0.3156347, 51.1523092 ], "geometry": { "type": "Point", "coordinates": [ -0.3156347, 51.1523092 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29432075" }, "bbox": [ -0.1528513, 51.178426, -0.1528513, 51.178426 ], "geometry": { "type": "Point", "coordinates": [ -0.1528513, 51.178426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38566847" }, "bbox": [ -0.0113426, 51.2894213, -0.0113426, 51.2894213 ], "geometry": { "type": "Point", "coordinates": [ -0.0113426, 51.2894213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93360907" }, "bbox": [ -0.6705837, 51.116302, -0.6705837, 51.116302 ], "geometry": { "type": "Point", "coordinates": [ -0.6705837, 51.116302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05451019" }, "bbox": [ -0.4970356, 51.1963662, -0.4970356, 51.1963662 ], "geometry": { "type": "Point", "coordinates": [ -0.4970356, 51.1963662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93395487" }, "bbox": [ -0.664092, 51.1504889, -0.664092, 51.1504889 ], "geometry": { "type": "Point", "coordinates": [ -0.664092, 51.1504889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93391987" }, "bbox": [ -0.668937, 51.1504888, -0.668937, 51.1504888 ], "geometry": { "type": "Point", "coordinates": [ -0.668937, 51.1504888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00511329" }, "bbox": [ -0.5665152, 51.2520434, -0.5665152, 51.2520434 ], "geometry": { "type": "Point", "coordinates": [ -0.5665152, 51.2520434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00514754" }, "bbox": [ -0.5599896, 51.2561363, -0.5599896, 51.2561363 ], "geometry": { "type": "Point", "coordinates": [ -0.5599896, 51.2561363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14593513" }, "bbox": [ -0.360555, 51.319577, -0.360555, 51.319577 ], "geometry": { "type": "Point", "coordinates": [ -0.360555, 51.319577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14592312" }, "bbox": [ -0.3614914, 51.3199143, -0.3614914, 51.3199143 ], "geometry": { "type": "Point", "coordinates": [ -0.3614914, 51.3199143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14593604" }, "bbox": [ -0.3601023, 51.3190927, -0.3601023, 51.3190927 ], "geometry": { "type": "Point", "coordinates": [ -0.3601023, 51.3190927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14562698" }, "bbox": [ -0.3625456, 51.3007456, -0.3625456, 51.3007456 ], "geometry": { "type": "Point", "coordinates": [ -0.3625456, 51.3007456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91457576" }, "bbox": [ -0.6881621, 51.2037282, -0.6881621, 51.2037282 ], "geometry": { "type": "Point", "coordinates": [ -0.6881621, 51.2037282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26589131" }, "bbox": [ -0.1797276, 51.3098324, -0.1797276, 51.3098324 ], "geometry": { "type": "Point", "coordinates": [ -0.1797276, 51.3098324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27571592" }, "bbox": [ -0.1769698, 51.3055367, -0.1769698, 51.3055367 ], "geometry": { "type": "Point", "coordinates": [ -0.1769698, 51.3055367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03348229" }, "bbox": [ -0.518477, 51.0985832, -0.518477, 51.0985832 ], "geometry": { "type": "Point", "coordinates": [ -0.518477, 51.0985832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20407401" }, "bbox": [ -0.2745217, 51.1465833, -0.2745217, 51.1465833 ], "geometry": { "type": "Point", "coordinates": [ -0.2745217, 51.1465833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20405402" }, "bbox": [ -0.2785561, 51.1465397, -0.2785561, 51.1465397 ], "geometry": { "type": "Point", "coordinates": [ -0.2785561, 51.1465397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03345744" }, "bbox": [ -0.5221287, 51.1002046, -0.5221287, 51.1002046 ], "geometry": { "type": "Point", "coordinates": [ -0.5221287, 51.1002046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90389591" }, "bbox": [ -0.7013239, 51.1423491, -0.7013239, 51.1423491 ], "geometry": { "type": "Point", "coordinates": [ -0.7013239, 51.1423491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395356" }, "bbox": [ -0.5924932, 51.1469517, -0.5924932, 51.1469517 ], "geometry": { "type": "Point", "coordinates": [ -0.5924932, 51.1469517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21420265" }, "bbox": [ -0.2704955, 51.1702, -0.2704955, 51.1702 ], "geometry": { "type": "Point", "coordinates": [ -0.2704955, 51.1702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21420163" }, "bbox": [ -0.2704538, 51.1699596, -0.2704538, 51.1699596 ], "geometry": { "type": "Point", "coordinates": [ -0.2704538, 51.1699596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96368555" }, "bbox": [ -0.6174807, 51.120119, -0.6174807, 51.120119 ], "geometry": { "type": "Point", "coordinates": [ -0.6174807, 51.120119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396525" }, "bbox": [ -0.5910618, 51.1431898, -0.5910618, 51.1431898 ], "geometry": { "type": "Point", "coordinates": [ -0.5910618, 51.1431898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396024" }, "bbox": [ -0.591652, 51.1440057, -0.591652, 51.1440057 ], "geometry": { "type": "Point", "coordinates": [ -0.591652, 51.1440057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98395927" }, "bbox": [ -0.5918182, 51.1443238, -0.5918182, 51.1443238 ], "geometry": { "type": "Point", "coordinates": [ -0.5918182, 51.1443238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396213" }, "bbox": [ -0.5913731, 51.1429627, -0.5913731, 51.1429627 ], "geometry": { "type": "Point", "coordinates": [ -0.5913731, 51.1429627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396218" }, "bbox": [ -0.5914677, 51.1434958, -0.5914677, 51.1434958 ], "geometry": { "type": "Point", "coordinates": [ -0.5914677, 51.1434958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396217" }, "bbox": [ -0.59144, 51.143265, -0.59144, 51.143265 ], "geometry": { "type": "Point", "coordinates": [ -0.59144, 51.143265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05406371" }, "bbox": [ -0.4924681, 51.1558401, -0.4924681, 51.1558401 ], "geometry": { "type": "Point", "coordinates": [ -0.4924681, 51.1558401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05404771" }, "bbox": [ -0.4931199, 51.1559825, -0.4931199, 51.1559825 ], "geometry": { "type": "Point", "coordinates": [ -0.4931199, 51.1559825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97436748" }, "bbox": [ -0.6038944, 51.1822531, -0.6038944, 51.1822531 ], "geometry": { "type": "Point", "coordinates": [ -0.6038944, 51.1822531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35428311" }, "bbox": [ -0.0588126, 51.1622714, -0.0588126, 51.1622714 ], "geometry": { "type": "Point", "coordinates": [ -0.0588126, 51.1622714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35429821" }, "bbox": [ -0.05662, 51.1630505, -0.05662, 51.1630505 ], "geometry": { "type": "Point", "coordinates": [ -0.05662, 51.1630505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36421528" }, "bbox": [ -0.0541847, 51.1636055, -0.0541847, 51.1636055 ], "geometry": { "type": "Point", "coordinates": [ -0.0541847, 51.1636055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12506286" }, "bbox": [ -0.3879551, 51.2458898, -0.3879551, 51.2458898 ], "geometry": { "type": "Point", "coordinates": [ -0.3879551, 51.2458898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82405001" }, "bbox": [ -0.8218574, 51.153525, -0.8218574, 51.153525 ], "geometry": { "type": "Point", "coordinates": [ -0.8218574, 51.153525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25521362" }, "bbox": [ -0.2080809, 51.2590383, -0.2080809, 51.2590383 ], "geometry": { "type": "Point", "coordinates": [ -0.2080809, 51.2590383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99538028" }, "bbox": [ -0.5707613, 51.270012, -0.5707613, 51.270012 ], "geometry": { "type": "Point", "coordinates": [ -0.5707613, 51.270012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99538025" }, "bbox": [ -0.5707155, 51.2696741, -0.5707155, 51.2696741 ], "geometry": { "type": "Point", "coordinates": [ -0.5707155, 51.2696741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04565341" }, "bbox": [ -0.5015651, 51.2973251, -0.5015651, 51.2973251 ], "geometry": { "type": "Point", "coordinates": [ -0.5015651, 51.2973251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01563489" }, "bbox": [ -0.5479474, 51.3020804, -0.5479474, 51.3020804 ], "geometry": { "type": "Point", "coordinates": [ -0.5479474, 51.3020804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25447797" }, "bbox": [ -0.2018875, 51.1902555, -0.2018875, 51.1902555 ], "geometry": { "type": "Point", "coordinates": [ -0.2018875, 51.1902555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34522840" }, "bbox": [ -0.0767639, 51.2551879, -0.0767639, 51.2551879 ], "geometry": { "type": "Point", "coordinates": [ -0.0767639, 51.2551879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12425934" }, "bbox": [ -0.3909536, 51.1691819, -0.3909536, 51.1691819 ], "geometry": { "type": "Point", "coordinates": [ -0.3909536, 51.1691819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12427039" }, "bbox": [ -0.3893808, 51.1696881, -0.3893808, 51.1696881 ], "geometry": { "type": "Point", "coordinates": [ -0.3893808, 51.1696881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07567746" }, "bbox": [ -0.4556122, 51.2970876, -0.4556122, 51.2970876 ], "geometry": { "type": "Point", "coordinates": [ -0.4556122, 51.2970876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85395774" }, "bbox": [ -0.7778684, 51.1507432, -0.7778684, 51.1507432 ], "geometry": { "type": "Point", "coordinates": [ -0.7778684, 51.1507432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16557006" }, "bbox": [ -0.3289421, 51.283355, -0.3289421, 51.283355 ], "geometry": { "type": "Point", "coordinates": [ -0.3289421, 51.283355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87384019" }, "bbox": [ -0.7521858, 51.1363328, -0.7521858, 51.1363328 ], "geometry": { "type": "Point", "coordinates": [ -0.7521858, 51.1363328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87441639" }, "bbox": [ -0.7541502, 51.1922148, -0.7541502, 51.1922148 ], "geometry": { "type": "Point", "coordinates": [ -0.7541502, 51.1922148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88489738" }, "bbox": [ -0.7279583, 51.2276745, -0.7279583, 51.2276745 ], "geometry": { "type": "Point", "coordinates": [ -0.7279583, 51.2276745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26445060" }, "bbox": [ -0.1912322, 51.1866151, -0.1912322, 51.1866151 ], "geometry": { "type": "Point", "coordinates": [ -0.1912322, 51.1866151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26445769" }, "bbox": [ -0.1901321, 51.1874798, -0.1901321, 51.1874798 ], "geometry": { "type": "Point", "coordinates": [ -0.1901321, 51.1874798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10583692" }, "bbox": [ -0.4180964, 51.3191105, -0.4180964, 51.3191105 ], "geometry": { "type": "Point", "coordinates": [ -0.4180964, 51.3191105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21422531" }, "bbox": [ -0.2668981, 51.167272, -0.2668981, 51.167272 ], "geometry": { "type": "Point", "coordinates": [ -0.2668981, 51.167272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05340439" }, "bbox": [ -0.5011634, 51.099231, -0.5011634, 51.099231 ], "geometry": { "type": "Point", "coordinates": [ -0.5011634, 51.099231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04556255" }, "bbox": [ -0.501202, 51.2896678, -0.501202, 51.2896678 ], "geometry": { "type": "Point", "coordinates": [ -0.501202, 51.2896678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82406224" }, "bbox": [ -0.8200321, 51.1555231, -0.8200321, 51.1555231 ], "geometry": { "type": "Point", "coordinates": [ -0.8200321, 51.1555231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82409927" }, "bbox": [ -0.814963, 51.1562153, -0.814963, 51.1562153 ], "geometry": { "type": "Point", "coordinates": [ -0.814963, 51.1562153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30541206" }, "bbox": [ -0.1362807, 51.2708691, -0.1362807, 51.2708691 ], "geometry": { "type": "Point", "coordinates": [ -0.1362807, 51.2708691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97464263" }, "bbox": [ -0.606592, 51.2106511, -0.606592, 51.2106511 ], "geometry": { "type": "Point", "coordinates": [ -0.606592, 51.2106511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82428264" }, "bbox": [ -0.8164563, 51.1770571, -0.8164563, 51.1770571 ], "geometry": { "type": "Point", "coordinates": [ -0.8164563, 51.1770571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34549184" }, "bbox": [ -0.0672344, 51.2767506, -0.0672344, 51.2767506 ], "geometry": { "type": "Point", "coordinates": [ -0.0672344, 51.2767506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12469712" }, "bbox": [ -0.3841318, 51.2031555, -0.3841318, 51.2031555 ], "geometry": { "type": "Point", "coordinates": [ -0.3841318, 51.2031555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25441944" }, "bbox": [ -0.2099722, 51.1856703, -0.2099722, 51.1856703 ], "geometry": { "type": "Point", "coordinates": [ -0.2099722, 51.1856703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06441580" }, "bbox": [ -0.4821807, 51.1925802, -0.4821807, 51.1925802 ], "geometry": { "type": "Point", "coordinates": [ -0.4821807, 51.1925802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18536748" }, "bbox": [ -0.3002046, 51.2681461, -0.3002046, 51.2681461 ], "geometry": { "type": "Point", "coordinates": [ -0.3002046, 51.2681461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07383841" }, "bbox": [ -0.4666138, 51.134983, -0.4666138, 51.134983 ], "geometry": { "type": "Point", "coordinates": [ -0.4666138, 51.134983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07385724" }, "bbox": [ -0.46403, 51.1330221, -0.46403, 51.1330221 ], "geometry": { "type": "Point", "coordinates": [ -0.46403, 51.1330221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33567447" }, "bbox": [ -0.0832845, 51.2917001, -0.0832845, 51.2917001 ], "geometry": { "type": "Point", "coordinates": [ -0.0832845, 51.2917001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20630149" }, "bbox": [ -0.277975, 51.3576988, -0.277975, 51.3576988 ], "geometry": { "type": "Point", "coordinates": [ -0.277975, 51.3576988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04607934" }, "bbox": [ -0.4970694, 51.3326107, -0.4970694, 51.3326107 ], "geometry": { "type": "Point", "coordinates": [ -0.4970694, 51.3326107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04604718" }, "bbox": [ -0.501815, 51.3311811, -0.501815, 51.3311811 ], "geometry": { "type": "Point", "coordinates": [ -0.501815, 51.3311811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19469954" }, "bbox": [ -0.2837123, 51.2054581, -0.2837123, 51.2054581 ], "geometry": { "type": "Point", "coordinates": [ -0.2837123, 51.2054581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89451033" }, "bbox": [ -0.7260915, 51.2003083, -0.7260915, 51.2003083 ], "geometry": { "type": "Point", "coordinates": [ -0.7260915, 51.2003083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576686" }, "bbox": [ -0.4281179, 51.3093499, -0.4281179, 51.3093499 ], "geometry": { "type": "Point", "coordinates": [ -0.4281179, 51.3093499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87325984" }, "bbox": [ -0.7506229, 51.0882783, -0.7506229, 51.0882783 ], "geometry": { "type": "Point", "coordinates": [ -0.7506229, 51.0882783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03464349" }, "bbox": [ -0.5213269, 51.2084461, -0.5213269, 51.2084461 ], "geometry": { "type": "Point", "coordinates": [ -0.5213269, 51.2084461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21512832" }, "bbox": [ -0.2637282, 51.2480623, -0.2637282, 51.2480623 ], "geometry": { "type": "Point", "coordinates": [ -0.2637282, 51.2480623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00336115" }, "bbox": [ -0.564531, 51.088764, -0.564531, 51.088764 ], "geometry": { "type": "Point", "coordinates": [ -0.564531, 51.088764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32530965" }, "bbox": [ -0.1068649, 51.2665622, -0.1068649, 51.2665622 ], "geometry": { "type": "Point", "coordinates": [ -0.1068649, 51.2665622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83470306" }, "bbox": [ -0.812336, 51.2166962, -0.812336, 51.2166962 ], "geometry": { "type": "Point", "coordinates": [ -0.812336, 51.2166962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05341639" }, "bbox": [ -0.4994555, 51.0991836, -0.4994555, 51.0991836 ], "geometry": { "type": "Point", "coordinates": [ -0.4994555, 51.0991836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09605905" }, "bbox": [ -0.4295759, 51.3293479, -0.4295759, 51.3293479 ], "geometry": { "type": "Point", "coordinates": [ -0.4295759, 51.3293479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30503732" }, "bbox": [ -0.1338148, 51.2371852, -0.1338148, 51.2371852 ], "geometry": { "type": "Point", "coordinates": [ -0.1338148, 51.2371852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11630955" }, "bbox": [ -0.406296, 51.3601717, -0.406296, 51.3601717 ], "geometry": { "type": "Point", "coordinates": [ -0.406296, 51.3601717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07415214" }, "bbox": [ -0.4638331, 51.1594522, -0.4638331, 51.1594522 ], "geometry": { "type": "Point", "coordinates": [ -0.4638331, 51.1594522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06692705" }, "bbox": [ -0.4735634, 51.4110628, -0.4735634, 51.4110628 ], "geometry": { "type": "Point", "coordinates": [ -0.4735634, 51.4110628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35534034" }, "bbox": [ -0.0616612, 51.2629367, -0.0616612, 51.2629367 ], "geometry": { "type": "Point", "coordinates": [ -0.0616612, 51.2629367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83437943" }, "bbox": [ -0.8023784, 51.1840255, -0.8023784, 51.1840255 ], "geometry": { "type": "Point", "coordinates": [ -0.8023784, 51.1840255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83437548" }, "bbox": [ -0.8030364, 51.1844279, -0.8030364, 51.1844279 ], "geometry": { "type": "Point", "coordinates": [ -0.8030364, 51.1844279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83438347" }, "bbox": [ -0.801632, 51.1846857, -0.801632, 51.1846857 ], "geometry": { "type": "Point", "coordinates": [ -0.801632, 51.1846857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83438251" }, "bbox": [ -0.8019575, 51.1847175, -0.8019575, 51.1847175 ], "geometry": { "type": "Point", "coordinates": [ -0.8019575, 51.1847175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83438047" }, "bbox": [ -0.802567, 51.1842844, -0.802567, 51.1842844 ], "geometry": { "type": "Point", "coordinates": [ -0.802567, 51.1842844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06471081" }, "bbox": [ -0.482142, 51.2198671, -0.482142, 51.2198671 ], "geometry": { "type": "Point", "coordinates": [ -0.482142, 51.2198671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06470430" }, "bbox": [ -0.4829696, 51.2151663, -0.4829696, 51.2151663 ], "geometry": { "type": "Point", "coordinates": [ -0.4829696, 51.2151663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403613" }, "bbox": [ -0.4090499, 51.1496267, -0.4090499, 51.1496267 ], "geometry": { "type": "Point", "coordinates": [ -0.4090499, 51.1496267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29517623" }, "bbox": [ -0.1422438, 51.2455109, -0.1422438, 51.2455109 ], "geometry": { "type": "Point", "coordinates": [ -0.1422438, 51.2455109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29517425" }, "bbox": [ -0.1424838, 51.2456587, -0.1424838, 51.2456587 ], "geometry": { "type": "Point", "coordinates": [ -0.1424838, 51.2456587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03442267" }, "bbox": [ -0.5242579, 51.1919978, -0.5242579, 51.1919978 ], "geometry": { "type": "Point", "coordinates": [ -0.5242579, 51.1919978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36434475" }, "bbox": [ -0.0495018, 51.1766799, -0.0495018, 51.1766799 ], "geometry": { "type": "Point", "coordinates": [ -0.0495018, 51.1766799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26459507" }, "bbox": [ -0.184762, 51.1906632, -0.184762, 51.1906632 ], "geometry": { "type": "Point", "coordinates": [ -0.184762, 51.1906632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08549935" }, "bbox": [ -0.4389107, 51.2779917, -0.4389107, 51.2779917 ], "geometry": { "type": "Point", "coordinates": [ -0.4389107, 51.2779917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98396009" }, "bbox": [ -0.5921351, 51.142535, -0.5921351, 51.142535 ], "geometry": { "type": "Point", "coordinates": [ -0.5921351, 51.142535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15621815" }, "bbox": [ -0.3467375, 51.3470366, -0.3467375, 51.3470366 ], "geometry": { "type": "Point", "coordinates": [ -0.3467375, 51.3470366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89472567" }, "bbox": [ -0.7235436, 51.2213475, -0.7235436, 51.2213475 ], "geometry": { "type": "Point", "coordinates": [ -0.7235436, 51.2213475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29549010" }, "bbox": [ -0.1393609, 51.2711931, -0.1393609, 51.2711931 ], "geometry": { "type": "Point", "coordinates": [ -0.1393609, 51.2711931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22499087" }, "bbox": [ -0.2407252, 51.2347166, -0.2407252, 51.2347166 ], "geometry": { "type": "Point", "coordinates": [ -0.2407252, 51.2347166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17398253" }, "bbox": [ -0.3174506, 51.1429569, -0.3174506, 51.1429569 ], "geometry": { "type": "Point", "coordinates": [ -0.3174506, 51.1429569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95412346" }, "bbox": [ -0.6393649, 51.1645452, -0.6393649, 51.1645452 ], "geometry": { "type": "Point", "coordinates": [ -0.6393649, 51.1645452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94356133" }, "bbox": [ -0.6511652, 51.1096484, -0.6511652, 51.1096484 ], "geometry": { "type": "Point", "coordinates": [ -0.6511652, 51.1096484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23469509" }, "bbox": [ -0.2272665, 51.2006461, -0.2272665, 51.2006461 ], "geometry": { "type": "Point", "coordinates": [ -0.2272665, 51.2006461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97540342" }, "bbox": [ -0.6095855, 51.2804714, -0.6095855, 51.2804714 ], "geometry": { "type": "Point", "coordinates": [ -0.6095855, 51.2804714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05457422" }, "bbox": [ -0.4880587, 51.1963768, -0.4880587, 51.1963768 ], "geometry": { "type": "Point", "coordinates": [ -0.4880587, 51.1963768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43511601" }, "bbox": [ 0.04913, 51.2406119, 0.04913, 51.2406119 ], "geometry": { "type": "Point", "coordinates": [ 0.04913, 51.2406119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36534333" }, "bbox": [ -0.0459327, 51.2628225, -0.0459327, 51.2628225 ], "geometry": { "type": "Point", "coordinates": [ -0.0459327, 51.2628225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22394884" }, "bbox": [ -0.2505708, 51.1447357, -0.2505708, 51.1447357 ], "geometry": { "type": "Point", "coordinates": [ -0.2505708, 51.1447357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92516728" }, "bbox": [ -0.6733085, 51.2532692, -0.6733085, 51.2532692 ], "geometry": { "type": "Point", "coordinates": [ -0.6733085, 51.2532692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24492096" }, "bbox": [ -0.2223328, 51.2352785, -0.2223328, 51.2352785 ], "geometry": { "type": "Point", "coordinates": [ -0.2223328, 51.2352785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01413340" }, "bbox": [ -0.552136, 51.1629771, -0.552136, 51.1629771 ], "geometry": { "type": "Point", "coordinates": [ -0.552136, 51.1629771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99349905" }, "bbox": [ -0.5717667, 51.0973006, -0.5717667, 51.0973006 ], "geometry": { "type": "Point", "coordinates": [ -0.5717667, 51.0973006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24441747" }, "bbox": [ -0.2245035, 51.1855799, -0.2245035, 51.1855799 ], "geometry": { "type": "Point", "coordinates": [ -0.2245035, 51.1855799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99400274" }, "bbox": [ -0.589227, 51.1577867, -0.589227, 51.1577867 ], "geometry": { "type": "Point", "coordinates": [ -0.589227, 51.1577867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17380885" }, "bbox": [ -0.3277923, 51.1371154, -0.3277923, 51.1371154 ], "geometry": { "type": "Point", "coordinates": [ -0.3277923, 51.1371154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18508745" }, "bbox": [ -0.2982288, 51.2409649, -0.2982288, 51.2409649 ], "geometry": { "type": "Point", "coordinates": [ -0.2982288, 51.2409649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37590403" }, "bbox": [ -0.0351812, 51.3138452, -0.0351812, 51.3138452 ], "geometry": { "type": "Point", "coordinates": [ -0.0351812, 51.3138452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19413512" }, "bbox": [ -0.2947619, 51.1569509, -0.2947619, 51.1569509 ], "geometry": { "type": "Point", "coordinates": [ -0.2947619, 51.1569509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33536958" }, "bbox": [ -0.084615, 51.2661464, -0.084615, 51.2661464 ], "geometry": { "type": "Point", "coordinates": [ -0.084615, 51.2661464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22463639" }, "bbox": [ -0.249894, 51.2036771, -0.249894, 51.2036771 ], "geometry": { "type": "Point", "coordinates": [ -0.249894, 51.2036771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35456427" }, "bbox": [ -0.0602106, 51.1905857, -0.0602106, 51.1905857 ], "geometry": { "type": "Point", "coordinates": [ -0.0602106, 51.1905857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95581595" }, "bbox": [ -0.635894, 51.3217104, -0.635894, 51.3217104 ], "geometry": { "type": "Point", "coordinates": [ -0.635894, 51.3217104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10677846" }, "bbox": [ -0.4095723, 51.395086, -0.4095723, 51.395086 ], "geometry": { "type": "Point", "coordinates": [ -0.4095723, 51.395086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87384467" }, "bbox": [ -0.7513536, 51.1406109, -0.7513536, 51.1406109 ], "geometry": { "type": "Point", "coordinates": [ -0.7513536, 51.1406109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95388049" }, "bbox": [ -0.6303058, 51.1377732, -0.6303058, 51.1377732 ], "geometry": { "type": "Point", "coordinates": [ -0.6303058, 51.1377732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08371992" }, "bbox": [ -0.455199, 51.1303232, -0.455199, 51.1303232 ], "geometry": { "type": "Point", "coordinates": [ -0.455199, 51.1303232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82489137" }, "bbox": [ -0.8139425, 51.2284683, -0.8139425, 51.2284683 ], "geometry": { "type": "Point", "coordinates": [ -0.8139425, 51.2284683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88396301" }, "bbox": [ -0.7351674, 51.1438182, -0.7351674, 51.1438182 ], "geometry": { "type": "Point", "coordinates": [ -0.7351674, 51.1438182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87440836" }, "bbox": [ -0.7548592, 51.1915907, -0.7548592, 51.1915907 ], "geometry": { "type": "Point", "coordinates": [ -0.7548592, 51.1915907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15525716" }, "bbox": [ -0.3449093, 51.2567974, -0.3449093, 51.2567974 ], "geometry": { "type": "Point", "coordinates": [ -0.3449093, 51.2567974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16511357" }, "bbox": [ -0.3372782, 51.2515012, -0.3372782, 51.2515012 ], "geometry": { "type": "Point", "coordinates": [ -0.3372782, 51.2515012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15527413" }, "bbox": [ -0.3431759, 51.2565875, -0.3431759, 51.2565875 ], "geometry": { "type": "Point", "coordinates": [ -0.3431759, 51.2565875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14527012" }, "bbox": [ -0.357589, 51.2567582, -0.357589, 51.2567582 ], "geometry": { "type": "Point", "coordinates": [ -0.357589, 51.2567582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15519491" }, "bbox": [ -0.3397583, 51.2543682, -0.3397583, 51.2543682 ], "geometry": { "type": "Point", "coordinates": [ -0.3397583, 51.2543682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15511656" }, "bbox": [ -0.3512245, 51.2517783, -0.3512245, 51.2517783 ], "geometry": { "type": "Point", "coordinates": [ -0.3512245, 51.2517783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04544852" }, "bbox": [ -0.503628, 51.2804858, -0.503628, 51.2804858 ], "geometry": { "type": "Point", "coordinates": [ -0.503628, 51.2804858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04544869" }, "bbox": [ -0.5033468, 51.2817125, -0.5033468, 51.2817125 ], "geometry": { "type": "Point", "coordinates": [ -0.5033468, 51.2817125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41431443" }, "bbox": [ 0.0173601, 51.1725689, 0.0173601, 51.1725689 ], "geometry": { "type": "Point", "coordinates": [ 0.0173601, 51.1725689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93321034" }, "bbox": [ -0.6722241, 51.0829937, -0.6722241, 51.0829937 ], "geometry": { "type": "Point", "coordinates": [ -0.6722241, 51.0829937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14390339" }, "bbox": [ -0.3714091, 51.1423781, -0.3714091, 51.1423781 ], "geometry": { "type": "Point", "coordinates": [ -0.3714091, 51.1423781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14391326" }, "bbox": [ -0.3699225, 51.1412038, -0.3699225, 51.1412038 ], "geometry": { "type": "Point", "coordinates": [ -0.3699225, 51.1412038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80469108" }, "bbox": [ -0.8431688, 51.20824, -0.8431688, 51.20824 ], "geometry": { "type": "Point", "coordinates": [ -0.8431688, 51.20824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98453626" }, "bbox": [ -0.5935416, 51.198163, -0.5935416, 51.198163 ], "geometry": { "type": "Point", "coordinates": [ -0.5935416, 51.198163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19579728" }, "bbox": [ -0.2794349, 51.3033669, -0.2794349, 51.3033669 ], "geometry": { "type": "Point", "coordinates": [ -0.2794349, 51.3033669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05331498" }, "bbox": [ -0.4998458, 51.0955484, -0.4998458, 51.0955484 ], "geometry": { "type": "Point", "coordinates": [ -0.4998458, 51.0955484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02433438" }, "bbox": [ -0.5367781, 51.1809561, -0.5367781, 51.1809561 ], "geometry": { "type": "Point", "coordinates": [ -0.5367781, 51.1809561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02432547" }, "bbox": [ -0.53801, 51.1813372, -0.53801, 51.1813372 ], "geometry": { "type": "Point", "coordinates": [ -0.53801, 51.1813372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35540699" }, "bbox": [ -0.0648797, 51.277947, -0.0648797, 51.277947 ], "geometry": { "type": "Point", "coordinates": [ -0.0648797, 51.277947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11434301" }, "bbox": [ -0.4073812, 51.1760821, -0.4073812, 51.1760821 ], "geometry": { "type": "Point", "coordinates": [ -0.4073812, 51.1760821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11433802" }, "bbox": [ -0.4071238, 51.1750695, -0.4071238, 51.1750695 ], "geometry": { "type": "Point", "coordinates": [ -0.4071238, 51.1750695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07406528" }, "bbox": [ -0.4610348, 51.1527218, -0.4610348, 51.1527218 ], "geometry": { "type": "Point", "coordinates": [ -0.4610348, 51.1527218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24562140" }, "bbox": [ -0.2200131, 51.2931059, -0.2200131, 51.2931059 ], "geometry": { "type": "Point", "coordinates": [ -0.2200131, 51.2931059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35425869" }, "bbox": [ -0.0622423, 51.1673802, -0.0622423, 51.1673802 ], "geometry": { "type": "Point", "coordinates": [ -0.0622423, 51.1673802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02397186" }, "bbox": [ -0.5328085, 51.1488377, -0.5328085, 51.1488377 ], "geometry": { "type": "Point", "coordinates": [ -0.5328085, 51.1488377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03400963" }, "bbox": [ -0.5269407, 51.1554289, -0.5269407, 51.1554289 ], "geometry": { "type": "Point", "coordinates": [ -0.5269407, 51.1554289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03401231" }, "bbox": [ -0.5271504, 51.1528397, -0.5271504, 51.1528397 ], "geometry": { "type": "Point", "coordinates": [ -0.5271504, 51.1528397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03403285" }, "bbox": [ -0.5242334, 51.1576069, -0.5242334, 51.1576069 ], "geometry": { "type": "Point", "coordinates": [ -0.5242334, 51.1576069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03403567" }, "bbox": [ -0.5236246, 51.1561736, -0.5236246, 51.1561736 ], "geometry": { "type": "Point", "coordinates": [ -0.5236246, 51.1561736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02408428" }, "bbox": [ -0.5307128, 51.1525716, -0.5307128, 51.1525716 ], "geometry": { "type": "Point", "coordinates": [ -0.5307128, 51.1525716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09520636" }, "bbox": [ -0.4381444, 51.2602921, -0.4381444, 51.2602921 ], "geometry": { "type": "Point", "coordinates": [ -0.4381444, 51.2602921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95344367" }, "bbox": [ -0.638326, 51.1034018, -0.638326, 51.1034018 ], "geometry": { "type": "Point", "coordinates": [ -0.638326, 51.1034018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96357495" }, "bbox": [ -0.617121, 51.114372, -0.617121, 51.114372 ], "geometry": { "type": "Point", "coordinates": [ -0.617121, 51.114372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353348" }, "bbox": [ -0.6109429, 51.11033, -0.6109429, 51.11033 ], "geometry": { "type": "Point", "coordinates": [ -0.6109429, 51.11033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42422458" }, "bbox": [ 0.0330259, 51.1647651, 0.0330259, 51.1647651 ], "geometry": { "type": "Point", "coordinates": [ 0.0330259, 51.1647651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42422875" }, "bbox": [ 0.0336299, 51.1662772, 0.0336299, 51.1662772 ], "geometry": { "type": "Point", "coordinates": [ 0.0336299, 51.1662772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42424576" }, "bbox": [ 0.0360145, 51.1665363, 0.0360145, 51.1665363 ], "geometry": { "type": "Point", "coordinates": [ 0.0360145, 51.1665363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42426793" }, "bbox": [ 0.0392604, 51.1678752, 0.0392604, 51.1678752 ], "geometry": { "type": "Point", "coordinates": [ 0.0392604, 51.1678752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425860" }, "bbox": [ 0.0379345, 51.1649436, 0.0379345, 51.1649436 ], "geometry": { "type": "Point", "coordinates": [ 0.0379345, 51.1649436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425648" }, "bbox": [ 0.0374522, 51.1638357, 0.0374522, 51.1638357 ], "geometry": { "type": "Point", "coordinates": [ 0.0374522, 51.1638357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36590903" }, "bbox": [ -0.0483135, 51.3144276, -0.0483135, 51.3144276 ], "geometry": { "type": "Point", "coordinates": [ -0.0483135, 51.3144276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03404235" }, "bbox": [ -0.522903, 51.1529572, -0.522903, 51.1529572 ], "geometry": { "type": "Point", "coordinates": [ -0.522903, 51.1529572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18443035" }, "bbox": [ -0.3085996, 51.1861844, -0.3085996, 51.1861844 ], "geometry": { "type": "Point", "coordinates": [ -0.3085996, 51.1861844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18441609" }, "bbox": [ -0.3099111, 51.1842606, -0.3099111, 51.1842606 ], "geometry": { "type": "Point", "coordinates": [ -0.3099111, 51.1842606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18441823" }, "bbox": [ -0.3104211, 51.185209, -0.3104211, 51.185209 ], "geometry": { "type": "Point", "coordinates": [ -0.3104211, 51.185209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18440807" }, "bbox": [ -0.3119889, 51.1837602, -0.3119889, 51.1837602 ], "geometry": { "type": "Point", "coordinates": [ -0.3119889, 51.1837602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18443715" }, "bbox": [ -0.3078189, 51.1844307, -0.3078189, 51.1844307 ], "geometry": { "type": "Point", "coordinates": [ -0.3078189, 51.1844307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94476597" }, "bbox": [ -0.6460599, 51.2231777, -0.6460599, 51.2231777 ], "geometry": { "type": "Point", "coordinates": [ -0.6460599, 51.2231777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94487708" }, "bbox": [ -0.6441136, 51.2241748, -0.6441136, 51.2241748 ], "geometry": { "type": "Point", "coordinates": [ -0.6441136, 51.2241748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95483912" }, "bbox": [ -0.6352957, 51.2243451, -0.6352957, 51.2243451 ], "geometry": { "type": "Point", "coordinates": [ -0.6352957, 51.2243451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24524136" }, "bbox": [ -0.2180821, 51.2570116, -0.2180821, 51.2570116 ], "geometry": { "type": "Point", "coordinates": [ -0.2180821, 51.2570116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27541666" }, "bbox": [ -0.1783312, 51.2767021, -0.1783312, 51.2767021 ], "geometry": { "type": "Point", "coordinates": [ -0.1783312, 51.2767021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98350451" }, "bbox": [ -0.6009785, 51.1108671, -0.6009785, 51.1108671 ], "geometry": { "type": "Point", "coordinates": [ -0.6009785, 51.1108671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18459041" }, "bbox": [ -0.2992557, 51.1963355, -0.2992557, 51.1963355 ], "geometry": { "type": "Point", "coordinates": [ -0.2992557, 51.1963355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20453787" }, "bbox": [ -0.2785528, 51.1993734, -0.2785528, 51.1993734 ], "geometry": { "type": "Point", "coordinates": [ -0.2785528, 51.1993734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89444701" }, "bbox": [ -0.7211359, 51.1886507, -0.7211359, 51.1886507 ], "geometry": { "type": "Point", "coordinates": [ -0.7211359, 51.1886507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35473650" }, "bbox": [ -0.063365, 51.2107648, -0.063365, 51.2107648 ], "geometry": { "type": "Point", "coordinates": [ -0.063365, 51.2107648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86426718" }, "bbox": [ -0.761455, 51.1723261, -0.761455, 51.1723261 ], "geometry": { "type": "Point", "coordinates": [ -0.761455, 51.1723261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06670296" }, "bbox": [ -0.4770668, 51.4008877, -0.4770668, 51.4008877 ], "geometry": { "type": "Point", "coordinates": [ -0.4770668, 51.4008877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05686628" }, "bbox": [ -0.4823621, 51.4038661, -0.4823621, 51.4038661 ], "geometry": { "type": "Point", "coordinates": [ -0.4823621, 51.4038661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02419817" }, "bbox": [ -0.528696, 51.1604606, -0.528696, 51.1604606 ], "geometry": { "type": "Point", "coordinates": [ -0.528696, 51.1604606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02419201" }, "bbox": [ -0.5295578, 51.1590443, -0.5295578, 51.1590443 ], "geometry": { "type": "Point", "coordinates": [ -0.5295578, 51.1590443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02415725" }, "bbox": [ -0.5336975, 51.1591704, -0.5336975, 51.1591704 ], "geometry": { "type": "Point", "coordinates": [ -0.5336975, 51.1591704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03404380" }, "bbox": [ -0.5221852, 51.1571993, -0.5221852, 51.1571993 ], "geometry": { "type": "Point", "coordinates": [ -0.5221852, 51.1571993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407181" }, "bbox": [ -0.5324811, 51.1574417, -0.5324811, 51.1574417 ], "geometry": { "type": "Point", "coordinates": [ -0.5324811, 51.1574417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407865" }, "bbox": [ -0.5315098, 51.1557753, -0.5315098, 51.1557753 ], "geometry": { "type": "Point", "coordinates": [ -0.5315098, 51.1557753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407875" }, "bbox": [ -0.5323702, 51.1569564, -0.5323702, 51.1569564 ], "geometry": { "type": "Point", "coordinates": [ -0.5323702, 51.1569564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03412840" }, "bbox": [ -0.5247297, 51.1622304, -0.5247297, 51.1622304 ], "geometry": { "type": "Point", "coordinates": [ -0.5247297, 51.1622304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411809" }, "bbox": [ -0.5261605, 51.1598775, -0.5261605, 51.1598775 ], "geometry": { "type": "Point", "coordinates": [ -0.5261605, 51.1598775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03414200" }, "bbox": [ -0.5223863, 51.1584976, -0.5223863, 51.1584976 ], "geometry": { "type": "Point", "coordinates": [ -0.5223863, 51.1584976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411207" }, "bbox": [ -0.5263645, 51.1596261, -0.5263645, 51.1596261 ], "geometry": { "type": "Point", "coordinates": [ -0.5263645, 51.1596261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411903" }, "bbox": [ -0.5249211, 51.1591699, -0.5249211, 51.1591699 ], "geometry": { "type": "Point", "coordinates": [ -0.5249211, 51.1591699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13398901" }, "bbox": [ -0.3734402, 51.1390266, -0.3734402, 51.1390266 ], "geometry": { "type": "Point", "coordinates": [ -0.3734402, 51.1390266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21471831" }, "bbox": [ -0.2661398, 51.2121878, -0.2661398, 51.2121878 ], "geometry": { "type": "Point", "coordinates": [ -0.2661398, 51.2121878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11515489" }, "bbox": [ -0.4028064, 51.2554723, -0.4028064, 51.2554723 ], "geometry": { "type": "Point", "coordinates": [ -0.4028064, 51.2554723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407347" }, "bbox": [ -0.5323634, 51.1543866, -0.5323634, 51.1543866 ], "geometry": { "type": "Point", "coordinates": [ -0.5323634, 51.1543866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08363155" }, "bbox": [ -0.4533228, 51.1180178, -0.4533228, 51.1180178 ], "geometry": { "type": "Point", "coordinates": [ -0.4533228, 51.1180178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17448406" }, "bbox": [ -0.315308, 51.1836816, -0.315308, 51.1836816 ], "geometry": { "type": "Point", "coordinates": [ -0.315308, 51.1836816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19423573" }, "bbox": [ -0.2940015, 51.1715284, -0.2940015, 51.1715284 ], "geometry": { "type": "Point", "coordinates": [ -0.2940015, 51.1715284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25412984" }, "bbox": [ -0.2093662, 51.161971, -0.2093662, 51.161971 ], "geometry": { "type": "Point", "coordinates": [ -0.2093662, 51.161971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25424233" }, "bbox": [ -0.2075109, 51.166603, -0.2075109, 51.166603 ], "geometry": { "type": "Point", "coordinates": [ -0.2075109, 51.166603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25423356" }, "bbox": [ -0.2087037, 51.1686855, -0.2087037, 51.1686855 ], "geometry": { "type": "Point", "coordinates": [ -0.2087037, 51.1686855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22400518" }, "bbox": [ -0.256193, 51.148, -0.256193, 51.148 ], "geometry": { "type": "Point", "coordinates": [ -0.256193, 51.148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24402633" }, "bbox": [ -0.2248955, 51.1486593, -0.2248955, 51.1486593 ], "geometry": { "type": "Point", "coordinates": [ -0.2248955, 51.1486593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24412086" }, "bbox": [ -0.2251769, 51.1625318, -0.2251769, 51.1625318 ], "geometry": { "type": "Point", "coordinates": [ -0.2251769, 51.1625318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30455236" }, "bbox": [ -0.133843, 51.1925649, -0.133843, 51.1925649 ], "geometry": { "type": "Point", "coordinates": [ -0.133843, 51.1925649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19514175" }, "bbox": [ -0.2911019, 51.2519619, -0.2911019, 51.2519619 ], "geometry": { "type": "Point", "coordinates": [ -0.2911019, 51.2519619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19514674" }, "bbox": [ -0.2896477, 51.2525872, -0.2896477, 51.2525872 ], "geometry": { "type": "Point", "coordinates": [ -0.2896477, 51.2525872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19523302" }, "bbox": [ -0.2911054, 51.2547934, -0.2911054, 51.2547934 ], "geometry": { "type": "Point", "coordinates": [ -0.2911054, 51.2547934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19511296" }, "bbox": [ -0.2948235, 51.2540787, -0.2948235, 51.2540787 ], "geometry": { "type": "Point", "coordinates": [ -0.2948235, 51.2540787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19521087" }, "bbox": [ -0.2933344, 51.2601519, -0.2933344, 51.2601519 ], "geometry": { "type": "Point", "coordinates": [ -0.2933344, 51.2601519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18538809" }, "bbox": [ -0.2971466, 51.2646282, -0.2971466, 51.2646282 ], "geometry": { "type": "Point", "coordinates": [ -0.2971466, 51.2646282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18532530" }, "bbox": [ -0.3059953, 51.2667066, -0.3059953, 51.2667066 ], "geometry": { "type": "Point", "coordinates": [ -0.3059953, 51.2667066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18533010" }, "bbox": [ -0.305817, 51.2648198, -0.305817, 51.2648198 ], "geometry": { "type": "Point", "coordinates": [ -0.305817, 51.2648198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18533332" }, "bbox": [ -0.3053126, 51.2667608, -0.3053126, 51.2667608 ], "geometry": { "type": "Point", "coordinates": [ -0.3053126, 51.2667608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17529890" }, "bbox": [ -0.3102842, 51.2630849, -0.3102842, 51.2630849 ], "geometry": { "type": "Point", "coordinates": [ -0.3102842, 51.2630849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19521978" }, "bbox": [ -0.2925194, 51.2614601, -0.2925194, 51.2614601 ], "geometry": { "type": "Point", "coordinates": [ -0.2925194, 51.2614601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19522986" }, "bbox": [ -0.2919005, 51.2629265, -0.2919005, 51.2629265 ], "geometry": { "type": "Point", "coordinates": [ -0.2919005, 51.2629265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18535507" }, "bbox": [ -0.3023746, 51.2640495, -0.3023746, 51.2640495 ], "geometry": { "type": "Point", "coordinates": [ -0.3023746, 51.2640495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18536702" }, "bbox": [ -0.3002386, 51.26385, -0.3002386, 51.26385 ], "geometry": { "type": "Point", "coordinates": [ -0.3002386, 51.26385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18529453" }, "bbox": [ -0.2969557, 51.2595227, -0.2969557, 51.2595227 ], "geometry": { "type": "Point", "coordinates": [ -0.2969557, 51.2595227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18528242" }, "bbox": [ -0.2987415, 51.2580725, -0.2987415, 51.2580725 ], "geometry": { "type": "Point", "coordinates": [ -0.2987415, 51.2580725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35526109" }, "bbox": [ -0.058047, 51.2517856, -0.058047, 51.2517856 ], "geometry": { "type": "Point", "coordinates": [ -0.058047, 51.2517856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87360326" }, "bbox": [ -0.7579894, 51.1190788, -0.7579894, 51.1190788 ], "geometry": { "type": "Point", "coordinates": [ -0.7579894, 51.1190788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87361037" }, "bbox": [ -0.7567874, 51.1200948, -0.7567874, 51.1200948 ], "geometry": { "type": "Point", "coordinates": [ -0.7567874, 51.1200948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99452072" }, "bbox": [ -0.5814107, 51.2021658, -0.5814107, 51.2021658 ], "geometry": { "type": "Point", "coordinates": [ -0.5814107, 51.2021658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25452812" }, "bbox": [ -0.208141, 51.1914149, -0.208141, 51.1914149 ], "geometry": { "type": "Point", "coordinates": [ -0.208141, 51.1914149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21549999" }, "bbox": [ -0.2520551, 51.2811028, -0.2520551, 51.2811028 ], "geometry": { "type": "Point", "coordinates": [ -0.2520551, 51.2811028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21549894" }, "bbox": [ -0.2522476, 51.2806129, -0.2522476, 51.2806129 ], "geometry": { "type": "Point", "coordinates": [ -0.2522476, 51.2806129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22540793" }, "bbox": [ -0.2510208, 51.2805269, -0.2510208, 51.2805269 ], "geometry": { "type": "Point", "coordinates": [ -0.2510208, 51.2805269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87361133" }, "bbox": [ -0.7566465, 51.1196839, -0.7566465, 51.1196839 ], "geometry": { "type": "Point", "coordinates": [ -0.7566465, 51.1196839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19522518" }, "bbox": [ -0.2927, 51.2560576, -0.2927, 51.2560576 ], "geometry": { "type": "Point", "coordinates": [ -0.2927, 51.2560576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21471684" }, "bbox": [ -0.2663267, 51.2171807, -0.2663267, 51.2171807 ], "geometry": { "type": "Point", "coordinates": [ -0.2663267, 51.2171807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21471321" }, "bbox": [ -0.2671824, 51.2114135, -0.2671824, 51.2114135 ], "geometry": { "type": "Point", "coordinates": [ -0.2671824, 51.2114135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87362341" }, "bbox": [ -0.7549819, 51.1204375, -0.7549819, 51.1204375 ], "geometry": { "type": "Point", "coordinates": [ -0.7549819, 51.1204375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14441848" }, "bbox": [ -0.3672807, 51.1880841, -0.3672807, 51.1880841 ], "geometry": { "type": "Point", "coordinates": [ -0.3672807, 51.1880841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40424698" }, "bbox": [ 0.0078627, 51.1689239, 0.0078627, 51.1689239 ], "geometry": { "type": "Point", "coordinates": [ 0.0078627, 51.1689239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40424199" }, "bbox": [ 0.006171, 51.1689717, 0.006171, 51.1689717 ], "geometry": { "type": "Point", "coordinates": [ 0.006171, 51.1689717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03372397" }, "bbox": [ -0.5260292, 51.1319299, -0.5260292, 51.1319299 ], "geometry": { "type": "Point", "coordinates": [ -0.5260292, 51.1319299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02378070" }, "bbox": [ -0.5322745, 51.1296031, -0.5322745, 51.1296031 ], "geometry": { "type": "Point", "coordinates": [ -0.5322745, 51.1296031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02379691" }, "bbox": [ -0.5296794, 51.1312452, -0.5296794, 51.1312452 ], "geometry": { "type": "Point", "coordinates": [ -0.5296794, 51.1312452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98356842" }, "bbox": [ -0.5914955, 51.1098695, -0.5914955, 51.1098695 ], "geometry": { "type": "Point", "coordinates": [ -0.5914955, 51.1098695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98356031" }, "bbox": [ -0.5930791, 51.1088826, -0.5930791, 51.1088826 ], "geometry": { "type": "Point", "coordinates": [ -0.5930791, 51.1088826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95390199" }, "bbox": [ -0.6429569, 51.1512557, -0.6429569, 51.1512557 ], "geometry": { "type": "Point", "coordinates": [ -0.6429569, 51.1512557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40485575" }, "bbox": [ 0.0107211, 51.2202401, 0.0107211, 51.2202401 ], "geometry": { "type": "Point", "coordinates": [ 0.0107211, 51.2202401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24445401" }, "bbox": [ -0.2194432, 51.181962, -0.2194432, 51.181962 ], "geometry": { "type": "Point", "coordinates": [ -0.2194432, 51.181962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22424567" }, "bbox": [ -0.2497779, 51.1702375, -0.2497779, 51.1702375 ], "geometry": { "type": "Point", "coordinates": [ -0.2497779, 51.1702375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11422889" }, "bbox": [ -0.4094999, 51.1745114, -0.4094999, 51.1745114 ], "geometry": { "type": "Point", "coordinates": [ -0.4094999, 51.1745114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10377521" }, "bbox": [ -0.418944, 51.1235355, -0.418944, 51.1235355 ], "geometry": { "type": "Point", "coordinates": [ -0.418944, 51.1235355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01693127" }, "bbox": [ -0.5451377, 51.4134448, -0.5451377, 51.4134448 ], "geometry": { "type": "Point", "coordinates": [ -0.5451377, 51.4134448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02766050" }, "bbox": [ -0.5238889, 51.4780467, -0.5238889, 51.4780467 ], "geometry": { "type": "Point", "coordinates": [ -0.5238889, 51.4780467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02698900" }, "bbox": [ -0.5220409, 51.4106401, -0.5220409, 51.4106401 ], "geometry": { "type": "Point", "coordinates": [ -0.5220409, 51.4106401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02559875" }, "bbox": [ -0.5240264, 51.2917083, -0.5240264, 51.2917083 ], "geometry": { "type": "Point", "coordinates": [ -0.5240264, 51.2917083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05743049" }, "bbox": [ -0.4841267, 51.459709, -0.4841267, 51.459709 ], "geometry": { "type": "Point", "coordinates": [ -0.4841267, 51.459709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98728768" }, "bbox": [ -0.5787342, 51.4444417, -0.5787342, 51.4444417 ], "geometry": { "type": "Point", "coordinates": [ -0.5787342, 51.4444417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98729757" }, "bbox": [ -0.5771457, 51.4435347, -0.5771457, 51.4435347 ], "geometry": { "type": "Point", "coordinates": [ -0.5771457, 51.4435347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720472" }, "bbox": [ -0.5761047, 51.4448522, -0.5761047, 51.4448522 ], "geometry": { "type": "Point", "coordinates": [ -0.5761047, 51.4448522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720498" }, "bbox": [ -0.5762313, 51.4472037, -0.5762313, 51.4472037 ], "geometry": { "type": "Point", "coordinates": [ -0.5762313, 51.4472037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99721482" }, "bbox": [ -0.5746211, 51.4456298, -0.5746211, 51.4456298 ], "geometry": { "type": "Point", "coordinates": [ -0.5746211, 51.4456298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99721285" }, "bbox": [ -0.5748819, 51.446006, -0.5748819, 51.446006 ], "geometry": { "type": "Point", "coordinates": [ -0.5748819, 51.446006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720557" }, "bbox": [ -0.5756327, 51.4435007, -0.5756327, 51.4435007 ], "geometry": { "type": "Point", "coordinates": [ -0.5756327, 51.4435007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720678" }, "bbox": [ -0.5759499, 51.4453407, -0.5759499, 51.4453407 ], "geometry": { "type": "Point", "coordinates": [ -0.5759499, 51.4453407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99720782" }, "bbox": [ -0.5756711, 51.4456588, -0.5756711, 51.4456588 ], "geometry": { "type": "Point", "coordinates": [ -0.5756711, 51.4456588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99731507" }, "bbox": [ -0.5743117, 51.4479128, -0.5743117, 51.4479128 ], "geometry": { "type": "Point", "coordinates": [ -0.5743117, 51.4479128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17524865" }, "bbox": [ -0.3175596, 51.2609286, -0.3175596, 51.2609286 ], "geometry": { "type": "Point", "coordinates": [ -0.3175596, 51.2609286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18527725" }, "bbox": [ -0.2995836, 51.2572894, -0.2995836, 51.2572894 ], "geometry": { "type": "Point", "coordinates": [ -0.2995836, 51.2572894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18524186" }, "bbox": [ -0.3041755, 51.2625735, -0.3041755, 51.2625735 ], "geometry": { "type": "Point", "coordinates": [ -0.3041755, 51.2625735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18528229" }, "bbox": [ -0.299955, 51.2577343, -0.299955, 51.2577343 ], "geometry": { "type": "Point", "coordinates": [ -0.299955, 51.2577343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10538073" }, "bbox": [ -0.4129613, 51.2718921, -0.4129613, 51.2718921 ], "geometry": { "type": "Point", "coordinates": [ -0.4129613, 51.2718921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10537386" }, "bbox": [ -0.4140092, 51.2733594, -0.4140092, 51.2733594 ], "geometry": { "type": "Point", "coordinates": [ -0.4140092, 51.2733594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97477956" }, "bbox": [ -0.6013578, 51.2193528, -0.6013578, 51.2193528 ], "geometry": { "type": "Point", "coordinates": [ -0.6013578, 51.2193528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97477947" }, "bbox": [ -0.6008654, 51.218065, -0.6008654, 51.218065 ], "geometry": { "type": "Point", "coordinates": [ -0.6008654, 51.218065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97479669" }, "bbox": [ -0.5981145, 51.2201688, -0.5981145, 51.2201688 ], "geometry": { "type": "Point", "coordinates": [ -0.5981145, 51.2201688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98470354" }, "bbox": [ -0.5978165, 51.2187015, -0.5978165, 51.2187015 ], "geometry": { "type": "Point", "coordinates": [ -0.5978165, 51.2187015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97464778" }, "bbox": [ -0.6059268, 51.2119636, -0.6059268, 51.2119636 ], "geometry": { "type": "Point", "coordinates": [ -0.6059268, 51.2119636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97464640" }, "bbox": [ -0.6063611, 51.2082148, -0.6063611, 51.2082148 ], "geometry": { "type": "Point", "coordinates": [ -0.6063611, 51.2082148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96590320" }, "bbox": [ -0.6232398, 51.3237717, -0.6232398, 51.3237717 ], "geometry": { "type": "Point", "coordinates": [ -0.6232398, 51.3237717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95587993" }, "bbox": [ -0.6266727, 51.3214285, -0.6266727, 51.3214285 ], "geometry": { "type": "Point", "coordinates": [ -0.6266727, 51.3214285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95589597" }, "bbox": [ -0.6244462, 51.321764, -0.6244462, 51.321764 ], "geometry": { "type": "Point", "coordinates": [ -0.6244462, 51.321764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95589688" }, "bbox": [ -0.6243227, 51.3209481, -0.6243227, 51.3209481 ], "geometry": { "type": "Point", "coordinates": [ -0.6243227, 51.3209481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95599211" }, "bbox": [ -0.6248048, 51.3229479, -0.6248048, 51.3229479 ], "geometry": { "type": "Point", "coordinates": [ -0.6248048, 51.3229479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95597806" }, "bbox": [ -0.6268477, 51.3225504, -0.6268477, 51.3225504 ], "geometry": { "type": "Point", "coordinates": [ -0.6268477, 51.3225504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95598621" }, "bbox": [ -0.6256252, 51.3239418, -0.6256252, 51.3239418 ], "geometry": { "type": "Point", "coordinates": [ -0.6256252, 51.3239418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19533748" }, "bbox": [ -0.2902857, 51.268033, -0.2902857, 51.268033 ], "geometry": { "type": "Point", "coordinates": [ -0.2902857, 51.268033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19531767" }, "bbox": [ -0.2929951, 51.2696601, -0.2929951, 51.2696601 ], "geometry": { "type": "Point", "coordinates": [ -0.2929951, 51.2696601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19532980" }, "bbox": [ -0.29157, 51.2711134, -0.29157, 51.2711134 ], "geometry": { "type": "Point", "coordinates": [ -0.29157, 51.2711134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19531260" }, "bbox": [ -0.2936862, 51.2694361, -0.2936862, 51.2694361 ], "geometry": { "type": "Point", "coordinates": [ -0.2936862, 51.2694361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18539962" }, "bbox": [ -0.2955723, 51.2688407, -0.2955723, 51.2688407 ], "geometry": { "type": "Point", "coordinates": [ -0.2955723, 51.2688407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18539145" }, "bbox": [ -0.2977218, 51.2677786, -0.2977218, 51.2677786 ], "geometry": { "type": "Point", "coordinates": [ -0.2977218, 51.2677786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88476986" }, "bbox": [ -0.7313406, 51.2230595, -0.7313406, 51.2230595 ], "geometry": { "type": "Point", "coordinates": [ -0.7313406, 51.2230595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34431827" }, "bbox": [ -0.0823035, 51.1731245, -0.0823035, 51.1731245 ], "geometry": { "type": "Point", "coordinates": [ -0.0823035, 51.1731245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24446008" }, "bbox": [ -0.2184601, 51.1824961, -0.2184601, 51.1824961 ], "geometry": { "type": "Point", "coordinates": [ -0.2184601, 51.1824961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24446116" }, "bbox": [ -0.2189988, 51.1833056, -0.2189988, 51.1833056 ], "geometry": { "type": "Point", "coordinates": [ -0.2189988, 51.1833056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24446321" }, "bbox": [ -0.2180014, 51.1835577, -0.2180014, 51.1835577 ], "geometry": { "type": "Point", "coordinates": [ -0.2180014, 51.1835577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24446711" }, "bbox": [ -0.2163892, 51.1823612, -0.2163892, 51.1823612 ], "geometry": { "type": "Point", "coordinates": [ -0.2163892, 51.1823612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18384234" }, "bbox": [ -0.3088452, 51.1321937, -0.3088452, 51.1321937 ], "geometry": { "type": "Point", "coordinates": [ -0.3088452, 51.1321937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91453127" }, "bbox": [ -0.694725, 51.199701, -0.694725, 51.199701 ], "geometry": { "type": "Point", "coordinates": [ -0.694725, 51.199701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13390665" }, "bbox": [ -0.3849193, 51.1451053, -0.3849193, 51.1451053 ], "geometry": { "type": "Point", "coordinates": [ -0.3849193, 51.1451053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13390658" }, "bbox": [ -0.3852007, 51.1441045, -0.3852007, 51.1441045 ], "geometry": { "type": "Point", "coordinates": [ -0.3852007, 51.1441045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13405558" }, "bbox": [ -0.3773429, 51.1532815, -0.3773429, 51.1532815 ], "geometry": { "type": "Point", "coordinates": [ -0.3773429, 51.1532815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17393109" }, "bbox": [ -0.3242482, 51.1393557, -0.3242482, 51.1393557 ], "geometry": { "type": "Point", "coordinates": [ -0.3242482, 51.1393557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06695710" }, "bbox": [ -0.4676, 51.4103118, -0.4676, 51.4103118 ], "geometry": { "type": "Point", "coordinates": [ -0.4676, 51.4103118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41440510" }, "bbox": [ 0.0165456, 51.1788036, 0.0165456, 51.1788036 ], "geometry": { "type": "Point", "coordinates": [ 0.0165456, 51.1788036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18526162" }, "bbox": [ -0.3017051, 51.2605836, -0.3017051, 51.2605836 ], "geometry": { "type": "Point", "coordinates": [ -0.3017051, 51.2605836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19530704" }, "bbox": [ -0.2947565, 51.2642646, -0.2947565, 51.2642646 ], "geometry": { "type": "Point", "coordinates": [ -0.2947565, 51.2642646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22464912" }, "bbox": [ -0.2484641, 51.2011973, -0.2484641, 51.2011973 ], "geometry": { "type": "Point", "coordinates": [ -0.2484641, 51.2011973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22433978" }, "bbox": [ -0.2504322, 51.1802155, -0.2504322, 51.1802155 ], "geometry": { "type": "Point", "coordinates": [ -0.2504322, 51.1802155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92485842" }, "bbox": [ -0.6754859, 51.2275784, -0.6754859, 51.2275784 ], "geometry": { "type": "Point", "coordinates": [ -0.6754859, 51.2275784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07576440" }, "bbox": [ -0.4582365, 51.3056546, -0.4582365, 51.3056546 ], "geometry": { "type": "Point", "coordinates": [ -0.4582365, 51.3056546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03742208" }, "bbox": [ -0.515517, 51.4579514, -0.515517, 51.4579514 ], "geometry": { "type": "Point", "coordinates": [ -0.515517, 51.4579514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17434899" }, "bbox": [ -0.3206004, 51.1830448, -0.3206004, 51.1830448 ], "geometry": { "type": "Point", "coordinates": [ -0.3206004, 51.1830448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21433182" }, "bbox": [ -0.266237, 51.1806081, -0.266237, 51.1806081 ], "geometry": { "type": "Point", "coordinates": [ -0.266237, 51.1806081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21431465" }, "bbox": [ -0.2680333, 51.1790032, -0.2680333, 51.1790032 ], "geometry": { "type": "Point", "coordinates": [ -0.2680333, 51.1790032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11423549" }, "bbox": [ -0.4086991, 51.1703015, -0.4086991, 51.1703015 ], "geometry": { "type": "Point", "coordinates": [ -0.4086991, 51.1703015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21433761" }, "bbox": [ -0.2648597, 51.1791012, -0.2648597, 51.1791012 ], "geometry": { "type": "Point", "coordinates": [ -0.2648597, 51.1791012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21433249" }, "bbox": [ -0.265848, 51.1777533, -0.265848, 51.1777533 ], "geometry": { "type": "Point", "coordinates": [ -0.265848, 51.1777533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03440561" }, "bbox": [ -0.5268632, 51.1914455, -0.5268632, 51.1914455 ], "geometry": { "type": "Point", "coordinates": [ -0.5268632, 51.1914455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09369548" }, "bbox": [ -0.4304861, 51.117057, -0.4304861, 51.117057 ], "geometry": { "type": "Point", "coordinates": [ -0.4304861, 51.117057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09369942" }, "bbox": [ -0.4297101, 51.1165281, -0.4297101, 51.1165281 ], "geometry": { "type": "Point", "coordinates": [ -0.4297101, 51.1165281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10361057" }, "bbox": [ -0.4282488, 51.1173381, -0.4282488, 51.1173381 ], "geometry": { "type": "Point", "coordinates": [ -0.4282488, 51.1173381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05352879" }, "bbox": [ -0.4973244, 51.1118669, -0.4973244, 51.1118669 ], "geometry": { "type": "Point", "coordinates": [ -0.4973244, 51.1118669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05353779" }, "bbox": [ -0.4959813, 51.11172, -0.4959813, 51.11172 ], "geometry": { "type": "Point", "coordinates": [ -0.4959813, 51.11172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05354192" }, "bbox": [ -0.495337, 51.1129853, -0.495337, 51.1129853 ], "geometry": { "type": "Point", "coordinates": [ -0.495337, 51.1129853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05354287" }, "bbox": [ -0.4952107, 51.1124876, -0.4952107, 51.1124876 ], "geometry": { "type": "Point", "coordinates": [ -0.4952107, 51.1124876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21420905" }, "bbox": [ -0.2696575, 51.1650252, -0.2696575, 51.1650252 ], "geometry": { "type": "Point", "coordinates": [ -0.2696575, 51.1650252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22430959" }, "bbox": [ -0.2552389, 51.178305, -0.2552389, 51.178305 ], "geometry": { "type": "Point", "coordinates": [ -0.2552389, 51.178305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22509655" }, "bbox": [ -0.239909, 51.2410483, -0.239909, 51.2410483 ], "geometry": { "type": "Point", "coordinates": [ -0.239909, 51.2410483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13523794" }, "bbox": [ -0.3759884, 51.2642605, -0.3759884, 51.2642605 ], "geometry": { "type": "Point", "coordinates": [ -0.3759884, 51.2642605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13524899" }, "bbox": [ -0.3747991, 51.2649385, -0.3747991, 51.2649385 ], "geometry": { "type": "Point", "coordinates": [ -0.3747991, 51.2649385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13534450" }, "bbox": [ -0.3758585, 51.2693306, -0.3758585, 51.2693306 ], "geometry": { "type": "Point", "coordinates": [ -0.3758585, 51.2693306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05550351" }, "bbox": [ -0.4949785, 51.2890607, -0.4949785, 51.2890607 ], "geometry": { "type": "Point", "coordinates": [ -0.4949785, 51.2890607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04557236" }, "bbox": [ -0.4997534, 51.287752, -0.4997534, 51.287752 ], "geometry": { "type": "Point", "coordinates": [ -0.4997534, 51.287752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04557456" }, "bbox": [ -0.4990473, 51.2896646, -0.4990473, 51.2896646 ], "geometry": { "type": "Point", "coordinates": [ -0.4990473, 51.2896646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559138" }, "bbox": [ -0.4974175, 51.2888317, -0.4974175, 51.2888317 ], "geometry": { "type": "Point", "coordinates": [ -0.4974175, 51.2888317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559853" }, "bbox": [ -0.4958499, 51.2892995, -0.4958499, 51.2892995 ], "geometry": { "type": "Point", "coordinates": [ -0.4958499, 51.2892995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04557854" }, "bbox": [ -0.4986011, 51.2894718, -0.4986011, 51.2894718 ], "geometry": { "type": "Point", "coordinates": [ -0.4986011, 51.2894718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558152" }, "bbox": [ -0.498269, 51.2892091, -0.498269, 51.2892091 ], "geometry": { "type": "Point", "coordinates": [ -0.498269, 51.2892091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01490827" }, "bbox": [ -0.5530124, 51.2338003, -0.5530124, 51.2338003 ], "geometry": { "type": "Point", "coordinates": [ -0.5530124, 51.2338003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01492302" }, "bbox": [ -0.5514932, 51.2314432, -0.5514932, 51.2314432 ], "geometry": { "type": "Point", "coordinates": [ -0.5514932, 51.2314432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00499917" }, "bbox": [ -0.5548531, 51.2329868, -0.5548531, 51.2329868 ], "geometry": { "type": "Point", "coordinates": [ -0.5548531, 51.2329868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89432479" }, "bbox": [ -0.7244023, 51.1863526, -0.7244023, 51.1863526 ], "geometry": { "type": "Point", "coordinates": [ -0.7244023, 51.1863526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90430449" }, "bbox": [ -0.7131511, 51.1835096, -0.7131511, 51.1835096 ], "geometry": { "type": "Point", "coordinates": [ -0.7131511, 51.1835096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19373571" }, "bbox": [ -0.2958309, 51.1263473, -0.2958309, 51.1263473 ], "geometry": { "type": "Point", "coordinates": [ -0.2958309, 51.1263473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19373681" }, "bbox": [ -0.2955145, 51.1271671, -0.2955145, 51.1271671 ], "geometry": { "type": "Point", "coordinates": [ -0.2955145, 51.1271671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16406021" }, "bbox": [ -0.3342588, 51.1492001, -0.3342588, 51.1492001 ], "geometry": { "type": "Point", "coordinates": [ -0.3342588, 51.1492001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00390940" }, "bbox": [ -0.572062, 51.1454759, -0.572062, 51.1454759 ], "geometry": { "type": "Point", "coordinates": [ -0.572062, 51.1454759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00390737" }, "bbox": [ -0.5706359, 51.1448812, -0.5706359, 51.1448812 ], "geometry": { "type": "Point", "coordinates": [ -0.5706359, 51.1448812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99399051" }, "bbox": [ -0.5717931, 51.1457304, -0.5717931, 51.1457304 ], "geometry": { "type": "Point", "coordinates": [ -0.5717931, 51.1457304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02440334" }, "bbox": [ -0.5414531, 51.1893115, -0.5414531, 51.1893115 ], "geometry": { "type": "Point", "coordinates": [ -0.5414531, 51.1893115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02434313" }, "bbox": [ -0.5360031, 51.1781525, -0.5360031, 51.1781525 ], "geometry": { "type": "Point", "coordinates": [ -0.5360031, 51.1781525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32409858" }, "bbox": [ -0.0997308, 51.1491854, -0.0997308, 51.1491854 ], "geometry": { "type": "Point", "coordinates": [ -0.0997308, 51.1491854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38601260" }, "bbox": [ -0.0189936, 51.3279379, -0.0189936, 51.3279379 ], "geometry": { "type": "Point", "coordinates": [ -0.0189936, 51.3279379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38602007" }, "bbox": [ -0.0179803, 51.323083, -0.0179803, 51.323083 ], "geometry": { "type": "Point", "coordinates": [ -0.0179803, 51.323083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21499423" }, "bbox": [ -0.2551392, 51.229249, -0.2551392, 51.229249 ], "geometry": { "type": "Point", "coordinates": [ -0.2551392, 51.229249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20506540" }, "bbox": [ -0.2729241, 51.2401539, -0.2729241, 51.2401539 ], "geometry": { "type": "Point", "coordinates": [ -0.2729241, 51.2401539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20508829" }, "bbox": [ -0.270138, 51.2390919, -0.270138, 51.2390919 ], "geometry": { "type": "Point", "coordinates": [ -0.270138, 51.2390919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495388" }, "bbox": [ -0.1463899, 51.2333083, -0.1463899, 51.2333083 ], "geometry": { "type": "Point", "coordinates": [ -0.1463899, 51.2333083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42447287" }, "bbox": [ 0.0417629, 51.1853884, 0.0417629, 51.1853884 ], "geometry": { "type": "Point", "coordinates": [ 0.0417629, 51.1853884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43440783" }, "bbox": [ 0.0456996, 51.1848803, 0.0456996, 51.1848803 ], "geometry": { "type": "Point", "coordinates": [ 0.0456996, 51.1848803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20507460" }, "bbox": [ -0.2717164, 51.2419789, -0.2717164, 51.2419789 ], "geometry": { "type": "Point", "coordinates": [ -0.2717164, 51.2419789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43440467" }, "bbox": [ 0.044977, 51.1833759, 0.044977, 51.1833759 ], "geometry": { "type": "Point", "coordinates": [ 0.044977, 51.1833759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99427461" }, "bbox": [ -0.5746629, 51.1741004, -0.5746629, 51.1741004 ], "geometry": { "type": "Point", "coordinates": [ -0.5746629, 51.1741004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99426159" }, "bbox": [ -0.5764594, 51.1738229, -0.5764594, 51.1738229 ], "geometry": { "type": "Point", "coordinates": [ -0.5764594, 51.1738229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00416422" }, "bbox": [ -0.5626982, 51.1616472, -0.5626982, 51.1616472 ], "geometry": { "type": "Point", "coordinates": [ -0.5626982, 51.1616472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418407" }, "bbox": [ -0.5591983, 51.1600091, -0.5591983, 51.1600091 ], "geometry": { "type": "Point", "coordinates": [ -0.5591983, 51.1600091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00417924" }, "bbox": [ -0.5599842, 51.1615431, -0.5599842, 51.1615431 ], "geometry": { "type": "Point", "coordinates": [ -0.5599842, 51.1615431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00417326" }, "bbox": [ -0.5607558, 51.1619323, -0.5607558, 51.1619323 ], "geometry": { "type": "Point", "coordinates": [ -0.5607558, 51.1619323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00413369" }, "bbox": [ -0.5653664, 51.1658032, -0.5653664, 51.1658032 ], "geometry": { "type": "Point", "coordinates": [ -0.5653664, 51.1658032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00411865" }, "bbox": [ -0.5685338, 51.1653102, -0.5685338, 51.1653102 ], "geometry": { "type": "Point", "coordinates": [ -0.5685338, 51.1653102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00414972" }, "bbox": [ -0.5640014, 51.166081, -0.5640014, 51.166081 ], "geometry": { "type": "Point", "coordinates": [ -0.5640014, 51.166081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00418221" }, "bbox": [ -0.5593678, 51.1613146, -0.5593678, 51.1613146 ], "geometry": { "type": "Point", "coordinates": [ -0.5593678, 51.1613146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96500101" }, "bbox": [ -0.6261039, 51.2412187, -0.6261039, 51.2412187 ], "geometry": { "type": "Point", "coordinates": [ -0.6261039, 51.2412187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96481269" }, "bbox": [ -0.6246917, 51.2293109, -0.6246917, 51.2293109 ], "geometry": { "type": "Point", "coordinates": [ -0.6246917, 51.2293109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21422415" }, "bbox": [ -0.2670145, 51.1659165, -0.2670145, 51.1659165 ], "geometry": { "type": "Point", "coordinates": [ -0.2670145, 51.1659165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96541550" }, "bbox": [ -0.6227072, 51.2818679, -0.6227072, 51.2818679 ], "geometry": { "type": "Point", "coordinates": [ -0.6227072, 51.2818679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11363632" }, "bbox": [ -0.4102604, 51.1155031, -0.4102604, 51.1155031 ], "geometry": { "type": "Point", "coordinates": [ -0.4102604, 51.1155031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11353691" }, "bbox": [ -0.4105505, 51.1115339, -0.4105505, 51.1115339 ], "geometry": { "type": "Point", "coordinates": [ -0.4105505, 51.1115339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94459308" }, "bbox": [ -0.6426832, 51.1970856, -0.6426832, 51.1970856 ], "geometry": { "type": "Point", "coordinates": [ -0.6426832, 51.1970856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94458416" }, "bbox": [ -0.6440549, 51.1977671, -0.6440549, 51.1977671 ], "geometry": { "type": "Point", "coordinates": [ -0.6440549, 51.1977671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21396946" }, "bbox": [ -0.2620802, 51.1408721, -0.2620802, 51.1408721 ], "geometry": { "type": "Point", "coordinates": [ -0.2620802, 51.1408721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37476106" }, "bbox": [ -0.031885, 51.2062315, -0.031885, 51.2062315 ], "geometry": { "type": "Point", "coordinates": [ -0.031885, 51.2062315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38461961" }, "bbox": [ -0.0232293, 51.2019367, -0.0232293, 51.2019367 ], "geometry": { "type": "Point", "coordinates": [ -0.0232293, 51.2019367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11376302" }, "bbox": [ -0.4062556, 51.1216017, -0.4062556, 51.1216017 ], "geometry": { "type": "Point", "coordinates": [ -0.4062556, 51.1216017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11365770" }, "bbox": [ -0.4074345, 51.1186498, -0.4074345, 51.1186498 ], "geometry": { "type": "Point", "coordinates": [ -0.4074345, 51.1186498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11366393" }, "bbox": [ -0.4057857, 51.1211583, -0.4057857, 51.1211583 ], "geometry": { "type": "Point", "coordinates": [ -0.4057857, 51.1211583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37608649" }, "bbox": [ -0.0226552, 51.3268904, -0.0226552, 51.3268904 ], "geometry": { "type": "Point", "coordinates": [ -0.0226552, 51.3268904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90350350" }, "bbox": [ -0.7152594, 51.111719, -0.7152594, 51.111719 ], "geometry": { "type": "Point", "coordinates": [ -0.7152594, 51.111719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90350034" }, "bbox": [ -0.7156658, 51.1103127, -0.7156658, 51.1103127 ], "geometry": { "type": "Point", "coordinates": [ -0.7156658, 51.1103127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89359441" }, "bbox": [ -0.7166547, 51.1108587, -0.7166547, 51.1108587 ], "geometry": { "type": "Point", "coordinates": [ -0.7166547, 51.1108587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32451035" }, "bbox": [ -0.1108055, 51.1921173, -0.1108055, 51.1921173 ], "geometry": { "type": "Point", "coordinates": [ -0.1108055, 51.1921173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11364672" }, "bbox": [ -0.4088658, 51.1189379, -0.4088658, 51.1189379 ], "geometry": { "type": "Point", "coordinates": [ -0.4088658, 51.1189379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11365781" }, "bbox": [ -0.4071145, 51.1197349, -0.4071145, 51.1197349 ], "geometry": { "type": "Point", "coordinates": [ -0.4071145, 51.1197349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11365167" }, "bbox": [ -0.4080806, 51.1185293, -0.4080806, 51.1185293 ], "geometry": { "type": "Point", "coordinates": [ -0.4080806, 51.1185293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14668515" }, "bbox": [ -0.3512746, 51.3827455, -0.3512746, 51.3827455 ], "geometry": { "type": "Point", "coordinates": [ -0.3512746, 51.3827455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11618173" }, "bbox": [ -0.3960279, 51.3436332, -0.3960279, 51.3436332 ], "geometry": { "type": "Point", "coordinates": [ -0.3960279, 51.3436332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14668704" }, "bbox": [ -0.3503697, 51.3814409, -0.3503697, 51.3814409 ], "geometry": { "type": "Point", "coordinates": [ -0.3503697, 51.3814409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14658769" }, "bbox": [ -0.3510704, 51.3789073, -0.3510704, 51.3789073 ], "geometry": { "type": "Point", "coordinates": [ -0.3510704, 51.3789073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11392887" }, "bbox": [ -0.4104159, 51.1473038, -0.4104159, 51.1473038 ], "geometry": { "type": "Point", "coordinates": [ -0.4104159, 51.1473038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11405019" }, "bbox": [ -0.4071769, 51.1501646, -0.4071769, 51.1501646 ], "geometry": { "type": "Point", "coordinates": [ -0.4071769, 51.1501646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11402503" }, "bbox": [ -0.4103984, 51.1486036, -0.4103984, 51.1486036 ], "geometry": { "type": "Point", "coordinates": [ -0.4103984, 51.1486036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403001" }, "bbox": [ -0.4096483, 51.1479226, -0.4096483, 51.1479226 ], "geometry": { "type": "Point", "coordinates": [ -0.4096483, 51.1479226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37463187" }, "bbox": [ -0.0359532, 51.2044562, -0.0359532, 51.2044562 ], "geometry": { "type": "Point", "coordinates": [ -0.0359532, 51.2044562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19454766" }, "bbox": [ -0.291514, 51.197609, -0.291514, 51.197609 ], "geometry": { "type": "Point", "coordinates": [ -0.291514, 51.197609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20455462" }, "bbox": [ -0.2762017, 51.196823, -0.2762017, 51.196823 ], "geometry": { "type": "Point", "coordinates": [ -0.2762017, 51.196823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22428095" }, "bbox": [ -0.2447055, 51.1724543, -0.2447055, 51.1724543 ], "geometry": { "type": "Point", "coordinates": [ -0.2447055, 51.1724543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22429394" }, "bbox": [ -0.2428637, 51.1725156, -0.2428637, 51.1725156 ], "geometry": { "type": "Point", "coordinates": [ -0.2428637, 51.1725156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14407662" }, "bbox": [ -0.3602105, 51.1533784, -0.3602105, 51.1533784 ], "geometry": { "type": "Point", "coordinates": [ -0.3602105, 51.1533784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14408878" }, "bbox": [ -0.3583074, 51.1552306, -0.3583074, 51.1552306 ], "geometry": { "type": "Point", "coordinates": [ -0.3583074, 51.1552306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14420328" }, "bbox": [ -0.3702653, 51.1684413, -0.3702653, 51.1684413 ], "geometry": { "type": "Point", "coordinates": [ -0.3702653, 51.1684413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421027" }, "bbox": [ -0.3692268, 51.1683617, -0.3692268, 51.1683617 ], "geometry": { "type": "Point", "coordinates": [ -0.3692268, 51.1683617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20507227" }, "bbox": [ -0.2718135, 51.2387079, -0.2718135, 51.2387079 ], "geometry": { "type": "Point", "coordinates": [ -0.2718135, 51.2387079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34524967" }, "bbox": [ -0.0739372, 51.257323, -0.0739372, 51.257323 ], "geometry": { "type": "Point", "coordinates": [ -0.0739372, 51.257323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11369160" }, "bbox": [ -0.402648, 51.1178913, -0.402648, 51.1178913 ], "geometry": { "type": "Point", "coordinates": [ -0.402648, 51.1178913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11368364" }, "bbox": [ -0.4041466, 51.118205, -0.4041466, 51.118205 ], "geometry": { "type": "Point", "coordinates": [ -0.4041466, 51.118205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09422660" }, "bbox": [ -0.4383113, 51.1723645, -0.4383113, 51.1723645 ], "geometry": { "type": "Point", "coordinates": [ -0.4383113, 51.1723645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09420982" }, "bbox": [ -0.440891, 51.1743521, -0.440891, 51.1743521 ], "geometry": { "type": "Point", "coordinates": [ -0.440891, 51.1743521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08429585" }, "bbox": [ -0.4429354, 51.1744006, -0.4429354, 51.1744006 ], "geometry": { "type": "Point", "coordinates": [ -0.4429354, 51.1744006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22513772" }, "bbox": [ -0.2479622, 51.2514728, -0.2479622, 51.2514728 ], "geometry": { "type": "Point", "coordinates": [ -0.2479622, 51.2514728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05469322" }, "bbox": [ -0.4849966, 51.2054697, -0.4849966, 51.2054697 ], "geometry": { "type": "Point", "coordinates": [ -0.4849966, 51.2054697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05468729" }, "bbox": [ -0.4856607, 51.2061267, -0.4856607, 51.2061267 ], "geometry": { "type": "Point", "coordinates": [ -0.4856607, 51.2061267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35490835" }, "bbox": [ -0.0668791, 51.227273, -0.0668791, 51.227273 ], "geometry": { "type": "Point", "coordinates": [ -0.0668791, 51.227273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33416811" }, "bbox": [ -0.0898925, 51.1536363, -0.0898925, 51.1536363 ], "geometry": { "type": "Point", "coordinates": [ -0.0898925, 51.1536363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90350941" }, "bbox": [ -0.7145661, 51.1111045, -0.7145661, 51.1111045 ], "geometry": { "type": "Point", "coordinates": [ -0.7145661, 51.1111045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07439044" }, "bbox": [ -0.4577781, 51.1815199, -0.4577781, 51.1815199 ], "geometry": { "type": "Point", "coordinates": [ -0.4577781, 51.1815199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98526888" }, "bbox": [ -0.5861573, 51.2666729, -0.5861573, 51.2666729 ], "geometry": { "type": "Point", "coordinates": [ -0.5861573, 51.2666729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99521882" }, "bbox": [ -0.5786191, 51.2653018, -0.5786191, 51.2653018 ], "geometry": { "type": "Point", "coordinates": [ -0.5786191, 51.2653018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99526956" }, "bbox": [ -0.5720499, 51.2634666, -0.5720499, 51.2634666 ], "geometry": { "type": "Point", "coordinates": [ -0.5720499, 51.2634666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16380651" }, "bbox": [ -0.3430439, 51.1340551, -0.3430439, 51.1340551 ], "geometry": { "type": "Point", "coordinates": [ -0.3430439, 51.1340551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354670" }, "bbox": [ -0.6953785, 51.1131136, -0.6953785, 51.1131136 ], "geometry": { "type": "Point", "coordinates": [ -0.6953785, 51.1131136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91355973" }, "bbox": [ -0.6929534, 51.1136826, -0.6929534, 51.1136826 ], "geometry": { "type": "Point", "coordinates": [ -0.6929534, 51.1136826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354789" }, "bbox": [ -0.6943209, 51.1151873, -0.6943209, 51.1151873 ], "geometry": { "type": "Point", "coordinates": [ -0.6943209, 51.1151873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93366160" }, "bbox": [ -0.6637779, 51.1210762, -0.6637779, 51.1210762 ], "geometry": { "type": "Point", "coordinates": [ -0.6637779, 51.1210762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91367414" }, "bbox": [ -0.6904336, 51.1170675, -0.6904336, 51.1170675 ], "geometry": { "type": "Point", "coordinates": [ -0.6904336, 51.1170675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91367841" }, "bbox": [ -0.6900236, 51.1195674, -0.6900236, 51.1195674 ], "geometry": { "type": "Point", "coordinates": [ -0.6900236, 51.1195674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91365831" }, "bbox": [ -0.6930784, 51.1185734, -0.6930784, 51.1185734 ], "geometry": { "type": "Point", "coordinates": [ -0.6930784, 51.1185734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91366615" }, "bbox": [ -0.6915803, 51.1174914, -0.6915803, 51.1174914 ], "geometry": { "type": "Point", "coordinates": [ -0.6915803, 51.1174914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91365849" }, "bbox": [ -0.6929005, 51.1203833, -0.6929005, 51.1203833 ], "geometry": { "type": "Point", "coordinates": [ -0.6929005, 51.1203833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91366314" }, "bbox": [ -0.6921913, 51.1173035, -0.6921913, 51.1173035 ], "geometry": { "type": "Point", "coordinates": [ -0.6921913, 51.1173035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91367054" }, "bbox": [ -0.6910075, 51.1206911, -0.6910075, 51.1206911 ], "geometry": { "type": "Point", "coordinates": [ -0.6910075, 51.1206911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92360761" }, "bbox": [ -0.6862649, 51.1215244, -0.6862649, 51.1215244 ], "geometry": { "type": "Point", "coordinates": [ -0.6862649, 51.1215244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36458807" }, "bbox": [ -0.042871, 51.1883538, -0.042871, 51.1883538 ], "geometry": { "type": "Point", "coordinates": [ -0.042871, 51.1883538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36454719" }, "bbox": [ -0.0483414, 51.1897018, -0.0483414, 51.1897018 ], "geometry": { "type": "Point", "coordinates": [ -0.0483414, 51.1897018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36456024" }, "bbox": [ -0.0476761, 51.1899932, -0.0476761, 51.1899932 ], "geometry": { "type": "Point", "coordinates": [ -0.0476761, 51.1899932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36457826" }, "bbox": [ -0.0434778, 51.1904488, -0.0434778, 51.1904488 ], "geometry": { "type": "Point", "coordinates": [ -0.0434778, 51.1904488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36456538" }, "bbox": [ -0.0456962, 51.1914158, -0.0456962, 51.1914158 ], "geometry": { "type": "Point", "coordinates": [ -0.0456962, 51.1914158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42501065" }, "bbox": [ 0.0342651, 51.2373665, 0.0342651, 51.2373665 ], "geometry": { "type": "Point", "coordinates": [ 0.0342651, 51.2373665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41502780" }, "bbox": [ 0.0225132, 51.2392432, 0.0225132, 51.2392432 ], "geometry": { "type": "Point", "coordinates": [ 0.0225132, 51.2392432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41504259" }, "bbox": [ 0.0245561, 51.2369465, 0.0245561, 51.2369465 ], "geometry": { "type": "Point", "coordinates": [ 0.0245561, 51.2369465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36456034" }, "bbox": [ -0.0465551, 51.1910653, -0.0465551, 51.1910653 ], "geometry": { "type": "Point", "coordinates": [ -0.0465551, 51.1910653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92451507" }, "bbox": [ -0.6824975, 51.1974522, -0.6824975, 51.1974522 ], "geometry": { "type": "Point", "coordinates": [ -0.6824975, 51.1974522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99528075" }, "bbox": [ -0.5708992, 51.2651294, -0.5708992, 51.2651294 ], "geometry": { "type": "Point", "coordinates": [ -0.5708992, 51.2651294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99528274" }, "bbox": [ -0.5703945, 51.2652152, -0.5703945, 51.2652152 ], "geometry": { "type": "Point", "coordinates": [ -0.5703945, 51.2652152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99527468" }, "bbox": [ -0.5717713, 51.2647526, -0.5717713, 51.2647526 ], "geometry": { "type": "Point", "coordinates": [ -0.5717713, 51.2647526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36458734" }, "bbox": [ -0.0425439, 51.1909681, -0.0425439, 51.1909681 ], "geometry": { "type": "Point", "coordinates": [ -0.0425439, 51.1909681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36454811" }, "bbox": [ -0.0483283, 51.1889898, -0.0483283, 51.1889898 ], "geometry": { "type": "Point", "coordinates": [ -0.0483283, 51.1889898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41503071" }, "bbox": [ 0.023052, 51.2379738, 0.023052, 51.2379738 ], "geometry": { "type": "Point", "coordinates": [ 0.023052, 51.2379738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14401372" }, "bbox": [ -0.3693994, 51.1543088, -0.3693994, 51.1543088 ], "geometry": { "type": "Point", "coordinates": [ -0.3693994, 51.1543088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14400978" }, "bbox": [ -0.3700691, 51.154994, -0.3700691, 51.154994 ], "geometry": { "type": "Point", "coordinates": [ -0.3700691, 51.154994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14400575" }, "bbox": [ -0.3707059, 51.1544117, -0.3707059, 51.1544117 ], "geometry": { "type": "Point", "coordinates": [ -0.3707059, 51.1544117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14401176" }, "bbox": [ -0.3697854, 51.1547911, -0.3697854, 51.1547911 ], "geometry": { "type": "Point", "coordinates": [ -0.3697854, 51.1547911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403794" }, "bbox": [ -0.3659816, 51.1562548, -0.3659816, 51.1562548 ], "geometry": { "type": "Point", "coordinates": [ -0.3659816, 51.1562548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14404395" }, "bbox": [ -0.3651085, 51.156429, -0.3651085, 51.156429 ], "geometry": { "type": "Point", "coordinates": [ -0.3651085, 51.156429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16461453" }, "bbox": [ -0.3389716, 51.2062911, -0.3389716, 51.2062911 ], "geometry": { "type": "Point", "coordinates": [ -0.3389716, 51.2062911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16462257" }, "bbox": [ -0.3376253, 51.2066408, -0.3376253, 51.2066408 ], "geometry": { "type": "Point", "coordinates": [ -0.3376253, 51.2066408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16464412" }, "bbox": [ -0.3349021, 51.2023311, -0.3349021, 51.2023311 ], "geometry": { "type": "Point", "coordinates": [ -0.3349021, 51.2023311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465515" }, "bbox": [ -0.3332267, 51.2028479, -0.3332267, 51.2028479 ], "geometry": { "type": "Point", "coordinates": [ -0.3332267, 51.2028479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465869" }, "bbox": [ -0.3323547, 51.2076839, -0.3323547, 51.2076839 ], "geometry": { "type": "Point", "coordinates": [ -0.3323547, 51.2076839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16462132" }, "bbox": [ -0.33775, 51.2040724, -0.33775, 51.2040724 ], "geometry": { "type": "Point", "coordinates": [ -0.33775, 51.2040724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16462178" }, "bbox": [ -0.3374702, 51.2085226, -0.3374702, 51.2085226 ], "geometry": { "type": "Point", "coordinates": [ -0.3374702, 51.2085226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465661" }, "bbox": [ -0.3326306, 51.2068637, -0.3326306, 51.2068637 ], "geometry": { "type": "Point", "coordinates": [ -0.3326306, 51.2068637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16461645" }, "bbox": [ -0.3385103, 51.2054996, -0.3385103, 51.2054996 ], "geometry": { "type": "Point", "coordinates": [ -0.3385103, 51.2054996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16460969" }, "bbox": [ -0.3396954, 51.2076406, -0.3396954, 51.2076406 ], "geometry": { "type": "Point", "coordinates": [ -0.3396954, 51.2076406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465062" }, "bbox": [ -0.334139, 51.2070936, -0.334139, 51.2070936 ], "geometry": { "type": "Point", "coordinates": [ -0.334139, 51.2070936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16462540" }, "bbox": [ -0.337015, 51.2049867, -0.337015, 51.2049867 ], "geometry": { "type": "Point", "coordinates": [ -0.337015, 51.2049867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16464627" }, "bbox": [ -0.334355, 51.2038911, -0.334355, 51.2038911 ], "geometry": { "type": "Point", "coordinates": [ -0.334355, 51.2038911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465631" }, "bbox": [ -0.3327292, 51.2042207, -0.3327292, 51.2042207 ], "geometry": { "type": "Point", "coordinates": [ -0.3327292, 51.2042207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40528970" }, "bbox": [ 0.0176423, 51.2560856, 0.0176423, 51.2560856 ], "geometry": { "type": "Point", "coordinates": [ 0.0176423, 51.2560856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40527648" }, "bbox": [ 0.0157026, 51.2543745, 0.0157026, 51.2543745 ], "geometry": { "type": "Point", "coordinates": [ 0.0157026, 51.2543745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40512696" }, "bbox": [ 0.0083124, 51.2495868, 0.0083124, 51.2495868 ], "geometry": { "type": "Point", "coordinates": [ 0.0083124, 51.2495868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41519781" }, "bbox": [ 0.0327994, 51.2477744, 0.0327994, 51.2477744 ], "geometry": { "type": "Point", "coordinates": [ 0.0327994, 51.2477744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40523402" }, "bbox": [ 0.0096034, 51.2501186, 0.0096034, 51.2501186 ], "geometry": { "type": "Point", "coordinates": [ 0.0096034, 51.2501186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36459937" }, "bbox": [ -0.0413078, 51.1911267, -0.0413078, 51.1911267 ], "geometry": { "type": "Point", "coordinates": [ -0.0413078, 51.1911267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36458131" }, "bbox": [ -0.0436274, 51.1906962, -0.0436274, 51.1906962 ], "geometry": { "type": "Point", "coordinates": [ -0.0436274, 51.1906962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36447555" }, "bbox": [ -0.0449138, 51.1838384, -0.0449138, 51.1838384 ], "geometry": { "type": "Point", "coordinates": [ -0.0449138, 51.1838384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36447578" }, "bbox": [ -0.0449151, 51.1860953, -0.0449151, 51.1860953 ], "geometry": { "type": "Point", "coordinates": [ -0.0449151, 51.1860953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32455499" }, "bbox": [ -0.1044622, 51.1979578, -0.1044622, 51.1979578 ], "geometry": { "type": "Point", "coordinates": [ -0.1044622, 51.1979578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41517692" }, "bbox": [ 0.0297976, 51.2488984, 0.0297976, 51.2488984 ], "geometry": { "type": "Point", "coordinates": [ 0.0297976, 51.2488984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41519086" }, "bbox": [ 0.0323469, 51.2482541, 0.0323469, 51.2482541 ], "geometry": { "type": "Point", "coordinates": [ 0.0323469, 51.2482541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457970" }, "bbox": [ -0.1009446, 51.1951334, -0.1009446, 51.1951334 ], "geometry": { "type": "Point", "coordinates": [ -0.1009446, 51.1951334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41517787" }, "bbox": [ 0.0299025, 51.2484017, 0.0299025, 51.2484017 ], "geometry": { "type": "Point", "coordinates": [ 0.0299025, 51.2484017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28489144" }, "bbox": [ -0.1554653, 51.2206707, -0.1554653, 51.2206707 ], "geometry": { "type": "Point", "coordinates": [ -0.1554653, 51.2206707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41517978" }, "bbox": [ 0.0300899, 51.2476313, 0.0300899, 51.2476313 ], "geometry": { "type": "Point", "coordinates": [ 0.0300899, 51.2476313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43510485" }, "bbox": [ 0.0479504, 51.2480623, 0.0479504, 51.2480623 ], "geometry": { "type": "Point", "coordinates": [ 0.0479504, 51.2480623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99531370" }, "bbox": [ -0.5814664, 51.2733905, -0.5814664, 51.2733905 ], "geometry": { "type": "Point", "coordinates": [ -0.5814664, 51.2733905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539830" }, "bbox": [ 0.047879, 51.2607856, 0.047879, 51.2607856 ], "geometry": { "type": "Point", "coordinates": [ 0.047879, 51.2607856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539622" }, "bbox": [ 0.0475667, 51.2602964, 0.0475667, 51.2602964 ], "geometry": { "type": "Point", "coordinates": [ 0.0475667, 51.2602964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457255" }, "bbox": [ -0.1010164, 51.1938748, -0.1010164, 51.1938748 ], "geometry": { "type": "Point", "coordinates": [ -0.1010164, 51.1938748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96518564" }, "bbox": [ -0.6151567, 51.2555634, -0.6151567, 51.2555634 ], "geometry": { "type": "Point", "coordinates": [ -0.6151567, 51.2555634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41518094" }, "bbox": [ 0.0303697, 51.2490087, 0.0303697, 51.2490087 ], "geometry": { "type": "Point", "coordinates": [ 0.0303697, 51.2490087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99532876" }, "bbox": [ -0.5779554, 51.2743699, -0.5779554, 51.2743699 ], "geometry": { "type": "Point", "coordinates": [ -0.5779554, 51.2743699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98534449" }, "bbox": [ -0.5937078, 51.2740836, -0.5937078, 51.2740836 ], "geometry": { "type": "Point", "coordinates": [ -0.5937078, 51.2740836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32456786" }, "bbox": [ -0.1028467, 51.1965065, -0.1028467, 51.1965065 ], "geometry": { "type": "Point", "coordinates": [ -0.1028467, 51.1965065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31464219" }, "bbox": [ -0.1203097, 51.1998836, -0.1203097, 51.1998836 ], "geometry": { "type": "Point", "coordinates": [ -0.1203097, 51.1998836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42514184" }, "bbox": [ 0.0390886, 51.2480095, 0.0390886, 51.2480095 ], "geometry": { "type": "Point", "coordinates": [ 0.0390886, 51.2480095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32455897" }, "bbox": [ -0.1038063, 51.1978497, -0.1038063, 51.1978497 ], "geometry": { "type": "Point", "coordinates": [ -0.1038063, 51.1978497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457162" }, "bbox": [ -0.1021134, 51.1943572, -0.1021134, 51.1943572 ], "geometry": { "type": "Point", "coordinates": [ -0.1021134, 51.1943572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42516483" }, "bbox": [ 0.0424413, 51.2476385, 0.0424413, 51.2476385 ], "geometry": { "type": "Point", "coordinates": [ 0.0424413, 51.2476385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530806" }, "bbox": [ 0.0491417, 51.2585877, 0.0491417, 51.2585877 ], "geometry": { "type": "Point", "coordinates": [ 0.0491417, 51.2585877 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42518157" }, "bbox": [ 0.0446543, 51.2454221, 0.0446543, 51.2454221 ], "geometry": { "type": "Point", "coordinates": [ 0.0446543, 51.2454221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42518752" }, "bbox": [ 0.0454272, 51.2449942, 0.0454272, 51.2449942 ], "geometry": { "type": "Point", "coordinates": [ 0.0454272, 51.2449942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42518971" }, "bbox": [ 0.0459287, 51.2466505, 0.0459287, 51.2466505 ], "geometry": { "type": "Point", "coordinates": [ 0.0459287, 51.2466505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42529794" }, "bbox": [ 0.0481361, 51.2577782, 0.0481361, 51.2577782 ], "geometry": { "type": "Point", "coordinates": [ 0.0481361, 51.2577782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539124" }, "bbox": [ 0.0467058, 51.2604665, 0.0467058, 51.2604665 ], "geometry": { "type": "Point", "coordinates": [ 0.0467058, 51.2604665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08491982" }, "bbox": [ -0.4516529, 51.2373293, -0.4516529, 51.2373293 ], "geometry": { "type": "Point", "coordinates": [ -0.4516529, 51.2373293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07493341" }, "bbox": [ -0.4631683, 51.233921, -0.4631683, 51.233921 ], "geometry": { "type": "Point", "coordinates": [ -0.4631683, 51.233921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42525336" }, "bbox": [ 0.0403786, 51.2525942, 0.0403786, 51.2525942 ], "geometry": { "type": "Point", "coordinates": [ 0.0403786, 51.2525942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478499" }, "bbox": [ -0.0419857, 51.2145483, -0.0419857, 51.2145483 ], "geometry": { "type": "Point", "coordinates": [ -0.0419857, 51.2145483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479598" }, "bbox": [ -0.040527, 51.2147633, -0.040527, 51.2147633 ], "geometry": { "type": "Point", "coordinates": [ -0.040527, 51.2147633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479572" }, "bbox": [ -0.0410439, 51.2121317, -0.0410439, 51.2121317 ], "geometry": { "type": "Point", "coordinates": [ -0.0410439, 51.2121317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478067" }, "bbox": [ -0.042863, 51.211935, -0.042863, 51.211935 ], "geometry": { "type": "Point", "coordinates": [ -0.042863, 51.211935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478978" }, "bbox": [ -0.0418105, 51.2127845, -0.0418105, 51.2127845 ], "geometry": { "type": "Point", "coordinates": [ -0.0418105, 51.2127845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41504756" }, "bbox": [ 0.025026, 51.2367332, 0.025026, 51.2367332 ], "geometry": { "type": "Point", "coordinates": [ 0.025026, 51.2367332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95519701" }, "bbox": [ -0.6262838, 51.2502226, -0.6262838, 51.2502226 ], "geometry": { "type": "Point", "coordinates": [ -0.6262838, 51.2502226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94508633" }, "bbox": [ -0.6408893, 51.2443748, -0.6408893, 51.2443748 ], "geometry": { "type": "Point", "coordinates": [ -0.6408893, 51.2443748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94509729" }, "bbox": [ -0.6407935, 51.2439071, -0.6407935, 51.2439071 ], "geometry": { "type": "Point", "coordinates": [ -0.6407935, 51.2439071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95500493" }, "bbox": [ -0.6398011, 51.2496797, -0.6398011, 51.2496797 ], "geometry": { "type": "Point", "coordinates": [ -0.6398011, 51.2496797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95502495" }, "bbox": [ -0.6370071, 51.2497801, -0.6370071, 51.2497801 ], "geometry": { "type": "Point", "coordinates": [ -0.6370071, 51.2497801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95505398" }, "bbox": [ -0.6324969, 51.2499909, -0.6324969, 51.2499909 ], "geometry": { "type": "Point", "coordinates": [ -0.6324969, 51.2499909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95513800" }, "bbox": [ -0.6343971, 51.2502375, -0.6343971, 51.2502375 ], "geometry": { "type": "Point", "coordinates": [ -0.6343971, 51.2502375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96504573" }, "bbox": [ -0.6199626, 51.2485986, -0.6199626, 51.2485986 ], "geometry": { "type": "Point", "coordinates": [ -0.6199626, 51.2485986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96511507" }, "bbox": [ -0.6239798, 51.2507765, -0.6239798, 51.2507765 ], "geometry": { "type": "Point", "coordinates": [ -0.6239798, 51.2507765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37472249" }, "bbox": [ -0.0364578, 51.2101331, -0.0364578, 51.2101331 ], "geometry": { "type": "Point", "coordinates": [ -0.0364578, 51.2101331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94500667" }, "bbox": [ -0.6540879, 51.247439, -0.6540879, 51.247439 ], "geometry": { "type": "Point", "coordinates": [ -0.6540879, 51.247439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36479157" }, "bbox": [ -0.041307, 51.211084, -0.041307, 51.211084 ], "geometry": { "type": "Point", "coordinates": [ -0.041307, 51.211084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36478053" }, "bbox": [ -0.0419737, 51.2105295, -0.0419737, 51.2105295 ], "geometry": { "type": "Point", "coordinates": [ -0.0419737, 51.2105295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37472055" }, "bbox": [ -0.0366138, 51.2107751, -0.0366138, 51.2107751 ], "geometry": { "type": "Point", "coordinates": [ -0.0366138, 51.2107751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37471769" }, "bbox": [ -0.0376798, 51.2119513, -0.0376798, 51.2119513 ], "geometry": { "type": "Point", "coordinates": [ -0.0376798, 51.2119513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37470670" }, "bbox": [ -0.0391079, 51.2123197, -0.0391079, 51.2123197 ], "geometry": { "type": "Point", "coordinates": [ -0.0391079, 51.2123197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12391505" }, "bbox": [ -0.3982005, 51.1398463, -0.3982005, 51.1398463 ], "geometry": { "type": "Point", "coordinates": [ -0.3982005, 51.1398463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12393619" }, "bbox": [ -0.3952415, 51.1410016, -0.3952415, 51.1410016 ], "geometry": { "type": "Point", "coordinates": [ -0.3952415, 51.1410016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12386595" }, "bbox": [ -0.3909379, 51.1379917, -0.3909379, 51.1379917 ], "geometry": { "type": "Point", "coordinates": [ -0.3909379, 51.1379917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12384568" }, "bbox": [ -0.3940548, 51.1360485, -0.3940548, 51.1360485 ], "geometry": { "type": "Point", "coordinates": [ -0.3940548, 51.1360485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12386291" }, "bbox": [ -0.3915903, 51.1384355, -0.3915903, 51.1384355 ], "geometry": { "type": "Point", "coordinates": [ -0.3915903, 51.1384355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12385882" }, "bbox": [ -0.3924129, 51.1375794, -0.3924129, 51.1375794 ], "geometry": { "type": "Point", "coordinates": [ -0.3924129, 51.1375794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12385678" }, "bbox": [ -0.3923573, 51.1373394, -0.3923573, 51.1373394 ], "geometry": { "type": "Point", "coordinates": [ -0.3923573, 51.1373394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12385591" }, "bbox": [ -0.3925006, 51.1385285, -0.3925006, 51.1385285 ], "geometry": { "type": "Point", "coordinates": [ -0.3925006, 51.1385285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12381060" }, "bbox": [ -0.3990945, 51.1357183, -0.3990945, 51.1357183 ], "geometry": { "type": "Point", "coordinates": [ -0.3990945, 51.1357183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12376970" }, "bbox": [ -0.3907948, 51.12814, -0.3907948, 51.12814 ], "geometry": { "type": "Point", "coordinates": [ -0.3907948, 51.12814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12374298" }, "bbox": [ -0.3945837, 51.130152, -0.3945837, 51.130152 ], "geometry": { "type": "Point", "coordinates": [ -0.3945837, 51.130152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12372478" }, "bbox": [ -0.3964231, 51.1281525, -0.3964231, 51.1281525 ], "geometry": { "type": "Point", "coordinates": [ -0.3964231, 51.1281525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12375487" }, "bbox": [ -0.3920519, 51.1296651, -0.3920519, 51.1296651 ], "geometry": { "type": "Point", "coordinates": [ -0.3920519, 51.1296651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88587102" }, "bbox": [ -0.7274336, 51.3144007, -0.7274336, 51.3144007 ], "geometry": { "type": "Point", "coordinates": [ -0.7274336, 51.3144007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92506236" }, "bbox": [ -0.674537, 51.244951, -0.674537, 51.244951 ], "geometry": { "type": "Point", "coordinates": [ -0.674537, 51.244951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42511186" }, "bbox": [ 0.0346474, 51.2480895, 0.0346474, 51.2480895 ], "geometry": { "type": "Point", "coordinates": [ 0.0346474, 51.2480895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42511972" }, "bbox": [ 0.0359318, 51.2468484, 0.0359318, 51.2468484 ], "geometry": { "type": "Point", "coordinates": [ 0.0359318, 51.2468484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42511780" }, "bbox": [ 0.0356833, 51.2476314, 0.0356833, 51.2476314 ], "geometry": { "type": "Point", "coordinates": [ 0.0356833, 51.2476314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42512964" }, "bbox": [ 0.0372237, 51.2462047, 0.0372237, 51.2462047 ], "geometry": { "type": "Point", "coordinates": [ 0.0372237, 51.2462047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513250" }, "bbox": [ 0.0375798, 51.2449682, 0.0375798, 51.2449682 ], "geometry": { "type": "Point", "coordinates": [ 0.0375798, 51.2449682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42510379" }, "bbox": [ 0.033495, 51.2476184, 0.033495, 51.2476184 ], "geometry": { "type": "Point", "coordinates": [ 0.033495, 51.2476184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41523452" }, "bbox": [ 0.0240089, 51.2543475, 0.0240089, 51.2543475 ], "geometry": { "type": "Point", "coordinates": [ 0.0240089, 51.2543475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42510583" }, "bbox": [ 0.0341258, 51.2479355, 0.0341258, 51.2479355 ], "geometry": { "type": "Point", "coordinates": [ 0.0341258, 51.2479355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513947" }, "bbox": [ 0.0385146, 51.2446589, 0.0385146, 51.2446589 ], "geometry": { "type": "Point", "coordinates": [ 0.0385146, 51.2446589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42529805" }, "bbox": [ 0.0474893, 51.2498511, 0.0474893, 51.2498511 ], "geometry": { "type": "Point", "coordinates": [ 0.0474893, 51.2498511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41531110" }, "bbox": [ 0.0208464, 51.2596838, 0.0208464, 51.2596838 ], "geometry": { "type": "Point", "coordinates": [ 0.0208464, 51.2596838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40522210" }, "bbox": [ 0.00821, 51.2512151, 0.00821, 51.2512151 ], "geometry": { "type": "Point", "coordinates": [ 0.00821, 51.2512151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42519975" }, "bbox": [ 0.0476372, 51.2468489, 0.0476372, 51.2468489 ], "geometry": { "type": "Point", "coordinates": [ 0.0476372, 51.2468489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42523274" }, "bbox": [ 0.0378754, 51.2559375, 0.0378754, 51.2559375 ], "geometry": { "type": "Point", "coordinates": [ 0.0378754, 51.2559375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07499173" }, "bbox": [ -0.4554332, 51.2366383, -0.4554332, 51.2366383 ], "geometry": { "type": "Point", "coordinates": [ -0.4554332, 51.2366383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07497663" }, "bbox": [ -0.4579498, 51.2357177, -0.4579498, 51.2357177 ], "geometry": { "type": "Point", "coordinates": [ -0.4579498, 51.2357177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42528308" }, "bbox": [ 0.0449278, 51.2499329, 0.0449278, 51.2499329 ], "geometry": { "type": "Point", "coordinates": [ 0.0449278, 51.2499329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09493405" }, "bbox": [ -0.4362871, 51.2297931, -0.4362871, 51.2297931 ], "geometry": { "type": "Point", "coordinates": [ -0.4362871, 51.2297931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08493669" }, "bbox": [ -0.4505987, 51.2359213, -0.4505987, 51.2359213 ], "geometry": { "type": "Point", "coordinates": [ -0.4505987, 51.2359213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37481706" }, "bbox": [ -0.037488, 51.2154492, -0.037488, 51.2154492 ], "geometry": { "type": "Point", "coordinates": [ -0.037488, 51.2154492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37471697" }, "bbox": [ -0.0379294, 51.2143636, -0.0379294, 51.2143636 ], "geometry": { "type": "Point", "coordinates": [ -0.0379294, 51.2143636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37471495" }, "bbox": [ -0.0378797, 51.2141923, -0.0378797, 51.2141923 ], "geometry": { "type": "Point", "coordinates": [ -0.0378797, 51.2141923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37474095" }, "bbox": [ -0.0342436, 51.2149153, -0.0342436, 51.2149153 ], "geometry": { "type": "Point", "coordinates": [ -0.0342436, 51.2149153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37472698" }, "bbox": [ -0.0364896, 51.2153084, -0.0364896, 51.2153084 ], "geometry": { "type": "Point", "coordinates": [ -0.0364896, 51.2153084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36489813" }, "bbox": [ -0.0401023, 51.2159743, -0.0401023, 51.2159743 ], "geometry": { "type": "Point", "coordinates": [ -0.0401023, 51.2159743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94506085" }, "bbox": [ -0.6402118, 51.2473292, -0.6402118, 51.2473292 ], "geometry": { "type": "Point", "coordinates": [ -0.6402118, 51.2473292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94501790" }, "bbox": [ -0.6514833, 51.2496573, -0.6514833, 51.2496573 ], "geometry": { "type": "Point", "coordinates": [ -0.6514833, 51.2496573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513281" }, "bbox": [ 0.0379313, 51.2476962, 0.0379313, 51.2476962 ], "geometry": { "type": "Point", "coordinates": [ 0.0379313, 51.2476962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513384" }, "bbox": [ 0.0379381, 51.2479852, 0.0379381, 51.2479852 ], "geometry": { "type": "Point", "coordinates": [ 0.0379381, 51.2479852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513071" }, "bbox": [ 0.037564, 51.2469523, 0.037564, 51.2469523 ], "geometry": { "type": "Point", "coordinates": [ 0.037564, 51.2469523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08490672" }, "bbox": [ -0.4537768, 51.2363333, -0.4537768, 51.2363333 ], "geometry": { "type": "Point", "coordinates": [ -0.4537768, 51.2363333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41523843" }, "bbox": [ 0.0239911, 51.2536271, 0.0239911, 51.2536271 ], "geometry": { "type": "Point", "coordinates": [ 0.0239911, 51.2536271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41522495" }, "bbox": [ 0.0222744, 51.2580948, 0.0222744, 51.2580948 ], "geometry": { "type": "Point", "coordinates": [ 0.0222744, 51.2580948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41521422" }, "bbox": [ 0.0211135, 51.2514461, 0.0211135, 51.2514461 ], "geometry": { "type": "Point", "coordinates": [ 0.0211135, 51.2514461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488042" }, "bbox": [ -0.4719612, 51.224973, -0.4719612, 51.224973 ], "geometry": { "type": "Point", "coordinates": [ -0.4719612, 51.224973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42514346" }, "bbox": [ 0.0392548, 51.2445486, 0.0392548, 51.2445486 ], "geometry": { "type": "Point", "coordinates": [ 0.0392548, 51.2445486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457246" }, "bbox": [ -0.1022251, 51.1929816, -0.1022251, 51.1929816 ], "geometry": { "type": "Point", "coordinates": [ -0.1022251, 51.1929816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40528173" }, "bbox": [ 0.0165556, 51.256303, 0.0165556, 51.256303 ], "geometry": { "type": "Point", "coordinates": [ 0.0165556, 51.256303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40529039" }, "bbox": [ 0.018337, 51.2530525, 0.018337, 51.2530525 ], "geometry": { "type": "Point", "coordinates": [ 0.018337, 51.2530525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41521160" }, "bbox": [ 0.0210485, 51.2553544, 0.0210485, 51.2553544 ], "geometry": { "type": "Point", "coordinates": [ 0.0210485, 51.2553544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41520487" }, "bbox": [ 0.0197961, 51.2576046, 0.0197961, 51.2576046 ], "geometry": { "type": "Point", "coordinates": [ 0.0197961, 51.2576046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40527052" }, "bbox": [ 0.0148079, 51.2545346, 0.0148079, 51.2545346 ], "geometry": { "type": "Point", "coordinates": [ 0.0148079, 51.2545346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42514066" }, "bbox": [ 0.0390448, 51.2462651, 0.0390448, 51.2462651 ], "geometry": { "type": "Point", "coordinates": [ 0.0390448, 51.2462651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03465759" }, "bbox": [ -0.5187695, 51.2091392, -0.5187695, 51.2091392 ], "geometry": { "type": "Point", "coordinates": [ -0.5187695, 51.2091392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40526031" }, "bbox": [ 0.0131943, 51.2525689, 0.0131943, 51.2525689 ], "geometry": { "type": "Point", "coordinates": [ 0.0131943, 51.2525689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40524609" }, "bbox": [ 0.0112726, 51.2506488, 0.0112726, 51.2506488 ], "geometry": { "type": "Point", "coordinates": [ 0.0112726, 51.2506488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15517616" }, "bbox": [ -0.3418521, 51.2467178, -0.3418521, 51.2467178 ], "geometry": { "type": "Point", "coordinates": [ -0.3418521, 51.2467178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15515657" }, "bbox": [ -0.3461145, 51.2519208, -0.3461145, 51.2519208 ], "geometry": { "type": "Point", "coordinates": [ -0.3461145, 51.2519208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82412260" }, "bbox": [ -0.8253023, 51.1678962, -0.8253023, 51.1678962 ], "geometry": { "type": "Point", "coordinates": [ -0.8253023, 51.1678962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82412843" }, "bbox": [ -0.8247796, 51.1662179, -0.8247796, 51.1662179 ], "geometry": { "type": "Point", "coordinates": [ -0.8247796, 51.1662179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82414565" }, "bbox": [ -0.8220995, 51.1681518, -0.8220995, 51.1681518 ], "geometry": { "type": "Point", "coordinates": [ -0.8220995, 51.1681518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82414356" }, "bbox": [ -0.8222619, 51.1672535, -0.8222619, 51.1672535 ], "geometry": { "type": "Point", "coordinates": [ -0.8222619, 51.1672535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83412883" }, "bbox": [ -0.8100731, 51.1697515, -0.8100731, 51.1697515 ], "geometry": { "type": "Point", "coordinates": [ -0.8100731, 51.1697515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83410744" }, "bbox": [ -0.813122, 51.1663103, -0.813122, 51.1663103 ], "geometry": { "type": "Point", "coordinates": [ -0.813122, 51.1663103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83414959" }, "bbox": [ -0.8071065, 51.1676055, -0.8071065, 51.1676055 ], "geometry": { "type": "Point", "coordinates": [ -0.8071065, 51.1676055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83411879" }, "bbox": [ -0.8114384, 51.169189, -0.8114384, 51.169189 ], "geometry": { "type": "Point", "coordinates": [ -0.8114384, 51.169189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83415385" }, "bbox": [ -0.8069629, 51.1696296, -0.8069629, 51.1696296 ], "geometry": { "type": "Point", "coordinates": [ -0.8069629, 51.1696296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83411370" }, "bbox": [ -0.8121349, 51.168559, -0.8121349, 51.168559 ], "geometry": { "type": "Point", "coordinates": [ -0.8121349, 51.168559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83415866" }, "bbox": [ -0.8055479, 51.1680895, -0.8055479, 51.1680895 ], "geometry": { "type": "Point", "coordinates": [ -0.8055479, 51.1680895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83412354" }, "bbox": [ -0.8112755, 51.1670136, -0.8112755, 51.1670136 ], "geometry": { "type": "Point", "coordinates": [ -0.8112755, 51.1670136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83413988" }, "bbox": [ -0.8084775, 51.1701525, -0.8084775, 51.1701525 ], "geometry": { "type": "Point", "coordinates": [ -0.8084775, 51.1701525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41524223" }, "bbox": [ 0.0244208, 51.2513895, 0.0244208, 51.2513895 ], "geometry": { "type": "Point", "coordinates": [ 0.0244208, 51.2513895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41523490" }, "bbox": [ 0.0242506, 51.2578404, 0.0242506, 51.2578404 ], "geometry": { "type": "Point", "coordinates": [ 0.0242506, 51.2578404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41527627" }, "bbox": [ 0.0300595, 51.2519829, 0.0300595, 51.2519829 ], "geometry": { "type": "Point", "coordinates": [ 0.0300595, 51.2519829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42517564" }, "bbox": [ 0.0438341, 51.246124, 0.0438341, 51.246124 ], "geometry": { "type": "Point", "coordinates": [ 0.0438341, 51.246124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513753" }, "bbox": [ 0.0384328, 51.2451674, 0.0384328, 51.2451674 ], "geometry": { "type": "Point", "coordinates": [ 0.0384328, 51.2451674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36449481" }, "bbox": [ -0.0419948, 51.1864885, -0.0419948, 51.1864885 ], "geometry": { "type": "Point", "coordinates": [ -0.0419948, 51.1864885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457568" }, "bbox": [ -0.1015214, 51.1949389, -0.1015214, 51.1949389 ], "geometry": { "type": "Point", "coordinates": [ -0.1015214, 51.1949389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41504668" }, "bbox": [ 0.0253074, 51.2377921, 0.0253074, 51.2377921 ], "geometry": { "type": "Point", "coordinates": [ 0.0253074, 51.2377921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42539608" }, "bbox": [ 0.0476242, 51.2588048, 0.0476242, 51.2588048 ], "geometry": { "type": "Point", "coordinates": [ 0.0476242, 51.2588048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31468219" }, "bbox": [ -0.1141369, 51.1994552, -0.1141369, 51.1994552 ], "geometry": { "type": "Point", "coordinates": [ -0.1141369, 51.1994552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41518683" }, "bbox": [ 0.0310925, 51.2478371, 0.0310925, 51.2478371 ], "geometry": { "type": "Point", "coordinates": [ 0.0310925, 51.2478371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32458453" }, "bbox": [ -0.1003747, 51.1935811, -0.1003747, 51.1935811 ], "geometry": { "type": "Point", "coordinates": [ -0.1003747, 51.1935811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40529590" }, "bbox": [ 0.0190912, 51.2577072, 0.0190912, 51.2577072 ], "geometry": { "type": "Point", "coordinates": [ 0.0190912, 51.2577072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42529896" }, "bbox": [ 0.0481207, 51.2578944, 0.0481207, 51.2578944 ], "geometry": { "type": "Point", "coordinates": [ 0.0481207, 51.2578944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42511187" }, "bbox": [ 0.034787, 51.2483362, 0.034787, 51.2483362 ], "geometry": { "type": "Point", "coordinates": [ 0.034787, 51.2483362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513787" }, "bbox": [ 0.0384389, 51.2482041, 0.0384389, 51.2482041 ], "geometry": { "type": "Point", "coordinates": [ 0.0384389, 51.2482041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42524223" }, "bbox": [ 0.0394854, 51.25148, 0.0394854, 51.25148 ], "geometry": { "type": "Point", "coordinates": [ 0.0394854, 51.25148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42517069" }, "bbox": [ 0.0432014, 51.2465486, 0.0432014, 51.2465486 ], "geometry": { "type": "Point", "coordinates": [ 0.0432014, 51.2465486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32456260" }, "bbox": [ -0.1034452, 51.1943416, -0.1034452, 51.1943416 ], "geometry": { "type": "Point", "coordinates": [ -0.1034452, 51.1943416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42519355" }, "bbox": [ 0.0472412, 51.2453323, 0.0472412, 51.2453323 ], "geometry": { "type": "Point", "coordinates": [ 0.0472412, 51.2453323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530102" }, "bbox": [ 0.0482049, 51.2584367, 0.0482049, 51.2584367 ], "geometry": { "type": "Point", "coordinates": [ 0.0482049, 51.2584367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09493648" }, "bbox": [ -0.4371719, 51.2339543, -0.4371719, 51.2339543 ], "geometry": { "type": "Point", "coordinates": [ -0.4371719, 51.2339543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09493698" }, "bbox": [ -0.4347723, 51.2385325, -0.4347723, 51.2385325 ], "geometry": { "type": "Point", "coordinates": [ -0.4347723, 51.2385325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41504682" }, "bbox": [ 0.0256174, 51.239069, 0.0256174, 51.239069 ], "geometry": { "type": "Point", "coordinates": [ 0.0256174, 51.239069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41503573" }, "bbox": [ 0.0232839, 51.2383109, 0.0232839, 51.2383109 ], "geometry": { "type": "Point", "coordinates": [ 0.0232839, 51.2383109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17447518" }, "bbox": [ -0.3168443, 51.1847683, -0.3168443, 51.1847683 ], "geometry": { "type": "Point", "coordinates": [ -0.3168443, 51.1847683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17446928" }, "bbox": [ -0.31728, 51.1856836, -0.31728, 51.1856836 ], "geometry": { "type": "Point", "coordinates": [ -0.31728, 51.1856836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07523238" }, "bbox": [ -0.4647006, 51.2589795, -0.4647006, 51.2589795 ], "geometry": { "type": "Point", "coordinates": [ -0.4647006, 51.2589795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32454388" }, "bbox": [ -0.1067784, 51.1967639, -0.1067784, 51.1967639 ], "geometry": { "type": "Point", "coordinates": [ -0.1067784, 51.1967639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42514879" }, "bbox": [ 0.0400835, 51.2475101, 0.0400835, 51.2475101 ], "geometry": { "type": "Point", "coordinates": [ 0.0400835, 51.2475101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42519440" }, "bbox": [ 0.0463752, 51.2439847, 0.0463752, 51.2439847 ], "geometry": { "type": "Point", "coordinates": [ 0.0463752, 51.2439847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513057" }, "bbox": [ 0.037442, 51.2454792, 0.037442, 51.2454792 ], "geometry": { "type": "Point", "coordinates": [ 0.037442, 51.2454792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31463421" }, "bbox": [ -0.1213597, 51.2000505, -0.1213597, 51.2000505 ], "geometry": { "type": "Point", "coordinates": [ -0.1213597, 51.2000505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42524031" }, "bbox": [ 0.0391021, 51.2522273, 0.0391021, 51.2522273 ], "geometry": { "type": "Point", "coordinates": [ 0.0391021, 51.2522273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07497564" }, "bbox": [ -0.4576463, 51.2357305, -0.4576463, 51.2357305 ], "geometry": { "type": "Point", "coordinates": [ -0.4576463, 51.2357305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42518279" }, "bbox": [ 0.0449648, 51.2475327, 0.0449648, 51.2475327 ], "geometry": { "type": "Point", "coordinates": [ 0.0449648, 51.2475327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42512862" }, "bbox": [ 0.0371825, 51.2459483, 0.0371825, 51.2459483 ], "geometry": { "type": "Point", "coordinates": [ 0.0371825, 51.2459483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09486877" }, "bbox": [ -0.4307895, 51.2286492, -0.4307895, 51.2286492 ], "geometry": { "type": "Point", "coordinates": [ -0.4307895, 51.2286492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09483861" }, "bbox": [ -0.4336901, 51.2270999, -0.4336901, 51.2270999 ], "geometry": { "type": "Point", "coordinates": [ -0.4336901, 51.2270999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09485858" }, "bbox": [ -0.4323965, 51.2256745, -0.4323965, 51.2256745 ], "geometry": { "type": "Point", "coordinates": [ -0.4323965, 51.2256745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42519840" }, "bbox": [ 0.0476354, 51.2437085, 0.0476354, 51.2437085 ], "geometry": { "type": "Point", "coordinates": [ 0.0476354, 51.2437085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42517563" }, "bbox": [ 0.0436438, 51.2460981, 0.0436438, 51.2460981 ], "geometry": { "type": "Point", "coordinates": [ 0.0436438, 51.2460981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09532053" }, "bbox": [ -0.4360259, 51.2708147, -0.4360259, 51.2708147 ], "geometry": { "type": "Point", "coordinates": [ -0.4360259, 51.2708147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08548322" }, "bbox": [ -0.4421996, 51.2769571, -0.4421996, 51.2769571 ], "geometry": { "type": "Point", "coordinates": [ -0.4421996, 51.2769571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08548402" }, "bbox": [ -0.4408375, 51.2750283, -0.4408375, 51.2750283 ], "geometry": { "type": "Point", "coordinates": [ -0.4408375, 51.2750283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08536962" }, "bbox": [ -0.4435487, 51.2716679, -0.4435487, 51.2716679 ], "geometry": { "type": "Point", "coordinates": [ -0.4435487, 51.2716679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08537108" }, "bbox": [ -0.4431479, 51.2666395, -0.4431479, 51.2666395 ], "geometry": { "type": "Point", "coordinates": [ -0.4431479, 51.2666395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08535988" }, "bbox": [ -0.4445813, 51.2737287, -0.4445813, 51.2737287 ], "geometry": { "type": "Point", "coordinates": [ -0.4445813, 51.2737287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42515983" }, "bbox": [ 0.0416105, 51.2477876, 0.0416105, 51.2477876 ], "geometry": { "type": "Point", "coordinates": [ 0.0416105, 51.2477876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41506173" }, "bbox": [ 0.0273704, 51.2380029, 0.0273704, 51.2380029 ], "geometry": { "type": "Point", "coordinates": [ 0.0273704, 51.2380029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42525714" }, "bbox": [ 0.0416113, 51.2506247, 0.0416113, 51.2506247 ], "geometry": { "type": "Point", "coordinates": [ 0.0416113, 51.2506247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42500163" }, "bbox": [ 0.0315229, 51.2373189, 0.0315229, 51.2373189 ], "geometry": { "type": "Point", "coordinates": [ 0.0315229, 51.2373189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41503066" }, "bbox": [ 0.0219416, 51.2372625, 0.0219416, 51.2372625 ], "geometry": { "type": "Point", "coordinates": [ 0.0219416, 51.2372625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42524524" }, "bbox": [ 0.0398187, 51.25159, 0.0398187, 51.25159 ], "geometry": { "type": "Point", "coordinates": [ 0.0398187, 51.25159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07497471" }, "bbox": [ -0.4583899, 51.2364244, -0.4583899, 51.2364244 ], "geometry": { "type": "Point", "coordinates": [ -0.4583899, 51.2364244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14512395" }, "bbox": [ -0.3655226, 51.2556104, -0.3655226, 51.2556104 ], "geometry": { "type": "Point", "coordinates": [ -0.3655226, 51.2556104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14512082" }, "bbox": [ -0.3638029, 51.2538179, -0.3638029, 51.2538179 ], "geometry": { "type": "Point", "coordinates": [ -0.3638029, 51.2538179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14511471" }, "bbox": [ -0.3660355, 51.2530773, -0.3660355, 51.2530773 ], "geometry": { "type": "Point", "coordinates": [ -0.3660355, 51.2530773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38608824" }, "bbox": [ -0.0082448, 51.3243835, -0.0082448, 51.3243835 ], "geometry": { "type": "Point", "coordinates": [ -0.0082448, 51.3243835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38608633" }, "bbox": [ -0.0084604, 51.325087, -0.0084604, 51.325087 ], "geometry": { "type": "Point", "coordinates": [ -0.0084604, 51.325087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40560896" }, "bbox": [ 0.0082508, 51.2954854, 0.0082508, 51.2954854 ], "geometry": { "type": "Point", "coordinates": [ 0.0082508, 51.2954854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36447335" }, "bbox": [ -0.0449326, 51.1821649, -0.0449326, 51.1821649 ], "geometry": { "type": "Point", "coordinates": [ -0.0449326, 51.1821649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36446319" }, "bbox": [ -0.0462027, 51.1811888, -0.0462027, 51.1811888 ], "geometry": { "type": "Point", "coordinates": [ -0.0462027, 51.1811888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36446253" }, "bbox": [ -0.0465424, 51.1837954, -0.0465424, 51.1837954 ], "geometry": { "type": "Point", "coordinates": [ -0.0465424, 51.1837954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36446541" }, "bbox": [ -0.046076, 51.1826736, -0.046076, 51.1826736 ], "geometry": { "type": "Point", "coordinates": [ -0.046076, 51.1826736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36447448" }, "bbox": [ -0.0448365, 51.1833196, -0.0448365, 51.1833196 ], "geometry": { "type": "Point", "coordinates": [ -0.0448365, 51.1833196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97359294" }, "bbox": [ -0.6016538, 51.114532, -0.6016538, 51.114532 ], "geometry": { "type": "Point", "coordinates": [ -0.6016538, 51.114532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15500704" }, "bbox": [ -0.3528883, 51.2380438, -0.3528883, 51.2380438 ], "geometry": { "type": "Point", "coordinates": [ -0.3528883, 51.2380438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14509103" }, "bbox": [ -0.3551794, 51.2379677, -0.3551794, 51.2379677 ], "geometry": { "type": "Point", "coordinates": [ -0.3551794, 51.2379677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14509806" }, "bbox": [ -0.3542139, 51.2381531, -0.3542139, 51.2381531 ], "geometry": { "type": "Point", "coordinates": [ -0.3542139, 51.2381531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94321090" }, "bbox": [ -0.6592454, 51.0876594, -0.6592454, 51.0876594 ], "geometry": { "type": "Point", "coordinates": [ -0.6592454, 51.0876594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94320752" }, "bbox": [ -0.6580233, 51.084283, -0.6580233, 51.084283 ], "geometry": { "type": "Point", "coordinates": [ -0.6580233, 51.084283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94321339" }, "bbox": [ -0.6578416, 51.0831748, -0.6578416, 51.0831748 ], "geometry": { "type": "Point", "coordinates": [ -0.6578416, 51.0831748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94321055" }, "bbox": [ -0.6577073, 51.0846423, -0.6577073, 51.0846423 ], "geometry": { "type": "Point", "coordinates": [ -0.6577073, 51.0846423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94320156" }, "bbox": [ -0.6595148, 51.0846928, -0.6595148, 51.0846928 ], "geometry": { "type": "Point", "coordinates": [ -0.6595148, 51.0846928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07352392" }, "bbox": [ -0.4693834, 51.1126534, -0.4693834, 51.1126534 ], "geometry": { "type": "Point", "coordinates": [ -0.4693834, 51.1126534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07352770" }, "bbox": [ -0.4663737, 51.1081639, -0.4663737, 51.1081639 ], "geometry": { "type": "Point", "coordinates": [ -0.4663737, 51.1081639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38421369" }, "bbox": [ -0.0261291, 51.166863, -0.0261291, 51.166863 ], "geometry": { "type": "Point", "coordinates": [ -0.0261291, 51.166863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07382628" }, "bbox": [ -0.4682302, 51.1337628, -0.4682302, 51.1337628 ], "geometry": { "type": "Point", "coordinates": [ -0.4682302, 51.1337628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18421508" }, "bbox": [ -0.3114793, 51.1658428, -0.3114793, 51.1658428 ], "geometry": { "type": "Point", "coordinates": [ -0.3114793, 51.1658428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18410682" }, "bbox": [ -0.3126934, 51.1632719, -0.3126934, 51.1632719 ], "geometry": { "type": "Point", "coordinates": [ -0.3126934, 51.1632719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18411780" }, "bbox": [ -0.3115781, 51.1630125, -0.3115781, 51.1630125 ], "geometry": { "type": "Point", "coordinates": [ -0.3115781, 51.1630125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19525005" }, "bbox": [ -0.2889565, 51.2554939, -0.2889565, 51.2554939 ], "geometry": { "type": "Point", "coordinates": [ -0.2889565, 51.2554939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19523735" }, "bbox": [ -0.2910939, 51.2582316, -0.2910939, 51.2582316 ], "geometry": { "type": "Point", "coordinates": [ -0.2910939, 51.2582316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19511453" }, "bbox": [ -0.2944092, 51.2503335, -0.2944092, 51.2503335 ], "geometry": { "type": "Point", "coordinates": [ -0.2944092, 51.2503335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18528310" }, "bbox": [ -0.2998126, 51.2567415, -0.2998126, 51.2567415 ], "geometry": { "type": "Point", "coordinates": [ -0.2998126, 51.2567415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21516184" }, "bbox": [ -0.2586364, 51.2528165, -0.2586364, 51.2528165 ], "geometry": { "type": "Point", "coordinates": [ -0.2586364, 51.2528165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21516392" }, "bbox": [ -0.2582488, 51.2529987, -0.2582488, 51.2529987 ], "geometry": { "type": "Point", "coordinates": [ -0.2582488, 51.2529987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22532646" }, "bbox": [ -0.2478929, 51.2667372, -0.2478929, 51.2667372 ], "geometry": { "type": "Point", "coordinates": [ -0.2478929, 51.2667372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07514550" }, "bbox": [ -0.4615065, 51.2527753, -0.4615065, 51.2527753 ], "geometry": { "type": "Point", "coordinates": [ -0.4615065, 51.2527753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07515746" }, "bbox": [ -0.4599976, 51.2533509, -0.4599976, 51.2533509 ], "geometry": { "type": "Point", "coordinates": [ -0.4599976, 51.2533509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517922" }, "bbox": [ -0.4567939, 51.2500413, -0.4567939, 51.2500413 ], "geometry": { "type": "Point", "coordinates": [ -0.4567939, 51.2500413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07518745" }, "bbox": [ -0.4558767, 51.252349, -0.4558767, 51.252349 ], "geometry": { "type": "Point", "coordinates": [ -0.4558767, 51.252349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28508170" }, "bbox": [ -0.1549236, 51.2413792, -0.1549236, 51.2413792 ], "geometry": { "type": "Point", "coordinates": [ -0.1549236, 51.2413792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37529956" }, "bbox": [ -0.0218051, 51.2552377, -0.0218051, 51.2552377 ], "geometry": { "type": "Point", "coordinates": [ -0.0218051, 51.2552377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37529647" }, "bbox": [ -0.0247721, 51.2546152, -0.0247721, 51.2546152 ], "geometry": { "type": "Point", "coordinates": [ -0.0247721, 51.2546152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37529276" }, "bbox": [ -0.0247305, 51.25741, -0.0247305, 51.25741 ], "geometry": { "type": "Point", "coordinates": [ -0.0247305, 51.25741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37529067" }, "bbox": [ -0.0252152, 51.2565658, -0.0252152, 51.2565658 ], "geometry": { "type": "Point", "coordinates": [ -0.0252152, 51.2565658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38522287" }, "bbox": [ -0.0206133, 51.2583524, -0.0206133, 51.2583524 ], "geometry": { "type": "Point", "coordinates": [ -0.0206133, 51.2583524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38520282" }, "bbox": [ -0.0235692, 51.2577191, -0.0235692, 51.2577191 ], "geometry": { "type": "Point", "coordinates": [ -0.0235692, 51.2577191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38521974" }, "bbox": [ -0.0211874, 51.2570015, -0.0211874, 51.2570015 ], "geometry": { "type": "Point", "coordinates": [ -0.0211874, 51.2570015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38523273" }, "bbox": [ -0.0193896, 51.2570475, -0.0193896, 51.2570475 ], "geometry": { "type": "Point", "coordinates": [ -0.0193896, 51.2570475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38520965" }, "bbox": [ -0.0224861, 51.2561953, -0.0224861, 51.2561953 ], "geometry": { "type": "Point", "coordinates": [ -0.0224861, 51.2561953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37473265" }, "bbox": [ -0.0352553, 51.2116608, -0.0352553, 51.2116608 ], "geometry": { "type": "Point", "coordinates": [ -0.0352553, 51.2116608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07396321" }, "bbox": [ -0.4629081, 51.1420911, -0.4629081, 51.1420911 ], "geometry": { "type": "Point", "coordinates": [ -0.4629081, 51.1420911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90316091" }, "bbox": [ -0.7079318, 51.0794284, -0.7079318, 51.0794284 ], "geometry": { "type": "Point", "coordinates": [ -0.7079318, 51.0794284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90315998" }, "bbox": [ -0.7079815, 51.0799647, -0.7079815, 51.0799647 ], "geometry": { "type": "Point", "coordinates": [ -0.7079815, 51.0799647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90318089" }, "bbox": [ -0.7053365, 51.0792481, -0.7053365, 51.0792481 ], "geometry": { "type": "Point", "coordinates": [ -0.7053365, 51.0792481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90317786" }, "bbox": [ -0.7056335, 51.0789366, -0.7056335, 51.0789366 ], "geometry": { "type": "Point", "coordinates": [ -0.7056335, 51.0789366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11412506" }, "bbox": [ -0.4104498, 51.1579212, -0.4104498, 51.1579212 ], "geometry": { "type": "Point", "coordinates": [ -0.4104498, 51.1579212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11414307" }, "bbox": [ -0.4082639, 51.1579434, -0.4082639, 51.1579434 ], "geometry": { "type": "Point", "coordinates": [ -0.4082639, 51.1579434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89360886" }, "bbox": [ -0.7282482, 51.1244713, -0.7282482, 51.1244713 ], "geometry": { "type": "Point", "coordinates": [ -0.7282482, 51.1244713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99475476" }, "bbox": [ -0.5762868, 51.2202158, -0.5762868, 51.2202158 ], "geometry": { "type": "Point", "coordinates": [ -0.5762868, 51.2202158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91310158" }, "bbox": [ -0.7012498, 51.0750185, -0.7012498, 51.0750185 ], "geometry": { "type": "Point", "coordinates": [ -0.7012498, 51.0750185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89364087" }, "bbox": [ -0.7237155, 51.1241799, -0.7237155, 51.1241799 ], "geometry": { "type": "Point", "coordinates": [ -0.7237155, 51.1241799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99452121" }, "bbox": [ -0.5814035, 51.1976078, -0.5814035, 51.1976078 ], "geometry": { "type": "Point", "coordinates": [ -0.5814035, 51.1976078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99424821" }, "bbox": [ -0.5786976, 51.1705953, -0.5786976, 51.1705953 ], "geometry": { "type": "Point", "coordinates": [ -0.5786976, 51.1705953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99409193" }, "bbox": [ -0.5725093, 51.1590215, -0.5725093, 51.1590215 ], "geometry": { "type": "Point", "coordinates": [ -0.5725093, 51.1590215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00415191" }, "bbox": [ -0.5636227, 51.1676499, -0.5636227, 51.1676499 ], "geometry": { "type": "Point", "coordinates": [ -0.5636227, 51.1676499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00401282" }, "bbox": [ -0.5691363, 51.157474, -0.5691363, 51.157474 ], "geometry": { "type": "Point", "coordinates": [ -0.5691363, 51.157474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00401583" }, "bbox": [ -0.568645, 51.1578992, -0.568645, 51.1578992 ], "geometry": { "type": "Point", "coordinates": [ -0.568645, 51.1578992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00403270" }, "bbox": [ -0.5665615, 51.1567458, -0.5665615, 51.1567458 ], "geometry": { "type": "Point", "coordinates": [ -0.5665615, 51.1567458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32523608" }, "bbox": [ -0.1050093, 51.2525883, -0.1050093, 51.2525883 ], "geometry": { "type": "Point", "coordinates": [ -0.1050093, 51.2525883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32522935" }, "bbox": [ -0.1056502, 51.2549567, -0.1056502, 51.2549567 ], "geometry": { "type": "Point", "coordinates": [ -0.1056502, 51.2549567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32521117" }, "bbox": [ -0.1084954, 51.2533455, -0.1084954, 51.2533455 ], "geometry": { "type": "Point", "coordinates": [ -0.1084954, 51.2533455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15493462" }, "bbox": [ -0.3489638, 51.2339101, -0.3489638, 51.2339101 ], "geometry": { "type": "Point", "coordinates": [ -0.3489638, 51.2339101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15496063" }, "bbox": [ -0.3454906, 51.2338809, -0.3454906, 51.2338809 ], "geometry": { "type": "Point", "coordinates": [ -0.3454906, 51.2338809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93594583" }, "bbox": [ -0.6600027, 51.329984, -0.6600027, 51.329984 ], "geometry": { "type": "Point", "coordinates": [ -0.6600027, 51.329984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93593782" }, "bbox": [ -0.6610913, 51.3297006, -0.6610913, 51.3297006 ], "geometry": { "type": "Point", "coordinates": [ -0.6610913, 51.3297006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98543288" }, "bbox": [ -0.5915489, 51.2845852, -0.5915489, 51.2845852 ], "geometry": { "type": "Point", "coordinates": [ -0.5915489, 51.2845852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93605128" }, "bbox": [ -0.6590245, 51.3339187, -0.6590245, 51.3339187 ], "geometry": { "type": "Point", "coordinates": [ -0.6590245, 51.3339187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99601879" }, "bbox": [ -0.577518, 51.3376564, -0.577518, 51.3376564 ], "geometry": { "type": "Point", "coordinates": [ -0.577518, 51.3376564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96469054" }, "bbox": [ -0.6141129, 51.2098586, -0.6141129, 51.2098586 ], "geometry": { "type": "Point", "coordinates": [ -0.6141129, 51.2098586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98558451" }, "bbox": [ -0.5828204, 51.2902431, -0.5828204, 51.2902431 ], "geometry": { "type": "Point", "coordinates": [ -0.5828204, 51.2902431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99552553" }, "bbox": [ -0.5785591, 51.2903635, -0.5785591, 51.2903635 ], "geometry": { "type": "Point", "coordinates": [ -0.5785591, 51.2903635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99550506" }, "bbox": [ -0.5809694, 51.2860093, -0.5809694, 51.2860093 ], "geometry": { "type": "Point", "coordinates": [ -0.5809694, 51.2860093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98472027" }, "bbox": [ -0.5953057, 51.2163462, -0.5953057, 51.2163462 ], "geometry": { "type": "Point", "coordinates": [ -0.5953057, 51.2163462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98482824" }, "bbox": [ -0.5940409, 51.2250428, -0.5940409, 51.2250428 ], "geometry": { "type": "Point", "coordinates": [ -0.5940409, 51.2250428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98482907" }, "bbox": [ -0.5943426, 51.2233916, -0.5943426, 51.2233916 ], "geometry": { "type": "Point", "coordinates": [ -0.5943426, 51.2233916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94485369" }, "bbox": [ -0.6477329, 51.2297243, -0.6477329, 51.2297243 ], "geometry": { "type": "Point", "coordinates": [ -0.6477329, 51.2297243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89469056" }, "bbox": [ -0.7129162, 51.2113561, -0.7129162, 51.2113561 ], "geometry": { "type": "Point", "coordinates": [ -0.7129162, 51.2113561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90466798" }, "bbox": [ -0.7045421, 51.2146777, -0.7045421, 51.2146777 ], "geometry": { "type": "Point", "coordinates": [ -0.7045421, 51.2146777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90460956" }, "bbox": [ -0.7116327, 51.2108012, -0.7116327, 51.2108012 ], "geometry": { "type": "Point", "coordinates": [ -0.7116327, 51.2108012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90460934" }, "bbox": [ -0.711526, 51.2091749, -0.711526, 51.2091749 ], "geometry": { "type": "Point", "coordinates": [ -0.711526, 51.2091749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90476721" }, "bbox": [ -0.7031235, 51.2170692, -0.7031235, 51.2170692 ], "geometry": { "type": "Point", "coordinates": [ -0.7031235, 51.2170692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90449683" }, "bbox": [ -0.6991291, 51.1954997, -0.6991291, 51.1954997 ], "geometry": { "type": "Point", "coordinates": [ -0.6991291, 51.1954997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90447175" }, "bbox": [ -0.7031895, 51.1947249, -0.7031895, 51.1947249 ], "geometry": { "type": "Point", "coordinates": [ -0.7031895, 51.1947249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99619773" }, "bbox": [ -0.5659293, 51.3457827, -0.5659293, 51.3457827 ], "geometry": { "type": "Point", "coordinates": [ -0.5659293, 51.3457827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99616397" }, "bbox": [ -0.5710596, 51.3482716, -0.5710596, 51.3482716 ], "geometry": { "type": "Point", "coordinates": [ -0.5710596, 51.3482716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94613312" }, "bbox": [ -0.6470402, 51.3412438, -0.6470402, 51.3412438 ], "geometry": { "type": "Point", "coordinates": [ -0.6470402, 51.3412438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94552829" }, "bbox": [ -0.6490696, 51.2889661, -0.6490696, 51.2889661 ], "geometry": { "type": "Point", "coordinates": [ -0.6490696, 51.2889661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94553734" }, "bbox": [ -0.6491455, 51.2894663, -0.6491455, 51.2894663 ], "geometry": { "type": "Point", "coordinates": [ -0.6491455, 51.2894663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94552027" }, "bbox": [ -0.6502707, 51.2886908, -0.6502707, 51.2886908 ], "geometry": { "type": "Point", "coordinates": [ -0.6502707, 51.2886908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94552430" }, "bbox": [ -0.6499427, 51.2889819, -0.6499427, 51.2889819 ], "geometry": { "type": "Point", "coordinates": [ -0.6499427, 51.2889819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94550734" }, "bbox": [ -0.6524089, 51.2894343, -0.6524089, 51.2894343 ], "geometry": { "type": "Point", "coordinates": [ -0.6524089, 51.2894343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88464997" }, "bbox": [ -0.7344743, 51.2154021, -0.7344743, 51.2154021 ], "geometry": { "type": "Point", "coordinates": [ -0.7344743, 51.2154021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89462653" }, "bbox": [ -0.7237681, 51.2090898, -0.7237681, 51.2090898 ], "geometry": { "type": "Point", "coordinates": [ -0.7237681, 51.2090898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89466753" }, "bbox": [ -0.7178974, 51.2109174, -0.7178974, 51.2109174 ], "geometry": { "type": "Point", "coordinates": [ -0.7178974, 51.2109174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89467757" }, "bbox": [ -0.7161116, 51.2113232, -0.7161116, 51.2113232 ], "geometry": { "type": "Point", "coordinates": [ -0.7161116, 51.2113232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89460593" }, "bbox": [ -0.7262561, 51.2146994, -0.7262561, 51.2146994 ], "geometry": { "type": "Point", "coordinates": [ -0.7262561, 51.2146994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89475768" }, "bbox": [ -0.7188495, 51.2213389, -0.7188495, 51.2213389 ], "geometry": { "type": "Point", "coordinates": [ -0.7188495, 51.2213389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89476078" }, "bbox": [ -0.7183417, 51.2219467, -0.7183417, 51.2219467 ], "geometry": { "type": "Point", "coordinates": [ -0.7183417, 51.2219467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89470909" }, "bbox": [ -0.7258805, 51.2161747, -0.7258805, 51.2161747 ], "geometry": { "type": "Point", "coordinates": [ -0.7258805, 51.2161747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529856" }, "bbox": [ -0.6252237, 51.2641101, -0.6252237, 51.2641101 ], "geometry": { "type": "Point", "coordinates": [ -0.6252237, 51.2641101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95526568" }, "bbox": [ -0.6305298, 51.2653823, -0.6305298, 51.2653823 ], "geometry": { "type": "Point", "coordinates": [ -0.6305298, 51.2653823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96528801" }, "bbox": [ -0.612642, 51.2590407, -0.612642, 51.2590407 ], "geometry": { "type": "Point", "coordinates": [ -0.612642, 51.2590407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97528921" }, "bbox": [ -0.5985513, 51.2603969, -0.5985513, 51.2603969 ], "geometry": { "type": "Point", "coordinates": [ -0.5985513, 51.2603969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97529442" }, "bbox": [ -0.5975266, 51.262649, -0.5975266, 51.262649 ], "geometry": { "type": "Point", "coordinates": [ -0.5975266, 51.262649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04696215" }, "bbox": [ -0.4975743, 51.411784, -0.4975743, 51.411784 ], "geometry": { "type": "Point", "coordinates": [ -0.4975743, 51.411784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04686082" }, "bbox": [ -0.4976957, 51.4088842, -0.4976957, 51.4088842 ], "geometry": { "type": "Point", "coordinates": [ -0.4976957, 51.4088842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06668050" }, "bbox": [ -0.4670217, 51.3876868, -0.4670217, 51.3876868 ], "geometry": { "type": "Point", "coordinates": [ -0.4670217, 51.3876868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04687489" }, "bbox": [ -0.4951793, 51.4097168, -0.4951793, 51.4097168 ], "geometry": { "type": "Point", "coordinates": [ -0.4951793, 51.4097168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11380381" }, "bbox": [ -0.4141632, 51.1377474, -0.4141632, 51.1377474 ], "geometry": { "type": "Point", "coordinates": [ -0.4141632, 51.1377474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86418194" }, "bbox": [ -0.7595884, 51.1703408, -0.7595884, 51.1703408 ], "geometry": { "type": "Point", "coordinates": [ -0.7595884, 51.1703408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86416480" }, "bbox": [ -0.7620831, 51.1689198, -0.7620831, 51.1689198 ], "geometry": { "type": "Point", "coordinates": [ -0.7620831, 51.1689198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86428515" }, "bbox": [ -0.7592228, 51.1724828, -0.7592228, 51.1724828 ], "geometry": { "type": "Point", "coordinates": [ -0.7592228, 51.1724828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92375603" }, "bbox": [ -0.6789943, 51.125113, -0.6789943, 51.125113 ], "geometry": { "type": "Point", "coordinates": [ -0.6789943, 51.125113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92371149" }, "bbox": [ -0.6839344, 51.1293864, -0.6839344, 51.1293864 ], "geometry": { "type": "Point", "coordinates": [ -0.6839344, 51.1293864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92372447" }, "bbox": [ -0.6836532, 51.1294823, -0.6836532, 51.1294823 ], "geometry": { "type": "Point", "coordinates": [ -0.6836532, 51.1294823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92373060" }, "bbox": [ -0.6816945, 51.1301923, -0.6816945, 51.1301923 ], "geometry": { "type": "Point", "coordinates": [ -0.6816945, 51.1301923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91364063" }, "bbox": [ -0.695176, 51.1218093, -0.695176, 51.1218093 ], "geometry": { "type": "Point", "coordinates": [ -0.695176, 51.1218093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91362673" }, "bbox": [ -0.6982061, 51.122478, -0.6982061, 51.122478 ], "geometry": { "type": "Point", "coordinates": [ -0.6982061, 51.122478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91365578" }, "bbox": [ -0.6926497, 51.1229851, -0.6926497, 51.1229851 ], "geometry": { "type": "Point", "coordinates": [ -0.6926497, 51.1229851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91363988" }, "bbox": [ -0.6953408, 51.1239268, -0.6953408, 51.1239268 ], "geometry": { "type": "Point", "coordinates": [ -0.6953408, 51.1239268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91368496" }, "bbox": [ -0.6891855, 51.1242901, -0.6891855, 51.1242901 ], "geometry": { "type": "Point", "coordinates": [ -0.6891855, 51.1242901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91379214" }, "bbox": [ -0.6873477, 51.1263084, -0.6873477, 51.1263084 ], "geometry": { "type": "Point", "coordinates": [ -0.6873477, 51.1263084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94462170" }, "bbox": [ -0.6531206, 51.2119634, -0.6531206, 51.2119634 ], "geometry": { "type": "Point", "coordinates": [ -0.6531206, 51.2119634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95339576" }, "bbox": [ -0.6309832, 51.0941739, -0.6309832, 51.0941739 ], "geometry": { "type": "Point", "coordinates": [ -0.6309832, 51.0941739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95339131" }, "bbox": [ -0.6318148, 51.0911166, -0.6318148, 51.0911166 ], "geometry": { "type": "Point", "coordinates": [ -0.6318148, 51.0911166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95338333" }, "bbox": [ -0.6328128, 51.0912567, -0.6328128, 51.0912567 ], "geometry": { "type": "Point", "coordinates": [ -0.6328128, 51.0912567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07464114" }, "bbox": [ -0.4638843, 51.2044361, -0.4638843, 51.2044361 ], "geometry": { "type": "Point", "coordinates": [ -0.4638843, 51.2044361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07461048" }, "bbox": [ -0.4688409, 51.2069829, -0.4688409, 51.2069829 ], "geometry": { "type": "Point", "coordinates": [ -0.4688409, 51.2069829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453619" }, "bbox": [ -0.4647837, 51.1958895, -0.4647837, 51.1958895 ], "geometry": { "type": "Point", "coordinates": [ -0.4647837, 51.1958895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06564578" }, "bbox": [ -0.474377, 51.3002093, -0.474377, 51.3002093 ], "geometry": { "type": "Point", "coordinates": [ -0.474377, 51.3002093 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05566879" }, "bbox": [ -0.4853253, 51.3004808, -0.4853253, 51.3004808 ], "geometry": { "type": "Point", "coordinates": [ -0.4853253, 51.3004808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06572705" }, "bbox": [ -0.4760601, 51.3022997, -0.4760601, 51.3022997 ], "geometry": { "type": "Point", "coordinates": [ -0.4760601, 51.3022997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00412174" }, "bbox": [ -0.5673468, 51.1662075, -0.5673468, 51.1662075 ], "geometry": { "type": "Point", "coordinates": [ -0.5673468, 51.1662075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04623395" }, "bbox": [ -0.5029954, 51.3561232, -0.5029954, 51.3561232 ], "geometry": { "type": "Point", "coordinates": [ -0.5029954, 51.3561232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04624198" }, "bbox": [ -0.5017329, 51.3563578, -0.5017329, 51.3563578 ], "geometry": { "type": "Point", "coordinates": [ -0.5017329, 51.3563578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04625678" }, "bbox": [ -0.499872, 51.3545925, -0.499872, 51.3545925 ], "geometry": { "type": "Point", "coordinates": [ -0.499872, 51.3545925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04622359" }, "bbox": [ -0.5046155, 51.3528716, -0.5046155, 51.3528716 ], "geometry": { "type": "Point", "coordinates": [ -0.5046155, 51.3528716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04623061" }, "bbox": [ -0.5037623, 51.3530466, -0.5037623, 51.3530466 ], "geometry": { "type": "Point", "coordinates": [ -0.5037623, 51.3530466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04623384" }, "bbox": [ -0.5024298, 51.3547446, -0.5024298, 51.3547446 ], "geometry": { "type": "Point", "coordinates": [ -0.5024298, 51.3547446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04624285" }, "bbox": [ -0.5020562, 51.3551322, -0.5020562, 51.3551322 ], "geometry": { "type": "Point", "coordinates": [ -0.5020562, 51.3551322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10482461" }, "bbox": [ -0.4216898, 51.2262403, -0.4216898, 51.2262403 ], "geometry": { "type": "Point", "coordinates": [ -0.4216898, 51.2262403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10476370" }, "bbox": [ -0.4176039, 51.2178049, -0.4176039, 51.2178049 ], "geometry": { "type": "Point", "coordinates": [ -0.4176039, 51.2178049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10478678" }, "bbox": [ -0.4140003, 51.2189207, -0.4140003, 51.2189207 ], "geometry": { "type": "Point", "coordinates": [ -0.4140003, 51.2189207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10472226" }, "bbox": [ -0.4229752, 51.2139332, -0.4229752, 51.2139332 ], "geometry": { "type": "Point", "coordinates": [ -0.4229752, 51.2139332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01384905" }, "bbox": [ -0.550807, 51.1326921, -0.550807, 51.1326921 ], "geometry": { "type": "Point", "coordinates": [ -0.550807, 51.1326921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04650370" }, "bbox": [ -0.506643, 51.3808374, -0.506643, 51.3808374 ], "geometry": { "type": "Point", "coordinates": [ -0.506643, 51.3808374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04650476" }, "bbox": [ -0.506418, 51.3813685, -0.506418, 51.3813685 ], "geometry": { "type": "Point", "coordinates": [ -0.506418, 51.3813685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437798" }, "bbox": [ -0.7171576, 51.1882781, -0.7171576, 51.1882781 ], "geometry": { "type": "Point", "coordinates": [ -0.7171576, 51.1882781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01484667" }, "bbox": [ -0.5489729, 51.2280177, -0.5489729, 51.2280177 ], "geometry": { "type": "Point", "coordinates": [ -0.5489729, 51.2280177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01482563" }, "bbox": [ -0.5511817, 51.2278836, -0.5511817, 51.2278836 ], "geometry": { "type": "Point", "coordinates": [ -0.5511817, 51.2278836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09417684" }, "bbox": [ -0.431425, 51.1653717, -0.431425, 51.1653717 ], "geometry": { "type": "Point", "coordinates": [ -0.431425, 51.1653717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09412553" }, "bbox": [ -0.4392687, 51.1624441, -0.4392687, 51.1624441 ], "geometry": { "type": "Point", "coordinates": [ -0.4392687, 51.1624441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09410572" }, "bbox": [ -0.4416454, 51.1644343, -0.4416454, 51.1644343 ], "geometry": { "type": "Point", "coordinates": [ -0.4416454, 51.1644343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08419579" }, "bbox": [ -0.4428059, 51.1650581, -0.4428059, 51.1650581 ], "geometry": { "type": "Point", "coordinates": [ -0.4428059, 51.1650581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11576504" }, "bbox": [ -0.3999418, 51.3014988, -0.3999418, 51.3014988 ], "geometry": { "type": "Point", "coordinates": [ -0.3999418, 51.3014988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11566562" }, "bbox": [ -0.3999016, 51.2977959, -0.3999016, 51.2977959 ], "geometry": { "type": "Point", "coordinates": [ -0.3999016, 51.2977959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11567488" }, "bbox": [ -0.3985515, 51.3000769, -0.3985515, 51.3000769 ], "geometry": { "type": "Point", "coordinates": [ -0.3985515, 51.3000769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11568377" }, "bbox": [ -0.3972357, 51.2991721, -0.3972357, 51.2991721 ], "geometry": { "type": "Point", "coordinates": [ -0.3972357, 51.2991721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11563088" }, "bbox": [ -0.4049174, 51.3001808, -0.4049174, 51.3001808 ], "geometry": { "type": "Point", "coordinates": [ -0.4049174, 51.3001808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11563592" }, "bbox": [ -0.4041189, 51.3005022, -0.4041189, 51.3005022 ], "geometry": { "type": "Point", "coordinates": [ -0.4041189, 51.3005022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11564195" }, "bbox": [ -0.403297, 51.3008351, -0.403297, 51.3008351 ], "geometry": { "type": "Point", "coordinates": [ -0.403297, 51.3008351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11565359" }, "bbox": [ -0.4017256, 51.2975559, -0.4017256, 51.2975559 ], "geometry": { "type": "Point", "coordinates": [ -0.4017256, 51.2975559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03647120" }, "bbox": [ -0.5102669, 51.367373, -0.5102669, 51.367373 ], "geometry": { "type": "Point", "coordinates": [ -0.5102669, 51.367373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94478954" }, "bbox": [ -0.6432771, 51.2192576, -0.6432771, 51.2192576 ], "geometry": { "type": "Point", "coordinates": [ -0.6432771, 51.2192576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95472574" }, "bbox": [ -0.6373419, 51.2209276, -0.6373419, 51.2209276 ], "geometry": { "type": "Point", "coordinates": [ -0.6373419, 51.2209276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95470665" }, "bbox": [ -0.6400413, 51.2202664, -0.6400413, 51.2202664 ], "geometry": { "type": "Point", "coordinates": [ -0.6400413, 51.2202664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07591705" }, "bbox": [ -0.4632094, 51.3201337, -0.4632094, 51.3201337 ], "geometry": { "type": "Point", "coordinates": [ -0.4632094, 51.3201337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06578085" }, "bbox": [ -0.469362, 51.3095693, -0.469362, 51.3095693 ], "geometry": { "type": "Point", "coordinates": [ -0.469362, 51.3095693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03647613" }, "bbox": [ -0.5110552, 51.3667998, -0.5110552, 51.3667998 ], "geometry": { "type": "Point", "coordinates": [ -0.5110552, 51.3667998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28538531" }, "bbox": [ -0.1545691, 51.2643632, -0.1545691, 51.2643632 ], "geometry": { "type": "Point", "coordinates": [ -0.1545691, 51.2643632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28531096" }, "bbox": [ -0.1647919, 51.2702298, -0.1647919, 51.2702298 ], "geometry": { "type": "Point", "coordinates": [ -0.1647919, 51.2702298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28538925" }, "bbox": [ -0.1541328, 51.2638497, -0.1541328, 51.2638497 ], "geometry": { "type": "Point", "coordinates": [ -0.1541328, 51.2638497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569971" }, "bbox": [ -0.1655004, 51.2952046, -0.1655004, 51.2952046 ], "geometry": { "type": "Point", "coordinates": [ -0.1655004, 51.2952046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569876" }, "bbox": [ -0.1659027, 51.2956783, -0.1659027, 51.2956783 ], "geometry": { "type": "Point", "coordinates": [ -0.1659027, 51.2956783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28559348" }, "bbox": [ -0.1527643, 51.283843, -0.1527643, 51.283843 ], "geometry": { "type": "Point", "coordinates": [ -0.1527643, 51.283843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569984" }, "bbox": [ -0.1655535, 51.2962858, -0.1655535, 51.2962858 ], "geometry": { "type": "Point", "coordinates": [ -0.1655535, 51.2962858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28561970" }, "bbox": [ -0.1633131, 51.2954694, -0.1633131, 51.2954694 ], "geometry": { "type": "Point", "coordinates": [ -0.1633131, 51.2954694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27536742" }, "bbox": [ -0.1712302, 51.265365, -0.1712302, 51.265365 ], "geometry": { "type": "Point", "coordinates": [ -0.1712302, 51.265365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17465556" }, "bbox": [ -0.3187402, 51.2064069, -0.3187402, 51.2064069 ], "geometry": { "type": "Point", "coordinates": [ -0.3187402, 51.2064069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21555686" }, "bbox": [ -0.2580407, 51.2889216, -0.2580407, 51.2889216 ], "geometry": { "type": "Point", "coordinates": [ -0.2580407, 51.2889216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20578850" }, "bbox": [ -0.267285, 51.3036055, -0.267285, 51.3036055 ], "geometry": { "type": "Point", "coordinates": [ -0.267285, 51.3036055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588144" }, "bbox": [ -0.4259436, 51.3144666, -0.4259436, 51.3144666 ], "geometry": { "type": "Point", "coordinates": [ -0.4259436, 51.3144666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09588866" }, "bbox": [ -0.4246602, 51.3164673, -0.4246602, 51.3164673 ], "geometry": { "type": "Point", "coordinates": [ -0.4246602, 51.3164673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09587741" }, "bbox": [ -0.4263951, 51.3142331, -0.4263951, 51.3142331 ], "geometry": { "type": "Point", "coordinates": [ -0.4263951, 51.3142331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07573308" }, "bbox": [ -0.4616327, 51.3027736, -0.4616327, 51.3027736 ], "geometry": { "type": "Point", "coordinates": [ -0.4616327, 51.3027736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07562892" }, "bbox": [ -0.4625257, 51.3012783, -0.4625257, 51.3012783 ], "geometry": { "type": "Point", "coordinates": [ -0.4625257, 51.3012783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08476396" }, "bbox": [ -0.4459578, 51.2206206, -0.4459578, 51.2206206 ], "geometry": { "type": "Point", "coordinates": [ -0.4459578, 51.2206206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08475896" }, "bbox": [ -0.4465758, 51.2206406, -0.4465758, 51.2206406 ], "geometry": { "type": "Point", "coordinates": [ -0.4465758, 51.2206406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08486103" }, "bbox": [ -0.4466619, 51.2214691, -0.4466619, 51.2214691 ], "geometry": { "type": "Point", "coordinates": [ -0.4466619, 51.2214691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25545179" }, "bbox": [ -0.2020878, 51.2785647, -0.2020878, 51.2785647 ], "geometry": { "type": "Point", "coordinates": [ -0.2020878, 51.2785647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14577715" }, "bbox": [ -0.3549666, 51.3019325, -0.3549666, 51.3019325 ], "geometry": { "type": "Point", "coordinates": [ -0.3549666, 51.3019325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14570946" }, "bbox": [ -0.3649938, 51.30476, -0.3649938, 51.30476 ], "geometry": { "type": "Point", "coordinates": [ -0.3649938, 51.30476 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15568079" }, "bbox": [ -0.3414821, 51.298442, -0.3414821, 51.298442 ], "geometry": { "type": "Point", "coordinates": [ -0.3414821, 51.298442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13584510" }, "bbox": [ -0.3734531, 51.310733, -0.3734531, 51.310733 ], "geometry": { "type": "Point", "coordinates": [ -0.3734531, 51.310733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14572192" }, "bbox": [ -0.3636728, 51.3088294, -0.3636728, 51.3088294 ], "geometry": { "type": "Point", "coordinates": [ -0.3636728, 51.3088294 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14573405" }, "bbox": [ -0.3612449, 51.3009381, -0.3612449, 51.3009381 ], "geometry": { "type": "Point", "coordinates": [ -0.3612449, 51.3009381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14565494" }, "bbox": [ -0.3585979, 51.3002211, -0.3585979, 51.3002211 ], "geometry": { "type": "Point", "coordinates": [ -0.3585979, 51.3002211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14560573" }, "bbox": [ -0.3655443, 51.298416, -0.3655443, 51.298416 ], "geometry": { "type": "Point", "coordinates": [ -0.3655443, 51.298416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14563268" }, "bbox": [ -0.36179, 51.2976332, -0.36179, 51.2976332 ], "geometry": { "type": "Point", "coordinates": [ -0.36179, 51.2976332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25571785" }, "bbox": [ -0.2045061, 51.305812, -0.2045061, 51.305812 ], "geometry": { "type": "Point", "coordinates": [ -0.2045061, 51.305812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24587756" }, "bbox": [ -0.2111562, 51.3125199, -0.2111562, 51.3125199 ], "geometry": { "type": "Point", "coordinates": [ -0.2111562, 51.3125199 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25584559" }, "bbox": [ -0.201773, 51.3126966, -0.201773, 51.3126966 ], "geometry": { "type": "Point", "coordinates": [ -0.201773, 51.3126966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32451117" }, "bbox": [ -0.1109844, 51.19058, -0.1109844, 51.19058 ], "geometry": { "type": "Point", "coordinates": [ -0.1109844, 51.19058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40541552" }, "bbox": [ 0.0077744, 51.2726024, 0.0077744, 51.2726024 ], "geometry": { "type": "Point", "coordinates": [ 0.0077744, 51.2726024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14624456" }, "bbox": [ -0.3580016, 51.3506731, -0.3580016, 51.3506731 ], "geometry": { "type": "Point", "coordinates": [ -0.3580016, 51.3506731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18444449" }, "bbox": [ -0.3066301, 51.1872791, -0.3066301, 51.1872791 ], "geometry": { "type": "Point", "coordinates": [ -0.3066301, 51.1872791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18444461" }, "bbox": [ -0.3066491, 51.1883403, -0.3066491, 51.1883403 ], "geometry": { "type": "Point", "coordinates": [ -0.3066491, 51.1883403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12576965" }, "bbox": [ -0.3848022, 51.306765, -0.3848022, 51.306765 ], "geometry": { "type": "Point", "coordinates": [ -0.3848022, 51.306765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12571212" }, "bbox": [ -0.3931717, 51.3020389, -0.3931717, 51.3020389 ], "geometry": { "type": "Point", "coordinates": [ -0.3931717, 51.3020389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12560799" }, "bbox": [ -0.3939573, 51.3009837, -0.3939573, 51.3009837 ], "geometry": { "type": "Point", "coordinates": [ -0.3939573, 51.3009837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10574375" }, "bbox": [ -0.4181134, 51.3082381, -0.4181134, 51.3082381 ], "geometry": { "type": "Point", "coordinates": [ -0.4181134, 51.3082381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10572471" }, "bbox": [ -0.419556, 51.3077908, -0.419556, 51.3077908 ], "geometry": { "type": "Point", "coordinates": [ -0.419556, 51.3077908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10574765" }, "bbox": [ -0.4164262, 51.3073279, -0.4164262, 51.3073279 ], "geometry": { "type": "Point", "coordinates": [ -0.4164262, 51.3073279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11637604" }, "bbox": [ -0.3964187, 51.3554504, -0.3964187, 51.3554504 ], "geometry": { "type": "Point", "coordinates": [ -0.3964187, 51.3554504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11627798" }, "bbox": [ -0.3963541, 51.3550979, -0.3963541, 51.3550979 ], "geometry": { "type": "Point", "coordinates": [ -0.3963541, 51.3550979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31529862" }, "bbox": [ -0.110093, 51.2573495, -0.110093, 51.2573495 ], "geometry": { "type": "Point", "coordinates": [ -0.110093, 51.2573495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31522566" }, "bbox": [ -0.1204962, 51.2584248, -0.1204962, 51.2584248 ], "geometry": { "type": "Point", "coordinates": [ -0.1204962, 51.2584248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32523258" }, "bbox": [ -0.10477, 51.2569947, -0.10477, 51.2569947 ], "geometry": { "type": "Point", "coordinates": [ -0.10477, 51.2569947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32521259" }, "bbox": [ -0.108085, 51.2570917, -0.108085, 51.2570917 ], "geometry": { "type": "Point", "coordinates": [ -0.108085, 51.2570917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37495132" }, "bbox": [ -0.0322329, 51.2263324, -0.0322329, 51.2263324 ], "geometry": { "type": "Point", "coordinates": [ -0.0322329, 51.2263324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37493764" }, "bbox": [ -0.0340869, 51.2293364, -0.0340869, 51.2293364 ], "geometry": { "type": "Point", "coordinates": [ -0.0340869, 51.2293364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37495053" }, "bbox": [ -0.03194, 51.2285097, -0.03194, 51.2285097 ], "geometry": { "type": "Point", "coordinates": [ -0.03194, 51.2285097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09572601" }, "bbox": [ -0.4340317, 51.3017027, -0.4340317, 51.3017027 ], "geometry": { "type": "Point", "coordinates": [ -0.4340317, 51.3017027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571714" }, "bbox": [ -0.4352474, 51.3028888, -0.4352474, 51.3028888 ], "geometry": { "type": "Point", "coordinates": [ -0.4352474, 51.3028888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38405587" }, "bbox": [ -0.0202828, 51.1501652, -0.0202828, 51.1501652 ], "geometry": { "type": "Point", "coordinates": [ -0.0202828, 51.1501652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38411087" }, "bbox": [ -0.026349, 51.1595017, -0.026349, 51.1595017 ], "geometry": { "type": "Point", "coordinates": [ -0.026349, 51.1595017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39488074" }, "bbox": [ 0.0005807, 51.2206481, 0.0005807, 51.2206481 ], "geometry": { "type": "Point", "coordinates": [ 0.0005807, 51.2206481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20459641" }, "bbox": [ -0.2710308, 51.1951171, -0.2710308, 51.1951171 ], "geometry": { "type": "Point", "coordinates": [ -0.2710308, 51.1951171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20463409" }, "bbox": [ -0.2788684, 51.201403, -0.2788684, 51.201403 ], "geometry": { "type": "Point", "coordinates": [ -0.2788684, 51.201403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20463006" }, "bbox": [ -0.279479, 51.201184, -0.279479, 51.201184 ], "geometry": { "type": "Point", "coordinates": [ -0.279479, 51.201184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20465814" }, "bbox": [ -0.2754554, 51.2018125, -0.2754554, 51.2018125 ], "geometry": { "type": "Point", "coordinates": [ -0.2754554, 51.2018125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18618361" }, "bbox": [ -0.295279, 51.3411215, -0.295279, 51.3411215 ], "geometry": { "type": "Point", "coordinates": [ -0.295279, 51.3411215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18619577" }, "bbox": [ -0.293421, 51.3426374, -0.293421, 51.3426374 ], "geometry": { "type": "Point", "coordinates": [ -0.293421, 51.3426374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40452540" }, "bbox": [ 0.0056872, 51.1906968, 0.0056872, 51.1906968 ], "geometry": { "type": "Point", "coordinates": [ 0.0056872, 51.1906968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40451881" }, "bbox": [ 0.0048929, 51.1943867, 0.0048929, 51.1943867 ], "geometry": { "type": "Point", "coordinates": [ 0.0048929, 51.1943867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40488054" }, "bbox": [ 0.0146594, 51.2187006, 0.0146594, 51.2187006 ], "geometry": { "type": "Point", "coordinates": [ 0.0146594, 51.2187006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40486125" }, "bbox": [ 0.0117288, 51.2160918, 0.0117288, 51.2160918 ], "geometry": { "type": "Point", "coordinates": [ 0.0117288, 51.2160918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40486743" }, "bbox": [ 0.0127829, 51.2177062, 0.0127829, 51.2177062 ], "geometry": { "type": "Point", "coordinates": [ 0.0127829, 51.2177062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40538954" }, "bbox": [ 0.0176282, 51.2638211, 0.0176282, 51.2638211 ], "geometry": { "type": "Point", "coordinates": [ 0.0176282, 51.2638211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41535479" }, "bbox": [ 0.0264729, 51.2652545, 0.0264729, 51.2652545 ], "geometry": { "type": "Point", "coordinates": [ 0.0264729, 51.2652545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40542305" }, "bbox": [ 0.0085867, 51.2687007, 0.0085867, 51.2687007 ], "geometry": { "type": "Point", "coordinates": [ 0.0085867, 51.2687007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40540138" }, "bbox": [ 0.0056506, 51.2714561, 0.0056506, 51.2714561 ], "geometry": { "type": "Point", "coordinates": [ 0.0056506, 51.2714561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40541924" }, "bbox": [ 0.0081241, 51.270239, 0.0081241, 51.270239 ], "geometry": { "type": "Point", "coordinates": [ 0.0081241, 51.270239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41531266" }, "bbox": [ 0.0212955, 51.2644374, 0.0212955, 51.2644374 ], "geometry": { "type": "Point", "coordinates": [ 0.0212955, 51.2644374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41535162" }, "bbox": [ 0.0272274, 51.2644528, 0.0272274, 51.2644528 ], "geometry": { "type": "Point", "coordinates": [ 0.0272274, 51.2644528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41542306" }, "bbox": [ 0.0246246, 51.2676404, 0.0246246, 51.2676404 ], "geometry": { "type": "Point", "coordinates": [ 0.0246246, 51.2676404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41547019" }, "bbox": [ 0.0296953, 51.269244, 0.0296953, 51.269244 ], "geometry": { "type": "Point", "coordinates": [ 0.0296953, 51.269244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21483183" }, "bbox": [ -0.2643315, 51.2258373, -0.2643315, 51.2258373 ], "geometry": { "type": "Point", "coordinates": [ -0.2643315, 51.2258373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34494908" }, "bbox": [ -0.0752599, 51.2251006, -0.0752599, 51.2251006 ], "geometry": { "type": "Point", "coordinates": [ -0.0752599, 51.2251006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35498621" }, "bbox": [ -0.0556152, 51.2258068, -0.0556152, 51.2258068 ], "geometry": { "type": "Point", "coordinates": [ -0.0556152, 51.2258068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00693423" }, "bbox": [ -0.5588551, 51.4140717, -0.5588551, 51.4140717 ], "geometry": { "type": "Point", "coordinates": [ -0.5588551, 51.4140717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34473818" }, "bbox": [ -0.0777204, 51.2080408, -0.0777204, 51.2080408 ], "geometry": { "type": "Point", "coordinates": [ -0.0777204, 51.2080408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34472624" }, "bbox": [ -0.0793851, 51.2086421, -0.0793851, 51.2086421 ], "geometry": { "type": "Point", "coordinates": [ -0.0793851, 51.2086421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34474621" }, "bbox": [ -0.0766282, 51.2082517, -0.0766282, 51.2082517 ], "geometry": { "type": "Point", "coordinates": [ -0.0766282, 51.2082517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37461578" }, "bbox": [ -0.0379968, 51.2038021, -0.0379968, 51.2038021 ], "geometry": { "type": "Point", "coordinates": [ -0.0379968, 51.2038021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35435019" }, "bbox": [ -0.0630609, 51.1718948, -0.0630609, 51.1718948 ], "geometry": { "type": "Point", "coordinates": [ -0.0630609, 51.1718948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09469085" }, "bbox": [ -0.4277741, 51.2110224, -0.4277741, 51.2110224 ], "geometry": { "type": "Point", "coordinates": [ -0.4277741, 51.2110224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12677925" }, "bbox": [ -0.38008, 51.3931715, -0.38008, 51.3931715 ], "geometry": { "type": "Point", "coordinates": [ -0.38008, 51.3931715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12520841" }, "bbox": [ -0.3950801, 51.2599144, -0.3950801, 51.2599144 ], "geometry": { "type": "Point", "coordinates": [ -0.3950801, 51.2599144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521145" }, "bbox": [ -0.394594, 51.2602458, -0.394594, 51.2602458 ], "geometry": { "type": "Point", "coordinates": [ -0.394594, 51.2602458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40431257" }, "bbox": [ 0.0027937, 51.1743552, 0.0027937, 51.1743552 ], "geometry": { "type": "Point", "coordinates": [ 0.0027937, 51.1743552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40432781" }, "bbox": [ 0.0054859, 51.1762901, 0.0054859, 51.1762901 ], "geometry": { "type": "Point", "coordinates": [ 0.0054859, 51.1762901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40446010" }, "bbox": [ 0.01044, 51.1794841, 0.01044, 51.1794841 ], "geometry": { "type": "Point", "coordinates": [ 0.01044, 51.1794841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40442020" }, "bbox": [ 0.0059649, 51.1805261, 0.0059649, 51.1805261 ], "geometry": { "type": "Point", "coordinates": [ 0.0059649, 51.1805261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40446805" }, "bbox": [ 0.0113046, 51.178367, 0.0113046, 51.178367 ], "geometry": { "type": "Point", "coordinates": [ 0.0113046, 51.178367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457596" }, "bbox": [ -0.1010784, 51.1973247, -0.1010784, 51.1973247 ], "geometry": { "type": "Point", "coordinates": [ -0.1010784, 51.1973247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32451776" }, "bbox": [ -0.1097752, 51.1957749, -0.1097752, 51.1957749 ], "geometry": { "type": "Point", "coordinates": [ -0.1097752, 51.1957749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32457492" }, "bbox": [ -0.1014749, 51.1969118, -0.1014749, 51.1969118 ], "geometry": { "type": "Point", "coordinates": [ -0.1014749, 51.1969118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32456595" }, "bbox": [ -0.1027645, 51.1974493, -0.1027645, 51.1974493 ], "geometry": { "type": "Point", "coordinates": [ -0.1027645, 51.1974493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32467823" }, "bbox": [ -0.1008881, 51.1998553, -0.1008881, 51.1998553 ], "geometry": { "type": "Point", "coordinates": [ -0.1008881, 51.1998553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32467060" }, "bbox": [ -0.1019252, 51.203121, -0.1019252, 51.203121 ], "geometry": { "type": "Point", "coordinates": [ -0.1019252, 51.203121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32465151" }, "bbox": [ -0.1046349, 51.2024174, -0.1046349, 51.2024174 ], "geometry": { "type": "Point", "coordinates": [ -0.1046349, 51.2024174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31421976" }, "bbox": [ -0.1250383, 51.1690214, -0.1250383, 51.1690214 ], "geometry": { "type": "Point", "coordinates": [ -0.1250383, 51.1690214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24479283" }, "bbox": [ -0.2126625, 51.2160107, -0.2126625, 51.2160107 ], "geometry": { "type": "Point", "coordinates": [ -0.2126625, 51.2160107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24475066" }, "bbox": [ -0.2187973, 51.2146945, -0.2187973, 51.2146945 ], "geometry": { "type": "Point", "coordinates": [ -0.2187973, 51.2146945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25471227" }, "bbox": [ -0.2100594, 51.2109156, -0.2100594, 51.2109156 ], "geometry": { "type": "Point", "coordinates": [ -0.2100594, 51.2109156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25477205" }, "bbox": [ -0.2016152, 51.2088355, -0.2016152, 51.2088355 ], "geometry": { "type": "Point", "coordinates": [ -0.2016152, 51.2088355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33446334" }, "bbox": [ -0.0893914, 51.1827025, -0.0893914, 51.1827025 ], "geometry": { "type": "Point", "coordinates": [ -0.0893914, 51.1827025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33443442" }, "bbox": [ -0.0935686, 51.1834479, -0.0935686, 51.1834479 ], "geometry": { "type": "Point", "coordinates": [ -0.0935686, 51.1834479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33443123" }, "bbox": [ -0.0941015, 51.1817388, -0.0941015, 51.1817388 ], "geometry": { "type": "Point", "coordinates": [ -0.0941015, 51.1817388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41462398" }, "bbox": [ 0.0207895, 51.2049815, 0.0207895, 51.2049815 ], "geometry": { "type": "Point", "coordinates": [ 0.0207895, 51.2049815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11588902" }, "bbox": [ -0.3964036, 51.3105645, -0.3964036, 51.3105645 ], "geometry": { "type": "Point", "coordinates": [ -0.3964036, 51.3105645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11583007" }, "bbox": [ -0.4045134, 51.3109039, -0.4045134, 51.3109039 ], "geometry": { "type": "Point", "coordinates": [ -0.4045134, 51.3109039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11587604" }, "bbox": [ -0.3983264, 51.3102398, -0.3983264, 51.3102398 ], "geometry": { "type": "Point", "coordinates": [ -0.3983264, 51.3102398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96415592" }, "bbox": [ -0.6208229, 51.1687576, -0.6208229, 51.1687576 ], "geometry": { "type": "Point", "coordinates": [ -0.6208229, 51.1687576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96412115" }, "bbox": [ -0.6258933, 51.1619075, -0.6258933, 51.1619075 ], "geometry": { "type": "Point", "coordinates": [ -0.6258933, 51.1619075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96415687" }, "bbox": [ -0.6201859, 51.1680019, -0.6201859, 51.1680019 ], "geometry": { "type": "Point", "coordinates": [ -0.6201859, 51.1680019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498932" }, "bbox": [ -0.0695537, 51.2271179, -0.0695537, 51.2271179 ], "geometry": { "type": "Point", "coordinates": [ -0.0695537, 51.2271179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35492010" }, "bbox": [ -0.0655725, 51.2248478, -0.0655725, 51.2248478 ], "geometry": { "type": "Point", "coordinates": [ -0.0655725, 51.2248478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35491013" }, "bbox": [ -0.0665525, 51.2255504, -0.0665525, 51.2255504 ], "geometry": { "type": "Point", "coordinates": [ -0.0665525, 51.2255504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11577995" }, "bbox": [ -0.3974475, 51.3096953, -0.3974475, 51.3096953 ], "geometry": { "type": "Point", "coordinates": [ -0.3974475, 51.3096953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96408268" }, "bbox": [ -0.6168036, 51.1572123, -0.6168036, 51.1572123 ], "geometry": { "type": "Point", "coordinates": [ -0.6168036, 51.1572123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96419147" }, "bbox": [ -0.6152433, 51.1641462, -0.6152433, 51.1641462 ], "geometry": { "type": "Point", "coordinates": [ -0.6152433, 51.1641462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96419665" }, "bbox": [ -0.6141592, 51.1659905, -0.6141592, 51.1659905 ], "geometry": { "type": "Point", "coordinates": [ -0.6141592, 51.1659905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97412185" }, "bbox": [ -0.6104387, 51.1671916, -0.6104387, 51.1671916 ], "geometry": { "type": "Point", "coordinates": [ -0.6104387, 51.1671916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97410188" }, "bbox": [ -0.6131388, 51.1679077, -0.6131388, 51.1679077 ], "geometry": { "type": "Point", "coordinates": [ -0.6131388, 51.1679077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97412164" }, "bbox": [ -0.6108099, 51.165271, -0.6108099, 51.165271 ], "geometry": { "type": "Point", "coordinates": [ -0.6108099, 51.165271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13413298" }, "bbox": [ -0.3805952, 51.1659487, -0.3805952, 51.1659487 ], "geometry": { "type": "Point", "coordinates": [ -0.3805952, 51.1659487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470266" }, "bbox": [ -0.3831851, 51.2171173, -0.3831851, 51.2171173 ], "geometry": { "type": "Point", "coordinates": [ -0.3831851, 51.2171173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530831" }, "bbox": [ 0.0495226, 51.2609971, 0.0495226, 51.2609971 ], "geometry": { "type": "Point", "coordinates": [ 0.0495226, 51.2609971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43532135" }, "bbox": [ 0.050983, 51.2613152, 0.050983, 51.2613152 ], "geometry": { "type": "Point", "coordinates": [ 0.050983, 51.2613152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530536" }, "bbox": [ 0.0490297, 51.2614014, 0.0490297, 51.2614014 ], "geometry": { "type": "Point", "coordinates": [ 0.0490297, 51.2614014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21497111" }, "bbox": [ -0.2580822, 51.2281506, -0.2580822, 51.2281506 ], "geometry": { "type": "Point", "coordinates": [ -0.2580822, 51.2281506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21487485" }, "bbox": [ -0.2579376, 51.2259864, -0.2579376, 51.2259864 ], "geometry": { "type": "Point", "coordinates": [ -0.2579376, 51.2259864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39589187" }, "bbox": [ 0.0063577, 51.3117538, 0.0063577, 51.3117538 ], "geometry": { "type": "Point", "coordinates": [ 0.0063577, 51.3117538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40581164" }, "bbox": [ 0.0084104, 51.3097406, 0.0084104, 51.3097406 ], "geometry": { "type": "Point", "coordinates": [ 0.0084104, 51.3097406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14460974" }, "bbox": [ -0.3680362, 51.2084168, -0.3680362, 51.2084168 ], "geometry": { "type": "Point", "coordinates": [ -0.3680362, 51.2084168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41427332" }, "bbox": [ 0.0255943, 51.1625463, 0.0255943, 51.1625463 ], "geometry": { "type": "Point", "coordinates": [ 0.0255943, 51.1625463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18449341" }, "bbox": [ -0.2999891, 51.1864259, -0.2999891, 51.1864259 ], "geometry": { "type": "Point", "coordinates": [ -0.2999891, 51.1864259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40456834" }, "bbox": [ 0.0117854, 51.1899341, 0.0117854, 51.1899341 ], "geometry": { "type": "Point", "coordinates": [ 0.0117854, 51.1899341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40456246" }, "bbox": [ 0.0108962, 51.191183, 0.0108962, 51.191183 ], "geometry": { "type": "Point", "coordinates": [ 0.0108962, 51.191183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01422081" }, "bbox": [ -0.553835, 51.175362, -0.553835, 51.175362 ], "geometry": { "type": "Point", "coordinates": [ -0.553835, 51.175362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01421773" }, "bbox": [ -0.5541986, 51.1748679, -0.5541986, 51.1748679 ], "geometry": { "type": "Point", "coordinates": [ -0.5541986, 51.1748679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32435965" }, "bbox": [ -0.1045124, 51.1768357, -0.1045124, 51.1768357 ], "geometry": { "type": "Point", "coordinates": [ -0.1045124, 51.1768357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32446620" }, "bbox": [ -0.1040271, 51.1818682, -0.1040271, 51.1818682 ], "geometry": { "type": "Point", "coordinates": [ -0.1040271, 51.1818682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32446106" }, "bbox": [ -0.1040535, 51.1804791, -0.1040535, 51.1804791 ], "geometry": { "type": "Point", "coordinates": [ -0.1040535, 51.1804791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18553793" }, "bbox": [ -0.3038419, 51.2902289, -0.3038419, 51.2902289 ], "geometry": { "type": "Point", "coordinates": [ -0.3038419, 51.2902289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18551086" }, "bbox": [ -0.3077389, 51.2896736, -0.3077389, 51.2896736 ], "geometry": { "type": "Point", "coordinates": [ -0.3077389, 51.2896736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17566714" }, "bbox": [ -0.3138244, 51.2923107, -0.3138244, 51.2923107 ], "geometry": { "type": "Point", "coordinates": [ -0.3138244, 51.2923107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18562827" }, "bbox": [ -0.304942, 51.2933367, -0.304942, 51.2933367 ], "geometry": { "type": "Point", "coordinates": [ -0.304942, 51.2933367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06631974" }, "bbox": [ -0.4769885, 51.3624467, -0.4769885, 51.3624467 ], "geometry": { "type": "Point", "coordinates": [ -0.4769885, 51.3624467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06630335" }, "bbox": [ -0.4787108, 51.3591742, -0.4787108, 51.3591742 ], "geometry": { "type": "Point", "coordinates": [ -0.4787108, 51.3591742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06631820" }, "bbox": [ -0.4763354, 51.3580317, -0.4763354, 51.3580317 ], "geometry": { "type": "Point", "coordinates": [ -0.4763354, 51.3580317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06620592" }, "bbox": [ -0.478449, 51.3548536, -0.478449, 51.3548536 ], "geometry": { "type": "Point", "coordinates": [ -0.478449, 51.3548536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06621462" }, "bbox": [ -0.4771636, 51.3527824, -0.4771636, 51.3527824 ], "geometry": { "type": "Point", "coordinates": [ -0.4771636, 51.3527824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00474235" }, "bbox": [ -0.5630693, 51.2165131, -0.5630693, 51.2165131 ], "geometry": { "type": "Point", "coordinates": [ -0.5630693, 51.2165131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11626674" }, "bbox": [ -0.3979976, 51.3528954, -0.3979976, 51.3528954 ], "geometry": { "type": "Point", "coordinates": [ -0.3979976, 51.3528954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11625694" }, "bbox": [ -0.3993483, 51.35463, -0.3993483, 51.35463 ], "geometry": { "type": "Point", "coordinates": [ -0.3993483, 51.35463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39601438" }, "bbox": [ -0.0043146, 51.3254932, -0.0043146, 51.3254932 ], "geometry": { "type": "Point", "coordinates": [ -0.0043146, 51.3254932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600452" }, "bbox": [ -0.0059779, 51.3268121, -0.0059779, 51.3268121 ], "geometry": { "type": "Point", "coordinates": [ -0.0059779, 51.3268121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39600749" }, "bbox": [ -0.0053974, 51.3265858, -0.0053974, 51.3265858 ], "geometry": { "type": "Point", "coordinates": [ -0.0053974, 51.3265858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38607992" }, "bbox": [ -0.0095252, 51.3309649, -0.0095252, 51.3309649 ], "geometry": { "type": "Point", "coordinates": [ -0.0095252, 51.3309649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38608252" }, "bbox": [ -0.0084377, 51.3268951, -0.0084377, 51.3268951 ], "geometry": { "type": "Point", "coordinates": [ -0.0084377, 51.3268951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38609378" }, "bbox": [ -0.0069168, 51.3291684, -0.0069168, 51.3291684 ], "geometry": { "type": "Point", "coordinates": [ -0.0069168, 51.3291684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05678305" }, "bbox": [ -0.4801734, 51.3928227, -0.4801734, 51.3928227 ], "geometry": { "type": "Point", "coordinates": [ -0.4801734, 51.3928227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05668195" }, "bbox": [ -0.480438, 51.3916774, -0.480438, 51.3916774 ], "geometry": { "type": "Point", "coordinates": [ -0.480438, 51.3916774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05668696" }, "bbox": [ -0.4800605, 51.391683, -0.4800605, 51.391683 ], "geometry": { "type": "Point", "coordinates": [ -0.4800605, 51.391683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33489085" }, "bbox": [ -0.0832319, 51.2230742, -0.0832319, 51.2230742 ], "geometry": { "type": "Point", "coordinates": [ -0.0832319, 51.2230742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34481280" }, "bbox": [ -0.0806166, 51.2227026, -0.0806166, 51.2227026 ], "geometry": { "type": "Point", "coordinates": [ -0.0806166, 51.2227026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11586895" }, "bbox": [ -0.3987323, 51.3185992, -0.3987323, 51.3185992 ], "geometry": { "type": "Point", "coordinates": [ -0.3987323, 51.3185992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36574426" }, "bbox": [ -0.0441711, 51.2981427, -0.0441711, 51.2981427 ], "geometry": { "type": "Point", "coordinates": [ -0.0441711, 51.2981427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36550591" }, "bbox": [ -0.0502966, 51.286106, -0.0502966, 51.286106 ], "geometry": { "type": "Point", "coordinates": [ -0.0502966, 51.286106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34576724" }, "bbox": [ -0.0696564, 51.2983782, -0.0696564, 51.2983782 ], "geometry": { "type": "Point", "coordinates": [ -0.0696564, 51.2983782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33452763" }, "bbox": [ -0.0941588, 51.1944289, -0.0941588, 51.1944289 ], "geometry": { "type": "Point", "coordinates": [ -0.0941588, 51.1944289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33450181" }, "bbox": [ -0.097885, 51.1961539, -0.097885, 51.1961539 ], "geometry": { "type": "Point", "coordinates": [ -0.097885, 51.1961539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33466101" }, "bbox": [ -0.0891564, 51.1976908, -0.0891564, 51.1976908 ], "geometry": { "type": "Point", "coordinates": [ -0.0891564, 51.1976908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42405658" }, "bbox": [ 0.0370132, 51.1468403, 0.0370132, 51.1468403 ], "geometry": { "type": "Point", "coordinates": [ 0.0370132, 51.1468403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18407570" }, "bbox": [ -0.303438, 51.1532335, -0.303438, 51.1532335 ], "geometry": { "type": "Point", "coordinates": [ -0.303438, 51.1532335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18405666" }, "bbox": [ -0.3061108, 51.153042, -0.3061108, 51.153042 ], "geometry": { "type": "Point", "coordinates": [ -0.3061108, 51.153042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18401168" }, "bbox": [ -0.3126413, 51.1530943, -0.3126413, 51.1530943 ], "geometry": { "type": "Point", "coordinates": [ -0.3126413, 51.1530943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36476702" }, "bbox": [ -0.0447751, 51.2061041, -0.0447751, 51.2061041 ], "geometry": { "type": "Point", "coordinates": [ -0.0447751, 51.2061041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03671729" }, "bbox": [ -0.5184378, 51.3953608, -0.5184378, 51.3953608 ], "geometry": { "type": "Point", "coordinates": [ -0.5184378, 51.3953608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02664716" }, "bbox": [ -0.5288295, 51.385418, -0.5288295, 51.385418 ], "geometry": { "type": "Point", "coordinates": [ -0.5288295, 51.385418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02664922" }, "bbox": [ -0.5285189, 51.3857901, -0.5285189, 51.3857901 ], "geometry": { "type": "Point", "coordinates": [ -0.5285189, 51.3857901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665022" }, "bbox": [ -0.5277937, 51.3858341, -0.5277937, 51.3858341 ], "geometry": { "type": "Point", "coordinates": [ -0.5277937, 51.3858341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665522" }, "bbox": [ -0.527641, 51.3859807, -0.527641, 51.3859807 ], "geometry": { "type": "Point", "coordinates": [ -0.527641, 51.3859807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02665922" }, "bbox": [ -0.5270429, 51.3859279, -0.5270429, 51.3859279 ], "geometry": { "type": "Point", "coordinates": [ -0.5270429, 51.3859279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97472870" }, "bbox": [ -0.6083574, 51.2200497, -0.6083574, 51.2200497 ], "geometry": { "type": "Point", "coordinates": [ -0.6083574, 51.2200497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04581348" }, "bbox": [ -0.5068899, 51.3159346, -0.5068899, 51.3159346 ], "geometry": { "type": "Point", "coordinates": [ -0.5068899, 51.3159346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04585555" }, "bbox": [ -0.5007758, 51.3163978, -0.5007758, 51.3163978 ], "geometry": { "type": "Point", "coordinates": [ -0.5007758, 51.3163978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03577075" }, "bbox": [ -0.514332, 51.310069, -0.514332, 51.310069 ], "geometry": { "type": "Point", "coordinates": [ -0.514332, 51.310069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02578425" }, "bbox": [ -0.5260825, 51.3051533, -0.5260825, 51.3051533 ], "geometry": { "type": "Point", "coordinates": [ -0.5260825, 51.3051533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02576067" }, "bbox": [ -0.5292639, 51.3089795, -0.5292639, 51.3089795 ], "geometry": { "type": "Point", "coordinates": [ -0.5292639, 51.3089795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42445955" }, "bbox": [ 0.03876, 51.1824223, 0.03876, 51.1824223 ], "geometry": { "type": "Point", "coordinates": [ 0.03876, 51.1824223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40480610" }, "bbox": [ 0.0041628, 51.2147107, 0.0041628, 51.2147107 ], "geometry": { "type": "Point", "coordinates": [ 0.0041628, 51.2147107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40480104" }, "bbox": [ 0.0034163, 51.2144416, 0.0034163, 51.2144416 ], "geometry": { "type": "Point", "coordinates": [ 0.0034163, 51.2144416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04557940" }, "bbox": [ -0.4984989, 51.2881477, -0.4984989, 51.2881477 ], "geometry": { "type": "Point", "coordinates": [ -0.4984989, 51.2881477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04558220" }, "bbox": [ -0.4980793, 51.2864605, -0.4980793, 51.2864605 ], "geometry": { "type": "Point", "coordinates": [ -0.4980793, 51.2864605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04559656" }, "bbox": [ -0.4960755, 51.2896146, -0.4960755, 51.2896146 ], "geometry": { "type": "Point", "coordinates": [ -0.4960755, 51.2896146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04685415" }, "bbox": [ -0.4983607, 51.4029654, -0.4983607, 51.4029654 ], "geometry": { "type": "Point", "coordinates": [ -0.4983607, 51.4029654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17489836" }, "bbox": [ -0.312143, 51.2222827, -0.312143, 51.2222827 ], "geometry": { "type": "Point", "coordinates": [ -0.312143, 51.2222827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10594023" }, "bbox": [ -0.4170638, 51.3214634, -0.4170638, 51.3214634 ], "geometry": { "type": "Point", "coordinates": [ -0.4170638, 51.3214634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10592841" }, "bbox": [ -0.4181528, 51.3230384, -0.4181528, 51.3230384 ], "geometry": { "type": "Point", "coordinates": [ -0.4181528, 51.3230384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11580199" }, "bbox": [ -0.4080628, 51.3189642, -0.4080628, 51.3189642 ], "geometry": { "type": "Point", "coordinates": [ -0.4080628, 51.3189642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18475017" }, "bbox": [ -0.3049269, 51.2114706, -0.3049269, 51.2114706 ], "geometry": { "type": "Point", "coordinates": [ -0.3049269, 51.2114706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18473723" }, "bbox": [ -0.3068002, 51.2118483, -0.3068002, 51.2118483 ], "geometry": { "type": "Point", "coordinates": [ -0.3068002, 51.2118483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18475442" }, "bbox": [ -0.304191, 51.2137694, -0.304191, 51.2137694 ], "geometry": { "type": "Point", "coordinates": [ -0.304191, 51.2137694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19406941" }, "bbox": [ -0.2902325, 51.1504915, -0.2902325, 51.1504915 ], "geometry": { "type": "Point", "coordinates": [ -0.2902325, 51.1504915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19428956" }, "bbox": [ -0.2866158, 51.1696908, -0.2866158, 51.1696908 ], "geometry": { "type": "Point", "coordinates": [ -0.2866158, 51.1696908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19418684" }, "bbox": [ -0.2870393, 51.1632598, -0.2870393, 51.1632598 ], "geometry": { "type": "Point", "coordinates": [ -0.2870393, 51.1632598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19419890" }, "bbox": [ -0.2855998, 51.1635375, -0.2855998, 51.1635375 ], "geometry": { "type": "Point", "coordinates": [ -0.2855998, 51.1635375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14498516" }, "bbox": [ -0.3565663, 51.2298457, -0.3565663, 51.2298457 ], "geometry": { "type": "Point", "coordinates": [ -0.3565663, 51.2298457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14499519" }, "bbox": [ -0.3553201, 51.2305019, -0.3553201, 51.2305019 ], "geometry": { "type": "Point", "coordinates": [ -0.3553201, 51.2305019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14499365" }, "bbox": [ -0.3554868, 51.2345771, -0.3554868, 51.2345771 ], "geometry": { "type": "Point", "coordinates": [ -0.3554868, 51.2345771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19634653" }, "bbox": [ -0.28628, 51.3579885, -0.28628, 51.3579885 ], "geometry": { "type": "Point", "coordinates": [ -0.28628, 51.3579885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19633511" }, "bbox": [ -0.2874896, 51.3540152, -0.2874896, 51.3540152 ], "geometry": { "type": "Point", "coordinates": [ -0.2874896, 51.3540152 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19634508" }, "bbox": [ -0.2858836, 51.3542968, -0.2858836, 51.3542968 ], "geometry": { "type": "Point", "coordinates": [ -0.2858836, 51.3542968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19624899" }, "bbox": [ -0.2855528, 51.3533922, -0.2855528, 51.3533922 ], "geometry": { "type": "Point", "coordinates": [ -0.2855528, 51.3533922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19623885" }, "bbox": [ -0.2872136, 51.3521793, -0.2872136, 51.3521793 ], "geometry": { "type": "Point", "coordinates": [ -0.2872136, 51.3521793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19621277" }, "bbox": [ -0.2907274, 51.3516528, -0.2907274, 51.3516528 ], "geometry": { "type": "Point", "coordinates": [ -0.2907274, 51.3516528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19410645" }, "bbox": [ -0.2988499, 51.1598716, -0.2988499, 51.1598716 ], "geometry": { "type": "Point", "coordinates": [ -0.2988499, 51.1598716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18418439" }, "bbox": [ -0.3008913, 51.1613312, -0.3008913, 51.1613312 ], "geometry": { "type": "Point", "coordinates": [ -0.3008913, 51.1613312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19403486" }, "bbox": [ -0.2950525, 51.1545622, -0.2950525, 51.1545622 ], "geometry": { "type": "Point", "coordinates": [ -0.2950525, 51.1545622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30547274" }, "bbox": [ -0.1274335, 51.276745, -0.1274335, 51.276745 ], "geometry": { "type": "Point", "coordinates": [ -0.1274335, 51.276745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30544641" }, "bbox": [ -0.1310889, 51.2739592, -0.1310889, 51.2739592 ], "geometry": { "type": "Point", "coordinates": [ -0.1310889, 51.2739592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30547673" }, "bbox": [ -0.1269516, 51.2768435, -0.1269516, 51.2768435 ], "geometry": { "type": "Point", "coordinates": [ -0.1269516, 51.2768435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30544871" }, "bbox": [ -0.130807, 51.276696, -0.130807, 51.276696 ], "geometry": { "type": "Point", "coordinates": [ -0.130807, 51.276696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38449369" }, "bbox": [ -0.0134378, 51.1844913, -0.0134378, 51.1844913 ], "geometry": { "type": "Point", "coordinates": [ -0.0134378, 51.1844913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38447969" }, "bbox": [ -0.015625, 51.1845795, -0.015625, 51.1845795 ], "geometry": { "type": "Point", "coordinates": [ -0.015625, 51.1845795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437385" }, "bbox": [ -0.7175766, 51.186775, -0.7175766, 51.186775 ], "geometry": { "type": "Point", "coordinates": [ -0.7175766, 51.186775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31425221" }, "bbox": [ -0.120382, 51.1641035, -0.120382, 51.1641035 ], "geometry": { "type": "Point", "coordinates": [ -0.120382, 51.1641035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31425020" }, "bbox": [ -0.1208362, 51.1639395, -0.1208362, 51.1639395 ], "geometry": { "type": "Point", "coordinates": [ -0.1208362, 51.1639395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14491253" }, "bbox": [ -0.3667235, 51.2335781, -0.3667235, 51.2335781 ], "geometry": { "type": "Point", "coordinates": [ -0.3667235, 51.2335781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18477977" }, "bbox": [ -0.3004471, 51.216895, -0.3004471, 51.216895 ], "geometry": { "type": "Point", "coordinates": [ -0.3004471, 51.216895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19486721" }, "bbox": [ -0.2877396, 51.2205022, -0.2877396, 51.2205022 ], "geometry": { "type": "Point", "coordinates": [ -0.2877396, 51.2205022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14483334" }, "bbox": [ -0.3642508, 51.2226937, -0.3642508, 51.2226937 ], "geometry": { "type": "Point", "coordinates": [ -0.3642508, 51.2226937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31452737" }, "bbox": [ -0.1229252, 51.1921252, -0.1229252, 51.1921252 ], "geometry": { "type": "Point", "coordinates": [ -0.1229252, 51.1921252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31451021" }, "bbox": [ -0.1252063, 51.1909891, -0.1252063, 51.1909891 ], "geometry": { "type": "Point", "coordinates": [ -0.1252063, 51.1909891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14482631" }, "bbox": [ -0.36501, 51.2226876, -0.36501, 51.2226876 ], "geometry": { "type": "Point", "coordinates": [ -0.36501, 51.2226876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19446494" }, "bbox": [ -0.2892516, 51.1912695, -0.2892516, 51.1912695 ], "geometry": { "type": "Point", "coordinates": [ -0.2892516, 51.1912695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90431897" }, "bbox": [ -0.7109749, 51.1879129, -0.7109749, 51.1879129 ], "geometry": { "type": "Point", "coordinates": [ -0.7109749, 51.1879129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32450792" }, "bbox": [ -0.1111488, 51.1972454, -0.1111488, 51.1972454 ], "geometry": { "type": "Point", "coordinates": [ -0.1111488, 51.1972454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35435468" }, "bbox": [ -0.0623862, 51.1763483, -0.0623862, 51.1763483 ], "geometry": { "type": "Point", "coordinates": [ -0.0623862, 51.1763483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41422293" }, "bbox": [ 0.0177694, 51.1690363, 0.0177694, 51.1690363 ], "geometry": { "type": "Point", "coordinates": [ 0.0177694, 51.1690363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03626873" }, "bbox": [ -0.5123311, 51.3541954, -0.5123311, 51.3541954 ], "geometry": { "type": "Point", "coordinates": [ -0.5123311, 51.3541954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03625746" }, "bbox": [ -0.5140632, 51.3519212, -0.5140632, 51.3519212 ], "geometry": { "type": "Point", "coordinates": [ -0.5140632, 51.3519212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03627232" }, "bbox": [ -0.5119102, 51.350574, -0.5119102, 51.350574 ], "geometry": { "type": "Point", "coordinates": [ -0.5119102, 51.350574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03627930" }, "bbox": [ -0.511037, 51.3502817, -0.511037, 51.3502817 ], "geometry": { "type": "Point", "coordinates": [ -0.511037, 51.3502817 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03628036" }, "bbox": [ -0.5108161, 51.3508935, -0.5108161, 51.3508935 ], "geometry": { "type": "Point", "coordinates": [ -0.5108161, 51.3508935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00619827" }, "bbox": [ -0.551763, 51.341639, -0.551763, 51.341639 ], "geometry": { "type": "Point", "coordinates": [ -0.551763, 51.341639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00611340" }, "bbox": [ -0.5639608, 51.3428993, -0.5639608, 51.3428993 ], "geometry": { "type": "Point", "coordinates": [ -0.5639608, 51.3428993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00619263" }, "bbox": [ -0.553017, 51.3435618, -0.553017, 51.3435618 ], "geometry": { "type": "Point", "coordinates": [ -0.553017, 51.3435618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40466515" }, "bbox": [ 0.0118113, 51.1974719, 0.0118113, 51.1974719 ], "geometry": { "type": "Point", "coordinates": [ 0.0118113, 51.1974719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08578685" }, "bbox": [ -0.4398112, 51.3097039, -0.4398112, 51.3097039 ], "geometry": { "type": "Point", "coordinates": [ -0.4398112, 51.3097039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08579264" }, "bbox": [ -0.4387446, 51.3073627, -0.4387446, 51.3073627 ], "geometry": { "type": "Point", "coordinates": [ -0.4387446, 51.3073627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08578178" }, "bbox": [ -0.4402021, 51.308758, -0.4402021, 51.308758 ], "geometry": { "type": "Point", "coordinates": [ -0.4402021, 51.308758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08577384" }, "bbox": [ -0.4413664, 51.3095025, -0.4413664, 51.3095025 ], "geometry": { "type": "Point", "coordinates": [ -0.4413664, 51.3095025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08577876" }, "bbox": [ -0.4407746, 51.3087846, -0.4407746, 51.3087846 ], "geometry": { "type": "Point", "coordinates": [ -0.4407746, 51.3087846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08578980" }, "bbox": [ -0.4392163, 51.3090396, -0.4392163, 51.3090396 ], "geometry": { "type": "Point", "coordinates": [ -0.4392163, 51.3090396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08577883" }, "bbox": [ -0.4406139, 51.309148, -0.4406139, 51.309148 ], "geometry": { "type": "Point", "coordinates": [ -0.4406139, 51.309148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14421084" }, "bbox": [ -0.3691614, 51.1735068, -0.3691614, 51.1735068 ], "geometry": { "type": "Point", "coordinates": [ -0.3691614, 51.1735068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14422361" }, "bbox": [ -0.3683482, 51.1711469, -0.3683482, 51.1711469 ], "geometry": { "type": "Point", "coordinates": [ -0.3683482, 51.1711469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14424071" }, "bbox": [ -0.364947, 51.1722369, -0.364947, 51.1722369 ], "geometry": { "type": "Point", "coordinates": [ -0.364947, 51.1722369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14422964" }, "bbox": [ -0.3663808, 51.171667, -0.3663808, 51.171667 ], "geometry": { "type": "Point", "coordinates": [ -0.3663808, 51.171667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15451522" }, "bbox": [ -0.3534151, 51.194675, -0.3534151, 51.194675 ], "geometry": { "type": "Point", "coordinates": [ -0.3534151, 51.194675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19495329" }, "bbox": [ -0.2888105, 51.2304967, -0.2888105, 51.2304967 ], "geometry": { "type": "Point", "coordinates": [ -0.2888105, 51.2304967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17478823" }, "bbox": [ -0.3137108, 51.2121591, -0.3137108, 51.2121591 ], "geometry": { "type": "Point", "coordinates": [ -0.3137108, 51.2121591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17477922" }, "bbox": [ -0.3151214, 51.2119895, -0.3151214, 51.2119895 ], "geometry": { "type": "Point", "coordinates": [ -0.3151214, 51.2119895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19427973" }, "bbox": [ -0.2878265, 51.1712216, -0.2878265, 51.1712216 ], "geometry": { "type": "Point", "coordinates": [ -0.2878265, 51.1712216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11476062" }, "bbox": [ -0.4033267, 51.2168953, -0.4033267, 51.2168953 ], "geometry": { "type": "Point", "coordinates": [ -0.4033267, 51.2168953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11473674" }, "bbox": [ -0.4075953, 51.2179695, -0.4075953, 51.2179695 ], "geometry": { "type": "Point", "coordinates": [ -0.4075953, 51.2179695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11472045" }, "bbox": [ -0.4078575, 51.2155917, -0.4078575, 51.2155917 ], "geometry": { "type": "Point", "coordinates": [ -0.4078575, 51.2155917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11470847" }, "bbox": [ -0.4115963, 51.2158625, -0.4115963, 51.2158625 ], "geometry": { "type": "Point", "coordinates": [ -0.4115963, 51.2158625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30505204" }, "bbox": [ -0.1320701, 51.2346015, -0.1320701, 51.2346015 ], "geometry": { "type": "Point", "coordinates": [ -0.1320701, 51.2346015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01674631" }, "bbox": [ -0.542767, 51.3957918, -0.542767, 51.3957918 ], "geometry": { "type": "Point", "coordinates": [ -0.542767, 51.3957918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01675129" }, "bbox": [ -0.5421379, 51.3955797, -0.5421379, 51.3955797 ], "geometry": { "type": "Point", "coordinates": [ -0.5421379, 51.3955797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15488499" }, "bbox": [ -0.342025, 51.2282209, -0.342025, 51.2282209 ], "geometry": { "type": "Point", "coordinates": [ -0.342025, 51.2282209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31460552" }, "bbox": [ -0.1254387, 51.2028548, -0.1254387, 51.2028548 ], "geometry": { "type": "Point", "coordinates": [ -0.1254387, 51.2028548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31461138" }, "bbox": [ -0.1246901, 51.2015463, -0.1246901, 51.2015463 ], "geometry": { "type": "Point", "coordinates": [ -0.1246901, 51.2015463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31460842" }, "bbox": [ -0.1251321, 51.2019315, -0.1251321, 51.2019315 ], "geometry": { "type": "Point", "coordinates": [ -0.1251321, 51.2019315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36435526" }, "bbox": [ -0.0478252, 51.1723032, -0.0478252, 51.1723032 ], "geometry": { "type": "Point", "coordinates": [ -0.0478252, 51.1723032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36434926" }, "bbox": [ -0.0489897, 51.1723351, -0.0489897, 51.1723351 ], "geometry": { "type": "Point", "coordinates": [ -0.0489897, 51.1723351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36435467" }, "bbox": [ -0.0472851, 51.1757248, -0.0472851, 51.1757248 ], "geometry": { "type": "Point", "coordinates": [ -0.0472851, 51.1757248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36436634" }, "bbox": [ -0.0464521, 51.1729764, -0.0464521, 51.1729764 ], "geometry": { "type": "Point", "coordinates": [ -0.0464521, 51.1729764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01661461" }, "bbox": [ -0.5478392, 51.3895846, -0.5478392, 51.3895846 ], "geometry": { "type": "Point", "coordinates": [ -0.5478392, 51.3895846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20411195" }, "bbox": [ -0.2841124, 51.1642213, -0.2841124, 51.1642213 ], "geometry": { "type": "Point", "coordinates": [ -0.2841124, 51.1642213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13415533" }, "bbox": [ -0.3774427, 51.1599429, -0.3774427, 51.1599429 ], "geometry": { "type": "Point", "coordinates": [ -0.3774427, 51.1599429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13416726" }, "bbox": [ -0.3758173, 51.1593833, -0.3758173, 51.1593833 ], "geometry": { "type": "Point", "coordinates": [ -0.3758173, 51.1593833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39547222" }, "bbox": [ 0.0021252, 51.2697559, 0.0021252, 51.2697559 ], "geometry": { "type": "Point", "coordinates": [ 0.0021252, 51.2697559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18625616" }, "bbox": [ -0.299187, 51.3461229, -0.299187, 51.3461229 ], "geometry": { "type": "Point", "coordinates": [ -0.299187, 51.3461229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18626236" }, "bbox": [ -0.2978304, 51.3479923, -0.2978304, 51.3479923 ], "geometry": { "type": "Point", "coordinates": [ -0.2978304, 51.3479923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19621154" }, "bbox": [ -0.2907634, 51.3494101, -0.2907634, 51.3494101 ], "geometry": { "type": "Point", "coordinates": [ -0.2907634, 51.3494101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19621263" }, "bbox": [ -0.2908073, 51.3504862, -0.2908073, 51.3504862 ], "geometry": { "type": "Point", "coordinates": [ -0.2908073, 51.3504862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622641" }, "bbox": [ -0.2888357, 51.3483295, -0.2888357, 51.3483295 ], "geometry": { "type": "Point", "coordinates": [ -0.2888357, 51.3483295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622138" }, "bbox": [ -0.2892642, 51.3480186, -0.2892642, 51.3480186 ], "geometry": { "type": "Point", "coordinates": [ -0.2892642, 51.3480186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31474526" }, "bbox": [ -0.1194344, 51.2094183, -0.1194344, 51.2094183 ], "geometry": { "type": "Point", "coordinates": [ -0.1194344, 51.2094183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31477836" }, "bbox": [ -0.1148324, 51.2103879, -0.1148324, 51.2103879 ], "geometry": { "type": "Point", "coordinates": [ -0.1148324, 51.2103879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31476233" }, "bbox": [ -0.1170967, 51.2099814, -0.1170967, 51.2099814 ], "geometry": { "type": "Point", "coordinates": [ -0.1170967, 51.2099814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31478052" }, "bbox": [ -0.1143921, 51.2116869, -0.1143921, 51.2116869 ], "geometry": { "type": "Point", "coordinates": [ -0.1143921, 51.2116869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17654025" }, "bbox": [ -0.3145667, 51.3741365, -0.3145667, 51.3741365 ], "geometry": { "type": "Point", "coordinates": [ -0.3145667, 51.3741365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17653725" }, "bbox": [ -0.3146281, 51.3744364, -0.3146281, 51.3744364 ], "geometry": { "type": "Point", "coordinates": [ -0.3146281, 51.3744364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17655207" }, "bbox": [ -0.3128885, 51.3724833, -0.3128885, 51.3724833 ], "geometry": { "type": "Point", "coordinates": [ -0.3128885, 51.3724833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17640452" }, "bbox": [ -0.319976, 51.3677065, -0.319976, 51.3677065 ], "geometry": { "type": "Point", "coordinates": [ -0.319976, 51.3677065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16577786" }, "bbox": [ -0.3257926, 51.3076798, -0.3257926, 51.3076798 ], "geometry": { "type": "Point", "coordinates": [ -0.3257926, 51.3076798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16588740" }, "bbox": [ -0.3247668, 51.3127669, -0.3247668, 51.3127669 ], "geometry": { "type": "Point", "coordinates": [ -0.3247668, 51.3127669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03631819" }, "bbox": [ -0.5191644, 51.3586259, -0.5191644, 51.3586259 ], "geometry": { "type": "Point", "coordinates": [ -0.5191644, 51.3586259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03632016" }, "bbox": [ -0.5193108, 51.3581289, -0.5193108, 51.3581289 ], "geometry": { "type": "Point", "coordinates": [ -0.5193108, 51.3581289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03632112" }, "bbox": [ -0.5190416, 51.3577735, -0.5190416, 51.3577735 ], "geometry": { "type": "Point", "coordinates": [ -0.5190416, 51.3577735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03633216" }, "bbox": [ -0.5174832, 51.3581783, -0.5174832, 51.3581783 ], "geometry": { "type": "Point", "coordinates": [ -0.5174832, 51.3581783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03632524" }, "bbox": [ -0.5183996, 51.3589428, -0.5183996, 51.3589428 ], "geometry": { "type": "Point", "coordinates": [ -0.5183996, 51.3589428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19416233" }, "bbox": [ -0.29055, 51.1588915, -0.29055, 51.1588915 ], "geometry": { "type": "Point", "coordinates": [ -0.29055, 51.1588915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19416312" }, "bbox": [ -0.2908259, 51.1567908, -0.2908259, 51.1567908 ], "geometry": { "type": "Point", "coordinates": [ -0.2908259, 51.1567908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04524714" }, "bbox": [ -0.5040843, 51.2588634, -0.5040843, 51.2588634 ], "geometry": { "type": "Point", "coordinates": [ -0.5040843, 51.2588634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33409896" }, "bbox": [ -0.0856418, 51.1522584, -0.0856418, 51.1522584 ], "geometry": { "type": "Point", "coordinates": [ -0.0856418, 51.1522584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33408795" }, "bbox": [ -0.0871765, 51.1522103, -0.0871765, 51.1522103 ], "geometry": { "type": "Point", "coordinates": [ -0.0871765, 51.1522103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33409386" }, "bbox": [ -0.0862722, 51.1514675, -0.0862722, 51.1514675 ], "geometry": { "type": "Point", "coordinates": [ -0.0862722, 51.1514675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38594294" }, "bbox": [ -0.0150141, 51.3216044, -0.0150141, 51.3216044 ], "geometry": { "type": "Point", "coordinates": [ -0.0150141, 51.3216044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42408603" }, "bbox": [ 0.0408938, 51.1417406, 0.0408938, 51.1417406 ], "geometry": { "type": "Point", "coordinates": [ 0.0408938, 51.1417406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07567463" }, "bbox": [ -0.4559396, 51.2986936, -0.4559396, 51.2986936 ], "geometry": { "type": "Point", "coordinates": [ -0.4559396, 51.2986936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33447816" }, "bbox": [ -0.0873355, 51.1810623, -0.0873355, 51.1810623 ], "geometry": { "type": "Point", "coordinates": [ -0.0873355, 51.1810623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34442215" }, "bbox": [ -0.0811153, 51.1810297, -0.0811153, 51.1810297 ], "geometry": { "type": "Point", "coordinates": [ -0.0811153, 51.1810297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09596315" }, "bbox": [ -0.4279189, 51.3207802, -0.4279189, 51.3207802 ], "geometry": { "type": "Point", "coordinates": [ -0.4279189, 51.3207802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03516970" }, "bbox": [ -0.5157104, 51.2549957, -0.5157104, 51.2549957 ], "geometry": { "type": "Point", "coordinates": [ -0.5157104, 51.2549957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03517258" }, "bbox": [ -0.5151168, 51.2544074, -0.5151168, 51.2544074 ], "geometry": { "type": "Point", "coordinates": [ -0.5151168, 51.2544074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04514170" }, "bbox": [ -0.505295, 51.2542595, -0.505295, 51.2542595 ], "geometry": { "type": "Point", "coordinates": [ -0.505295, 51.2542595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38608405" }, "bbox": [ -0.0088797, 51.3226356, -0.0088797, 51.3226356 ], "geometry": { "type": "Point", "coordinates": [ -0.0088797, 51.3226356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15445829" }, "bbox": [ -0.3475729, 51.1859876, -0.3475729, 51.1859876 ], "geometry": { "type": "Point", "coordinates": [ -0.3475729, 51.1859876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91490552" }, "bbox": [ -0.6970394, 51.2378457, -0.6970394, 51.2378457 ], "geometry": { "type": "Point", "coordinates": [ -0.6970394, 51.2378457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31509314" }, "bbox": [ -0.1116094, 51.2350433, -0.1116094, 51.2350433 ], "geometry": { "type": "Point", "coordinates": [ -0.1116094, 51.2350433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32500736" }, "bbox": [ -0.1093949, 51.2371495, -0.1093949, 51.2371495 ], "geometry": { "type": "Point", "coordinates": [ -0.1093949, 51.2371495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32422773" }, "bbox": [ -0.1095646, 51.1685792, -0.1095646, 51.1685792 ], "geometry": { "type": "Point", "coordinates": [ -0.1095646, 51.1685792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10411794" }, "bbox": [ -0.4257346, 51.1661259, -0.4257346, 51.1661259 ], "geometry": { "type": "Point", "coordinates": [ -0.4257346, 51.1661259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05547219" }, "bbox": [ -0.4858161, 51.277131, -0.4858161, 51.277131 ], "geometry": { "type": "Point", "coordinates": [ -0.4858161, 51.277131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05546226" }, "bbox": [ -0.4870413, 51.2777211, -0.4870413, 51.2777211 ], "geometry": { "type": "Point", "coordinates": [ -0.4870413, 51.2777211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22624978" }, "bbox": [ -0.2414177, 51.3514008, -0.2414177, 51.3514008 ], "geometry": { "type": "Point", "coordinates": [ -0.2414177, 51.3514008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23632318" }, "bbox": [ -0.2313152, 51.3544909, -0.2313152, 51.3544909 ], "geometry": { "type": "Point", "coordinates": [ -0.2313152, 51.3544909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37401060" }, "bbox": [ -0.0412182, 51.148083, -0.0412182, 51.148083 ], "geometry": { "type": "Point", "coordinates": [ -0.0412182, 51.148083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35406571" }, "bbox": [ -0.0620749, 51.1496121, -0.0620749, 51.1496121 ], "geometry": { "type": "Point", "coordinates": [ -0.0620749, 51.1496121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35413420" }, "bbox": [ -0.0661867, 51.1540695, -0.0661867, 51.1540695 ], "geometry": { "type": "Point", "coordinates": [ -0.0661867, 51.1540695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35415313" }, "bbox": [ -0.0636871, 51.1531303, -0.0636871, 51.1531303 ], "geometry": { "type": "Point", "coordinates": [ -0.0636871, 51.1531303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05578489" }, "bbox": [ -0.4828393, 51.3104031, -0.4828393, 51.3104031 ], "geometry": { "type": "Point", "coordinates": [ -0.4828393, 51.3104031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05587125" }, "bbox": [ -0.4846065, 51.3136131, -0.4846065, 51.3136131 ], "geometry": { "type": "Point", "coordinates": [ -0.4846065, 51.3136131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20450850" }, "bbox": [ -0.2835105, 51.1963157, -0.2835105, 51.1963157 ], "geometry": { "type": "Point", "coordinates": [ -0.2835105, 51.1963157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20441581" }, "bbox": [ -0.282088, 51.1898144, -0.282088, 51.1898144 ], "geometry": { "type": "Point", "coordinates": [ -0.282088, 51.1898144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20440578" }, "bbox": [ -0.2835005, 51.189849, -0.2835005, 51.189849 ], "geometry": { "type": "Point", "coordinates": [ -0.2835005, 51.189849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13485222" }, "bbox": [ -0.3757451, 51.2218655, -0.3757451, 51.2218655 ], "geometry": { "type": "Point", "coordinates": [ -0.3757451, 51.2218655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41413305" }, "bbox": [ 0.0197567, 51.1503318, 0.0197567, 51.1503318 ], "geometry": { "type": "Point", "coordinates": [ 0.0197567, 51.1503318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12513526" }, "bbox": [ -0.391505, 51.2494566, -0.391505, 51.2494566 ], "geometry": { "type": "Point", "coordinates": [ -0.391505, 51.2494566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12513139" }, "bbox": [ -0.3920426, 51.2506054, -0.3920426, 51.2506054 ], "geometry": { "type": "Point", "coordinates": [ -0.3920426, 51.2506054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35454061" }, "bbox": [ -0.0635949, 51.1937427, -0.0635949, 51.1937427 ], "geometry": { "type": "Point", "coordinates": [ -0.0635949, 51.1937427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35453557" }, "bbox": [ -0.0641902, 51.1933907, -0.0641902, 51.1933907 ], "geometry": { "type": "Point", "coordinates": [ -0.0641902, 51.1933907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07482236" }, "bbox": [ -0.4659764, 51.2244756, -0.4659764, 51.2244756 ], "geometry": { "type": "Point", "coordinates": [ -0.4659764, 51.2244756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07483667" }, "bbox": [ -0.4636108, 51.2271785, -0.4636108, 51.2271785 ], "geometry": { "type": "Point", "coordinates": [ -0.4636108, 51.2271785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480954" }, "bbox": [ -0.4676269, 51.2260603, -0.4676269, 51.2260603 ], "geometry": { "type": "Point", "coordinates": [ -0.4676269, 51.2260603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480945" }, "bbox": [ -0.4676438, 51.2253064, -0.4676438, 51.2253064 ], "geometry": { "type": "Point", "coordinates": [ -0.4676438, 51.2253064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480938" }, "bbox": [ -0.4677274, 51.2246934, -0.4677274, 51.2246934 ], "geometry": { "type": "Point", "coordinates": [ -0.4677274, 51.2246934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07482029" }, "bbox": [ -0.4677137, 51.2238658, -0.4677137, 51.2238658 ], "geometry": { "type": "Point", "coordinates": [ -0.4677137, 51.2238658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07481639" }, "bbox": [ -0.4666791, 51.2247274, -0.4666791, 51.2247274 ], "geometry": { "type": "Point", "coordinates": [ -0.4666791, 51.2247274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480246" }, "bbox": [ -0.4687268, 51.2253699, -0.4687268, 51.2253699 ], "geometry": { "type": "Point", "coordinates": [ -0.4687268, 51.2253699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07482138" }, "bbox": [ -0.4661392, 51.2245309, -0.4661392, 51.2245309 ], "geometry": { "type": "Point", "coordinates": [ -0.4661392, 51.2245309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480039" }, "bbox": [ -0.4689014, 51.2247171, -0.4689014, 51.2247171 ], "geometry": { "type": "Point", "coordinates": [ -0.4689014, 51.2247171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480929" }, "bbox": [ -0.4677184, 51.2238834, -0.4677184, 51.2238834 ], "geometry": { "type": "Point", "coordinates": [ -0.4677184, 51.2238834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07481646" }, "bbox": [ -0.4666874, 51.2253347, -0.4666874, 51.2253347 ], "geometry": { "type": "Point", "coordinates": [ -0.4666874, 51.2253347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488554" }, "bbox": [ -0.4710925, 51.2261276, -0.4710925, 51.2261276 ], "geometry": { "type": "Point", "coordinates": [ -0.4710925, 51.2261276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489339" }, "bbox": [ -0.4698852, 51.2248376, -0.4698852, 51.2248376 ], "geometry": { "type": "Point", "coordinates": [ -0.4698852, 51.2248376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489125" }, "bbox": [ -0.4703488, 51.2235778, -0.4703488, 51.2235778 ], "geometry": { "type": "Point", "coordinates": [ -0.4703488, 51.2235778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488840" }, "bbox": [ -0.4706185, 51.2248619, -0.4706185, 51.2248619 ], "geometry": { "type": "Point", "coordinates": [ -0.4706185, 51.2248619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489446" }, "bbox": [ -0.4697714, 51.2254391, -0.4697714, 51.2254391 ], "geometry": { "type": "Point", "coordinates": [ -0.4697714, 51.2254391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489132" }, "bbox": [ -0.4702649, 51.224142, -0.4702649, 51.224142 ], "geometry": { "type": "Point", "coordinates": [ -0.4702649, 51.224142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488246" }, "bbox": [ -0.4715282, 51.2254207, -0.4715282, 51.2254207 ], "geometry": { "type": "Point", "coordinates": [ -0.4715282, 51.2254207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489537" }, "bbox": [ -0.4701817, 51.2243998, -0.4701817, 51.2243998 ], "geometry": { "type": "Point", "coordinates": [ -0.4701817, 51.2243998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489735" }, "bbox": [ -0.4695408, 51.2243074, -0.4695408, 51.2243074 ], "geometry": { "type": "Point", "coordinates": [ -0.4695408, 51.2243074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488050" }, "bbox": [ -0.4714623, 51.2257491, -0.4714623, 51.2257491 ], "geometry": { "type": "Point", "coordinates": [ -0.4714623, 51.2257491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06487756" }, "bbox": [ -0.4697265, 51.2267052, -0.4697265, 51.2267052 ], "geometry": { "type": "Point", "coordinates": [ -0.4697265, 51.2267052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489351" }, "bbox": [ -0.4699564, 51.2258101, -0.4699564, 51.2258101 ], "geometry": { "type": "Point", "coordinates": [ -0.4699564, 51.2258101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489432" }, "bbox": [ -0.4699034, 51.2241318, -0.4699034, 51.2241318 ], "geometry": { "type": "Point", "coordinates": [ -0.4699034, 51.2241318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488846" }, "bbox": [ -0.4706042, 51.2254423, -0.4706042, 51.2254423 ], "geometry": { "type": "Point", "coordinates": [ -0.4706042, 51.2254423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489032" }, "bbox": [ -0.4706342, 51.2241515, -0.4706342, 51.2241515 ], "geometry": { "type": "Point", "coordinates": [ -0.4706342, 51.2241515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489625" }, "bbox": [ -0.4696163, 51.2234914, -0.4696163, 51.2234914 ], "geometry": { "type": "Point", "coordinates": [ -0.4696163, 51.2234914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488435" }, "bbox": [ -0.4712548, 51.2244588, -0.4712548, 51.2244588 ], "geometry": { "type": "Point", "coordinates": [ -0.4712548, 51.2244588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489135" }, "bbox": [ -0.4702457, 51.2244056, -0.4702457, 51.2244056 ], "geometry": { "type": "Point", "coordinates": [ -0.4702457, 51.2244056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489355" }, "bbox": [ -0.4699011, 51.226216, -0.4699011, 51.226216 ], "geometry": { "type": "Point", "coordinates": [ -0.4699011, 51.226216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488142" }, "bbox": [ -0.4716095, 51.2250264, -0.4716095, 51.2250264 ], "geometry": { "type": "Point", "coordinates": [ -0.4716095, 51.2250264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489632" }, "bbox": [ -0.4695872, 51.2241158, -0.4695872, 51.2241158 ], "geometry": { "type": "Point", "coordinates": [ -0.4695872, 51.2241158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488542" }, "bbox": [ -0.4711693, 51.224983, -0.4711693, 51.224983 ], "geometry": { "type": "Point", "coordinates": [ -0.4711693, 51.224983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40480692" }, "bbox": [ 0.0042903, 51.2222867, 0.0042903, 51.2222867 ], "geometry": { "type": "Point", "coordinates": [ 0.0042903, 51.2222867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40490555" }, "bbox": [ 0.0044189, 51.2279261, 0.0044189, 51.2279261 ], "geometry": { "type": "Point", "coordinates": [ 0.0044189, 51.2279261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33465918" }, "bbox": [ -0.089047, 51.1993722, -0.089047, 51.1993722 ], "geometry": { "type": "Point", "coordinates": [ -0.089047, 51.1993722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33466541" }, "bbox": [ -0.0883593, 51.2012001, -0.0883593, 51.2012001 ], "geometry": { "type": "Point", "coordinates": [ -0.0883593, 51.2012001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33461792" }, "bbox": [ -0.095182, 51.2057285, -0.095182, 51.2057285 ], "geometry": { "type": "Point", "coordinates": [ -0.095182, 51.2057285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33468124" }, "bbox": [ -0.0861177, 51.1994958, -0.0861177, 51.1994958 ], "geometry": { "type": "Point", "coordinates": [ -0.0861177, 51.1994958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33467560" }, "bbox": [ -0.0868955, 51.2030075, -0.0868955, 51.2030075 ], "geometry": { "type": "Point", "coordinates": [ -0.0868955, 51.2030075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33465692" }, "bbox": [ -0.089304, 51.2052584, -0.089304, 51.2052584 ], "geometry": { "type": "Point", "coordinates": [ -0.089304, 51.2052584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02415185" }, "bbox": [ -0.5353081, 51.1666366, -0.5353081, 51.1666366 ], "geometry": { "type": "Point", "coordinates": [ -0.5353081, 51.1666366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03411010" }, "bbox": [ -0.5270085, 51.1599066, -0.5270085, 51.1599066 ], "geometry": { "type": "Point", "coordinates": [ -0.5270085, 51.1599066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41449826" }, "bbox": [ 0.0301332, 51.1798453, 0.0301332, 51.1798453 ], "geometry": { "type": "Point", "coordinates": [ 0.0301332, 51.1798453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19562713" }, "bbox": [ -0.2908272, 51.2918452, -0.2908272, 51.2918452 ], "geometry": { "type": "Point", "coordinates": [ -0.2908272, 51.2918452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19561244" }, "bbox": [ -0.292864, 51.2947168, -0.292864, 51.2947168 ], "geometry": { "type": "Point", "coordinates": [ -0.292864, 51.2947168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19567002" }, "bbox": [ -0.2847653, 51.2907624, -0.2847653, 51.2907624 ], "geometry": { "type": "Point", "coordinates": [ -0.2847653, 51.2907624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19565137" }, "bbox": [ -0.287243, 51.2939808, -0.287243, 51.2939808 ], "geometry": { "type": "Point", "coordinates": [ -0.287243, 51.2939808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19560132" }, "bbox": [ -0.2944506, 51.2936298, -0.2944506, 51.2936298 ], "geometry": { "type": "Point", "coordinates": [ -0.2944506, 51.2936298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18569039" }, "bbox": [ -0.2960684, 51.2943256, -0.2960684, 51.2943256 ], "geometry": { "type": "Point", "coordinates": [ -0.2960684, 51.2943256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22466987" }, "bbox": [ -0.2449518, 51.2079308, -0.2449518, 51.2079308 ], "geometry": { "type": "Point", "coordinates": [ -0.2449518, 51.2079308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22479018" }, "bbox": [ -0.2415984, 51.2104714, -0.2415984, 51.2104714 ], "geometry": { "type": "Point", "coordinates": [ -0.2415984, 51.2104714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12369655" }, "bbox": [ -0.3874044, 51.117148, -0.3874044, 51.117148 ], "geometry": { "type": "Point", "coordinates": [ -0.3874044, 51.117148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19450128" }, "bbox": [ -0.2982227, 51.1945054, -0.2982227, 51.1945054 ], "geometry": { "type": "Point", "coordinates": [ -0.2982227, 51.1945054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498283" }, "bbox": [ -0.1279561, 51.2326318, -0.1279561, 51.2326318 ], "geometry": { "type": "Point", "coordinates": [ -0.1279561, 51.2326318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00549767" }, "bbox": [ -0.5533056, 51.2822425, -0.5533056, 51.2822425 ], "geometry": { "type": "Point", "coordinates": [ -0.5533056, 51.2822425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01540578" }, "bbox": [ -0.5522306, 51.2834387, -0.5522306, 51.2834387 ], "geometry": { "type": "Point", "coordinates": [ -0.5522306, 51.2834387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09560197" }, "bbox": [ -0.4379664, 51.3014286, -0.4379664, 51.3014286 ], "geometry": { "type": "Point", "coordinates": [ -0.4379664, 51.3014286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559767" }, "bbox": [ -0.5530925, 51.2918328, -0.5530925, 51.2918328 ], "geometry": { "type": "Point", "coordinates": [ -0.5530925, 51.2918328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23474793" }, "bbox": [ -0.2334423, 51.2173626, -0.2334423, 51.2173626 ], "geometry": { "type": "Point", "coordinates": [ -0.2334423, 51.2173626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23476597" }, "bbox": [ -0.2310658, 51.2176055, -0.2310658, 51.2176055 ], "geometry": { "type": "Point", "coordinates": [ -0.2310658, 51.2176055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24470677" }, "bbox": [ -0.2249047, 51.2155009, -0.2249047, 51.2155009 ], "geometry": { "type": "Point", "coordinates": [ -0.2249047, 51.2155009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23486406" }, "bbox": [ -0.2309071, 51.218372, -0.2309071, 51.218372 ], "geometry": { "type": "Point", "coordinates": [ -0.2309071, 51.218372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24481506" }, "bbox": [ -0.2220404, 51.2183213, -0.2220404, 51.2183213 ], "geometry": { "type": "Point", "coordinates": [ -0.2220404, 51.2183213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10365529" }, "bbox": [ -0.4219697, 51.1158483, -0.4219697, 51.1158483 ], "geometry": { "type": "Point", "coordinates": [ -0.4219697, 51.1158483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42491308" }, "bbox": [ 0.034489, 51.2232485, 0.034489, 51.2232485 ], "geometry": { "type": "Point", "coordinates": [ 0.034489, 51.2232485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01561185" }, "bbox": [ -0.551224, 51.3018563, -0.551224, 51.3018563 ], "geometry": { "type": "Point", "coordinates": [ -0.551224, 51.3018563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00569974" }, "bbox": [ -0.5529173, 51.3008099, -0.5529173, 51.3008099 ], "geometry": { "type": "Point", "coordinates": [ -0.5529173, 51.3008099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97702840" }, "bbox": [ -0.6020398, 51.4243385, -0.6020398, 51.4243385 ], "geometry": { "type": "Point", "coordinates": [ -0.6020398, 51.4243385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20516340" }, "bbox": [ -0.2738065, 51.2488109, -0.2738065, 51.2488109 ], "geometry": { "type": "Point", "coordinates": [ -0.2738065, 51.2488109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21525460" }, "bbox": [ -0.26013, 51.2593077, -0.26013, 51.2593077 ], "geometry": { "type": "Point", "coordinates": [ -0.26013, 51.2593077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97681818" }, "bbox": [ -0.6061172, 51.4049715, -0.6061172, 51.4049715 ], "geometry": { "type": "Point", "coordinates": [ -0.6061172, 51.4049715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95498439" }, "bbox": [ -0.6281608, 51.2349439, -0.6281608, 51.2349439 ], "geometry": { "type": "Point", "coordinates": [ -0.6281608, 51.2349439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95494553" }, "bbox": [ -0.6339412, 51.2368388, -0.6339412, 51.2368388 ], "geometry": { "type": "Point", "coordinates": [ -0.6339412, 51.2368388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403646" }, "bbox": [ -0.4090987, 51.1526007, -0.4090987, 51.1526007 ], "geometry": { "type": "Point", "coordinates": [ -0.4090987, 51.1526007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19468501" }, "bbox": [ -0.2860875, 51.2006653, -0.2860875, 51.2006653 ], "geometry": { "type": "Point", "coordinates": [ -0.2860875, 51.2006653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16460184" }, "bbox": [ -0.3406895, 51.209099, -0.3406895, 51.209099 ], "geometry": { "type": "Point", "coordinates": [ -0.3406895, 51.209099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15467260" }, "bbox": [ -0.3449953, 51.2069494, -0.3449953, 51.2069494 ], "geometry": { "type": "Point", "coordinates": [ -0.3449953, 51.2069494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15467879" }, "bbox": [ -0.3431867, 51.2085708, -0.3431867, 51.2085708 ], "geometry": { "type": "Point", "coordinates": [ -0.3431867, 51.2085708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15465741" }, "bbox": [ -0.3467996, 51.2055019, -0.3467996, 51.2055019 ], "geometry": { "type": "Point", "coordinates": [ -0.3467996, 51.2055019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15464939" }, "bbox": [ -0.3479124, 51.2049241, -0.3479124, 51.2049241 ], "geometry": { "type": "Point", "coordinates": [ -0.3479124, 51.2049241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04522245" }, "bbox": [ -0.5076943, 51.2613697, -0.5076943, 51.2613697 ], "geometry": { "type": "Point", "coordinates": [ -0.5076943, 51.2613697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05688423" }, "bbox": [ -0.479795, 51.4032888, -0.479795, 51.4032888 ], "geometry": { "type": "Point", "coordinates": [ -0.479795, 51.4032888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07524878" }, "bbox": [ -0.4606923, 51.2640312, -0.4606923, 51.2640312 ], "geometry": { "type": "Point", "coordinates": [ -0.4606923, 51.2640312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38443977" }, "bbox": [ -0.0212576, 51.1853865, -0.0212576, 51.1853865 ], "geometry": { "type": "Point", "coordinates": [ -0.0212576, 51.1853865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38444599" }, "bbox": [ -0.0202369, 51.1874376, -0.0202369, 51.1874376 ], "geometry": { "type": "Point", "coordinates": [ -0.0202369, 51.1874376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503792" }, "bbox": [ -0.0619288, 51.241506, -0.0619288, 51.241506 ], "geometry": { "type": "Point", "coordinates": [ -0.0619288, 51.241506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35504899" }, "bbox": [ -0.0602775, 51.2416848, -0.0602775, 51.2416848 ], "geometry": { "type": "Point", "coordinates": [ -0.0602775, 51.2416848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503595" }, "bbox": [ -0.0622169, 51.2417426, -0.0622169, 51.2417426 ], "geometry": { "type": "Point", "coordinates": [ -0.0622169, 51.2417426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37459509" }, "bbox": [ -0.027347, 51.1883951, -0.027347, 51.1883951 ], "geometry": { "type": "Point", "coordinates": [ -0.027347, 51.1883951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38450213" }, "bbox": [ -0.0260736, 51.1887099, -0.0260736, 51.1887099 ], "geometry": { "type": "Point", "coordinates": [ -0.0260736, 51.1887099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39482294" }, "bbox": [ -0.0070534, 51.2232121, -0.0070534, 51.2232121 ], "geometry": { "type": "Point", "coordinates": [ -0.0070534, 51.2232121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39496035" }, "bbox": [ -0.0026991, 51.2260344, -0.0026991, 51.2260344 ], "geometry": { "type": "Point", "coordinates": [ -0.0026991, 51.2260344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13419905" }, "bbox": [ -0.3696612, 51.1575823, -0.3696612, 51.1575823 ], "geometry": { "type": "Point", "coordinates": [ -0.3696612, 51.1575823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13408098" }, "bbox": [ -0.3741938, 51.156784, -0.3741938, 51.156784 ], "geometry": { "type": "Point", "coordinates": [ -0.3741938, 51.156784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14412351" }, "bbox": [ -0.3677253, 51.1610325, -0.3677253, 51.1610325 ], "geometry": { "type": "Point", "coordinates": [ -0.3677253, 51.1610325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14414170" }, "bbox": [ -0.36544, 51.1630543, -0.36544, 51.1630543 ], "geometry": { "type": "Point", "coordinates": [ -0.36544, 51.1630543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14411119" }, "bbox": [ -0.369512, 51.1585896, -0.369512, 51.1585896 ], "geometry": { "type": "Point", "coordinates": [ -0.369512, 51.1585896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14411080" }, "bbox": [ -0.3706606, 51.1649178, -0.3706606, 51.1649178 ], "geometry": { "type": "Point", "coordinates": [ -0.3706606, 51.1649178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22441491" }, "bbox": [ -0.2535606, 51.1904589, -0.2535606, 51.1904589 ], "geometry": { "type": "Point", "coordinates": [ -0.2535606, 51.1904589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22445776" }, "bbox": [ -0.2477948, 51.189413, -0.2477948, 51.189413 ], "geometry": { "type": "Point", "coordinates": [ -0.2477948, 51.189413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21449388" }, "bbox": [ -0.2566744, 51.1894475, -0.2566744, 51.1894475 ], "geometry": { "type": "Point", "coordinates": [ -0.2566744, 51.1894475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22442537" }, "bbox": [ -0.2521062, 51.1856298, -0.2521062, 51.1856298 ], "geometry": { "type": "Point", "coordinates": [ -0.2521062, 51.1856298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22440248" }, "bbox": [ -0.2557461, 51.1864395, -0.2557461, 51.1864395 ], "geometry": { "type": "Point", "coordinates": [ -0.2557461, 51.1864395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94337907" }, "bbox": [ -0.6478664, 51.0890906, -0.6478664, 51.0890906 ], "geometry": { "type": "Point", "coordinates": [ -0.6478664, 51.0890906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94339117" }, "bbox": [ -0.6462, 51.0899675, -0.6462, 51.0899675 ], "geometry": { "type": "Point", "coordinates": [ -0.6462, 51.0899675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37566992" }, "bbox": [ -0.0265836, 51.2946556, -0.0265836, 51.2946556 ], "geometry": { "type": "Point", "coordinates": [ -0.0265836, 51.2946556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37569968" }, "bbox": [ -0.022779, 51.2923902, -0.022779, 51.2923902 ], "geometry": { "type": "Point", "coordinates": [ -0.022779, 51.2923902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37567332" }, "bbox": [ -0.0259923, 51.2892809, -0.0259923, 51.2892809 ], "geometry": { "type": "Point", "coordinates": [ -0.0259923, 51.2892809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37568719" }, "bbox": [ -0.0242179, 51.2880961, -0.0242179, 51.2880961 ], "geometry": { "type": "Point", "coordinates": [ -0.0242179, 51.2880961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37568706" }, "bbox": [ -0.0247905, 51.2873456, -0.0247905, 51.2873456 ], "geometry": { "type": "Point", "coordinates": [ -0.0247905, 51.2873456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38562213" }, "bbox": [ -0.0178078, 51.2873898, -0.0178078, 51.2873898 ], "geometry": { "type": "Point", "coordinates": [ -0.0178078, 51.2873898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37577056" }, "bbox": [ -0.0258607, 51.3005483, -0.0258607, 51.3005483 ], "geometry": { "type": "Point", "coordinates": [ -0.0258607, 51.3005483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38566041" }, "bbox": [ -0.013617, 51.2900634, -0.013617, 51.2900634 ], "geometry": { "type": "Point", "coordinates": [ -0.013617, 51.2900634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37579049" }, "bbox": [ -0.0230395, 51.2999239, -0.0230395, 51.2999239 ], "geometry": { "type": "Point", "coordinates": [ -0.0230395, 51.2999239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38573501" }, "bbox": [ -0.0167921, 51.2956029, -0.0167921, 51.2956029 ], "geometry": { "type": "Point", "coordinates": [ -0.0167921, 51.2956029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15547581" }, "bbox": [ -0.3415934, 51.2806539, -0.3415934, 51.2806539 ], "geometry": { "type": "Point", "coordinates": [ -0.3415934, 51.2806539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545578" }, "bbox": [ -0.3445277, 51.2804665, -0.3445277, 51.2804665 ], "geometry": { "type": "Point", "coordinates": [ -0.3445277, 51.2804665 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15548780" }, "bbox": [ -0.3406412, 51.280244, -0.3406412, 51.280244 ], "geometry": { "type": "Point", "coordinates": [ -0.3406412, 51.280244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09477368" }, "bbox": [ -0.430299, 51.2180635, -0.430299, 51.2180635 ], "geometry": { "type": "Point", "coordinates": [ -0.430299, 51.2180635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08488303" }, "bbox": [ -0.4406161, 51.2215148, -0.4406161, 51.2215148 ], "geometry": { "type": "Point", "coordinates": [ -0.4406161, 51.2215148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11462817" }, "bbox": [ -0.4084103, 51.2040001, -0.4084103, 51.2040001 ], "geometry": { "type": "Point", "coordinates": [ -0.4084103, 51.2040001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11464512" }, "bbox": [ -0.4061018, 51.2034512, -0.4061018, 51.2034512 ], "geometry": { "type": "Point", "coordinates": [ -0.4061018, 51.2034512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10462045" }, "bbox": [ -0.4250504, 51.2061616, -0.4250504, 51.2061616 ], "geometry": { "type": "Point", "coordinates": [ -0.4250504, 51.2061616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10467765" }, "bbox": [ -0.415432, 51.2082875, -0.415432, 51.2082875 ], "geometry": { "type": "Point", "coordinates": [ -0.415432, 51.2082875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10469920" }, "bbox": [ -0.412549, 51.2041595, -0.412549, 51.2041595 ], "geometry": { "type": "Point", "coordinates": [ -0.412549, 51.2041595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90508656" }, "bbox": [ -0.6995987, 51.2470624, -0.6995987, 51.2470624 ], "geometry": { "type": "Point", "coordinates": [ -0.6995987, 51.2470624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90505629" }, "bbox": [ -0.7040781, 51.2447098, -0.7040781, 51.2447098 ], "geometry": { "type": "Point", "coordinates": [ -0.7040781, 51.2447098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96485904" }, "bbox": [ -0.6182415, 51.2237103, -0.6182415, 51.2237103 ], "geometry": { "type": "Point", "coordinates": [ -0.6182415, 51.2237103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96474690" }, "bbox": [ -0.6200961, 51.2222409, -0.6200961, 51.2222409 ], "geometry": { "type": "Point", "coordinates": [ -0.6200961, 51.2222409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36517821" }, "bbox": [ -0.0419021, 51.2437649, -0.0419021, 51.2437649 ], "geometry": { "type": "Point", "coordinates": [ -0.0419021, 51.2437649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36516745" }, "bbox": [ -0.0433036, 51.2456973, -0.0433036, 51.2456973 ], "geometry": { "type": "Point", "coordinates": [ -0.0433036, 51.2456973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36516431" }, "bbox": [ -0.043724, 51.2445627, -0.043724, 51.2445627 ], "geometry": { "type": "Point", "coordinates": [ -0.043724, 51.2445627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93540735" }, "bbox": [ -0.6669888, 51.280693, -0.6669888, 51.280693 ], "geometry": { "type": "Point", "coordinates": [ -0.6669888, 51.280693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541039" }, "bbox": [ -0.6662344, 51.2810976, -0.6662344, 51.2810976 ], "geometry": { "type": "Point", "coordinates": [ -0.6662344, 51.2810976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542330" }, "bbox": [ -0.6643562, 51.2802851, -0.6643562, 51.2802851 ], "geometry": { "type": "Point", "coordinates": [ -0.6643562, 51.2802851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541536" }, "bbox": [ -0.6657445, 51.2808402, -0.6657445, 51.2808402 ], "geometry": { "type": "Point", "coordinates": [ -0.6657445, 51.2808402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11354972" }, "bbox": [ -0.4082012, 51.1098035, -0.4082012, 51.1098035 ], "geometry": { "type": "Point", "coordinates": [ -0.4082012, 51.1098035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30502617" }, "bbox": [ -0.1355207, 51.2358048, -0.1355207, 51.2358048 ], "geometry": { "type": "Point", "coordinates": [ -0.1355207, 51.2358048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30501637" }, "bbox": [ -0.1359645, 51.2378611, -0.1359645, 51.2378611 ], "geometry": { "type": "Point", "coordinates": [ -0.1359645, 51.2378611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30503901" }, "bbox": [ -0.1332745, 51.2342997, -0.1332745, 51.2342997 ], "geometry": { "type": "Point", "coordinates": [ -0.1332745, 51.2342997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18565895" }, "bbox": [ -0.2968536, 51.2985085, -0.2968536, 51.2985085 ], "geometry": { "type": "Point", "coordinates": [ -0.2968536, 51.2985085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18568893" }, "bbox": [ -0.2961345, 51.2991522, -0.2961345, 51.2991522 ], "geometry": { "type": "Point", "coordinates": [ -0.2961345, 51.2991522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18568290" }, "bbox": [ -0.2969723, 51.2988427, -0.2969723, 51.2988427 ], "geometry": { "type": "Point", "coordinates": [ -0.2969723, 51.2988427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99463946" }, "bbox": [ -0.5786861, 51.2088145, -0.5786861, 51.2088145 ], "geometry": { "type": "Point", "coordinates": [ -0.5786861, 51.2088145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99466297" }, "bbox": [ -0.5742188, 51.2135276, -0.5742188, 51.2135276 ], "geometry": { "type": "Point", "coordinates": [ -0.5742188, 51.2135276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99486188" }, "bbox": [ -0.5747385, 51.2304679, -0.5747385, 51.2304679 ], "geometry": { "type": "Point", "coordinates": [ -0.5747385, 51.2304679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05537940" }, "bbox": [ -0.483492, 51.270134, -0.483492, 51.270134 ], "geometry": { "type": "Point", "coordinates": [ -0.483492, 51.270134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05534702" }, "bbox": [ -0.4896269, 51.2666051, -0.4896269, 51.2666051 ], "geometry": { "type": "Point", "coordinates": [ -0.4896269, 51.2666051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05537216" }, "bbox": [ -0.485853, 51.2678274, -0.485853, 51.2678274 ], "geometry": { "type": "Point", "coordinates": [ -0.485853, 51.2678274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05535275" }, "bbox": [ -0.4886031, 51.2733081, -0.4886031, 51.2733081 ], "geometry": { "type": "Point", "coordinates": [ -0.4886031, 51.2733081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06537878" }, "bbox": [ -0.4706236, 51.2732024, -0.4706236, 51.2732024 ], "geometry": { "type": "Point", "coordinates": [ -0.4706236, 51.2732024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21421379" }, "bbox": [ -0.2686633, 51.1715672, -0.2686633, 51.1715672 ], "geometry": { "type": "Point", "coordinates": [ -0.2686633, 51.1715672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01660561" }, "bbox": [ -0.5490838, 51.3895513, -0.5490838, 51.3895513 ], "geometry": { "type": "Point", "coordinates": [ -0.5490838, 51.3895513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532877" }, "bbox": [ -0.6209948, 51.275016, -0.6209948, 51.275016 ], "geometry": { "type": "Point", "coordinates": [ -0.6209948, 51.275016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96533981" }, "bbox": [ -0.6195709, 51.2753039, -0.6195709, 51.2753039 ], "geometry": { "type": "Point", "coordinates": [ -0.6195709, 51.2753039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91327063" }, "bbox": [ -0.6923351, 51.0858802, -0.6923351, 51.0858802 ], "geometry": { "type": "Point", "coordinates": [ -0.6923351, 51.0858802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02522304" }, "bbox": [ -0.5362559, 51.2585879, -0.5362559, 51.2585879 ], "geometry": { "type": "Point", "coordinates": [ -0.5362559, 51.2585879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02514378" }, "bbox": [ -0.533465, 51.2559971, -0.533465, 51.2559971 ], "geometry": { "type": "Point", "coordinates": [ -0.533465, 51.2559971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02513952" }, "bbox": [ -0.5341606, 51.2536105, -0.5341606, 51.2536105 ], "geometry": { "type": "Point", "coordinates": [ -0.5341606, 51.2536105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02514969" }, "bbox": [ -0.5327142, 51.2552407, -0.5327142, 51.2552407 ], "geometry": { "type": "Point", "coordinates": [ -0.5327142, 51.2552407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07544025" }, "bbox": [ -0.4616838, 51.2769263, -0.4616838, 51.2769263 ], "geometry": { "type": "Point", "coordinates": [ -0.4616838, 51.2769263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07545409" }, "bbox": [ -0.460508, 51.2748398, -0.460508, 51.2748398 ], "geometry": { "type": "Point", "coordinates": [ -0.460508, 51.2748398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06553821" }, "bbox": [ -0.4758711, 51.2860778, -0.4758711, 51.2860778 ], "geometry": { "type": "Point", "coordinates": [ -0.4758711, 51.2860778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06552212" }, "bbox": [ -0.4781462, 51.2853492, -0.4781462, 51.2853492 ], "geometry": { "type": "Point", "coordinates": [ -0.4781462, 51.2853492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06541242" }, "bbox": [ -0.4786511, 51.2796856, -0.4786511, 51.2796856 ], "geometry": { "type": "Point", "coordinates": [ -0.4786511, 51.2796856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06546542" }, "bbox": [ -0.4716206, 51.2786428, -0.4716206, 51.2786428 ], "geometry": { "type": "Point", "coordinates": [ -0.4716206, 51.2786428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14403658" }, "bbox": [ -0.3661881, 51.1526083, -0.3661881, 51.1526083 ], "geometry": { "type": "Point", "coordinates": [ -0.3661881, 51.1526083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14405342" }, "bbox": [ -0.3638556, 51.1516078, -0.3638556, 51.1516078 ], "geometry": { "type": "Point", "coordinates": [ -0.3638556, 51.1516078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14407534" }, "bbox": [ -0.360785, 51.1508556, -0.360785, 51.1508556 ], "geometry": { "type": "Point", "coordinates": [ -0.360785, 51.1508556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14402692" }, "bbox": [ -0.3676872, 51.1561323, -0.3676872, 51.1561323 ], "geometry": { "type": "Point", "coordinates": [ -0.3676872, 51.1561323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13409775" }, "bbox": [ -0.3723656, 51.1543139, -0.3723656, 51.1543139 ], "geometry": { "type": "Point", "coordinates": [ -0.3723656, 51.1543139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00628466" }, "bbox": [ -0.5532505, 51.3543457, -0.5532505, 51.3543457 ], "geometry": { "type": "Point", "coordinates": [ -0.5532505, 51.3543457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41526409" }, "bbox": [ 0.0261499, 51.25011, 0.0261499, 51.25011 ], "geometry": { "type": "Point", "coordinates": [ 0.0261499, 51.25011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42514685" }, "bbox": [ 0.0397926, 51.2480617, 0.0397926, 51.2480617 ], "geometry": { "type": "Point", "coordinates": [ 0.0397926, 51.2480617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42516672" }, "bbox": [ 0.0418748, 51.2469159, 0.0418748, 51.2469159 ], "geometry": { "type": "Point", "coordinates": [ 0.0418748, 51.2469159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41528917" }, "bbox": [ 0.0318955, 51.2510158, 0.0318955, 51.2510158 ], "geometry": { "type": "Point", "coordinates": [ 0.0318955, 51.2510158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41522779" }, "bbox": [ 0.0231439, 51.2567365, 0.0231439, 51.2567365 ], "geometry": { "type": "Point", "coordinates": [ 0.0231439, 51.2567365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42513987" }, "bbox": [ 0.0390322, 51.2482401, 0.0390322, 51.2482401 ], "geometry": { "type": "Point", "coordinates": [ 0.0390322, 51.2482401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41522702" }, "bbox": [ 0.0228105, 51.2498593, 0.0228105, 51.2498593 ], "geometry": { "type": "Point", "coordinates": [ 0.0228105, 51.2498593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42525601" }, "bbox": [ 0.0411956, 51.2495597, 0.0411956, 51.2495597 ], "geometry": { "type": "Point", "coordinates": [ 0.0411956, 51.2495597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42525306" }, "bbox": [ 0.0409089, 51.2498471, 0.0409089, 51.2498471 ], "geometry": { "type": "Point", "coordinates": [ 0.0409089, 51.2498471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95635455" }, "bbox": [ -0.6291853, 51.362884, -0.6291853, 51.362884 ], "geometry": { "type": "Point", "coordinates": [ -0.6291853, 51.362884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17445324" }, "bbox": [ -0.3197041, 51.1854025, -0.3197041, 51.1854025 ], "geometry": { "type": "Point", "coordinates": [ -0.3197041, 51.1854025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441088" }, "bbox": [ -0.3256731, 51.1911577, -0.3256731, 51.1911577 ], "geometry": { "type": "Point", "coordinates": [ -0.3256731, 51.1911577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440685" }, "bbox": [ -0.3262273, 51.1909187, -0.3262273, 51.1909187 ], "geometry": { "type": "Point", "coordinates": [ -0.3262273, 51.1909187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449166" }, "bbox": [ -0.3284447, 51.1892083, -0.3284447, 51.1892083 ], "geometry": { "type": "Point", "coordinates": [ -0.3284447, 51.1892083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19443624" }, "bbox": [ -0.2936706, 51.1846466, -0.2936706, 51.1846466 ], "geometry": { "type": "Point", "coordinates": [ -0.2936706, 51.1846466 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00443948" }, "bbox": [ -0.5648511, 51.1907113, -0.5648511, 51.1907113 ], "geometry": { "type": "Point", "coordinates": [ -0.5648511, 51.1907113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89362795" }, "bbox": [ -0.7256826, 51.1249208, -0.7256826, 51.1249208 ], "geometry": { "type": "Point", "coordinates": [ -0.7256826, 51.1249208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35451979" }, "bbox": [ -0.0666358, 51.1953993, -0.0666358, 51.1953993 ], "geometry": { "type": "Point", "coordinates": [ -0.0666358, 51.1953993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92414059" }, "bbox": [ -0.6798773, 51.1661659, -0.6798773, 51.1661659 ], "geometry": { "type": "Point", "coordinates": [ -0.6798773, 51.1661659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08510120" }, "bbox": [ -0.4538902, 51.2498146, -0.4538902, 51.2498146 ], "geometry": { "type": "Point", "coordinates": [ -0.4538902, 51.2498146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07517787" }, "bbox": [ -0.4569367, 51.2559328, -0.4569367, 51.2559328 ], "geometry": { "type": "Point", "coordinates": [ -0.4569367, 51.2559328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05576170" }, "bbox": [ -0.4859761, 51.3086534, -0.4859761, 51.3086534 ], "geometry": { "type": "Point", "coordinates": [ -0.4859761, 51.3086534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05575669" }, "bbox": [ -0.4867196, 51.3085235, -0.4867196, 51.3085235 ], "geometry": { "type": "Point", "coordinates": [ -0.4867196, 51.3085235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509513" }, "bbox": [ -0.698044, 51.2430186, -0.698044, 51.2430186 ], "geometry": { "type": "Point", "coordinates": [ -0.698044, 51.2430186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500113" }, "bbox": [ -0.6974017, 51.2431279, -0.6974017, 51.2431279 ], "geometry": { "type": "Point", "coordinates": [ -0.6974017, 51.2431279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500210" }, "bbox": [ -0.6973088, 51.2429148, -0.6973088, 51.2429148 ], "geometry": { "type": "Point", "coordinates": [ -0.6973088, 51.2429148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19530642" }, "bbox": [ -0.2948427, 51.2675182, -0.2948427, 51.2675182 ], "geometry": { "type": "Point", "coordinates": [ -0.2948427, 51.2675182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21517524" }, "bbox": [ -0.256358, 51.247255, -0.256358, 51.247255 ], "geometry": { "type": "Point", "coordinates": [ -0.256358, 51.247255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21519817" }, "bbox": [ -0.2537198, 51.2467988, -0.2537198, 51.2467988 ], "geometry": { "type": "Point", "coordinates": [ -0.2537198, 51.2467988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22510586" }, "bbox": [ -0.2526174, 51.2527481, -0.2526174, 51.2527481 ], "geometry": { "type": "Point", "coordinates": [ -0.2526174, 51.2527481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97610954" }, "bbox": [ -0.6094673, 51.3442242, -0.6094673, 51.3442242 ], "geometry": { "type": "Point", "coordinates": [ -0.6094673, 51.3442242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97612658" }, "bbox": [ -0.6060211, 51.34509, -0.6060211, 51.34509 ], "geometry": { "type": "Point", "coordinates": [ -0.6060211, 51.34509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97610698" }, "bbox": [ -0.6068638, 51.3485328, -0.6068638, 51.3485328 ], "geometry": { "type": "Point", "coordinates": [ -0.6068638, 51.3485328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96633814" }, "bbox": [ -0.6170992, 51.3592922, -0.6170992, 51.3592922 ], "geometry": { "type": "Point", "coordinates": [ -0.6170992, 51.3592922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96635013" }, "bbox": [ -0.6153522, 51.3590572, -0.6153522, 51.3590572 ], "geometry": { "type": "Point", "coordinates": [ -0.6153522, 51.3590572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96635925" }, "bbox": [ -0.6138659, 51.360057, -0.6138659, 51.360057 ], "geometry": { "type": "Point", "coordinates": [ -0.6138659, 51.360057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96634230" }, "bbox": [ -0.616526, 51.36062, -0.616526, 51.36062 ], "geometry": { "type": "Point", "coordinates": [ -0.616526, 51.36062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01623401" }, "bbox": [ -0.5466339, 51.3481267, -0.5466339, 51.3481267 ], "geometry": { "type": "Point", "coordinates": [ -0.5466339, 51.3481267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00623856" }, "bbox": [ -0.5593271, 51.3530286, -0.5593271, 51.3530286 ], "geometry": { "type": "Point", "coordinates": [ -0.5593271, 51.3530286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00623203" }, "bbox": [ -0.559413, 51.3486711, -0.559413, 51.3486711 ], "geometry": { "type": "Point", "coordinates": [ -0.559413, 51.3486711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94470193" }, "bbox": [ -0.6545605, 51.2224538, -0.6545605, 51.2224538 ], "geometry": { "type": "Point", "coordinates": [ -0.6545605, 51.2224538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00470306" }, "bbox": [ -0.5691418, 51.2140384, -0.5691418, 51.2140384 ], "geometry": { "type": "Point", "coordinates": [ -0.5691418, 51.2140384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00460471" }, "bbox": [ -0.5691471, 51.2109, -0.5691471, 51.2109 ], "geometry": { "type": "Point", "coordinates": [ -0.5691471, 51.2109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00461289" }, "bbox": [ -0.5675736, 51.2123886, -0.5675736, 51.2123886 ], "geometry": { "type": "Point", "coordinates": [ -0.5675736, 51.2123886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00466489" }, "bbox": [ -0.5604917, 51.2123385, -0.5604917, 51.2123385 ], "geometry": { "type": "Point", "coordinates": [ -0.5604917, 51.2123385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13524333" }, "bbox": [ -0.376002, 51.2589484, -0.376002, 51.2589484 ], "geometry": { "type": "Point", "coordinates": [ -0.376002, 51.2589484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06516264" }, "bbox": [ -0.4746118, 51.2538693, -0.4746118, 51.2538693 ], "geometry": { "type": "Point", "coordinates": [ -0.4746118, 51.2538693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15516290" }, "bbox": [ -0.3430013, 51.2542957, -0.3430013, 51.2542957 ], "geometry": { "type": "Point", "coordinates": [ -0.3430013, 51.2542957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15517971" }, "bbox": [ -0.3421071, 51.2529401, -0.3421071, 51.2529401 ], "geometry": { "type": "Point", "coordinates": [ -0.3421071, 51.2529401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02432490" }, "bbox": [ -0.5383388, 51.185197, -0.5383388, 51.185197 ], "geometry": { "type": "Point", "coordinates": [ -0.5383388, 51.185197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02430829" }, "bbox": [ -0.5408403, 51.1798359, -0.5408403, 51.1798359 ], "geometry": { "type": "Point", "coordinates": [ -0.5408403, 51.1798359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37451501" }, "bbox": [ -0.0392541, 51.1877735, -0.0392541, 51.1877735 ], "geometry": { "type": "Point", "coordinates": [ -0.0392541, 51.1877735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37460917" }, "bbox": [ -0.0393163, 51.1982592, -0.0393163, 51.1982592 ], "geometry": { "type": "Point", "coordinates": [ -0.0393163, 51.1982592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96627014" }, "bbox": [ -0.6127268, 51.3501474, -0.6127268, 51.3501474 ], "geometry": { "type": "Point", "coordinates": [ -0.6127268, 51.3501474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26482101" }, "bbox": [ -0.194086, 51.217504, -0.194086, 51.217504 ], "geometry": { "type": "Point", "coordinates": [ -0.194086, 51.217504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06498402" }, "bbox": [ -0.4709351, 51.2303298, -0.4709351, 51.2303298 ], "geometry": { "type": "Point", "coordinates": [ -0.4709351, 51.2303298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06494908" }, "bbox": [ -0.4759172, 51.2308673, -0.4759172, 51.2308673 ], "geometry": { "type": "Point", "coordinates": [ -0.4759172, 51.2308673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06496619" }, "bbox": [ -0.4738885, 51.2319701, -0.4738885, 51.2319701 ], "geometry": { "type": "Point", "coordinates": [ -0.4738885, 51.2319701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480186" }, "bbox": [ -0.4690442, 51.2288244, -0.4690442, 51.2288244 ], "geometry": { "type": "Point", "coordinates": [ -0.4690442, 51.2288244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06494414" }, "bbox": [ -0.4767651, 51.2315636, -0.4767651, 51.2315636 ], "geometry": { "type": "Point", "coordinates": [ -0.4767651, 51.2315636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06488675" }, "bbox": [ -0.4712064, 51.2281064, -0.4712064, 51.2281064 ], "geometry": { "type": "Point", "coordinates": [ -0.4712064, 51.2281064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06485193" }, "bbox": [ -0.4760635, 51.2295529, -0.4760635, 51.2295529 ], "geometry": { "type": "Point", "coordinates": [ -0.4760635, 51.2295529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06486466" }, "bbox": [ -0.4726755, 51.2289163, -0.4726755, 51.2289163 ], "geometry": { "type": "Point", "coordinates": [ -0.4726755, 51.2289163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95487978" }, "bbox": [ -0.6293573, 51.2300233, -0.6293573, 51.2300233 ], "geometry": { "type": "Point", "coordinates": [ -0.6293573, 51.2300233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33469547" }, "bbox": [ -0.0844311, 51.2016318, -0.0844311, 51.2016318 ], "geometry": { "type": "Point", "coordinates": [ -0.0844311, 51.2016318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33467878" }, "bbox": [ -0.0864784, 51.2048446, -0.0864784, 51.2048446 ], "geometry": { "type": "Point", "coordinates": [ -0.0864784, 51.2048446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34465555" }, "bbox": [ -0.0754254, 51.2023173, -0.0754254, 51.2023173 ], "geometry": { "type": "Point", "coordinates": [ -0.0754254, 51.2023173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34463636" }, "bbox": [ -0.0782797, 51.2008916, -0.0782797, 51.2008916 ], "geometry": { "type": "Point", "coordinates": [ -0.0782797, 51.2008916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16553145" }, "bbox": [ -0.3331192, 51.2869531, -0.3331192, 51.2869531 ], "geometry": { "type": "Point", "coordinates": [ -0.3331192, 51.2869531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10615331" }, "bbox": [ -0.4147194, 51.3404239, -0.4147194, 51.3404239 ], "geometry": { "type": "Point", "coordinates": [ -0.4147194, 51.3404239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11603703" }, "bbox": [ -0.4029868, 51.3287555, -0.4029868, 51.3287555 ], "geometry": { "type": "Point", "coordinates": [ -0.4029868, 51.3287555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10605399" }, "bbox": [ -0.4145682, 51.3371068, -0.4145682, 51.3371068 ], "geometry": { "type": "Point", "coordinates": [ -0.4145682, 51.3371068 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03443349" }, "bbox": [ -0.5225942, 51.1902354, -0.5225942, 51.1902354 ], "geometry": { "type": "Point", "coordinates": [ -0.5225942, 51.1902354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03442949" }, "bbox": [ -0.5236595, 51.1903822, -0.5236595, 51.1903822 ], "geometry": { "type": "Point", "coordinates": [ -0.5236595, 51.1903822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03443242" }, "bbox": [ -0.5227295, 51.1898924, -0.5227295, 51.1898924 ], "geometry": { "type": "Point", "coordinates": [ -0.5227295, 51.1898924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03442943" }, "bbox": [ -0.5236996, 51.1897886, -0.5236996, 51.1897886 ], "geometry": { "type": "Point", "coordinates": [ -0.5236996, 51.1897886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31467527" }, "bbox": [ -0.1155663, 51.2005062, -0.1155663, 51.2005062 ], "geometry": { "type": "Point", "coordinates": [ -0.1155663, 51.2005062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31465629" }, "bbox": [ -0.1180555, 51.20077, -0.1180555, 51.20077 ], "geometry": { "type": "Point", "coordinates": [ -0.1180555, 51.20077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14384977" }, "bbox": [ -0.3651167, 51.1366232, -0.3651167, 51.1366232 ], "geometry": { "type": "Point", "coordinates": [ -0.3651167, 51.1366232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99411747" }, "bbox": [ -0.5824652, 51.1642057, -0.5824652, 51.1642057 ], "geometry": { "type": "Point", "coordinates": [ -0.5824652, 51.1642057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37447234" }, "bbox": [ -0.0307824, 51.1817697, -0.0307824, 51.1817697 ], "geometry": { "type": "Point", "coordinates": [ -0.0307824, 51.1817697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37445347" }, "bbox": [ -0.0343883, 51.1831457, -0.0343883, 51.1831457 ], "geometry": { "type": "Point", "coordinates": [ -0.0343883, 51.1831457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09468544" }, "bbox": [ -0.4289127, 51.2066512, -0.4289127, 51.2066512 ], "geometry": { "type": "Point", "coordinates": [ -0.4289127, 51.2066512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38418770" }, "bbox": [ -0.0155888, 51.1579101, -0.0155888, 51.1579101 ], "geometry": { "type": "Point", "coordinates": [ -0.0155888, 51.1579101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00439341" }, "bbox": [ -0.557448, 51.1809489, -0.557448, 51.1809489 ], "geometry": { "type": "Point", "coordinates": [ -0.557448, 51.1809489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438745" }, "bbox": [ -0.5581114, 51.181398, -0.5581114, 51.181398 ], "geometry": { "type": "Point", "coordinates": [ -0.5581114, 51.181398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05604383" }, "bbox": [ -0.4878939, 51.33689, -0.4878939, 51.33689 ], "geometry": { "type": "Point", "coordinates": [ -0.4878939, 51.33689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05601888" }, "bbox": [ -0.4913975, 51.3372803, -0.4913975, 51.3372803 ], "geometry": { "type": "Point", "coordinates": [ -0.4913975, 51.3372803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05602646" }, "bbox": [ -0.4905715, 51.3331241, -0.4905715, 51.3331241 ], "geometry": { "type": "Point", "coordinates": [ -0.4905715, 51.3331241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21496678" }, "bbox": [ -0.2587292, 51.2342682, -0.2587292, 51.2342682 ], "geometry": { "type": "Point", "coordinates": [ -0.2587292, 51.2342682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21495870" }, "bbox": [ -0.2600994, 51.2337407, -0.2600994, 51.2337407 ], "geometry": { "type": "Point", "coordinates": [ -0.2600994, 51.2337407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21497277" }, "bbox": [ -0.2579635, 51.2340494, -0.2579635, 51.2340494 ], "geometry": { "type": "Point", "coordinates": [ -0.2579635, 51.2340494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13387843" }, "bbox": [ -0.3736462, 51.1339828, -0.3736462, 51.1339828 ], "geometry": { "type": "Point", "coordinates": [ -0.3736462, 51.1339828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14382703" }, "bbox": [ -0.3672718, 51.1312369, -0.3672718, 51.1312369 ], "geometry": { "type": "Point", "coordinates": [ -0.3672718, 51.1312369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05625261" }, "bbox": [ -0.4856126, 51.352674, -0.4856126, 51.352674 ], "geometry": { "type": "Point", "coordinates": [ -0.4856126, 51.352674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00439396" }, "bbox": [ -0.5570901, 51.1860577, -0.5570901, 51.1860577 ], "geometry": { "type": "Point", "coordinates": [ -0.5570901, 51.1860577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03557245" }, "bbox": [ -0.5139228, 51.2888592, -0.5139228, 51.2888592 ], "geometry": { "type": "Point", "coordinates": [ -0.5139228, 51.2888592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31407048" }, "bbox": [ -0.1176292, 51.1484259, -0.1176292, 51.1484259 ], "geometry": { "type": "Point", "coordinates": [ -0.1176292, 51.1484259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31405655" }, "bbox": [ -0.1205991, 51.14925, -0.1205991, 51.14925 ], "geometry": { "type": "Point", "coordinates": [ -0.1205991, 51.14925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32405956" }, "bbox": [ -0.1056459, 51.1491381, -0.1056459, 51.1491381 ], "geometry": { "type": "Point", "coordinates": [ -0.1056459, 51.1491381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05524566" }, "bbox": [ -0.4897653, 51.2634572, -0.4897653, 51.2634572 ], "geometry": { "type": "Point", "coordinates": [ -0.4897653, 51.2634572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34557695" }, "bbox": [ -0.0688375, 51.2867841, -0.0688375, 51.2867841 ], "geometry": { "type": "Point", "coordinates": [ -0.0688375, 51.2867841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34557261" }, "bbox": [ -0.069522, 51.283588, -0.069522, 51.283588 ], "geometry": { "type": "Point", "coordinates": [ -0.069522, 51.283588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34559572" }, "bbox": [ -0.0661268, 51.2850264, -0.0661268, 51.2850264 ], "geometry": { "type": "Point", "coordinates": [ -0.0661268, 51.2850264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35550236" }, "bbox": [ -0.0653829, 51.2813962, -0.0653829, 51.2813962 ], "geometry": { "type": "Point", "coordinates": [ -0.0653829, 51.2813962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22484378" }, "bbox": [ -0.2481684, 51.2251129, -0.2481684, 51.2251129 ], "geometry": { "type": "Point", "coordinates": [ -0.2481684, 51.2251129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22494224" }, "bbox": [ -0.2476317, 51.2294067, -0.2476317, 51.2294067 ], "geometry": { "type": "Point", "coordinates": [ -0.2476317, 51.2294067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23480366" }, "bbox": [ -0.2395393, 51.22392, -0.2395393, 51.22392 ], "geometry": { "type": "Point", "coordinates": [ -0.2395393, 51.22392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23481070" }, "bbox": [ -0.2381162, 51.2241106, -0.2381162, 51.2241106 ], "geometry": { "type": "Point", "coordinates": [ -0.2381162, 51.2241106 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22492602" }, "bbox": [ -0.2497794, 51.2275741, -0.2497794, 51.2275741 ], "geometry": { "type": "Point", "coordinates": [ -0.2497794, 51.2275741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28573237" }, "bbox": [ -0.1604867, 51.3010406, -0.1604867, 51.3010406 ], "geometry": { "type": "Point", "coordinates": [ -0.1604867, 51.3010406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28571126" }, "bbox": [ -0.1637838, 51.300083, -0.1637838, 51.300083 ], "geometry": { "type": "Point", "coordinates": [ -0.1637838, 51.300083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28573758" }, "bbox": [ -0.1598811, 51.3028492, -0.1598811, 51.3028492 ], "geometry": { "type": "Point", "coordinates": [ -0.1598811, 51.3028492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22479254" }, "bbox": [ -0.2412188, 51.2139095, -0.2412188, 51.2139095 ], "geometry": { "type": "Point", "coordinates": [ -0.2412188, 51.2139095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13409767" }, "bbox": [ -0.3716342, 51.1538903, -0.3716342, 51.1538903 ], "geometry": { "type": "Point", "coordinates": [ -0.3716342, 51.1538903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35438335" }, "bbox": [ -0.0582995, 51.1730922, -0.0582995, 51.1730922 ], "geometry": { "type": "Point", "coordinates": [ -0.0582995, 51.1730922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35438153" }, "bbox": [ -0.0585605, 51.1749398, -0.0585605, 51.1749398 ], "geometry": { "type": "Point", "coordinates": [ -0.0585605, 51.1749398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12516410" }, "bbox": [ -0.3872068, 51.2481131, -0.3872068, 51.2481131 ], "geometry": { "type": "Point", "coordinates": [ -0.3872068, 51.2481131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30401396" }, "bbox": [ -0.1407007, 51.1534536, -0.1407007, 51.1534536 ], "geometry": { "type": "Point", "coordinates": [ -0.1407007, 51.1534536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30421901" }, "bbox": [ -0.1392706, 51.1625786, -0.1392706, 51.1625786 ], "geometry": { "type": "Point", "coordinates": [ -0.1392706, 51.1625786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82405272" }, "bbox": [ -0.8212703, 51.1598393, -0.8212703, 51.1598393 ], "geometry": { "type": "Point", "coordinates": [ -0.8212703, 51.1598393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20467572" }, "bbox": [ -0.2725467, 51.2070248, -0.2725467, 51.2070248 ], "geometry": { "type": "Point", "coordinates": [ -0.2725467, 51.2070248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97463289" }, "bbox": [ -0.6079993, 51.2129368, -0.6079993, 51.2129368 ], "geometry": { "type": "Point", "coordinates": [ -0.6079993, 51.2129368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24471810" }, "bbox": [ -0.223399, 51.2095961, -0.223399, 51.2095961 ], "geometry": { "type": "Point", "coordinates": [ -0.223399, 51.2095961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24473228" }, "bbox": [ -0.2215134, 51.2111958, -0.2215134, 51.2111958 ], "geometry": { "type": "Point", "coordinates": [ -0.2215134, 51.2111958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10568759" }, "bbox": [ -0.4110714, 51.2977391, -0.4110714, 51.2977391 ], "geometry": { "type": "Point", "coordinates": [ -0.4110714, 51.2977391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10567035" }, "bbox": [ -0.4134461, 51.2955496, -0.4134461, 51.2955496 ], "geometry": { "type": "Point", "coordinates": [ -0.4134461, 51.2955496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38438818" }, "bbox": [ -0.0144831, 51.1711425, -0.0144831, 51.1711425 ], "geometry": { "type": "Point", "coordinates": [ -0.0144831, 51.1711425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92551218" }, "bbox": [ -0.6822338, 51.2884253, -0.6822338, 51.2884253 ], "geometry": { "type": "Point", "coordinates": [ -0.6822338, 51.2884253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92553537" }, "bbox": [ -0.6769825, 51.2902252, -0.6769825, 51.2902252 ], "geometry": { "type": "Point", "coordinates": [ -0.6769825, 51.2902252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92557346" }, "bbox": [ -0.6726042, 51.2900049, -0.6726042, 51.2900049 ], "geometry": { "type": "Point", "coordinates": [ -0.6726042, 51.2900049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29560635" }, "bbox": [ -0.1508857, 51.291263, -0.1508857, 51.291263 ], "geometry": { "type": "Point", "coordinates": [ -0.1508857, 51.291263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12643145" }, "bbox": [ -0.3880377, 51.368006, -0.3880377, 51.368006 ], "geometry": { "type": "Point", "coordinates": [ -0.3880377, 51.368006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20401137" }, "bbox": [ -0.2834557, 51.1502996, -0.2834557, 51.1502996 ], "geometry": { "type": "Point", "coordinates": [ -0.2834557, 51.1502996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20402810" }, "bbox": [ -0.2812692, 51.1475819, -0.2812692, 51.1475819 ], "geometry": { "type": "Point", "coordinates": [ -0.2812692, 51.1475819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90317680" }, "bbox": [ -0.706682, 51.0785128, -0.706682, 51.0785128 ], "geometry": { "type": "Point", "coordinates": [ -0.706682, 51.0785128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01403389" }, "bbox": [ -0.5528334, 51.1585814, -0.5528334, 51.1585814 ], "geometry": { "type": "Point", "coordinates": [ -0.5528334, 51.1585814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11597018" }, "bbox": [ -0.3984871, 51.321133, -0.3984871, 51.321133 ], "geometry": { "type": "Point", "coordinates": [ -0.3984871, 51.321133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11592316" }, "bbox": [ -0.4050503, 51.3208641, -0.4050503, 51.3208641 ], "geometry": { "type": "Point", "coordinates": [ -0.4050503, 51.3208641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11599108" }, "bbox": [ -0.3988782, 51.3200566, -0.3988782, 51.3200566 ], "geometry": { "type": "Point", "coordinates": [ -0.3988782, 51.3200566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11591646" }, "bbox": [ -0.405668, 51.3230846, -0.405668, 51.3230846 ], "geometry": { "type": "Point", "coordinates": [ -0.405668, 51.3230846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11598726" }, "bbox": [ -0.3959295, 51.3214821, -0.3959295, 51.3214821 ], "geometry": { "type": "Point", "coordinates": [ -0.3959295, 51.3214821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10599044" }, "bbox": [ -0.4096689, 51.3232764, -0.4096689, 51.3232764 ], "geometry": { "type": "Point", "coordinates": [ -0.4096689, 51.3232764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98609649" }, "bbox": [ -0.5799871, 51.3349355, -0.5799871, 51.3349355 ], "geometry": { "type": "Point", "coordinates": [ -0.5799871, 51.3349355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14638177" }, "bbox": [ -0.352454, 51.3609224, -0.352454, 51.3609224 ], "geometry": { "type": "Point", "coordinates": [ -0.352454, 51.3609224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14636769" }, "bbox": [ -0.3540779, 51.3612697, -0.3540779, 51.3612697 ], "geometry": { "type": "Point", "coordinates": [ -0.3540779, 51.3612697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14639968" }, "bbox": [ -0.3497345, 51.3605674, -0.3497345, 51.3605674 ], "geometry": { "type": "Point", "coordinates": [ -0.3497345, 51.3605674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20504239" }, "bbox": [ -0.2762706, 51.2400948, -0.2762706, 51.2400948 ], "geometry": { "type": "Point", "coordinates": [ -0.2762706, 51.2400948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02672319" }, "bbox": [ -0.5320335, 51.3947189, -0.5320335, 51.3947189 ], "geometry": { "type": "Point", "coordinates": [ -0.5320335, 51.3947189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22497711" }, "bbox": [ -0.2430444, 51.2280372, -0.2430444, 51.2280372 ], "geometry": { "type": "Point", "coordinates": [ -0.2430444, 51.2280372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23491021" }, "bbox": [ -0.2386146, 51.2288562, -0.2386146, 51.2288562 ], "geometry": { "type": "Point", "coordinates": [ -0.2386146, 51.2288562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95507738" }, "bbox": [ -0.6290557, 51.2445811, -0.6290557, 51.2445811 ], "geometry": { "type": "Point", "coordinates": [ -0.6290557, 51.2445811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30526643" }, "bbox": [ -0.1289449, 51.2560825, -0.1289449, 51.2560825 ], "geometry": { "type": "Point", "coordinates": [ -0.1289449, 51.2560825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30528644" }, "bbox": [ -0.12828, 51.2569773, -0.12828, 51.2569773 ], "geometry": { "type": "Point", "coordinates": [ -0.12828, 51.2569773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38585114" }, "bbox": [ -0.0143006, 51.3055237, -0.0143006, 51.3055237 ], "geometry": { "type": "Point", "coordinates": [ -0.0143006, 51.3055237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38574582" }, "bbox": [ -0.0151224, 51.3026469, -0.0151224, 51.3026469 ], "geometry": { "type": "Point", "coordinates": [ -0.0151224, 51.3026469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96537446" }, "bbox": [ -0.614598, 51.2721511, -0.614598, 51.2721511 ], "geometry": { "type": "Point", "coordinates": [ -0.614598, 51.2721511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96532908" }, "bbox": [ -0.621086, 51.2688219, -0.621086, 51.2688219 ], "geometry": { "type": "Point", "coordinates": [ -0.621086, 51.2688219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38442513" }, "bbox": [ -0.023439, 51.179694, -0.023439, 51.179694 ], "geometry": { "type": "Point", "coordinates": [ -0.023439, 51.179694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38568905" }, "bbox": [ -0.0095464, 51.2865114, -0.0095464, 51.2865114 ], "geometry": { "type": "Point", "coordinates": [ -0.0095464, 51.2865114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37577701" }, "bbox": [ -0.0255762, 51.2963191, -0.0255762, 51.2963191 ], "geometry": { "type": "Point", "coordinates": [ -0.0255762, 51.2963191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38563452" }, "bbox": [ -0.0174068, 51.2909382, -0.0174068, 51.2909382 ], "geometry": { "type": "Point", "coordinates": [ -0.0174068, 51.2909382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38566227" }, "bbox": [ -0.013394, 51.2885975, -0.013394, 51.2885975 ], "geometry": { "type": "Point", "coordinates": [ -0.013394, 51.2885975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04587295" }, "bbox": [ -0.4984201, 51.319876, -0.4984201, 51.319876 ], "geometry": { "type": "Point", "coordinates": [ -0.4984201, 51.319876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02579286" }, "bbox": [ -0.5246364, 51.3106282, -0.5246364, 51.3106282 ], "geometry": { "type": "Point", "coordinates": [ -0.5246364, 51.3106282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01578772" }, "bbox": [ -0.5396753, 51.309385, -0.5396753, 51.309385 ], "geometry": { "type": "Point", "coordinates": [ -0.5396753, 51.309385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41448668" }, "bbox": [ 0.0283539, 51.1837698, 0.0283539, 51.1837698 ], "geometry": { "type": "Point", "coordinates": [ 0.0283539, 51.1837698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42440467" }, "bbox": [ 0.0308202, 51.1836229, 0.0308202, 51.1836229 ], "geometry": { "type": "Point", "coordinates": [ 0.0308202, 51.1836229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22459193" }, "bbox": [ -0.2421131, 51.1989372, -0.2421131, 51.1989372 ], "geometry": { "type": "Point", "coordinates": [ -0.2421131, 51.1989372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23460939" }, "bbox": [ -0.2395412, 51.20363, -0.2395412, 51.20363 ], "geometry": { "type": "Point", "coordinates": [ -0.2395412, 51.20363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22455753" }, "bbox": [ -0.2474718, 51.19666, -0.2474718, 51.19666 ], "geometry": { "type": "Point", "coordinates": [ -0.2474718, 51.19666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454537" }, "bbox": [ -0.248906, 51.1944656, -0.248906, 51.1944656 ], "geometry": { "type": "Point", "coordinates": [ -0.248906, 51.1944656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22454946" }, "bbox": [ -0.2482299, 51.1953535, -0.2482299, 51.1953535 ], "geometry": { "type": "Point", "coordinates": [ -0.2482299, 51.1953535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99469890" }, "bbox": [ -0.5709038, 51.2129441, -0.5709038, 51.2129441 ], "geometry": { "type": "Point", "coordinates": [ -0.5709038, 51.2129441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98457478" }, "bbox": [ -0.5879225, 51.2031118, -0.5879225, 51.2031118 ], "geometry": { "type": "Point", "coordinates": [ -0.5879225, 51.2031118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98459452" }, "bbox": [ -0.5854043, 51.2005217, -0.5854043, 51.2005217 ], "geometry": { "type": "Point", "coordinates": [ -0.5854043, 51.2005217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21519414" }, "bbox": [ -0.2542487, 51.2463867, -0.2542487, 51.2463867 ], "geometry": { "type": "Point", "coordinates": [ -0.2542487, 51.2463867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21518911" }, "bbox": [ -0.2551429, 51.2461693, -0.2551429, 51.2461693 ], "geometry": { "type": "Point", "coordinates": [ -0.2551429, 51.2461693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21519419" }, "bbox": [ -0.2542728, 51.2468571, -0.2542728, 51.2468571 ], "geometry": { "type": "Point", "coordinates": [ -0.2542728, 51.2468571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25411921" }, "bbox": [ -0.2112277, 51.1564859, -0.2112277, 51.1564859 ], "geometry": { "type": "Point", "coordinates": [ -0.2112277, 51.1564859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24425389" }, "bbox": [ -0.2205619, 51.1726843, -0.2205619, 51.1726843 ], "geometry": { "type": "Point", "coordinates": [ -0.2205619, 51.1726843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24433507" }, "bbox": [ -0.2225477, 51.1734034, -0.2225477, 51.1734034 ], "geometry": { "type": "Point", "coordinates": [ -0.2225477, 51.1734034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24424639" }, "bbox": [ -0.2212528, 51.1673041, -0.2212528, 51.1673041 ], "geometry": { "type": "Point", "coordinates": [ -0.2212528, 51.1673041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18422301" }, "bbox": [ -0.3104518, 51.1648537, -0.3104518, 51.1648537 ], "geometry": { "type": "Point", "coordinates": [ -0.3104518, 51.1648537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18411690" }, "bbox": [ -0.3115469, 51.1641219, -0.3115469, 51.1641219 ], "geometry": { "type": "Point", "coordinates": [ -0.3115469, 51.1641219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18412188" }, "bbox": [ -0.3108053, 51.1639881, -0.3108053, 51.1639881 ], "geometry": { "type": "Point", "coordinates": [ -0.3108053, 51.1639881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18413279" }, "bbox": [ -0.3091882, 51.1631644, -0.3091882, 51.1631644 ], "geometry": { "type": "Point", "coordinates": [ -0.3091882, 51.1631644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95443837" }, "bbox": [ -0.6364643, 51.1905422, -0.6364643, 51.1905422 ], "geometry": { "type": "Point", "coordinates": [ -0.6364643, 51.1905422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23523644" }, "bbox": [ -0.2334731, 51.2578033, -0.2334731, 51.2578033 ], "geometry": { "type": "Point", "coordinates": [ -0.2334731, 51.2578033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02461301" }, "bbox": [ -0.5394133, 51.2042495, -0.5394133, 51.2042495 ], "geometry": { "type": "Point", "coordinates": [ -0.5394133, 51.2042495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02461306" }, "bbox": [ -0.5394362, 51.2046611, -0.5394362, 51.2046611 ], "geometry": { "type": "Point", "coordinates": [ -0.5394362, 51.2046611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07601448" }, "bbox": [ -0.4634863, 51.3330504, -0.4634863, 51.3330504 ], "geometry": { "type": "Point", "coordinates": [ -0.4634863, 51.3330504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07601337" }, "bbox": [ -0.4638562, 51.3322713, -0.4638562, 51.3322713 ], "geometry": { "type": "Point", "coordinates": [ -0.4638562, 51.3322713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25431015" }, "bbox": [ -0.2119034, 51.1739605, -0.2119034, 51.1739605 ], "geometry": { "type": "Point", "coordinates": [ -0.2119034, 51.1739605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25430857" }, "bbox": [ -0.2119544, 51.1777437, -0.2119544, 51.1777437 ], "geometry": { "type": "Point", "coordinates": [ -0.2119544, 51.1777437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421303" }, "bbox": [ -0.2546467, 51.1642526, -0.2546467, 51.1642526 ], "geometry": { "type": "Point", "coordinates": [ -0.2546467, 51.1642526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93543963" }, "bbox": [ -0.6623216, 51.2832048, -0.6623216, 51.2832048 ], "geometry": { "type": "Point", "coordinates": [ -0.6623216, 51.2832048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30513038" }, "bbox": [ -0.1343099, 51.2466926, -0.1343099, 51.2466926 ], "geometry": { "type": "Point", "coordinates": [ -0.1343099, 51.2466926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02428105" }, "bbox": [ -0.5309547, 51.1685816, -0.5309547, 51.1685816 ], "geometry": { "type": "Point", "coordinates": [ -0.5309547, 51.1685816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40432017" }, "bbox": [ 0.0040085, 51.1705993, 0.0040085, 51.1705993 ], "geometry": { "type": "Point", "coordinates": [ 0.0040085, 51.1705993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32428780" }, "bbox": [ -0.1007919, 51.1688848, -0.1007919, 51.1688848 ], "geometry": { "type": "Point", "coordinates": [ -0.1007919, 51.1688848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09679853" }, "bbox": [ -0.4201402, 51.396884, -0.4201402, 51.396884 ], "geometry": { "type": "Point", "coordinates": [ -0.4201402, 51.396884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10671284" }, "bbox": [ -0.4184064, 51.3988937, -0.4184064, 51.3988937 ], "geometry": { "type": "Point", "coordinates": [ -0.4184064, 51.3988937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10671282" }, "bbox": [ -0.4183854, 51.3987268, -0.4183854, 51.3987268 ], "geometry": { "type": "Point", "coordinates": [ -0.4183854, 51.3987268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95375268" }, "bbox": [ -0.6361852, 51.1306382, -0.6361852, 51.1306382 ], "geometry": { "type": "Point", "coordinates": [ -0.6361852, 51.1306382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517726" }, "bbox": [ -0.6718928, 51.2530352, -0.6718928, 51.2530352 ], "geometry": { "type": "Point", "coordinates": [ -0.6718928, 51.2530352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92517531" }, "bbox": [ -0.6724301, 51.2533698, -0.6724301, 51.2533698 ], "geometry": { "type": "Point", "coordinates": [ -0.6724301, 51.2533698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02654098" }, "bbox": [ -0.5297197, 51.3837945, -0.5297197, 51.3837945 ], "geometry": { "type": "Point", "coordinates": [ -0.5297197, 51.3837945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02656197" }, "bbox": [ -0.5269512, 51.3836147, -0.5269512, 51.3836147 ], "geometry": { "type": "Point", "coordinates": [ -0.5269512, 51.3836147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06480972" }, "bbox": [ -0.4835636, 51.2275757, -0.4835636, 51.2275757 ], "geometry": { "type": "Point", "coordinates": [ -0.4835636, 51.2275757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05486970" }, "bbox": [ -0.4878753, 51.227802, -0.4878753, 51.227802 ], "geometry": { "type": "Point", "coordinates": [ -0.4878753, 51.227802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03653560" }, "bbox": [ -0.5162488, 51.3799961, -0.5162488, 51.3799961 ], "geometry": { "type": "Point", "coordinates": [ -0.5162488, 51.3799961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20553824" }, "bbox": [ -0.2751052, 51.283731, -0.2751052, 51.283731 ], "geometry": { "type": "Point", "coordinates": [ -0.2751052, 51.283731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98603161" }, "bbox": [ -0.5900673, 51.3360829, -0.5900673, 51.3360829 ], "geometry": { "type": "Point", "coordinates": [ -0.5900673, 51.3360829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98602042" }, "bbox": [ -0.5917677, 51.3344453, -0.5917677, 51.3344453 ], "geometry": { "type": "Point", "coordinates": [ -0.5917677, 51.3344453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98603049" }, "bbox": [ -0.5902678, 51.3351694, -0.5902678, 51.3351694 ], "geometry": { "type": "Point", "coordinates": [ -0.5902678, 51.3351694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98600856" }, "bbox": [ -0.5935082, 51.3356584, -0.5935082, 51.3356584 ], "geometry": { "type": "Point", "coordinates": [ -0.5935082, 51.3356584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98604143" }, "bbox": [ -0.5887872, 51.3343927, -0.5887872, 51.3343927 ], "geometry": { "type": "Point", "coordinates": [ -0.5887872, 51.3343927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98600841" }, "bbox": [ -0.593225, 51.3342835, -0.593225, 51.3342835 ], "geometry": { "type": "Point", "coordinates": [ -0.593225, 51.3342835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07459763" }, "bbox": [ -0.4564236, 51.199656, -0.4564236, 51.199656 ], "geometry": { "type": "Point", "coordinates": [ -0.4564236, 51.199656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12382184" }, "bbox": [ -0.3972879, 51.1378822, -0.3972879, 51.1378822 ], "geometry": { "type": "Point", "coordinates": [ -0.3972879, 51.1378822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07461807" }, "bbox": [ -0.4671232, 51.2038214, -0.4671232, 51.2038214 ], "geometry": { "type": "Point", "coordinates": [ -0.4671232, 51.2038214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02656768" }, "bbox": [ -0.5262535, 51.3808828, -0.5262535, 51.3808828 ], "geometry": { "type": "Point", "coordinates": [ -0.5262535, 51.3808828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35465345" }, "bbox": [ -0.0614294, 51.2012357, -0.0614294, 51.2012357 ], "geometry": { "type": "Point", "coordinates": [ -0.0614294, 51.2012357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04741095" }, "bbox": [ -0.5027043, 51.4640511, -0.5027043, 51.4640511 ], "geometry": { "type": "Point", "coordinates": [ -0.5027043, 51.4640511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02667903" }, "bbox": [ -0.5242951, 51.3841011, -0.5242951, 51.3841011 ], "geometry": { "type": "Point", "coordinates": [ -0.5242951, 51.3841011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03650491" }, "bbox": [ -0.5208258, 51.3826028, -0.5208258, 51.3826028 ], "geometry": { "type": "Point", "coordinates": [ -0.5208258, 51.3826028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02658973" }, "bbox": [ -0.5228099, 51.3812094, -0.5228099, 51.3812094 ], "geometry": { "type": "Point", "coordinates": [ -0.5228099, 51.3812094 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02659575" }, "bbox": [ -0.5220517, 51.3815113, -0.5220517, 51.3815113 ], "geometry": { "type": "Point", "coordinates": [ -0.5220517, 51.3815113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02658696" }, "bbox": [ -0.5236565, 51.3833344, -0.5236565, 51.3833344 ], "geometry": { "type": "Point", "coordinates": [ -0.5236565, 51.3833344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02659291" }, "bbox": [ -0.5205463, 51.3836701, -0.5205463, 51.3836701 ], "geometry": { "type": "Point", "coordinates": [ -0.5205463, 51.3836701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02657891" }, "bbox": [ -0.5242311, 51.3827256, -0.5242311, 51.3827256 ], "geometry": { "type": "Point", "coordinates": [ -0.5242311, 51.3827256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88544865" }, "bbox": [ -0.7324877, 51.284203, -0.7324877, 51.284203 ], "geometry": { "type": "Point", "coordinates": [ -0.7324877, 51.284203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88551461" }, "bbox": [ -0.737128, 51.2928034, -0.737128, 51.2928034 ], "geometry": { "type": "Point", "coordinates": [ -0.737128, 51.2928034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03759823" }, "bbox": [ -0.5045436, 51.4666231, -0.5045436, 51.4666231 ], "geometry": { "type": "Point", "coordinates": [ -0.5045436, 51.4666231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90463341" }, "bbox": [ -0.7082101, 51.2097289, -0.7082101, 51.2097289 ], "geometry": { "type": "Point", "coordinates": [ -0.7082101, 51.2097289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90479896" }, "bbox": [ -0.6983916, 51.2234268, -0.6983916, 51.2234268 ], "geometry": { "type": "Point", "coordinates": [ -0.6983916, 51.2234268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97651475" }, "bbox": [ -0.6086507, 51.3820472, -0.6086507, 51.3820472 ], "geometry": { "type": "Point", "coordinates": [ -0.6086507, 51.3820472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96642461" }, "bbox": [ -0.6198247, 51.3724429, -0.6198247, 51.3724429 ], "geometry": { "type": "Point", "coordinates": [ -0.6198247, 51.3724429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93511730" }, "bbox": [ -0.6663516, 51.2534453, -0.6663516, 51.2534453 ], "geometry": { "type": "Point", "coordinates": [ -0.6663516, 51.2534453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93512106" }, "bbox": [ -0.6654354, 51.2512993, -0.6654354, 51.2512993 ], "geometry": { "type": "Point", "coordinates": [ -0.6654354, 51.2512993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95550738" }, "bbox": [ -0.6379476, 51.2895763, -0.6379476, 51.2895763 ], "geometry": { "type": "Point", "coordinates": [ -0.6379476, 51.2895763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34405241" }, "bbox": [ -0.0780582, 51.1472328, -0.0780582, 51.1472328 ], "geometry": { "type": "Point", "coordinates": [ -0.0780582, 51.1472328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86412573" }, "bbox": [ -0.7674957, 51.1684176, -0.7674957, 51.1684176 ], "geometry": { "type": "Point", "coordinates": [ -0.7674957, 51.1684176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09617058" }, "bbox": [ -0.4262066, 51.3427946, -0.4262066, 51.3427946 ], "geometry": { "type": "Point", "coordinates": [ -0.4262066, 51.3427946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02626978" }, "bbox": [ -0.5266467, 51.354743, -0.5266467, 51.354743 ], "geometry": { "type": "Point", "coordinates": [ -0.5266467, 51.354743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02628878" }, "bbox": [ -0.5235625, 51.3548699, -0.5235625, 51.3548699 ], "geometry": { "type": "Point", "coordinates": [ -0.5235625, 51.3548699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513316" }, "bbox": [ -0.0624645, 51.2435449, -0.0624645, 51.2435449 ], "geometry": { "type": "Point", "coordinates": [ -0.0624645, 51.2435449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10405872" }, "bbox": [ -0.4204907, 51.1549498, -0.4204907, 51.1549498 ], "geometry": { "type": "Point", "coordinates": [ -0.4204907, 51.1549498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27556687" }, "bbox": [ -0.1707112, 51.2875489, -0.1707112, 51.2875489 ], "geometry": { "type": "Point", "coordinates": [ -0.1707112, 51.2875489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13603911" }, "bbox": [ -0.3738376, 51.3288751, -0.3738376, 51.3288751 ], "geometry": { "type": "Point", "coordinates": [ -0.3738376, 51.3288751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37526797" }, "bbox": [ -0.0294936, 51.2603823, -0.0294936, 51.2603823 ], "geometry": { "type": "Point", "coordinates": [ -0.0294936, 51.2603823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37537539" }, "bbox": [ -0.0237751, 51.2638243, -0.0237751, 51.2638243 ], "geometry": { "type": "Point", "coordinates": [ -0.0237751, 51.2638243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37536460" }, "bbox": [ -0.0284701, 51.2650089, -0.0284701, 51.2650089 ], "geometry": { "type": "Point", "coordinates": [ -0.0284701, 51.2650089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20410361" }, "bbox": [ -0.2845635, 51.1613963, -0.2845635, 51.1613963 ], "geometry": { "type": "Point", "coordinates": [ -0.2845635, 51.1613963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99617206" }, "bbox": [ -0.5696459, 51.3399257, -0.5696459, 51.3399257 ], "geometry": { "type": "Point", "coordinates": [ -0.5696459, 51.3399257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448768" }, "bbox": [ -0.5152814, 51.1918834, -0.5152814, 51.1918834 ], "geometry": { "type": "Point", "coordinates": [ -0.5152814, 51.1918834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43411392" }, "bbox": [ 0.0453272, 51.1588773, 0.0453272, 51.1588773 ], "geometry": { "type": "Point", "coordinates": [ 0.0453272, 51.1588773 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95477633" }, "bbox": [ -0.630216, 51.2170927, -0.630216, 51.2170927 ], "geometry": { "type": "Point", "coordinates": [ -0.630216, 51.2170927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96471723" }, "bbox": [ -0.6242476, 51.2165457, -0.6242476, 51.2165457 ], "geometry": { "type": "Point", "coordinates": [ -0.6242476, 51.2165457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96463638" }, "bbox": [ -0.6219655, 51.208548, -0.6219655, 51.208548 ], "geometry": { "type": "Point", "coordinates": [ -0.6219655, 51.208548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13594115" }, "bbox": [ -0.3739679, 51.3201739, -0.3739679, 51.3201739 ], "geometry": { "type": "Point", "coordinates": [ -0.3739679, 51.3201739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13597040" }, "bbox": [ -0.3696225, 51.3217156, -0.3696225, 51.3217156 ], "geometry": { "type": "Point", "coordinates": [ -0.3696225, 51.3217156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13595610" }, "bbox": [ -0.3716354, 51.3196853, -0.3716354, 51.3196853 ], "geometry": { "type": "Point", "coordinates": [ -0.3716354, 51.3196853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13595425" }, "bbox": [ -0.3720807, 51.3210317, -0.3720807, 51.3210317 ], "geometry": { "type": "Point", "coordinates": [ -0.3720807, 51.3210317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585080" }, "bbox": [ -0.3720925, 51.3173126, -0.3720925, 51.3173126 ], "geometry": { "type": "Point", "coordinates": [ -0.3720925, 51.3173126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89453656" }, "bbox": [ -0.7228817, 51.2028104, -0.7228817, 51.2028104 ], "geometry": { "type": "Point", "coordinates": [ -0.7228817, 51.2028104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98413827" }, "bbox": [ -0.5944265, 51.1622687, -0.5944265, 51.1622687 ], "geometry": { "type": "Point", "coordinates": [ -0.5944265, 51.1622687 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576478" }, "bbox": [ -0.4284406, 51.3086335, -0.4284406, 51.3086335 ], "geometry": { "type": "Point", "coordinates": [ -0.4284406, 51.3086335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24511831" }, "bbox": [ -0.2222444, 51.2474485, -0.2222444, 51.2474485 ], "geometry": { "type": "Point", "coordinates": [ -0.2222444, 51.2474485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35530777" }, "bbox": [ -0.0651367, 51.2671384, -0.0651367, 51.2671384 ], "geometry": { "type": "Point", "coordinates": [ -0.0651367, 51.2671384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35547515" }, "bbox": [ -0.055051, 51.2704219, -0.055051, 51.2704219 ], "geometry": { "type": "Point", "coordinates": [ -0.055051, 51.2704219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35540922" }, "bbox": [ -0.0647831, 51.2711002, -0.0647831, 51.2711002 ], "geometry": { "type": "Point", "coordinates": [ -0.0647831, 51.2711002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10507109" }, "bbox": [ -0.4154381, 51.2392333, -0.4154381, 51.2392333 ], "geometry": { "type": "Point", "coordinates": [ -0.4154381, 51.2392333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15475383" }, "bbox": [ -0.3469736, 51.2180355, -0.3469736, 51.2180355 ], "geometry": { "type": "Point", "coordinates": [ -0.3469736, 51.2180355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15486525" }, "bbox": [ -0.3438458, 51.2214395, -0.3438458, 51.2214395 ], "geometry": { "type": "Point", "coordinates": [ -0.3438458, 51.2214395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09576267" }, "bbox": [ -0.4286375, 51.3077353, -0.4286375, 51.3077353 ], "geometry": { "type": "Point", "coordinates": [ -0.4286375, 51.3077353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30490186" }, "bbox": [ -0.1392204, 51.2331956, -0.1392204, 51.2331956 ], "geometry": { "type": "Point", "coordinates": [ -0.1392204, 51.2331956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30492997" }, "bbox": [ -0.1350116, 51.2340156, -0.1350116, 51.2340156 ], "geometry": { "type": "Point", "coordinates": [ -0.1350116, 51.2340156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30494081" }, "bbox": [ -0.135399, 51.2328351, -0.135399, 51.2328351 ], "geometry": { "type": "Point", "coordinates": [ -0.135399, 51.2328351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02553689" }, "bbox": [ -0.5334311, 51.2930108, -0.5334311, 51.2930108 ], "geometry": { "type": "Point", "coordinates": [ -0.5334311, 51.2930108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03745405" }, "bbox": [ -0.5111739, 51.4558984, -0.5111739, 51.4558984 ], "geometry": { "type": "Point", "coordinates": [ -0.5111739, 51.4558984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04498834" }, "bbox": [ -0.4991398, 51.2337768, -0.4991398, 51.2337768 ], "geometry": { "type": "Point", "coordinates": [ -0.4991398, 51.2337768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01464162" }, "bbox": [ -0.5500588, 51.2100674, -0.5500588, 51.2100674 ], "geometry": { "type": "Point", "coordinates": [ -0.5500588, 51.2100674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03746923" }, "bbox": [ -0.5091102, 51.4574801, -0.5091102, 51.4574801 ], "geometry": { "type": "Point", "coordinates": [ -0.5091102, 51.4574801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03744505" }, "bbox": [ -0.5122235, 51.456008, -0.5122235, 51.456008 ], "geometry": { "type": "Point", "coordinates": [ -0.5122235, 51.456008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13427358" }, "bbox": [ -0.3740781, 51.1711329, -0.3740781, 51.1711329 ], "geometry": { "type": "Point", "coordinates": [ -0.3740781, 51.1711329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09574932" }, "bbox": [ -0.4306817, 51.3045855, -0.4306817, 51.3045855 ], "geometry": { "type": "Point", "coordinates": [ -0.4306817, 51.3045855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09577229" }, "bbox": [ -0.4280867, 51.3040921, -0.4280867, 51.3040921 ], "geometry": { "type": "Point", "coordinates": [ -0.4280867, 51.3040921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87432465" }, "bbox": [ -0.7534157, 51.1858084, -0.7534157, 51.1858084 ], "geometry": { "type": "Point", "coordinates": [ -0.7534157, 51.1858084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87431373" }, "bbox": [ -0.7547296, 51.1860512, -0.7547296, 51.1860512 ], "geometry": { "type": "Point", "coordinates": [ -0.7547296, 51.1860512 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02727351" }, "bbox": [ -0.5231468, 51.4421575, -0.5231468, 51.4421575 ], "geometry": { "type": "Point", "coordinates": [ -0.5231468, 51.4421575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02726256" }, "bbox": [ -0.5246427, 51.442645, -0.5246427, 51.442645 ], "geometry": { "type": "Point", "coordinates": [ -0.5246427, 51.442645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96637497" }, "bbox": [ -0.6116991, 51.3666338, -0.6116991, 51.3666338 ], "geometry": { "type": "Point", "coordinates": [ -0.6116991, 51.3666338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40434219" }, "bbox": [ 0.0078327, 51.1707283, 0.0078327, 51.1707283 ], "geometry": { "type": "Point", "coordinates": [ 0.0078327, 51.1707283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94502880" }, "bbox": [ -0.6504662, 51.2486559, -0.6504662, 51.2486559 ], "geometry": { "type": "Point", "coordinates": [ -0.6504662, 51.2486559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96432345" }, "bbox": [ -0.6258545, 51.1822648, -0.6258545, 51.1822648 ], "geometry": { "type": "Point", "coordinates": [ -0.6258545, 51.1822648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93446819" }, "bbox": [ -0.6606769, 51.1892208, -0.6606769, 51.1892208 ], "geometry": { "type": "Point", "coordinates": [ -0.6606769, 51.1892208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13576705" }, "bbox": [ -0.3716531, 51.30121, -0.3716531, 51.30121 ], "geometry": { "type": "Point", "coordinates": [ -0.3716531, 51.30121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98450696" }, "bbox": [ -0.5976433, 51.204659, -0.5976433, 51.204659 ], "geometry": { "type": "Point", "coordinates": [ -0.5976433, 51.204659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38462585" }, "bbox": [ -0.02245, 51.2041342, -0.02245, 51.2041342 ], "geometry": { "type": "Point", "coordinates": [ -0.02245, 51.2041342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38462099" }, "bbox": [ -0.0230493, 51.2054924, -0.0230493, 51.2054924 ], "geometry": { "type": "Point", "coordinates": [ -0.0230493, 51.2054924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38461993" }, "bbox": [ -0.0231633, 51.2048756, -0.0231633, 51.2048756 ], "geometry": { "type": "Point", "coordinates": [ -0.0231633, 51.2048756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19407286" }, "bbox": [ -0.2894257, 51.1545455, -0.2894257, 51.1545455 ], "geometry": { "type": "Point", "coordinates": [ -0.2894257, 51.1545455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95483829" }, "bbox": [ -0.634603, 51.2258901, -0.634603, 51.2258901 ], "geometry": { "type": "Point", "coordinates": [ -0.634603, 51.2258901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33517727" }, "bbox": [ -0.0850999, 51.245048, -0.0850999, 51.245048 ], "geometry": { "type": "Point", "coordinates": [ -0.0850999, 51.245048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18455124" }, "bbox": [ -0.3054345, 51.1941932, -0.3054345, 51.1941932 ], "geometry": { "type": "Point", "coordinates": [ -0.3054345, 51.1941932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09480761" }, "bbox": [ -0.4390158, 51.2265443, -0.4390158, 51.2265443 ], "geometry": { "type": "Point", "coordinates": [ -0.4390158, 51.2265443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09481048" }, "bbox": [ -0.4391403, 51.2252074, -0.4391403, 51.2252074 ], "geometry": { "type": "Point", "coordinates": [ -0.4391403, 51.2252074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94452341" }, "bbox": [ -0.6527689, 51.2000684, -0.6527689, 51.2000684 ], "geometry": { "type": "Point", "coordinates": [ -0.6527689, 51.2000684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94452785" }, "bbox": [ -0.6519688, 51.2038076, -0.6519688, 51.2038076 ], "geometry": { "type": "Point", "coordinates": [ -0.6519688, 51.2038076 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39499874" }, "bbox": [ 0.0032822, 51.2297282, 0.0032822, 51.2297282 ], "geometry": { "type": "Point", "coordinates": [ 0.0032822, 51.2297282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05438327" }, "bbox": [ -0.4879769, 51.1791631, -0.4879769, 51.1791631 ], "geometry": { "type": "Point", "coordinates": [ -0.4879769, 51.1791631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41499980" }, "bbox": [ 0.0323578, 51.2298556, 0.0323578, 51.2298556 ], "geometry": { "type": "Point", "coordinates": [ 0.0323578, 51.2298556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23449758" }, "bbox": [ -0.2278866, 51.187009, -0.2278866, 51.187009 ], "geometry": { "type": "Point", "coordinates": [ -0.2278866, 51.187009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08686974" }, "bbox": [ -0.4376604, 51.4078813, -0.4376604, 51.4078813 ], "geometry": { "type": "Point", "coordinates": [ -0.4376604, 51.4078813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35496274" }, "bbox": [ -0.0583877, 51.2307419, -0.0583877, 51.2307419 ], "geometry": { "type": "Point", "coordinates": [ -0.0583877, 51.2307419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16635603" }, "bbox": [ -0.3274571, 51.3544539, -0.3274571, 51.3544539 ], "geometry": { "type": "Point", "coordinates": [ -0.3274571, 51.3544539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16622667" }, "bbox": [ -0.3333888, 51.3514028, -0.3333888, 51.3514028 ], "geometry": { "type": "Point", "coordinates": [ -0.3333888, 51.3514028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16622194" }, "bbox": [ -0.3310827, 51.3538518, -0.3310827, 51.3538518 ], "geometry": { "type": "Point", "coordinates": [ -0.3310827, 51.3538518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17654169" }, "bbox": [ -0.3144642, 51.3781387, -0.3144642, 51.3781387 ], "geometry": { "type": "Point", "coordinates": [ -0.3144642, 51.3781387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37447275" }, "bbox": [ -0.0308042, 51.1854262, -0.0308042, 51.1854262 ], "geometry": { "type": "Point", "coordinates": [ -0.0308042, 51.1854262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20541267" }, "bbox": [ -0.2795641, 51.2786535, -0.2795641, 51.2786535 ], "geometry": { "type": "Point", "coordinates": [ -0.2795641, 51.2786535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89485401" }, "bbox": [ -0.718663, 51.2241715, -0.718663, 51.2241715 ], "geometry": { "type": "Point", "coordinates": [ -0.718663, 51.2241715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91446434" }, "bbox": [ -0.6900086, 51.1909581, -0.6900086, 51.1909581 ], "geometry": { "type": "Point", "coordinates": [ -0.6900086, 51.1909581 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04560564" }, "bbox": [ -0.5089381, 51.2993722, -0.5089381, 51.2993722 ], "geometry": { "type": "Point", "coordinates": [ -0.5089381, 51.2993722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03569756" }, "bbox": [ -0.5096907, 51.2986901, -0.5096907, 51.2986901 ], "geometry": { "type": "Point", "coordinates": [ -0.5096907, 51.2986901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03569546" }, "bbox": [ -0.5104039, 51.2978266, -0.5104039, 51.2978266 ], "geometry": { "type": "Point", "coordinates": [ -0.5104039, 51.2978266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03569467" }, "bbox": [ -0.5100777, 51.2993862, -0.5100777, 51.2993862 ], "geometry": { "type": "Point", "coordinates": [ -0.5100777, 51.2993862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04553175" }, "bbox": [ -0.5056468, 51.2913336, -0.5056468, 51.2913336 ], "geometry": { "type": "Point", "coordinates": [ -0.5056468, 51.2913336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41482940" }, "bbox": [ 0.0216879, 51.2173708, 0.0216879, 51.2173708 ], "geometry": { "type": "Point", "coordinates": [ 0.0216879, 51.2173708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41481194" }, "bbox": [ 0.0193527, 51.2222671, 0.0193527, 51.2222671 ], "geometry": { "type": "Point", "coordinates": [ 0.0193527, 51.2222671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20425918" }, "bbox": [ -0.2769424, 51.1661885, -0.2769424, 51.1661885 ], "geometry": { "type": "Point", "coordinates": [ -0.2769424, 51.1661885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95377664" }, "bbox": [ -0.6329198, 51.1299753, -0.6329198, 51.1299753 ], "geometry": { "type": "Point", "coordinates": [ -0.6329198, 51.1299753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09623316" }, "bbox": [ -0.4305293, 51.3473973, -0.4305293, 51.3473973 ], "geometry": { "type": "Point", "coordinates": [ -0.4305293, 51.3473973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569852" }, "bbox": [ -0.1657472, 51.2935031, -0.1657472, 51.2935031 ], "geometry": { "type": "Point", "coordinates": [ -0.1657472, 51.2935031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27568736" }, "bbox": [ -0.1676311, 51.2921257, -0.1676311, 51.2921257 ], "geometry": { "type": "Point", "coordinates": [ -0.1676311, 51.2921257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19530721" }, "bbox": [ -0.2941561, 51.2657786, -0.2941561, 51.2657786 ], "geometry": { "type": "Point", "coordinates": [ -0.2941561, 51.2657786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32531417" }, "bbox": [ -0.1076543, 51.2624701, -0.1076543, 51.2624701 ], "geometry": { "type": "Point", "coordinates": [ -0.1076543, 51.2624701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32532912" }, "bbox": [ -0.1023657, 51.2616432, -0.1023657, 51.2616432 ], "geometry": { "type": "Point", "coordinates": [ -0.1023657, 51.2616432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28488284" }, "bbox": [ -0.1570803, 51.2241077, -0.1570803, 51.2241077 ], "geometry": { "type": "Point", "coordinates": [ -0.1570803, 51.2241077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29480286" }, "bbox": [ -0.1539907, 51.2242151, -0.1539907, 51.2242151 ], "geometry": { "type": "Point", "coordinates": [ -0.1539907, 51.2242151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98703617" }, "bbox": [ -0.5866993, 51.4220808, -0.5866993, 51.4220808 ], "geometry": { "type": "Point", "coordinates": [ -0.5866993, 51.4220808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98705435" }, "bbox": [ -0.5841777, 51.4236755, -0.5841777, 51.4236755 ], "geometry": { "type": "Point", "coordinates": [ -0.5841777, 51.4236755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87396729" }, "bbox": [ -0.7481872, 51.146274, -0.7481872, 51.146274 ], "geometry": { "type": "Point", "coordinates": [ -0.7481872, 51.146274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26608053" }, "bbox": [ -0.181158, 51.3297144, -0.181158, 51.3297144 ], "geometry": { "type": "Point", "coordinates": [ -0.181158, 51.3297144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29474678" }, "bbox": [ -0.1465007, 51.2117573, -0.1465007, 51.2117573 ], "geometry": { "type": "Point", "coordinates": [ -0.1465007, 51.2117573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96638049" }, "bbox": [ -0.6110122, 51.3622224, -0.6110122, 51.3622224 ], "geometry": { "type": "Point", "coordinates": [ -0.6110122, 51.3622224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96613248" }, "bbox": [ -0.6183002, 51.3443257, -0.6183002, 51.3443257 ], "geometry": { "type": "Point", "coordinates": [ -0.6183002, 51.3443257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92433096" }, "bbox": [ -0.6806149, 51.1875701, -0.6806149, 51.1875701 ], "geometry": { "type": "Point", "coordinates": [ -0.6806149, 51.1875701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08567691" }, "bbox": [ -0.4413119, 51.3009174, -0.4413119, 51.3009174 ], "geometry": { "type": "Point", "coordinates": [ -0.4413119, 51.3009174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34568085" }, "bbox": [ -0.0680216, 51.2943197, -0.0680216, 51.2943197 ], "geometry": { "type": "Point", "coordinates": [ -0.0680216, 51.2943197 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40421125" }, "bbox": [ 0.0023551, 51.1624089, 0.0023551, 51.1624089 ], "geometry": { "type": "Point", "coordinates": [ 0.0023551, 51.1624089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40420131" }, "bbox": [ 0.0010048, 51.1627533, 0.0010048, 51.1627533 ], "geometry": { "type": "Point", "coordinates": [ 0.0010048, 51.1627533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40420115" }, "bbox": [ 0.0005277, 51.1614215, 0.0005277, 51.1614215 ], "geometry": { "type": "Point", "coordinates": [ 0.0005277, 51.1614215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12505367" }, "bbox": [ -0.3891748, 51.2441232, -0.3891748, 51.2441232 ], "geometry": { "type": "Point", "coordinates": [ -0.3891748, 51.2441232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10414049" }, "bbox": [ -0.4225366, 51.1620387, -0.4225366, 51.1620387 ], "geometry": { "type": "Point", "coordinates": [ -0.4225366, 51.1620387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10413852" }, "bbox": [ -0.4228153, 51.162267, -0.4228153, 51.162267 ], "geometry": { "type": "Point", "coordinates": [ -0.4228153, 51.162267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95377074" }, "bbox": [ -0.6340326, 51.1309413, -0.6340326, 51.1309413 ], "geometry": { "type": "Point", "coordinates": [ -0.6340326, 51.1309413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95376978" }, "bbox": [ -0.6336213, 51.1312947, -0.6336213, 51.1312947 ], "geometry": { "type": "Point", "coordinates": [ -0.6336213, 51.1312947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95376468" }, "bbox": [ -0.6344187, 51.1305103, -0.6344187, 51.1305103 ], "geometry": { "type": "Point", "coordinates": [ -0.6344187, 51.1305103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15393699" }, "bbox": [ -0.3518898, 51.1475261, -0.3518898, 51.1475261 ], "geometry": { "type": "Point", "coordinates": [ -0.3518898, 51.1475261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15391290" }, "bbox": [ -0.3555014, 51.1467833, -0.3555014, 51.1467833 ], "geometry": { "type": "Point", "coordinates": [ -0.3555014, 51.1467833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17427904" }, "bbox": [ -0.3165335, 51.1653477, -0.3165335, 51.1653477 ], "geometry": { "type": "Point", "coordinates": [ -0.3165335, 51.1653477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18413228" }, "bbox": [ -0.3092885, 51.1585463, -0.3092885, 51.1585463 ], "geometry": { "type": "Point", "coordinates": [ -0.3092885, 51.1585463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93471357" }, "bbox": [ -0.6677535, 51.2195666, -0.6677535, 51.2195666 ], "geometry": { "type": "Point", "coordinates": [ -0.6677535, 51.2195666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91358616" }, "bbox": [ -0.6890991, 51.1083739, -0.6890991, 51.1083739 ], "geometry": { "type": "Point", "coordinates": [ -0.6890991, 51.1083739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08558015" }, "bbox": [ -0.4416551, 51.285439, -0.4416551, 51.285439 ], "geometry": { "type": "Point", "coordinates": [ -0.4416551, 51.285439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13596188" }, "bbox": [ -0.370941, 51.3266072, -0.370941, 51.3266072 ], "geometry": { "type": "Point", "coordinates": [ -0.370941, 51.3266072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21416750" }, "bbox": [ -0.2615127, 51.159863, -0.2615127, 51.159863 ], "geometry": { "type": "Point", "coordinates": [ -0.2615127, 51.159863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28590136" }, "bbox": [ -0.1646326, 51.319036, -0.1646326, 51.319036 ], "geometry": { "type": "Point", "coordinates": [ -0.1646326, 51.319036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29453549" }, "bbox": [ -0.1490884, 51.1942154, -0.1490884, 51.1942154 ], "geometry": { "type": "Point", "coordinates": [ -0.1490884, 51.1942154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21470643" }, "bbox": [ -0.2682094, 51.2134162, -0.2682094, 51.2134162 ], "geometry": { "type": "Point", "coordinates": [ -0.2682094, 51.2134162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98637309" }, "bbox": [ -0.5836647, 51.358365, -0.5836647, 51.358365 ], "geometry": { "type": "Point", "coordinates": [ -0.5836647, 51.358365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17410785" }, "bbox": [ -0.3269031, 51.1639409, -0.3269031, 51.1639409 ], "geometry": { "type": "Point", "coordinates": [ -0.3269031, 51.1639409 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96468262" }, "bbox": [ -0.6153609, 51.2104389, -0.6153609, 51.2104389 ], "geometry": { "type": "Point", "coordinates": [ -0.6153609, 51.2104389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92465797" }, "bbox": [ -0.6760676, 51.2144596, -0.6760676, 51.2144596 ], "geometry": { "type": "Point", "coordinates": [ -0.6760676, 51.2144596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92465492" }, "bbox": [ -0.6764339, 51.2140147, -0.6764339, 51.2140147 ], "geometry": { "type": "Point", "coordinates": [ -0.6764339, 51.2140147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36555814" }, "bbox": [ -0.041491, 51.2772062, -0.041491, 51.2772062 ], "geometry": { "type": "Point", "coordinates": [ -0.041491, 51.2772062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93394694" }, "bbox": [ -0.6649566, 51.1512425, -0.6649566, 51.1512425 ], "geometry": { "type": "Point", "coordinates": [ -0.6649566, 51.1512425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93397397" }, "bbox": [ -0.6613015, 51.1513846, -0.6613015, 51.1513846 ], "geometry": { "type": "Point", "coordinates": [ -0.6613015, 51.1513846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82446919" }, "bbox": [ -0.8179576, 51.190979, -0.8179576, 51.190979 ], "geometry": { "type": "Point", "coordinates": [ -0.8179576, 51.190979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88476186" }, "bbox": [ -0.7324139, 51.223037, -0.7324139, 51.223037 ], "geometry": { "type": "Point", "coordinates": [ -0.7324139, 51.223037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88440543" }, "bbox": [ -0.7412305, 51.1924006, -0.7412305, 51.1924006 ], "geometry": { "type": "Point", "coordinates": [ -0.7412305, 51.1924006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93352064" }, "bbox": [ -0.6719769, 51.1126164, -0.6719769, 51.1126164 ], "geometry": { "type": "Point", "coordinates": [ -0.6719769, 51.1126164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12402382" }, "bbox": [ -0.3961837, 51.1556384, -0.3961837, 51.1556384 ], "geometry": { "type": "Point", "coordinates": [ -0.3961837, 51.1556384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29461433" }, "bbox": [ -0.1528185, 51.2017454, -0.1528185, 51.2017454 ], "geometry": { "type": "Point", "coordinates": [ -0.1528185, 51.2017454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01438517" }, "bbox": [ -0.5449749, 51.1788382, -0.5449749, 51.1788382 ], "geometry": { "type": "Point", "coordinates": [ -0.5449749, 51.1788382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26473062" }, "bbox": [ -0.1933457, 51.2135461, -0.1933457, 51.2135461 ], "geometry": { "type": "Point", "coordinates": [ -0.1933457, 51.2135461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04563303" }, "bbox": [ -0.5061172, 51.2940443, -0.5061172, 51.2940443 ], "geometry": { "type": "Point", "coordinates": [ -0.5061172, 51.2940443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32426070" }, "bbox": [ -0.1049042, 51.1682011, -0.1049042, 51.1682011 ], "geometry": { "type": "Point", "coordinates": [ -0.1049042, 51.1682011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26602657" }, "bbox": [ -0.1894607, 51.3304715, -0.1894607, 51.3304715 ], "geometry": { "type": "Point", "coordinates": [ -0.1894607, 51.3304715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98325960" }, "bbox": [ -0.5937606, 51.0846184, -0.5937606, 51.0846184 ], "geometry": { "type": "Point", "coordinates": [ -0.5937606, 51.0846184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12428149" }, "bbox": [ -0.3876634, 51.1706213, -0.3876634, 51.1706213 ], "geometry": { "type": "Point", "coordinates": [ -0.3876634, 51.1706213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18594196" }, "bbox": [ -0.3046402, 51.3288685, -0.3046402, 51.3288685 ], "geometry": { "type": "Point", "coordinates": [ -0.3046402, 51.3288685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12595076" }, "bbox": [ -0.3842915, 51.3256916, -0.3842915, 51.3256916 ], "geometry": { "type": "Point", "coordinates": [ -0.3842915, 51.3256916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34522356" }, "bbox": [ -0.0777385, 51.2561564, -0.0777385, 51.2561564 ], "geometry": { "type": "Point", "coordinates": [ -0.0777385, 51.2561564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32412265" }, "bbox": [ -0.109502, 51.1579923, -0.109502, 51.1579923 ], "geometry": { "type": "Point", "coordinates": [ -0.109502, 51.1579923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37474741" }, "bbox": [ -0.03349, 51.2095151, -0.03349, 51.2095151 ], "geometry": { "type": "Point", "coordinates": [ -0.03349, 51.2095151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04546047" }, "bbox": [ -0.5016729, 51.2796657, -0.5016729, 51.2796657 ], "geometry": { "type": "Point", "coordinates": [ -0.5016729, 51.2796657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04400942" }, "bbox": [ -0.512775, 51.1533125, -0.512775, 51.1533125 ], "geometry": { "type": "Point", "coordinates": [ -0.512775, 51.1533125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21554580" }, "bbox": [ -0.2598195, 51.2884228, -0.2598195, 51.2884228 ], "geometry": { "type": "Point", "coordinates": [ -0.2598195, 51.2884228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20417479" }, "bbox": [ -0.2747057, 51.1626357, -0.2747057, 51.1626357 ], "geometry": { "type": "Point", "coordinates": [ -0.2747057, 51.1626357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21417366" }, "bbox": [ -0.2606524, 51.1612905, -0.2606524, 51.1612905 ], "geometry": { "type": "Point", "coordinates": [ -0.2606524, 51.1612905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04370656" }, "bbox": [ -0.5144436, 51.1277965, -0.5144436, 51.1277965 ], "geometry": { "type": "Point", "coordinates": [ -0.5144436, 51.1277965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04371539" }, "bbox": [ -0.5129634, 51.126338, -0.5129634, 51.126338 ], "geometry": { "type": "Point", "coordinates": [ -0.5129634, 51.126338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04373057" }, "bbox": [ -0.5115513, 51.1282431, -0.5115513, 51.1282431 ], "geometry": { "type": "Point", "coordinates": [ -0.5115513, 51.1282431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04376451" }, "bbox": [ -0.5063064, 51.127491, -0.5063064, 51.127491 ], "geometry": { "type": "Point", "coordinates": [ -0.5063064, 51.127491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16623463" }, "bbox": [ -0.3305879, 51.3505772, -0.3305879, 51.3505772 ], "geometry": { "type": "Point", "coordinates": [ -0.3305879, 51.3505772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28519020" }, "bbox": [ -0.1541763, 51.2454846, -0.1541763, 51.2454846 ], "geometry": { "type": "Point", "coordinates": [ -0.1541763, 51.2454846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29510517" }, "bbox": [ -0.1550409, 51.2441636, -0.1550409, 51.2441636 ], "geometry": { "type": "Point", "coordinates": [ -0.1550409, 51.2441636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29513252" }, "bbox": [ -0.1487634, 51.2482131, -0.1487634, 51.2482131 ], "geometry": { "type": "Point", "coordinates": [ -0.1487634, 51.2482131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10628094" }, "bbox": [ -0.4102887, 51.3547579, -0.4102887, 51.3547579 ], "geometry": { "type": "Point", "coordinates": [ -0.4102887, 51.3547579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11632627" }, "bbox": [ -0.4034447, 51.3576613, -0.4034447, 51.3576613 ], "geometry": { "type": "Point", "coordinates": [ -0.4034447, 51.3576613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91443024" }, "bbox": [ -0.6945652, 51.1901217, -0.6945652, 51.1901217 ], "geometry": { "type": "Point", "coordinates": [ -0.6945652, 51.1901217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39555637" }, "bbox": [ -0.0003559, 51.2804436, -0.0003559, 51.2804436 ], "geometry": { "type": "Point", "coordinates": [ -0.0003559, 51.2804436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12590106" }, "bbox": [ -0.3947266, 51.3196225, -0.3947266, 51.3196225 ], "geometry": { "type": "Point", "coordinates": [ -0.3947266, 51.3196225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12580367" }, "bbox": [ -0.3937959, 51.3161272, -0.3937959, 51.3161272 ], "geometry": { "type": "Point", "coordinates": [ -0.3937959, 51.3161272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94488895" }, "bbox": [ -0.6425177, 51.2320713, -0.6425177, 51.2320713 ], "geometry": { "type": "Point", "coordinates": [ -0.6425177, 51.2320713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94499005" }, "bbox": [ -0.6421847, 51.2326835, -0.6421847, 51.2326835 ], "geometry": { "type": "Point", "coordinates": [ -0.6421847, 51.2326835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27600720" }, "bbox": [ -0.1777378, 51.3266624, -0.1777378, 51.3266624 ], "geometry": { "type": "Point", "coordinates": [ -0.1777378, 51.3266624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27601039" }, "bbox": [ -0.1770935, 51.3283062, -0.1770935, 51.3283062 ], "geometry": { "type": "Point", "coordinates": [ -0.1770935, 51.3283062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11429267" }, "bbox": [ -0.4004938, 51.1723248, -0.4004938, 51.1723248 ], "geometry": { "type": "Point", "coordinates": [ -0.4004938, 51.1723248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00525497" }, "bbox": [ -0.5601349, 51.2669743, -0.5601349, 51.2669743 ], "geometry": { "type": "Point", "coordinates": [ -0.5601349, 51.2669743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10573341" }, "bbox": [ -0.4185385, 51.3052502, -0.4185385, 51.3052502 ], "geometry": { "type": "Point", "coordinates": [ -0.4185385, 51.3052502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97639337" }, "bbox": [ -0.5947347, 51.3609634, -0.5947347, 51.3609634 ], "geometry": { "type": "Point", "coordinates": [ -0.5947347, 51.3609634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97559807" }, "bbox": [ -0.5963629, 51.2864344, -0.5963629, 51.2864344 ], "geometry": { "type": "Point", "coordinates": [ -0.5963629, 51.2864344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98541994" }, "bbox": [ -0.5931982, 51.2852755, -0.5931982, 51.2852755 ], "geometry": { "type": "Point", "coordinates": [ -0.5931982, 51.2852755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98552618" }, "bbox": [ -0.5955399, 51.2878224, -0.5955399, 51.2878224 ], "geometry": { "type": "Point", "coordinates": [ -0.5955399, 51.2878224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95575549" }, "bbox": [ -0.6306392, 51.3083449, -0.6306392, 51.3083449 ], "geometry": { "type": "Point", "coordinates": [ -0.6306392, 51.3083449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06656569" }, "bbox": [ -0.4690715, 51.3803147, -0.4690715, 51.3803147 ], "geometry": { "type": "Point", "coordinates": [ -0.4690715, 51.3803147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15479466" }, "bbox": [ -0.3411457, 51.2164667, -0.3411457, 51.2164667 ], "geometry": { "type": "Point", "coordinates": [ -0.3411457, 51.2164667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00471679" }, "bbox": [ -0.5671599, 51.2204957, -0.5671599, 51.2204957 ], "geometry": { "type": "Point", "coordinates": [ -0.5671599, 51.2204957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14482111" }, "bbox": [ -0.3657935, 51.2208053, -0.3657935, 51.2208053 ], "geometry": { "type": "Point", "coordinates": [ -0.3657935, 51.2208053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14481409" }, "bbox": [ -0.3668517, 51.2205447, -0.3668517, 51.2205447 ], "geometry": { "type": "Point", "coordinates": [ -0.3668517, 51.2205447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16445559" }, "bbox": [ -0.3336246, 51.1887474, -0.3336246, 51.1887474 ], "geometry": { "type": "Point", "coordinates": [ -0.3336246, 51.1887474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29509601" }, "bbox": [ -0.1398978, 51.2344886, -0.1398978, 51.2344886 ], "geometry": { "type": "Point", "coordinates": [ -0.1398978, 51.2344886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42551499" }, "bbox": [ 0.0366079, 51.2853647, 0.0366079, 51.2853647 ], "geometry": { "type": "Point", "coordinates": [ 0.0366079, 51.2853647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42552190" }, "bbox": [ 0.0413261, 51.2850777, 0.0413261, 51.2850777 ], "geometry": { "type": "Point", "coordinates": [ 0.0413261, 51.2850777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42561204" }, "bbox": [ 0.0361853, 51.2858388, 0.0361853, 51.2858388 ], "geometry": { "type": "Point", "coordinates": [ 0.0361853, 51.2858388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04557445" }, "bbox": [ -0.4990342, 51.2886769, -0.4990342, 51.2886769 ], "geometry": { "type": "Point", "coordinates": [ -0.4990342, 51.2886769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02442025" }, "bbox": [ -0.5387976, 51.1883761, -0.5387976, 51.1883761 ], "geometry": { "type": "Point", "coordinates": [ -0.5387976, 51.1883761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08431128" }, "bbox": [ -0.4501736, 51.1761644, -0.4501736, 51.1761644 ], "geometry": { "type": "Point", "coordinates": [ -0.4501736, 51.1761644 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34521520" }, "bbox": [ -0.0791667, 51.252875, -0.0791667, 51.252875 ], "geometry": { "type": "Point", "coordinates": [ -0.0791667, 51.252875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05687890" }, "bbox": [ -0.4803698, 51.4086879, -0.4803698, 51.4086879 ], "geometry": { "type": "Point", "coordinates": [ -0.4803698, 51.4086879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11459831" }, "bbox": [ -0.3986734, 51.1961852, -0.3986734, 51.1961852 ], "geometry": { "type": "Point", "coordinates": [ -0.3986734, 51.1961852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20570350" }, "bbox": [ -0.2794666, 51.3041543, -0.2794666, 51.3041543 ], "geometry": { "type": "Point", "coordinates": [ -0.2794666, 51.3041543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12515219" }, "bbox": [ -0.3900917, 51.2487841, -0.3900917, 51.2487841 ], "geometry": { "type": "Point", "coordinates": [ -0.3900917, 51.2487841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32501668" }, "bbox": [ -0.1080464, 51.2400997, -0.1080464, 51.2400997 ], "geometry": { "type": "Point", "coordinates": [ -0.1080464, 51.2400997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99501365" }, "bbox": [ -0.5812988, 51.2463306, -0.5812988, 51.2463306 ], "geometry": { "type": "Point", "coordinates": [ -0.5812988, 51.2463306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31437181" }, "bbox": [ -0.1175495, 51.1779786, -0.1175495, 51.1779786 ], "geometry": { "type": "Point", "coordinates": [ -0.1175495, 51.1779786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90421359" }, "bbox": [ -0.7120778, 51.1754235, -0.7120778, 51.1754235 ], "geometry": { "type": "Point", "coordinates": [ -0.7120778, 51.1754235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15590698" }, "bbox": [ -0.3501753, 51.327291, -0.3501753, 51.327291 ], "geometry": { "type": "Point", "coordinates": [ -0.3501753, 51.327291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95632646" }, "bbox": [ -0.6331962, 51.362385, -0.6331962, 51.362385 ], "geometry": { "type": "Point", "coordinates": [ -0.6331962, 51.362385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11688737" }, "bbox": [ -0.3929561, 51.4033936, -0.3929561, 51.4033936 ], "geometry": { "type": "Point", "coordinates": [ -0.3929561, 51.4033936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05713298" }, "bbox": [ -0.485974, 51.4372345, -0.485974, 51.4372345 ], "geometry": { "type": "Point", "coordinates": [ -0.485974, 51.4372345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37619335" }, "bbox": [ -0.0207501, 51.3346314, -0.0207501, 51.3346314 ], "geometry": { "type": "Point", "coordinates": [ -0.0207501, 51.3346314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01432859" }, "bbox": [ -0.5522427, 51.1826133, -0.5522427, 51.1826133 ], "geometry": { "type": "Point", "coordinates": [ -0.5522427, 51.1826133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20501711" }, "bbox": [ -0.279917, 51.2374858, -0.279917, 51.2374858 ], "geometry": { "type": "Point", "coordinates": [ -0.279917, 51.2374858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02537469" }, "bbox": [ -0.5301926, 51.2741371, -0.5301926, 51.2741371 ], "geometry": { "type": "Point", "coordinates": [ -0.5301926, 51.2741371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26433020" }, "bbox": [ -0.194567, 51.17429, -0.194567, 51.17429 ], "geometry": { "type": "Point", "coordinates": [ -0.194567, 51.17429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29518748" }, "bbox": [ -0.1407236, 51.2476627, -0.1407236, 51.2476627 ], "geometry": { "type": "Point", "coordinates": [ -0.1407236, 51.2476627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08529779" }, "bbox": [ -0.4394644, 51.2638446, -0.4394644, 51.2638446 ], "geometry": { "type": "Point", "coordinates": [ -0.4394644, 51.2638446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87482552" }, "bbox": [ -0.7525279, 51.2293434, -0.7525279, 51.2293434 ], "geometry": { "type": "Point", "coordinates": [ -0.7525279, 51.2293434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87361654" }, "bbox": [ -0.7551357, 51.1216865, -0.7551357, 51.1216865 ], "geometry": { "type": "Point", "coordinates": [ -0.7551357, 51.1216865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495924" }, "bbox": [ -0.145374, 51.2276736, -0.145374, 51.2276736 ], "geometry": { "type": "Point", "coordinates": [ -0.145374, 51.2276736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02464716" }, "bbox": [ -0.5340252, 51.2059085, -0.5340252, 51.2059085 ], "geometry": { "type": "Point", "coordinates": [ -0.5340252, 51.2059085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00669701" }, "bbox": [ -0.5498175, 51.3842189, -0.5498175, 51.3842189 ], "geometry": { "type": "Point", "coordinates": [ -0.5498175, 51.3842189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22629895" }, "bbox": [ -0.231105, 51.3524154, -0.231105, 51.3524154 ], "geometry": { "type": "Point", "coordinates": [ -0.231105, 51.3524154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00461009" }, "bbox": [ -0.567958, 51.2052472, -0.567958, 51.2052472 ], "geometry": { "type": "Point", "coordinates": [ -0.567958, 51.2052472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06451432" }, "bbox": [ -0.482181, 51.1972731, -0.482181, 51.1972731 ], "geometry": { "type": "Point", "coordinates": [ -0.482181, 51.1972731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98390677" }, "bbox": [ -0.5995026, 51.1490156, -0.5995026, 51.1490156 ], "geometry": { "type": "Point", "coordinates": [ -0.5995026, 51.1490156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11403817" }, "bbox": [ -0.4088692, 51.1499884, -0.4088692, 51.1499884 ], "geometry": { "type": "Point", "coordinates": [ -0.4088692, 51.1499884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14436983" }, "bbox": [ -0.3604359, 51.1822699, -0.3604359, 51.1822699 ], "geometry": { "type": "Point", "coordinates": [ -0.3604359, 51.1822699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07414117" }, "bbox": [ -0.4659694, 51.1599941, -0.4659694, 51.1599941 ], "geometry": { "type": "Point", "coordinates": [ -0.4659694, 51.1599941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09475469" }, "bbox": [ -0.432974, 51.2178858, -0.432974, 51.2178858 ], "geometry": { "type": "Point", "coordinates": [ -0.432974, 51.2178858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33496083" }, "bbox": [ -0.087893, 51.2319629, -0.087893, 51.2319629 ], "geometry": { "type": "Point", "coordinates": [ -0.087893, 51.2319629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34559723" }, "bbox": [ -0.0656813, 51.2803489, -0.0656813, 51.2803489 ], "geometry": { "type": "Point", "coordinates": [ -0.0656813, 51.2803489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90608609" }, "bbox": [ -0.6952813, 51.3343656, -0.6952813, 51.3343656 ], "geometry": { "type": "Point", "coordinates": [ -0.6952813, 51.3343656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06668875" }, "bbox": [ -0.4653294, 51.3897863, -0.4653294, 51.3897863 ], "geometry": { "type": "Point", "coordinates": [ -0.4653294, 51.3897863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19546090" }, "bbox": [ -0.2870373, 51.2807532, -0.2870373, 51.2807532 ], "geometry": { "type": "Point", "coordinates": [ -0.2870373, 51.2807532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99639030" }, "bbox": [ -0.5631057, 51.3590314, -0.5631057, 51.3590314 ], "geometry": { "type": "Point", "coordinates": [ -0.5631057, 51.3590314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00516220" }, "bbox": [ -0.5609196, 51.2495008, -0.5609196, 51.2495008 ], "geometry": { "type": "Point", "coordinates": [ -0.5609196, 51.2495008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39488195" }, "bbox": [ 0.0011384, 51.2227398, 0.0011384, 51.2227398 ], "geometry": { "type": "Point", "coordinates": [ 0.0011384, 51.2227398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489188" }, "bbox": [ 0.0017896, 51.2221543, 0.0017896, 51.2221543 ], "geometry": { "type": "Point", "coordinates": [ 0.0017896, 51.2221543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489498" }, "bbox": [ 0.0025583, 51.2229145, 0.0025583, 51.2229145 ], "geometry": { "type": "Point", "coordinates": [ 0.0025583, 51.2229145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87350284" }, "bbox": [ -0.7585305, 51.1152029, -0.7585305, 51.1152029 ], "geometry": { "type": "Point", "coordinates": [ -0.7585305, 51.1152029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25459507" }, "bbox": [ -0.1987967, 51.1908002, -0.1987967, 51.1908002 ], "geometry": { "type": "Point", "coordinates": [ -0.1987967, 51.1908002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26451103" }, "bbox": [ -0.1984939, 51.1903546, -0.1984939, 51.1903546 ], "geometry": { "type": "Point", "coordinates": [ -0.1984939, 51.1903546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26450623" }, "bbox": [ -0.1972174, 51.1924345, -0.1972174, 51.1924345 ], "geometry": { "type": "Point", "coordinates": [ -0.1972174, 51.1924345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25447560" }, "bbox": [ -0.2015841, 51.1863061, -0.2015841, 51.1863061 ], "geometry": { "type": "Point", "coordinates": [ -0.2015841, 51.1863061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25445742" }, "bbox": [ -0.2045378, 51.1853952, -0.2045378, 51.1853952 ], "geometry": { "type": "Point", "coordinates": [ -0.2045378, 51.1853952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25446869" }, "bbox": [ -0.2030242, 51.1878571, -0.2030242, 51.1878571 ], "geometry": { "type": "Point", "coordinates": [ -0.2030242, 51.1878571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25446131" }, "bbox": [ -0.2039622, 51.1843345, -0.2039622, 51.1843345 ], "geometry": { "type": "Point", "coordinates": [ -0.2039622, 51.1843345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25449025" }, "bbox": [ -0.1999199, 51.1837562, -0.1999199, 51.1837562 ], "geometry": { "type": "Point", "coordinates": [ -0.1999199, 51.1837562 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25446663" }, "bbox": [ -0.2031954, 51.1872142, -0.2031954, 51.1872142 ], "geometry": { "type": "Point", "coordinates": [ -0.2031954, 51.1872142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25448738" }, "bbox": [ -0.2002374, 51.1849525, -0.2002374, 51.1849525 ], "geometry": { "type": "Point", "coordinates": [ -0.2002374, 51.1849525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25447570" }, "bbox": [ -0.2019097, 51.1877504, -0.2019097, 51.1877504 ], "geometry": { "type": "Point", "coordinates": [ -0.2019097, 51.1877504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25448233" }, "bbox": [ -0.2018342, 51.1840458, -0.2018342, 51.1840458 ], "geometry": { "type": "Point", "coordinates": [ -0.2018342, 51.1840458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25449287" }, "bbox": [ -0.1995005, 51.1892441, -0.1995005, 51.1892441 ], "geometry": { "type": "Point", "coordinates": [ -0.1995005, 51.1892441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25448547" }, "bbox": [ -0.2005534, 51.1857191, -0.2005534, 51.1857191 ], "geometry": { "type": "Point", "coordinates": [ -0.2005534, 51.1857191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43442621" }, "bbox": [ 0.048462, 51.178869, 0.048462, 51.178869 ], "geometry": { "type": "Point", "coordinates": [ 0.048462, 51.178869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94357007" }, "bbox": [ -0.6490122, 51.1070962, -0.6490122, 51.1070962 ], "geometry": { "type": "Point", "coordinates": [ -0.6490122, 51.1070962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03376710" }, "bbox": [ -0.5200769, 51.1237999, -0.5200769, 51.1237999 ], "geometry": { "type": "Point", "coordinates": [ -0.5200769, 51.1237999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07510842" }, "bbox": [ -0.4667821, 51.2519575, -0.4667821, 51.2519575 ], "geometry": { "type": "Point", "coordinates": [ -0.4667821, 51.2519575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07512063" }, "bbox": [ -0.4634797, 51.2520158, -0.4634797, 51.2520158 ], "geometry": { "type": "Point", "coordinates": [ -0.4634797, 51.2520158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07502353" }, "bbox": [ -0.4649922, 51.244181, -0.4649922, 51.244181 ], "geometry": { "type": "Point", "coordinates": [ -0.4649922, 51.244181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07500341" }, "bbox": [ -0.4676154, 51.2426451, -0.4676154, 51.2426451 ], "geometry": { "type": "Point", "coordinates": [ -0.4676154, 51.2426451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07503495" }, "bbox": [ -0.4631585, 51.2477325, -0.4631585, 51.2477325 ], "geometry": { "type": "Point", "coordinates": [ -0.4631585, 51.2477325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06508986" }, "bbox": [ -0.4694573, 51.2467451, -0.4694573, 51.2467451 ], "geometry": { "type": "Point", "coordinates": [ -0.4694573, 51.2467451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89425978" }, "bbox": [ -0.7199989, 51.1772062, -0.7199989, 51.1772062 ], "geometry": { "type": "Point", "coordinates": [ -0.7199989, 51.1772062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89426978" }, "bbox": [ -0.7180121, 51.1776966, -0.7180121, 51.1776966 ], "geometry": { "type": "Point", "coordinates": [ -0.7180121, 51.1776966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89423287" }, "bbox": [ -0.7234188, 51.1783374, -0.7234188, 51.1783374 ], "geometry": { "type": "Point", "coordinates": [ -0.7234188, 51.1783374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89420166" }, "bbox": [ -0.7279484, 51.1763143, -0.7279484, 51.1763143 ], "geometry": { "type": "Point", "coordinates": [ -0.7279484, 51.1763143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89420587" }, "bbox": [ -0.7272529, 51.1782254, -0.7272529, 51.1782254 ], "geometry": { "type": "Point", "coordinates": [ -0.7272529, 51.1782254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89424624" }, "bbox": [ -0.7213447, 51.1725652, -0.7213447, 51.1725652 ], "geometry": { "type": "Point", "coordinates": [ -0.7213447, 51.1725652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89422172" }, "bbox": [ -0.7250061, 51.1765252, -0.7250061, 51.1765252 ], "geometry": { "type": "Point", "coordinates": [ -0.7250061, 51.1765252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89425149" }, "bbox": [ -0.7211146, 51.1745063, -0.7211146, 51.1745063 ], "geometry": { "type": "Point", "coordinates": [ -0.7211146, 51.1745063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89423347" }, "bbox": [ -0.7233842, 51.1749389, -0.7233842, 51.1749389 ], "geometry": { "type": "Point", "coordinates": [ -0.7233842, 51.1749389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89421747" }, "bbox": [ -0.7257557, 51.1746124, -0.7257557, 51.1746124 ], "geometry": { "type": "Point", "coordinates": [ -0.7257557, 51.1746124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89425090" }, "bbox": [ -0.7209566, 51.1783935, -0.7209566, 51.1783935 ], "geometry": { "type": "Point", "coordinates": [ -0.7209566, 51.1783935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433744" }, "bbox": [ -0.7225544, 51.183167, -0.7225544, 51.183167 ], "geometry": { "type": "Point", "coordinates": [ -0.7225544, 51.183167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89438618" }, "bbox": [ -0.7159347, 51.1809198, -0.7159347, 51.1809198 ], "geometry": { "type": "Point", "coordinates": [ -0.7159347, 51.1809198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89436910" }, "bbox": [ -0.7182161, 51.1801173, -0.7182161, 51.1801173 ], "geometry": { "type": "Point", "coordinates": [ -0.7182161, 51.1801173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89435219" }, "bbox": [ -0.7205982, 51.1809927, -0.7205982, 51.1809927 ], "geometry": { "type": "Point", "coordinates": [ -0.7205982, 51.1809927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89437036" }, "bbox": [ -0.717694, 51.1824223, -0.717694, 51.1824223 ], "geometry": { "type": "Point", "coordinates": [ -0.717694, 51.1824223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433916" }, "bbox": [ -0.7225723, 51.1801803, -0.7225723, 51.1801803 ], "geometry": { "type": "Point", "coordinates": [ -0.7225723, 51.1801803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89432415" }, "bbox": [ -0.7250318, 51.1805766, -0.7250318, 51.1805766 ], "geometry": { "type": "Point", "coordinates": [ -0.7250318, 51.1805766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89431736" }, "bbox": [ -0.72547, 51.1824992, -0.72547, 51.1824992 ], "geometry": { "type": "Point", "coordinates": [ -0.72547, 51.1824992 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89433854" }, "bbox": [ -0.7225372, 51.1841407, -0.7225372, 51.1841407 ], "geometry": { "type": "Point", "coordinates": [ -0.7225372, 51.1841407 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91445954" }, "bbox": [ -0.6902884, 51.1930425, -0.6902884, 51.1930425 ], "geometry": { "type": "Point", "coordinates": [ -0.6902884, 51.1930425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02350464" }, "bbox": [ -0.5435926, 51.1110042, -0.5435926, 51.1110042 ], "geometry": { "type": "Point", "coordinates": [ -0.5435926, 51.1110042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02351560" }, "bbox": [ -0.5420804, 51.1107324, -0.5420804, 51.1107324 ], "geometry": { "type": "Point", "coordinates": [ -0.5420804, 51.1107324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96409201" }, "bbox": [ -0.6152278, 51.1511633, -0.6152278, 51.1511633 ], "geometry": { "type": "Point", "coordinates": [ -0.6152278, 51.1511633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96397797" }, "bbox": [ -0.6177486, 51.1508511, -0.6177486, 51.1508511 ], "geometry": { "type": "Point", "coordinates": [ -0.6177486, 51.1508511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99327488" }, "bbox": [ -0.5772469, 51.0865643, -0.5772469, 51.0865643 ], "geometry": { "type": "Point", "coordinates": [ -0.5772469, 51.0865643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10381424" }, "bbox": [ -0.4271206, 51.1326309, -0.4271206, 51.1326309 ], "geometry": { "type": "Point", "coordinates": [ -0.4271206, 51.1326309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42460709" }, "bbox": [ 0.0319159, 51.1962824, 0.0319159, 51.1962824 ], "geometry": { "type": "Point", "coordinates": [ 0.0319159, 51.1962824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41467805" }, "bbox": [ 0.0277046, 51.1960808, 0.0277046, 51.1960808 ], "geometry": { "type": "Point", "coordinates": [ 0.0277046, 51.1960808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94434770" }, "bbox": [ -0.6493718, 51.1847022, -0.6493718, 51.1847022 ], "geometry": { "type": "Point", "coordinates": [ -0.6493718, 51.1847022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94442136" }, "bbox": [ -0.6535868, 51.1905542, -0.6535868, 51.1905542 ], "geometry": { "type": "Point", "coordinates": [ -0.6535868, 51.1905542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35459806" }, "bbox": [ -0.0554256, 51.1886824, -0.0554256, 51.1886824 ], "geometry": { "type": "Point", "coordinates": [ -0.0554256, 51.1886824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36444386" }, "bbox": [ -0.0493792, 51.1869745, -0.0493792, 51.1869745 ], "geometry": { "type": "Point", "coordinates": [ -0.0493792, 51.1869745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35465604" }, "bbox": [ -0.0609536, 51.1975064, -0.0609536, 51.1975064 ], "geometry": { "type": "Point", "coordinates": [ -0.0609536, 51.1975064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36450166" }, "bbox": [ -0.0535661, 51.1929036, -0.0535661, 51.1929036 ], "geometry": { "type": "Point", "coordinates": [ -0.0535661, 51.1929036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36451557" }, "bbox": [ -0.0529326, 51.1931131, -0.0529326, 51.1931131 ], "geometry": { "type": "Point", "coordinates": [ -0.0529326, 51.1931131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36451101" }, "bbox": [ -0.0520116, 51.1890257, -0.0520116, 51.1890257 ], "geometry": { "type": "Point", "coordinates": [ -0.0520116, 51.1890257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36452431" }, "bbox": [ -0.0517544, 51.1906366, -0.0517544, 51.1906366 ], "geometry": { "type": "Point", "coordinates": [ -0.0517544, 51.1906366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36452948" }, "bbox": [ -0.0510206, 51.1922471, -0.0510206, 51.1922471 ], "geometry": { "type": "Point", "coordinates": [ -0.0510206, 51.1922471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37489156" }, "bbox": [ -0.0261226, 51.2197495, -0.0261226, 51.2197495 ], "geometry": { "type": "Point", "coordinates": [ -0.0261226, 51.2197495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37497588" }, "bbox": [ -0.0283832, 51.2314722, -0.0283832, 51.2314722 ], "geometry": { "type": "Point", "coordinates": [ -0.0283832, 51.2314722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37498345" }, "bbox": [ -0.0277614, 51.2275102, -0.0277614, 51.2275102 ], "geometry": { "type": "Point", "coordinates": [ -0.0277614, 51.2275102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38485730" }, "bbox": [ -0.0171949, 51.2171272, -0.0171949, 51.2171272 ], "geometry": { "type": "Point", "coordinates": [ -0.0171949, 51.2171272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38485820" }, "bbox": [ -0.0184397, 51.2160436, -0.0184397, 51.2160436 ], "geometry": { "type": "Point", "coordinates": [ -0.0184397, 51.2160436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38486295" }, "bbox": [ -0.0160625, 51.2230879, -0.0160625, 51.2230879 ], "geometry": { "type": "Point", "coordinates": [ -0.0160625, 51.2230879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38490269" }, "bbox": [ -0.0251758, 51.2295821, -0.0251758, 51.2295821 ], "geometry": { "type": "Point", "coordinates": [ -0.0251758, 51.2295821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38495933" }, "bbox": [ -0.0167157, 51.2263348, -0.0167157, 51.2263348 ], "geometry": { "type": "Point", "coordinates": [ -0.0167157, 51.2263348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38496067" }, "bbox": [ -0.0160425, 51.2294357, -0.0160425, 51.2294357 ], "geometry": { "type": "Point", "coordinates": [ -0.0160425, 51.2294357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38499810" }, "bbox": [ -0.0111525, 51.224045, -0.0111525, 51.224045 ], "geometry": { "type": "Point", "coordinates": [ -0.0111525, 51.224045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38504612" }, "bbox": [ -0.0184484, 51.2335084, -0.0184484, 51.2335084 ], "geometry": { "type": "Point", "coordinates": [ -0.0184484, 51.2335084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38505395" }, "bbox": [ -0.0176221, 51.2413299, -0.0176221, 51.2413299 ], "geometry": { "type": "Point", "coordinates": [ -0.0176221, 51.2413299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38506437" }, "bbox": [ -0.015259, 51.2360436, -0.015259, 51.2360436 ], "geometry": { "type": "Point", "coordinates": [ -0.015259, 51.2360436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38506989" }, "bbox": [ -0.014699, 51.2403116, -0.014699, 51.2403116 ], "geometry": { "type": "Point", "coordinates": [ -0.014699, 51.2403116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38509098" }, "bbox": [ -0.0118702, 51.240859, -0.0118702, 51.240859 ], "geometry": { "type": "Point", "coordinates": [ -0.0118702, 51.240859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38503088" }, "bbox": [ -0.0183689, 51.2405079, -0.0183689, 51.2405079 ], "geometry": { "type": "Point", "coordinates": [ -0.0183689, 51.2405079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36508768" }, "bbox": [ -0.040574, 51.2390124, -0.040574, 51.2390124 ], "geometry": { "type": "Point", "coordinates": [ -0.040574, 51.2390124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36514621" }, "bbox": [ -0.0449009, 51.2434921, -0.0449009, 51.2434921 ], "geometry": { "type": "Point", "coordinates": [ -0.0449009, 51.2434921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36519424" }, "bbox": [ -0.039676, 51.2439403, -0.039676, 51.2439403 ], "geometry": { "type": "Point", "coordinates": [ -0.039676, 51.2439403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37501269" }, "bbox": [ -0.0369326, 51.2389925, -0.0369326, 51.2389925 ], "geometry": { "type": "Point", "coordinates": [ -0.0369326, 51.2389925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37502505" }, "bbox": [ -0.0351943, 51.2333928, -0.0351943, 51.2333928 ], "geometry": { "type": "Point", "coordinates": [ -0.0351943, 51.2333928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39570086" }, "bbox": [ -0.0072451, 51.3029067, -0.0072451, 51.3029067 ], "geometry": { "type": "Point", "coordinates": [ -0.0072451, 51.3029067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39570860" }, "bbox": [ -0.0074352, 51.2997237, -0.0074352, 51.2997237 ], "geometry": { "type": "Point", "coordinates": [ -0.0074352, 51.2997237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39571159" }, "bbox": [ -0.0058207, 51.3005546, -0.0058207, 51.3005546 ], "geometry": { "type": "Point", "coordinates": [ -0.0058207, 51.3005546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39572076" }, "bbox": [ -0.0039822, 51.3021483, -0.0039822, 51.3021483 ], "geometry": { "type": "Point", "coordinates": [ -0.0039822, 51.3021483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38569083" }, "bbox": [ -0.0098498, 51.2935438, -0.0098498, 51.2935438 ], "geometry": { "type": "Point", "coordinates": [ -0.0098498, 51.2935438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38576113" }, "bbox": [ -0.0133374, 51.296686, -0.0133374, 51.296686 ], "geometry": { "type": "Point", "coordinates": [ -0.0133374, 51.296686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38576461" }, "bbox": [ -0.0123938, 51.3006913, -0.0123938, 51.3006913 ], "geometry": { "type": "Point", "coordinates": [ -0.0123938, 51.3006913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38577617" }, "bbox": [ -0.011046, 51.296492, -0.011046, 51.296492 ], "geometry": { "type": "Point", "coordinates": [ -0.011046, 51.296492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38578418" }, "bbox": [ -0.009917, 51.2968299, -0.009917, 51.2968299 ], "geometry": { "type": "Point", "coordinates": [ -0.009917, 51.2968299 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38579060" }, "bbox": [ -0.0089393, 51.3008394, -0.0089393, 51.3008394 ], "geometry": { "type": "Point", "coordinates": [ -0.0089393, 51.3008394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39561997" }, "bbox": [ -0.0052162, 51.295021, -0.0052162, 51.295021 ], "geometry": { "type": "Point", "coordinates": [ -0.0052162, 51.295021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39464699" }, "bbox": [ -0.0043827, 51.2053727, -0.0043827, 51.2053727 ], "geometry": { "type": "Point", "coordinates": [ -0.0043827, 51.2053727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39473307" }, "bbox": [ -0.0071185, 51.2059162, -0.0071185, 51.2059162 ], "geometry": { "type": "Point", "coordinates": [ -0.0071185, 51.2059162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39472791" }, "bbox": [ -0.0074529, 51.2133792, -0.0074529, 51.2133792 ], "geometry": { "type": "Point", "coordinates": [ -0.0074529, 51.2133792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39474265" }, "bbox": [ -0.0053349, 51.2109434, -0.0053349, 51.2109434 ], "geometry": { "type": "Point", "coordinates": [ -0.0053349, 51.2109434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39474434" }, "bbox": [ -0.0047984, 51.2081661, -0.0047984, 51.2081661 ], "geometry": { "type": "Point", "coordinates": [ -0.0047984, 51.2081661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39474548" }, "bbox": [ -0.0049435, 51.209546, -0.0049435, 51.209546 ], "geometry": { "type": "Point", "coordinates": [ -0.0049435, 51.209546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39474574" }, "bbox": [ -0.0048314, 51.2118921, -0.0048314, 51.2118921 ], "geometry": { "type": "Point", "coordinates": [ -0.0048314, 51.2118921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39474874" }, "bbox": [ -0.0040529, 51.2118381, -0.0040529, 51.2118381 ], "geometry": { "type": "Point", "coordinates": [ -0.0040529, 51.2118381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39476288" }, "bbox": [ -0.002633, 51.2132172, -0.002633, 51.2132172 ], "geometry": { "type": "Point", "coordinates": [ -0.002633, 51.2132172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39477473" }, "bbox": [ -0.0007145, 51.2112606, -0.0007145, 51.2112606 ], "geometry": { "type": "Point", "coordinates": [ -0.0007145, 51.2112606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39482211" }, "bbox": [ -0.0079307, 51.2152385, -0.0079307, 51.2152385 ], "geometry": { "type": "Point", "coordinates": [ -0.0079307, 51.2152385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39482227" }, "bbox": [ -0.0078102, 51.2167178, -0.0078102, 51.2167178 ], "geometry": { "type": "Point", "coordinates": [ -0.0078102, 51.2167178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39483612" }, "bbox": [ -0.0049237, 51.2155956, -0.0049237, 51.2155956 ], "geometry": { "type": "Point", "coordinates": [ -0.0049237, 51.2155956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39485222" }, "bbox": [ -0.0038452, 51.2161456, -0.0038452, 51.2161456 ], "geometry": { "type": "Point", "coordinates": [ -0.0038452, 51.2161456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39491091" }, "bbox": [ -0.0092336, 51.2318354, -0.0092336, 51.2318354 ], "geometry": { "type": "Point", "coordinates": [ -0.0092336, 51.2318354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39491377" }, "bbox": [ -0.0095631, 51.2299841, -0.0095631, 51.2299841 ], "geometry": { "type": "Point", "coordinates": [ -0.0095631, 51.2299841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39493858" }, "bbox": [ -0.005105, 51.2283724, -0.005105, 51.2283724 ], "geometry": { "type": "Point", "coordinates": [ -0.005105, 51.2283724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39501584" }, "bbox": [ -0.0080954, 51.2397463, -0.0080954, 51.2397463 ], "geometry": { "type": "Point", "coordinates": [ -0.0080954, 51.2397463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20427663" }, "bbox": [ -0.2737295, 51.1704592, -0.2737295, 51.1704592 ], "geometry": { "type": "Point", "coordinates": [ -0.2737295, 51.1704592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38475010" }, "bbox": [ -0.0184971, 51.2062595, -0.0184971, 51.2062595 ], "geometry": { "type": "Point", "coordinates": [ -0.0184971, 51.2062595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38466789" }, "bbox": [ -0.0159063, 51.2047285, -0.0159063, 51.2047285 ], "geometry": { "type": "Point", "coordinates": [ -0.0159063, 51.2047285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38466238" }, "bbox": [ -0.0170252, 51.1996963, -0.0170252, 51.1996963 ], "geometry": { "type": "Point", "coordinates": [ -0.0170252, 51.1996963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38464444" }, "bbox": [ -0.0202835, 51.1998449, -0.0202835, 51.1998449 ], "geometry": { "type": "Point", "coordinates": [ -0.0202835, 51.1998449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38465319" }, "bbox": [ -0.0187567, 51.1981195, -0.0187567, 51.1981195 ], "geometry": { "type": "Point", "coordinates": [ -0.0187567, 51.1981195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38464384" }, "bbox": [ -0.0199719, 51.2039272, -0.0199719, 51.2039272 ], "geometry": { "type": "Point", "coordinates": [ -0.0199719, 51.2039272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38466322" }, "bbox": [ -0.0171725, 51.1985666, -0.0171725, 51.1985666 ], "geometry": { "type": "Point", "coordinates": [ -0.0171725, 51.1985666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38467456" }, "bbox": [ -0.0155646, 51.2014416, -0.0155646, 51.2014416 ], "geometry": { "type": "Point", "coordinates": [ -0.0155646, 51.2014416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38469956" }, "bbox": [ -0.0120189, 51.2012966, -0.0120189, 51.2012966 ], "geometry": { "type": "Point", "coordinates": [ -0.0120189, 51.2012966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38468758" }, "bbox": [ -0.0136814, 51.2017907, -0.0136814, 51.2017907 ], "geometry": { "type": "Point", "coordinates": [ -0.0136814, 51.2017907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38468384" }, "bbox": [ -0.0136879, 51.2037722, -0.0136879, 51.2037722 ], "geometry": { "type": "Point", "coordinates": [ -0.0136879, 51.2037722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17430940" }, "bbox": [ -0.3261626, 51.1780424, -0.3261626, 51.1780424 ], "geometry": { "type": "Point", "coordinates": [ -0.3261626, 51.1780424 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16437946" }, "bbox": [ -0.330675, 51.1777695, -0.330675, 51.1777695 ], "geometry": { "type": "Point", "coordinates": [ -0.330675, 51.1777695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16438758" }, "bbox": [ -0.3295363, 51.1790987, -0.3295363, 51.1790987 ], "geometry": { "type": "Point", "coordinates": [ -0.3295363, 51.1790987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16439448" }, "bbox": [ -0.3282659, 51.1785754, -0.3282659, 51.1785754 ], "geometry": { "type": "Point", "coordinates": [ -0.3282659, 51.1785754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16439617" }, "bbox": [ -0.3283715, 51.175678, -0.3283715, 51.175678 ], "geometry": { "type": "Point", "coordinates": [ -0.3283715, 51.175678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92540652" }, "bbox": [ -0.6876774, 51.2742851, -0.6876774, 51.2742851 ], "geometry": { "type": "Point", "coordinates": [ -0.6876774, 51.2742851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89630400" }, "bbox": [ -0.7241472, 51.3614024, -0.7241472, 51.3614024 ], "geometry": { "type": "Point", "coordinates": [ -0.7241472, 51.3614024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93592768" }, "bbox": [ -0.6628726, 51.3286483, -0.6628726, 51.3286483 ], "geometry": { "type": "Point", "coordinates": [ -0.6628726, 51.3286483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93594763" }, "bbox": [ -0.6600821, 51.3283368, -0.6600821, 51.3283368 ], "geometry": { "type": "Point", "coordinates": [ -0.6600821, 51.3283368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93597220" }, "bbox": [ -0.6562992, 51.3241997, -0.6562992, 51.3241997 ], "geometry": { "type": "Point", "coordinates": [ -0.6562992, 51.3241997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93597910" }, "bbox": [ -0.6555239, 51.3233918, -0.6555239, 51.3233918 ], "geometry": { "type": "Point", "coordinates": [ -0.6555239, 51.3233918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93593390" }, "bbox": [ -0.6617487, 51.3306293, -0.6617487, 51.3306293 ], "geometry": { "type": "Point", "coordinates": [ -0.6617487, 51.3306293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87637702" }, "bbox": [ -0.7384829, 51.3575382, -0.7384829, 51.3575382 ], "geometry": { "type": "Point", "coordinates": [ -0.7384829, 51.3575382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94506443" }, "bbox": [ -0.6454224, 51.2451786, -0.6454224, 51.2451786 ], "geometry": { "type": "Point", "coordinates": [ -0.6454224, 51.2451786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90513478" }, "bbox": [ -0.7018576, 51.2580786, -0.7018576, 51.2580786 ], "geometry": { "type": "Point", "coordinates": [ -0.7018576, 51.2580786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89438491" }, "bbox": [ -0.7159921, 51.1873892, -0.7159921, 51.1873892 ], "geometry": { "type": "Point", "coordinates": [ -0.7159921, 51.1873892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87458595" }, "bbox": [ -0.742913, 51.2060535, -0.742913, 51.2060535 ], "geometry": { "type": "Point", "coordinates": [ -0.742913, 51.2060535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89488517" }, "bbox": [ -0.7138893, 51.2258179, -0.7138893, 51.2258179 ], "geometry": { "type": "Point", "coordinates": [ -0.7138893, 51.2258179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92422060" }, "bbox": [ -0.6836014, 51.174999, -0.6836014, 51.174999 ], "geometry": { "type": "Point", "coordinates": [ -0.6836014, 51.174999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93619022" }, "bbox": [ -0.6549545, 51.3408574, -0.6549545, 51.3408574 ], "geometry": { "type": "Point", "coordinates": [ -0.6549545, 51.3408574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93613514" }, "bbox": [ -0.661669, 51.3421305, -0.661669, 51.3421305 ], "geometry": { "type": "Point", "coordinates": [ -0.661669, 51.3421305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91424524" }, "bbox": [ -0.6960447, 51.1703484, -0.6960447, 51.1703484 ], "geometry": { "type": "Point", "coordinates": [ -0.6960447, 51.1703484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92608845" }, "bbox": [ -0.6679934, 51.3355692, -0.6679934, 51.3355692 ], "geometry": { "type": "Point", "coordinates": [ -0.6679934, 51.3355692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92610914" }, "bbox": [ -0.6788873, 51.3418927, -0.6788873, 51.3418927 ], "geometry": { "type": "Point", "coordinates": [ -0.6788873, 51.3418927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29514369" }, "bbox": [ -0.1467336, 51.2497334, -0.1467336, 51.2497334 ], "geometry": { "type": "Point", "coordinates": [ -0.1467336, 51.2497334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31534194" }, "bbox": [ -0.1170627, 51.2690593, -0.1170627, 51.2690593 ], "geometry": { "type": "Point", "coordinates": [ -0.1170627, 51.2690593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ31536866" }, "bbox": [ -0.1137998, 51.2668605, -0.1137998, 51.2668605 ], "geometry": { "type": "Point", "coordinates": [ -0.1137998, 51.2668605 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513187" }, "bbox": [ -0.0627, 51.2499602, -0.0627, 51.2499602 ], "geometry": { "type": "Point", "coordinates": [ -0.0627, 51.2499602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35513863" }, "bbox": [ -0.0616282, 51.2478649, -0.0616282, 51.2478649 ], "geometry": { "type": "Point", "coordinates": [ -0.0616282, 51.2478649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42553294" }, "bbox": [ 0.039412, 51.284841, 0.039412, 51.284841 ], "geometry": { "type": "Point", "coordinates": [ 0.039412, 51.284841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42554185" }, "bbox": [ 0.0404707, 51.2840381, 0.0404707, 51.2840381 ], "geometry": { "type": "Point", "coordinates": [ 0.0404707, 51.2840381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95529471" }, "bbox": [ -0.6254224, 51.2655914, -0.6254224, 51.2655914 ], "geometry": { "type": "Point", "coordinates": [ -0.6254224, 51.2655914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97514762" }, "bbox": [ -0.6041983, 51.2553168, -0.6041983, 51.2553168 ], "geometry": { "type": "Point", "coordinates": [ -0.6041983, 51.2553168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95517305" }, "bbox": [ -0.6295386, 51.2505768, -0.6295386, 51.2505768 ], "geometry": { "type": "Point", "coordinates": [ -0.6295386, 51.2505768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544170" }, "bbox": [ -0.6045766, 51.2831331, -0.6045766, 51.2831331 ], "geometry": { "type": "Point", "coordinates": [ -0.6045766, 51.2831331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98537701" }, "bbox": [ -0.5856272, 51.2678315, -0.5856272, 51.2678315 ], "geometry": { "type": "Point", "coordinates": [ -0.5856272, 51.2678315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99530201" }, "bbox": [ -0.5820301, 51.2682583, -0.5820301, 51.2682583 ], "geometry": { "type": "Point", "coordinates": [ -0.5820301, 51.2682583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94556635" }, "bbox": [ -0.6436598, 51.2889026, -0.6436598, 51.2889026 ], "geometry": { "type": "Point", "coordinates": [ -0.6436598, 51.2889026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97528537" }, "bbox": [ -0.5989075, 51.2620805, -0.5989075, 51.2620805 ], "geometry": { "type": "Point", "coordinates": [ -0.5989075, 51.2620805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98522586" }, "bbox": [ -0.5941526, 51.2667231, -0.5941526, 51.2667231 ], "geometry": { "type": "Point", "coordinates": [ -0.5941526, 51.2667231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94590159" }, "bbox": [ -0.6533994, 51.3280312, -0.6533994, 51.3280312 ], "geometry": { "type": "Point", "coordinates": [ -0.6533994, 51.3280312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94595935" }, "bbox": [ -0.6439346, 51.3250928, -0.6439346, 51.3250928 ], "geometry": { "type": "Point", "coordinates": [ -0.6439346, 51.3250928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95584452" }, "bbox": [ -0.632226, 51.3178102, -0.632226, 51.3178102 ], "geometry": { "type": "Point", "coordinates": [ -0.632226, 51.3178102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95585036" }, "bbox": [ -0.6315529, 51.3159731, -0.6315529, 51.3159731 ], "geometry": { "type": "Point", "coordinates": [ -0.6315529, 51.3159731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96574249" }, "bbox": [ -0.6193805, 51.3084573, -0.6193805, 51.3084573 ], "geometry": { "type": "Point", "coordinates": [ -0.6193805, 51.3084573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97627782" }, "bbox": [ -0.597609, 51.3558477, -0.597609, 51.3558477 ], "geometry": { "type": "Point", "coordinates": [ -0.597609, 51.3558477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95465891" }, "bbox": [ -0.6330799, 51.2133814, -0.6330799, 51.2133814 ], "geometry": { "type": "Point", "coordinates": [ -0.6330799, 51.2133814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97649964" }, "bbox": [ -0.5955703, 51.3682353, -0.5955703, 51.3682353 ], "geometry": { "type": "Point", "coordinates": [ -0.5955703, 51.3682353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00435436" }, "bbox": [ -0.5626707, 51.1809536, -0.5626707, 51.1809536 ], "geometry": { "type": "Point", "coordinates": [ -0.5626707, 51.1809536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00437020" }, "bbox": [ -0.5601787, 51.1792925, -0.5601787, 51.1792925 ], "geometry": { "type": "Point", "coordinates": [ -0.5601787, 51.1792925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438117" }, "bbox": [ -0.5590555, 51.1788853, -0.5590555, 51.1788853 ], "geometry": { "type": "Point", "coordinates": [ -0.5590555, 51.1788853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00439321" }, "bbox": [ -0.5573432, 51.1792755, -0.5573432, 51.1792755 ], "geometry": { "type": "Point", "coordinates": [ -0.5573432, 51.1792755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00429088" }, "bbox": [ -0.5580732, 51.1761418, -0.5580732, 51.1761418 ], "geometry": { "type": "Point", "coordinates": [ -0.5580732, 51.1761418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01492419" }, "bbox": [ -0.551658, 51.2326317, -0.551658, 51.2326317 ], "geometry": { "type": "Point", "coordinates": [ -0.551658, 51.2326317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01492935" }, "bbox": [ -0.5504332, 51.2344099, -0.5504332, 51.2344099 ], "geometry": { "type": "Point", "coordinates": [ -0.5504332, 51.2344099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00498518" }, "bbox": [ -0.5568202, 51.2329034, -0.5568202, 51.2329034 ], "geometry": { "type": "Point", "coordinates": [ -0.5568202, 51.2329034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00499207" }, "bbox": [ -0.556023, 51.2318685, -0.556023, 51.2318685 ], "geometry": { "type": "Point", "coordinates": [ -0.556023, 51.2318685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00521997" }, "bbox": [ -0.5650739, 51.2670947, -0.5650739, 51.2670947 ], "geometry": { "type": "Point", "coordinates": [ -0.5650739, 51.2670947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00523777" }, "bbox": [ -0.5630072, 51.2655669, -0.5630072, 51.2655669 ], "geometry": { "type": "Point", "coordinates": [ -0.5630072, 51.2655669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03564624" }, "bbox": [ -0.5175551, 51.2960527, -0.5175551, 51.2960527 ], "geometry": { "type": "Point", "coordinates": [ -0.5175551, 51.2960527 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07591310" }, "bbox": [ -0.4638753, 51.3210932, -0.4638753, 51.3210932 ], "geometry": { "type": "Point", "coordinates": [ -0.4638753, 51.3210932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07592620" }, "bbox": [ -0.4618796, 51.3218059, -0.4618796, 51.3218059 ], "geometry": { "type": "Point", "coordinates": [ -0.4618796, 51.3218059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07592637" }, "bbox": [ -0.462533, 51.323257, -0.462533, 51.323257 ], "geometry": { "type": "Point", "coordinates": [ -0.462533, 51.323257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07592809" }, "bbox": [ -0.4619533, 51.3208247, -0.4619533, 51.3208247 ], "geometry": { "type": "Point", "coordinates": [ -0.4619533, 51.3208247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07593312" }, "bbox": [ -0.4612131, 51.3211713, -0.4612131, 51.3211713 ], "geometry": { "type": "Point", "coordinates": [ -0.4612131, 51.3211713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07593321" }, "bbox": [ -0.4609652, 51.3219442, -0.4609652, 51.3219442 ], "geometry": { "type": "Point", "coordinates": [ -0.4609652, 51.3219442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06597893" }, "bbox": [ -0.4677955, 51.3286157, -0.4677955, 51.3286157 ], "geometry": { "type": "Point", "coordinates": [ -0.4677955, 51.3286157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07581056" }, "bbox": [ -0.46346, 51.3186853, -0.46346, 51.3186853 ], "geometry": { "type": "Point", "coordinates": [ -0.46346, 51.3186853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00439752" }, "bbox": [ -0.5567985, 51.1821837, -0.5567985, 51.1821837 ], "geometry": { "type": "Point", "coordinates": [ -0.5567985, 51.1821837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01430107" }, "bbox": [ -0.5563602, 51.1779491, -0.5563602, 51.1779491 ], "geometry": { "type": "Point", "coordinates": [ -0.5563602, 51.1779491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01430427" }, "bbox": [ -0.555645, 51.1797927, -0.555645, 51.1797927 ], "geometry": { "type": "Point", "coordinates": [ -0.555645, 51.1797927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01432514" }, "bbox": [ -0.552873, 51.1783489, -0.552873, 51.1783489 ], "geometry": { "type": "Point", "coordinates": [ -0.552873, 51.1783489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06607428" }, "bbox": [ -0.4692824, 51.331667, -0.4692824, 51.331667 ], "geometry": { "type": "Point", "coordinates": [ -0.4692824, 51.331667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06608402" }, "bbox": [ -0.4679668, 51.3295857, -0.4679668, 51.3295857 ], "geometry": { "type": "Point", "coordinates": [ -0.4679668, 51.3295857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06608852" }, "bbox": [ -0.4671582, 51.3338557, -0.4671582, 51.3338557 ], "geometry": { "type": "Point", "coordinates": [ -0.4671582, 51.3338557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06609337" }, "bbox": [ -0.4666211, 51.3323676, -0.4666211, 51.3323676 ], "geometry": { "type": "Point", "coordinates": [ -0.4666211, 51.3323676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12383264" }, "bbox": [ -0.3959221, 51.1360412, -0.3959221, 51.1360412 ], "geometry": { "type": "Point", "coordinates": [ -0.3959221, 51.1360412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19517132" }, "bbox": [ -0.2887084, 51.2466547, -0.2887084, 51.2466547 ], "geometry": { "type": "Point", "coordinates": [ -0.2887084, 51.2466547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21522550" }, "bbox": [ -0.264168, 51.2592079, -0.264168, 51.2592079 ], "geometry": { "type": "Point", "coordinates": [ -0.264168, 51.2592079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21522721" }, "bbox": [ -0.2632585, 51.2562517, -0.2632585, 51.2562517 ], "geometry": { "type": "Point", "coordinates": [ -0.2632585, 51.2562517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21522943" }, "bbox": [ -0.2629073, 51.2581363, -0.2629073, 51.2581363 ], "geometry": { "type": "Point", "coordinates": [ -0.2629073, 51.2581363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29510921" }, "bbox": [ -0.1486587, 51.2473537, -0.1486587, 51.2473537 ], "geometry": { "type": "Point", "coordinates": [ -0.1486587, 51.2473537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09514661" }, "bbox": [ -0.4324535, 51.25343, -0.4324535, 51.25343 ], "geometry": { "type": "Point", "coordinates": [ -0.4324535, 51.25343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07593910" }, "bbox": [ -0.4602881, 51.3210021, -0.4602881, 51.3210021 ], "geometry": { "type": "Point", "coordinates": [ -0.4602881, 51.3210021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07594121" }, "bbox": [ -0.4602226, 51.3221668, -0.4602226, 51.3221668 ], "geometry": { "type": "Point", "coordinates": [ -0.4602226, 51.3221668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07599771" }, "bbox": [ -0.4534251, 51.3254529, -0.4534251, 51.3254529 ], "geometry": { "type": "Point", "coordinates": [ -0.4534251, 51.3254529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27553746" }, "bbox": [ -0.1755178, 51.2842259, -0.1755178, 51.2842259 ], "geometry": { "type": "Point", "coordinates": [ -0.1755178, 51.2842259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22618016" }, "bbox": [ -0.2388571, 51.3361829, -0.2388571, 51.3361829 ], "geometry": { "type": "Point", "coordinates": [ -0.2388571, 51.3361829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22618347" }, "bbox": [ -0.2361275, 51.3384546, -0.2361275, 51.3384546 ], "geometry": { "type": "Point", "coordinates": [ -0.2361275, 51.3384546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19502073" }, "bbox": [ -0.2935646, 51.2433337, -0.2935646, 51.2433337 ], "geometry": { "type": "Point", "coordinates": [ -0.2935646, 51.2433337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17512053" }, "bbox": [ -0.3222571, 51.2506031, -0.3222571, 51.2506031 ], "geometry": { "type": "Point", "coordinates": [ -0.3222571, 51.2506031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17514162" }, "bbox": [ -0.3204585, 51.2522193, -0.3204585, 51.2522193 ], "geometry": { "type": "Point", "coordinates": [ -0.3204585, 51.2522193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18505984" }, "bbox": [ -0.3017236, 51.2452521, -0.3017236, 51.2452521 ], "geometry": { "type": "Point", "coordinates": [ -0.3017236, 51.2452521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18506543" }, "bbox": [ -0.3024942, 51.2408579, -0.3024942, 51.2408579 ], "geometry": { "type": "Point", "coordinates": [ -0.3024942, 51.2408579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36499991" }, "bbox": [ -0.0392297, 51.2322754, -0.0392297, 51.2322754 ], "geometry": { "type": "Point", "coordinates": [ -0.0392297, 51.2322754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37485392" }, "bbox": [ -0.0321028, 51.2230999, -0.0321028, 51.2230999 ], "geometry": { "type": "Point", "coordinates": [ -0.0321028, 51.2230999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37486659" }, "bbox": [ -0.0304774, 51.2199976, -0.0304774, 51.2199976 ], "geometry": { "type": "Point", "coordinates": [ -0.0304774, 51.2199976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36496457" }, "bbox": [ -0.0447329, 51.229023, -0.0447329, 51.229023 ], "geometry": { "type": "Point", "coordinates": [ -0.0447329, 51.229023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36497779" }, "bbox": [ -0.0426418, 51.2308771, -0.0426418, 51.2308771 ], "geometry": { "type": "Point", "coordinates": [ -0.0426418, 51.2308771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36495294" }, "bbox": [ -0.0461017, 51.2322679, -0.0461017, 51.2322679 ], "geometry": { "type": "Point", "coordinates": [ -0.0461017, 51.2322679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36495683" }, "bbox": [ -0.0455689, 51.2312668, -0.0455689, 51.2312668 ], "geometry": { "type": "Point", "coordinates": [ -0.0455689, 51.2312668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36498392" }, "bbox": [ -0.0415687, 51.232105, -0.0415687, 51.232105 ], "geometry": { "type": "Point", "coordinates": [ -0.0415687, 51.232105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37490817" }, "bbox": [ -0.0393325, 51.2259708, -0.0393325, 51.2259708 ], "geometry": { "type": "Point", "coordinates": [ -0.0393325, 51.2259708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37491155" }, "bbox": [ -0.0375645, 51.2287938, -0.0375645, 51.2287938 ], "geometry": { "type": "Point", "coordinates": [ -0.0375645, 51.2287938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37492043" }, "bbox": [ -0.0366103, 51.2275386, -0.0366103, 51.2275386 ], "geometry": { "type": "Point", "coordinates": [ -0.0366103, 51.2275386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37492631" }, "bbox": [ -0.0359383, 51.2264406, -0.0359383, 51.2264406 ], "geometry": { "type": "Point", "coordinates": [ -0.0359383, 51.2264406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37493614" }, "bbox": [ -0.0343575, 51.2249881, -0.0343575, 51.2249881 ], "geometry": { "type": "Point", "coordinates": [ -0.0343575, 51.2249881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36504515" }, "bbox": [ -0.0467581, 51.2345744, -0.0467581, 51.2345744 ], "geometry": { "type": "Point", "coordinates": [ -0.0467581, 51.2345744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36507510" }, "bbox": [ -0.0431886, 51.2337613, -0.0431886, 51.2337613 ], "geometry": { "type": "Point", "coordinates": [ -0.0431886, 51.2337613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36508815" }, "bbox": [ -0.0408856, 51.2341974, -0.0408856, 51.2341974 ], "geometry": { "type": "Point", "coordinates": [ -0.0408856, 51.2341974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36502355" }, "bbox": [ -0.05001, 51.2377088, -0.05001, 51.2377088 ], "geometry": { "type": "Point", "coordinates": [ -0.05001, 51.2377088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94363003" }, "bbox": [ -0.6538801, 51.1160851, -0.6538801, 51.1160851 ], "geometry": { "type": "Point", "coordinates": [ -0.6538801, 51.1160851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22521387" }, "bbox": [ -0.2508121, 51.2619725, -0.2508121, 51.2619725 ], "geometry": { "type": "Point", "coordinates": [ -0.2508121, 51.2619725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04366823" }, "bbox": [ -0.505828, 51.1157849, -0.505828, 51.1157849 ], "geometry": { "type": "Point", "coordinates": [ -0.505828, 51.1157849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04369919" }, "bbox": [ -0.5014214, 51.1152601, -0.5014214, 51.1152601 ], "geometry": { "type": "Point", "coordinates": [ -0.5014214, 51.1152601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19419248" }, "bbox": [ -0.286558, 51.1599522, -0.286558, 51.1599522 ], "geometry": { "type": "Point", "coordinates": [ -0.286558, 51.1599522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06672095" }, "bbox": [ -0.4748487, 51.4006439, -0.4748487, 51.4006439 ], "geometry": { "type": "Point", "coordinates": [ -0.4748487, 51.4006439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05372549" }, "bbox": [ -0.4983108, 51.1267991, -0.4983108, 51.1267991 ], "geometry": { "type": "Point", "coordinates": [ -0.4983108, 51.1267991 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40409932" }, "bbox": [ 0.0140994, 51.1448047, 0.0140994, 51.1448047 ], "geometry": { "type": "Point", "coordinates": [ 0.0140994, 51.1448047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41402453" }, "bbox": [ 0.0180524, 51.146748, 0.0180524, 51.146748 ], "geometry": { "type": "Point", "coordinates": [ 0.0180524, 51.146748 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41403045" }, "bbox": [ 0.0186312, 51.1454737, 0.0186312, 51.1454737 ], "geometry": { "type": "Point", "coordinates": [ 0.0186312, 51.1454737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42402921" }, "bbox": [ 0.032969, 51.1434739, 0.032969, 51.1434739 ], "geometry": { "type": "Point", "coordinates": [ 0.032969, 51.1434739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42403312" }, "bbox": [ 0.0332212, 51.1426764, 0.0332212, 51.1426764 ], "geometry": { "type": "Point", "coordinates": [ 0.0332212, 51.1426764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42403453" }, "bbox": [ 0.0322712, 51.1464756, 0.0322712, 51.1464756 ], "geometry": { "type": "Point", "coordinates": [ 0.0322712, 51.1464756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42401639" }, "bbox": [ 0.0309639, 51.145156, 0.0309639, 51.145156 ], "geometry": { "type": "Point", "coordinates": [ 0.0309639, 51.145156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42400563" }, "bbox": [ 0.0292291, 51.1474413, 0.0292291, 51.1474413 ], "geometry": { "type": "Point", "coordinates": [ 0.0292291, 51.1474413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42400739" }, "bbox": [ 0.0295066, 51.145473, 0.0295066, 51.145473 ], "geometry": { "type": "Point", "coordinates": [ 0.0295066, 51.145473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38523977" }, "bbox": [ -0.0183953, 51.2572743, -0.0183953, 51.2572743 ], "geometry": { "type": "Point", "coordinates": [ -0.0183953, 51.2572743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37532176" }, "bbox": [ -0.0332336, 51.2666311, -0.0332336, 51.2666311 ], "geometry": { "type": "Point", "coordinates": [ -0.0332336, 51.2666311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37533680" }, "bbox": [ -0.0326132, 51.2668381, -0.0326132, 51.2668381 ], "geometry": { "type": "Point", "coordinates": [ -0.0326132, 51.2668381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37539040" }, "bbox": [ -0.0246262, 51.2629963, -0.0246262, 51.2629963 ], "geometry": { "type": "Point", "coordinates": [ -0.0246262, 51.2629963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37537518" }, "bbox": [ -0.0269225, 51.2611924, -0.0269225, 51.2611924 ], "geometry": { "type": "Point", "coordinates": [ -0.0269225, 51.2611924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37534473" }, "bbox": [ -0.0306056, 51.266285, -0.0306056, 51.266285 ], "geometry": { "type": "Point", "coordinates": [ -0.0306056, 51.266285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16371050" }, "bbox": [ -0.34225, 51.1250542, -0.34225, 51.1250542 ], "geometry": { "type": "Point", "coordinates": [ -0.34225, 51.1250542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372732" }, "bbox": [ -0.3398452, 51.1233782, -0.3398452, 51.1233782 ], "geometry": { "type": "Point", "coordinates": [ -0.3398452, 51.1233782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16374750" }, "bbox": [ -0.3366551, 51.1250635, -0.3366551, 51.1250635 ], "geometry": { "type": "Point", "coordinates": [ -0.3366551, 51.1250635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372860" }, "bbox": [ -0.3395549, 51.1260038, -0.3395549, 51.1260038 ], "geometry": { "type": "Point", "coordinates": [ -0.3395549, 51.1260038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16371470" }, "bbox": [ -0.3415935, 51.1268831, -0.3415935, 51.1268831 ], "geometry": { "type": "Point", "coordinates": [ -0.3415935, 51.1268831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16370170" }, "bbox": [ -0.3437869, 51.1267175, -0.3437869, 51.1267175 ], "geometry": { "type": "Point", "coordinates": [ -0.3437869, 51.1267175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16372539" }, "bbox": [ -0.3405482, 51.1240881, -0.3405482, 51.1240881 ], "geometry": { "type": "Point", "coordinates": [ -0.3405482, 51.1240881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16360392" }, "bbox": [ -0.3435917, 51.119849, -0.3435917, 51.119849 ], "geometry": { "type": "Point", "coordinates": [ -0.3435917, 51.119849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15379715" }, "bbox": [ -0.3443551, 51.1218528, -0.3443551, 51.1218528 ], "geometry": { "type": "Point", "coordinates": [ -0.3443551, 51.1218528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15370052" }, "bbox": [ -0.357901, 51.125515, -0.357901, 51.125515 ], "geometry": { "type": "Point", "coordinates": [ -0.357901, 51.125515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15379744" }, "bbox": [ -0.344151, 51.1244829, -0.344151, 51.1244829 ], "geometry": { "type": "Point", "coordinates": [ -0.344151, 51.1244829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04438934" }, "bbox": [ -0.5011015, 51.1796679, -0.5011015, 51.1796679 ], "geometry": { "type": "Point", "coordinates": [ -0.5011015, 51.1796679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41556222" }, "bbox": [ 0.029137, 51.2784443, 0.029137, 51.2784443 ], "geometry": { "type": "Point", "coordinates": [ 0.029137, 51.2784443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41466899" }, "bbox": [ 0.0264535, 51.2045167, 0.0264535, 51.2045167 ], "geometry": { "type": "Point", "coordinates": [ 0.0264535, 51.2045167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37587047" }, "bbox": [ -0.0256687, 51.3086095, -0.0256687, 51.3086095 ], "geometry": { "type": "Point", "coordinates": [ -0.0256687, 51.3086095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17466191" }, "bbox": [ -0.3176733, 51.2087044, -0.3176733, 51.2087044 ], "geometry": { "type": "Point", "coordinates": [ -0.3176733, 51.2087044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91446077" }, "bbox": [ -0.6903705, 51.1949266, -0.6903705, 51.1949266 ], "geometry": { "type": "Point", "coordinates": [ -0.6903705, 51.1949266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91446875" }, "bbox": [ -0.6891765, 51.1947517, -0.6891765, 51.1947517 ], "geometry": { "type": "Point", "coordinates": [ -0.6891765, 51.1947517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91447354" }, "bbox": [ -0.6883361, 51.1926924, -0.6883361, 51.1926924 ], "geometry": { "type": "Point", "coordinates": [ -0.6883361, 51.1926924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99350439" }, "bbox": [ -0.5865265, 51.1092286, -0.5865265, 51.1092286 ], "geometry": { "type": "Point", "coordinates": [ -0.5865265, 51.1092286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20416321" }, "bbox": [ -0.2753703, 51.1574041, -0.2753703, 51.1574041 ], "geometry": { "type": "Point", "coordinates": [ -0.2753703, 51.1574041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20415014" }, "bbox": [ -0.2781759, 51.1566899, -0.2781759, 51.1566899 ], "geometry": { "type": "Point", "coordinates": [ -0.2781759, 51.1566899 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20418043" }, "bbox": [ -0.2750429, 51.1591042, -0.2750429, 51.1591042 ], "geometry": { "type": "Point", "coordinates": [ -0.2750429, 51.1591042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29452831" }, "bbox": [ -0.151161, 51.1925895, -0.151161, 51.1925895 ], "geometry": { "type": "Point", "coordinates": [ -0.151161, 51.1925895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25455480" }, "bbox": [ -0.2044986, 51.1977162, -0.2044986, 51.1977162 ], "geometry": { "type": "Point", "coordinates": [ -0.2044986, 51.1977162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25457590" }, "bbox": [ -0.201145, 51.1986178, -0.201145, 51.1986178 ], "geometry": { "type": "Point", "coordinates": [ -0.201145, 51.1986178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32429301" }, "bbox": [ -0.1003083, 51.1619172, -0.1003083, 51.1619172 ], "geometry": { "type": "Point", "coordinates": [ -0.1003083, 51.1619172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38583805" }, "bbox": [ -0.0162842, 51.3047208, -0.0162842, 51.3047208 ], "geometry": { "type": "Point", "coordinates": [ -0.0162842, 51.3047208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93385342" }, "bbox": [ -0.6646743, 51.1370741, -0.6646743, 51.1370741 ], "geometry": { "type": "Point", "coordinates": [ -0.6646743, 51.1370741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93383547" }, "bbox": [ -0.6669056, 51.1379952, -0.6669056, 51.1379952 ], "geometry": { "type": "Point", "coordinates": [ -0.6669056, 51.1379952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93383254" }, "bbox": [ -0.667367, 51.1385938, -0.667367, 51.1385938 ], "geometry": { "type": "Point", "coordinates": [ -0.667367, 51.1385938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93382568" }, "bbox": [ -0.6681451, 51.1397498, -0.6681451, 51.1397498 ], "geometry": { "type": "Point", "coordinates": [ -0.6681451, 51.1397498 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93384073" }, "bbox": [ -0.6650317, 51.1395274, -0.6650317, 51.1395274 ], "geometry": { "type": "Point", "coordinates": [ -0.6650317, 51.1395274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93384181" }, "bbox": [ -0.6661462, 51.1410521, -0.6661462, 51.1410521 ], "geometry": { "type": "Point", "coordinates": [ -0.6661462, 51.1410521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93382378" }, "bbox": [ -0.6685578, 51.1408385, -0.6685578, 51.1408385 ], "geometry": { "type": "Point", "coordinates": [ -0.6685578, 51.1408385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465880" }, "bbox": [ -0.33271, 51.2089826, -0.33271, 51.2089826 ], "geometry": { "type": "Point", "coordinates": [ -0.33271, 51.2089826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16471676" }, "bbox": [ -0.3379926, 51.2173872, -0.3379926, 51.2173872 ], "geometry": { "type": "Point", "coordinates": [ -0.3379926, 51.2173872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16470472" }, "bbox": [ -0.3396352, 51.2169592, -0.3396352, 51.2169592 ], "geometry": { "type": "Point", "coordinates": [ -0.3396352, 51.2169592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91577841" }, "bbox": [ -0.6844342, 51.3084322, -0.6844342, 51.3084322 ], "geometry": { "type": "Point", "coordinates": [ -0.6844342, 51.3084322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92591594" }, "bbox": [ -0.6772942, 51.3283733, -0.6772942, 51.3283733 ], "geometry": { "type": "Point", "coordinates": [ -0.6772942, 51.3283733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92578379" }, "bbox": [ -0.6694756, 51.3118392, -0.6694756, 51.3118392 ], "geometry": { "type": "Point", "coordinates": [ -0.6694756, 51.3118392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91587530" }, "bbox": [ -0.6829974, 51.3150878, -0.6829974, 51.3150878 ], "geometry": { "type": "Point", "coordinates": [ -0.6829974, 51.3150878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93600925" }, "bbox": [ -0.6625109, 51.3330634, -0.6625109, 51.3330634 ], "geometry": { "type": "Point", "coordinates": [ -0.6625109, 51.3330634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99417917" }, "bbox": [ -0.5742329, 51.1611782, -0.5742329, 51.1611782 ], "geometry": { "type": "Point", "coordinates": [ -0.5742329, 51.1611782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99426244" }, "bbox": [ -0.5764726, 51.172517, -0.5764726, 51.172517 ], "geometry": { "type": "Point", "coordinates": [ -0.5764726, 51.172517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00413981" }, "bbox": [ -0.5654288, 51.1667686, -0.5654288, 51.1667686 ], "geometry": { "type": "Point", "coordinates": [ -0.5654288, 51.1667686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00413291" }, "bbox": [ -0.5661283, 51.1677887, -0.5661283, 51.1677887 ], "geometry": { "type": "Point", "coordinates": [ -0.5661283, 51.1677887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10380042" }, "bbox": [ -0.4293393, 51.1345334, -0.4293393, 51.1345334 ], "geometry": { "type": "Point", "coordinates": [ -0.4293393, 51.1345334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28447997" }, "bbox": [ -0.1590807, 51.189579, -0.1590807, 51.189579 ], "geometry": { "type": "Point", "coordinates": [ -0.1590807, 51.189579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30449151" }, "bbox": [ -0.1281747, 51.1850714, -0.1281747, 51.1850714 ], "geometry": { "type": "Point", "coordinates": [ -0.1281747, 51.1850714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30444425" }, "bbox": [ -0.1349985, 51.18265, -0.1349985, 51.18265 ], "geometry": { "type": "Point", "coordinates": [ -0.1349985, 51.18265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30448364" }, "bbox": [ -0.1292858, 51.1860698, -0.1292858, 51.1860698 ], "geometry": { "type": "Point", "coordinates": [ -0.1292858, 51.1860698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30448477" }, "bbox": [ -0.1289738, 51.1872459, -0.1289738, 51.1872459 ], "geometry": { "type": "Point", "coordinates": [ -0.1289738, 51.1872459 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30450859" }, "bbox": [ -0.1396007, 51.1947402, -0.1396007, 51.1947402 ], "geometry": { "type": "Point", "coordinates": [ -0.1396007, 51.1947402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05349571" }, "bbox": [ -0.4876889, 51.1019882, -0.4876889, 51.1019882 ], "geometry": { "type": "Point", "coordinates": [ -0.4876889, 51.1019882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11413984" }, "bbox": [ -0.4082126, 51.1648573, -0.4082126, 51.1648573 ], "geometry": { "type": "Point", "coordinates": [ -0.4082126, 51.1648573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11414761" }, "bbox": [ -0.4071204, 51.1624756, -0.4071204, 51.1624756 ], "geometry": { "type": "Point", "coordinates": [ -0.4071204, 51.1624756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11415154" }, "bbox": [ -0.4064191, 51.1624155, -0.4064191, 51.1624155 ], "geometry": { "type": "Point", "coordinates": [ -0.4064191, 51.1624155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20483644" }, "bbox": [ -0.2778412, 51.2223875, -0.2778412, 51.2223875 ], "geometry": { "type": "Point", "coordinates": [ -0.2778412, 51.2223875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20484715" }, "bbox": [ -0.2764434, 51.2198458, -0.2764434, 51.2198458 ], "geometry": { "type": "Point", "coordinates": [ -0.2764434, 51.2198458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20485504" }, "bbox": [ -0.2752883, 51.2188161, -0.2752883, 51.2188161 ], "geometry": { "type": "Point", "coordinates": [ -0.2752883, 51.2188161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20478076" }, "bbox": [ -0.2718282, 51.2163642, -0.2718282, 51.2163642 ], "geometry": { "type": "Point", "coordinates": [ -0.2718282, 51.2163642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20478887" }, "bbox": [ -0.2705525, 51.2172825, -0.2705525, 51.2172825 ], "geometry": { "type": "Point", "coordinates": [ -0.2705525, 51.2172825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26442557" }, "bbox": [ -0.1948146, 51.1864341, -0.1948146, 51.1864341 ], "geometry": { "type": "Point", "coordinates": [ -0.1948146, 51.1864341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26446577" }, "bbox": [ -0.189133, 51.1882427, -0.189133, 51.1882427 ], "geometry": { "type": "Point", "coordinates": [ -0.189133, 51.1882427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23444001" }, "bbox": [ -0.2360483, 51.1818652, -0.2360483, 51.1818652 ], "geometry": { "type": "Point", "coordinates": [ -0.2360483, 51.1818652 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23441344" }, "bbox": [ -0.2395856, 51.1857691, -0.2395856, 51.1857691 ], "geometry": { "type": "Point", "coordinates": [ -0.2395856, 51.1857691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23444405" }, "bbox": [ -0.2351482, 51.1824417, -0.2351482, 51.1824417 ], "geometry": { "type": "Point", "coordinates": [ -0.2351482, 51.1824417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24445668" }, "bbox": [ -0.2190392, 51.187737, -0.2190392, 51.187737 ], "geometry": { "type": "Point", "coordinates": [ -0.2190392, 51.187737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24449751" }, "bbox": [ -0.2131927, 51.1862405, -0.2131927, 51.1862405 ], "geometry": { "type": "Point", "coordinates": [ -0.2131927, 51.1862405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24445193" }, "bbox": [ -0.2197947, 51.1898739, -0.2197947, 51.1898739 ], "geometry": { "type": "Point", "coordinates": [ -0.2197947, 51.1898739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24443786" }, "bbox": [ -0.2218679, 51.1893585, -0.2218679, 51.1893585 ], "geometry": { "type": "Point", "coordinates": [ -0.2218679, 51.1893585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03375336" }, "bbox": [ -0.5223977, 51.1262743, -0.5223977, 51.1262743 ], "geometry": { "type": "Point", "coordinates": [ -0.5223977, 51.1262743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03375216" }, "bbox": [ -0.5216249, 51.1244312, -0.5216249, 51.1244312 ], "geometry": { "type": "Point", "coordinates": [ -0.5216249, 51.1244312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36523536" }, "bbox": [ -0.0475939, 51.2541383, -0.0475939, 51.2541383 ], "geometry": { "type": "Point", "coordinates": [ -0.0475939, 51.2541383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21446057" }, "bbox": [ -0.261457, 51.1885052, -0.261457, 51.1885052 ], "geometry": { "type": "Point", "coordinates": [ -0.261457, 51.1885052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22453096" }, "bbox": [ -0.2512049, 51.1998412, -0.2512049, 51.1998412 ], "geometry": { "type": "Point", "coordinates": [ -0.2512049, 51.1998412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22451088" }, "bbox": [ -0.253864, 51.1990823, -0.253864, 51.1990823 ], "geometry": { "type": "Point", "coordinates": [ -0.253864, 51.1990823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403656" }, "bbox": [ -0.3801621, 51.1531399, -0.3801621, 51.1531399 ], "geometry": { "type": "Point", "coordinates": [ -0.3801621, 51.1531399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13404456" }, "bbox": [ -0.3791283, 51.1531501, -0.3791283, 51.1531501 ], "geometry": { "type": "Point", "coordinates": [ -0.3791283, 51.1531501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13404460" }, "bbox": [ -0.3796137, 51.1533803, -0.3796137, 51.1533803 ], "geometry": { "type": "Point", "coordinates": [ -0.3796137, 51.1533803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19407225" }, "bbox": [ -0.2897023, 51.1489337, -0.2897023, 51.1489337 ], "geometry": { "type": "Point", "coordinates": [ -0.2897023, 51.1489337 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408537" }, "bbox": [ -0.2876976, 51.150006, -0.2876976, 51.150006 ], "geometry": { "type": "Point", "coordinates": [ -0.2876976, 51.150006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11422667" }, "bbox": [ -0.4098625, 51.1724805, -0.4098625, 51.1724805 ], "geometry": { "type": "Point", "coordinates": [ -0.4098625, 51.1724805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10377401" }, "bbox": [ -0.4192401, 51.1216616, -0.4192401, 51.1216616 ], "geometry": { "type": "Point", "coordinates": [ -0.4192401, 51.1216616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10364660" }, "bbox": [ -0.4230819, 51.1180029, -0.4230819, 51.1180029 ], "geometry": { "type": "Point", "coordinates": [ -0.4230819, 51.1180029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10363658" }, "bbox": [ -0.424553, 51.1179463, -0.424553, 51.1179463 ], "geometry": { "type": "Point", "coordinates": [ -0.424553, 51.1179463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27521798" }, "bbox": [ -0.1789884, 51.2614821, -0.1789884, 51.2614821 ], "geometry": { "type": "Point", "coordinates": [ -0.1789884, 51.2614821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27528711" }, "bbox": [ -0.1696074, 51.2541543, -0.1696074, 51.2541543 ], "geometry": { "type": "Point", "coordinates": [ -0.1696074, 51.2541543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27524537" }, "bbox": [ -0.1749283, 51.2562864, -0.1749283, 51.2562864 ], "geometry": { "type": "Point", "coordinates": [ -0.1749283, 51.2562864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27529565" }, "bbox": [ -0.1668847, 51.2582465, -0.1668847, 51.2582465 ], "geometry": { "type": "Point", "coordinates": [ -0.1668847, 51.2582465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27528894" }, "bbox": [ -0.1688869, 51.2613815, -0.1688869, 51.2613815 ], "geometry": { "type": "Point", "coordinates": [ -0.1688869, 51.2613815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27527355" }, "bbox": [ -0.1709845, 51.2576005, -0.1709845, 51.2576005 ], "geometry": { "type": "Point", "coordinates": [ -0.1709845, 51.2576005 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27528284" }, "bbox": [ -0.1691129, 51.260354, -0.1691129, 51.260354 ], "geometry": { "type": "Point", "coordinates": [ -0.1691129, 51.260354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27532016" }, "bbox": [ -0.1776584, 51.2634709, -0.1776584, 51.2634709 ], "geometry": { "type": "Point", "coordinates": [ -0.1776584, 51.2634709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28520182" }, "bbox": [ -0.1680856, 51.2604432, -0.1680856, 51.2604432 ], "geometry": { "type": "Point", "coordinates": [ -0.1680856, 51.2604432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16405859" }, "bbox": [ -0.3343603, 51.1528446, -0.3343603, 51.1528446 ], "geometry": { "type": "Point", "coordinates": [ -0.3343603, 51.1528446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11414565" }, "bbox": [ -0.4077756, 51.1633954, -0.4077756, 51.1633954 ], "geometry": { "type": "Point", "coordinates": [ -0.4077756, 51.1633954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11412868" }, "bbox": [ -0.4099213, 51.1636146, -0.4099213, 51.1636146 ], "geometry": { "type": "Point", "coordinates": [ -0.4099213, 51.1636146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11413463" }, "bbox": [ -0.408822, 51.1630396, -0.408822, 51.1630396 ], "geometry": { "type": "Point", "coordinates": [ -0.408822, 51.1630396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09389655" }, "bbox": [ -0.4294373, 51.1356572, -0.4294373, 51.1356572 ], "geometry": { "type": "Point", "coordinates": [ -0.4294373, 51.1356572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96393127" }, "bbox": [ -0.6244473, 51.1446491, -0.6244473, 51.1446491 ], "geometry": { "type": "Point", "coordinates": [ -0.6244473, 51.1446491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19395695" }, "bbox": [ -0.2921665, 51.1462827, -0.2921665, 51.1462827 ], "geometry": { "type": "Point", "coordinates": [ -0.2921665, 51.1462827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19392586" }, "bbox": [ -0.2966682, 51.1457198, -0.2966682, 51.1457198 ], "geometry": { "type": "Point", "coordinates": [ -0.2966682, 51.1457198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399451" }, "bbox": [ -0.2866337, 51.1422526, -0.2866337, 51.1422526 ], "geometry": { "type": "Point", "coordinates": [ -0.2866337, 51.1422526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19398453" }, "bbox": [ -0.2881747, 51.1424215, -0.2881747, 51.1424215 ], "geometry": { "type": "Point", "coordinates": [ -0.2881747, 51.1424215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19399738" }, "bbox": [ -0.2864149, 51.1411392, -0.2864149, 51.1411392 ], "geometry": { "type": "Point", "coordinates": [ -0.2864149, 51.1411392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19408249" }, "bbox": [ -0.2879415, 51.1514705, -0.2879415, 51.1514705 ], "geometry": { "type": "Point", "coordinates": [ -0.2879415, 51.1514705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19407943" }, "bbox": [ -0.2884658, 51.1506914, -0.2884658, 51.1506914 ], "geometry": { "type": "Point", "coordinates": [ -0.2884658, 51.1506914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20390480" }, "bbox": [ -0.2847756, 51.1449985, -0.2847756, 51.1449985 ], "geometry": { "type": "Point", "coordinates": [ -0.2847756, 51.1449985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20390260" }, "bbox": [ -0.2850882, 51.1432084, -0.2850882, 51.1432084 ], "geometry": { "type": "Point", "coordinates": [ -0.2850882, 51.1432084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20400402" }, "bbox": [ -0.2849991, 51.1465658, -0.2849991, 51.1465658 ], "geometry": { "type": "Point", "coordinates": [ -0.2849991, 51.1465658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20400305" }, "bbox": [ -0.2855422, 51.1471821, -0.2855422, 51.1471821 ], "geometry": { "type": "Point", "coordinates": [ -0.2855422, 51.1471821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20400107" }, "bbox": [ -0.2853705, 51.1473849, -0.2853705, 51.1473849 ], "geometry": { "type": "Point", "coordinates": [ -0.2853705, 51.1473849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93497596" }, "bbox": [ -0.6582551, 51.2411553, -0.6582551, 51.2411553 ], "geometry": { "type": "Point", "coordinates": [ -0.6582551, 51.2411553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97388076" }, "bbox": [ -0.603204, 51.1398133, -0.603204, 51.1398133 ], "geometry": { "type": "Point", "coordinates": [ -0.603204, 51.1398133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97385170" }, "bbox": [ -0.607514, 51.1394247, -0.607514, 51.1394247 ], "geometry": { "type": "Point", "coordinates": [ -0.607514, 51.1394247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97381257" }, "bbox": [ -0.6131066, 51.1382647, -0.6131066, 51.1382647 ], "geometry": { "type": "Point", "coordinates": [ -0.6131066, 51.1382647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97391838" }, "bbox": [ -0.6118076, 51.1454863, -0.6118076, 51.1454863 ], "geometry": { "type": "Point", "coordinates": [ -0.6118076, 51.1454863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97394527" }, "bbox": [ -0.6080873, 51.1443275, -0.6080873, 51.1443275 ], "geometry": { "type": "Point", "coordinates": [ -0.6080873, 51.1443275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97390552" }, "bbox": [ -0.6137183, 51.1467429, -0.6137183, 51.1467429 ], "geometry": { "type": "Point", "coordinates": [ -0.6137183, 51.1467429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425586" }, "bbox": [ 0.0370993, 51.167344, 0.0370993, 51.167344 ], "geometry": { "type": "Point", "coordinates": [ 0.0370993, 51.167344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425478" }, "bbox": [ 0.0373941, 51.1665082, 0.0373941, 51.1665082 ], "geometry": { "type": "Point", "coordinates": [ 0.0373941, 51.1665082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42425285" }, "bbox": [ 0.0372634, 51.1670292, 0.0372634, 51.1670292 ], "geometry": { "type": "Point", "coordinates": [ 0.0372634, 51.1670292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25448681" }, "bbox": [ -0.2004012, 51.1886437, -0.2004012, 51.1886437 ], "geometry": { "type": "Point", "coordinates": [ -0.2004012, 51.1886437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36533449" }, "bbox": [ -0.0473465, 51.2645254, -0.0473465, 51.2645254 ], "geometry": { "type": "Point", "coordinates": [ -0.0473465, 51.2645254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36533075" }, "bbox": [ -0.0474665, 51.2660159, -0.0474665, 51.2660159 ], "geometry": { "type": "Point", "coordinates": [ -0.0474665, 51.2660159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86584038" }, "bbox": [ -0.7615808, 51.3179369, -0.7615808, 51.3179369 ], "geometry": { "type": "Point", "coordinates": [ -0.7615808, 51.3179369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85477011" }, "bbox": [ -0.7743442, 51.2167418, -0.7743442, 51.2167418 ], "geometry": { "type": "Point", "coordinates": [ -0.7743442, 51.2167418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85466597" }, "bbox": [ -0.7752363, 51.2154836, -0.7752363, 51.2154836 ], "geometry": { "type": "Point", "coordinates": [ -0.7752363, 51.2154836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85475204" }, "bbox": [ -0.7769129, 51.2162355, -0.7769129, 51.2162355 ], "geometry": { "type": "Point", "coordinates": [ -0.7769129, 51.2162355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39533771" }, "bbox": [ -0.0036762, 51.2654927, -0.0036762, 51.2654927 ], "geometry": { "type": "Point", "coordinates": [ -0.0036762, 51.2654927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35537732" }, "bbox": [ -0.0553178, 51.2632819, -0.0553178, 51.2632819 ], "geometry": { "type": "Point", "coordinates": [ -0.0553178, 51.2632819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35539305" }, "bbox": [ -0.05349, 51.2606217, -0.05349, 51.2606217 ], "geometry": { "type": "Point", "coordinates": [ -0.05349, 51.2606217 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35537718" }, "bbox": [ -0.0554596, 51.2613731, -0.0554596, 51.2613731 ], "geometry": { "type": "Point", "coordinates": [ -0.0554596, 51.2613731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35536113" }, "bbox": [ -0.0579616, 51.2611738, -0.0579616, 51.2611738 ], "geometry": { "type": "Point", "coordinates": [ -0.0579616, 51.2611738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37539898" }, "bbox": [ -0.0231384, 51.2688643, -0.0231384, 51.2688643 ], "geometry": { "type": "Point", "coordinates": [ -0.0231384, 51.2688643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34500228" }, "bbox": [ -0.0816714, 51.2360396, -0.0816714, 51.2360396 ], "geometry": { "type": "Point", "coordinates": [ -0.0816714, 51.2360396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33529330" }, "bbox": [ -0.082218, 51.2540749, -0.082218, 51.2540749 ], "geometry": { "type": "Point", "coordinates": [ -0.082218, 51.2540749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33529255" }, "bbox": [ -0.0825118, 51.2562316, -0.0825118, 51.2562316 ], "geometry": { "type": "Point", "coordinates": [ -0.0825118, 51.2562316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33526242" }, "bbox": [ -0.0866282, 51.2553206, -0.0866282, 51.2553206 ], "geometry": { "type": "Point", "coordinates": [ -0.0866282, 51.2553206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33524641" }, "bbox": [ -0.0889333, 51.2553022, -0.0889333, 51.2553022 ], "geometry": { "type": "Point", "coordinates": [ -0.0889333, 51.2553022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33525456" }, "bbox": [ -0.0877827, 51.2566889, -0.0877827, 51.2566889 ], "geometry": { "type": "Point", "coordinates": [ -0.0877827, 51.2566889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33523144" }, "bbox": [ -0.0911274, 51.255624, -0.0911274, 51.255624 ], "geometry": { "type": "Point", "coordinates": [ -0.0911274, 51.255624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34521531" }, "bbox": [ -0.0790587, 51.2542083, -0.0790587, 51.2542083 ], "geometry": { "type": "Point", "coordinates": [ -0.0790587, 51.2542083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35527494" }, "bbox": [ -0.0559445, 51.2594696, -0.0559445, 51.2594696 ], "geometry": { "type": "Point", "coordinates": [ -0.0559445, 51.2594696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08475543" }, "bbox": [ -0.4471931, 51.2158022, -0.4471931, 51.2158022 ], "geometry": { "type": "Point", "coordinates": [ -0.4471931, 51.2158022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08475047" }, "bbox": [ -0.4478921, 51.2162355, -0.4478921, 51.2162355 ], "geometry": { "type": "Point", "coordinates": [ -0.4478921, 51.2162355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08505286" }, "bbox": [ -0.4465353, 51.2465831, -0.4465353, 51.2465831 ], "geometry": { "type": "Point", "coordinates": [ -0.4465353, 51.2465831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08506679" }, "bbox": [ -0.4445752, 51.2459588, -0.4445752, 51.2459588 ], "geometry": { "type": "Point", "coordinates": [ -0.4445752, 51.2459588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08506934" }, "bbox": [ -0.4440293, 51.2419896, -0.4440293, 51.2419896 ], "geometry": { "type": "Point", "coordinates": [ -0.4440293, 51.2419896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08505528" }, "bbox": [ -0.4471003, 51.2418909, -0.4471003, 51.2418909 ], "geometry": { "type": "Point", "coordinates": [ -0.4471003, 51.2418909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08506145" }, "bbox": [ -0.4453541, 51.242892, -0.4453541, 51.242892 ], "geometry": { "type": "Point", "coordinates": [ -0.4453541, 51.242892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08506653" }, "bbox": [ -0.4441846, 51.2439412, -0.4441846, 51.2439412 ], "geometry": { "type": "Point", "coordinates": [ -0.4441846, 51.2439412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08505836" }, "bbox": [ -0.4453954, 51.2415631, -0.4453954, 51.2415631 ], "geometry": { "type": "Point", "coordinates": [ -0.4453954, 51.2415631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08507542" }, "bbox": [ -0.4452215, 51.2427504, -0.4452215, 51.2427504 ], "geometry": { "type": "Point", "coordinates": [ -0.4452215, 51.2427504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08504889" }, "bbox": [ -0.4472064, 51.2468531, -0.4472064, 51.2468531 ], "geometry": { "type": "Point", "coordinates": [ -0.4472064, 51.2468531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08515633" }, "bbox": [ -0.446094, 51.2506755, -0.446094, 51.2506755 ], "geometry": { "type": "Point", "coordinates": [ -0.446094, 51.2506755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08515119" }, "bbox": [ -0.44646, 51.2496166, -0.44646, 51.2496166 ], "geometry": { "type": "Point", "coordinates": [ -0.44646, 51.2496166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08514110" }, "bbox": [ -0.4473842, 51.2486214, -0.4473842, 51.2486214 ], "geometry": { "type": "Point", "coordinates": [ -0.4473842, 51.2486214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39576175" }, "bbox": [ 0.0016983, 51.3018122, 0.0016983, 51.3018122 ], "geometry": { "type": "Point", "coordinates": [ 0.0016983, 51.3018122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39573877" }, "bbox": [ -0.0013708, 51.3016893, -0.0013708, 51.3016893 ], "geometry": { "type": "Point", "coordinates": [ -0.0013708, 51.3016893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39578882" }, "bbox": [ 0.0052746, 51.3022922, 0.0052746, 51.3022922 ], "geometry": { "type": "Point", "coordinates": [ 0.0052746, 51.3022922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39579261" }, "bbox": [ 0.0054265, 51.3006794, 0.0054265, 51.3006794 ], "geometry": { "type": "Point", "coordinates": [ 0.0054265, 51.3006794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39569960" }, "bbox": [ 0.0063791, 51.2918643, 0.0063791, 51.2918643 ], "geometry": { "type": "Point", "coordinates": [ 0.0063791, 51.2918643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40591723" }, "bbox": [ 0.009775, 51.314818, 0.009775, 51.314818 ], "geometry": { "type": "Point", "coordinates": [ 0.009775, 51.314818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94594333" }, "bbox": [ -0.6461565, 51.3251648, -0.6461565, 51.3251648 ], "geometry": { "type": "Point", "coordinates": [ -0.6461565, 51.3251648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94593729" }, "bbox": [ -0.647457, 51.3249964, -0.647457, 51.3249964 ], "geometry": { "type": "Point", "coordinates": [ -0.647457, 51.3249964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04438419" }, "bbox": [ -0.5024232, 51.1785244, -0.5024232, 51.1785244 ], "geometry": { "type": "Point", "coordinates": [ -0.5024232, 51.1785244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04422901" }, "bbox": [ -0.5099692, 51.1678143, -0.5099692, 51.1678143 ], "geometry": { "type": "Point", "coordinates": [ -0.5099692, 51.1678143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04428915" }, "bbox": [ -0.5011807, 51.1691252, -0.5011807, 51.1691252 ], "geometry": { "type": "Point", "coordinates": [ -0.5011807, 51.1691252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04428434" }, "bbox": [ -0.5014705, 51.170268, -0.5014705, 51.170268 ], "geometry": { "type": "Point", "coordinates": [ -0.5014705, 51.170268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04429330" }, "bbox": [ -0.5005353, 51.1703042, -0.5005353, 51.1703042 ], "geometry": { "type": "Point", "coordinates": [ -0.5005353, 51.1703042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04428800" }, "bbox": [ -0.5014244, 51.1677303, -0.5014244, 51.1677303 ], "geometry": { "type": "Point", "coordinates": [ -0.5014244, 51.1677303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04428509" }, "bbox": [ -0.5016472, 51.1684423, -0.5016472, 51.1684423 ], "geometry": { "type": "Point", "coordinates": [ -0.5016472, 51.1684423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04429645" }, "bbox": [ -0.5005479, 51.1717531, -0.5005479, 51.1717531 ], "geometry": { "type": "Point", "coordinates": [ -0.5005479, 51.1717531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04423059" }, "bbox": [ -0.5093806, 51.1725894, -0.5093806, 51.1725894 ], "geometry": { "type": "Point", "coordinates": [ -0.5093806, 51.1725894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04428243" }, "bbox": [ -0.5023484, 51.1714393, -0.5023484, 51.1714393 ], "geometry": { "type": "Point", "coordinates": [ -0.5023484, 51.1714393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04425161" }, "bbox": [ -0.506132, 51.1733081, -0.506132, 51.1733081 ], "geometry": { "type": "Point", "coordinates": [ -0.506132, 51.1733081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04425247" }, "bbox": [ -0.5065958, 51.1719477, -0.5065958, 51.1719477 ], "geometry": { "type": "Point", "coordinates": [ -0.5065958, 51.1719477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04419576" }, "bbox": [ -0.5003279, 51.1655022, -0.5003279, 51.1655022 ], "geometry": { "type": "Point", "coordinates": [ -0.5003279, 51.1655022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04419087" }, "bbox": [ -0.5009382, 51.1666249, -0.5009382, 51.1666249 ], "geometry": { "type": "Point", "coordinates": [ -0.5009382, 51.1666249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05433010" }, "bbox": [ -0.4949717, 51.1779966, -0.4949717, 51.1779966 ], "geometry": { "type": "Point", "coordinates": [ -0.4949717, 51.1779966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05434744" }, "bbox": [ -0.4945273, 51.1804328, -0.4945273, 51.1804328 ], "geometry": { "type": "Point", "coordinates": [ -0.4945273, 51.1804328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05435802" }, "bbox": [ -0.4912765, 51.1768262, -0.4912765, 51.1768262 ], "geometry": { "type": "Point", "coordinates": [ -0.4912765, 51.1768262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05436726" }, "bbox": [ -0.4898213, 51.1789335, -0.4898213, 51.1789335 ], "geometry": { "type": "Point", "coordinates": [ -0.4898213, 51.1789335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05435130" }, "bbox": [ -0.4905452, 51.1794232, -0.4905452, 51.1794232 ], "geometry": { "type": "Point", "coordinates": [ -0.4905452, 51.1794232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431637" }, "bbox": [ -0.4968163, 51.1798447, -0.4968163, 51.1798447 ], "geometry": { "type": "Point", "coordinates": [ -0.4968163, 51.1798447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05423485" }, "bbox": [ -0.4960925, 51.1750989, -0.4960925, 51.1750989 ], "geometry": { "type": "Point", "coordinates": [ -0.4960925, 51.1750989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05425061" }, "bbox": [ -0.4917709, 51.1728885, -0.4917709, 51.1728885 ], "geometry": { "type": "Point", "coordinates": [ -0.4917709, 51.1728885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05420262" }, "bbox": [ -0.4981416, 51.1737473, -0.4981416, 51.1737473 ], "geometry": { "type": "Point", "coordinates": [ -0.4981416, 51.1737473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05411081" }, "bbox": [ -0.4983632, 51.1659505, -0.4983632, 51.1659505 ], "geometry": { "type": "Point", "coordinates": [ -0.4983632, 51.1659505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05410791" }, "bbox": [ -0.4986962, 51.1667952, -0.4986962, 51.1667952 ], "geometry": { "type": "Point", "coordinates": [ -0.4986962, 51.1667952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06420595" }, "bbox": [ -0.4770254, 51.1738367, -0.4770254, 51.1738367 ], "geometry": { "type": "Point", "coordinates": [ -0.4770254, 51.1738367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85423948" }, "bbox": [ -0.7797224, 51.1752222, -0.7797224, 51.1752222 ], "geometry": { "type": "Point", "coordinates": [ -0.7797224, 51.1752222 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18484942" }, "bbox": [ -0.3046114, 51.2228789, -0.3046114, 51.2228789 ], "geometry": { "type": "Point", "coordinates": [ -0.3046114, 51.2228789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36449284" }, "bbox": [ -0.0421604, 51.1862257, -0.0421604, 51.1862257 ], "geometry": { "type": "Point", "coordinates": [ -0.0421604, 51.1862257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36449575" }, "bbox": [ -0.0417593, 51.1856618, -0.0417593, 51.1856618 ], "geometry": { "type": "Point", "coordinates": [ -0.0417593, 51.1856618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27561258" }, "bbox": [ -0.1781326, 51.2941001, -0.1781326, 51.2941001 ], "geometry": { "type": "Point", "coordinates": [ -0.1781326, 51.2941001 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27550195" }, "bbox": [ -0.1802398, 51.2885175, -0.1802398, 51.2885175 ], "geometry": { "type": "Point", "coordinates": [ -0.1802398, 51.2885175 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27563022" }, "bbox": [ -0.1761218, 51.2900021, -0.1761218, 51.2900021 ], "geometry": { "type": "Point", "coordinates": [ -0.1761218, 51.2900021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00724408" }, "bbox": [ -0.5563439, 51.4387704, -0.5563439, 51.4387704 ], "geometry": { "type": "Point", "coordinates": [ -0.5563439, 51.4387704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00727503" }, "bbox": [ -0.5524824, 51.4388868, -0.5524824, 51.4388868 ], "geometry": { "type": "Point", "coordinates": [ -0.5524824, 51.4388868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00720455" }, "bbox": [ -0.5606243, 51.4423324, -0.5606243, 51.4423324 ], "geometry": { "type": "Point", "coordinates": [ -0.5606243, 51.4423324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99737407" }, "bbox": [ -0.5658934, 51.4477397, -0.5658934, 51.4477397 ], "geometry": { "type": "Point", "coordinates": [ -0.5658934, 51.4477397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00722359" }, "bbox": [ -0.5586997, 51.4430187, -0.5586997, 51.4430187 ], "geometry": { "type": "Point", "coordinates": [ -0.5586997, 51.4430187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99726996" }, "bbox": [ -0.5663349, 51.4465358, -0.5663349, 51.4465358 ], "geometry": { "type": "Point", "coordinates": [ -0.5663349, 51.4465358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00722520" }, "bbox": [ -0.5589995, 51.4399937, -0.5589995, 51.4399937 ], "geometry": { "type": "Point", "coordinates": [ -0.5589995, 51.4399937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12455441" }, "bbox": [ -0.3916455, 51.197011, -0.3916455, 51.197011 ], "geometry": { "type": "Point", "coordinates": [ -0.3916455, 51.197011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12442693" }, "bbox": [ -0.3947414, 51.192621, -0.3947414, 51.192621 ], "geometry": { "type": "Point", "coordinates": [ -0.3947414, 51.192621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12452219" }, "bbox": [ -0.395251, 51.1949301, -0.395251, 51.1949301 ], "geometry": { "type": "Point", "coordinates": [ -0.395251, 51.1949301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12452005" }, "bbox": [ -0.3956993, 51.1938372, -0.3956993, 51.1938372 ], "geometry": { "type": "Point", "coordinates": [ -0.3956993, 51.1938372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12451525" }, "bbox": [ -0.3963125, 51.1954471, -0.3963125, 51.1954471 ], "geometry": { "type": "Point", "coordinates": [ -0.3963125, 51.1954471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38482184" }, "bbox": [ -0.0220021, 51.2220395, -0.0220021, 51.2220395 ], "geometry": { "type": "Point", "coordinates": [ -0.0220021, 51.2220395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38492448" }, "bbox": [ -0.0213814, 51.2279411, -0.0213814, 51.2279411 ], "geometry": { "type": "Point", "coordinates": [ -0.0213814, 51.2279411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38490410" }, "bbox": [ -0.0246016, 51.2242194, -0.0246016, 51.2242194 ], "geometry": { "type": "Point", "coordinates": [ -0.0246016, 51.2242194 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37501535" }, "bbox": [ -0.0366449, 51.2359341, -0.0366449, 51.2359341 ], "geometry": { "type": "Point", "coordinates": [ -0.0366449, 51.2359341 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08546638" }, "bbox": [ -0.4434871, 51.277849, -0.4434871, 51.277849 ], "geometry": { "type": "Point", "coordinates": [ -0.4434871, 51.277849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08546222" }, "bbox": [ -0.44411, 51.2768016, -0.44411, 51.2768016 ], "geometry": { "type": "Point", "coordinates": [ -0.44411, 51.2768016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19598982" }, "bbox": [ -0.280715, 51.3248838, -0.280715, 51.3248838 ], "geometry": { "type": "Point", "coordinates": [ -0.280715, 51.3248838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519883" }, "bbox": [ -0.5112096, 51.256304, -0.5112096, 51.256304 ], "geometry": { "type": "Point", "coordinates": [ -0.5112096, 51.256304 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03518866" }, "bbox": [ -0.5131513, 51.2544118, -0.5131513, 51.2544118 ], "geometry": { "type": "Point", "coordinates": [ -0.5131513, 51.2544118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03517178" }, "bbox": [ -0.5151582, 51.2557627, -0.5151582, 51.2557627 ], "geometry": { "type": "Point", "coordinates": [ -0.5151582, 51.2557627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03518140" }, "bbox": [ -0.513968, 51.2524549, -0.513968, 51.2524549 ], "geometry": { "type": "Point", "coordinates": [ -0.513968, 51.2524549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03516560" }, "bbox": [ -0.5160578, 51.2540539, -0.5160578, 51.2540539 ], "geometry": { "type": "Point", "coordinates": [ -0.5160578, 51.2540539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03516477" }, "bbox": [ -0.5165215, 51.2555109, -0.5165215, 51.2555109 ], "geometry": { "type": "Point", "coordinates": [ -0.5165215, 51.2555109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04511634" }, "bbox": [ -0.508814, 51.2518591, -0.508814, 51.2518591 ], "geometry": { "type": "Point", "coordinates": [ -0.508814, 51.2518591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04716726" }, "bbox": [ -0.4955955, 51.4306916, -0.4955955, 51.4306916 ], "geometry": { "type": "Point", "coordinates": [ -0.4955955, 51.4306916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04718331" }, "bbox": [ -0.4936145, 51.4311352, -0.4936145, 51.4311352 ], "geometry": { "type": "Point", "coordinates": [ -0.4936145, 51.4311352 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04719145" }, "bbox": [ -0.4923637, 51.4323616, -0.4923637, 51.4323616 ], "geometry": { "type": "Point", "coordinates": [ -0.4923637, 51.4323616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03721519" }, "bbox": [ -0.5172302, 51.4393769, -0.5172302, 51.4393769 ], "geometry": { "type": "Point", "coordinates": [ -0.5172302, 51.4393769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04714946" }, "bbox": [ -0.4982774, 51.4325265, -0.4982774, 51.4325265 ], "geometry": { "type": "Point", "coordinates": [ -0.4982774, 51.4325265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04719332" }, "bbox": [ -0.4919192, 51.4311114, -0.4919192, 51.4311114 ], "geometry": { "type": "Point", "coordinates": [ -0.4919192, 51.4311114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04716131" }, "bbox": [ -0.4966319, 51.4311753, -0.4966319, 51.4311753 ], "geometry": { "type": "Point", "coordinates": [ -0.4966319, 51.4311753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92469887" }, "bbox": [ -0.6699692, 51.2127472, -0.6699692, 51.2127472 ], "geometry": { "type": "Point", "coordinates": [ -0.6699692, 51.2127472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92463186" }, "bbox": [ -0.6797468, 51.2135611, -0.6797468, 51.2135611 ], "geometry": { "type": "Point", "coordinates": [ -0.6797468, 51.2135611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92461878" }, "bbox": [ -0.681629, 51.2129238, -0.681629, 51.2129238 ], "geometry": { "type": "Point", "coordinates": [ -0.681629, 51.2129238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92462454" }, "bbox": [ -0.6812949, 51.2111945, -0.6812949, 51.2111945 ], "geometry": { "type": "Point", "coordinates": [ -0.6812949, 51.2111945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92467507" }, "bbox": [ -0.6737155, 51.2063254, -0.6737155, 51.2063254 ], "geometry": { "type": "Point", "coordinates": [ -0.6737155, 51.2063254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92468566" }, "bbox": [ -0.6722289, 51.2116013, -0.6722289, 51.2116013 ], "geometry": { "type": "Point", "coordinates": [ -0.6722289, 51.2116013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92469035" }, "bbox": [ -0.6714177, 51.208792, -0.6714177, 51.208792 ], "geometry": { "type": "Point", "coordinates": [ -0.6714177, 51.208792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92463987" }, "bbox": [ -0.6784704, 51.2136751, -0.6784704, 51.2136751 ], "geometry": { "type": "Point", "coordinates": [ -0.6784704, 51.2136751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460097" }, "bbox": [ -0.669764, 51.2145003, -0.669764, 51.2145003 ], "geometry": { "type": "Point", "coordinates": [ -0.669764, 51.2145003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04710294" }, "bbox": [ -0.5048618, 51.4369632, -0.5048618, 51.4369632 ], "geometry": { "type": "Point", "coordinates": [ -0.5048618, 51.4369632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04715532" }, "bbox": [ -0.4973084, 51.4312548, -0.4973084, 51.4312548 ], "geometry": { "type": "Point", "coordinates": [ -0.4973084, 51.4312548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02727384" }, "bbox": [ -0.5230932, 51.4452806, -0.5230932, 51.4452806 ], "geometry": { "type": "Point", "coordinates": [ -0.5230932, 51.4452806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03723918" }, "bbox": [ -0.513777, 51.4392064, -0.513777, 51.4392064 ], "geometry": { "type": "Point", "coordinates": [ -0.513777, 51.4392064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02737411" }, "bbox": [ -0.5229429, 51.4477387, -0.5229429, 51.4477387 ], "geometry": { "type": "Point", "coordinates": [ -0.5229429, 51.4477387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03723829" }, "bbox": [ -0.5139969, 51.4402148, -0.5139969, 51.4402148 ], "geometry": { "type": "Point", "coordinates": [ -0.5139969, 51.4402148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04715626" }, "bbox": [ -0.4971774, 51.4307138, -0.4971774, 51.4307138 ], "geometry": { "type": "Point", "coordinates": [ -0.4971774, 51.4307138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04710696" }, "bbox": [ -0.5042351, 51.4370761, -0.5042351, 51.4370761 ], "geometry": { "type": "Point", "coordinates": [ -0.5042351, 51.4370761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03730811" }, "bbox": [ -0.5181012, 51.4476009, -0.5181012, 51.4476009 ], "geometry": { "type": "Point", "coordinates": [ -0.5181012, 51.4476009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04714047" }, "bbox": [ -0.4994552, 51.4326061, -0.4994552, 51.4326061 ], "geometry": { "type": "Point", "coordinates": [ -0.4994552, 51.4326061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03720127" }, "bbox": [ -0.5191663, 51.440095, -0.5191663, 51.440095 ], "geometry": { "type": "Point", "coordinates": [ -0.5191663, 51.440095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02727069" }, "bbox": [ -0.5236508, 51.4439946, -0.5236508, 51.4439946 ], "geometry": { "type": "Point", "coordinates": [ -0.5236508, 51.4439946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02727759" }, "bbox": [ -0.5224974, 51.4430136, -0.5224974, 51.4430136 ], "geometry": { "type": "Point", "coordinates": [ -0.5224974, 51.4430136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03724095" }, "bbox": [ -0.5133281, 51.4463442, -0.5133281, 51.4463442 ], "geometry": { "type": "Point", "coordinates": [ -0.5133281, 51.4463442 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04717228" }, "bbox": [ -0.4949715, 51.4309291, -0.4949715, 51.4309291 ], "geometry": { "type": "Point", "coordinates": [ -0.4949715, 51.4309291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02727699" }, "bbox": [ -0.5227029, 51.4466241, -0.5227029, 51.4466241 ], "geometry": { "type": "Point", "coordinates": [ -0.5227029, 51.4466241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04715034" }, "bbox": [ -0.4979672, 51.4314861, -0.4979672, 51.4314861 ], "geometry": { "type": "Point", "coordinates": [ -0.4979672, 51.4314861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04716729" }, "bbox": [ -0.4957344, 51.430974, -0.4957344, 51.430974 ], "geometry": { "type": "Point", "coordinates": [ -0.4957344, 51.430974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04711391" }, "bbox": [ -0.5032805, 51.4367023, -0.5032805, 51.4367023 ], "geometry": { "type": "Point", "coordinates": [ -0.5032805, 51.4367023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02728554" }, "bbox": [ -0.521091, 51.4423808, -0.521091, 51.4423808 ], "geometry": { "type": "Point", "coordinates": [ -0.521091, 51.4423808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02726879" }, "bbox": [ -0.5237435, 51.444696, -0.5237435, 51.444696 ], "geometry": { "type": "Point", "coordinates": [ -0.5237435, 51.444696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02727566" }, "bbox": [ -0.5229323, 51.4436103, -0.5229323, 51.4436103 ], "geometry": { "type": "Point", "coordinates": [ -0.5229323, 51.4436103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04718579" }, "bbox": [ -0.4935665, 51.435515, -0.4935665, 51.435515 ], "geometry": { "type": "Point", "coordinates": [ -0.4935665, 51.435515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25602084" }, "bbox": [ -0.2030759, 51.3344465, -0.2030759, 51.3344465 ], "geometry": { "type": "Point", "coordinates": [ -0.2030759, 51.3344465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24619306" }, "bbox": [ -0.2084613, 51.3345256, -0.2084613, 51.3345256 ], "geometry": { "type": "Point", "coordinates": [ -0.2084613, 51.3345256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24607235" }, "bbox": [ -0.2109884, 51.3286709, -0.2109884, 51.3286709 ], "geometry": { "type": "Point", "coordinates": [ -0.2109884, 51.3286709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24606226" }, "bbox": [ -0.2120405, 51.3275041, -0.2120405, 51.3275041 ], "geometry": { "type": "Point", "coordinates": [ -0.2120405, 51.3275041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24605236" }, "bbox": [ -0.2143104, 51.3288231, -0.2143104, 51.3288231 ], "geometry": { "type": "Point", "coordinates": [ -0.2143104, 51.3288231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24608322" }, "bbox": [ -0.209539, 51.3274556, -0.209539, 51.3274556 ], "geometry": { "type": "Point", "coordinates": [ -0.209539, 51.3274556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24596990" }, "bbox": [ -0.2115789, 51.3246142, -0.2115789, 51.3246142 ], "geometry": { "type": "Point", "coordinates": [ -0.2115789, 51.3246142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26610277" }, "bbox": [ -0.1912662, 51.3408741, -0.1912662, 51.3408741 ], "geometry": { "type": "Point", "coordinates": [ -0.1912662, 51.3408741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25619228" }, "bbox": [ -0.1934672, 51.3362911, -0.1934672, 51.3362911 ], "geometry": { "type": "Point", "coordinates": [ -0.1934672, 51.3362911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25616616" }, "bbox": [ -0.1983061, 51.3363102, -0.1983061, 51.3363102 ], "geometry": { "type": "Point", "coordinates": [ -0.1983061, 51.3363102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23528962" }, "bbox": [ -0.2258302, 51.2592949, -0.2258302, 51.2592949 ], "geometry": { "type": "Point", "coordinates": [ -0.2258302, 51.2592949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23528966" }, "bbox": [ -0.2257568, 51.2597516, -0.2257568, 51.2597516 ], "geometry": { "type": "Point", "coordinates": [ -0.2257568, 51.2597516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23528261" }, "bbox": [ -0.2268972, 51.2592393, -0.2268972, 51.2592393 ], "geometry": { "type": "Point", "coordinates": [ -0.2268972, 51.2592393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23555960" }, "bbox": [ -0.2305642, 51.2866182, -0.2305642, 51.2866182 ], "geometry": { "type": "Point", "coordinates": [ -0.2305642, 51.2866182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24560825" }, "bbox": [ -0.2218174, 51.2919451, -0.2218174, 51.2919451 ], "geometry": { "type": "Point", "coordinates": [ -0.2218174, 51.2919451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24561005" }, "bbox": [ -0.221273, 51.289918, -0.221273, 51.289918 ], "geometry": { "type": "Point", "coordinates": [ -0.221273, 51.289918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23569526" }, "bbox": [ -0.223654, 51.291873, -0.223654, 51.291873 ], "geometry": { "type": "Point", "coordinates": [ -0.223654, 51.291873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24560865" }, "bbox": [ -0.2218314, 51.2951658, -0.2218314, 51.2951658 ], "geometry": { "type": "Point", "coordinates": [ -0.2218314, 51.2951658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22557661" }, "bbox": [ -0.2403321, 51.2867868, -0.2403321, 51.2867868 ], "geometry": { "type": "Point", "coordinates": [ -0.2403321, 51.2867868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24551479" }, "bbox": [ -0.2210003, 51.2878525, -0.2210003, 51.2878525 ], "geometry": { "type": "Point", "coordinates": [ -0.2210003, 51.2878525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23528940" }, "bbox": [ -0.225876, 51.2573719, -0.225876, 51.2573719 ], "geometry": { "type": "Point", "coordinates": [ -0.225876, 51.2573719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23551470" }, "bbox": [ -0.2352177, 51.2870327, -0.2352177, 51.2870327 ], "geometry": { "type": "Point", "coordinates": [ -0.2352177, 51.2870327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23551523" }, "bbox": [ -0.2360183, 51.2836837, -0.2360183, 51.2836837 ], "geometry": { "type": "Point", "coordinates": [ -0.2360183, 51.2836837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23546711" }, "bbox": [ -0.226968, 51.2750594, -0.226968, 51.2750594 ], "geometry": { "type": "Point", "coordinates": [ -0.226968, 51.2750594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09425816" }, "bbox": [ -0.4340368, 51.1681702, -0.4340368, 51.1681702 ], "geometry": { "type": "Point", "coordinates": [ -0.4340368, 51.1681702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09427908" }, "bbox": [ -0.4316694, 51.1669999, -0.4316694, 51.1669999 ], "geometry": { "type": "Point", "coordinates": [ -0.4316694, 51.1669999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09428417" }, "bbox": [ -0.4302066, 51.1682956, -0.4302066, 51.1682956 ], "geometry": { "type": "Point", "coordinates": [ -0.4302066, 51.1682956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09429203" }, "bbox": [ -0.4288556, 51.167639, -0.4288556, 51.167639 ], "geometry": { "type": "Point", "coordinates": [ -0.4288556, 51.167639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09429633" }, "bbox": [ -0.4285129, 51.1697474, -0.4285129, 51.1697474 ], "geometry": { "type": "Point", "coordinates": [ -0.4285129, 51.1697474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09413070" }, "bbox": [ -0.4381193, 51.1641631, -0.4381193, 51.1641631 ], "geometry": { "type": "Point", "coordinates": [ -0.4381193, 51.1641631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09413753" }, "bbox": [ -0.4370223, 51.1627617, -0.4370223, 51.1627617 ], "geometry": { "type": "Point", "coordinates": [ -0.4370223, 51.1627617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09414579" }, "bbox": [ -0.4360896, 51.1649973, -0.4360896, 51.1649973 ], "geometry": { "type": "Point", "coordinates": [ -0.4360896, 51.1649973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09417552" }, "bbox": [ -0.431866, 51.1623184, -0.431866, 51.1623184 ], "geometry": { "type": "Point", "coordinates": [ -0.431866, 51.1623184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09418970" }, "bbox": [ -0.4306188, 51.1638339, -0.4306188, 51.1638339 ], "geometry": { "type": "Point", "coordinates": [ -0.4306188, 51.1638339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09418995" }, "bbox": [ -0.429674, 51.1662568, -0.429674, 51.1662568 ], "geometry": { "type": "Point", "coordinates": [ -0.429674, 51.1662568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09419976" }, "bbox": [ -0.4283211, 51.164503, -0.4283211, 51.164503 ], "geometry": { "type": "Point", "coordinates": [ -0.4283211, 51.164503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08418739" }, "bbox": [ -0.4425865, 51.1617757, -0.4425865, 51.1617757 ], "geometry": { "type": "Point", "coordinates": [ -0.4425865, 51.1617757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11421027" }, "bbox": [ -0.4126146, 51.1689812, -0.4126146, 51.1689812 ], "geometry": { "type": "Point", "coordinates": [ -0.4126146, 51.1689812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10421428" }, "bbox": [ -0.4259981, 51.1692314, -0.4259981, 51.1692314 ], "geometry": { "type": "Point", "coordinates": [ -0.4259981, 51.1692314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10425515" }, "bbox": [ -0.4193289, 51.168564, -0.4193289, 51.168564 ], "geometry": { "type": "Point", "coordinates": [ -0.4193289, 51.168564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10410065" }, "bbox": [ -0.4281577, 51.163501, -0.4281577, 51.163501 ], "geometry": { "type": "Point", "coordinates": [ -0.4281577, 51.163501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10412165" }, "bbox": [ -0.425317, 51.1629784, -0.425317, 51.1629784 ], "geometry": { "type": "Point", "coordinates": [ -0.425317, 51.1629784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10412244" }, "bbox": [ -0.4250954, 51.1617287, -0.4250954, 51.1617287 ], "geometry": { "type": "Point", "coordinates": [ -0.4250954, 51.1617287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10412637" }, "bbox": [ -0.4257756, 51.1606712, -0.4257756, 51.1606712 ], "geometry": { "type": "Point", "coordinates": [ -0.4257756, 51.1606712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04523052" }, "bbox": [ -0.506008, 51.2612889, -0.506008, 51.2612889 ], "geometry": { "type": "Point", "coordinates": [ -0.506008, 51.2612889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04512054" }, "bbox": [ -0.508218, 51.2535159, -0.508218, 51.2535159 ], "geometry": { "type": "Point", "coordinates": [ -0.508218, 51.2535159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26453590" }, "bbox": [ -0.1932459, 51.1982143, -0.1932459, 51.1982143 ], "geometry": { "type": "Point", "coordinates": [ -0.1932459, 51.1982143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26457249" }, "bbox": [ -0.1879287, 51.1945926, -0.1879287, 51.1945926 ], "geometry": { "type": "Point", "coordinates": [ -0.1879287, 51.1945926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26455499" }, "bbox": [ -0.1898958, 51.1994929, -0.1898958, 51.1994929 ], "geometry": { "type": "Point", "coordinates": [ -0.1898958, 51.1994929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26453965" }, "bbox": [ -0.192398, 51.196225, -0.192398, 51.196225 ], "geometry": { "type": "Point", "coordinates": [ -0.192398, 51.196225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26456638" }, "bbox": [ -0.1880353, 51.1936025, -0.1880353, 51.1936025 ], "geometry": { "type": "Point", "coordinates": [ -0.1880353, 51.1936025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26455246" }, "bbox": [ -0.190828, 51.1944534, -0.190828, 51.1944534 ], "geometry": { "type": "Point", "coordinates": [ -0.190828, 51.1944534 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26454688" }, "bbox": [ -0.1915602, 51.1980781, -0.1915602, 51.1980781 ], "geometry": { "type": "Point", "coordinates": [ -0.1915602, 51.1980781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26454454" }, "bbox": [ -0.1917324, 51.1951908, -0.1917324, 51.1951908 ], "geometry": { "type": "Point", "coordinates": [ -0.1917324, 51.1951908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26455297" }, "bbox": [ -0.1909314, 51.1989625, -0.1909314, 51.1989625 ], "geometry": { "type": "Point", "coordinates": [ -0.1909314, 51.1989625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26455476" }, "bbox": [ -0.1903279, 51.1970815, -0.1903279, 51.1970815 ], "geometry": { "type": "Point", "coordinates": [ -0.1903279, 51.1970815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11478158" }, "bbox": [ -0.4004144, 51.216582, -0.4004144, 51.216582 ], "geometry": { "type": "Point", "coordinates": [ -0.4004144, 51.216582 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11478832" }, "bbox": [ -0.3994942, 51.2140642, -0.3994942, 51.2140642 ], "geometry": { "type": "Point", "coordinates": [ -0.3994942, 51.2140642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11479126" }, "bbox": [ -0.3991794, 51.2135983, -0.3991794, 51.2135983 ], "geometry": { "type": "Point", "coordinates": [ -0.3991794, 51.2135983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26454438" }, "bbox": [ -0.1919227, 51.1936986, -0.1919227, 51.1936986 ], "geometry": { "type": "Point", "coordinates": [ -0.1919227, 51.1936986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26462908" }, "bbox": [ -0.1939341, 51.1998859, -0.1939341, 51.1998859 ], "geometry": { "type": "Point", "coordinates": [ -0.1939341, 51.1998859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463747" }, "bbox": [ -0.1926347, 51.2033227, -0.1926347, 51.2033227 ], "geometry": { "type": "Point", "coordinates": [ -0.1926347, 51.2033227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26465423" }, "bbox": [ -0.1899841, 51.2022285, -0.1899841, 51.2022285 ], "geometry": { "type": "Point", "coordinates": [ -0.1899841, 51.2022285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26467512" }, "bbox": [ -0.1873969, 51.2000971, -0.1873969, 51.2000971 ], "geometry": { "type": "Point", "coordinates": [ -0.1873969, 51.2000971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26464559" }, "bbox": [ -0.1922755, 51.2043009, -0.1922755, 51.2043009 ], "geometry": { "type": "Point", "coordinates": [ -0.1922755, 51.2043009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26465616" }, "bbox": [ -0.1899193, 51.2006064, -0.1899193, 51.2006064 ], "geometry": { "type": "Point", "coordinates": [ -0.1899193, 51.2006064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26465756" }, "bbox": [ -0.1895829, 51.2042019, -0.1895829, 51.2042019 ], "geometry": { "type": "Point", "coordinates": [ -0.1895829, 51.2042019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08534720" }, "bbox": [ -0.4464548, 51.267535, -0.4464548, 51.267535 ], "geometry": { "type": "Point", "coordinates": [ -0.4464548, 51.267535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08535030" }, "bbox": [ -0.4450972, 51.2681307, -0.4450972, 51.2681307 ], "geometry": { "type": "Point", "coordinates": [ -0.4450972, 51.2681307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08533743" }, "bbox": [ -0.4479438, 51.2697111, -0.4479438, 51.2697111 ], "geometry": { "type": "Point", "coordinates": [ -0.4479438, 51.2697111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08534529" }, "bbox": [ -0.4460843, 51.2677077, -0.4460843, 51.2677077 ], "geometry": { "type": "Point", "coordinates": [ -0.4460843, 51.2677077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08534345" }, "bbox": [ -0.4474801, 51.2700432, -0.4474801, 51.2700432 ], "geometry": { "type": "Point", "coordinates": [ -0.4474801, 51.2700432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05447101" }, "bbox": [ -0.4888342, 51.1855069, -0.4888342, 51.1855069 ], "geometry": { "type": "Point", "coordinates": [ -0.4888342, 51.1855069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05446004" }, "bbox": [ -0.4904264, 51.1859856, -0.4904264, 51.1859856 ], "geometry": { "type": "Point", "coordinates": [ -0.4904264, 51.1859856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05446035" }, "bbox": [ -0.4900037, 51.1882858, -0.4900037, 51.1882858 ], "geometry": { "type": "Point", "coordinates": [ -0.4900037, 51.1882858 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05437592" }, "bbox": [ -0.4884304, 51.1846572, -0.4884304, 51.1846572 ], "geometry": { "type": "Point", "coordinates": [ -0.4884304, 51.1846572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05438296" }, "bbox": [ -0.4878536, 51.185078, -0.4878536, 51.185078 ], "geometry": { "type": "Point", "coordinates": [ -0.4878536, 51.185078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05439198" }, "bbox": [ -0.4859899, 51.1854308, -0.4859899, 51.1854308 ], "geometry": { "type": "Point", "coordinates": [ -0.4859899, 51.1854308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08539673" }, "bbox": [ -0.4391972, 51.2721753, -0.4391972, 51.2721753 ], "geometry": { "type": "Point", "coordinates": [ -0.4391972, 51.2721753 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08538657" }, "bbox": [ -0.4408818, 51.2708117, -0.4408818, 51.2708117 ], "geometry": { "type": "Point", "coordinates": [ -0.4408818, 51.2708117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08539737" }, "bbox": [ -0.4391796, 51.2692573, -0.4391796, 51.2692573 ], "geometry": { "type": "Point", "coordinates": [ -0.4391796, 51.2692573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08539235" }, "bbox": [ -0.4398816, 51.2689292, -0.4398816, 51.2689292 ], "geometry": { "type": "Point", "coordinates": [ -0.4398816, 51.2689292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08522193" }, "bbox": [ -0.4504953, 51.2662875, -0.4504953, 51.2662875 ], "geometry": { "type": "Point", "coordinates": [ -0.4504953, 51.2662875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08521493" }, "bbox": [ -0.4512628, 51.2653611, -0.4512628, 51.2653611 ], "geometry": { "type": "Point", "coordinates": [ -0.4512628, 51.2653611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25445152" }, "bbox": [ -0.2052789, 51.1862321, -0.2052789, 51.1862321 ], "geometry": { "type": "Point", "coordinates": [ -0.2052789, 51.1862321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28543752" }, "bbox": [ -0.1608914, 51.2754855, -0.1608914, 51.2754855 ], "geometry": { "type": "Point", "coordinates": [ -0.1608914, 51.2754855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93444617" }, "bbox": [ -0.6643528, 51.1892653, -0.6643528, 51.1892653 ], "geometry": { "type": "Point", "coordinates": [ -0.6643528, 51.1892653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01712992" }, "bbox": [ -0.547089, 51.4370257, -0.547089, 51.4370257 ], "geometry": { "type": "Point", "coordinates": [ -0.547089, 51.4370257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90458076" }, "bbox": [ -0.7016331, 51.203907, -0.7016331, 51.203907 ], "geometry": { "type": "Point", "coordinates": [ -0.7016331, 51.203907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91450524" }, "bbox": [ -0.6979035, 51.1988945, -0.6979035, 51.1988945 ], "geometry": { "type": "Point", "coordinates": [ -0.6979035, 51.1988945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91451663" }, "bbox": [ -0.6962676, 51.2026855, -0.6962676, 51.2026855 ], "geometry": { "type": "Point", "coordinates": [ -0.6962676, 51.2026855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91463695" }, "bbox": [ -0.691964, 51.2152382, -0.691964, 51.2152382 ], "geometry": { "type": "Point", "coordinates": [ -0.691964, 51.2152382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90457471" }, "bbox": [ -0.7030159, 51.2034069, -0.7030159, 51.2034069 ], "geometry": { "type": "Point", "coordinates": [ -0.7030159, 51.2034069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90457441" }, "bbox": [ -0.7023636, 51.2005762, -0.7023636, 51.2005762 ], "geometry": { "type": "Point", "coordinates": [ -0.7023636, 51.2005762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91452951" }, "bbox": [ -0.6943651, 51.2014864, -0.6943651, 51.2014864 ], "geometry": { "type": "Point", "coordinates": [ -0.6943651, 51.2014864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91453401" }, "bbox": [ -0.6941013, 51.1970449, -0.6941013, 51.1970449 ], "geometry": { "type": "Point", "coordinates": [ -0.6941013, 51.1970449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91453905" }, "bbox": [ -0.6932871, 51.1973934, -0.6932871, 51.1973934 ], "geometry": { "type": "Point", "coordinates": [ -0.6932871, 51.1973934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91476534" }, "bbox": [ -0.6921942, 51.2179588, -0.6921942, 51.2179588 ], "geometry": { "type": "Point", "coordinates": [ -0.6921942, 51.2179588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91452971" }, "bbox": [ -0.6947527, 51.2033942, -0.6947527, 51.2033942 ], "geometry": { "type": "Point", "coordinates": [ -0.6947527, 51.2033942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91469271" }, "bbox": [ -0.6853516, 51.2123242, -0.6853516, 51.2123242 ], "geometry": { "type": "Point", "coordinates": [ -0.6853516, 51.2123242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90459799" }, "bbox": [ -0.6995629, 51.2054278, -0.6995629, 51.2054278 ], "geometry": { "type": "Point", "coordinates": [ -0.6995629, 51.2054278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12510664" }, "bbox": [ -0.3954507, 51.2529601, -0.3954507, 51.2529601 ], "geometry": { "type": "Point", "coordinates": [ -0.3954507, 51.2529601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11518757" }, "bbox": [ -0.3986605, 51.2526714, -0.3986605, 51.2526714 ], "geometry": { "type": "Point", "coordinates": [ -0.3986605, 51.2526714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11519660" }, "bbox": [ -0.3968896, 51.2527663, -0.3968896, 51.2527663 ], "geometry": { "type": "Point", "coordinates": [ -0.3968896, 51.2527663 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11518650" }, "bbox": [ -0.3984578, 51.2517892, -0.3984578, 51.2517892 ], "geometry": { "type": "Point", "coordinates": [ -0.3984578, 51.2517892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11519475" }, "bbox": [ -0.3971299, 51.254034, -0.3971299, 51.254034 ], "geometry": { "type": "Point", "coordinates": [ -0.3971299, 51.254034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26587357" }, "bbox": [ -0.1848704, 51.3119688, -0.1848704, 51.3119688 ], "geometry": { "type": "Point", "coordinates": [ -0.1848704, 51.3119688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27580848" }, "bbox": [ -0.1769791, 51.3117067, -0.1769791, 51.3117067 ], "geometry": { "type": "Point", "coordinates": [ -0.1769791, 51.3117067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24570871" }, "bbox": [ -0.2212838, 51.3050903, -0.2212838, 51.3050903 ], "geometry": { "type": "Point", "coordinates": [ -0.2212838, 51.3050903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23557970" }, "bbox": [ -0.2259663, 51.2869718, -0.2259663, 51.2869718 ], "geometry": { "type": "Point", "coordinates": [ -0.2259663, 51.2869718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24581703" }, "bbox": [ -0.2199615, 51.3079719, -0.2199615, 51.3079719 ], "geometry": { "type": "Point", "coordinates": [ -0.2199615, 51.3079719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24571426" }, "bbox": [ -0.2210081, 51.2999791, -0.2210081, 51.2999791 ], "geometry": { "type": "Point", "coordinates": [ -0.2210081, 51.2999791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86393899" }, "bbox": [ -0.767477, 51.1525994, -0.767477, 51.1525994 ], "geometry": { "type": "Point", "coordinates": [ -0.767477, 51.1525994 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86390254" }, "bbox": [ -0.7706992, 51.1489552, -0.7706992, 51.1489552 ], "geometry": { "type": "Point", "coordinates": [ -0.7706992, 51.1489552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19597548" }, "bbox": [ -0.2826507, 51.3219885, -0.2826507, 51.3219885 ], "geometry": { "type": "Point", "coordinates": [ -0.2826507, 51.3219885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20591241" }, "bbox": [ -0.2774496, 51.3211978, -0.2774496, 51.3211978 ], "geometry": { "type": "Point", "coordinates": [ -0.2774496, 51.3211978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19605650" }, "bbox": [ -0.2851555, 51.3311116, -0.2851555, 51.3311116 ], "geometry": { "type": "Point", "coordinates": [ -0.2851555, 51.3311116 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19607980" }, "bbox": [ -0.2818266, 51.3338452, -0.2818266, 51.3338452 ], "geometry": { "type": "Point", "coordinates": [ -0.2818266, 51.3338452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18602878" }, "bbox": [ -0.3003831, 51.3319765, -0.3003831, 51.3319765 ], "geometry": { "type": "Point", "coordinates": [ -0.3003831, 51.3319765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19607372" }, "bbox": [ -0.2827298, 51.3329576, -0.2827298, 51.3329576 ], "geometry": { "type": "Point", "coordinates": [ -0.2827298, 51.3329576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19604547" }, "bbox": [ -0.2868366, 51.3306913, -0.2868366, 51.3306913 ], "geometry": { "type": "Point", "coordinates": [ -0.2868366, 51.3306913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19595163" }, "bbox": [ -0.2866014, 51.323276, -0.2866014, 51.323276 ], "geometry": { "type": "Point", "coordinates": [ -0.2866014, 51.323276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19605418" }, "bbox": [ -0.2853271, 51.3282804, -0.2853271, 51.3282804 ], "geometry": { "type": "Point", "coordinates": [ -0.2853271, 51.3282804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19593273" }, "bbox": [ -0.2887231, 51.3242524, -0.2887231, 51.3242524 ], "geometry": { "type": "Point", "coordinates": [ -0.2887231, 51.3242524 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19600774" }, "bbox": [ -0.2927176, 51.3336637, -0.2927176, 51.3336637 ], "geometry": { "type": "Point", "coordinates": [ -0.2927176, 51.3336637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19594798" }, "bbox": [ -0.2867051, 51.3264558, -0.2867051, 51.3264558 ], "geometry": { "type": "Point", "coordinates": [ -0.2867051, 51.3264558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19603782" }, "bbox": [ -0.2877806, 51.333892, -0.2877806, 51.333892 ], "geometry": { "type": "Point", "coordinates": [ -0.2877806, 51.333892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19601947" }, "bbox": [ -0.2903895, 51.3307108, -0.2903895, 51.3307108 ], "geometry": { "type": "Point", "coordinates": [ -0.2903895, 51.3307108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19606909" }, "bbox": [ -0.283175, 51.3279212, -0.283175, 51.3279212 ], "geometry": { "type": "Point", "coordinates": [ -0.283175, 51.3279212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19606382" }, "bbox": [ -0.2841413, 51.3336054, -0.2841413, 51.3336054 ], "geometry": { "type": "Point", "coordinates": [ -0.2841413, 51.3336054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19599719" }, "bbox": [ -0.2795863, 51.3192668, -0.2795863, 51.3192668 ], "geometry": { "type": "Point", "coordinates": [ -0.2795863, 51.3192668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93346372" }, "bbox": [ -0.6640405, 51.1041859, -0.6640405, 51.1041859 ], "geometry": { "type": "Point", "coordinates": [ -0.6640405, 51.1041859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19607058" }, "bbox": [ -0.283117, 51.3317707, -0.283117, 51.3317707 ], "geometry": { "type": "Point", "coordinates": [ -0.283117, 51.3317707 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18608611" }, "bbox": [ -0.2945316, 51.3277719, -0.2945316, 51.3277719 ], "geometry": { "type": "Point", "coordinates": [ -0.2945316, 51.3277719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93347179" }, "bbox": [ -0.6628581, 51.1047843, -0.6628581, 51.1047843 ], "geometry": { "type": "Point", "coordinates": [ -0.6628581, 51.1047843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91450171" }, "bbox": [ -0.69886, 51.2033599, -0.69886, 51.2033599 ], "geometry": { "type": "Point", "coordinates": [ -0.69886, 51.2033599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91462837" }, "bbox": [ -0.6921314, 51.2088661, -0.6921314, 51.2088661 ], "geometry": { "type": "Point", "coordinates": [ -0.6921314, 51.2088661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90458967" }, "bbox": [ -0.7001484, 51.2030018, -0.7001484, 51.2030018 ], "geometry": { "type": "Point", "coordinates": [ -0.7001484, 51.2030018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23559198" }, "bbox": [ -0.2244352, 51.2887383, -0.2244352, 51.2887383 ], "geometry": { "type": "Point", "coordinates": [ -0.2244352, 51.2887383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23579770" }, "bbox": [ -0.2230666, 51.3048544, -0.2230666, 51.3048544 ], "geometry": { "type": "Point", "coordinates": [ -0.2230666, 51.3048544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19597385" }, "bbox": [ -0.2828802, 51.3251897, -0.2828802, 51.3251897 ], "geometry": { "type": "Point", "coordinates": [ -0.2828802, 51.3251897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18608158" }, "bbox": [ -0.2961235, 51.3320426, -0.2961235, 51.3320426 ], "geometry": { "type": "Point", "coordinates": [ -0.2961235, 51.3320426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18613205" }, "bbox": [ -0.3029573, 51.3362816, -0.3029573, 51.3362816 ], "geometry": { "type": "Point", "coordinates": [ -0.3029573, 51.3362816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90380391" }, "bbox": [ -0.7142703, 51.1423839, -0.7142703, 51.1423839 ], "geometry": { "type": "Point", "coordinates": [ -0.7142703, 51.1423839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89389189" }, "bbox": [ -0.7160056, 51.1422423, -0.7160056, 51.1422423 ], "geometry": { "type": "Point", "coordinates": [ -0.7160056, 51.1422423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43402471" }, "bbox": [ 0.0466863, 51.1478484, 0.0466863, 51.1478484 ], "geometry": { "type": "Point", "coordinates": [ 0.0466863, 51.1478484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43406495" }, "bbox": [ 0.0522307, 51.1498212, 0.0522307, 51.1498212 ], "geometry": { "type": "Point", "coordinates": [ 0.0522307, 51.1498212 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99593099" }, "bbox": [ -0.5761016, 51.3304073, -0.5761016, 51.3304073 ], "geometry": { "type": "Point", "coordinates": [ -0.5761016, 51.3304073 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98595147" }, "bbox": [ -0.5866734, 51.3259261, -0.5866734, 51.3259261 ], "geometry": { "type": "Point", "coordinates": [ -0.5866734, 51.3259261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98598176" }, "bbox": [ -0.5829858, 51.3284437, -0.5829858, 51.3284437 ], "geometry": { "type": "Point", "coordinates": [ -0.5829858, 51.3284437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98595464" }, "bbox": [ -0.5872158, 51.3272264, -0.5872158, 51.3272264 ], "geometry": { "type": "Point", "coordinates": [ -0.5872158, 51.3272264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98594268" }, "bbox": [ -0.5882147, 51.32812, -0.5882147, 51.32812 ], "geometry": { "type": "Point", "coordinates": [ -0.5882147, 51.32812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98597555" }, "bbox": [ -0.5842413, 51.3268921, -0.5842413, 51.3268921 ], "geometry": { "type": "Point", "coordinates": [ -0.5842413, 51.3268921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99591298" }, "bbox": [ -0.5787148, 51.3305259, -0.5787148, 51.3305259 ], "geometry": { "type": "Point", "coordinates": [ -0.5787148, 51.3305259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99605911" }, "bbox": [ -0.5724948, 51.3316244, -0.5724948, 51.3316244 ], "geometry": { "type": "Point", "coordinates": [ -0.5724948, 51.3316244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00600325" }, "bbox": [ -0.5670155, 51.3324775, -0.5670155, 51.3324775 ], "geometry": { "type": "Point", "coordinates": [ -0.5670155, 51.3324775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99607110" }, "bbox": [ -0.5699864, 51.3311514, -0.5699864, 51.3311514 ], "geometry": { "type": "Point", "coordinates": [ -0.5699864, 51.3311514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01593268" }, "bbox": [ -0.5477524, 51.3267936, -0.5477524, 51.3267936 ], "geometry": { "type": "Point", "coordinates": [ -0.5477524, 51.3267936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01601928" }, "bbox": [ -0.5491036, 51.3327115, -0.5491036, 51.3327115 ], "geometry": { "type": "Point", "coordinates": [ -0.5491036, 51.3327115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98605822" }, "bbox": [ -0.5865475, 51.3324314, -0.5865475, 51.3324314 ], "geometry": { "type": "Point", "coordinates": [ -0.5865475, 51.3324314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01605574" }, "bbox": [ -0.5422641, 51.3387955, -0.5422641, 51.3387955 ], "geometry": { "type": "Point", "coordinates": [ -0.5422641, 51.3387955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98608105" }, "bbox": [ -0.582777, 51.3312144, -0.582777, 51.3312144 ], "geometry": { "type": "Point", "coordinates": [ -0.582777, 51.3312144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99605833" }, "bbox": [ -0.5728197, 51.3335123, -0.5728197, 51.3335123 ], "geometry": { "type": "Point", "coordinates": [ -0.5728197, 51.3335123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00601673" }, "bbox": [ -0.5639481, 51.335631, -0.5639481, 51.335631 ], "geometry": { "type": "Point", "coordinates": [ -0.5639481, 51.335631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01602815" }, "bbox": [ -0.5478118, 51.3317136, -0.5478118, 51.3317136 ], "geometry": { "type": "Point", "coordinates": [ -0.5478118, 51.3317136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00619921" }, "bbox": [ -0.5540421, 51.3408486, -0.5540421, 51.3408486 ], "geometry": { "type": "Point", "coordinates": [ -0.5540421, 51.3408486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01603880" }, "bbox": [ -0.5454915, 51.33764, -0.5454915, 51.33764 ], "geometry": { "type": "Point", "coordinates": [ -0.5454915, 51.33764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99606259" }, "bbox": [ -0.5709815, 51.335453, -0.5709815, 51.335453 ], "geometry": { "type": "Point", "coordinates": [ -0.5709815, 51.335453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99602933" }, "bbox": [ -0.5761003, 51.3333289, -0.5761003, 51.3333289 ], "geometry": { "type": "Point", "coordinates": [ -0.5761003, 51.3333289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99609254" }, "bbox": [ -0.5672015, 51.3347481, -0.5672015, 51.3347481 ], "geometry": { "type": "Point", "coordinates": [ -0.5672015, 51.3347481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01593493" }, "bbox": [ -0.5467102, 51.3289884, -0.5467102, 51.3289884 ], "geometry": { "type": "Point", "coordinates": [ -0.5467102, 51.3289884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00607828" }, "bbox": [ -0.5548682, 51.3327014, -0.5548682, 51.3327014 ], "geometry": { "type": "Point", "coordinates": [ -0.5548682, 51.3327014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00612824" }, "bbox": [ -0.5616231, 51.3408703, -0.5616231, 51.3408703 ], "geometry": { "type": "Point", "coordinates": [ -0.5616231, 51.3408703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01605712" }, "bbox": [ -0.5430455, 51.3307552, -0.5430455, 51.3307552 ], "geometry": { "type": "Point", "coordinates": [ -0.5430455, 51.3307552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00608156" }, "bbox": [ -0.5534803, 51.334649, -0.5534803, 51.334649 ], "geometry": { "type": "Point", "coordinates": [ -0.5534803, 51.334649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98606531" }, "bbox": [ -0.5851215, 51.3331333, -0.5851215, 51.3331333 ], "geometry": { "type": "Point", "coordinates": [ -0.5851215, 51.3331333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00606881" }, "bbox": [ -0.5575163, 51.3376571, -0.5575163, 51.3376571 ], "geometry": { "type": "Point", "coordinates": [ -0.5575163, 51.3376571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00601236" }, "bbox": [ -0.5641041, 51.3336297, -0.5641041, 51.3336297 ], "geometry": { "type": "Point", "coordinates": [ -0.5641041, 51.3336297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01616569" }, "bbox": [ -0.5415122, 51.3453681, -0.5415122, 51.3453681 ], "geometry": { "type": "Point", "coordinates": [ -0.5415122, 51.3453681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99603358" }, "bbox": [ -0.5756084, 51.3354727, -0.5756084, 51.3354727 ], "geometry": { "type": "Point", "coordinates": [ -0.5756084, 51.3354727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01591986" }, "bbox": [ -0.5492675, 51.3287144, -0.5492675, 51.3287144 ], "geometry": { "type": "Point", "coordinates": [ -0.5492675, 51.3287144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01611616" }, "bbox": [ -0.5482235, 51.3403034, -0.5482235, 51.3403034 ], "geometry": { "type": "Point", "coordinates": [ -0.5482235, 51.3403034 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01617043" }, "bbox": [ -0.5411251, 51.3427796, -0.5411251, 51.3427796 ], "geometry": { "type": "Point", "coordinates": [ -0.5411251, 51.3427796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00606425" }, "bbox": [ -0.5566891, 51.3324985, -0.5566891, 51.3324985 ], "geometry": { "type": "Point", "coordinates": [ -0.5566891, 51.3324985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00612621" }, "bbox": [ -0.5621069, 51.3413829, -0.5621069, 51.3413829 ], "geometry": { "type": "Point", "coordinates": [ -0.5621069, 51.3413829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03518638" }, "bbox": [ -0.5130497, 51.2521126, -0.5130497, 51.2521126 ], "geometry": { "type": "Point", "coordinates": [ -0.5130497, 51.2521126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03518010" }, "bbox": [ -0.5140241, 51.2496868, -0.5140241, 51.2496868 ], "geometry": { "type": "Point", "coordinates": [ -0.5140241, 51.2496868 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03519001" }, "bbox": [ -0.5124252, 51.2490418, -0.5124252, 51.2490418 ], "geometry": { "type": "Point", "coordinates": [ -0.5124252, 51.2490418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03514010" }, "bbox": [ -0.5194795, 51.2499624, -0.5194795, 51.2499624 ], "geometry": { "type": "Point", "coordinates": [ -0.5194795, 51.2499624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03515728" }, "bbox": [ -0.5176323, 51.2512616, -0.5176323, 51.2512616 ], "geometry": { "type": "Point", "coordinates": [ -0.5176323, 51.2512616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03517716" }, "bbox": [ -0.5142603, 51.2503014, -0.5142603, 51.2503014 ], "geometry": { "type": "Point", "coordinates": [ -0.5142603, 51.2503014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03508795" }, "bbox": [ -0.5127526, 51.2483529, -0.5127526, 51.2483529 ], "geometry": { "type": "Point", "coordinates": [ -0.5127526, 51.2483529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04510516" }, "bbox": [ -0.510912, 51.2503913, -0.510912, 51.2503913 ], "geometry": { "type": "Point", "coordinates": [ -0.510912, 51.2503913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04510966" }, "bbox": [ -0.5096765, 51.2545284, -0.5096765, 51.2545284 ], "geometry": { "type": "Point", "coordinates": [ -0.5096765, 51.2545284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83390895" }, "bbox": [ -0.8137093, 51.1526918, -0.8137093, 51.1526918 ], "geometry": { "type": "Point", "coordinates": [ -0.8137093, 51.1526918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08518506" }, "bbox": [ -0.4416774, 51.2484265, -0.4416774, 51.2484265 ], "geometry": { "type": "Point", "coordinates": [ -0.4416774, 51.2484265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08517706" }, "bbox": [ -0.4429353, 51.2483735, -0.4429353, 51.2483735 ], "geometry": { "type": "Point", "coordinates": [ -0.4429353, 51.2483735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08516909" }, "bbox": [ -0.4433769, 51.24915, -0.4433769, 51.24915 ], "geometry": { "type": "Point", "coordinates": [ -0.4433769, 51.24915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08507698" }, "bbox": [ -0.4429024, 51.247672, -0.4429024, 51.247672 ], "geometry": { "type": "Point", "coordinates": [ -0.4429024, 51.247672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40450438" }, "bbox": [ 0.0027028, 51.1905502, 0.0027028, 51.1905502 ], "geometry": { "type": "Point", "coordinates": [ 0.0027028, 51.1905502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40451038" }, "bbox": [ 0.0036577, 51.1905806, 0.0036577, 51.1905806 ], "geometry": { "type": "Point", "coordinates": [ 0.0036577, 51.1905806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00598856" }, "bbox": [ -0.5535739, 51.3261526, -0.5535739, 51.3261526 ], "geometry": { "type": "Point", "coordinates": [ -0.5535739, 51.3261526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82419450" }, "bbox": [ -0.8154861, 51.1667322, -0.8154861, 51.1667322 ], "geometry": { "type": "Point", "coordinates": [ -0.8154861, 51.1667322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83413364" }, "bbox": [ -0.8096759, 51.1682496, -0.8096759, 51.1682496 ], "geometry": { "type": "Point", "coordinates": [ -0.8096759, 51.1682496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03512895" }, "bbox": [ -0.5206249, 51.2574421, -0.5206249, 51.2574421 ], "geometry": { "type": "Point", "coordinates": [ -0.5206249, 51.2574421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03510146" }, "bbox": [ -0.52516, 51.2528598, -0.52516, 51.2528598 ], "geometry": { "type": "Point", "coordinates": [ -0.52516, 51.2528598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03512223" }, "bbox": [ -0.5212155, 51.2517815, -0.5212155, 51.2517815 ], "geometry": { "type": "Point", "coordinates": [ -0.5212155, 51.2517815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03511648" }, "bbox": [ -0.5230007, 51.253382, -0.5230007, 51.253382 ], "geometry": { "type": "Point", "coordinates": [ -0.5230007, 51.253382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03504195" }, "bbox": [ -0.520035, 51.2483785, -0.520035, 51.2483785 ], "geometry": { "type": "Point", "coordinates": [ -0.520035, 51.2483785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04521816" }, "bbox": [ -0.5085042, 51.2589051, -0.5085042, 51.2589051 ], "geometry": { "type": "Point", "coordinates": [ -0.5085042, 51.2589051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04523407" }, "bbox": [ -0.5060117, 51.2583765, -0.5060117, 51.2583765 ], "geometry": { "type": "Point", "coordinates": [ -0.5060117, 51.2583765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03527909" }, "bbox": [ -0.514274, 51.2582369, -0.514274, 51.2582369 ], "geometry": { "type": "Point", "coordinates": [ -0.514274, 51.2582369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04511778" }, "bbox": [ -0.5083867, 51.2558214, -0.5083867, 51.2558214 ], "geometry": { "type": "Point", "coordinates": [ -0.5083867, 51.2558214 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04513480" }, "bbox": [ -0.5062432, 51.2557087, -0.5062432, 51.2557087 ], "geometry": { "type": "Point", "coordinates": [ -0.5062432, 51.2557087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03523803" }, "bbox": [ -0.5198506, 51.2581969, -0.5198506, 51.2581969 ], "geometry": { "type": "Point", "coordinates": [ -0.5198506, 51.2581969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03523401" }, "bbox": [ -0.5210463, 51.258684, -0.5210463, 51.258684 ], "geometry": { "type": "Point", "coordinates": [ -0.5210463, 51.258684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97466268" }, "bbox": [ -0.6038864, 51.2108579, -0.6038864, 51.2108579 ], "geometry": { "type": "Point", "coordinates": [ -0.6038864, 51.2108579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26456863" }, "bbox": [ -0.1884252, 51.1957703, -0.1884252, 51.1957703 ], "geometry": { "type": "Point", "coordinates": [ -0.1884252, 51.1957703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26456066" }, "bbox": [ -0.1891237, 51.1962184, -0.1891237, 51.1962184 ], "geometry": { "type": "Point", "coordinates": [ -0.1891237, 51.1962184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94480169" }, "bbox": [ -0.6546579, 51.2296668, -0.6546579, 51.2296668 ], "geometry": { "type": "Point", "coordinates": [ -0.6546579, 51.2296668 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93507124" }, "bbox": [ -0.6586373, 51.2434918, -0.6586373, 51.2434918 ], "geometry": { "type": "Point", "coordinates": [ -0.6586373, 51.2434918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98481756" }, "bbox": [ -0.5954577, 51.2277949, -0.5954577, 51.2277949 ], "geometry": { "type": "Point", "coordinates": [ -0.5954577, 51.2277949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97482041" }, "bbox": [ -0.6092402, 51.2265063, -0.6092402, 51.2265063 ], "geometry": { "type": "Point", "coordinates": [ -0.6092402, 51.2265063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93412761" }, "bbox": [ -0.6671115, 51.1666525, -0.6671115, 51.1666525 ], "geometry": { "type": "Point", "coordinates": [ -0.6671115, 51.1666525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10553001" }, "bbox": [ -0.4202129, 51.2857455, -0.4202129, 51.2857455 ], "geometry": { "type": "Point", "coordinates": [ -0.4202129, 51.2857455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20537511" }, "bbox": [ -0.2703141, 51.2643525, -0.2703141, 51.2643525 ], "geometry": { "type": "Point", "coordinates": [ -0.2703141, 51.2643525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89350588" }, "bbox": [ -0.7290376, 51.115325, -0.7290376, 51.115325 ], "geometry": { "type": "Point", "coordinates": [ -0.7290376, 51.115325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89363230" }, "bbox": [ -0.7243511, 51.1184191, -0.7243511, 51.1184191 ], "geometry": { "type": "Point", "coordinates": [ -0.7243511, 51.1184191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85407234" }, "bbox": [ -0.7767345, 51.1547471, -0.7767345, 51.1547471 ], "geometry": { "type": "Point", "coordinates": [ -0.7767345, 51.1547471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85411907" }, "bbox": [ -0.7841517, 51.1636765, -0.7841517, 51.1636765 ], "geometry": { "type": "Point", "coordinates": [ -0.7841517, 51.1636765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84406978" }, "bbox": [ -0.7901411, 51.1584538, -0.7901411, 51.1584538 ], "geometry": { "type": "Point", "coordinates": [ -0.7901411, 51.1584538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85405151" }, "bbox": [ -0.7788916, 51.1567684, -0.7788916, 51.1567684 ], "geometry": { "type": "Point", "coordinates": [ -0.7788916, 51.1567684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16468325" }, "bbox": [ -0.3285764, 51.2038656, -0.3285764, 51.2038656 ], "geometry": { "type": "Point", "coordinates": [ -0.3285764, 51.2038656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17566464" }, "bbox": [ -0.314019, 51.2968964, -0.314019, 51.2968964 ], "geometry": { "type": "Point", "coordinates": [ -0.314019, 51.2968964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17568771" }, "bbox": [ -0.3107, 51.2973056, -0.3107, 51.2973056 ], "geometry": { "type": "Point", "coordinates": [ -0.3107, 51.2973056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17565966" }, "bbox": [ -0.3147706, 51.2969405, -0.3147706, 51.2969405 ], "geometry": { "type": "Point", "coordinates": [ -0.3147706, 51.2969405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17568826" }, "bbox": [ -0.3100303, 51.2930974, -0.3100303, 51.2930974 ], "geometry": { "type": "Point", "coordinates": [ -0.3100303, 51.2930974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17566960" }, "bbox": [ -0.3134456, 51.2963324, -0.3134456, 51.2963324 ], "geometry": { "type": "Point", "coordinates": [ -0.3134456, 51.2963324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19560370" }, "bbox": [ -0.2937703, 51.2968385, -0.2937703, 51.2968385 ], "geometry": { "type": "Point", "coordinates": [ -0.2937703, 51.2968385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19560607" }, "bbox": [ -0.2938448, 51.2914388, -0.2938448, 51.2914388 ], "geometry": { "type": "Point", "coordinates": [ -0.2938448, 51.2914388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19561309" }, "bbox": [ -0.2926964, 51.2915809, -0.2926964, 51.2915809 ], "geometry": { "type": "Point", "coordinates": [ -0.2926964, 51.2915809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19560304" }, "bbox": [ -0.2943314, 51.2910869, -0.2943314, 51.2910869 ], "geometry": { "type": "Point", "coordinates": [ -0.2943314, 51.2910869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19564209" }, "bbox": [ -0.2886217, 51.2914488, -0.2886217, 51.2914488 ], "geometry": { "type": "Point", "coordinates": [ -0.2886217, 51.2914488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19562936" }, "bbox": [ -0.2904906, 51.2939522, -0.2904906, 51.2939522 ], "geometry": { "type": "Point", "coordinates": [ -0.2904906, 51.2939522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18562865" }, "bbox": [ -0.3050671, 51.2967639, -0.3050671, 51.2967639 ], "geometry": { "type": "Point", "coordinates": [ -0.3050671, 51.2967639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19550288" }, "bbox": [ -0.2944696, 51.2896224, -0.2944696, 51.2896224 ], "geometry": { "type": "Point", "coordinates": [ -0.2944696, 51.2896224 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567722" }, "bbox": [ -0.2978249, 51.2925058, -0.2978249, 51.2925058 ], "geometry": { "type": "Point", "coordinates": [ -0.2978249, 51.2925058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18560601" }, "bbox": [ -0.309094, 51.2911698, -0.309094, 51.2911698 ], "geometry": { "type": "Point", "coordinates": [ -0.309094, 51.2911698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18564838" }, "bbox": [ -0.3019844, 51.2942586, -0.3019844, 51.2942586 ], "geometry": { "type": "Point", "coordinates": [ -0.3019844, 51.2942586 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18564716" }, "bbox": [ -0.3023158, 51.2923029, -0.3023158, 51.2923029 ], "geometry": { "type": "Point", "coordinates": [ -0.3023158, 51.2923029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18569312" }, "bbox": [ -0.2955595, 51.2918371, -0.2955595, 51.2918371 ], "geometry": { "type": "Point", "coordinates": [ -0.2955595, 51.2918371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567118" }, "bbox": [ -0.2988104, 51.2924043, -0.2988104, 51.2924043 ], "geometry": { "type": "Point", "coordinates": [ -0.2988104, 51.2924043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18567803" }, "bbox": [ -0.2975627, 51.2911322, -0.2975627, 51.2911322 ], "geometry": { "type": "Point", "coordinates": [ -0.2975627, 51.2911322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19550189" }, "bbox": [ -0.2949557, 51.2893453, -0.2949557, 51.2893453 ], "geometry": { "type": "Point", "coordinates": [ -0.2949557, 51.2893453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19553870" }, "bbox": [ -0.2892611, 51.2879351, -0.2892611, 51.2879351 ], "geometry": { "type": "Point", "coordinates": [ -0.2892611, 51.2879351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442290" }, "bbox": [ -0.3237822, 51.191259, -0.3237822, 51.191259 ], "geometry": { "type": "Point", "coordinates": [ -0.3237822, 51.191259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441688" }, "bbox": [ -0.3245665, 51.1912952, -0.3245665, 51.1912952 ], "geometry": { "type": "Point", "coordinates": [ -0.3245665, 51.1912952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93419282" }, "bbox": [ -0.6579919, 51.167864, -0.6579919, 51.167864 ], "geometry": { "type": "Point", "coordinates": [ -0.6579919, 51.167864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92402799" }, "bbox": [ -0.680486, 51.161131, -0.680486, 51.161131 ], "geometry": { "type": "Point", "coordinates": [ -0.680486, 51.161131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92417423" }, "bbox": [ -0.674014, 51.1628622, -0.674014, 51.1628622 ], "geometry": { "type": "Point", "coordinates": [ -0.674014, 51.1628622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93416845" }, "bbox": [ -0.6630713, 51.1643453, -0.6630713, 51.1643453 ], "geometry": { "type": "Point", "coordinates": [ -0.6630713, 51.1643453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93413479" }, "bbox": [ -0.6665866, 51.1677702, -0.6665866, 51.1677702 ], "geometry": { "type": "Point", "coordinates": [ -0.6665866, 51.1677702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92390480" }, "bbox": [ -0.6862124, 51.1501357, -0.6862124, 51.1501357 ], "geometry": { "type": "Point", "coordinates": [ -0.6862124, 51.1501357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93416576" }, "bbox": [ -0.6621017, 51.1676099, -0.6621017, 51.1676099 ], "geometry": { "type": "Point", "coordinates": [ -0.6621017, 51.1676099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93410174" }, "bbox": [ -0.6712838, 51.1671634, -0.6712838, 51.1671634 ], "geometry": { "type": "Point", "coordinates": [ -0.6712838, 51.1671634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93424839" }, "bbox": [ -0.6640303, 51.1731471, -0.6640303, 51.1731471 ], "geometry": { "type": "Point", "coordinates": [ -0.6640303, 51.1731471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94412493" }, "bbox": [ -0.6534214, 51.1691329, -0.6534214, 51.1691329 ], "geometry": { "type": "Point", "coordinates": [ -0.6534214, 51.1691329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91398799" }, "bbox": [ -0.687643, 51.152114, -0.687643, 51.152114 ], "geometry": { "type": "Point", "coordinates": [ -0.687643, 51.152114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93426436" }, "bbox": [ -0.6627176, 51.1722784, -0.6627176, 51.1722784 ], "geometry": { "type": "Point", "coordinates": [ -0.6627176, 51.1722784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93418162" }, "bbox": [ -0.6598709, 51.1661071, -0.6598709, 51.1661071 ], "geometry": { "type": "Point", "coordinates": [ -0.6598709, 51.1661071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92392376" }, "bbox": [ -0.6826481, 51.1498198, -0.6826481, 51.1498198 ], "geometry": { "type": "Point", "coordinates": [ -0.6826481, 51.1498198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85417582" }, "bbox": [ -0.7748011, 51.1692185, -0.7748011, 51.1692185 ], "geometry": { "type": "Point", "coordinates": [ -0.7748011, 51.1692185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84419917" }, "bbox": [ -0.7857819, 51.1634103, -0.7857819, 51.1634103 ], "geometry": { "type": "Point", "coordinates": [ -0.7857819, 51.1634103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84417956" }, "bbox": [ -0.7886258, 51.1670177, -0.7886258, 51.1670177 ], "geometry": { "type": "Point", "coordinates": [ -0.7886258, 51.1670177 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84415301" }, "bbox": [ -0.7923577, 51.1622841, -0.7923577, 51.1622841 ], "geometry": { "type": "Point", "coordinates": [ -0.7923577, 51.1622841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84419714" }, "bbox": [ -0.7866746, 51.1640444, -0.7866746, 51.1640444 ], "geometry": { "type": "Point", "coordinates": [ -0.7866746, 51.1640444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84417910" }, "bbox": [ -0.7889421, 51.163103, -0.7889421, 51.163103 ], "geometry": { "type": "Point", "coordinates": [ -0.7889421, 51.163103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84402933" }, "bbox": [ -0.7959136, 51.1562997, -0.7959136, 51.1562997 ], "geometry": { "type": "Point", "coordinates": [ -0.7959136, 51.1562997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85409674" }, "bbox": [ -0.7722079, 51.1597494, -0.7722079, 51.1597494 ], "geometry": { "type": "Point", "coordinates": [ -0.7722079, 51.1597494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85401148" }, "bbox": [ -0.7842994, 51.1576396, -0.7842994, 51.1576396 ], "geometry": { "type": "Point", "coordinates": [ -0.7842994, 51.1576396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85395594" }, "bbox": [ -0.7795261, 51.1521966, -0.7795261, 51.1521966 ], "geometry": { "type": "Point", "coordinates": [ -0.7795261, 51.1521966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85405077" }, "bbox": [ -0.7790212, 51.159833, -0.7790212, 51.159833 ], "geometry": { "type": "Point", "coordinates": [ -0.7790212, 51.159833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85405096" }, "bbox": [ -0.7785578, 51.1624799, -0.7785578, 51.1624799 ], "geometry": { "type": "Point", "coordinates": [ -0.7785578, 51.1624799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91346850" }, "bbox": [ -0.6920843, 51.1020824, -0.6920843, 51.1020824 ], "geometry": { "type": "Point", "coordinates": [ -0.6920843, 51.1020824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85408276" }, "bbox": [ -0.7745166, 51.1588566, -0.7745166, 51.1588566 ], "geometry": { "type": "Point", "coordinates": [ -0.7745166, 51.1588566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85402315" }, "bbox": [ -0.7825341, 51.1543657, -0.7825341, 51.1543657 ], "geometry": { "type": "Point", "coordinates": [ -0.7825341, 51.1543657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85409489" }, "bbox": [ -0.7722494, 51.1610048, -0.7722494, 51.1610048 ], "geometry": { "type": "Point", "coordinates": [ -0.7722494, 51.1610048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85419348" }, "bbox": [ -0.7725185, 51.1658831, -0.7725185, 51.1658831 ], "geometry": { "type": "Point", "coordinates": [ -0.7725185, 51.1658831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85419627" }, "bbox": [ -0.7757256, 51.166309, -0.7757256, 51.166309 ], "geometry": { "type": "Point", "coordinates": [ -0.7757256, 51.166309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85412043" }, "bbox": [ -0.7828246, 51.1657964, -0.7828246, 51.1657964 ], "geometry": { "type": "Point", "coordinates": [ -0.7828246, 51.1657964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85410457" }, "bbox": [ -0.7852035, 51.1671499, -0.7852035, 51.1671499 ], "geometry": { "type": "Point", "coordinates": [ -0.7852035, 51.1671499 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85418610" }, "bbox": [ -0.7734692, 51.1625153, -0.7734692, 51.1625153 ], "geometry": { "type": "Point", "coordinates": [ -0.7734692, 51.1625153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20541239" }, "bbox": [ -0.2792969, 51.2759083, -0.2792969, 51.2759083 ], "geometry": { "type": "Point", "coordinates": [ -0.2792969, 51.2759083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20535891" }, "bbox": [ -0.2727135, 51.2716032, -0.2727135, 51.2716032 ], "geometry": { "type": "Point", "coordinates": [ -0.2727135, 51.2716032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19532815" }, "bbox": [ -0.291656, 51.2651069, -0.291656, 51.2651069 ], "geometry": { "type": "Point", "coordinates": [ -0.291656, 51.2651069 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19524540" }, "bbox": [ -0.2895995, 51.2583396, -0.2895995, 51.2583396 ], "geometry": { "type": "Point", "coordinates": [ -0.2895995, 51.2583396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20537885" }, "bbox": [ -0.2700319, 51.2710138, -0.2700319, 51.2710138 ], "geometry": { "type": "Point", "coordinates": [ -0.2700319, 51.2710138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19523197" }, "bbox": [ -0.2910342, 51.2626997, -0.2910342, 51.2626997 ], "geometry": { "type": "Point", "coordinates": [ -0.2910342, 51.2626997 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20544714" }, "bbox": [ -0.2743643, 51.2736794, -0.2743643, 51.2736794 ], "geometry": { "type": "Point", "coordinates": [ -0.2743643, 51.2736794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20536995" }, "bbox": [ -0.2711403, 51.2721008, -0.2711403, 51.2721008 ], "geometry": { "type": "Point", "coordinates": [ -0.2711403, 51.2721008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20536486" }, "bbox": [ -0.2717024, 51.2709862, -0.2717024, 51.2709862 ], "geometry": { "type": "Point", "coordinates": [ -0.2717024, 51.2709862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19538935" }, "bbox": [ -0.2817233, 51.2659157, -0.2817233, 51.2659157 ], "geometry": { "type": "Point", "coordinates": [ -0.2817233, 51.2659157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20535783" }, "bbox": [ -0.2726583, 51.2708865, -0.2726583, 51.2708865 ], "geometry": { "type": "Point", "coordinates": [ -0.2726583, 51.2708865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20545720" }, "bbox": [ -0.2728884, 51.2742641, -0.2728884, 51.2742641 ], "geometry": { "type": "Point", "coordinates": [ -0.2728884, 51.2742641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20545601" }, "bbox": [ -0.2729468, 51.2724453, -0.2729468, 51.2724453 ], "geometry": { "type": "Point", "coordinates": [ -0.2729468, 51.2724453 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20545413" }, "bbox": [ -0.273359, 51.2736136, -0.273359, 51.2736136 ], "geometry": { "type": "Point", "coordinates": [ -0.273359, 51.2736136 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20536331" }, "bbox": [ -0.2725855, 51.2682484, -0.2725855, 51.2682484 ], "geometry": { "type": "Point", "coordinates": [ -0.2725855, 51.2682484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19532528" }, "bbox": [ -0.2920835, 51.2663381, -0.2920835, 51.2663381 ], "geometry": { "type": "Point", "coordinates": [ -0.2920835, 51.2663381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20552607" }, "bbox": [ -0.2770277, 51.2823118, -0.2770277, 51.2823118 ], "geometry": { "type": "Point", "coordinates": [ -0.2770277, 51.2823118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20546108" }, "bbox": [ -0.2725085, 51.2734107, -0.2725085, 51.2734107 ], "geometry": { "type": "Point", "coordinates": [ -0.2725085, 51.2734107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12546499" }, "bbox": [ -0.386249, 51.2829, -0.386249, 51.2829 ], "geometry": { "type": "Point", "coordinates": [ -0.386249, 51.2829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556304" }, "bbox": [ -0.3863911, 51.2834376, -0.3863911, 51.2834376 ], "geometry": { "type": "Point", "coordinates": [ -0.3863911, 51.2834376 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556125" }, "bbox": [ -0.3865149, 51.2852198, -0.3865149, 51.2852198 ], "geometry": { "type": "Point", "coordinates": [ -0.3865149, 51.2852198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12555830" }, "bbox": [ -0.3869367, 51.2857414, -0.3869367, 51.2857414 ], "geometry": { "type": "Point", "coordinates": [ -0.3869367, 51.2857414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556033" }, "bbox": [ -0.3867021, 51.2862993, -0.3867021, 51.2862993 ], "geometry": { "type": "Point", "coordinates": [ -0.3867021, 51.2862993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85417287" }, "bbox": [ -0.7747488, 51.1695814, -0.7747488, 51.1695814 ], "geometry": { "type": "Point", "coordinates": [ -0.7747488, 51.1695814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85409653" }, "bbox": [ -0.7722126, 51.1577004, -0.7722126, 51.1577004 ], "geometry": { "type": "Point", "coordinates": [ -0.7722126, 51.1577004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18460589" }, "bbox": [ -0.3112273, 51.2092571, -0.3112273, 51.2092571 ], "geometry": { "type": "Point", "coordinates": [ -0.3112273, 51.2092571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17462553" }, "bbox": [ -0.3207764, 51.2052974, -0.3207764, 51.2052974 ], "geometry": { "type": "Point", "coordinates": [ -0.3207764, 51.2052974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466514" }, "bbox": [ -0.3317378, 51.2025646, -0.3317378, 51.2025646 ], "geometry": { "type": "Point", "coordinates": [ -0.3317378, 51.2025646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466642" }, "bbox": [ -0.331317, 51.2052699, -0.331317, 51.2052699 ], "geometry": { "type": "Point", "coordinates": [ -0.331317, 51.2052699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466723" }, "bbox": [ -0.3314178, 51.2034432, -0.3314178, 51.2034432 ], "geometry": { "type": "Point", "coordinates": [ -0.3314178, 51.2034432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17452907" }, "bbox": [ -0.322613, 51.1927907, -0.322613, 51.1927907 ], "geometry": { "type": "Point", "coordinates": [ -0.322613, 51.1927907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17452510" }, "bbox": [ -0.323591, 51.1932225, -0.323591, 51.1932225 ], "geometry": { "type": "Point", "coordinates": [ -0.323591, 51.1932225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16459939" }, "bbox": [ -0.3271283, 51.1958048, -0.3271283, 51.1958048 ], "geometry": { "type": "Point", "coordinates": [ -0.3271283, 51.1958048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466220" }, "bbox": [ -0.332159, 51.2030518, -0.332159, 51.2030518 ], "geometry": { "type": "Point", "coordinates": [ -0.332159, 51.2030518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466619" }, "bbox": [ -0.3315741, 51.2030568, -0.3315741, 51.2030568 ], "geometry": { "type": "Point", "coordinates": [ -0.3315741, 51.2030568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466701" }, "bbox": [ -0.3314135, 51.2013365, -0.3314135, 51.2013365 ], "geometry": { "type": "Point", "coordinates": [ -0.3314135, 51.2013365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16466909" }, "bbox": [ -0.3311254, 51.2021572, -0.3311254, 51.2021572 ], "geometry": { "type": "Point", "coordinates": [ -0.3311254, 51.2021572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16467318" }, "bbox": [ -0.3304165, 51.202965, -0.3304165, 51.202965 ], "geometry": { "type": "Point", "coordinates": [ -0.3304165, 51.202965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16478940" }, "bbox": [ -0.3278215, 51.2138695, -0.3278215, 51.2138695 ], "geometry": { "type": "Point", "coordinates": [ -0.3278215, 51.2138695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18463412" }, "bbox": [ -0.3074493, 51.2021115, -0.3074493, 51.2021115 ], "geometry": { "type": "Point", "coordinates": [ -0.3074493, 51.2021115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17470108" }, "bbox": [ -0.3262162, 51.2113539, -0.3262162, 51.2113539 ], "geometry": { "type": "Point", "coordinates": [ -0.3262162, 51.2113539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17444967" }, "bbox": [ -0.3201176, 51.1892631, -0.3201176, 51.1892631 ], "geometry": { "type": "Point", "coordinates": [ -0.3201176, 51.1892631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18462143" }, "bbox": [ -0.3091647, 51.2049081, -0.3091647, 51.2049081 ], "geometry": { "type": "Point", "coordinates": [ -0.3091647, 51.2049081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18462057" }, "bbox": [ -0.3093254, 51.2061178, -0.3093254, 51.2061178 ], "geometry": { "type": "Point", "coordinates": [ -0.3093254, 51.2061178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441083" }, "bbox": [ -0.3257252, 51.1906684, -0.3257252, 51.1906684 ], "geometry": { "type": "Point", "coordinates": [ -0.3257252, 51.1906684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449777" }, "bbox": [ -0.3274736, 51.1903388, -0.3274736, 51.1903388 ], "geometry": { "type": "Point", "coordinates": [ -0.3274736, 51.1903388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16449574" }, "bbox": [ -0.3279018, 51.1898495, -0.3279018, 51.1898495 ], "geometry": { "type": "Point", "coordinates": [ -0.3279018, 51.1898495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442264" }, "bbox": [ -0.3239634, 51.1890502, -0.3239634, 51.1890502 ], "geometry": { "type": "Point", "coordinates": [ -0.3239634, 51.1890502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17447120" }, "bbox": [ -0.31687, 51.184854, -0.31687, 51.184854 ], "geometry": { "type": "Point", "coordinates": [ -0.31687, 51.184854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17446581" }, "bbox": [ -0.3178178, 51.1904441, -0.3178178, 51.1904441 ], "geometry": { "type": "Point", "coordinates": [ -0.3178178, 51.1904441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16456390" }, "bbox": [ -0.3321085, 51.2005041, -0.3321085, 51.2005041 ], "geometry": { "type": "Point", "coordinates": [ -0.3321085, 51.2005041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448971" }, "bbox": [ -0.3284897, 51.1897717, -0.3284897, 51.1897717 ], "geometry": { "type": "Point", "coordinates": [ -0.3284897, 51.1897717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16448372" }, "bbox": [ -0.3292715, 51.1897857, -0.3292715, 51.1897857 ], "geometry": { "type": "Point", "coordinates": [ -0.3292715, 51.1897857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17459117" }, "bbox": [ -0.3140004, 51.1937848, -0.3140004, 51.1937848 ], "geometry": { "type": "Point", "coordinates": [ -0.3140004, 51.1937848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17445529" }, "bbox": [ -0.3193844, 51.1858532, -0.3193844, 51.1858532 ], "geometry": { "type": "Point", "coordinates": [ -0.3193844, 51.1858532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17443851" }, "bbox": [ -0.3218154, 51.1877794, -0.3218154, 51.1877794 ], "geometry": { "type": "Point", "coordinates": [ -0.3218154, 51.1877794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17442360" }, "bbox": [ -0.3236422, 51.1888859, -0.3236422, 51.1888859 ], "geometry": { "type": "Point", "coordinates": [ -0.3236422, 51.1888859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94412052" }, "bbox": [ -0.6541942, 51.1651974, -0.6541942, 51.1651974 ], "geometry": { "type": "Point", "coordinates": [ -0.6541942, 51.1651974 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13501883" }, "bbox": [ -0.3798496, 51.2454841, -0.3798496, 51.2454841 ], "geometry": { "type": "Point", "coordinates": [ -0.3798496, 51.2454841 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12555925" }, "bbox": [ -0.3869089, 51.2851015, -0.3869089, 51.2851015 ], "geometry": { "type": "Point", "coordinates": [ -0.3869089, 51.2851015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13502096" }, "bbox": [ -0.3795424, 51.2465577, -0.3795424, 51.2465577 ], "geometry": { "type": "Point", "coordinates": [ -0.3795424, 51.2465577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98441763" }, "bbox": [ -0.5965099, 51.1925134, -0.5965099, 51.1925134 ], "geometry": { "type": "Point", "coordinates": [ -0.5965099, 51.1925134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97447433" }, "bbox": [ -0.6027453, 51.1897751, -0.6027453, 51.1897751 ], "geometry": { "type": "Point", "coordinates": [ -0.6027453, 51.1897751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98440438" }, "bbox": [ -0.5985491, 51.1902287, -0.5985491, 51.1902287 ], "geometry": { "type": "Point", "coordinates": [ -0.5985491, 51.1902287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96448636" }, "bbox": [ -0.6153017, 51.1902519, -0.6153017, 51.1902519 ], "geometry": { "type": "Point", "coordinates": [ -0.6153017, 51.1902519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97446340" }, "bbox": [ -0.6046076, 51.1904662, -0.6046076, 51.1904662 ], "geometry": { "type": "Point", "coordinates": [ -0.6046076, 51.1904662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572521" }, "bbox": [ -0.3767894, 51.3027922, -0.3767894, 51.3027922 ], "geometry": { "type": "Point", "coordinates": [ -0.3767894, 51.3027922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13564130" }, "bbox": [ -0.3746853, 51.2945515, -0.3746853, 51.2945515 ], "geometry": { "type": "Point", "coordinates": [ -0.3746853, 51.2945515 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12561952" }, "bbox": [ -0.3916262, 51.2951365, -0.3916262, 51.2951365 ], "geometry": { "type": "Point", "coordinates": [ -0.3916262, 51.2951365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12553778" }, "bbox": [ -0.3894493, 51.2901252, -0.3894493, 51.2901252 ], "geometry": { "type": "Point", "coordinates": [ -0.3894493, 51.2901252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98442175" }, "bbox": [ -0.5958168, 51.1936122, -0.5958168, 51.1936122 ], "geometry": { "type": "Point", "coordinates": [ -0.5958168, 51.1936122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98442981" }, "bbox": [ -0.5948221, 51.1940254, -0.5948221, 51.1940254 ], "geometry": { "type": "Point", "coordinates": [ -0.5948221, 51.1940254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97449259" }, "bbox": [ -0.5999576, 51.192211, -0.5999576, 51.192211 ], "geometry": { "type": "Point", "coordinates": [ -0.5999576, 51.192211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97441534" }, "bbox": [ -0.6106885, 51.1899826, -0.6106885, 51.1899826 ], "geometry": { "type": "Point", "coordinates": [ -0.6106885, 51.1899826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97440823" }, "bbox": [ -0.6121457, 51.1889375, -0.6121457, 51.1889375 ], "geometry": { "type": "Point", "coordinates": [ -0.6121457, 51.1889375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17456209" }, "bbox": [ -0.315917, 51.1926837, -0.315917, 51.1926837 ], "geometry": { "type": "Point", "coordinates": [ -0.315917, 51.1926837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12506672" }, "bbox": [ -0.3872667, 51.2445431, -0.3872667, 51.2445431 ], "geometry": { "type": "Point", "coordinates": [ -0.3872667, 51.2445431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86411888" }, "bbox": [ -0.7687681, 51.1702837, -0.7687681, 51.1702837 ], "geometry": { "type": "Point", "coordinates": [ -0.7687681, 51.1702837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12507325" }, "bbox": [ -0.3870223, 51.2401666, -0.3870223, 51.2401666 ], "geometry": { "type": "Point", "coordinates": [ -0.3870223, 51.2401666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86406585" }, "bbox": [ -0.7621225, 51.1607656, -0.7621225, 51.1607656 ], "geometry": { "type": "Point", "coordinates": [ -0.7621225, 51.1607656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86411151" }, "bbox": [ -0.7696688, 51.1654625, -0.7696688, 51.1654625 ], "geometry": { "type": "Point", "coordinates": [ -0.7696688, 51.1654625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14500884" }, "bbox": [ -0.3661288, 51.245694, -0.3661288, 51.245694 ], "geometry": { "type": "Point", "coordinates": [ -0.3661288, 51.245694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17516460" }, "bbox": [ -0.3156978, 51.2514366, -0.3156978, 51.2514366 ], "geometry": { "type": "Point", "coordinates": [ -0.3156978, 51.2514366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94411455" }, "bbox": [ -0.6549545, 51.1654782, -0.6549545, 51.1654782 ], "geometry": { "type": "Point", "coordinates": [ -0.6549545, 51.1654782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93406691" }, "bbox": [ -0.6619161, 51.15976, -0.6619161, 51.15976 ], "geometry": { "type": "Point", "coordinates": [ -0.6619161, 51.15976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13502969" }, "bbox": [ -0.3781546, 51.2442618, -0.3781546, 51.2442618 ], "geometry": { "type": "Point", "coordinates": [ -0.3781546, 51.2442618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17519829" }, "bbox": [ -0.3107753, 51.24844, -0.3107753, 51.24844 ], "geometry": { "type": "Point", "coordinates": [ -0.3107753, 51.24844 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12504838" }, "bbox": [ -0.3899694, 51.2415075, -0.3899694, 51.2415075 ], "geometry": { "type": "Point", "coordinates": [ -0.3899694, 51.2415075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93419865" }, "bbox": [ -0.6571437, 51.1664339, -0.6571437, 51.1664339 ], "geometry": { "type": "Point", "coordinates": [ -0.6571437, 51.1664339 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93419008" }, "bbox": [ -0.6587304, 51.1609064, -0.6587304, 51.1609064 ], "geometry": { "type": "Point", "coordinates": [ -0.6587304, 51.1609064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94381007" }, "bbox": [ -0.6561235, 51.1341284, -0.6561235, 51.1341284 ], "geometry": { "type": "Point", "coordinates": [ -0.6561235, 51.1341284 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12505837" }, "bbox": [ -0.3885653, 51.2415662, -0.3885653, 51.2415662 ], "geometry": { "type": "Point", "coordinates": [ -0.3885653, 51.2415662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14519841" }, "bbox": [ -0.3538958, 51.2502353, -0.3538958, 51.2502353 ], "geometry": { "type": "Point", "coordinates": [ -0.3538958, 51.2502353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94382403" }, "bbox": [ -0.653891, 51.1338286, -0.653891, 51.1338286 ], "geometry": { "type": "Point", "coordinates": [ -0.653891, 51.1338286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14518307" }, "bbox": [ -0.3561401, 51.2472702, -0.3561401, 51.2472702 ], "geometry": { "type": "Point", "coordinates": [ -0.3561401, 51.2472702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18520045" }, "bbox": [ -0.3103526, 51.2593026, -0.3103526, 51.2593026 ], "geometry": { "type": "Point", "coordinates": [ -0.3103526, 51.2593026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13511905" }, "bbox": [ -0.3790218, 51.2478058, -0.3790218, 51.2478058 ], "geometry": { "type": "Point", "coordinates": [ -0.3790218, 51.2478058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12505218" }, "bbox": [ -0.3894274, 51.239709, -0.3894274, 51.239709 ], "geometry": { "type": "Point", "coordinates": [ -0.3894274, 51.239709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12509676" }, "bbox": [ -0.3829676, 51.2447904, -0.3829676, 51.2447904 ], "geometry": { "type": "Point", "coordinates": [ -0.3829676, 51.2447904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26520427" }, "bbox": [ -0.195223, 51.2557306, -0.195223, 51.2557306 ], "geometry": { "type": "Point", "coordinates": [ -0.195223, 51.2557306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14505390" }, "bbox": [ -0.3627543, 51.2445715, -0.3627543, 51.2445715 ], "geometry": { "type": "Point", "coordinates": [ -0.3627543, 51.2445715 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12507838" }, "bbox": [ -0.3862447, 51.241591, -0.3862447, 51.241591 ], "geometry": { "type": "Point", "coordinates": [ -0.3862447, 51.241591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13551329" }, "bbox": [ -0.3790547, 51.2855596, -0.3790547, 51.2855596 ], "geometry": { "type": "Point", "coordinates": [ -0.3790547, 51.2855596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550664" }, "bbox": [ -0.3798658, 51.288649, -0.3798658, 51.288649 ], "geometry": { "type": "Point", "coordinates": [ -0.3798658, 51.288649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13564874" }, "bbox": [ -0.3739284, 51.2967837, -0.3739284, 51.2967837 ], "geometry": { "type": "Point", "coordinates": [ -0.3739284, 51.2967837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90370869" }, "bbox": [ -0.7139135, 51.1312747, -0.7139135, 51.1312747 ], "geometry": { "type": "Point", "coordinates": [ -0.7139135, 51.1312747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89377681" }, "bbox": [ -0.7185863, 51.1326532, -0.7185863, 51.1326532 ], "geometry": { "type": "Point", "coordinates": [ -0.7185863, 51.1326532 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25529919" }, "bbox": [ -0.1959636, 51.2549944, -0.1959636, 51.2549944 ], "geometry": { "type": "Point", "coordinates": [ -0.1959636, 51.2549944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572420" }, "bbox": [ -0.3769387, 51.3026697, -0.3769387, 51.3026697 ], "geometry": { "type": "Point", "coordinates": [ -0.3769387, 51.3026697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25516792" }, "bbox": [ -0.2006611, 51.2525274, -0.2006611, 51.2525274 ], "geometry": { "type": "Point", "coordinates": [ -0.2006611, 51.2525274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89374438" }, "bbox": [ -0.7230749, 51.1287173, -0.7230749, 51.1287173 ], "geometry": { "type": "Point", "coordinates": [ -0.7230749, 51.1287173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90351483" }, "bbox": [ -0.7150677, 51.1184006, -0.7150677, 51.1184006 ], "geometry": { "type": "Point", "coordinates": [ -0.7150677, 51.1184006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90355528" }, "bbox": [ -0.7087583, 51.1098019, -0.7087583, 51.1098019 ], "geometry": { "type": "Point", "coordinates": [ -0.7087583, 51.1098019 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85391290" }, "bbox": [ -0.7845843, 51.1519732, -0.7845843, 51.1519732 ], "geometry": { "type": "Point", "coordinates": [ -0.7845843, 51.1519732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84395876" }, "bbox": [ -0.7917972, 51.1509806, -0.7917972, 51.1509806 ], "geometry": { "type": "Point", "coordinates": [ -0.7917972, 51.1509806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84395589" }, "bbox": [ -0.7920616, 51.1522383, -0.7920616, 51.1522383 ], "geometry": { "type": "Point", "coordinates": [ -0.7920616, 51.1522383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84403163" }, "bbox": [ -0.795842, 51.1586626, -0.795842, 51.1586626 ], "geometry": { "type": "Point", "coordinates": [ -0.795842, 51.1586626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10556953" }, "bbox": [ -0.4149973, 51.2890945, -0.4149973, 51.2890945 ], "geometry": { "type": "Point", "coordinates": [ -0.4149973, 51.2890945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11567445" }, "bbox": [ -0.3995462, 51.2960275, -0.3995462, 51.2960275 ], "geometry": { "type": "Point", "coordinates": [ -0.3995462, 51.2960275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10555529" }, "bbox": [ -0.4161055, 51.285783, -0.4161055, 51.285783 ], "geometry": { "type": "Point", "coordinates": [ -0.4161055, 51.285783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90396968" }, "bbox": [ -0.7048119, 51.1491948, -0.7048119, 51.1491948 ], "geometry": { "type": "Point", "coordinates": [ -0.7048119, 51.1491948 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25524506" }, "bbox": [ -0.2036622, 51.2539517, -0.2036622, 51.2539517 ], "geometry": { "type": "Point", "coordinates": [ -0.2036622, 51.2539517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25526704" }, "bbox": [ -0.2006047, 51.2538233, -0.2006047, 51.2538233 ], "geometry": { "type": "Point", "coordinates": [ -0.2006047, 51.2538233 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89379185" }, "bbox": [ -0.7162885, 51.13285, -0.7162885, 51.13285 ], "geometry": { "type": "Point", "coordinates": [ -0.7162885, 51.13285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89356971" }, "bbox": [ -0.7208329, 51.1142836, -0.7208329, 51.1142836 ], "geometry": { "type": "Point", "coordinates": [ -0.7208329, 51.1142836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37546617" }, "bbox": [ -0.0282124, 51.2699804, -0.0282124, 51.2699804 ], "geometry": { "type": "Point", "coordinates": [ -0.0282124, 51.2699804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26526131" }, "bbox": [ -0.1872966, 51.2559723, -0.1872966, 51.2559723 ], "geometry": { "type": "Point", "coordinates": [ -0.1872966, 51.2559723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89336487" }, "bbox": [ -0.7212975, 51.0971555, -0.7212975, 51.0971555 ], "geometry": { "type": "Point", "coordinates": [ -0.7212975, 51.0971555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88349650" }, "bbox": [ -0.7293025, 51.1029388, -0.7293025, 51.1029388 ], "geometry": { "type": "Point", "coordinates": [ -0.7293025, 51.1029388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23525707" }, "bbox": [ -0.2282727, 51.254132, -0.2282727, 51.254132 ], "geometry": { "type": "Point", "coordinates": [ -0.2282727, 51.254132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90342837" }, "bbox": [ -0.711696, 51.1016226, -0.711696, 51.1016226 ], "geometry": { "type": "Point", "coordinates": [ -0.711696, 51.1016226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90352416" }, "bbox": [ -0.7125195, 51.1081095, -0.7125195, 51.1081095 ], "geometry": { "type": "Point", "coordinates": [ -0.7125195, 51.1081095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89343565" }, "bbox": [ -0.7243708, 51.1050617, -0.7243708, 51.1050617 ], "geometry": { "type": "Point", "coordinates": [ -0.7243708, 51.1050617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89352610" }, "bbox": [ -0.7246053, 51.1089888, -0.7246053, 51.1089888 ], "geometry": { "type": "Point", "coordinates": [ -0.7246053, 51.1089888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17444934" }, "bbox": [ -0.3206489, 51.1865711, -0.3206489, 51.1865711 ], "geometry": { "type": "Point", "coordinates": [ -0.3206489, 51.1865711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572836" }, "bbox": [ -0.3762996, 51.3041803, -0.3762996, 51.3041803 ], "geometry": { "type": "Point", "coordinates": [ -0.3762996, 51.3041803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13500145" }, "bbox": [ -0.3830486, 51.2421293, -0.3830486, 51.2421293 ], "geometry": { "type": "Point", "coordinates": [ -0.3830486, 51.2421293 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16457985" }, "bbox": [ -0.3295237, 51.1999427, -0.3295237, 51.1999427 ], "geometry": { "type": "Point", "coordinates": [ -0.3295237, 51.1999427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16458465" }, "bbox": [ -0.3288442, 51.1982797, -0.3288442, 51.1982797 ], "geometry": { "type": "Point", "coordinates": [ -0.3288442, 51.1982797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07522362" }, "bbox": [ -0.4641142, 51.262749, -0.4641142, 51.262749 ], "geometry": { "type": "Point", "coordinates": [ -0.4641142, 51.262749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91326756" }, "bbox": [ -0.6926846, 51.0850838, -0.6926846, 51.0850838 ], "geometry": { "type": "Point", "coordinates": [ -0.6926846, 51.0850838 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91327560" }, "bbox": [ -0.6914124, 51.0854365, -0.6914124, 51.0854365 ], "geometry": { "type": "Point", "coordinates": [ -0.6914124, 51.0854365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13506358" }, "bbox": [ -0.3743477, 51.2429144, -0.3743477, 51.2429144 ], "geometry": { "type": "Point", "coordinates": [ -0.3743477, 51.2429144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13519617" }, "bbox": [ -0.3724103, 51.2471795, -0.3724103, 51.2471795 ], "geometry": { "type": "Point", "coordinates": [ -0.3724103, 51.2471795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556009" }, "bbox": [ -0.3868434, 51.2838632, -0.3868434, 51.2838632 ], "geometry": { "type": "Point", "coordinates": [ -0.3868434, 51.2838632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32479518" }, "bbox": [ -0.0983953, 51.2089075, -0.0983953, 51.2089075 ], "geometry": { "type": "Point", "coordinates": [ -0.0983953, 51.2089075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556349" }, "bbox": [ -0.3861976, 51.2874032, -0.3861976, 51.2874032 ], "geometry": { "type": "Point", "coordinates": [ -0.3861976, 51.2874032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12555756" }, "bbox": [ -0.3871442, 51.2880814, -0.3871442, 51.2880814 ], "geometry": { "type": "Point", "coordinates": [ -0.3871442, 51.2880814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91347570" }, "bbox": [ -0.6902913, 51.1043238, -0.6902913, 51.1043238 ], "geometry": { "type": "Point", "coordinates": [ -0.6902913, 51.1043238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18580382" }, "bbox": [ -0.3077769, 51.3163611, -0.3077769, 51.3163611 ], "geometry": { "type": "Point", "coordinates": [ -0.3077769, 51.3163611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19592545" }, "bbox": [ -0.290426, 51.3215306, -0.290426, 51.3215306 ], "geometry": { "type": "Point", "coordinates": [ -0.290426, 51.3215306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17595080" }, "bbox": [ -0.31218, 51.3244956, -0.31218, 51.3244956 ], "geometry": { "type": "Point", "coordinates": [ -0.31218, 51.3244956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19592819" }, "bbox": [ -0.2896537, 51.3193998, -0.2896537, 51.3193998 ], "geometry": { "type": "Point", "coordinates": [ -0.2896537, 51.3193998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13575322" }, "bbox": [ -0.3726791, 51.3028709, -0.3726791, 51.3028709 ], "geometry": { "type": "Point", "coordinates": [ -0.3726791, 51.3028709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14439556" }, "bbox": [ -0.3569335, 51.1797099, -0.3569335, 51.1797099 ], "geometry": { "type": "Point", "coordinates": [ -0.3569335, 51.1797099 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14437565" }, "bbox": [ -0.35983, 51.1810149, -0.35983, 51.1810149 ], "geometry": { "type": "Point", "coordinates": [ -0.35983, 51.1810149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15430793" }, "bbox": [ -0.3548575, 51.1828483, -0.3548575, 51.1828483 ], "geometry": { "type": "Point", "coordinates": [ -0.3548575, 51.1828483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14448002" }, "bbox": [ -0.3593041, 51.1861821, -0.3593041, 51.1861821 ], "geometry": { "type": "Point", "coordinates": [ -0.3593041, 51.1861821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550156" }, "bbox": [ -0.3808097, 51.2879774, -0.3808097, 51.2879774 ], "geometry": { "type": "Point", "coordinates": [ -0.3808097, 51.2879774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572430" }, "bbox": [ -0.3768004, 51.3034513, -0.3768004, 51.3034513 ], "geometry": { "type": "Point", "coordinates": [ -0.3768004, 51.3034513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13573723" }, "bbox": [ -0.375068, 51.3028944, -0.375068, 51.3028944 ], "geometry": { "type": "Point", "coordinates": [ -0.375068, 51.3028944 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14435368" }, "bbox": [ -0.3621807, 51.1811514, -0.3621807, 51.1811514 ], "geometry": { "type": "Point", "coordinates": [ -0.3621807, 51.1811514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13574108" }, "bbox": [ -0.3743896, 51.3014776, -0.3743896, 51.3014776 ], "geometry": { "type": "Point", "coordinates": [ -0.3743896, 51.3014776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14438951" }, "bbox": [ -0.3578941, 51.1792758, -0.3578941, 51.1792758 ], "geometry": { "type": "Point", "coordinates": [ -0.3578941, 51.1792758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550989" }, "bbox": [ -0.3794795, 51.2909417, -0.3794795, 51.2909417 ], "geometry": { "type": "Point", "coordinates": [ -0.3794795, 51.2909417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12559467" }, "bbox": [ -0.381845, 51.2890064, -0.381845, 51.2890064 ], "geometry": { "type": "Point", "coordinates": [ -0.381845, 51.2890064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550771" }, "bbox": [ -0.379774, 51.289357, -0.379774, 51.289357 ], "geometry": { "type": "Point", "coordinates": [ -0.379774, 51.289357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556151" }, "bbox": [ -0.3864397, 51.2875465, -0.3864397, 51.2875465 ], "geometry": { "type": "Point", "coordinates": [ -0.3864397, 51.2875465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92398181" }, "bbox": [ -0.674113, 51.1501052, -0.674113, 51.1501052 ], "geometry": { "type": "Point", "coordinates": [ -0.674113, 51.1501052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13551425" }, "bbox": [ -0.3790909, 51.2851912, -0.3790909, 51.2851912 ], "geometry": { "type": "Point", "coordinates": [ -0.3790909, 51.2851912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12545879" }, "bbox": [ -0.3872582, 51.2809977, -0.3872582, 51.2809977 ], "geometry": { "type": "Point", "coordinates": [ -0.3872582, 51.2809977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92408143" }, "bbox": [ -0.6740041, 51.1556163, -0.6740041, 51.1556163 ], "geometry": { "type": "Point", "coordinates": [ -0.6740041, 51.1556163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572828" }, "bbox": [ -0.3762159, 51.3033821, -0.3762159, 51.3033821 ], "geometry": { "type": "Point", "coordinates": [ -0.3762159, 51.3033821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13564677" }, "bbox": [ -0.3738421, 51.2989301, -0.3738421, 51.2989301 ], "geometry": { "type": "Point", "coordinates": [ -0.3738421, 51.2989301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12546199" }, "bbox": [ -0.3866522, 51.282921, -0.3866522, 51.282921 ], "geometry": { "type": "Point", "coordinates": [ -0.3866522, 51.282921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556011" }, "bbox": [ -0.3868597, 51.2840798, -0.3868597, 51.2840798 ], "geometry": { "type": "Point", "coordinates": [ -0.3868597, 51.2840798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12555758" }, "bbox": [ -0.3870258, 51.2881258, -0.3870258, 51.2881258 ], "geometry": { "type": "Point", "coordinates": [ -0.3870258, 51.2881258 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12546285" }, "bbox": [ -0.3865074, 51.2817849, -0.3865074, 51.2817849 ], "geometry": { "type": "Point", "coordinates": [ -0.3865074, 51.2817849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14509963" }, "bbox": [ -0.354545, 51.2431681, -0.354545, 51.2431681 ], "geometry": { "type": "Point", "coordinates": [ -0.354545, 51.2431681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550935" }, "bbox": [ -0.3796624, 51.2859828, -0.3796624, 51.2859828 ], "geometry": { "type": "Point", "coordinates": [ -0.3796624, 51.2859828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15515312" }, "bbox": [ -0.3460892, 51.2476055, -0.3460892, 51.2476055 ], "geometry": { "type": "Point", "coordinates": [ -0.3460892, 51.2476055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13572539" }, "bbox": [ -0.3767262, 51.3045267, -0.3767262, 51.3045267 ], "geometry": { "type": "Point", "coordinates": [ -0.3767262, 51.3045267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15501675" }, "bbox": [ -0.3516047, 51.2442356, -0.3516047, 51.2442356 ], "geometry": { "type": "Point", "coordinates": [ -0.3516047, 51.2442356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12555948" }, "bbox": [ -0.3868376, 51.2873203, -0.3868376, 51.2873203 ], "geometry": { "type": "Point", "coordinates": [ -0.3868376, 51.2873203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13429892" }, "bbox": [ -0.3706655, 51.1743227, -0.3706655, 51.1743227 ], "geometry": { "type": "Point", "coordinates": [ -0.3706655, 51.1743227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14506367" }, "bbox": [ -0.3591579, 51.2436969, -0.3591579, 51.2436969 ], "geometry": { "type": "Point", "coordinates": [ -0.3591579, 51.2436969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556230" }, "bbox": [ -0.3863904, 51.2857075, -0.3863904, 51.2857075 ], "geometry": { "type": "Point", "coordinates": [ -0.3863904, 51.2857075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550774" }, "bbox": [ -0.3797441, 51.2896735, -0.3797441, 51.2896735 ], "geometry": { "type": "Point", "coordinates": [ -0.3797441, 51.2896735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556258" }, "bbox": [ -0.3862806, 51.2882279, -0.3862806, 51.2882279 ], "geometry": { "type": "Point", "coordinates": [ -0.3862806, 51.2882279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13452347" }, "bbox": [ -0.3807279, 51.1968872, -0.3807279, 51.1968872 ], "geometry": { "type": "Point", "coordinates": [ -0.3807279, 51.1968872 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13452816" }, "bbox": [ -0.3800978, 51.1944228, -0.3800978, 51.1944228 ], "geometry": { "type": "Point", "coordinates": [ -0.3800978, 51.1944228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13502761" }, "bbox": [ -0.378866, 51.2430122, -0.378866, 51.2430122 ], "geometry": { "type": "Point", "coordinates": [ -0.378866, 51.2430122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16478935" }, "bbox": [ -0.3277289, 51.2134264, -0.3277289, 51.2134264 ], "geometry": { "type": "Point", "coordinates": [ -0.3277289, 51.2134264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15516326" }, "bbox": [ -0.3445361, 51.2487712, -0.3445361, 51.2487712 ], "geometry": { "type": "Point", "coordinates": [ -0.3445361, 51.2487712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14505748" }, "bbox": [ -0.358698, 51.2424244, -0.358698, 51.2424244 ], "geometry": { "type": "Point", "coordinates": [ -0.358698, 51.2424244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14504344" }, "bbox": [ -0.3624307, 51.2416932, -0.3624307, 51.2416932 ], "geometry": { "type": "Point", "coordinates": [ -0.3624307, 51.2416932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14436490" }, "bbox": [ -0.3607675, 51.1829086, -0.3607675, 51.1829086 ], "geometry": { "type": "Point", "coordinates": [ -0.3607675, 51.1829086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15430388" }, "bbox": [ -0.3557098, 51.1826438, -0.3557098, 51.1826438 ], "geometry": { "type": "Point", "coordinates": [ -0.3557098, 51.1826438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16467135" }, "bbox": [ -0.3308771, 51.2044382, -0.3308771, 51.2044382 ], "geometry": { "type": "Point", "coordinates": [ -0.3308771, 51.2044382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14504639" }, "bbox": [ -0.3615805, 51.2412542, -0.3615805, 51.2412542 ], "geometry": { "type": "Point", "coordinates": [ -0.3615805, 51.2412542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16457591" }, "bbox": [ -0.3304525, 51.2006025, -0.3304525, 51.2006025 ], "geometry": { "type": "Point", "coordinates": [ -0.3304525, 51.2006025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556117" }, "bbox": [ -0.3865121, 51.2844375, -0.3865121, 51.2844375 ], "geometry": { "type": "Point", "coordinates": [ -0.3865121, 51.2844375 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12555276" }, "bbox": [ -0.387574, 51.2895763, -0.387574, 51.2895763 ], "geometry": { "type": "Point", "coordinates": [ -0.387574, 51.2895763 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479828" }, "bbox": [ -0.3123706, 51.2126935, -0.3123706, 51.2126935 ], "geometry": { "type": "Point", "coordinates": [ -0.3123706, 51.2126935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13509443" }, "bbox": [ -0.3689617, 51.2417035, -0.3689617, 51.2417035 ], "geometry": { "type": "Point", "coordinates": [ -0.3689617, 51.2417035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14502137" }, "bbox": [ -0.3651292, 51.2411122, -0.3651292, 51.2411122 ], "geometry": { "type": "Point", "coordinates": [ -0.3651292, 51.2411122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16467527" }, "bbox": [ -0.3301441, 51.2037649, -0.3301441, 51.2037649 ], "geometry": { "type": "Point", "coordinates": [ -0.3301441, 51.2037649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15503996" }, "bbox": [ -0.348331, 51.2460718, -0.348331, 51.2460718 ], "geometry": { "type": "Point", "coordinates": [ -0.348331, 51.2460718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13500738" }, "bbox": [ -0.3810323, 51.2407432, -0.3810323, 51.2407432 ], "geometry": { "type": "Point", "coordinates": [ -0.3810323, 51.2407432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13551040" }, "bbox": [ -0.3796065, 51.2865616, -0.3796065, 51.2865616 ], "geometry": { "type": "Point", "coordinates": [ -0.3796065, 51.2865616 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86405991" }, "bbox": [ -0.7633407, 51.1611921, -0.7633407, 51.1611921 ], "geometry": { "type": "Point", "coordinates": [ -0.7633407, 51.1611921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13438508" }, "bbox": [ -0.3727145, 51.1757538, -0.3727145, 51.1757538 ], "geometry": { "type": "Point", "coordinates": [ -0.3727145, 51.1757538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12503134" }, "bbox": [ -0.3923902, 51.2411138, -0.3923902, 51.2411138 ], "geometry": { "type": "Point", "coordinates": [ -0.3923902, 51.2411138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16479424" }, "bbox": [ -0.3273649, 51.2126883, -0.3273649, 51.2126883 ], "geometry": { "type": "Point", "coordinates": [ -0.3273649, 51.2126883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17479610" }, "bbox": [ -0.3124392, 51.2105888, -0.3124392, 51.2105888 ], "geometry": { "type": "Point", "coordinates": [ -0.3124392, 51.2105888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556238" }, "bbox": [ -0.3863408, 51.2864938, -0.3863408, 51.2864938 ], "geometry": { "type": "Point", "coordinates": [ -0.3863408, 51.2864938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12556279" }, "bbox": [ -0.3864821, 51.2906018, -0.3864821, 51.2906018 ], "geometry": { "type": "Point", "coordinates": [ -0.3864821, 51.2906018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12569824" }, "bbox": [ -0.3818484, 51.2962612, -0.3818484, 51.2962612 ], "geometry": { "type": "Point", "coordinates": [ -0.3818484, 51.2962612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91499323" }, "bbox": [ -0.6817808, 51.2347423, -0.6817808, 51.2347423 ], "geometry": { "type": "Point", "coordinates": [ -0.6817808, 51.2347423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93416224" }, "bbox": [ -0.6625739, 51.1625769, -0.6625739, 51.1625769 ], "geometry": { "type": "Point", "coordinates": [ -0.6625739, 51.1625769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16468878" }, "bbox": [ -0.3281029, 51.207972, -0.3281029, 51.207972 ], "geometry": { "type": "Point", "coordinates": [ -0.3281029, 51.207972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17456192" }, "bbox": [ -0.3179249, 51.1997368, -0.3179249, 51.1997368 ], "geometry": { "type": "Point", "coordinates": [ -0.3179249, 51.1997368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90416413" }, "bbox": [ -0.7056614, 51.1574835, -0.7056614, 51.1574835 ], "geometry": { "type": "Point", "coordinates": [ -0.7056614, 51.1574835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17519006" }, "bbox": [ -0.3126512, 51.2463213, -0.3126512, 51.2463213 ], "geometry": { "type": "Point", "coordinates": [ -0.3126512, 51.2463213 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18532647" }, "bbox": [ -0.3074208, 51.2680354, -0.3074208, 51.2680354 ], "geometry": { "type": "Point", "coordinates": [ -0.3074208, 51.2680354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18533070" }, "bbox": [ -0.306315, 51.2700181, -0.306315, 51.2700181 ], "geometry": { "type": "Point", "coordinates": [ -0.306315, 51.2700181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14508765" }, "bbox": [ -0.3565959, 51.2436649, -0.3565959, 51.2436649 ], "geometry": { "type": "Point", "coordinates": [ -0.3565959, 51.2436649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15511707" }, "bbox": [ -0.3503231, 51.2479928, -0.3503231, 51.2479928 ], "geometry": { "type": "Point", "coordinates": [ -0.3503231, 51.2479928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17527607" }, "bbox": [ -0.3141009, 51.256109, -0.3141009, 51.256109 ], "geometry": { "type": "Point", "coordinates": [ -0.3141009, 51.256109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17519707" }, "bbox": [ -0.311002, 51.2468022, -0.311002, 51.2468022 ], "geometry": { "type": "Point", "coordinates": [ -0.311002, 51.2468022 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17525244" }, "bbox": [ -0.3169566, 51.2591479, -0.3169566, 51.2591479 ], "geometry": { "type": "Point", "coordinates": [ -0.3169566, 51.2591479 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17515198" }, "bbox": [ -0.3175125, 51.2549861, -0.3175125, 51.2549861 ], "geometry": { "type": "Point", "coordinates": [ -0.3175125, 51.2549861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18516510" }, "bbox": [ -0.302236, 51.2468273, -0.302236, 51.2468273 ], "geometry": { "type": "Point", "coordinates": [ -0.302236, 51.2468273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17525711" }, "bbox": [ -0.3167421, 51.2560908, -0.3167421, 51.2560908 ], "geometry": { "type": "Point", "coordinates": [ -0.3167421, 51.2560908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38547435" }, "bbox": [ -0.0123786, 51.2720048, -0.0123786, 51.2720048 ], "geometry": { "type": "Point", "coordinates": [ -0.0123786, 51.2720048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24525613" }, "bbox": [ -0.2168249, 51.2547256, -0.2168249, 51.2547256 ], "geometry": { "type": "Point", "coordinates": [ -0.2168249, 51.2547256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83421946" }, "bbox": [ -0.8110659, 51.1755167, -0.8110659, 51.1755167 ], "geometry": { "type": "Point", "coordinates": [ -0.8110659, 51.1755167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40402130" }, "bbox": [ 0.0032539, 51.1448767, 0.0032539, 51.1448767 ], "geometry": { "type": "Point", "coordinates": [ 0.0032539, 51.1448767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25429679" }, "bbox": [ -0.1996488, 51.1705204, -0.1996488, 51.1705204 ], "geometry": { "type": "Point", "coordinates": [ -0.1996488, 51.1705204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26422093" }, "bbox": [ -0.196016, 51.1717264, -0.196016, 51.1717264 ], "geometry": { "type": "Point", "coordinates": [ -0.196016, 51.1717264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26420890" }, "bbox": [ -0.1978952, 51.1713946, -0.1978952, 51.1713946 ], "geometry": { "type": "Point", "coordinates": [ -0.1978952, 51.1713946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26423998" }, "bbox": [ -0.1936384, 51.1720746, -0.1936384, 51.1720746 ], "geometry": { "type": "Point", "coordinates": [ -0.1936384, 51.1720746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26432512" }, "bbox": [ -0.1954387, 51.1733824, -0.1954387, 51.1733824 ], "geometry": { "type": "Point", "coordinates": [ -0.1954387, 51.1733824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12478693" }, "bbox": [ -0.3848536, 51.218938, -0.3848536, 51.218938 ], "geometry": { "type": "Point", "coordinates": [ -0.3848536, 51.218938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92492833" }, "bbox": [ -0.6794363, 51.2357732, -0.6794363, 51.2357732 ], "geometry": { "type": "Point", "coordinates": [ -0.6794363, 51.2357732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37415943" }, "bbox": [ -0.033748, 51.1555531, -0.033748, 51.1555531 ], "geometry": { "type": "Point", "coordinates": [ -0.033748, 51.1555531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37405184" }, "bbox": [ -0.0353451, 51.1504027, -0.0353451, 51.1504027 ], "geometry": { "type": "Point", "coordinates": [ -0.0353451, 51.1504027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37403589" }, "bbox": [ -0.0374065, 51.1508351, -0.0374065, 51.1508351 ], "geometry": { "type": "Point", "coordinates": [ -0.0374065, 51.1508351 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37421501" }, "bbox": [ -0.0400314, 51.1606887, -0.0400314, 51.1606887 ], "geometry": { "type": "Point", "coordinates": [ -0.0400314, 51.1606887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37428306" }, "bbox": [ -0.0304658, 51.1611884, -0.0304658, 51.1611884 ], "geometry": { "type": "Point", "coordinates": [ -0.0304658, 51.1611884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40417736" }, "bbox": [ 0.0115109, 51.1541456, 0.0115109, 51.1541456 ], "geometry": { "type": "Point", "coordinates": [ 0.0115109, 51.1541456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37527789" }, "bbox": [ -0.0268517, 51.2586057, -0.0268517, 51.2586057 ], "geometry": { "type": "Point", "coordinates": [ -0.0268517, 51.2586057 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13389489" }, "bbox": [ -0.3726648, 51.137919, -0.3726648, 51.137919 ], "geometry": { "type": "Point", "coordinates": [ -0.3726648, 51.137919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99465153" }, "bbox": [ -0.5767004, 51.2093821, -0.5767004, 51.2093821 ], "geometry": { "type": "Point", "coordinates": [ -0.5767004, 51.2093821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98449799" }, "bbox": [ -0.5850171, 51.1955553, -0.5850171, 51.1955553 ], "geometry": { "type": "Point", "coordinates": [ -0.5850171, 51.1955553 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98445688" }, "bbox": [ -0.5905779, 51.1944959, -0.5905779, 51.1944959 ], "geometry": { "type": "Point", "coordinates": [ -0.5905779, 51.1944959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40430626" }, "bbox": [ 0.0021458, 51.1715166, 0.0021458, 51.1715166 ], "geometry": { "type": "Point", "coordinates": [ 0.0021458, 51.1715166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95436395" }, "bbox": [ -0.6328685, 51.1868405, -0.6328685, 51.1868405 ], "geometry": { "type": "Point", "coordinates": [ -0.6328685, 51.1868405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95434996" }, "bbox": [ -0.634776, 51.1865522, -0.634776, 51.1865522 ], "geometry": { "type": "Point", "coordinates": [ -0.634776, 51.1865522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95445805" }, "bbox": [ -0.6342106, 51.1881659, -0.6342106, 51.1881659 ], "geometry": { "type": "Point", "coordinates": [ -0.6342106, 51.1881659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95444505" }, "bbox": [ -0.635784, 51.1877397, -0.635784, 51.1877397 ], "geometry": { "type": "Point", "coordinates": [ -0.635784, 51.1877397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13403490" }, "bbox": [ -0.3809273, 51.1560554, -0.3809273, 51.1560554 ], "geometry": { "type": "Point", "coordinates": [ -0.3809273, 51.1560554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408837" }, "bbox": [ -0.2443835, 51.1494801, -0.2443835, 51.1494801 ], "geometry": { "type": "Point", "coordinates": [ -0.2443835, 51.1494801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408841" }, "bbox": [ -0.2443344, 51.1498979, -0.2443344, 51.1498979 ], "geometry": { "type": "Point", "coordinates": [ -0.2443344, 51.1498979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408137" }, "bbox": [ -0.2453146, 51.1496129, -0.2453146, 51.1496129 ], "geometry": { "type": "Point", "coordinates": [ -0.2453146, 51.1496129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22409334" }, "bbox": [ -0.2437619, 51.1491477, -0.2437619, 51.1491477 ], "geometry": { "type": "Point", "coordinates": [ -0.2437619, 51.1491477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408532" }, "bbox": [ -0.2448042, 51.1490834, -0.2448042, 51.1490834 ], "geometry": { "type": "Point", "coordinates": [ -0.2448042, 51.1490834 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408616" }, "bbox": [ -0.2448654, 51.1474794, -0.2448654, 51.1474794 ], "geometry": { "type": "Point", "coordinates": [ -0.2448654, 51.1474794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22409451" }, "bbox": [ -0.2435084, 51.1507016, -0.2435084, 51.1507016 ], "geometry": { "type": "Point", "coordinates": [ -0.2435084, 51.1507016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00528010" }, "bbox": [ -0.5567592, 51.2593627, -0.5567592, 51.2593627 ], "geometry": { "type": "Point", "coordinates": [ -0.5567592, 51.2593627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01556867" }, "bbox": [ -0.5431691, 51.2911263, -0.5431691, 51.2911263 ], "geometry": { "type": "Point", "coordinates": [ -0.5431691, 51.2911263 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13493880" }, "bbox": [ -0.3772014, 51.2361784, -0.3772014, 51.2361784 ], "geometry": { "type": "Point", "coordinates": [ -0.3772014, 51.2361784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13550837" }, "bbox": [ -0.3799853, 51.2863936, -0.3799853, 51.2863936 ], "geometry": { "type": "Point", "coordinates": [ -0.3799853, 51.2863936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14526509" }, "bbox": [ -0.3581472, 51.25638, -0.3581472, 51.25638 ], "geometry": { "type": "Point", "coordinates": [ -0.3581472, 51.25638 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32458548" }, "bbox": [ -0.1000481, 51.1931576, -0.1000481, 51.1931576 ], "geometry": { "type": "Point", "coordinates": [ -0.1000481, 51.1931576 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32464700" }, "bbox": [ -0.1054665, 51.1978692, -0.1054665, 51.1978692 ], "geometry": { "type": "Point", "coordinates": [ -0.1054665, 51.1978692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32478726" }, "bbox": [ -0.0990861, 51.2089775, -0.0990861, 51.2089775 ], "geometry": { "type": "Point", "coordinates": [ -0.0990861, 51.2089775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32479121" }, "bbox": [ -0.0986735, 51.2085395, -0.0986735, 51.2085395 ], "geometry": { "type": "Point", "coordinates": [ -0.0986735, 51.2085395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20569934" }, "bbox": [ -0.2653301, 51.2932115, -0.2653301, 51.2932115 ], "geometry": { "type": "Point", "coordinates": [ -0.2653301, 51.2932115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21551886" }, "bbox": [ -0.263771, 51.2893853, -0.263771, 51.2893853 ], "geometry": { "type": "Point", "coordinates": [ -0.263771, 51.2893853 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21562095" }, "bbox": [ -0.2627889, 51.2988987, -0.2627889, 51.2988987 ], "geometry": { "type": "Point", "coordinates": [ -0.2627889, 51.2988987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21561418" }, "bbox": [ -0.2635659, 51.2915486, -0.2635659, 51.2915486 ], "geometry": { "type": "Point", "coordinates": [ -0.2635659, 51.2915486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21561074" }, "bbox": [ -0.2645214, 51.2968058, -0.2645214, 51.2968058 ], "geometry": { "type": "Point", "coordinates": [ -0.2645214, 51.2968058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93402955" }, "bbox": [ -0.6673078, 51.156712, -0.6673078, 51.156712 ], "geometry": { "type": "Point", "coordinates": [ -0.6673078, 51.156712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88378108" }, "bbox": [ -0.7327773, 51.128548, -0.7327773, 51.128548 ], "geometry": { "type": "Point", "coordinates": [ -0.7327773, 51.128548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97398173" }, "bbox": [ -0.6041936, 51.1488314, -0.6041936, 51.1488314 ], "geometry": { "type": "Point", "coordinates": [ -0.6041936, 51.1488314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37528098" }, "bbox": [ -0.0266802, 51.2593355, -0.0266802, 51.2593355 ], "geometry": { "type": "Point", "coordinates": [ -0.0266802, 51.2593355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05454402" }, "bbox": [ -0.492761, 51.1942556, -0.492761, 51.1942556 ], "geometry": { "type": "Point", "coordinates": [ -0.492761, 51.1942556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05444258" }, "bbox": [ -0.4941412, 51.1895676, -0.4941412, 51.1895676 ], "geometry": { "type": "Point", "coordinates": [ -0.4941412, 51.1895676 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17527272" }, "bbox": [ -0.3142283, 51.2615592, -0.3142283, 51.2615592 ], "geometry": { "type": "Point", "coordinates": [ -0.3142283, 51.2615592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11416303" }, "bbox": [ -0.4055516, 51.157642, -0.4055516, 51.157642 ], "geometry": { "type": "Point", "coordinates": [ -0.4055516, 51.157642 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12400258" }, "bbox": [ -0.3996371, 51.1535326, -0.3996371, 51.1535326 ], "geometry": { "type": "Point", "coordinates": [ -0.3996371, 51.1535326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11405987" }, "bbox": [ -0.4057136, 51.156162, -0.4057136, 51.156162 ], "geometry": { "type": "Point", "coordinates": [ -0.4057136, 51.156162 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11406570" }, "bbox": [ -0.4049121, 51.1546557, -0.4049121, 51.1546557 ], "geometry": { "type": "Point", "coordinates": [ -0.4049121, 51.1546557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11408542" }, "bbox": [ -0.4020938, 51.1521079, -0.4020938, 51.1521079 ], "geometry": { "type": "Point", "coordinates": [ -0.4020938, 51.1521079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11409944" }, "bbox": [ -0.40005, 51.1521349, -0.40005, 51.1521349 ], "geometry": { "type": "Point", "coordinates": [ -0.40005, 51.1521349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11408870" }, "bbox": [ -0.4014946, 51.1544257, -0.4014946, 51.1544257 ], "geometry": { "type": "Point", "coordinates": [ -0.4014946, 51.1544257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41455252" }, "bbox": [ 0.0238129, 51.1914027, 0.0238129, 51.1914027 ], "geometry": { "type": "Point", "coordinates": [ 0.0238129, 51.1914027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04725468" }, "bbox": [ -0.4971512, 51.4434945, -0.4971512, 51.4434945 ], "geometry": { "type": "Point", "coordinates": [ -0.4971512, 51.4434945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04724982" }, "bbox": [ -0.4978511, 51.445095, -0.4978511, 51.445095 ], "geometry": { "type": "Point", "coordinates": [ -0.4978511, 51.445095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04723105" }, "bbox": [ -0.5005105, 51.4378303, -0.5005105, 51.4378303 ], "geometry": { "type": "Point", "coordinates": [ -0.5005105, 51.4378303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04722618" }, "bbox": [ -0.5012737, 51.4391422, -0.5012737, 51.4391422 ], "geometry": { "type": "Point", "coordinates": [ -0.5012737, 51.4391422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00651794" }, "bbox": [ -0.5616844, 51.3833429, -0.5616844, 51.3833429 ], "geometry": { "type": "Point", "coordinates": [ -0.5616844, 51.3833429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00661332" }, "bbox": [ -0.5623073, 51.3870896, -0.5623073, 51.3870896 ], "geometry": { "type": "Point", "coordinates": [ -0.5623073, 51.3870896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00660950" }, "bbox": [ -0.5629124, 51.3885204, -0.5629124, 51.3885204 ], "geometry": { "type": "Point", "coordinates": [ -0.5629124, 51.3885204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07732419" }, "bbox": [ -0.4581986, 51.4475144, -0.4581986, 51.4475144 ], "geometry": { "type": "Point", "coordinates": [ -0.4581986, 51.4475144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460124" }, "bbox": [ -0.6700339, 51.2078596, -0.6700339, 51.2078596 ], "geometry": { "type": "Point", "coordinates": [ -0.6700339, 51.2078596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460921" }, "bbox": [ -0.6690281, 51.2077079, -0.6690281, 51.2077079 ], "geometry": { "type": "Point", "coordinates": [ -0.6690281, 51.2077079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93459098" }, "bbox": [ -0.6570246, 51.2051062, -0.6570246, 51.2051062 ], "geometry": { "type": "Point", "coordinates": [ -0.6570246, 51.2051062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93463941" }, "bbox": [ -0.6649187, 51.2091343, -0.6649187, 51.2091343 ], "geometry": { "type": "Point", "coordinates": [ -0.6649187, 51.2091343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433393" }, "bbox": [ -0.6944769, 51.1872371, -0.6944769, 51.1872371 ], "geometry": { "type": "Point", "coordinates": [ -0.6944769, 51.1872371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433294" }, "bbox": [ -0.6944521, 51.1874545, -0.6944521, 51.1874545 ], "geometry": { "type": "Point", "coordinates": [ -0.6944521, 51.1874545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433190" }, "bbox": [ -0.6945708, 51.1870455, -0.6945708, 51.1870455 ], "geometry": { "type": "Point", "coordinates": [ -0.6945708, 51.1870455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91433288" }, "bbox": [ -0.6946372, 51.1868289, -0.6946372, 51.1868289 ], "geometry": { "type": "Point", "coordinates": [ -0.6946372, 51.1868289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91432789" }, "bbox": [ -0.6953855, 51.187015, -0.6953855, 51.187015 ], "geometry": { "type": "Point", "coordinates": [ -0.6953855, 51.187015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91432794" }, "bbox": [ -0.6953069, 51.1875115, -0.6953069, 51.1875115 ], "geometry": { "type": "Point", "coordinates": [ -0.6953069, 51.1875115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90448436" }, "bbox": [ -0.7005189, 51.1912231, -0.7005189, 51.1912231 ], "geometry": { "type": "Point", "coordinates": [ -0.7005189, 51.1912231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90448107" }, "bbox": [ -0.7019778, 51.1889982, -0.7019778, 51.1889982 ], "geometry": { "type": "Point", "coordinates": [ -0.7019778, 51.1889982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90448808" }, "bbox": [ -0.7005569, 51.1887477, -0.7005569, 51.1887477 ], "geometry": { "type": "Point", "coordinates": [ -0.7005569, 51.1887477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40391089" }, "bbox": [ 0.0009468, 51.141128, 0.0009468, 51.141128 ], "geometry": { "type": "Point", "coordinates": [ 0.0009468, 51.141128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86425238" }, "bbox": [ -0.7638197, 51.1741927, -0.7638197, 51.1741927 ], "geometry": { "type": "Point", "coordinates": [ -0.7638197, 51.1741927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86427751" }, "bbox": [ -0.7602787, 51.1752554, -0.7602787, 51.1752554 ], "geometry": { "type": "Point", "coordinates": [ -0.7602787, 51.1752554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86426956" }, "bbox": [ -0.7616483, 51.175169, -0.7616483, 51.175169 ], "geometry": { "type": "Point", "coordinates": [ -0.7616483, 51.175169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86426653" }, "bbox": [ -0.761736, 51.1753601, -0.761736, 51.1753601 ], "geometry": { "type": "Point", "coordinates": [ -0.761736, 51.1753601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86427155" }, "bbox": [ -0.7609701, 51.1756654, -0.7609701, 51.1756654 ], "geometry": { "type": "Point", "coordinates": [ -0.7609701, 51.1756654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86426745" }, "bbox": [ -0.7613764, 51.1749619, -0.7613764, 51.1749619 ], "geometry": { "type": "Point", "coordinates": [ -0.7613764, 51.1749619 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86427144" }, "bbox": [ -0.7609666, 51.1746463, -0.7609666, 51.1746463 ], "geometry": { "type": "Point", "coordinates": [ -0.7609666, 51.1746463 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86426960" }, "bbox": [ -0.7608745, 51.1762179, -0.7608745, 51.1762179 ], "geometry": { "type": "Point", "coordinates": [ -0.7608745, 51.1762179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41558520" }, "bbox": [ 0.0323368, 51.2782976, 0.0323368, 51.2782976 ], "geometry": { "type": "Point", "coordinates": [ 0.0323368, 51.2782976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42551209" }, "bbox": [ 0.0363412, 51.2772925, 0.0363412, 51.2772925 ], "geometry": { "type": "Point", "coordinates": [ 0.0363412, 51.2772925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42551437" }, "bbox": [ 0.0345358, 51.2795418, 0.0345358, 51.2795418 ], "geometry": { "type": "Point", "coordinates": [ 0.0345358, 51.2795418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42552930" }, "bbox": [ 0.0385735, 51.2791698, 0.0385735, 51.2791698 ], "geometry": { "type": "Point", "coordinates": [ 0.0385735, 51.2791698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42551225" }, "bbox": [ 0.0357266, 51.2786386, 0.0357266, 51.2786386 ], "geometry": { "type": "Point", "coordinates": [ 0.0357266, 51.2786386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42550113" }, "bbox": [ 0.0349074, 51.277606, 0.0349074, 51.277606 ], "geometry": { "type": "Point", "coordinates": [ 0.0349074, 51.277606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42550343" }, "bbox": [ 0.035063, 51.2803311, 0.035063, 51.2803311 ], "geometry": { "type": "Point", "coordinates": [ 0.035063, 51.2803311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10554097" }, "bbox": [ -0.4177814, 51.2922556, -0.4177814, 51.2922556 ], "geometry": { "type": "Point", "coordinates": [ -0.4177814, 51.2922556 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10562028" }, "bbox": [ -0.4206287, 51.2952873, -0.4206287, 51.2952873 ], "geometry": { "type": "Point", "coordinates": [ -0.4206287, 51.2952873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10563607" }, "bbox": [ -0.4188748, 51.2933138, -0.4188748, 51.2933138 ], "geometry": { "type": "Point", "coordinates": [ -0.4188748, 51.2933138 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05479474" }, "bbox": [ -0.4844834, 51.2191129, -0.4844834, 51.2191129 ], "geometry": { "type": "Point", "coordinates": [ -0.4844834, 51.2191129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05479861" }, "bbox": [ -0.4835332, 51.2172657, -0.4835332, 51.2172657 ], "geometry": { "type": "Point", "coordinates": [ -0.4835332, 51.2172657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06478837" }, "bbox": [ -0.471321, 51.2152473, -0.471321, 51.2152473 ], "geometry": { "type": "Point", "coordinates": [ -0.471321, 51.2152473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06479213" }, "bbox": [ -0.4705328, 51.21435, -0.4705328, 51.21435 ], "geometry": { "type": "Point", "coordinates": [ -0.4705328, 51.21435 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549369" }, "bbox": [ -0.1958258, 51.2775685, -0.1958258, 51.2775685 ], "geometry": { "type": "Point", "coordinates": [ -0.1958258, 51.2775685 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26541975" }, "bbox": [ -0.1919065, 51.2779598, -0.1919065, 51.2779598 ], "geometry": { "type": "Point", "coordinates": [ -0.1919065, 51.2779598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26540368" }, "bbox": [ -0.1944237, 51.2773688, -0.1944237, 51.2773688 ], "geometry": { "type": "Point", "coordinates": [ -0.1944237, 51.2773688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41556545" }, "bbox": [ 0.029566, 51.28061, 0.029566, 51.28061 ], "geometry": { "type": "Point", "coordinates": [ 0.029566, 51.28061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41556538" }, "bbox": [ 0.0296595, 51.2800897, 0.0296595, 51.2800897 ], "geometry": { "type": "Point", "coordinates": [ 0.0296595, 51.2800897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37414075" }, "bbox": [ -0.0365505, 51.1585058, -0.0365505, 51.1585058 ], "geometry": { "type": "Point", "coordinates": [ -0.0365505, 51.1585058 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37415874" }, "bbox": [ -0.0339775, 51.1582882, -0.0339775, 51.1582882 ], "geometry": { "type": "Point", "coordinates": [ -0.0339775, 51.1582882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38422731" }, "bbox": [ -0.0232557, 51.1640672, -0.0232557, 51.1640672 ], "geometry": { "type": "Point", "coordinates": [ -0.0232557, 51.1640672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06473742" }, "bbox": [ -0.4783386, 51.2161449, -0.4783386, 51.2161449 ], "geometry": { "type": "Point", "coordinates": [ -0.4783386, 51.2161449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06474757" }, "bbox": [ -0.4767307, 51.2177439, -0.4767307, 51.2177439 ], "geometry": { "type": "Point", "coordinates": [ -0.4767307, 51.2177439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06472140" }, "bbox": [ -0.4797858, 51.2154645, -0.4797858, 51.2154645 ], "geometry": { "type": "Point", "coordinates": [ -0.4797858, 51.2154645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14485118" }, "bbox": [ -0.3614802, 51.2214478, -0.3614802, 51.2214478 ], "geometry": { "type": "Point", "coordinates": [ -0.3614802, 51.2214478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14484928" }, "bbox": [ -0.3622356, 51.2221478, -0.3622356, 51.2221478 ], "geometry": { "type": "Point", "coordinates": [ -0.3622356, 51.2221478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14483901" }, "bbox": [ -0.3631352, 51.2198336, -0.3631352, 51.2198336 ], "geometry": { "type": "Point", "coordinates": [ -0.3631352, 51.2198336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14483513" }, "bbox": [ -0.3639397, 51.2209896, -0.3639397, 51.2209896 ], "geometry": { "type": "Point", "coordinates": [ -0.3639397, 51.2209896 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91576387" }, "bbox": [ -0.6869947, 51.3133893, -0.6869947, 51.3133893 ], "geometry": { "type": "Point", "coordinates": [ -0.6869947, 51.3133893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92579094" }, "bbox": [ -0.6683285, 51.3130315, -0.6683285, 51.3130315 ], "geometry": { "type": "Point", "coordinates": [ -0.6683285, 51.3130315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354142" }, "bbox": [ -0.6956196, 51.1108457, -0.6956196, 51.1108457 ], "geometry": { "type": "Point", "coordinates": [ -0.6956196, 51.1108457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91354449" }, "bbox": [ -0.6949944, 51.111506, -0.6949944, 51.111506 ], "geometry": { "type": "Point", "coordinates": [ -0.6949944, 51.111506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91353629" }, "bbox": [ -0.6961924, 51.1099283, -0.6961924, 51.1099283 ], "geometry": { "type": "Point", "coordinates": [ -0.6961924, 51.1099283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91355029" }, "bbox": [ -0.694302, 51.1096393, -0.694302, 51.1096393 ], "geometry": { "type": "Point", "coordinates": [ -0.694302, 51.1096393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18615960" }, "bbox": [ -0.2983451, 51.341354, -0.2983451, 51.341354 ], "geometry": { "type": "Point", "coordinates": [ -0.2983451, 51.341354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18616070" }, "bbox": [ -0.2985853, 51.3421301, -0.2985853, 51.3421301 ], "geometry": { "type": "Point", "coordinates": [ -0.2985853, 51.3421301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89425624" }, "bbox": [ -0.7201681, 51.1723382, -0.7201681, 51.1723382 ], "geometry": { "type": "Point", "coordinates": [ -0.7201681, 51.1723382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17541110" }, "bbox": [ -0.3229089, 51.2735814, -0.3229089, 51.2735814 ], "geometry": { "type": "Point", "coordinates": [ -0.3229089, 51.2735814 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545684" }, "bbox": [ -0.3444208, 51.2809481, -0.3444208, 51.2809481 ], "geometry": { "type": "Point", "coordinates": [ -0.3444208, 51.2809481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15545271" }, "bbox": [ -0.3449797, 51.2798741, -0.3449797, 51.2798741 ], "geometry": { "type": "Point", "coordinates": [ -0.3449797, 51.2798741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15546181" }, "bbox": [ -0.3437715, 51.2808033, -0.3437715, 51.2808033 ], "geometry": { "type": "Point", "coordinates": [ -0.3437715, 51.2808033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06484110" }, "bbox": [ -0.4770945, 51.2220551, -0.4770945, 51.2220551 ], "geometry": { "type": "Point", "coordinates": [ -0.4770945, 51.2220551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06487411" }, "bbox": [ -0.4729167, 51.221787, -0.4729167, 51.221787 ], "geometry": { "type": "Point", "coordinates": [ -0.4729167, 51.221787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33406191" }, "bbox": [ -0.090929, 51.1519259, -0.090929, 51.1519259 ], "geometry": { "type": "Point", "coordinates": [ -0.090929, 51.1519259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96556635" }, "bbox": [ -0.6150116, 51.2892464, -0.6150116, 51.2892464 ], "geometry": { "type": "Point", "coordinates": [ -0.6150116, 51.2892464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96556539" }, "bbox": [ -0.6152318, 51.2895598, -0.6152318, 51.2895598 ], "geometry": { "type": "Point", "coordinates": [ -0.6152318, 51.2895598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90440803" }, "bbox": [ -0.7123141, 51.1884565, -0.7123141, 51.1884565 ], "geometry": { "type": "Point", "coordinates": [ -0.7123141, 51.1884565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92484113" }, "bbox": [ -0.6794674, 51.2248723, -0.6794674, 51.2248723 ], "geometry": { "type": "Point", "coordinates": [ -0.6794674, 51.2248723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92481001" }, "bbox": [ -0.6821618, 51.2239788, -0.6821618, 51.2239788 ], "geometry": { "type": "Point", "coordinates": [ -0.6821618, 51.2239788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91473147" }, "bbox": [ -0.6938002, 51.21917, -0.6938002, 51.21917 ], "geometry": { "type": "Point", "coordinates": [ -0.6938002, 51.21917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91479858" }, "bbox": [ -0.684326, 51.2199611, -0.684326, 51.2199611 ], "geometry": { "type": "Point", "coordinates": [ -0.684326, 51.2199611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91471845" }, "bbox": [ -0.6957539, 51.2189593, -0.6957539, 51.2189593 ], "geometry": { "type": "Point", "coordinates": [ -0.6957539, 51.2189593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01424609" }, "bbox": [ -0.5495108, 51.169086, -0.5495108, 51.169086 ], "geometry": { "type": "Point", "coordinates": [ -0.5495108, 51.169086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01411885" }, "bbox": [ -0.554245, 51.16712, -0.554245, 51.16712 ], "geometry": { "type": "Point", "coordinates": [ -0.554245, 51.16712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94591536" }, "bbox": [ -0.6503261, 51.3256428, -0.6503261, 51.3256428 ], "geometry": { "type": "Point", "coordinates": [ -0.6503261, 51.3256428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94329675" }, "bbox": [ -0.6455817, 51.0862842, -0.6455817, 51.0862842 ], "geometry": { "type": "Point", "coordinates": [ -0.6455817, 51.0862842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94328968" }, "bbox": [ -0.6476974, 51.0847762, -0.6476974, 51.0847762 ], "geometry": { "type": "Point", "coordinates": [ -0.6476974, 51.0847762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95320882" }, "bbox": [ -0.6437431, 51.0868052, -0.6437431, 51.0868052 ], "geometry": { "type": "Point", "coordinates": [ -0.6437431, 51.0868052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95321064" }, "bbox": [ -0.6440849, 51.0851129, -0.6440849, 51.0851129 ], "geometry": { "type": "Point", "coordinates": [ -0.6440849, 51.0851129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94581169" }, "bbox": [ -0.6538867, 51.3192402, -0.6538867, 51.3192402 ], "geometry": { "type": "Point", "coordinates": [ -0.6538867, 51.3192402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95365639" }, "bbox": [ -0.6361658, 51.1188392, -0.6361658, 51.1188392 ], "geometry": { "type": "Point", "coordinates": [ -0.6361658, 51.1188392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95366739" }, "bbox": [ -0.6341923, 51.1189437, -0.6341923, 51.1189437 ], "geometry": { "type": "Point", "coordinates": [ -0.6341923, 51.1189437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94438883" }, "bbox": [ -0.6432321, 51.1860124, -0.6432321, 51.1860124 ], "geometry": { "type": "Point", "coordinates": [ -0.6432321, 51.1860124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94447586" }, "bbox": [ -0.6454054, 51.1951594, -0.6454054, 51.1951594 ], "geometry": { "type": "Point", "coordinates": [ -0.6454054, 51.1951594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11678566" }, "bbox": [ -0.3932789, 51.3970811, -0.3932789, 51.3970811 ], "geometry": { "type": "Point", "coordinates": [ -0.3932789, 51.3970811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12663032" }, "bbox": [ -0.3897517, 51.3877414, -0.3897517, 51.3877414 ], "geometry": { "type": "Point", "coordinates": [ -0.3897517, 51.3877414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91437294" }, "bbox": [ -0.6891002, 51.1872911, -0.6891002, 51.1872911 ], "geometry": { "type": "Point", "coordinates": [ -0.6891002, 51.1872911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91436697" }, "bbox": [ -0.6895037, 51.187857, -0.6895037, 51.187857 ], "geometry": { "type": "Point", "coordinates": [ -0.6895037, 51.187857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93375003" }, "bbox": [ -0.6668556, 51.1258128, -0.6668556, 51.1258128 ], "geometry": { "type": "Point", "coordinates": [ -0.6668556, 51.1258128 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92439937" }, "bbox": [ -0.67194, 51.1822349, -0.67194, 51.1822349 ], "geometry": { "type": "Point", "coordinates": [ -0.67194, 51.1822349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92437937" }, "bbox": [ -0.6730829, 51.1820143, -0.6730829, 51.1820143 ], "geometry": { "type": "Point", "coordinates": [ -0.6730829, 51.1820143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92437949" }, "bbox": [ -0.6724299, 51.183693, -0.6724299, 51.183693 ], "geometry": { "type": "Point", "coordinates": [ -0.6724299, 51.183693 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441173" }, "bbox": [ -0.3255875, 51.189794, -0.3255875, 51.189794 ], "geometry": { "type": "Point", "coordinates": [ -0.3255875, 51.189794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441731" }, "bbox": [ -0.3248326, 51.1860431, -0.3248326, 51.1860431 ], "geometry": { "type": "Point", "coordinates": [ -0.3248326, 51.1860431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17441936" }, "bbox": [ -0.3243644, 51.1866679, -0.3243644, 51.1866679 ], "geometry": { "type": "Point", "coordinates": [ -0.3243644, 51.1866679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17440633" }, "bbox": [ -0.3263681, 51.1864234, -0.3263681, 51.1864234 ], "geometry": { "type": "Point", "coordinates": [ -0.3263681, 51.1864234 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09562030" }, "bbox": [ -0.4350644, 51.2954397, -0.4350644, 51.2954397 ], "geometry": { "type": "Point", "coordinates": [ -0.4350644, 51.2954397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14499544" }, "bbox": [ -0.3550679, 51.232689, -0.3550679, 51.232689 ], "geometry": { "type": "Point", "coordinates": [ -0.3550679, 51.232689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14498982" }, "bbox": [ -0.3552603, 51.2359786, -0.3552603, 51.2359786 ], "geometry": { "type": "Point", "coordinates": [ -0.3552603, 51.2359786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22407128" }, "bbox": [ -0.2469991, 51.1485854, -0.2469991, 51.1485854 ], "geometry": { "type": "Point", "coordinates": [ -0.2469991, 51.1485854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40476385" }, "bbox": [ 0.0118789, 51.212448, 0.0118789, 51.212448 ], "geometry": { "type": "Point", "coordinates": [ 0.0118789, 51.212448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427178" }, "bbox": [ -0.7037773, 51.1770275, -0.7037773, 51.1770275 ], "geometry": { "type": "Point", "coordinates": [ -0.7037773, 51.1770275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90427652" }, "bbox": [ -0.7030398, 51.1747031, -0.7030398, 51.1747031 ], "geometry": { "type": "Point", "coordinates": [ -0.7030398, 51.1747031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41445295" }, "bbox": [ 0.0231072, 51.1864193, 0.0231072, 51.1864193 ], "geometry": { "type": "Point", "coordinates": [ 0.0231072, 51.1864193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41441298" }, "bbox": [ 0.0182387, 51.1866473, 0.0182387, 51.1866473 ], "geometry": { "type": "Point", "coordinates": [ 0.0182387, 51.1866473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41453158" }, "bbox": [ 0.0208064, 51.1920279, 0.0208064, 51.1920279 ], "geometry": { "type": "Point", "coordinates": [ 0.0208064, 51.1920279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41450588" }, "bbox": [ 0.0172679, 51.1946383, 0.0172679, 51.1946383 ], "geometry": { "type": "Point", "coordinates": [ 0.0172679, 51.1946383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41451023" }, "bbox": [ 0.0178708, 51.1887538, 0.0178708, 51.1887538 ], "geometry": { "type": "Point", "coordinates": [ 0.0178708, 51.1887538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41454229" }, "bbox": [ 0.0223492, 51.1889253, 0.0223492, 51.1889253 ], "geometry": { "type": "Point", "coordinates": [ 0.0223492, 51.1889253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41452891" }, "bbox": [ 0.0203746, 51.1947978, 0.0203746, 51.1947978 ], "geometry": { "type": "Point", "coordinates": [ 0.0203746, 51.1947978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41453998" }, "bbox": [ 0.0223133, 51.1956187, 0.0223133, 51.1956187 ], "geometry": { "type": "Point", "coordinates": [ 0.0223133, 51.1956187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41461031" }, "bbox": [ 0.0180702, 51.1986441, 0.0180702, 51.1986441 ], "geometry": { "type": "Point", "coordinates": [ 0.0180702, 51.1986441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41460810" }, "bbox": [ 0.0176783, 51.1966719, 0.0176783, 51.1966719 ], "geometry": { "type": "Point", "coordinates": [ 0.0176783, 51.1966719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41462823" }, "bbox": [ 0.0206229, 51.197825, 0.0206229, 51.197825 ], "geometry": { "type": "Point", "coordinates": [ 0.0206229, 51.197825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41464036" }, "bbox": [ 0.022214, 51.1988381, 0.022214, 51.1988381 ], "geometry": { "type": "Point", "coordinates": [ 0.022214, 51.1988381 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41464944" }, "bbox": [ 0.0225539, 51.2000513, 0.0225539, 51.2000513 ], "geometry": { "type": "Point", "coordinates": [ 0.0225539, 51.2000513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93656161" }, "bbox": [ -0.6563193, 51.3818004, -0.6563193, 51.3818004 ], "geometry": { "type": "Point", "coordinates": [ -0.6563193, 51.3818004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17508361" }, "bbox": [ -0.3135428, 51.2426023, -0.3135428, 51.2426023 ], "geometry": { "type": "Point", "coordinates": [ -0.3135428, 51.2426023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33503210" }, "bbox": [ -0.0936094, 51.2346502, -0.0936094, 51.2346502 ], "geometry": { "type": "Point", "coordinates": [ -0.0936094, 51.2346502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33486364" }, "bbox": [ -0.0877114, 51.221311, -0.0877114, 51.221311 ], "geometry": { "type": "Point", "coordinates": [ -0.0877114, 51.221311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33487072" }, "bbox": [ -0.0869394, 51.2220265, -0.0869394, 51.2220265 ], "geometry": { "type": "Point", "coordinates": [ -0.0869394, 51.2220265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33486072" }, "bbox": [ -0.0882479, 51.2220704, -0.0882479, 51.2220704 ], "geometry": { "type": "Point", "coordinates": [ -0.0882479, 51.2220704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32489073" }, "bbox": [ -0.09821, 51.2222452, -0.09821, 51.2222452 ], "geometry": { "type": "Point", "coordinates": [ -0.09821, 51.2222452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03566921" }, "bbox": [ -0.5141957, 51.2957088, -0.5141957, 51.2957088 ], "geometry": { "type": "Point", "coordinates": [ -0.5141957, 51.2957088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03568024" }, "bbox": [ -0.5123203, 51.2963241, -0.5123203, 51.2963241 ], "geometry": { "type": "Point", "coordinates": [ -0.5123203, 51.2963241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21453789" }, "bbox": [ -0.2642317, 51.1993504, -0.2642317, 51.1993504 ], "geometry": { "type": "Point", "coordinates": [ -0.2642317, 51.1993504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21453777" }, "bbox": [ -0.2642627, 51.1982647, -0.2642627, 51.1982647 ], "geometry": { "type": "Point", "coordinates": [ -0.2642627, 51.1982647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14462664" }, "bbox": [ -0.3657614, 51.2075688, -0.3657614, 51.2075688 ], "geometry": { "type": "Point", "coordinates": [ -0.3657614, 51.2075688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93542438" }, "bbox": [ -0.6646225, 51.2810703, -0.6646225, 51.2810703 ], "geometry": { "type": "Point", "coordinates": [ -0.6646225, 51.2810703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541939" }, "bbox": [ -0.6651327, 51.2810983, -0.6651327, 51.2810983 ], "geometry": { "type": "Point", "coordinates": [ -0.6651327, 51.2810983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05424573" }, "bbox": [ -0.4938617, 51.1745191, -0.4938617, 51.1745191 ], "geometry": { "type": "Point", "coordinates": [ -0.4938617, 51.1745191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05425084" }, "bbox": [ -0.4919812, 51.1748671, -0.4919812, 51.1748671 ], "geometry": { "type": "Point", "coordinates": [ -0.4919812, 51.1748671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04426638" }, "bbox": [ -0.5073708, 51.170862, -0.5073708, 51.170862 ], "geometry": { "type": "Point", "coordinates": [ -0.5073708, 51.170862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07531945" }, "bbox": [ -0.4660018, 51.2699911, -0.4660018, 51.2699911 ], "geometry": { "type": "Point", "coordinates": [ -0.4660018, 51.2699911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34569296" }, "bbox": [ -0.0656188, 51.295755, -0.0656188, 51.295755 ], "geometry": { "type": "Point", "coordinates": [ -0.0656188, 51.295755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34578101" }, "bbox": [ -0.0676769, 51.2965043, -0.0676769, 51.2965043 ], "geometry": { "type": "Point", "coordinates": [ -0.0676769, 51.2965043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34566520" }, "bbox": [ -0.0700921, 51.2884826, -0.0700921, 51.2884826 ], "geometry": { "type": "Point", "coordinates": [ -0.0700921, 51.2884826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509958" }, "bbox": [ -0.6976308, 51.2471438, -0.6976308, 51.2471438 ], "geometry": { "type": "Point", "coordinates": [ -0.6976308, 51.2471438 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509037" }, "bbox": [ -0.6994374, 51.2453055, -0.6994374, 51.2453055 ], "geometry": { "type": "Point", "coordinates": [ -0.6994374, 51.2453055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90507848" }, "bbox": [ -0.7012774, 51.246288, -0.7012774, 51.246288 ], "geometry": { "type": "Point", "coordinates": [ -0.7012774, 51.246288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88470948" }, "bbox": [ -0.7400187, 51.219746, -0.7400187, 51.219746 ], "geometry": { "type": "Point", "coordinates": [ -0.7400187, 51.219746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05439253" }, "bbox": [ -0.4861403, 51.1811089, -0.4861403, 51.1811089 ], "geometry": { "type": "Point", "coordinates": [ -0.4861403, 51.1811089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05436974" }, "bbox": [ -0.4893433, 51.1830153, -0.4893433, 51.1830153 ], "geometry": { "type": "Point", "coordinates": [ -0.4893433, 51.1830153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05437263" }, "bbox": [ -0.4884863, 51.1820856, -0.4884863, 51.1820856 ], "geometry": { "type": "Point", "coordinates": [ -0.4884863, 51.1820856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05435454" }, "bbox": [ -0.4923537, 51.1813957, -0.4923537, 51.1813957 ], "geometry": { "type": "Point", "coordinates": [ -0.4923537, 51.1813957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05438380" }, "bbox": [ -0.4870966, 51.1836836, -0.4870966, 51.1836836 ], "geometry": { "type": "Point", "coordinates": [ -0.4870966, 51.1836836 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05438047" }, "bbox": [ -0.4877182, 51.1809334, -0.4877182, 51.1809334 ], "geometry": { "type": "Point", "coordinates": [ -0.4877182, 51.1809334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05435493" }, "bbox": [ -0.4907008, 51.1836959, -0.4907008, 51.1836959 ], "geometry": { "type": "Point", "coordinates": [ -0.4907008, 51.1836959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05439574" }, "bbox": [ -0.4856425, 51.1828315, -0.4856425, 51.1828315 ], "geometry": { "type": "Point", "coordinates": [ -0.4856425, 51.1828315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16445012" }, "bbox": [ -0.3351606, 51.1840262, -0.3351606, 51.1840262 ], "geometry": { "type": "Point", "coordinates": [ -0.3351606, 51.1840262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02328583" }, "bbox": [ -0.5336225, 51.0860252, -0.5336225, 51.0860252 ], "geometry": { "type": "Point", "coordinates": [ -0.5336225, 51.0860252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02326891" }, "bbox": [ -0.535371, 51.0863618, -0.535371, 51.0863618 ], "geometry": { "type": "Point", "coordinates": [ -0.535371, 51.0863618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02327989" }, "bbox": [ -0.5343644, 51.0862549, -0.5343644, 51.0862549 ], "geometry": { "type": "Point", "coordinates": [ -0.5343644, 51.0862549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35487683" }, "bbox": [ -0.057375, 51.2225677, -0.057375, 51.2225677 ], "geometry": { "type": "Point", "coordinates": [ -0.057375, 51.2225677 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35488288" }, "bbox": [ -0.0562847, 51.2233109, -0.0562847, 51.2233109 ], "geometry": { "type": "Point", "coordinates": [ -0.0562847, 51.2233109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35486883" }, "bbox": [ -0.058461, 51.2225708, -0.058461, 51.2225708 ], "geometry": { "type": "Point", "coordinates": [ -0.058461, 51.2225708 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35489481" }, "bbox": [ -0.0545067, 51.2224032, -0.0545067, 51.2224032 ], "geometry": { "type": "Point", "coordinates": [ -0.0545067, 51.2224032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98358529" }, "bbox": [ -0.5880833, 51.1083462, -0.5880833, 51.1083462 ], "geometry": { "type": "Point", "coordinates": [ -0.5880833, 51.1083462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02517074" }, "bbox": [ -0.529729, 51.2555124, -0.529729, 51.2555124 ], "geometry": { "type": "Point", "coordinates": [ -0.529729, 51.2555124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02518275" }, "bbox": [ -0.5276131, 51.2560456, -0.5276131, 51.2560456 ], "geometry": { "type": "Point", "coordinates": [ -0.5276131, 51.2560456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02517355" }, "bbox": [ -0.5282857, 51.253915, -0.5282857, 51.253915 ], "geometry": { "type": "Point", "coordinates": [ -0.5282857, 51.253915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90509716" }, "bbox": [ -0.6982848, 51.2434618, -0.6982848, 51.2434618 ], "geometry": { "type": "Point", "coordinates": [ -0.6982848, 51.2434618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91500116" }, "bbox": [ -0.6975854, 51.2434267, -0.6975854, 51.2434267 ], "geometry": { "type": "Point", "coordinates": [ -0.6975854, 51.2434267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89592665" }, "bbox": [ -0.7202328, 51.3285907, -0.7202328, 51.3285907 ], "geometry": { "type": "Point", "coordinates": [ -0.7202328, 51.3285907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20570823" }, "bbox": [ -0.2786672, 51.3013954, -0.2786672, 51.3013954 ], "geometry": { "type": "Point", "coordinates": [ -0.2786672, 51.3013954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34443065" }, "bbox": [ -0.0798051, 51.185312, -0.0798051, 51.185312 ], "geometry": { "type": "Point", "coordinates": [ -0.0798051, 51.185312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35565515" }, "bbox": [ -0.0574396, 51.2873261, -0.0574396, 51.2873261 ], "geometry": { "type": "Point", "coordinates": [ -0.0574396, 51.2873261 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35562530" }, "bbox": [ -0.0610063, 51.289602, -0.0610063, 51.289602 ], "geometry": { "type": "Point", "coordinates": [ -0.0610063, 51.289602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35563231" }, "bbox": [ -0.0608476, 51.2899109, -0.0608476, 51.2899109 ], "geometry": { "type": "Point", "coordinates": [ -0.0608476, 51.2899109 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35562604" }, "bbox": [ -0.0615146, 51.2870651, -0.0615146, 51.2870651 ], "geometry": { "type": "Point", "coordinates": [ -0.0615146, 51.2870651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35563520" }, "bbox": [ -0.0601765, 51.2874862, -0.0601765, 51.2874862 ], "geometry": { "type": "Point", "coordinates": [ -0.0601765, 51.2874862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35565629" }, "bbox": [ -0.0588416, 51.2906898, -0.0588416, 51.2906898 ], "geometry": { "type": "Point", "coordinates": [ -0.0588416, 51.2906898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34569988" }, "bbox": [ -0.0649287, 51.2952326, -0.0649287, 51.2952326 ], "geometry": { "type": "Point", "coordinates": [ -0.0649287, 51.2952326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35563875" }, "bbox": [ -0.0598436, 51.2938927, -0.0598436, 51.2938927 ], "geometry": { "type": "Point", "coordinates": [ -0.0598436, 51.2938927 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35563175" }, "bbox": [ -0.0608412, 51.2938835, -0.0608412, 51.2938835 ], "geometry": { "type": "Point", "coordinates": [ -0.0608412, 51.2938835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35560081" }, "bbox": [ -0.0650146, 51.2942771, -0.0650146, 51.2942771 ], "geometry": { "type": "Point", "coordinates": [ -0.0650146, 51.2942771 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35562393" }, "bbox": [ -0.0619409, 51.2954383, -0.0619409, 51.2954383 ], "geometry": { "type": "Point", "coordinates": [ -0.0619409, 51.2954383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35562585" }, "bbox": [ -0.0626025, 51.2945782, -0.0626025, 51.2945782 ], "geometry": { "type": "Point", "coordinates": [ -0.0626025, 51.2945782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15523155" }, "bbox": [ -0.348796, 51.2604885, -0.348796, 51.2604885 ], "geometry": { "type": "Point", "coordinates": [ -0.348796, 51.2604885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93350276" }, "bbox": [ -0.6724171, 51.113583, -0.6724171, 51.113583 ], "geometry": { "type": "Point", "coordinates": [ -0.6724171, 51.113583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39581526" }, "bbox": [ -0.0046841, 51.3066967, -0.0046841, 51.3066967 ], "geometry": { "type": "Point", "coordinates": [ -0.0046841, 51.3066967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37461274" }, "bbox": [ -0.0388034, 51.2038145, -0.0388034, 51.2038145 ], "geometry": { "type": "Point", "coordinates": [ -0.0388034, 51.2038145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42423645" }, "bbox": [ 0.034768, 51.16354, 0.034768, 51.16354 ], "geometry": { "type": "Point", "coordinates": [ 0.034768, 51.16354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430092" }, "bbox": [ -0.4990785, 51.1848723, -0.4990785, 51.1848723 ], "geometry": { "type": "Point", "coordinates": [ -0.4990785, 51.1848723 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05430087" }, "bbox": [ -0.5004858, 51.183984, -0.5004858, 51.183984 ], "geometry": { "type": "Point", "coordinates": [ -0.5004858, 51.183984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05431180" }, "bbox": [ -0.4977988, 51.1837911, -0.4977988, 51.1837911 ], "geometry": { "type": "Point", "coordinates": [ -0.4977988, 51.1837911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04446501" }, "bbox": [ -0.502811, 51.1858835, -0.502811, 51.1858835 ], "geometry": { "type": "Point", "coordinates": [ -0.502811, 51.1858835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04435696" }, "bbox": [ -0.5053059, 51.185311, -0.5053059, 51.185311 ], "geometry": { "type": "Point", "coordinates": [ -0.5053059, 51.185311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04434897" }, "bbox": [ -0.5063793, 51.1857067, -0.5063793, 51.1857067 ], "geometry": { "type": "Point", "coordinates": [ -0.5063793, 51.1857067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04434092" }, "bbox": [ -0.5076221, 51.184919, -0.5076221, 51.184919 ], "geometry": { "type": "Point", "coordinates": [ -0.5076221, 51.184919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04438590" }, "bbox": [ -0.5015365, 51.1846792, -0.5015365, 51.1846792 ], "geometry": { "type": "Point", "coordinates": [ -0.5015365, 51.1846792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04436075" }, "bbox": [ -0.5044402, 51.1835494, -0.5044402, 51.1835494 ], "geometry": { "type": "Point", "coordinates": [ -0.5044402, 51.1835494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21534255" }, "bbox": [ -0.2609373, 51.2678921, -0.2609373, 51.2678921 ], "geometry": { "type": "Point", "coordinates": [ -0.2609373, 51.2678921 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88468076" }, "bbox": [ -0.7299804, 51.2131901, -0.7299804, 51.2131901 ], "geometry": { "type": "Point", "coordinates": [ -0.7299804, 51.2131901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89408335" }, "bbox": [ -0.7167922, 51.1554694, -0.7167922, 51.1554694 ], "geometry": { "type": "Point", "coordinates": [ -0.7167922, 51.1554694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89408621" }, "bbox": [ -0.7164295, 51.15406, -0.7164295, 51.15406 ], "geometry": { "type": "Point", "coordinates": [ -0.7164295, 51.15406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34499719" }, "bbox": [ -0.0680222, 51.2259733, -0.0680222, 51.2259733 ], "geometry": { "type": "Point", "coordinates": [ -0.0680222, 51.2259733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37444423" }, "bbox": [ -0.0350271, 51.1807709, -0.0350271, 51.1807709 ], "geometry": { "type": "Point", "coordinates": [ -0.0350271, 51.1807709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14459370" }, "bbox": [ -0.3564266, 51.1988501, -0.3564266, 51.1988501 ], "geometry": { "type": "Point", "coordinates": [ -0.3564266, 51.1988501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14459364" }, "bbox": [ -0.3563516, 51.198461, -0.3563516, 51.198461 ], "geometry": { "type": "Point", "coordinates": [ -0.3563516, 51.198461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35432501" }, "bbox": [ -0.0665988, 51.1704179, -0.0665988, 51.1704179 ], "geometry": { "type": "Point", "coordinates": [ -0.0665988, 51.1704179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18390117" }, "bbox": [ -0.3144924, 51.1397254, -0.3144924, 51.1397254 ], "geometry": { "type": "Point", "coordinates": [ -0.3144924, 51.1397254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92443097" }, "bbox": [ -0.680314, 51.19634, -0.680314, 51.19634 ], "geometry": { "type": "Point", "coordinates": [ -0.680314, 51.19634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07476633" }, "bbox": [ -0.459911, 51.215096, -0.459911, 51.215096 ], "geometry": { "type": "Point", "coordinates": [ -0.459911, 51.215096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07476876" }, "bbox": [ -0.4594692, 51.2188539, -0.4594692, 51.2188539 ], "geometry": { "type": "Point", "coordinates": [ -0.4594692, 51.2188539 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07476580" }, "bbox": [ -0.4596222, 51.2194589, -0.4596222, 51.2194589 ], "geometry": { "type": "Point", "coordinates": [ -0.4596222, 51.2194589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07477284" }, "bbox": [ -0.4590083, 51.2195967, -0.4590083, 51.2195967 ], "geometry": { "type": "Point", "coordinates": [ -0.4590083, 51.2195967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07476555" }, "bbox": [ -0.4594998, 51.2173238, -0.4594998, 51.2173238 ], "geometry": { "type": "Point", "coordinates": [ -0.4594998, 51.2173238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07477557" }, "bbox": [ -0.4596594, 51.2175126, -0.4596594, 51.2175126 ], "geometry": { "type": "Point", "coordinates": [ -0.4596594, 51.2175126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40590317" }, "bbox": [ 0.0072141, 51.3144419, 0.0072141, 51.3144419 ], "geometry": { "type": "Point", "coordinates": [ 0.0072141, 51.3144419 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40590026" }, "bbox": [ 0.0075189, 51.3153256, 0.0075189, 51.3153256 ], "geometry": { "type": "Point", "coordinates": [ 0.0075189, 51.3153256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25426296" }, "bbox": [ -0.2044281, 51.1720425, -0.2044281, 51.1720425 ], "geometry": { "type": "Point", "coordinates": [ -0.2044281, 51.1720425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91474549" }, "bbox": [ -0.6918041, 51.2192909, -0.6918041, 51.2192909 ], "geometry": { "type": "Point", "coordinates": [ -0.6918041, 51.2192909 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92473188" }, "bbox": [ -0.6797042, 51.2226114, -0.6797042, 51.2226114 ], "geometry": { "type": "Point", "coordinates": [ -0.6797042, 51.2226114 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88381003" }, "bbox": [ -0.7428128, 51.1345038, -0.7428128, 51.1345038 ], "geometry": { "type": "Point", "coordinates": [ -0.7428128, 51.1345038 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91366989" }, "bbox": [ -0.690618, 51.1241604, -0.690618, 51.1241604 ], "geometry": { "type": "Point", "coordinates": [ -0.690618, 51.1241604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35425827" }, "bbox": [ -0.0622419, 51.1637067, -0.0622419, 51.1637067 ], "geometry": { "type": "Point", "coordinates": [ -0.0622419, 51.1637067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92327533" }, "bbox": [ -0.6770307, 51.0828017, -0.6770307, 51.0828017 ], "geometry": { "type": "Point", "coordinates": [ -0.6770307, 51.0828017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12521040" }, "bbox": [ -0.3948613, 51.2597325, -0.3948613, 51.2597325 ], "geometry": { "type": "Point", "coordinates": [ -0.3948613, 51.2597325 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40484942" }, "bbox": [ 0.0103582, 51.2177623, 0.0103582, 51.2177623 ], "geometry": { "type": "Point", "coordinates": [ 0.0103582, 51.2177623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40485757" }, "bbox": [ 0.0115986, 51.2190323, 0.0115986, 51.2190323 ], "geometry": { "type": "Point", "coordinates": [ 0.0115986, 51.2190323 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30503741" }, "bbox": [ -0.1336878, 51.2379935, -0.1336878, 51.2379935 ], "geometry": { "type": "Point", "coordinates": [ -0.1336878, 51.2379935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90377785" }, "bbox": [ -0.7040228, 51.1327188, -0.7040228, 51.1327188 ], "geometry": { "type": "Point", "coordinates": [ -0.7040228, 51.1327188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90378978" }, "bbox": [ -0.7024621, 51.1321229, -0.7024621, 51.1321229 ], "geometry": { "type": "Point", "coordinates": [ -0.7024621, 51.1321229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90379974" }, "bbox": [ -0.7007793, 51.1317112, -0.7007793, 51.1317112 ], "geometry": { "type": "Point", "coordinates": [ -0.7007793, 51.1317112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93365363" }, "bbox": [ -0.6637444, 51.1212724, -0.6637444, 51.1212724 ], "geometry": { "type": "Point", "coordinates": [ -0.6637444, 51.1212724 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94371610" }, "bbox": [ -0.6553531, 51.1256147, -0.6553531, 51.1256147 ], "geometry": { "type": "Point", "coordinates": [ -0.6553531, 51.1256147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17655518" }, "bbox": [ -0.311541, 51.374016, -0.311541, 51.374016 ], "geometry": { "type": "Point", "coordinates": [ -0.311541, 51.374016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17655128" }, "bbox": [ -0.3129386, 51.3744398, -0.3129386, 51.3744398 ], "geometry": { "type": "Point", "coordinates": [ -0.3129386, 51.3744398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90438038" }, "bbox": [ -0.7022644, 51.1824205, -0.7022644, 51.1824205 ], "geometry": { "type": "Point", "coordinates": [ -0.7022644, 51.1824205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90438044" }, "bbox": [ -0.7023279, 51.1830617, -0.7023279, 51.1830617 ], "geometry": { "type": "Point", "coordinates": [ -0.7023279, 51.1830617 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90432134" }, "bbox": [ -0.7105547, 51.1822786, -0.7105547, 51.1822786 ], "geometry": { "type": "Point", "coordinates": [ -0.7105547, 51.1822786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90432527" }, "bbox": [ -0.709988, 51.181674, -0.709988, 51.181674 ], "geometry": { "type": "Point", "coordinates": [ -0.709988, 51.181674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92447569" }, "bbox": [ -0.6739835, 51.1933959, -0.6739835, 51.1933959 ], "geometry": { "type": "Point", "coordinates": [ -0.6739835, 51.1933959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93442697" }, "bbox": [ -0.6666795, 51.196444, -0.6666795, 51.196444 ], "geometry": { "type": "Point", "coordinates": [ -0.6666795, 51.196444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92454217" }, "bbox": [ -0.6791821, 51.1983609, -0.6791821, 51.1983609 ], "geometry": { "type": "Point", "coordinates": [ -0.6791821, 51.1983609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24411699" }, "bbox": [ -0.226466, 51.1637166, -0.226466, 51.1637166 ], "geometry": { "type": "Point", "coordinates": [ -0.226466, 51.1637166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91477279" }, "bbox": [ -0.6877757, 51.2218803, -0.6877757, 51.2218803 ], "geometry": { "type": "Point", "coordinates": [ -0.6877757, 51.2218803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93470407" }, "bbox": [ -0.6689007, 51.2160029, -0.6689007, 51.2160029 ], "geometry": { "type": "Point", "coordinates": [ -0.6689007, 51.2160029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92466915" }, "bbox": [ -0.6746794, 51.2070211, -0.6746794, 51.2070211 ], "geometry": { "type": "Point", "coordinates": [ -0.6746794, 51.2070211 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92465302" }, "bbox": [ -0.6767977, 51.2059132, -0.6767977, 51.2059132 ], "geometry": { "type": "Point", "coordinates": [ -0.6767977, 51.2059132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92466615" }, "bbox": [ -0.6747735, 51.2071588, -0.6747735, 51.2071588 ], "geometry": { "type": "Point", "coordinates": [ -0.6747735, 51.2071588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461865" }, "bbox": [ -0.6677024, 51.2115747, -0.6677024, 51.2115747 ], "geometry": { "type": "Point", "coordinates": [ -0.6677024, 51.2115747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461345" }, "bbox": [ -0.6681634, 51.2096066, -0.6681634, 51.2096066 ], "geometry": { "type": "Point", "coordinates": [ -0.6681634, 51.2096066 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93460935" }, "bbox": [ -0.6684541, 51.2099403, -0.6684541, 51.2099403 ], "geometry": { "type": "Point", "coordinates": [ -0.6684541, 51.2099403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05443621" }, "bbox": [ -0.4942163, 51.1874278, -0.4942163, 51.1874278 ], "geometry": { "type": "Point", "coordinates": [ -0.4942163, 51.1874278 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05442612" }, "bbox": [ -0.4942925, 51.1857158, -0.4942925, 51.1857158 ], "geometry": { "type": "Point", "coordinates": [ -0.4942925, 51.1857158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05434698" }, "bbox": [ -0.4923284, 51.1854778, -0.4923284, 51.1854778 ], "geometry": { "type": "Point", "coordinates": [ -0.4923284, 51.1854778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82410006" }, "bbox": [ -0.828585, 51.1629384, -0.828585, 51.1629384 ], "geometry": { "type": "Point", "coordinates": [ -0.828585, 51.1629384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82402991" }, "bbox": [ -0.8237829, 51.1616167, -0.8237829, 51.1616167 ], "geometry": { "type": "Point", "coordinates": [ -0.8237829, 51.1616167 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84473789" }, "bbox": [ -0.7932829, 51.2241201, -0.7932829, 51.2241201 ], "geometry": { "type": "Point", "coordinates": [ -0.7932829, 51.2241201 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83489010" }, "bbox": [ -0.7966156, 51.2265542, -0.7966156, 51.2265542 ], "geometry": { "type": "Point", "coordinates": [ -0.7966156, 51.2265542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83486314" }, "bbox": [ -0.8039156, 51.2267621, -0.8039156, 51.2267621 ], "geometry": { "type": "Point", "coordinates": [ -0.8039156, 51.2267621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83486040" }, "bbox": [ -0.803698, 51.229134, -0.803698, 51.229134 ], "geometry": { "type": "Point", "coordinates": [ -0.803698, 51.229134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83486013" }, "bbox": [ -0.8039532, 51.2257186, -0.8039532, 51.2257186 ], "geometry": { "type": "Point", "coordinates": [ -0.8039532, 51.2257186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84473971" }, "bbox": [ -0.7931995, 51.2224888, -0.7931995, 51.2224888 ], "geometry": { "type": "Point", "coordinates": [ -0.7931995, 51.2224888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84484308" }, "bbox": [ -0.792201, 51.225811, -0.792201, 51.225811 ], "geometry": { "type": "Point", "coordinates": [ -0.792201, 51.225811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84483957" }, "bbox": [ -0.7921948, 51.229225, -0.7921948, 51.229225 ], "geometry": { "type": "Point", "coordinates": [ -0.7921948, 51.229225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93554458" }, "bbox": [ -0.6611804, 51.2919169, -0.6611804, 51.2919169 ], "geometry": { "type": "Point", "coordinates": [ -0.6611804, 51.2919169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93553657" }, "bbox": [ -0.6623687, 51.291436, -0.6623687, 51.291436 ], "geometry": { "type": "Point", "coordinates": [ -0.6623687, 51.291436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93552357" }, "bbox": [ -0.6646538, 51.2923483, -0.6646538, 51.2923483 ], "geometry": { "type": "Point", "coordinates": [ -0.6646538, 51.2923483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93553463" }, "bbox": [ -0.6631458, 51.2920077, -0.6631458, 51.2920077 ], "geometry": { "type": "Point", "coordinates": [ -0.6631458, 51.2920077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93553972" }, "bbox": [ -0.6626778, 51.2929738, -0.6626778, 51.2929738 ], "geometry": { "type": "Point", "coordinates": [ -0.6626778, 51.2929738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00416374" }, "bbox": [ -0.5619022, 51.1661636, -0.5619022, 51.1661636 ], "geometry": { "type": "Point", "coordinates": [ -0.5619022, 51.1661636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90394445" }, "bbox": [ -0.7081933, 51.1471597, -0.7081933, 51.1471597 ], "geometry": { "type": "Point", "coordinates": [ -0.7081933, 51.1471597 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90378981" }, "bbox": [ -0.7023781, 51.1323716, -0.7023781, 51.1323716 ], "geometry": { "type": "Point", "coordinates": [ -0.7023781, 51.1323716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11413547" }, "bbox": [ -0.4085559, 51.1615602, -0.4085559, 51.1615602 ], "geometry": { "type": "Point", "coordinates": [ -0.4085559, 51.1615602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27569745" }, "bbox": [ -0.1645864, 51.292826, -0.1645864, 51.292826 ], "geometry": { "type": "Point", "coordinates": [ -0.1645864, 51.292826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27568828" }, "bbox": [ -0.1670306, 51.2914495, -0.1670306, 51.2914495 ], "geometry": { "type": "Point", "coordinates": [ -0.1670306, 51.2914495 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06690860" }, "bbox": [ -0.4608949, 51.4133981, -0.4608949, 51.4133981 ], "geometry": { "type": "Point", "coordinates": [ -0.4608949, 51.4133981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83437906" }, "bbox": [ -0.8029257, 51.1805649, -0.8029257, 51.1805649 ], "geometry": { "type": "Point", "coordinates": [ -0.8029257, 51.1805649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83430358" }, "bbox": [ -0.8133746, 51.1854758, -0.8133746, 51.1854758 ], "geometry": { "type": "Point", "coordinates": [ -0.8133746, 51.1854758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83445766" }, "bbox": [ -0.8053827, 51.1950347, -0.8053827, 51.1950347 ], "geometry": { "type": "Point", "coordinates": [ -0.8053827, 51.1950347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84440361" }, "bbox": [ -0.7988924, 51.194709, -0.7988924, 51.194709 ], "geometry": { "type": "Point", "coordinates": [ -0.7988924, 51.194709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14371015" }, "bbox": [ -0.3710642, 51.1222124, -0.3710642, 51.1222124 ], "geometry": { "type": "Point", "coordinates": [ -0.3710642, 51.1222124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15496576" }, "bbox": [ -0.3447021, 51.2353473, -0.3447021, 51.2353473 ], "geometry": { "type": "Point", "coordinates": [ -0.3447021, 51.2353473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15495882" }, "bbox": [ -0.3463797, 51.2353908, -0.3463797, 51.2353908 ], "geometry": { "type": "Point", "coordinates": [ -0.3463797, 51.2353908 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08403287" }, "bbox": [ -0.4525252, 51.1570925, -0.4525252, 51.1570925 ], "geometry": { "type": "Point", "coordinates": [ -0.4525252, 51.1570925 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09435415" }, "bbox": [ -0.4343202, 51.1771268, -0.4343202, 51.1771268 ], "geometry": { "type": "Point", "coordinates": [ -0.4343202, 51.1771268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84417494" }, "bbox": [ -0.7895829, 51.1704915, -0.7895829, 51.1704915 ], "geometry": { "type": "Point", "coordinates": [ -0.7895829, 51.1704915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97480917" }, "bbox": [ -0.6109453, 51.2244831, -0.6109453, 51.2244831 ], "geometry": { "type": "Point", "coordinates": [ -0.6109453, 51.2244831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97480136" }, "bbox": [ -0.6122437, 51.2262367, -0.6122437, 51.2262367 ], "geometry": { "type": "Point", "coordinates": [ -0.6122437, 51.2262367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97483310" }, "bbox": [ -0.6075332, 51.2238514, -0.6075332, 51.2238514 ], "geometry": { "type": "Point", "coordinates": [ -0.6075332, 51.2238514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90430951" }, "bbox": [ -0.7137856, 51.1841159, -0.7137856, 51.1841159 ], "geometry": { "type": "Point", "coordinates": [ -0.7137856, 51.1841159 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82405139" }, "bbox": [ -0.8217484, 51.1565712, -0.8217484, 51.1565712 ], "geometry": { "type": "Point", "coordinates": [ -0.8217484, 51.1565712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90430342" }, "bbox": [ -0.7132473, 51.1828275, -0.7132473, 51.1828275 ], "geometry": { "type": "Point", "coordinates": [ -0.7132473, 51.1828275 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21531965" }, "bbox": [ -0.2642409, 51.2691085, -0.2642409, 51.2691085 ], "geometry": { "type": "Point", "coordinates": [ -0.2642409, 51.2691085 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21533792" }, "bbox": [ -0.2615892, 51.2714311, -0.2615892, 51.2714311 ], "geometry": { "type": "Point", "coordinates": [ -0.2615892, 51.2714311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21531072" }, "bbox": [ -0.2657036, 51.2694189, -0.2657036, 51.2694189 ], "geometry": { "type": "Point", "coordinates": [ -0.2657036, 51.2694189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13574472" }, "bbox": [ -0.3740664, 51.3072905, -0.3740664, 51.3072905 ], "geometry": { "type": "Point", "coordinates": [ -0.3740664, 51.3072905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15608968" }, "bbox": [ -0.3386265, 51.333591, -0.3386265, 51.333591 ], "geometry": { "type": "Point", "coordinates": [ -0.3386265, 51.333591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15534482" }, "bbox": [ -0.3468998, 51.2718117, -0.3468998, 51.2718117 ], "geometry": { "type": "Point", "coordinates": [ -0.3468998, 51.2718117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22451430" }, "bbox": [ -0.2534516, 51.1937188, -0.2534516, 51.1937188 ], "geometry": { "type": "Point", "coordinates": [ -0.2534516, 51.1937188 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00379616" }, "bbox": [ -0.5586917, 51.1249042, -0.5586917, 51.1249042 ], "geometry": { "type": "Point", "coordinates": [ -0.5586917, 51.1249042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01363065" }, "bbox": [ -0.5542353, 51.1204247, -0.5542353, 51.1204247 ], "geometry": { "type": "Point", "coordinates": [ -0.5542353, 51.1204247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96415732" }, "bbox": [ -0.6217139, 51.1639659, -0.6217139, 51.1639659 ], "geometry": { "type": "Point", "coordinates": [ -0.6217139, 51.1639659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96414392" }, "bbox": [ -0.6221633, 51.1683683, -0.6221633, 51.1683683 ], "geometry": { "type": "Point", "coordinates": [ -0.6221633, 51.1683683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26609706" }, "bbox": [ -0.1792535, 51.3257745, -0.1792535, 51.3257745 ], "geometry": { "type": "Point", "coordinates": [ -0.1792535, 51.3257745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32416380" }, "bbox": [ -0.1047542, 51.1603055, -0.1047542, 51.1603055 ], "geometry": { "type": "Point", "coordinates": [ -0.1047542, 51.1603055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32416367" }, "bbox": [ -0.1045346, 51.1580694, -0.1045346, 51.1580694 ], "geometry": { "type": "Point", "coordinates": [ -0.1045346, 51.1580694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86428119" }, "bbox": [ -0.75944, 51.1724637, -0.75944, 51.1724637 ], "geometry": { "type": "Point", "coordinates": [ -0.75944, 51.1724637 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21400197" }, "bbox": [ -0.2709409, 51.1550399, -0.2709409, 51.1550399 ], "geometry": { "type": "Point", "coordinates": [ -0.2709409, 51.1550399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21400379" }, "bbox": [ -0.2708376, 51.1536641, -0.2708376, 51.1536641 ], "geometry": { "type": "Point", "coordinates": [ -0.2708376, 51.1536641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20418307" }, "bbox": [ -0.2737409, 51.1562237, -0.2737409, 51.1562237 ], "geometry": { "type": "Point", "coordinates": [ -0.2737409, 51.1562237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20408871" }, "bbox": [ -0.2728252, 51.1529389, -0.2728252, 51.1529389 ], "geometry": { "type": "Point", "coordinates": [ -0.2728252, 51.1529389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20408291" }, "bbox": [ -0.2737343, 51.1547395, -0.2737343, 51.1547395 ], "geometry": { "type": "Point", "coordinates": [ -0.2737343, 51.1547395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21410510" }, "bbox": [ -0.2708636, 51.1560959, -0.2708636, 51.1560959 ], "geometry": { "type": "Point", "coordinates": [ -0.2708636, 51.1560959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18552050" }, "bbox": [ -0.3065505, 51.2867636, -0.3065505, 51.2867636 ], "geometry": { "type": "Point", "coordinates": [ -0.3065505, 51.2867636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00444518" }, "bbox": [ -0.5638219, 51.1877578, -0.5638219, 51.1877578 ], "geometry": { "type": "Point", "coordinates": [ -0.5638219, 51.1877578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00443331" }, "bbox": [ -0.5651395, 51.1893526, -0.5651395, 51.1893526 ], "geometry": { "type": "Point", "coordinates": [ -0.5651395, 51.1893526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32444354" }, "bbox": [ -0.1066203, 51.1846825, -0.1066203, 51.1846825 ], "geometry": { "type": "Point", "coordinates": [ -0.1066203, 51.1846825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32443852" }, "bbox": [ -0.1073637, 51.1846475, -0.1073637, 51.1846475 ], "geometry": { "type": "Point", "coordinates": [ -0.1073637, 51.1846475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18500760" }, "bbox": [ -0.3100274, 51.2422892, -0.3100274, 51.2422892 ], "geometry": { "type": "Point", "coordinates": [ -0.3100274, 51.2422892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17505778" }, "bbox": [ -0.3168692, 51.2441125, -0.3168692, 51.2441125 ], "geometry": { "type": "Point", "coordinates": [ -0.3168692, 51.2441125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98606633" }, "bbox": [ -0.5851182, 51.3335141, -0.5851182, 51.3335141 ], "geometry": { "type": "Point", "coordinates": [ -0.5851182, 51.3335141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22407251" }, "bbox": [ -0.2451576, 51.1508541, -0.2451576, 51.1508541 ], "geometry": { "type": "Point", "coordinates": [ -0.2451576, 51.1508541 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22408423" }, "bbox": [ -0.2451107, 51.1482411, -0.2451107, 51.1482411 ], "geometry": { "type": "Point", "coordinates": [ -0.2451107, 51.1482411 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22409835" }, "bbox": [ -0.2446179, 51.1490372, -0.2446179, 51.1490372 ], "geometry": { "type": "Point", "coordinates": [ -0.2446179, 51.1490372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93541773" }, "bbox": [ -0.6628946, 51.2859506, -0.6628946, 51.2859506 ], "geometry": { "type": "Point", "coordinates": [ -0.6628946, 51.2859506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38599918" }, "bbox": [ -0.0070545, 51.3148429, -0.0070545, 51.3148429 ], "geometry": { "type": "Point", "coordinates": [ -0.0070545, 51.3148429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89455149" }, "bbox": [ -0.7197582, 51.201485, -0.7197582, 51.201485 ], "geometry": { "type": "Point", "coordinates": [ -0.7197582, 51.201485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38467626" }, "bbox": [ -0.0144264, 51.1987937, -0.0144264, 51.1987937 ], "geometry": { "type": "Point", "coordinates": [ -0.0144264, 51.1987937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38469221" }, "bbox": [ -0.0150531, 51.1980291, -0.0150531, 51.1980291 ], "geometry": { "type": "Point", "coordinates": [ -0.0150531, 51.1980291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497399" }, "bbox": [ -0.2305391, 51.2349408, -0.2305391, 51.2349408 ], "geometry": { "type": "Point", "coordinates": [ -0.2305391, 51.2349408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23508708" }, "bbox": [ -0.2269395, 51.2365379, -0.2269395, 51.2365379 ], "geometry": { "type": "Point", "coordinates": [ -0.2269395, 51.2365379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23509124" }, "bbox": [ -0.2261783, 51.2380081, -0.2261783, 51.2380081 ], "geometry": { "type": "Point", "coordinates": [ -0.2261783, 51.2380081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97484041" }, "bbox": [ -0.6023687, 51.2262575, -0.6023687, 51.2262575 ], "geometry": { "type": "Point", "coordinates": [ -0.6023687, 51.2262575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11579842" }, "bbox": [ -0.3949645, 51.3050017, -0.3949645, 51.3050017 ], "geometry": { "type": "Point", "coordinates": [ -0.3949645, 51.3050017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88408060" }, "bbox": [ -0.7375242, 51.1561964, -0.7375242, 51.1561964 ], "geometry": { "type": "Point", "coordinates": [ -0.7375242, 51.1561964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92312092" }, "bbox": [ -0.6852087, 51.0791732, -0.6852087, 51.0791732 ], "geometry": { "type": "Point", "coordinates": [ -0.6852087, 51.0791732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92311799" }, "bbox": [ -0.6854648, 51.0797316, -0.6854648, 51.0797316 ], "geometry": { "type": "Point", "coordinates": [ -0.6854648, 51.0797316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92313198" }, "bbox": [ -0.6836442, 51.0796805, -0.6836442, 51.0796805 ], "geometry": { "type": "Point", "coordinates": [ -0.6836442, 51.0796805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92311482" }, "bbox": [ -0.68537, 51.077903, -0.68537, 51.077903 ], "geometry": { "type": "Point", "coordinates": [ -0.68537, 51.077903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92313988" }, "bbox": [ -0.6825812, 51.0788557, -0.6825812, 51.0788557 ], "geometry": { "type": "Point", "coordinates": [ -0.6825812, 51.0788557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92313687" }, "bbox": [ -0.6829081, 51.0787732, -0.6829081, 51.0787732 ], "geometry": { "type": "Point", "coordinates": [ -0.6829081, 51.0787732 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92322401" }, "bbox": [ -0.6845486, 51.0800949, -0.6845486, 51.0800949 ], "geometry": { "type": "Point", "coordinates": [ -0.6845486, 51.0800949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87419420" }, "bbox": [ -0.7430097, 51.1641342, -0.7430097, 51.1641342 ], "geometry": { "type": "Point", "coordinates": [ -0.7430097, 51.1641342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01390593" }, "bbox": [ -0.556097, 51.1509385, -0.556097, 51.1509385 ], "geometry": { "type": "Point", "coordinates": [ -0.556097, 51.1509385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84452135" }, "bbox": [ -0.7961518, 51.2010798, -0.7961518, 51.2010798 ], "geometry": { "type": "Point", "coordinates": [ -0.7961518, 51.2010798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85451267" }, "bbox": [ -0.7830177, 51.203876, -0.7830177, 51.203876 ], "geometry": { "type": "Point", "coordinates": [ -0.7830177, 51.203876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85480186" }, "bbox": [ -0.7835784, 51.2325811, -0.7835784, 51.2325811 ], "geometry": { "type": "Point", "coordinates": [ -0.7835784, 51.2325811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85480889" }, "bbox": [ -0.7830953, 51.2328764, -0.7830953, 51.2328764 ], "geometry": { "type": "Point", "coordinates": [ -0.7830953, 51.2328764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84499748" }, "bbox": [ -0.7841783, 51.2381987, -0.7841783, 51.2381987 ], "geometry": { "type": "Point", "coordinates": [ -0.7841783, 51.2381987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85490245" }, "bbox": [ -0.7839528, 51.2379852, -0.7839528, 51.2379852 ], "geometry": { "type": "Point", "coordinates": [ -0.7839528, 51.2379852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85469322" }, "bbox": [ -0.7712255, 51.2086446, -0.7712255, 51.2086446 ], "geometry": { "type": "Point", "coordinates": [ -0.7712255, 51.2086446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86460415" }, "bbox": [ -0.7697727, 51.2080348, -0.7697727, 51.2080348 ], "geometry": { "type": "Point", "coordinates": [ -0.7697727, 51.2080348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35503392" }, "bbox": [ -0.0625348, 51.2414056, -0.0625348, 51.2414056 ], "geometry": { "type": "Point", "coordinates": [ -0.0625348, 51.2414056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99419235" }, "bbox": [ -0.5724222, 51.1627696, -0.5724222, 51.1627696 ], "geometry": { "type": "Point", "coordinates": [ -0.5724222, 51.1627696 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99418042" }, "bbox": [ -0.57428, 51.1634861, -0.57428, 51.1634861 ], "geometry": { "type": "Point", "coordinates": [ -0.57428, 51.1634861 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43530739" }, "bbox": [ 0.0492098, 51.2616891, 0.0492098, 51.2616891 ], "geometry": { "type": "Point", "coordinates": [ 0.0492098, 51.2616891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02403005" }, "bbox": [ -0.5386092, 51.1505746, -0.5386092, 51.1505746 ], "geometry": { "type": "Point", "coordinates": [ -0.5386092, 51.1505746 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02404107" }, "bbox": [ -0.5367213, 51.1504965, -0.5367213, 51.1504965 ], "geometry": { "type": "Point", "coordinates": [ -0.5367213, 51.1504965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40486502" }, "bbox": [ 0.0122303, 51.2139827, 0.0122303, 51.2139827 ], "geometry": { "type": "Point", "coordinates": [ 0.0122303, 51.2139827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84414227" }, "bbox": [ -0.7933015, 51.1646627, -0.7933015, 51.1646627 ], "geometry": { "type": "Point", "coordinates": [ -0.7933015, 51.1646627 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40489702" }, "bbox": [ 0.0168155, 51.2142835, 0.0168155, 51.2142835 ], "geometry": { "type": "Point", "coordinates": [ 0.0168155, 51.2142835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40488407" }, "bbox": [ 0.0148607, 51.2144823, 0.0148607, 51.2144823 ], "geometry": { "type": "Point", "coordinates": [ 0.0148607, 51.2144823 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10535747" }, "bbox": [ -0.4163312, 51.2699295, -0.4163312, 51.2699295 ], "geometry": { "type": "Point", "coordinates": [ -0.4163312, 51.2699295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97402753" }, "bbox": [ -0.6104612, 51.1557308, -0.6104612, 51.1557308 ], "geometry": { "type": "Point", "coordinates": [ -0.6104612, 51.1557308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83462204" }, "bbox": [ -0.8100599, 51.2075103, -0.8100599, 51.2075103 ], "geometry": { "type": "Point", "coordinates": [ -0.8100599, 51.2075103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84477309" }, "bbox": [ -0.7881031, 51.2168765, -0.7881031, 51.2168765 ], "geometry": { "type": "Point", "coordinates": [ -0.7881031, 51.2168765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83491624" }, "bbox": [ -0.8102562, 51.236425, -0.8102562, 51.236425 ], "geometry": { "type": "Point", "coordinates": [ -0.8102562, 51.236425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36469424" }, "bbox": [ -0.041448, 51.1988335, -0.041448, 51.1988335 ], "geometry": { "type": "Point", "coordinates": [ -0.041448, 51.1988335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36467137" }, "bbox": [ -0.0445091, 51.200105, -0.0445091, 51.200105 ], "geometry": { "type": "Point", "coordinates": [ -0.0445091, 51.200105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20391325" }, "bbox": [ -0.2842473, 51.1399935, -0.2842473, 51.1399935 ], "geometry": { "type": "Point", "coordinates": [ -0.2842473, 51.1399935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10612237" }, "bbox": [ -0.4192879, 51.3409006, -0.4192879, 51.3409006 ], "geometry": { "type": "Point", "coordinates": [ -0.4192879, 51.3409006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21534980" }, "bbox": [ -0.2598582, 51.2708024, -0.2598582, 51.2708024 ], "geometry": { "type": "Point", "coordinates": [ -0.2598582, 51.2708024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87393553" }, "bbox": [ -0.75255, 51.1485854, -0.75255, 51.1485854 ], "geometry": { "type": "Point", "coordinates": [ -0.75255, 51.1485854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95562322" }, "bbox": [ -0.6350753, 51.2972137, -0.6350753, 51.2972137 ], "geometry": { "type": "Point", "coordinates": [ -0.6350753, 51.2972137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00347275" }, "bbox": [ -0.5630503, 51.1029054, -0.5630503, 51.1029054 ], "geometry": { "type": "Point", "coordinates": [ -0.5630503, 51.1029054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00348894" }, "bbox": [ -0.5608807, 51.105132, -0.5608807, 51.105132 ], "geometry": { "type": "Point", "coordinates": [ -0.5608807, 51.105132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00346890" }, "bbox": [ -0.5639587, 51.1042402, -0.5639587, 51.1042402 ], "geometry": { "type": "Point", "coordinates": [ -0.5639587, 51.1042402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00347779" }, "bbox": [ -0.5617173, 51.1033774, -0.5617173, 51.1033774 ], "geometry": { "type": "Point", "coordinates": [ -0.5617173, 51.1033774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38573263" }, "bbox": [ -0.0177798, 51.3010302, -0.0177798, 51.3010302 ], "geometry": { "type": "Point", "coordinates": [ -0.0177798, 51.3010302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95464074" }, "bbox": [ -0.6353546, 51.2114624, -0.6353546, 51.2114624 ], "geometry": { "type": "Point", "coordinates": [ -0.6353546, 51.2114624 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97351354" }, "bbox": [ -0.6134698, 51.1109445, -0.6134698, 51.1109445 ], "geometry": { "type": "Point", "coordinates": [ -0.6134698, 51.1109445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94362549" }, "bbox": [ -0.6524248, 51.1185248, -0.6524248, 51.1185248 ], "geometry": { "type": "Point", "coordinates": [ -0.6524248, 51.1185248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86462734" }, "bbox": [ -0.7662184, 51.2097843, -0.7662184, 51.2097843 ], "geometry": { "type": "Point", "coordinates": [ -0.7662184, 51.2097843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02485047" }, "bbox": [ -0.533848, 51.2262776, -0.533848, 51.2262776 ], "geometry": { "type": "Point", "coordinates": [ -0.533848, 51.2262776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02482484" }, "bbox": [ -0.5301486, 51.2289025, -0.5301486, 51.2289025 ], "geometry": { "type": "Point", "coordinates": [ -0.5301486, 51.2289025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20433317" }, "bbox": [ -0.2798286, 51.1749675, -0.2798286, 51.1749675 ], "geometry": { "type": "Point", "coordinates": [ -0.2798286, 51.1749675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22475659" }, "bbox": [ -0.2476272, 51.2143947, -0.2476272, 51.2143947 ], "geometry": { "type": "Point", "coordinates": [ -0.2476272, 51.2143947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21409015" }, "bbox": [ -0.2584327, 51.1475821, -0.2584327, 51.1475821 ], "geometry": { "type": "Point", "coordinates": [ -0.2584327, 51.1475821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29464588" }, "bbox": [ -0.1480903, 51.2066186, -0.1480903, 51.2066186 ], "geometry": { "type": "Point", "coordinates": [ -0.1480903, 51.2066186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07730721" }, "bbox": [ -0.4605421, 51.4477867, -0.4605421, 51.4477867 ], "geometry": { "type": "Point", "coordinates": [ -0.4605421, 51.4477867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39481569" }, "bbox": [ -0.0085999, 51.2201434, -0.0085999, 51.2201434 ], "geometry": { "type": "Point", "coordinates": [ -0.0085999, 51.2201434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03565901" }, "bbox": [ -0.5156095, 51.2938347, -0.5156095, 51.2938347 ], "geometry": { "type": "Point", "coordinates": [ -0.5156095, 51.2938347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24522786" }, "bbox": [ -0.2197291, 51.2613694, -0.2197291, 51.2613694 ], "geometry": { "type": "Point", "coordinates": [ -0.2197291, 51.2613694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95412153" }, "bbox": [ -0.6396512, 51.1651365, -0.6396512, 51.1651365 ], "geometry": { "type": "Point", "coordinates": [ -0.6396512, 51.1651365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22428864" }, "bbox": [ -0.2437311, 51.1698842, -0.2437311, 51.1698842 ], "geometry": { "type": "Point", "coordinates": [ -0.2437311, 51.1698842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87420290" }, "bbox": [ -0.7565256, 51.1787388, -0.7565256, 51.1787388 ], "geometry": { "type": "Point", "coordinates": [ -0.7565256, 51.1787388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87430708" }, "bbox": [ -0.7559009, 51.1804859, -0.7559009, 51.1804859 ], "geometry": { "type": "Point", "coordinates": [ -0.7559009, 51.1804859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86428178" }, "bbox": [ -0.7594913, 51.1775916, -0.7594913, 51.1775916 ], "geometry": { "type": "Point", "coordinates": [ -0.7594913, 51.1775916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86428585" }, "bbox": [ -0.7587273, 51.1782985, -0.7587273, 51.1782985 ], "geometry": { "type": "Point", "coordinates": [ -0.7587273, 51.1782985 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23409323" }, "bbox": [ -0.2295957, 51.1479434, -0.2295957, 51.1479434 ], "geometry": { "type": "Point", "coordinates": [ -0.2295957, 51.1479434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522044" }, "bbox": [ -0.3933918, 51.2600501, -0.3933918, 51.2600501 ], "geometry": { "type": "Point", "coordinates": [ -0.3933918, 51.2600501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12522343" }, "bbox": [ -0.3927611, 51.2603189, -0.3927611, 51.2603189 ], "geometry": { "type": "Point", "coordinates": [ -0.3927611, 51.2603189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467435" }, "bbox": [ -0.4733125, 51.2064602, -0.4733125, 51.2064602 ], "geometry": { "type": "Point", "coordinates": [ -0.4733125, 51.2064602 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02737526" }, "bbox": [ -0.5229803, 51.4486506, -0.5229803, 51.4486506 ], "geometry": { "type": "Point", "coordinates": [ -0.5229803, 51.4486506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07446319" }, "bbox": [ -0.4612535, 51.1869296, -0.4612535, 51.1869296 ], "geometry": { "type": "Point", "coordinates": [ -0.4612535, 51.1869296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91516658" }, "bbox": [ -0.6871934, 51.2558639, -0.6871934, 51.2558639 ], "geometry": { "type": "Point", "coordinates": [ -0.6871934, 51.2558639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08518146" }, "bbox": [ -0.4403423, 51.2531971, -0.4403423, 51.2531971 ], "geometry": { "type": "Point", "coordinates": [ -0.4403423, 51.2531971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01403621" }, "bbox": [ -0.5517623, 51.151393, -0.5517623, 51.151393 ], "geometry": { "type": "Point", "coordinates": [ -0.5517623, 51.151393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489541" }, "bbox": [ 0.0024449, 51.2177736, 0.0024449, 51.2177736 ], "geometry": { "type": "Point", "coordinates": [ 0.0024449, 51.2177736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489929" }, "bbox": [ 0.0028963, 51.2167666, 0.0028963, 51.2167666 ], "geometry": { "type": "Point", "coordinates": [ 0.0028963, 51.2167666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489107" }, "bbox": [ 0.0017597, 51.2147196, 0.0017597, 51.2147196 ], "geometry": { "type": "Point", "coordinates": [ 0.0017597, 51.2147196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41493848" }, "bbox": [ 0.0234606, 51.2269979, 0.0234606, 51.2269979 ], "geometry": { "type": "Point", "coordinates": [ 0.0234606, 51.2269979 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13409309" }, "bbox": [ -0.3727162, 51.1486767, -0.3727162, 51.1486767 ], "geometry": { "type": "Point", "coordinates": [ -0.3727162, 51.1486767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444020" }, "bbox": [ -0.6934487, 51.1897922, -0.6934487, 51.1897922 ], "geometry": { "type": "Point", "coordinates": [ -0.6934487, 51.1897922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91444822" }, "bbox": [ -0.6925874, 51.1894427, -0.6925874, 51.1894427 ], "geometry": { "type": "Point", "coordinates": [ -0.6925874, 51.1894427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91445702" }, "bbox": [ -0.6906845, 51.188579, -0.6906845, 51.188579 ], "geometry": { "type": "Point", "coordinates": [ -0.6906845, 51.188579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91445921" }, "bbox": [ -0.6918159, 51.190333, -0.6918159, 51.190333 ], "geometry": { "type": "Point", "coordinates": [ -0.6918159, 51.190333 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93463505" }, "bbox": [ -0.6649621, 51.2060231, -0.6649621, 51.2060231 ], "geometry": { "type": "Point", "coordinates": [ -0.6649621, 51.2060231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03703555" }, "bbox": [ -0.5148866, 51.4245832, -0.5148866, 51.4245832 ], "geometry": { "type": "Point", "coordinates": [ -0.5148866, 51.4245832 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90425415" }, "bbox": [ -0.7068018, 51.1713445, -0.7068018, 51.1713445 ], "geometry": { "type": "Point", "coordinates": [ -0.7068018, 51.1713445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90414466" }, "bbox": [ -0.7078484, 51.1671204, -0.7078484, 51.1671204 ], "geometry": { "type": "Point", "coordinates": [ -0.7078484, 51.1671204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32416501" }, "bbox": [ -0.104374, 51.1544943, -0.104374, 51.1544943 ], "geometry": { "type": "Point", "coordinates": [ -0.104374, 51.1544943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26452834" }, "bbox": [ -0.1942941, 51.1932384, -0.1942941, 51.1932384 ], "geometry": { "type": "Point", "coordinates": [ -0.1942941, 51.1932384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26451433" }, "bbox": [ -0.1961998, 51.1933062, -0.1961998, 51.1933062 ], "geometry": { "type": "Point", "coordinates": [ -0.1961998, 51.1933062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26451624" }, "bbox": [ -0.1957979, 51.1925809, -0.1957979, 51.1925809 ], "geometry": { "type": "Point", "coordinates": [ -0.1957979, 51.1925809 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26453219" }, "bbox": [ -0.1933204, 51.1919474, -0.1933204, 51.1919474 ], "geometry": { "type": "Point", "coordinates": [ -0.1933204, 51.1919474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26455213" }, "bbox": [ -0.1906492, 51.1912722, -0.1906492, 51.1912722 ], "geometry": { "type": "Point", "coordinates": [ -0.1906492, 51.1912722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26453456" }, "bbox": [ -0.1933001, 51.1952795, -0.1933001, 51.1952795 ], "geometry": { "type": "Point", "coordinates": [ -0.1933001, 51.1952795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26452548" }, "bbox": [ -0.1955542, 51.1942501, -0.1955542, 51.1942501 ], "geometry": { "type": "Point", "coordinates": [ -0.1955542, 51.1942501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23425688" }, "bbox": [ -0.2342767, 51.1718127, -0.2342767, 51.1718127 ], "geometry": { "type": "Point", "coordinates": [ -0.2342767, 51.1718127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23427080" }, "bbox": [ -0.2321095, 51.1705385, -0.2321095, 51.1705385 ], "geometry": { "type": "Point", "coordinates": [ -0.2321095, 51.1705385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36404742" }, "bbox": [ -0.0501795, 51.1468559, -0.0501795, 51.1468559 ], "geometry": { "type": "Point", "coordinates": [ -0.0501795, 51.1468559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36402845" }, "bbox": [ -0.0529215, 51.1471787, -0.0529215, 51.1471787 ], "geometry": { "type": "Point", "coordinates": [ -0.0529215, 51.1471787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36406570" }, "bbox": [ -0.0475698, 51.1494229, -0.0475698, 51.1494229 ], "geometry": { "type": "Point", "coordinates": [ -0.0475698, 51.1494229 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36404769" }, "bbox": [ -0.0501813, 51.1493142, -0.0501813, 51.1493142 ], "geometry": { "type": "Point", "coordinates": [ -0.0501813, 51.1493142 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99678169" }, "bbox": [ -0.5720525, 51.3994761, -0.5720525, 51.3994761 ], "geometry": { "type": "Point", "coordinates": [ -0.5720525, 51.3994761 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01644602" }, "bbox": [ -0.5425377, 51.365981, -0.5425377, 51.365981 ], "geometry": { "type": "Point", "coordinates": [ -0.5425377, 51.365981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03631392" }, "bbox": [ -0.5199873, 51.3650002, -0.5199873, 51.3650002 ], "geometry": { "type": "Point", "coordinates": [ -0.5199873, 51.3650002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03633382" }, "bbox": [ -0.5170979, 51.3640804, -0.5170979, 51.3640804 ], "geometry": { "type": "Point", "coordinates": [ -0.5170979, 51.3640804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03634172" }, "bbox": [ -0.5178194, 51.3631074, -0.5178194, 51.3631074 ], "geometry": { "type": "Point", "coordinates": [ -0.5178194, 51.3631074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01648292" }, "bbox": [ -0.5382313, 51.3741384, -0.5382313, 51.3741384 ], "geometry": { "type": "Point", "coordinates": [ -0.5382313, 51.3741384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02650911" }, "bbox": [ -0.5340094, 51.3756943, -0.5340094, 51.3756943 ], "geometry": { "type": "Point", "coordinates": [ -0.5340094, 51.3756943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02650409" }, "bbox": [ -0.5356066, 51.3756113, -0.5356066, 51.3756113 ], "geometry": { "type": "Point", "coordinates": [ -0.5356066, 51.3756113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01659610" }, "bbox": [ -0.536416, 51.3758588, -0.536416, 51.3758588 ], "geometry": { "type": "Point", "coordinates": [ -0.536416, 51.3758588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02654900" }, "bbox": [ -0.529046, 51.3748111, -0.529046, 51.3748111 ], "geometry": { "type": "Point", "coordinates": [ -0.529046, 51.3748111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02651304" }, "bbox": [ -0.5335368, 51.3751088, -0.5335368, 51.3751088 ], "geometry": { "type": "Point", "coordinates": [ -0.5335368, 51.3751088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02643097" }, "bbox": [ -0.5308154, 51.3744807, -0.5308154, 51.3744807 ], "geometry": { "type": "Point", "coordinates": [ -0.5308154, 51.3744807 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02644397" }, "bbox": [ -0.5296705, 51.3745097, -0.5296705, 51.3745097 ], "geometry": { "type": "Point", "coordinates": [ -0.5296705, 51.3745097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02640494" }, "bbox": [ -0.5330124, 51.3742428, -0.5330124, 51.3742428 ], "geometry": { "type": "Point", "coordinates": [ -0.5330124, 51.3742428 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02646894" }, "bbox": [ -0.5261862, 51.3742321, -0.5261862, 51.3742321 ], "geometry": { "type": "Point", "coordinates": [ -0.5261862, 51.3742321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02646996" }, "bbox": [ -0.5262122, 51.3743489, -0.5262122, 51.3743489 ], "geometry": { "type": "Point", "coordinates": [ -0.5262122, 51.3743489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02645892" }, "bbox": [ -0.527967, 51.3741186, -0.527967, 51.3741186 ], "geometry": { "type": "Point", "coordinates": [ -0.527967, 51.3741186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02645996" }, "bbox": [ -0.527612, 51.3744579, -0.527612, 51.3744579 ], "geometry": { "type": "Point", "coordinates": [ -0.527612, 51.3744579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02632643" }, "bbox": [ -0.5331908, 51.3607126, -0.5331908, 51.3607126 ], "geometry": { "type": "Point", "coordinates": [ -0.5331908, 51.3607126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02633063" }, "bbox": [ -0.5309635, 51.3625415, -0.5309635, 51.3625415 ], "geometry": { "type": "Point", "coordinates": [ -0.5309635, 51.3625415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01638252" }, "bbox": [ -0.5391662, 51.3615225, -0.5391662, 51.3615225 ], "geometry": { "type": "Point", "coordinates": [ -0.5391662, 51.3615225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01639135" }, "bbox": [ -0.5377039, 51.3599514, -0.5377039, 51.3599514 ], "geometry": { "type": "Point", "coordinates": [ -0.5377039, 51.3599514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465546" }, "bbox": [ -0.3334939, 51.2054537, -0.3334939, 51.2054537 ], "geometry": { "type": "Point", "coordinates": [ -0.3334939, 51.2054537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16465845" }, "bbox": [ -0.3325033, 51.2053767, -0.3325033, 51.2053767 ], "geometry": { "type": "Point", "coordinates": [ -0.3325033, 51.2053767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97621683" }, "bbox": [ -0.6059098, 51.3562993, -0.6059098, 51.3562993 ], "geometry": { "type": "Point", "coordinates": [ -0.6059098, 51.3562993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97620487" }, "bbox": [ -0.6077184, 51.3566826, -0.6077184, 51.3566826 ], "geometry": { "type": "Point", "coordinates": [ -0.6077184, 51.3566826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97620493" }, "bbox": [ -0.6076245, 51.3571923, -0.6076245, 51.3571923 ], "geometry": { "type": "Point", "coordinates": [ -0.6076245, 51.3571923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97624782" }, "bbox": [ -0.6016277, 51.3561146, -0.6016277, 51.3561146 ], "geometry": { "type": "Point", "coordinates": [ -0.6016277, 51.3561146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97625185" }, "bbox": [ -0.6008289, 51.3564717, -0.6008289, 51.3564717 ], "geometry": { "type": "Point", "coordinates": [ -0.6008289, 51.3564717 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97621495" }, "bbox": [ -0.6062611, 51.3573953, -0.6062611, 51.3573953 ], "geometry": { "type": "Point", "coordinates": [ -0.6062611, 51.3573953 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96639912" }, "bbox": [ -0.6082031, 51.3586245, -0.6082031, 51.3586245 ], "geometry": { "type": "Point", "coordinates": [ -0.6082031, 51.3586245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97621577" }, "bbox": [ -0.6061261, 51.3557283, -0.6061261, 51.3557283 ], "geometry": { "type": "Point", "coordinates": [ -0.6061261, 51.3557283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97620296" }, "bbox": [ -0.6079724, 51.3574675, -0.6079724, 51.3574675 ], "geometry": { "type": "Point", "coordinates": [ -0.6079724, 51.3574675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96639015" }, "bbox": [ -0.6096685, 51.3592391, -0.6096685, 51.3592391 ], "geometry": { "type": "Point", "coordinates": [ -0.6096685, 51.3592391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96639711" }, "bbox": [ -0.6087053, 51.358784, -0.6087053, 51.358784 ], "geometry": { "type": "Point", "coordinates": [ -0.6087053, 51.358784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93631586" }, "bbox": [ -0.6633409, 51.3661471, -0.6633409, 51.3661471 ], "geometry": { "type": "Point", "coordinates": [ -0.6633409, 51.3661471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93631777" }, "bbox": [ -0.6630603, 51.3653793, -0.6630603, 51.3653793 ], "geometry": { "type": "Point", "coordinates": [ -0.6630603, 51.3653793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93633080" }, "bbox": [ -0.6613756, 51.3655688, -0.6613756, 51.3655688 ], "geometry": { "type": "Point", "coordinates": [ -0.6613756, 51.3655688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93633064" }, "bbox": [ -0.6612065, 51.3643007, -0.6612065, 51.3643007 ], "geometry": { "type": "Point", "coordinates": [ -0.6612065, 51.3643007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93631098" }, "bbox": [ -0.6640553, 51.3672589, -0.6640553, 51.3672589 ], "geometry": { "type": "Point", "coordinates": [ -0.6640553, 51.3672589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93630886" }, "bbox": [ -0.6643054, 51.366223, -0.6643054, 51.366223 ], "geometry": { "type": "Point", "coordinates": [ -0.6643054, 51.366223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407946" }, "bbox": [ -0.8029183, 51.1574345, -0.8029183, 51.1574345 ], "geometry": { "type": "Point", "coordinates": [ -0.8029183, 51.1574345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83409440" }, "bbox": [ -0.8008493, 51.1567694, -0.8008493, 51.1567694 ], "geometry": { "type": "Point", "coordinates": [ -0.8008493, 51.1567694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499181" }, "bbox": [ -0.7135742, 51.240362, -0.7135742, 51.240362 ], "geometry": { "type": "Point", "coordinates": [ -0.7135742, 51.240362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89499157" }, "bbox": [ -0.7134587, 51.2381365, -0.7134587, 51.2381365 ], "geometry": { "type": "Point", "coordinates": [ -0.7134587, 51.2381365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89497460" }, "bbox": [ -0.7160178, 51.238433, -0.7160178, 51.238433 ], "geometry": { "type": "Point", "coordinates": [ -0.7160178, 51.238433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89495660" }, "bbox": [ -0.718387, 51.2385265, -0.718387, 51.2385265 ], "geometry": { "type": "Point", "coordinates": [ -0.718387, 51.2385265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89495163" }, "bbox": [ -0.7191216, 51.2388074, -0.7191216, 51.2388074 ], "geometry": { "type": "Point", "coordinates": [ -0.7191216, 51.2388074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90437248" }, "bbox": [ -0.7033117, 51.1833689, -0.7033117, 51.1833689 ], "geometry": { "type": "Point", "coordinates": [ -0.7033117, 51.1833689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90436342" }, "bbox": [ -0.704718, 51.1828822, -0.704718, 51.1828822 ], "geometry": { "type": "Point", "coordinates": [ -0.704718, 51.1828822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90357526" }, "bbox": [ -0.7049382, 51.1094389, -0.7049382, 51.1094389 ], "geometry": { "type": "Point", "coordinates": [ -0.7049382, 51.1094389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90368646" }, "bbox": [ -0.7025573, 51.1207358, -0.7025573, 51.1207358 ], "geometry": { "type": "Point", "coordinates": [ -0.7025573, 51.1207358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90368041" }, "bbox": [ -0.703993, 51.119792, -0.703993, 51.119792 ], "geometry": { "type": "Point", "coordinates": [ -0.703993, 51.119792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91389050" }, "bbox": [ -0.6880962, 51.1381314, -0.6880962, 51.1381314 ], "geometry": { "type": "Point", "coordinates": [ -0.6880962, 51.1381314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91386076" }, "bbox": [ -0.6920672, 51.1407706, -0.6920672, 51.1407706 ], "geometry": { "type": "Point", "coordinates": [ -0.6920672, 51.1407706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91388697" }, "bbox": [ -0.6876919, 51.1426221, -0.6876919, 51.1426221 ], "geometry": { "type": "Point", "coordinates": [ -0.6876919, 51.1426221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91399059" }, "bbox": [ -0.6874761, 51.1478522, -0.6874761, 51.1478522 ], "geometry": { "type": "Point", "coordinates": [ -0.6874761, 51.1478522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91399204" }, "bbox": [ -0.6874615, 51.1433596, -0.6874615, 51.1433596 ], "geometry": { "type": "Point", "coordinates": [ -0.6874615, 51.1433596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90379285" }, "bbox": [ -0.7018937, 51.1327911, -0.7018937, 51.1327911 ], "geometry": { "type": "Point", "coordinates": [ -0.7018937, 51.1327911 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41493639" }, "bbox": [ 0.022629, 51.2258331, 0.022629, 51.2258331 ], "geometry": { "type": "Point", "coordinates": [ 0.022629, 51.2258331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39489950" }, "bbox": [ 0.0032051, 51.2184906, 0.0032051, 51.2184906 ], "geometry": { "type": "Point", "coordinates": [ 0.0032051, 51.2184906 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40480561" }, "bbox": [ 0.0040723, 51.219537, 0.0040723, 51.219537 ], "geometry": { "type": "Point", "coordinates": [ 0.0040723, 51.219537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544957" }, "bbox": [ -0.6034727, 51.2818718, -0.6034727, 51.2818718 ], "geometry": { "type": "Point", "coordinates": [ -0.6034727, 51.2818718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97544859" }, "bbox": [ -0.6036532, 51.2820626, -0.6036532, 51.2820626 ], "geometry": { "type": "Point", "coordinates": [ -0.6036532, 51.2820626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96539352" }, "bbox": [ -0.6115829, 51.2726363, -0.6115829, 51.2726363 ], "geometry": { "type": "Point", "coordinates": [ -0.6115829, 51.2726363 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96546925" }, "bbox": [ -0.6150957, 51.2792737, -0.6150957, 51.2792737 ], "geometry": { "type": "Point", "coordinates": [ -0.6150957, 51.2792737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96540816" }, "bbox": [ -0.6239192, 51.2786324, -0.6239192, 51.2786324 ], "geometry": { "type": "Point", "coordinates": [ -0.6239192, 51.2786324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96545633" }, "bbox": [ -0.6173022, 51.2800981, -0.6173022, 51.2800981 ], "geometry": { "type": "Point", "coordinates": [ -0.6173022, 51.2800981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547114" }, "bbox": [ -0.6147881, 51.2782029, -0.6147881, 51.2782029 ], "geometry": { "type": "Point", "coordinates": [ -0.6147881, 51.2782029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547506" }, "bbox": [ -0.6142093, 51.2772218, -0.6142093, 51.2772218 ], "geometry": { "type": "Point", "coordinates": [ -0.6142093, 51.2772218 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96546820" }, "bbox": [ -0.615361, 51.2787961, -0.615361, 51.2787961 ], "geometry": { "type": "Point", "coordinates": [ -0.615361, 51.2787961 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547120" }, "bbox": [ -0.614904, 51.2787951, -0.614904, 51.2787951 ], "geometry": { "type": "Point", "coordinates": [ -0.614904, 51.2787951 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547414" }, "bbox": [ -0.6144761, 51.2781859, -0.6144761, 51.2781859 ], "geometry": { "type": "Point", "coordinates": [ -0.6144761, 51.2781859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96540870" }, "bbox": [ -0.6237074, 51.2833373, -0.6237074, 51.2833373 ], "geometry": { "type": "Point", "coordinates": [ -0.6237074, 51.2833373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97530558" }, "bbox": [ -0.61009, 51.2730943, -0.61009, 51.2730943 ], "geometry": { "type": "Point", "coordinates": [ -0.61009, 51.2730943 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96547812" }, "bbox": [ -0.613702, 51.277998, -0.613702, 51.277998 ], "geometry": { "type": "Point", "coordinates": [ -0.613702, 51.277998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93507296" }, "bbox": [ -0.6584372, 51.2502725, -0.6584372, 51.2502725 ], "geometry": { "type": "Point", "coordinates": [ -0.6584372, 51.2502725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93508998" }, "bbox": [ -0.656219, 51.2502366, -0.656219, 51.2502366 ], "geometry": { "type": "Point", "coordinates": [ -0.656219, 51.2502366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93507593" }, "bbox": [ -0.6579657, 51.2498741, -0.6579657, 51.2498741 ], "geometry": { "type": "Point", "coordinates": [ -0.6579657, 51.2498741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93519109" }, "bbox": [ -0.655685, 51.2513173, -0.655685, 51.2513173 ], "geometry": { "type": "Point", "coordinates": [ -0.655685, 51.2513173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93517012" }, "bbox": [ -0.6588727, 51.251618, -0.6588727, 51.251618 ], "geometry": { "type": "Point", "coordinates": [ -0.6588727, 51.251618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98371151" }, "bbox": [ -0.5990994, 51.1284497, -0.5990994, 51.1284497 ], "geometry": { "type": "Point", "coordinates": [ -0.5990994, 51.1284497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41474239" }, "bbox": [ 0.0229941, 51.2084755, 0.0229941, 51.2084755 ], "geometry": { "type": "Point", "coordinates": [ 0.0229941, 51.2084755 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41472109" }, "bbox": [ 0.019889, 51.2056295, 0.019889, 51.2056295 ], "geometry": { "type": "Point", "coordinates": [ 0.019889, 51.2056295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41474815" }, "bbox": [ 0.0240657, 51.2059757, 0.0240657, 51.2059757 ], "geometry": { "type": "Point", "coordinates": [ 0.0240657, 51.2059757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41475826" }, "bbox": [ 0.0255705, 51.20704, 0.0255705, 51.20704 ], "geometry": { "type": "Point", "coordinates": [ 0.0255705, 51.20704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41476019" }, "bbox": [ 0.0260612, 51.2063941, 0.0260612, 51.2063941 ], "geometry": { "type": "Point", "coordinates": [ 0.0260612, 51.2063941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41463399" }, "bbox": [ 0.0216234, 51.2043437, 0.0216234, 51.2043437 ], "geometry": { "type": "Point", "coordinates": [ 0.0216234, 51.2043437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92484483" }, "bbox": [ -0.6729181, 51.2315401, -0.6729181, 51.2315401 ], "geometry": { "type": "Point", "coordinates": [ -0.6729181, 51.2315401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92487871" }, "bbox": [ -0.6716302, 51.22922, -0.6716302, 51.22922 ], "geometry": { "type": "Point", "coordinates": [ -0.6716302, 51.22922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92496412" }, "bbox": [ -0.674623, 51.2337514, -0.674623, 51.2337514 ], "geometry": { "type": "Point", "coordinates": [ -0.674623, 51.2337514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92496403" }, "bbox": [ -0.6744367, 51.2329286, -0.6744367, 51.2329286 ], "geometry": { "type": "Point", "coordinates": [ -0.6744367, 51.2329286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92497610" }, "bbox": [ -0.6722802, 51.2336121, -0.6722802, 51.2336121 ], "geometry": { "type": "Point", "coordinates": [ -0.6722802, 51.2336121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92498903" }, "bbox": [ -0.6709799, 51.2328987, -0.6709799, 51.2328987 ], "geometry": { "type": "Point", "coordinates": [ -0.6709799, 51.2328987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92496408" }, "bbox": [ -0.6745545, 51.2333568, -0.6745545, 51.2333568 ], "geometry": { "type": "Point", "coordinates": [ -0.6745545, 51.2333568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94450146" }, "bbox": [ -0.6561301, 51.2005759, -0.6561301, 51.2005759 ], "geometry": { "type": "Point", "coordinates": [ -0.6561301, 51.2005759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94451755" }, "bbox": [ -0.6536691, 51.2013396, -0.6536691, 51.2013396 ], "geometry": { "type": "Point", "coordinates": [ -0.6536691, 51.2013396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94450581" }, "bbox": [ -0.6552152, 51.203785, -0.6552152, 51.203785 ], "geometry": { "type": "Point", "coordinates": [ -0.6552152, 51.203785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94450970" }, "bbox": [ -0.6546198, 51.2027785, -0.6546198, 51.2027785 ], "geometry": { "type": "Point", "coordinates": [ -0.6546198, 51.2027785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93474663" }, "bbox": [ -0.6632384, 51.2202984, -0.6632384, 51.2202984 ], "geometry": { "type": "Point", "coordinates": [ -0.6632384, 51.2202984 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93456745" }, "bbox": [ -0.6606218, 51.2005972, -0.6606218, 51.2005972 ], "geometry": { "type": "Point", "coordinates": [ -0.6606218, 51.2005972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457450" }, "bbox": [ -0.6596491, 51.2011796, -0.6596491, 51.2011796 ], "geometry": { "type": "Point", "coordinates": [ -0.6596491, 51.2011796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457642" }, "bbox": [ -0.6594117, 51.2002767, -0.6594117, 51.2002767 ], "geometry": { "type": "Point", "coordinates": [ -0.6594117, 51.2002767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457548" }, "bbox": [ -0.6595774, 51.2008716, -0.6595774, 51.2008716 ], "geometry": { "type": "Point", "coordinates": [ -0.6595774, 51.2008716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93456263" }, "bbox": [ -0.6612342, 51.2023225, -0.6612342, 51.2023225 ], "geometry": { "type": "Point", "coordinates": [ -0.6612342, 51.2023225 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457165" }, "bbox": [ -0.6599821, 51.2024929, -0.6599821, 51.2024929 ], "geometry": { "type": "Point", "coordinates": [ -0.6599821, 51.2024929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93457545" }, "bbox": [ -0.659506, 51.2005695, -0.659506, 51.2005695 ], "geometry": { "type": "Point", "coordinates": [ -0.659506, 51.2005695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93459172" }, "bbox": [ -0.6573179, 51.2029052, -0.6573179, 51.2029052 ], "geometry": { "type": "Point", "coordinates": [ -0.6573179, 51.2029052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93456635" }, "bbox": [ -0.6609585, 51.1997472, -0.6609585, 51.1997472 ], "geometry": { "type": "Point", "coordinates": [ -0.6609585, 51.1997472 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93465166" }, "bbox": [ -0.6625817, 51.2118538, -0.6625817, 51.2118538 ], "geometry": { "type": "Point", "coordinates": [ -0.6625817, 51.2118538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93465446" }, "bbox": [ -0.6623855, 51.2098738, -0.6623855, 51.2098738 ], "geometry": { "type": "Point", "coordinates": [ -0.6623855, 51.2098738 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93465267" }, "bbox": [ -0.662479, 51.2118254, -0.662479, 51.2118254 ], "geometry": { "type": "Point", "coordinates": [ -0.662479, 51.2118254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92381960" }, "bbox": [ -0.6836586, 51.1392179, -0.6836586, 51.1392179 ], "geometry": { "type": "Point", "coordinates": [ -0.6836586, 51.1392179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92387384" }, "bbox": [ -0.6761391, 51.1416065, -0.6761391, 51.1416065 ], "geometry": { "type": "Point", "coordinates": [ -0.6761391, 51.1416065 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92382775" }, "bbox": [ -0.6824613, 51.1405641, -0.6824613, 51.1405641 ], "geometry": { "type": "Point", "coordinates": [ -0.6824613, 51.1405641 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92383771" }, "bbox": [ -0.6811066, 51.1402458, -0.6811066, 51.1402458 ], "geometry": { "type": "Point", "coordinates": [ -0.6811066, 51.1402458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92384036" }, "bbox": [ -0.6802642, 51.137122, -0.6802642, 51.137122 ], "geometry": { "type": "Point", "coordinates": [ -0.6802642, 51.137122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92382384" }, "bbox": [ -0.6828786, 51.1413902, -0.6828786, 51.1413902 ], "geometry": { "type": "Point", "coordinates": [ -0.6828786, 51.1413902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92382369" }, "bbox": [ -0.6830492, 51.1400525, -0.6830492, 51.1400525 ], "geometry": { "type": "Point", "coordinates": [ -0.6830492, 51.1400525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92385655" }, "bbox": [ -0.6773626, 51.1387064, -0.6773626, 51.1387064 ], "geometry": { "type": "Point", "coordinates": [ -0.6773626, 51.1387064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92384656" }, "bbox": [ -0.6796067, 51.1389122, -0.6796067, 51.1389122 ], "geometry": { "type": "Point", "coordinates": [ -0.6796067, 51.1389122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92387859" }, "bbox": [ -0.6756972, 51.139348, -0.6756972, 51.139348 ], "geometry": { "type": "Point", "coordinates": [ -0.6756972, 51.139348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92382757" }, "bbox": [ -0.6823656, 51.1392245, -0.6823656, 51.1392245 ], "geometry": { "type": "Point", "coordinates": [ -0.6823656, 51.1392245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92382165" }, "bbox": [ -0.6833469, 51.1397354, -0.6833469, 51.1397354 ], "geometry": { "type": "Point", "coordinates": [ -0.6833469, 51.1397354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92381241" }, "bbox": [ -0.6843824, 51.1378404, -0.6843824, 51.1378404 ], "geometry": { "type": "Point", "coordinates": [ -0.6843824, 51.1378404 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92385186" }, "bbox": [ -0.67879, 51.1413417, -0.67879, 51.1413417 ], "geometry": { "type": "Point", "coordinates": [ -0.67879, 51.1413417 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92382481" }, "bbox": [ -0.6826782, 51.1411467, -0.6826782, 51.1411467 ], "geometry": { "type": "Point", "coordinates": [ -0.6826782, 51.1411467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92380772" }, "bbox": [ -0.6847924, 51.1403543, -0.6847924, 51.1403543 ], "geometry": { "type": "Point", "coordinates": [ -0.6847924, 51.1403543 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92388079" }, "bbox": [ -0.6755878, 51.1408596, -0.6755878, 51.1408596 ], "geometry": { "type": "Point", "coordinates": [ -0.6755878, 51.1408596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92392648" }, "bbox": [ -0.68247, 51.1471414, -0.68247, 51.1471414 ], "geometry": { "type": "Point", "coordinates": [ -0.68247, 51.1471414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92393453" }, "bbox": [ -0.6813701, 51.1476614, -0.6813701, 51.1476614 ], "geometry": { "type": "Point", "coordinates": [ -0.6813701, 51.1476614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92397802" }, "bbox": [ -0.6751013, 51.142907, -0.6751013, 51.142907 ], "geometry": { "type": "Point", "coordinates": [ -0.6751013, 51.142907 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92399727" }, "bbox": [ -0.6727793, 51.1452768, -0.6727793, 51.1452768 ], "geometry": { "type": "Point", "coordinates": [ -0.6727793, 51.1452768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92397012" }, "bbox": [ -0.6761911, 51.1438595, -0.6761911, 51.1438595 ], "geometry": { "type": "Point", "coordinates": [ -0.6761911, 51.1438595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92393238" }, "bbox": [ -0.6814671, 51.1462447, -0.6814671, 51.1462447 ], "geometry": { "type": "Point", "coordinates": [ -0.6814671, 51.1462447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92392920" }, "bbox": [ -0.6821552, 51.1447009, -0.6821552, 51.1447009 ], "geometry": { "type": "Point", "coordinates": [ -0.6821552, 51.1447009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92395219" }, "bbox": [ -0.6784716, 51.1445881, -0.6784716, 51.1445881 ], "geometry": { "type": "Point", "coordinates": [ -0.6784716, 51.1445881 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86415415" }, "bbox": [ -0.7635978, 51.1630612, -0.7635978, 51.1630612 ], "geometry": { "type": "Point", "coordinates": [ -0.7635978, 51.1630612 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86412732" }, "bbox": [ -0.7672286, 51.1643842, -0.7672286, 51.1643842 ], "geometry": { "type": "Point", "coordinates": [ -0.7672286, 51.1643842 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95345257" }, "bbox": [ -0.6370012, 51.1027999, -0.6370012, 51.1027999 ], "geometry": { "type": "Point", "coordinates": [ -0.6370012, 51.1027999 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95341839" }, "bbox": [ -0.642869, 51.0999277, -0.642869, 51.0999277 ], "geometry": { "type": "Point", "coordinates": [ -0.642869, 51.0999277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94351228" }, "bbox": [ -0.6568491, 51.1091783, -0.6568491, 51.1091783 ], "geometry": { "type": "Point", "coordinates": [ -0.6568491, 51.1091783 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96336495" }, "bbox": [ -0.6212343, 51.0967369, -0.6212343, 51.0967369 ], "geometry": { "type": "Point", "coordinates": [ -0.6212343, 51.0967369 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96344559" }, "bbox": [ -0.6238169, 51.1025348, -0.6238169, 51.1025348 ], "geometry": { "type": "Point", "coordinates": [ -0.6238169, 51.1025348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96344066" }, "bbox": [ -0.6245317, 51.1031268, -0.6245317, 51.1031268 ], "geometry": { "type": "Point", "coordinates": [ -0.6245317, 51.1031268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96348826" }, "bbox": [ -0.6177719, 51.0994713, -0.6177719, 51.0994713 ], "geometry": { "type": "Point", "coordinates": [ -0.6177719, 51.0994713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96342672" }, "bbox": [ -0.6263763, 51.1037144, -0.6263763, 51.1037144 ], "geometry": { "type": "Point", "coordinates": [ -0.6263763, 51.1037144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93357321" }, "bbox": [ -0.6624381, 51.108536, -0.6624381, 51.108536 ], "geometry": { "type": "Point", "coordinates": [ -0.6624381, 51.108536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93356782" }, "bbox": [ -0.6633932, 51.114248, -0.6633932, 51.114248 ], "geometry": { "type": "Point", "coordinates": [ -0.6633932, 51.114248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94341962" }, "bbox": [ -0.6561421, 51.1031119, -0.6561421, 51.1031119 ], "geometry": { "type": "Point", "coordinates": [ -0.6561421, 51.1031119 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25454219" }, "bbox": [ -0.2066335, 51.1921751, -0.2066335, 51.1921751 ], "geometry": { "type": "Point", "coordinates": [ -0.2066335, 51.1921751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24440673" }, "bbox": [ -0.2261535, 51.1883786, -0.2261535, 51.1883786 ], "geometry": { "type": "Point", "coordinates": [ -0.2261535, 51.1883786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24442273" }, "bbox": [ -0.2238005, 51.1883647, -0.2238005, 51.1883647 ], "geometry": { "type": "Point", "coordinates": [ -0.2238005, 51.1883647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16638952" }, "bbox": [ -0.3224796, 51.3590248, -0.3224796, 51.3590248 ], "geometry": { "type": "Point", "coordinates": [ -0.3224796, 51.3590248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458467" }, "bbox": [ -0.2714493, 51.1974406, -0.2714493, 51.1974406 ], "geometry": { "type": "Point", "coordinates": [ -0.2714493, 51.1974406 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458283" }, "bbox": [ -0.2723646, 51.1988561, -0.2723646, 51.1988561 ], "geometry": { "type": "Point", "coordinates": [ -0.2723646, 51.1988561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458582" }, "bbox": [ -0.2717523, 51.1987833, -0.2717523, 51.1987833 ], "geometry": { "type": "Point", "coordinates": [ -0.2717523, 51.1987833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20459966" }, "bbox": [ -0.2698415, 51.1971461, -0.2698415, 51.1971461 ], "geometry": { "type": "Point", "coordinates": [ -0.2698415, 51.1971461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458355" }, "bbox": [ -0.2720853, 51.1964436, -0.2720853, 51.1964436 ], "geometry": { "type": "Point", "coordinates": [ -0.2720853, 51.1964436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458066" }, "bbox": [ -0.2724474, 51.1973792, -0.2724474, 51.1973792 ], "geometry": { "type": "Point", "coordinates": [ -0.2724474, 51.1973792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458180" }, "bbox": [ -0.2722421, 51.1986781, -0.2722421, 51.1986781 ], "geometry": { "type": "Point", "coordinates": [ -0.2722421, 51.1986781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458960" }, "bbox": [ -0.2711929, 51.1968493, -0.2711929, 51.1968493 ], "geometry": { "type": "Point", "coordinates": [ -0.2711929, 51.1968493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20458374" }, "bbox": [ -0.2720185, 51.1981223, -0.2720185, 51.1981223 ], "geometry": { "type": "Point", "coordinates": [ -0.2720185, 51.1981223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20442680" }, "bbox": [ -0.2801272, 51.1898308, -0.2801272, 51.1898308 ], "geometry": { "type": "Point", "coordinates": [ -0.2801272, 51.1898308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20443487" }, "bbox": [ -0.2794117, 51.1904933, -0.2794117, 51.1904933 ], "geometry": { "type": "Point", "coordinates": [ -0.2794117, 51.1904933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20443078" }, "bbox": [ -0.2799893, 51.1896281, -0.2799893, 51.1896281 ], "geometry": { "type": "Point", "coordinates": [ -0.2799893, 51.1896281 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20444086" }, "bbox": [ -0.2780542, 51.190251, -0.2780542, 51.190251 ], "geometry": { "type": "Point", "coordinates": [ -0.2780542, 51.190251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20443657" }, "bbox": [ -0.2792641, 51.1876653, -0.2792641, 51.1876653 ], "geometry": { "type": "Point", "coordinates": [ -0.2792641, 51.1876653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20442975" }, "bbox": [ -0.2798878, 51.189416, -0.2798878, 51.189416 ], "geometry": { "type": "Point", "coordinates": [ -0.2798878, 51.189416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20444437" }, "bbox": [ -0.2780532, 51.1860012, -0.2780532, 51.1860012 ], "geometry": { "type": "Point", "coordinates": [ -0.2780532, 51.1860012 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20443377" }, "bbox": [ -0.279572, 51.189482, -0.279572, 51.189482 ], "geometry": { "type": "Point", "coordinates": [ -0.279572, 51.189482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20442973" }, "bbox": [ -0.2801496, 51.1891083, -0.2801496, 51.1891083 ], "geometry": { "type": "Point", "coordinates": [ -0.2801496, 51.1891083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20443875" }, "bbox": [ -0.2787958, 51.1893818, -0.2787958, 51.1893818 ], "geometry": { "type": "Point", "coordinates": [ -0.2787958, 51.1893818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20438285" }, "bbox": [ -0.2728617, 51.1812121, -0.2728617, 51.1812121 ], "geometry": { "type": "Point", "coordinates": [ -0.2728617, 51.1812121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20463578" }, "bbox": [ -0.2786053, 51.207519, -0.2786053, 51.207519 ], "geometry": { "type": "Point", "coordinates": [ -0.2786053, 51.207519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21452336" }, "bbox": [ -0.2663684, 51.1946592, -0.2663684, 51.1946592 ], "geometry": { "type": "Point", "coordinates": [ -0.2663684, 51.1946592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21451539" }, "bbox": [ -0.2675407, 51.1949502, -0.2675407, 51.1949502 ], "geometry": { "type": "Point", "coordinates": [ -0.2675407, 51.1949502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21450070" }, "bbox": [ -0.2696461, 51.1977027, -0.2696461, 51.1977027 ], "geometry": { "type": "Point", "coordinates": [ -0.2696461, 51.1977027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21450183" }, "bbox": [ -0.2691566, 51.1989192, -0.2691566, 51.1989192 ], "geometry": { "type": "Point", "coordinates": [ -0.2691566, 51.1989192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08501873" }, "bbox": [ -0.4510728, 51.2455636, -0.4510728, 51.2455636 ], "geometry": { "type": "Point", "coordinates": [ -0.4510728, 51.2455636 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08503183" }, "bbox": [ -0.4496959, 51.2464137, -0.4496959, 51.2464137 ], "geometry": { "type": "Point", "coordinates": [ -0.4496959, 51.2464137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08503775" }, "bbox": [ -0.4489775, 51.245633, -0.4489775, 51.245633 ], "geometry": { "type": "Point", "coordinates": [ -0.4489775, 51.245633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502071" }, "bbox": [ -0.4510765, 51.2453587, -0.4510765, 51.2453587 ], "geometry": { "type": "Point", "coordinates": [ -0.4510765, 51.2453587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502965" }, "bbox": [ -0.4498796, 51.2447585, -0.4498796, 51.2447585 ], "geometry": { "type": "Point", "coordinates": [ -0.4498796, 51.2447585 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502266" }, "bbox": [ -0.4508024, 51.2446918, -0.4508024, 51.2446918 ], "geometry": { "type": "Point", "coordinates": [ -0.4508024, 51.2446918 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502750" }, "bbox": [ -0.4502305, 51.2433648, -0.4502305, 51.2433648 ], "geometry": { "type": "Point", "coordinates": [ -0.4502305, 51.2433648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08502067" }, "bbox": [ -0.4510019, 51.2450791, -0.4510019, 51.2450791 ], "geometry": { "type": "Point", "coordinates": [ -0.4510019, 51.2450791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08504366" }, "bbox": [ -0.4479338, 51.2448912, -0.4479338, 51.2448912 ], "geometry": { "type": "Point", "coordinates": [ -0.4479338, 51.2448912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08503760" }, "bbox": [ -0.4489581, 51.2444467, -0.4489581, 51.2444467 ], "geometry": { "type": "Point", "coordinates": [ -0.4489581, 51.2444467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08510547" }, "bbox": [ -0.4531729, 51.2521759, -0.4531729, 51.2521759 ], "geometry": { "type": "Point", "coordinates": [ -0.4531729, 51.2521759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08511243" }, "bbox": [ -0.4521398, 51.251878, -0.4521398, 51.251878 ], "geometry": { "type": "Point", "coordinates": [ -0.4521398, 51.251878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26446137" }, "bbox": [ -0.1895794, 51.184445, -0.1895794, 51.184445 ], "geometry": { "type": "Point", "coordinates": [ -0.1895794, 51.184445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26447006" }, "bbox": [ -0.18858, 51.1818074, -0.18858, 51.1818074 ], "geometry": { "type": "Point", "coordinates": [ -0.18858, 51.1818074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26447570" }, "bbox": [ -0.1876519, 51.1876006, -0.1876519, 51.1876006 ], "geometry": { "type": "Point", "coordinates": [ -0.1876519, 51.1876006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25458823" }, "bbox": [ -0.2002234, 51.1926025, -0.2002234, 51.1926025 ], "geometry": { "type": "Point", "coordinates": [ -0.2002234, 51.1926025 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26448700" }, "bbox": [ -0.1861934, 51.1811327, -0.1861934, 51.1811327 ], "geometry": { "type": "Point", "coordinates": [ -0.1861934, 51.1811327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26442188" }, "bbox": [ -0.1919732, 51.1890779, -0.1919732, 51.1890779 ], "geometry": { "type": "Point", "coordinates": [ -0.1919732, 51.1890779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27441258" }, "bbox": [ -0.1823424, 51.1863371, -0.1823424, 51.1863371 ], "geometry": { "type": "Point", "coordinates": [ -0.1823424, 51.1863371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27440843" }, "bbox": [ -0.1830622, 51.184969, -0.1830622, 51.184969 ], "geometry": { "type": "Point", "coordinates": [ -0.1830622, 51.184969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27441539" }, "bbox": [ -0.1819516, 51.1848144, -0.1819516, 51.1848144 ], "geometry": { "type": "Point", "coordinates": [ -0.1819516, 51.1848144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27440646" }, "bbox": [ -0.183445, 51.1852439, -0.183445, 51.1852439 ], "geometry": { "type": "Point", "coordinates": [ -0.183445, 51.1852439 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27441045" }, "bbox": [ -0.1828298, 51.1850884, -0.1828298, 51.1850884 ], "geometry": { "type": "Point", "coordinates": [ -0.1828298, 51.1850884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27441042" }, "bbox": [ -0.1827004, 51.1849742, -0.1827004, 51.1849742 ], "geometry": { "type": "Point", "coordinates": [ -0.1827004, 51.1849742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27441097" }, "bbox": [ -0.1826281, 51.1894946, -0.1826281, 51.1894946 ], "geometry": { "type": "Point", "coordinates": [ -0.1826281, 51.1894946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27441696" }, "bbox": [ -0.1825794, 51.1903081, -0.1825794, 51.1903081 ], "geometry": { "type": "Point", "coordinates": [ -0.1825794, 51.1903081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26463501" }, "bbox": [ -0.1928802, 51.1993798, -0.1928802, 51.1993798 ], "geometry": { "type": "Point", "coordinates": [ -0.1928802, 51.1993798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27451600" }, "bbox": [ -0.1817922, 51.190064, -0.1817922, 51.190064 ], "geometry": { "type": "Point", "coordinates": [ -0.1817922, 51.190064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27451201" }, "bbox": [ -0.1822515, 51.1901754, -0.1822515, 51.1901754 ], "geometry": { "type": "Point", "coordinates": [ -0.1822515, 51.1901754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27450902" }, "bbox": [ -0.1828074, 51.1902714, -0.1828074, 51.1902714 ], "geometry": { "type": "Point", "coordinates": [ -0.1828074, 51.1902714 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27451401" }, "bbox": [ -0.1821998, 51.190273, -0.1821998, 51.190273 ], "geometry": { "type": "Point", "coordinates": [ -0.1821998, 51.190273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27451306" }, "bbox": [ -0.1822225, 51.1906659, -0.1822225, 51.1906659 ], "geometry": { "type": "Point", "coordinates": [ -0.1822225, 51.1906659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02387645" }, "bbox": [ -0.5325695, 51.1361623, -0.5325695, 51.1361623 ], "geometry": { "type": "Point", "coordinates": [ -0.5325695, 51.1361623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02387752" }, "bbox": [ -0.5320915, 51.1371239, -0.5320915, 51.1371239 ], "geometry": { "type": "Point", "coordinates": [ -0.5320915, 51.1371239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03399402" }, "bbox": [ -0.5156986, 51.1409705, -0.5156986, 51.1409705 ], "geometry": { "type": "Point", "coordinates": [ -0.5156986, 51.1409705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04381972" }, "bbox": [ -0.5119335, 51.1382546, -0.5119335, 51.1382546 ], "geometry": { "type": "Point", "coordinates": [ -0.5119335, 51.1382546 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04380587" }, "bbox": [ -0.5143667, 51.139774, -0.5143667, 51.139774 ], "geometry": { "type": "Point", "coordinates": [ -0.5143667, 51.139774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03399603" }, "bbox": [ -0.5153, 51.1410819, -0.5153, 51.1410819 ], "geometry": { "type": "Point", "coordinates": [ -0.5153, 51.1410819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03399404" }, "bbox": [ -0.5156159, 51.1411634, -0.5156159, 51.1411634 ], "geometry": { "type": "Point", "coordinates": [ -0.5156159, 51.1411634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03394523" }, "bbox": [ -0.5225267, 51.1430916, -0.5225267, 51.1430916 ], "geometry": { "type": "Point", "coordinates": [ -0.5225267, 51.1430916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02398503" }, "bbox": [ -0.5310688, 51.1414024, -0.5310688, 51.1414024 ], "geometry": { "type": "Point", "coordinates": [ -0.5310688, 51.1414024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03389884" }, "bbox": [ -0.5152332, 51.1395032, -0.5152332, 51.1395032 ], "geometry": { "type": "Point", "coordinates": [ -0.5152332, 51.1395032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03389995" }, "bbox": [ -0.5147197, 51.1401972, -0.5147197, 51.1401972 ], "geometry": { "type": "Point", "coordinates": [ -0.5147197, 51.1401972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373216" }, "bbox": [ -0.5536282, 51.1248673, -0.5536282, 51.1248673 ], "geometry": { "type": "Point", "coordinates": [ -0.5536282, 51.1248673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373901" }, "bbox": [ -0.5525036, 51.1232821, -0.5525036, 51.1232821 ], "geometry": { "type": "Point", "coordinates": [ -0.5525036, 51.1232821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01373909" }, "bbox": [ -0.5526999, 51.1240851, -0.5526999, 51.1240851 ], "geometry": { "type": "Point", "coordinates": [ -0.5526999, 51.1240851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01370702" }, "bbox": [ -0.5559993, 51.123618, -0.5559993, 51.123618 ], "geometry": { "type": "Point", "coordinates": [ -0.5559993, 51.123618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01372640" }, "bbox": [ -0.5544538, 51.1268884, -0.5544538, 51.1268884 ], "geometry": { "type": "Point", "coordinates": [ -0.5544538, 51.1268884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01371420" }, "bbox": [ -0.5563254, 51.1250643, -0.5563254, 51.1250643 ], "geometry": { "type": "Point", "coordinates": [ -0.5563254, 51.1250643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93465616" }, "bbox": [ -0.6622478, 51.2069954, -0.6622478, 51.2069954 ], "geometry": { "type": "Point", "coordinates": [ -0.6622478, 51.2069954 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451791" }, "bbox": [ -0.1527533, 51.198053, -0.1527533, 51.198053 ], "geometry": { "type": "Point", "coordinates": [ -0.1527533, 51.198053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451393" }, "bbox": [ -0.1534104, 51.1981898, -0.1534104, 51.1981898 ], "geometry": { "type": "Point", "coordinates": [ -0.1534104, 51.1981898 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451594" }, "bbox": [ -0.1529022, 51.1980704, -0.1529022, 51.1980704 ], "geometry": { "type": "Point", "coordinates": [ -0.1529022, 51.1980704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451698" }, "bbox": [ -0.1528619, 51.1984897, -0.1528619, 51.1984897 ], "geometry": { "type": "Point", "coordinates": [ -0.1528619, 51.1984897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451499" }, "bbox": [ -0.1530075, 51.1985357, -0.1530075, 51.1985357 ], "geometry": { "type": "Point", "coordinates": [ -0.1530075, 51.1985357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29451298" }, "bbox": [ -0.1534142, 51.1984354, -0.1534142, 51.1984354 ], "geometry": { "type": "Point", "coordinates": [ -0.1534142, 51.1984354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29466942" }, "bbox": [ -0.1449864, 51.2022584, -0.1449864, 51.2022584 ], "geometry": { "type": "Point", "coordinates": [ -0.1449864, 51.2022584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29462610" }, "bbox": [ -0.1512763, 51.1995306, -0.1512763, 51.1995306 ], "geometry": { "type": "Point", "coordinates": [ -0.1512763, 51.1995306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29461106" }, "bbox": [ -0.1534308, 51.1991331, -0.1534308, 51.1991331 ], "geometry": { "type": "Point", "coordinates": [ -0.1534308, 51.1991331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29461506" }, "bbox": [ -0.1524141, 51.1992402, -0.1524141, 51.1992402 ], "geometry": { "type": "Point", "coordinates": [ -0.1524141, 51.1992402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28448974" }, "bbox": [ -0.1572188, 51.1878028, -0.1572188, 51.1878028 ], "geometry": { "type": "Point", "coordinates": [ -0.1572188, 51.1878028 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37518815" }, "bbox": [ -0.0259044, 51.2428124, -0.0259044, 51.2428124 ], "geometry": { "type": "Point", "coordinates": [ -0.0259044, 51.2428124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37509090" }, "bbox": [ -0.0258158, 51.2407254, -0.0258158, 51.2407254 ], "geometry": { "type": "Point", "coordinates": [ -0.0258158, 51.2407254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37505214" }, "bbox": [ -0.0315811, 51.2339048, -0.0315811, 51.2339048 ], "geometry": { "type": "Point", "coordinates": [ -0.0315811, 51.2339048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37503161" }, "bbox": [ -0.0343254, 51.238185, -0.0343254, 51.238185 ], "geometry": { "type": "Point", "coordinates": [ -0.0343254, 51.238185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37504760" }, "bbox": [ -0.0331375, 51.2381678, -0.0331375, 51.2381678 ], "geometry": { "type": "Point", "coordinates": [ -0.0331375, 51.2381678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37505486" }, "bbox": [ -0.0309866, 51.2404758, -0.0309866, 51.2404758 ], "geometry": { "type": "Point", "coordinates": [ -0.0309866, 51.2404758 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37506592" }, "bbox": [ -0.0292817, 51.2411785, -0.0292817, 51.2411785 ], "geometry": { "type": "Point", "coordinates": [ -0.0292817, 51.2411785 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37504074" }, "bbox": [ -0.0329929, 51.2392756, -0.0329929, 51.2392756 ], "geometry": { "type": "Point", "coordinates": [ -0.0329929, 51.2392756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37504983" }, "bbox": [ -0.0317637, 51.240122, -0.0317637, 51.240122 ], "geometry": { "type": "Point", "coordinates": [ -0.0317637, 51.240122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37507881" }, "bbox": [ -0.0275623, 51.2397759, -0.0275623, 51.2397759 ], "geometry": { "type": "Point", "coordinates": [ -0.0275623, 51.2397759 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37507770" }, "bbox": [ -0.0276839, 51.2389143, -0.0276839, 51.2389143 ], "geometry": { "type": "Point", "coordinates": [ -0.0276839, 51.2389143 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37509218" }, "bbox": [ -0.0258078, 51.2341777, -0.0258078, 51.2341777 ], "geometry": { "type": "Point", "coordinates": [ -0.0258078, 51.2341777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37505517" }, "bbox": [ -0.0311106, 51.23418, -0.0311106, 51.23418 ], "geometry": { "type": "Point", "coordinates": [ -0.0311106, 51.23418 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37504723" }, "bbox": [ -0.0322043, 51.234739, -0.0322043, 51.234739 ], "geometry": { "type": "Point", "coordinates": [ -0.0322043, 51.234739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32515470" }, "bbox": [ -0.1016674, 51.2489208, -0.1016674, 51.2489208 ], "geometry": { "type": "Point", "coordinates": [ -0.1016674, 51.2489208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32527412" }, "bbox": [ -0.0992274, 51.2527845, -0.0992274, 51.2527845 ], "geometry": { "type": "Point", "coordinates": [ -0.0992274, 51.2527845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32525121" }, "bbox": [ -0.102552, 51.2537371, -0.102552, 51.2537371 ], "geometry": { "type": "Point", "coordinates": [ -0.102552, 51.2537371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32524750" }, "bbox": [ -0.1030144, 51.256169, -0.1030144, 51.256169 ], "geometry": { "type": "Point", "coordinates": [ -0.1030144, 51.256169 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32526636" }, "bbox": [ -0.1006876, 51.2545772, -0.1006876, 51.2545772 ], "geometry": { "type": "Point", "coordinates": [ -0.1006876, 51.2545772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32527133" }, "bbox": [ -0.0996809, 51.2546484, -0.0996809, 51.2546484 ], "geometry": { "type": "Point", "coordinates": [ -0.0996809, 51.2546484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32527141" }, "bbox": [ -0.0997308, 51.2556742, -0.0997308, 51.2556742 ], "geometry": { "type": "Point", "coordinates": [ -0.0997308, 51.2556742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32525469" }, "bbox": [ -0.1019431, 51.2579695, -0.1019431, 51.2579695 ], "geometry": { "type": "Point", "coordinates": [ -0.1019431, 51.2579695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32525229" }, "bbox": [ -0.1024751, 51.2545635, -0.1024751, 51.2545635 ], "geometry": { "type": "Point", "coordinates": [ -0.1024751, 51.2545635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32524320" }, "bbox": [ -0.1037077, 51.2535862, -0.1037077, 51.2535862 ], "geometry": { "type": "Point", "coordinates": [ -0.1037077, 51.2535862 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33528491" }, "bbox": [ -0.0832113, 51.2596117, -0.0832113, 51.2596117 ], "geometry": { "type": "Point", "coordinates": [ -0.0832113, 51.2596117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34514298" }, "bbox": [ -0.075031, 51.2513014, -0.075031, 51.2513014 ], "geometry": { "type": "Point", "coordinates": [ -0.075031, 51.2513014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34512895" }, "bbox": [ -0.0774296, 51.2509621, -0.0774296, 51.2509621 ], "geometry": { "type": "Point", "coordinates": [ -0.0774296, 51.2509621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34521883" }, "bbox": [ -0.0780599, 51.2587947, -0.0780599, 51.2587947 ], "geometry": { "type": "Point", "coordinates": [ -0.0780599, 51.2587947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34521286" }, "bbox": [ -0.0794455, 51.2590654, -0.0794455, 51.2590654 ], "geometry": { "type": "Point", "coordinates": [ -0.0794455, 51.2590654 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04580149" }, "bbox": [ -0.5091777, 51.3161107, -0.5091777, 51.3161107 ], "geometry": { "type": "Point", "coordinates": [ -0.5091777, 51.3161107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587344" }, "bbox": [ -0.5130239, 51.3156427, -0.5130239, 51.3156427 ], "geometry": { "type": "Point", "coordinates": [ -0.5130239, 51.3156427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588862" }, "bbox": [ -0.5121492, 51.3169574, -0.5121492, 51.3169574 ], "geometry": { "type": "Point", "coordinates": [ -0.5121492, 51.3169574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03585233" }, "bbox": [ -0.5163799, 51.314577, -0.5163799, 51.314577 ], "geometry": { "type": "Point", "coordinates": [ -0.5163799, 51.314577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588765" }, "bbox": [ -0.5109198, 51.3174646, -0.5109198, 51.3174646 ], "geometry": { "type": "Point", "coordinates": [ -0.5109198, 51.3174646 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587559" }, "bbox": [ -0.5126377, 51.3168932, -0.5126377, 51.3168932 ], "geometry": { "type": "Point", "coordinates": [ -0.5126377, 51.3168932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588466" }, "bbox": [ -0.5113532, 51.3175749, -0.5113532, 51.3175749 ], "geometry": { "type": "Point", "coordinates": [ -0.5113532, 51.3175749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587652" }, "bbox": [ -0.5127266, 51.3163205, -0.5127266, 51.3163205 ], "geometry": { "type": "Point", "coordinates": [ -0.5127266, 51.3163205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588068" }, "bbox": [ -0.5118904, 51.3177378, -0.5118904, 51.3177378 ], "geometry": { "type": "Point", "coordinates": [ -0.5118904, 51.3177378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587864" }, "bbox": [ -0.5122332, 51.3174144, -0.5122332, 51.3174144 ], "geometry": { "type": "Point", "coordinates": [ -0.5122332, 51.3174144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03589343" }, "bbox": [ -0.5105097, 51.3157901, -0.5105097, 51.3157901 ], "geometry": { "type": "Point", "coordinates": [ -0.5105097, 51.3157901 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588040" }, "bbox": [ -0.5118467, 51.3150754, -0.5118467, 51.3150754 ], "geometry": { "type": "Point", "coordinates": [ -0.5118467, 51.3150754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588271" }, "bbox": [ -0.5115895, 51.3180083, -0.5115895, 51.3180083 ], "geometry": { "type": "Point", "coordinates": [ -0.5115895, 51.3180083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588257" }, "bbox": [ -0.5116987, 51.3167358, -0.5116987, 51.3167358 ], "geometry": { "type": "Point", "coordinates": [ -0.5116987, 51.3167358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03588162" }, "bbox": [ -0.5114401, 51.317149, -0.5114401, 51.317149 ], "geometry": { "type": "Point", "coordinates": [ -0.5114401, 51.317149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587958" }, "bbox": [ -0.5121188, 51.3168232, -0.5121188, 51.3168232 ], "geometry": { "type": "Point", "coordinates": [ -0.5121188, 51.3168232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03586536" }, "bbox": [ -0.514105, 51.3149988, -0.514105, 51.3149988 ], "geometry": { "type": "Point", "coordinates": [ -0.514105, 51.3149988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587537" }, "bbox": [ -0.51267, 51.3149506, -0.51267, 51.3149506 ], "geometry": { "type": "Point", "coordinates": [ -0.51267, 51.3149506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03587036" }, "bbox": [ -0.5133869, 51.3149282, -0.5133869, 51.3149282 ], "geometry": { "type": "Point", "coordinates": [ -0.5133869, 51.3149282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03572869" }, "bbox": [ -0.5192381, 51.3090267, -0.5192381, 51.3090267 ], "geometry": { "type": "Point", "coordinates": [ -0.5192381, 51.3090267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03568051" }, "bbox": [ -0.5125247, 51.2982329, -0.5125247, 51.2982329 ], "geometry": { "type": "Point", "coordinates": [ -0.5125247, 51.2982329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567652" }, "bbox": [ -0.5131751, 51.298408, -0.5131751, 51.298408 ], "geometry": { "type": "Point", "coordinates": [ -0.5131751, 51.298408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567752" }, "bbox": [ -0.5127525, 51.2983564, -0.5127525, 51.2983564 ], "geometry": { "type": "Point", "coordinates": [ -0.5127525, 51.2983564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567149" }, "bbox": [ -0.5137922, 51.2980959, -0.5137922, 51.2980959 ], "geometry": { "type": "Point", "coordinates": [ -0.5137922, 51.2980959 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567351" }, "bbox": [ -0.513472, 51.2983117, -0.513472, 51.2983117 ], "geometry": { "type": "Point", "coordinates": [ -0.513472, 51.2983117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567346" }, "bbox": [ -0.5130101, 51.2978198, -0.5130101, 51.2978198 ], "geometry": { "type": "Point", "coordinates": [ -0.5130101, 51.2978198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03568662" }, "bbox": [ -0.5115558, 51.29924, -0.5115558, 51.29924 ], "geometry": { "type": "Point", "coordinates": [ -0.5115558, 51.29924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567863" }, "bbox": [ -0.5117133, 51.2994722, -0.5117133, 51.2994722 ], "geometry": { "type": "Point", "coordinates": [ -0.5117133, 51.2994722 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03567649" }, "bbox": [ -0.5131768, 51.298095, -0.5131768, 51.298095 ], "geometry": { "type": "Point", "coordinates": [ -0.5131768, 51.298095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03568055" }, "bbox": [ -0.5127073, 51.2984989, -0.5127073, 51.2984989 ], "geometry": { "type": "Point", "coordinates": [ -0.5127073, 51.2984989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36520402" }, "bbox": [ -0.0516136, 51.2511203, -0.0516136, 51.2511203 ], "geometry": { "type": "Point", "coordinates": [ -0.0516136, 51.2511203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36520670" }, "bbox": [ -0.0514905, 51.2573427, -0.0514905, 51.2573427 ], "geometry": { "type": "Point", "coordinates": [ -0.0514905, 51.2573427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525434" }, "bbox": [ -0.0734573, 51.2544394, -0.0734573, 51.2544394 ], "geometry": { "type": "Point", "coordinates": [ -0.0734573, 51.2544394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525084" }, "bbox": [ -0.0737936, 51.2588782, -0.0737936, 51.2588782 ], "geometry": { "type": "Point", "coordinates": [ -0.0737936, 51.2588782 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34526151" }, "bbox": [ -0.0715335, 51.2555186, -0.0715335, 51.2555186 ], "geometry": { "type": "Point", "coordinates": [ -0.0715335, 51.2555186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34526991" }, "bbox": [ -0.0710486, 51.2595071, -0.0710486, 51.2595071 ], "geometry": { "type": "Point", "coordinates": [ -0.0710486, 51.2595071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525010" }, "bbox": [ -0.0740703, 51.2522276, -0.0740703, 51.2522276 ], "geometry": { "type": "Point", "coordinates": [ -0.0740703, 51.2522276 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525988" }, "bbox": [ -0.0725068, 51.2592184, -0.0725068, 51.2592184 ], "geometry": { "type": "Point", "coordinates": [ -0.0725068, 51.2592184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34526786" }, "bbox": [ -0.0716198, 51.2588648, -0.0716198, 51.2588648 ], "geometry": { "type": "Point", "coordinates": [ -0.0716198, 51.2588648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525482" }, "bbox": [ -0.0732424, 51.2586692, -0.0732424, 51.2586692 ], "geometry": { "type": "Point", "coordinates": [ -0.0732424, 51.2586692 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525687" }, "bbox": [ -0.0729365, 51.2591157, -0.0729365, 51.2591157 ], "geometry": { "type": "Point", "coordinates": [ -0.0729365, 51.2591157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525286" }, "bbox": [ -0.0734764, 51.2590298, -0.0734764, 51.2590298 ], "geometry": { "type": "Point", "coordinates": [ -0.0734764, 51.2590298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525883" }, "bbox": [ -0.0727287, 51.2587308, -0.0727287, 51.2587308 ], "geometry": { "type": "Point", "coordinates": [ -0.0727287, 51.2587308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525081" }, "bbox": [ -0.0738254, 51.258592, -0.0738254, 51.258592 ], "geometry": { "type": "Point", "coordinates": [ -0.0738254, 51.258592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34526389" }, "bbox": [ -0.0718738, 51.259312, -0.0718738, 51.259312 ], "geometry": { "type": "Point", "coordinates": [ -0.0718738, 51.259312 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34527287" }, "bbox": [ -0.070646, 51.259049, -0.070646, 51.259049 ], "geometry": { "type": "Point", "coordinates": [ -0.070646, 51.259049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34524884" }, "bbox": [ -0.0740558, 51.2588611, -0.0740558, 51.2588611 ], "geometry": { "type": "Point", "coordinates": [ -0.0740558, 51.2588611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34528389" }, "bbox": [ -0.0689817, 51.2593314, -0.0689817, 51.2593314 ], "geometry": { "type": "Point", "coordinates": [ -0.0689817, 51.2593314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34525991" }, "bbox": [ -0.0717076, 51.2595614, -0.0717076, 51.2595614 ], "geometry": { "type": "Point", "coordinates": [ -0.0717076, 51.2595614 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34526184" }, "bbox": [ -0.0722749, 51.2587995, -0.0722749, 51.2587995 ], "geometry": { "type": "Point", "coordinates": [ -0.0722749, 51.2587995 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34529776" }, "bbox": [ -0.0673876, 51.2580425, -0.0673876, 51.2580425 ], "geometry": { "type": "Point", "coordinates": [ -0.0673876, 51.2580425 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34526764" }, "bbox": [ -0.0714197, 51.2570935, -0.0714197, 51.2570935 ], "geometry": { "type": "Point", "coordinates": [ -0.0714197, 51.2570935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35529483" }, "bbox": [ -0.0531601, 51.2584874, -0.0531601, 51.2584874 ], "geometry": { "type": "Point", "coordinates": [ -0.0531601, 51.2584874 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35529965" }, "bbox": [ -0.0523274, 51.2569265, -0.0523274, 51.2569265 ], "geometry": { "type": "Point", "coordinates": [ -0.0523274, 51.2569265 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35528044" }, "bbox": [ -0.0552479, 51.2551158, -0.0552479, 51.2551158 ], "geometry": { "type": "Point", "coordinates": [ -0.0552479, 51.2551158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34539204" }, "bbox": [ -0.0672287, 51.2609588, -0.0672287, 51.2609588 ], "geometry": { "type": "Point", "coordinates": [ -0.0672287, 51.2609588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35529866" }, "bbox": [ -0.0521655, 51.2572168, -0.0521655, 51.2572168 ], "geometry": { "type": "Point", "coordinates": [ -0.0521655, 51.2572168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35525669" }, "bbox": [ -0.0580737, 51.2572193, -0.0580737, 51.2572193 ], "geometry": { "type": "Point", "coordinates": [ -0.0580737, 51.2572193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35529665" }, "bbox": [ -0.0530917, 51.2568422, -0.0530917, 51.2568422 ], "geometry": { "type": "Point", "coordinates": [ -0.0530917, 51.2568422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35528528" }, "bbox": [ -0.0547099, 51.2536457, -0.0547099, 51.2536457 ], "geometry": { "type": "Point", "coordinates": [ -0.0547099, 51.2536457 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35525825" }, "bbox": [ -0.0586029, 51.253324, -0.0586029, 51.253324 ], "geometry": { "type": "Point", "coordinates": [ -0.0586029, 51.253324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03487738" }, "bbox": [ -0.515793, 51.2252454, -0.515793, 51.2252454 ], "geometry": { "type": "Point", "coordinates": [ -0.515793, 51.2252454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04440324" }, "bbox": [ -0.512654, 51.1882635, -0.512654, 51.1882635 ], "geometry": { "type": "Point", "coordinates": [ -0.512654, 51.1882635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04440539" }, "bbox": [ -0.5122134, 51.1893024, -0.5122134, 51.1893024 ], "geometry": { "type": "Point", "coordinates": [ -0.5122134, 51.1893024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04441419" }, "bbox": [ -0.5112374, 51.1875895, -0.5112374, 51.1875895 ], "geometry": { "type": "Point", "coordinates": [ -0.5112374, 51.1875895 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04441743" }, "bbox": [ -0.5106442, 51.1896027, -0.5106442, 51.1896027 ], "geometry": { "type": "Point", "coordinates": [ -0.5106442, 51.1896027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04440705" }, "bbox": [ -0.5122669, 51.1862932, -0.5122669, 51.1862932 ], "geometry": { "type": "Point", "coordinates": [ -0.5122669, 51.1862932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04441711" }, "bbox": [ -0.511003, 51.1866822, -0.511003, 51.1866822 ], "geometry": { "type": "Point", "coordinates": [ -0.511003, 51.1866822 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04441610" }, "bbox": [ -0.5109628, 51.1866117, -0.5109628, 51.1866117 ], "geometry": { "type": "Point", "coordinates": [ -0.5109628, 51.1866117 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04441003" }, "bbox": [ -0.5114575, 51.1861775, -0.5114575, 51.1861775 ], "geometry": { "type": "Point", "coordinates": [ -0.5114575, 51.1861775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04441901" }, "bbox": [ -0.5103604, 51.1859968, -0.5103604, 51.1859968 ], "geometry": { "type": "Point", "coordinates": [ -0.5103604, 51.1859968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04440823" }, "bbox": [ -0.5122292, 51.1877923, -0.5122292, 51.1877923 ], "geometry": { "type": "Point", "coordinates": [ -0.5122292, 51.1877923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04440321" }, "bbox": [ -0.5128121, 51.1876487, -0.5128121, 51.1876487 ], "geometry": { "type": "Point", "coordinates": [ -0.5128121, 51.1876487 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448324" }, "bbox": [ -0.5156523, 51.1880413, -0.5156523, 51.1880413 ], "geometry": { "type": "Point", "coordinates": [ -0.5156523, 51.1880413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448610" }, "bbox": [ -0.5149421, 51.1867362, -0.5149421, 51.1867362 ], "geometry": { "type": "Point", "coordinates": [ -0.5149421, 51.1867362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03449608" }, "bbox": [ -0.5131864, 51.1866208, -0.5131864, 51.1866208 ], "geometry": { "type": "Point", "coordinates": [ -0.5131864, 51.1866208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03449429" }, "bbox": [ -0.5139641, 51.1883557, -0.5139641, 51.1883557 ], "geometry": { "type": "Point", "coordinates": [ -0.5139641, 51.1883557 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04431197" }, "bbox": [ -0.5117231, 51.1855606, -0.5117231, 51.1855606 ], "geometry": { "type": "Point", "coordinates": [ -0.5117231, 51.1855606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04432296" }, "bbox": [ -0.5104259, 51.1853682, -0.5104259, 51.1853682 ], "geometry": { "type": "Point", "coordinates": [ -0.5104259, 51.1853682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03449513" }, "bbox": [ -0.5140058, 51.1870189, -0.5140058, 51.1870189 ], "geometry": { "type": "Point", "coordinates": [ -0.5140058, 51.1870189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03449922" }, "bbox": [ -0.5133905, 51.1877916, -0.5133905, 51.1877916 ], "geometry": { "type": "Point", "coordinates": [ -0.5133905, 51.1877916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427011" }, "bbox": [ -0.0893683, 51.1626006, -0.0893683, 51.1626006 ], "geometry": { "type": "Point", "coordinates": [ -0.0893683, 51.1626006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33424208" }, "bbox": [ -0.0934247, 51.1625182, -0.0934247, 51.1625182 ], "geometry": { "type": "Point", "coordinates": [ -0.0934247, 51.1625182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34414006" }, "bbox": [ -0.0798911, 51.1528097, -0.0798911, 51.1528097 ], "geometry": { "type": "Point", "coordinates": [ -0.0798911, 51.1528097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34412218" }, "bbox": [ -0.0815596, 51.1540318, -0.0815596, 51.1540318 ], "geometry": { "type": "Point", "coordinates": [ -0.0815596, 51.1540318 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34413006" }, "bbox": [ -0.0810691, 51.1530237, -0.0810691, 51.1530237 ], "geometry": { "type": "Point", "coordinates": [ -0.0810691, 51.1530237 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34413421" }, "bbox": [ -0.0805148, 51.1543421, -0.0805148, 51.1543421 ], "geometry": { "type": "Point", "coordinates": [ -0.0805148, 51.1543421 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34413603" }, "bbox": [ -0.0803213, 51.1527297, -0.0803213, 51.1527297 ], "geometry": { "type": "Point", "coordinates": [ -0.0803213, 51.1527297 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34413002" }, "bbox": [ -0.0811142, 51.1526897, -0.0811142, 51.1526897 ], "geometry": { "type": "Point", "coordinates": [ -0.0811142, 51.1526897 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34410816" }, "bbox": [ -0.0842667, 51.1540193, -0.0842667, 51.1540193 ], "geometry": { "type": "Point", "coordinates": [ -0.0842667, 51.1540193 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34411515" }, "bbox": [ -0.0831414, 51.1538552, -0.0831414, 51.1538552 ], "geometry": { "type": "Point", "coordinates": [ -0.0831414, 51.1538552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428109" }, "bbox": [ -0.0876553, 51.1624882, -0.0876553, 51.1624882 ], "geometry": { "type": "Point", "coordinates": [ -0.0876553, 51.1624882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33426015" }, "bbox": [ -0.0910061, 51.1630593, -0.0910061, 51.1630593 ], "geometry": { "type": "Point", "coordinates": [ -0.0910061, 51.1630593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427014" }, "bbox": [ -0.0893444, 51.1628448, -0.0893444, 51.1628448 ], "geometry": { "type": "Point", "coordinates": [ -0.0893444, 51.1628448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428715" }, "bbox": [ -0.0869184, 51.1629519, -0.0869184, 51.1629519 ], "geometry": { "type": "Point", "coordinates": [ -0.0869184, 51.1629519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427905" }, "bbox": [ -0.0880509, 51.1620639, -0.0880509, 51.1620639 ], "geometry": { "type": "Point", "coordinates": [ -0.0880509, 51.1620639 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428016" }, "bbox": [ -0.0878207, 51.163014, -0.0878207, 51.163014 ], "geometry": { "type": "Point", "coordinates": [ -0.0878207, 51.163014 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427008" }, "bbox": [ -0.0892656, 51.1623661, -0.0892656, 51.1623661 ], "geometry": { "type": "Point", "coordinates": [ -0.0892656, 51.1623661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428419" }, "bbox": [ -0.0872499, 51.163181, -0.0872499, 51.163181 ], "geometry": { "type": "Point", "coordinates": [ -0.0872499, 51.163181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427901" }, "bbox": [ -0.0881398, 51.1616661, -0.0881398, 51.1616661 ], "geometry": { "type": "Point", "coordinates": [ -0.0881398, 51.1616661 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427311" }, "bbox": [ -0.0887654, 51.1625701, -0.0887654, 51.1625701 ], "geometry": { "type": "Point", "coordinates": [ -0.0887654, 51.1625701 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427604" }, "bbox": [ -0.0885096, 51.161939, -0.0885096, 51.161939 ], "geometry": { "type": "Point", "coordinates": [ -0.0885096, 51.161939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427206" }, "bbox": [ -0.0892363, 51.1619053, -0.0892363, 51.1619053 ], "geometry": { "type": "Point", "coordinates": [ -0.0892363, 51.1619053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33428322" }, "bbox": [ -0.0871307, 51.1635835, -0.0871307, 51.1635835 ], "geometry": { "type": "Point", "coordinates": [ -0.0871307, 51.1635835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33426815" }, "bbox": [ -0.0895305, 51.1630611, -0.0895305, 51.1630611 ], "geometry": { "type": "Point", "coordinates": [ -0.0895305, 51.1630611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33426922" }, "bbox": [ -0.0893273, 51.1636042, -0.0893273, 51.1636042 ], "geometry": { "type": "Point", "coordinates": [ -0.0893273, 51.1636042 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33427822" }, "bbox": [ -0.0881373, 51.1635537, -0.0881373, 51.1635537 ], "geometry": { "type": "Point", "coordinates": [ -0.0881373, 51.1635537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08540116" }, "bbox": [ -0.45266, 51.2763239, -0.45266, 51.2763239 ], "geometry": { "type": "Point", "coordinates": [ -0.45266, 51.2763239 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07544991" }, "bbox": [ -0.4599163, 51.2830397, -0.4599163, 51.2830397 ], "geometry": { "type": "Point", "coordinates": [ -0.4599163, 51.2830397 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07542857" }, "bbox": [ -0.4631439, 51.2803415, -0.4631439, 51.2803415 ], "geometry": { "type": "Point", "coordinates": [ -0.4631439, 51.2803415 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07547668" }, "bbox": [ -0.4562031, 51.2811645, -0.4562031, 51.2811645 ], "geometry": { "type": "Point", "coordinates": [ -0.4562031, 51.2811645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07546952" }, "bbox": [ -0.4574374, 51.2792245, -0.4574374, 51.2792245 ], "geometry": { "type": "Point", "coordinates": [ -0.4574374, 51.2792245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08564107" }, "bbox": [ -0.4465349, 51.2933552, -0.4465349, 51.2933552 ], "geometry": { "type": "Point", "coordinates": [ -0.4465349, 51.2933552 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08562503" }, "bbox": [ -0.4489747, 51.2931045, -0.4489747, 51.2931045 ], "geometry": { "type": "Point", "coordinates": [ -0.4489747, 51.2931045 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08562003" }, "bbox": [ -0.4500957, 51.2931845, -0.4500957, 51.2931845 ], "geometry": { "type": "Point", "coordinates": [ -0.4500957, 51.2931845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08552496" }, "bbox": [ -0.4489928, 51.2925414, -0.4489928, 51.2925414 ], "geometry": { "type": "Point", "coordinates": [ -0.4489928, 51.2925414 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08552599" }, "bbox": [ -0.4489268, 51.2927359, -0.4489268, 51.2927359 ], "geometry": { "type": "Point", "coordinates": [ -0.4489268, 51.2927359 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08552196" }, "bbox": [ -0.4496302, 51.292549, -0.4496302, 51.292549 ], "geometry": { "type": "Point", "coordinates": [ -0.4496302, 51.292549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08553196" }, "bbox": [ -0.4480312, 51.2924747, -0.4480312, 51.2924747 ], "geometry": { "type": "Point", "coordinates": [ -0.4480312, 51.2924747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08553689" }, "bbox": [ -0.4468236, 51.2918491, -0.4468236, 51.2918491 ], "geometry": { "type": "Point", "coordinates": [ -0.4468236, 51.2918491 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84412294" }, "bbox": [ -0.7968195, 51.1707989, -0.7968195, 51.1707989 ], "geometry": { "type": "Point", "coordinates": [ -0.7968195, 51.1707989 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83417382" }, "bbox": [ -0.8037992, 51.1695573, -0.8037992, 51.1695573 ], "geometry": { "type": "Point", "coordinates": [ -0.8037992, 51.1695573 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14591816" }, "bbox": [ -0.3624875, 51.3200039, -0.3624875, 51.3200039 ], "geometry": { "type": "Point", "coordinates": [ -0.3624875, 51.3200039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13586836" }, "bbox": [ -0.3705166, 51.3129615, -0.3705166, 51.3129615 ], "geometry": { "type": "Point", "coordinates": [ -0.3705166, 51.3129615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585031" }, "bbox": [ -0.3729685, 51.3125982, -0.3729685, 51.3125982 ], "geometry": { "type": "Point", "coordinates": [ -0.3729685, 51.3125982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13583329" }, "bbox": [ -0.3757893, 51.3123295, -0.3757893, 51.3123295 ], "geometry": { "type": "Point", "coordinates": [ -0.3757893, 51.3123295 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585057" }, "bbox": [ -0.3727213, 51.3149558, -0.3727213, 51.3149558 ], "geometry": { "type": "Point", "coordinates": [ -0.3727213, 51.3149558 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13582134" }, "bbox": [ -0.3766005, 51.3130894, -0.3766005, 51.3130894 ], "geometry": { "type": "Point", "coordinates": [ -0.3766005, 51.3130894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13583940" }, "bbox": [ -0.3744241, 51.313408, -0.3744241, 51.313408 ], "geometry": { "type": "Point", "coordinates": [ -0.3744241, 51.313408 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13583037" }, "bbox": [ -0.3758062, 51.3131251, -0.3758062, 51.3131251 ], "geometry": { "type": "Point", "coordinates": [ -0.3758062, 51.3131251 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585455" }, "bbox": [ -0.372304, 51.3147768, -0.372304, 51.3147768 ], "geometry": { "type": "Point", "coordinates": [ -0.372304, 51.3147768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13586343" }, "bbox": [ -0.3709575, 51.3136529, -0.3709575, 51.3136529 ], "geometry": { "type": "Point", "coordinates": [ -0.3709575, 51.3136529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13588038" }, "bbox": [ -0.3692604, 51.3130843, -0.3692604, 51.3130843 ], "geometry": { "type": "Point", "coordinates": [ -0.3692604, 51.3130843 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13582626" }, "bbox": [ -0.3755397, 51.312081, -0.3755397, 51.312081 ], "geometry": { "type": "Point", "coordinates": [ -0.3755397, 51.312081 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13586149" }, "bbox": [ -0.3712768, 51.3142254, -0.3712768, 51.3142254 ], "geometry": { "type": "Point", "coordinates": [ -0.3712768, 51.3142254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13582831" }, "bbox": [ -0.3760295, 51.3127056, -0.3760295, 51.3127056 ], "geometry": { "type": "Point", "coordinates": [ -0.3760295, 51.3127056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585552" }, "bbox": [ -0.3726, 51.3145086, -0.3726, 51.3145086 ], "geometry": { "type": "Point", "coordinates": [ -0.3726, 51.3145086 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13584224" }, "bbox": [ -0.3740651, 51.3120347, -0.3740651, 51.3120347 ], "geometry": { "type": "Point", "coordinates": [ -0.3740651, 51.3120347 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585338" }, "bbox": [ -0.373073, 51.3134502, -0.373073, 51.3134502 ], "geometry": { "type": "Point", "coordinates": [ -0.373073, 51.3134502 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585744" }, "bbox": [ -0.3718759, 51.313739, -0.3718759, 51.313739 ], "geometry": { "type": "Point", "coordinates": [ -0.3718759, 51.313739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13584950" }, "bbox": [ -0.3719234, 51.3147279, -0.3719234, 51.3147279 ], "geometry": { "type": "Point", "coordinates": [ -0.3719234, 51.3147279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13583323" }, "bbox": [ -0.3760388, 51.3118538, -0.3760388, 51.3118538 ], "geometry": { "type": "Point", "coordinates": [ -0.3760388, 51.3118538 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13587539" }, "bbox": [ -0.3694801, 51.3132659, -0.3694801, 51.3132659 ], "geometry": { "type": "Point", "coordinates": [ -0.3694801, 51.3132659 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585447" }, "bbox": [ -0.372276, 51.3140373, -0.372276, 51.3140373 ], "geometry": { "type": "Point", "coordinates": [ -0.372276, 51.3140373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13584955" }, "bbox": [ -0.3730166, 51.3148153, -0.3730166, 51.3148153 ], "geometry": { "type": "Point", "coordinates": [ -0.3730166, 51.3148153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13583437" }, "bbox": [ -0.3752259, 51.3131372, -0.3752259, 51.3131372 ], "geometry": { "type": "Point", "coordinates": [ -0.3752259, 51.3131372 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585956" }, "bbox": [ -0.3715804, 51.3148018, -0.3715804, 51.3148018 ], "geometry": { "type": "Point", "coordinates": [ -0.3715804, 51.3148018 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585040" }, "bbox": [ -0.3732103, 51.3131864, -0.3732103, 51.3131864 ], "geometry": { "type": "Point", "coordinates": [ -0.3732103, 51.3131864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585933" }, "bbox": [ -0.371635, 51.3127811, -0.371635, 51.3127811 ], "geometry": { "type": "Point", "coordinates": [ -0.371635, 51.3127811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13585740" }, "bbox": [ -0.3719752, 51.313392, -0.3719752, 51.313392 ], "geometry": { "type": "Point", "coordinates": [ -0.3719752, 51.313392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38582150" }, "bbox": [ -0.0196225, 51.3086666, -0.0196225, 51.3086666 ], "geometry": { "type": "Point", "coordinates": [ -0.0196225, 51.3086666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39571895" }, "bbox": [ -0.0048059, 51.303478, -0.0048059, 51.303478 ], "geometry": { "type": "Point", "coordinates": [ -0.0048059, 51.303478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38589141" }, "bbox": [ -0.0084922, 51.3078733, -0.0084922, 51.3078733 ], "geometry": { "type": "Point", "coordinates": [ -0.0084922, 51.3078733 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38589444" }, "bbox": [ -0.008, 51.3080544, -0.008, 51.3080544 ], "geometry": { "type": "Point", "coordinates": [ -0.008, 51.3080544 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38589151" }, "bbox": [ -0.0084562, 51.3087741, -0.0084562, 51.3087741 ], "geometry": { "type": "Point", "coordinates": [ -0.0084562, 51.3087741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38588854" }, "bbox": [ -0.0097991, 51.3090856, -0.0097991, 51.3090856 ], "geometry": { "type": "Point", "coordinates": [ -0.0097991, 51.3090856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39580049" }, "bbox": [ -0.0071681, 51.3086315, -0.0071681, 51.3086315 ], "geometry": { "type": "Point", "coordinates": [ -0.0071681, 51.3086315 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35573442" }, "bbox": [ -0.0601352, 51.2996165, -0.0601352, 51.2996165 ], "geometry": { "type": "Point", "coordinates": [ -0.0601352, 51.2996165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36565899" }, "bbox": [ -0.0430236, 51.2957112, -0.0430236, 51.2957112 ], "geometry": { "type": "Point", "coordinates": [ -0.0430236, 51.2957112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36566294" }, "bbox": [ -0.0421028, 51.2952252, -0.0421028, 51.2952252 ], "geometry": { "type": "Point", "coordinates": [ -0.0421028, 51.2952252 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36566787" }, "bbox": [ -0.041226, 51.2945561, -0.041226, 51.2945561 ], "geometry": { "type": "Point", "coordinates": [ -0.041226, 51.2945561 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37572837" }, "bbox": [ -0.0320738, 51.2989501, -0.0320738, 51.2989501 ], "geometry": { "type": "Point", "coordinates": [ -0.0320738, 51.2989501 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37578374" }, "bbox": [ -0.0240739, 51.3021181, -0.0240739, 51.3021181 ], "geometry": { "type": "Point", "coordinates": [ -0.0240739, 51.3021181 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37572937" }, "bbox": [ -0.0319651, 51.298963, -0.0319651, 51.298963 ], "geometry": { "type": "Point", "coordinates": [ -0.0319651, 51.298963 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37579070" }, "bbox": [ -0.0228506, 51.3016441, -0.0228506, 51.3016441 ], "geometry": { "type": "Point", "coordinates": [ -0.0228506, 51.3016441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38570458" }, "bbox": [ -0.0212144, 51.3006399, -0.0212144, 51.3006399 ], "geometry": { "type": "Point", "coordinates": [ -0.0212144, 51.3006399 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36553055" }, "bbox": [ -0.046143, 51.2821787, -0.046143, 51.2821787 ], "geometry": { "type": "Point", "coordinates": [ -0.046143, 51.2821787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36553969" }, "bbox": [ -0.0471952, 51.2841912, -0.0471952, 51.2841912 ], "geometry": { "type": "Point", "coordinates": [ -0.0471952, 51.2841912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36552770" }, "bbox": [ -0.0472337, 51.2842047, -0.0472337, 51.2842047 ], "geometry": { "type": "Point", "coordinates": [ -0.0472337, 51.2842047 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36553565" }, "bbox": [ -0.0464999, 51.283781, -0.0464999, 51.283781 ], "geometry": { "type": "Point", "coordinates": [ -0.0464999, 51.283781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36553957" }, "bbox": [ -0.04557, 51.2829357, -0.04557, 51.2829357 ], "geometry": { "type": "Point", "coordinates": [ -0.04557, 51.2829357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39469055" }, "bbox": [ 0.0010035, 51.2010301, 0.0010035, 51.2010301 ], "geometry": { "type": "Point", "coordinates": [ 0.0010035, 51.2010301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40462228" }, "bbox": [ 0.005599, 51.1983767, 0.005599, 51.1983767 ], "geometry": { "type": "Point", "coordinates": [ 0.005599, 51.1983767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40461940" }, "bbox": [ 0.0050994, 51.1996105, 0.0050994, 51.1996105 ], "geometry": { "type": "Point", "coordinates": [ 0.0050994, 51.1996105 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90373116" }, "bbox": [ -0.7105512, 51.1267102, -0.7105512, 51.1267102 ], "geometry": { "type": "Point", "coordinates": [ -0.7105512, 51.1267102 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90375408" }, "bbox": [ -0.708085, 51.1258004, -0.708085, 51.1258004 ], "geometry": { "type": "Point", "coordinates": [ -0.708085, 51.1258004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90372425" }, "bbox": [ -0.7118736, 51.1273922, -0.7118736, 51.1273922 ], "geometry": { "type": "Point", "coordinates": [ -0.7118736, 51.1273922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90371911" }, "bbox": [ -0.7125684, 51.1261965, -0.7125684, 51.1261965 ], "geometry": { "type": "Point", "coordinates": [ -0.7125684, 51.1261965 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90375749" }, "bbox": [ -0.7072546, 51.1294697, -0.7072546, 51.1294697 ], "geometry": { "type": "Point", "coordinates": [ -0.7072546, 51.1294697 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90372442" }, "bbox": [ -0.7116289, 51.1292405, -0.7116289, 51.1292405 ], "geometry": { "type": "Point", "coordinates": [ -0.7116289, 51.1292405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90373860" }, "bbox": [ -0.7098545, 51.1305168, -0.7098545, 51.1305168 ], "geometry": { "type": "Point", "coordinates": [ -0.7098545, 51.1305168 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90373241" }, "bbox": [ -0.7106431, 51.1288827, -0.7106431, 51.1288827 ], "geometry": { "type": "Point", "coordinates": [ -0.7106431, 51.1288827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90372803" }, "bbox": [ -0.7109556, 51.12549, -0.7109556, 51.12549 ], "geometry": { "type": "Point", "coordinates": [ -0.7109556, 51.12549 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90371907" }, "bbox": [ -0.7126205, 51.1257879, -0.7126205, 51.1257879 ], "geometry": { "type": "Point", "coordinates": [ -0.7126205, 51.1257879 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90375128" }, "bbox": [ -0.707757, 51.1276848, -0.707757, 51.1276848 ], "geometry": { "type": "Point", "coordinates": [ -0.707757, 51.1276848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90374239" }, "bbox": [ -0.7094215, 51.1284437, -0.7094215, 51.1284437 ], "geometry": { "type": "Point", "coordinates": [ -0.7094215, 51.1284437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90371519" }, "bbox": [ -0.713173, 51.1269306, -0.713173, 51.1269306 ], "geometry": { "type": "Point", "coordinates": [ -0.713173, 51.1269306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02676745" }, "bbox": [ -0.5256564, 51.3967629, -0.5256564, 51.3967629 ], "geometry": { "type": "Point", "coordinates": [ -0.5256564, 51.3967629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02678854" }, "bbox": [ -0.5226946, 51.3974248, -0.5226946, 51.3974248 ], "geometry": { "type": "Point", "coordinates": [ -0.5226946, 51.3974248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03655196" }, "bbox": [ -0.5139299, 51.3831797, -0.5139299, 51.3831797 ], "geometry": { "type": "Point", "coordinates": [ -0.5139299, 51.3831797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04640896" }, "bbox": [ -0.50561, 51.3741603, -0.50561, 51.3741603 ], "geometry": { "type": "Point", "coordinates": [ -0.50561, 51.3741603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02645573" }, "bbox": [ -0.5279405, 51.3725599, -0.5279405, 51.3725599 ], "geometry": { "type": "Point", "coordinates": [ -0.5279405, 51.3725599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02645665" }, "bbox": [ -0.5280919, 51.371647, -0.5280919, 51.371647 ], "geometry": { "type": "Point", "coordinates": [ -0.5280919, 51.371647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03761277" }, "bbox": [ -0.5164098, 51.4801164, -0.5164098, 51.4801164 ], "geometry": { "type": "Point", "coordinates": [ -0.5164098, 51.4801164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02766573" }, "bbox": [ -0.5230801, 51.480075, -0.5230801, 51.480075 ], "geometry": { "type": "Point", "coordinates": [ -0.5230801, 51.480075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02769586" }, "bbox": [ -0.5188522, 51.4811141, -0.5188522, 51.4811141 ], "geometry": { "type": "Point", "coordinates": [ -0.5188522, 51.4811141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02767560" }, "bbox": [ -0.5213115, 51.4791036, -0.5213115, 51.4791036 ], "geometry": { "type": "Point", "coordinates": [ -0.5213115, 51.4791036 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02768371" }, "bbox": [ -0.5204079, 51.48006, -0.5204079, 51.48006 ], "geometry": { "type": "Point", "coordinates": [ -0.5204079, 51.48006 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22464658" }, "bbox": [ -0.2480251, 51.2054075, -0.2480251, 51.2054075 ], "geometry": { "type": "Point", "coordinates": [ -0.2480251, 51.2054075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467311" }, "bbox": [ -0.244867, 51.2010186, -0.244867, 51.2010186 ], "geometry": { "type": "Point", "coordinates": [ -0.244867, 51.2010186 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467523" }, "bbox": [ -0.2444255, 51.2020802, -0.2444255, 51.2020802 ], "geometry": { "type": "Point", "coordinates": [ -0.2444255, 51.2020802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22465062" }, "bbox": [ -0.2480099, 51.2058046, -0.2480099, 51.2058046 ], "geometry": { "type": "Point", "coordinates": [ -0.2480099, 51.2058046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467422" }, "bbox": [ -0.2445943, 51.2019956, -0.2445943, 51.2019956 ], "geometry": { "type": "Point", "coordinates": [ -0.2445943, 51.2019956 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22464755" }, "bbox": [ -0.2479434, 51.2050973, -0.2479434, 51.2050973 ], "geometry": { "type": "Point", "coordinates": [ -0.2479434, 51.2050973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22468010" }, "bbox": [ -0.2436951, 51.2008682, -0.2436951, 51.2008682 ], "geometry": { "type": "Point", "coordinates": [ -0.2436951, 51.2008682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22467619" }, "bbox": [ -0.2441557, 51.2015506, -0.2441557, 51.2015506 ], "geometry": { "type": "Point", "coordinates": [ -0.2441557, 51.2015506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21473891" }, "bbox": [ -0.2634306, 51.2174777, -0.2634306, 51.2174777 ], "geometry": { "type": "Point", "coordinates": [ -0.2634306, 51.2174777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21474596" }, "bbox": [ -0.2624254, 51.2179719, -0.2624254, 51.2179719 ], "geometry": { "type": "Point", "coordinates": [ -0.2624254, 51.2179719 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21473356" }, "bbox": [ -0.264327, 51.2143804, -0.264327, 51.2143804 ], "geometry": { "type": "Point", "coordinates": [ -0.264327, 51.2143804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21472655" }, "bbox": [ -0.2658799, 51.2142914, -0.2658799, 51.2142914 ], "geometry": { "type": "Point", "coordinates": [ -0.2658799, 51.2142914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21471255" }, "bbox": [ -0.26523, 51.2144764, -0.26523, 51.2144764 ], "geometry": { "type": "Point", "coordinates": [ -0.26523, 51.2144764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21479575" }, "bbox": [ -0.2556999, 51.2158511, -0.2556999, 51.2158511 ], "geometry": { "type": "Point", "coordinates": [ -0.2556999, 51.2158511 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21474093" }, "bbox": [ -0.2630315, 51.2176741, -0.2630315, 51.2176741 ], "geometry": { "type": "Point", "coordinates": [ -0.2630315, 51.2176741 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21474493" }, "bbox": [ -0.2626298, 51.217634, -0.2626298, 51.217634 ], "geometry": { "type": "Point", "coordinates": [ -0.2626298, 51.217634 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21472362" }, "bbox": [ -0.2656066, 51.2149111, -0.2656066, 51.2149111 ], "geometry": { "type": "Point", "coordinates": [ -0.2656066, 51.2149111 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21475094" }, "bbox": [ -0.2610029, 51.2177528, -0.2610029, 51.2177528 ], "geometry": { "type": "Point", "coordinates": [ -0.2610029, 51.2177528 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21474593" }, "bbox": [ -0.2623566, 51.2176478, -0.2623566, 51.2176478 ], "geometry": { "type": "Point", "coordinates": [ -0.2623566, 51.2176478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21471751" }, "bbox": [ -0.266358, 51.2138321, -0.266358, 51.2138321 ], "geometry": { "type": "Point", "coordinates": [ -0.266358, 51.2138321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21476415" }, "bbox": [ -0.2602436, 51.2107071, -0.2602436, 51.2107071 ], "geometry": { "type": "Point", "coordinates": [ -0.2602436, 51.2107071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21478379" }, "bbox": [ -0.256874, 51.2163647, -0.256874, 51.2163647 ], "geometry": { "type": "Point", "coordinates": [ -0.256874, 51.2163647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21476612" }, "bbox": [ -0.2597486, 51.2103622, -0.2597486, 51.2103622 ], "geometry": { "type": "Point", "coordinates": [ -0.2597486, 51.2103622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21478158" }, "bbox": [ -0.2573687, 51.2144056, -0.2573687, 51.2144056 ], "geometry": { "type": "Point", "coordinates": [ -0.2573687, 51.2144056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08515021" }, "bbox": [ -0.4467224, 51.2496709, -0.4467224, 51.2496709 ], "geometry": { "type": "Point", "coordinates": [ -0.4467224, 51.2496709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08515610" }, "bbox": [ -0.4459828, 51.2486598, -0.4459828, 51.2486598 ], "geometry": { "type": "Point", "coordinates": [ -0.4459828, 51.2486598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06381403" }, "bbox": [ -0.4844559, 51.1317336, -0.4844559, 51.1317336 ], "geometry": { "type": "Point", "coordinates": [ -0.4844559, 51.1317336 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05379063" }, "bbox": [ -0.4880805, 51.1282316, -0.4880805, 51.1282316 ], "geometry": { "type": "Point", "coordinates": [ -0.4880805, 51.1282316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04378638" }, "bbox": [ -0.5031923, 51.1260394, -0.5031923, 51.1260394 ], "geometry": { "type": "Point", "coordinates": [ -0.5031923, 51.1260394 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04377535" }, "bbox": [ -0.5043615, 51.1258883, -0.5043615, 51.1258883 ], "geometry": { "type": "Point", "coordinates": [ -0.5043615, 51.1258883 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16527308" }, "bbox": [ -0.3284935, 51.2559629, -0.3284935, 51.2559629 ], "geometry": { "type": "Point", "coordinates": [ -0.3284935, 51.2559629 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16525383" }, "bbox": [ -0.3312739, 51.2627592, -0.3312739, 51.2627592 ], "geometry": { "type": "Point", "coordinates": [ -0.3312739, 51.2627592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16527716" }, "bbox": [ -0.3280976, 51.2570007, -0.3280976, 51.2570007 ], "geometry": { "type": "Point", "coordinates": [ -0.3280976, 51.2570007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28499386" }, "bbox": [ -0.1542733, 51.2334115, -0.1542733, 51.2334115 ], "geometry": { "type": "Point", "coordinates": [ -0.1542733, 51.2334115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28499081" }, "bbox": [ -0.1545992, 51.2328875, -0.1545992, 51.2328875 ], "geometry": { "type": "Point", "coordinates": [ -0.1545992, 51.2328875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28498473" }, "bbox": [ -0.1555025, 51.23235, -0.1555025, 51.23235 ], "geometry": { "type": "Point", "coordinates": [ -0.1555025, 51.23235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29492379" }, "bbox": [ -0.1505169, 51.2327791, -0.1505169, 51.2327791 ], "geometry": { "type": "Point", "coordinates": [ -0.1505169, 51.2327791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29492588" }, "bbox": [ -0.1501804, 51.2335509, -0.1501804, 51.2335509 ], "geometry": { "type": "Point", "coordinates": [ -0.1501804, 51.2335509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494071" }, "bbox": [ -0.1479629, 51.2319694, -0.1479629, 51.2319694 ], "geometry": { "type": "Point", "coordinates": [ -0.1479629, 51.2319694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29493982" }, "bbox": [ -0.1480341, 51.232762, -0.1480341, 51.232762 ], "geometry": { "type": "Point", "coordinates": [ -0.1480341, 51.232762 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29491193" }, "bbox": [ -0.1521073, 51.2339342, -0.1521073, 51.2339342 ], "geometry": { "type": "Point", "coordinates": [ -0.1521073, 51.2339342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494387" }, "bbox": [ -0.1475311, 51.2333531, -0.1475311, 51.2333531 ], "geometry": { "type": "Point", "coordinates": [ -0.1475311, 51.2333531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29494391" }, "bbox": [ -0.1473971, 51.2337391, -0.1473971, 51.2337391 ], "geometry": { "type": "Point", "coordinates": [ -0.1473971, 51.2337391 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29491385" }, "bbox": [ -0.1524462, 51.2328422, -0.1524462, 51.2328422 ], "geometry": { "type": "Point", "coordinates": [ -0.1524462, 51.2328422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29492494" }, "bbox": [ -0.1502413, 51.2340584, -0.1502413, 51.2340584 ], "geometry": { "type": "Point", "coordinates": [ -0.1502413, 51.2340584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29501101" }, "bbox": [ -0.1521631, 51.2345811, -0.1521631, 51.2345811 ], "geometry": { "type": "Point", "coordinates": [ -0.1521631, 51.2345811 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40429588" }, "bbox": [ 0.0147436, 51.1678845, 0.0147436, 51.1678845 ], "geometry": { "type": "Point", "coordinates": [ 0.0147436, 51.1678845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40429595" }, "bbox": [ 0.0146315, 51.1686931, 0.0146315, 51.1686931 ], "geometry": { "type": "Point", "coordinates": [ 0.0146315, 51.1686931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40431731" }, "bbox": [ 0.0036223, 51.1719387, 0.0036223, 51.1719387 ], "geometry": { "type": "Point", "coordinates": [ 0.0036223, 51.1719387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40432027" }, "bbox": [ 0.0034604, 51.1714574, 0.0034604, 51.1714574 ], "geometry": { "type": "Point", "coordinates": [ 0.0034604, 51.1714574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06411609" }, "bbox": [ -0.4833052, 51.1591703, -0.4833052, 51.1591703 ], "geometry": { "type": "Point", "coordinates": [ -0.4833052, 51.1591703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06403777" }, "bbox": [ -0.4813232, 51.1561433, -0.4813232, 51.1561433 ], "geometry": { "type": "Point", "coordinates": [ -0.4813232, 51.1561433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06402128" }, "bbox": [ -0.4826385, 51.1518988, -0.4826385, 51.1518988 ], "geometry": { "type": "Point", "coordinates": [ -0.4826385, 51.1518988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06400283" }, "bbox": [ -0.4849104, 51.1571256, -0.4849104, 51.1571256 ], "geometry": { "type": "Point", "coordinates": [ -0.4849104, 51.1571256 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06402381" }, "bbox": [ -0.4824265, 51.156673, -0.4824265, 51.156673 ], "geometry": { "type": "Point", "coordinates": [ -0.4824265, 51.156673 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05417504" }, "bbox": [ -0.4889521, 51.158776, -0.4889521, 51.158776 ], "geometry": { "type": "Point", "coordinates": [ -0.4889521, 51.158776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05408775" }, "bbox": [ -0.4872649, 51.1561876, -0.4872649, 51.1561876 ], "geometry": { "type": "Point", "coordinates": [ -0.4872649, 51.1561876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05409158" }, "bbox": [ -0.4871689, 51.1548398, -0.4871689, 51.1548398 ], "geometry": { "type": "Point", "coordinates": [ -0.4871689, 51.1548398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05407277" }, "bbox": [ -0.4896047, 51.1564559, -0.4896047, 51.1564559 ], "geometry": { "type": "Point", "coordinates": [ -0.4896047, 51.1564559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05409410" }, "bbox": [ -0.4870761, 51.1503698, -0.4870761, 51.1503698 ], "geometry": { "type": "Point", "coordinates": [ -0.4870761, 51.1503698 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05407788" }, "bbox": [ -0.488998, 51.1574945, -0.488998, 51.1574945 ], "geometry": { "type": "Point", "coordinates": [ -0.488998, 51.1574945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94594147" }, "bbox": [ -0.6465163, 51.3265579, -0.6465163, 51.3265579 ], "geometry": { "type": "Point", "coordinates": [ -0.6465163, 51.3265579 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94592733" }, "bbox": [ -0.6482331, 51.3255535, -0.6482331, 51.3255535 ], "geometry": { "type": "Point", "coordinates": [ -0.6482331, 51.3255535 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94571974" }, "bbox": [ -0.6498376, 51.3109185, -0.6498376, 51.3109185 ], "geometry": { "type": "Point", "coordinates": [ -0.6498376, 51.3109185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94573882" }, "bbox": [ -0.6495992, 51.3080569, -0.6495992, 51.3080569 ], "geometry": { "type": "Point", "coordinates": [ -0.6495992, 51.3080569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94575799" }, "bbox": [ -0.6443683, 51.3132455, -0.6443683, 51.3132455 ], "geometry": { "type": "Point", "coordinates": [ -0.6443683, 51.3132455 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93599909" }, "bbox": [ -0.65237, 51.3229306, -0.65237, 51.3229306 ], "geometry": { "type": "Point", "coordinates": [ -0.65237, 51.3229306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93598906" }, "bbox": [ -0.6539031, 51.3229575, -0.6539031, 51.3229575 ], "geometry": { "type": "Point", "coordinates": [ -0.6539031, 51.3229575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93579945" }, "bbox": [ -0.6529108, 51.3085892, -0.6529108, 51.3085892 ], "geometry": { "type": "Point", "coordinates": [ -0.6529108, 51.3085892 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406554" }, "bbox": [ -0.5336343, 51.1549744, -0.5336343, 51.1549744 ], "geometry": { "type": "Point", "coordinates": [ -0.5336343, 51.1549744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406813" }, "bbox": [ -0.533342, 51.1511657, -0.533342, 51.1511657 ], "geometry": { "type": "Point", "coordinates": [ -0.533342, 51.1511657 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407605" }, "bbox": [ -0.5322733, 51.1505008, -0.5322733, 51.1505008 ], "geometry": { "type": "Point", "coordinates": [ -0.5322733, 51.1505008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407501" }, "bbox": [ -0.5321116, 51.1502147, -0.5321116, 51.1502147 ], "geometry": { "type": "Point", "coordinates": [ -0.5321116, 51.1502147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406406" }, "bbox": [ -0.5339492, 51.1505929, -0.5339492, 51.1505929 ], "geometry": { "type": "Point", "coordinates": [ -0.5339492, 51.1505929 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407711" }, "bbox": [ -0.5320534, 51.1509195, -0.5320534, 51.1509195 ], "geometry": { "type": "Point", "coordinates": [ -0.5320534, 51.1509195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407100" }, "bbox": [ -0.5328606, 51.1501505, -0.5328606, 51.1501505 ], "geometry": { "type": "Point", "coordinates": [ -0.5328606, 51.1501505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407010" }, "bbox": [ -0.5328366, 51.1510279, -0.5328366, 51.1510279 ], "geometry": { "type": "Point", "coordinates": [ -0.5328366, 51.1510279 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01419436" }, "bbox": [ -0.5433431, 51.162506, -0.5433431, 51.162506 ], "geometry": { "type": "Point", "coordinates": [ -0.5433431, 51.162506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02401570" }, "bbox": [ -0.5406866, 51.1565283, -0.5406866, 51.1565283 ], "geometry": { "type": "Point", "coordinates": [ -0.5406866, 51.1565283 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406215" }, "bbox": [ -0.5340953, 51.1514593, -0.5340953, 51.1514593 ], "geometry": { "type": "Point", "coordinates": [ -0.5340953, 51.1514593 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407514" }, "bbox": [ -0.5321089, 51.1512334, -0.5321089, 51.1512334 ], "geometry": { "type": "Point", "coordinates": [ -0.5321089, 51.1512334 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02401986" }, "bbox": [ -0.5401798, 51.1579805, -0.5401798, 51.1579805 ], "geometry": { "type": "Point", "coordinates": [ -0.5401798, 51.1579805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02406412" }, "bbox": [ -0.53382, 51.1511902, -0.53382, 51.1511902 ], "geometry": { "type": "Point", "coordinates": [ -0.53382, 51.1511902 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02407703" }, "bbox": [ -0.5321018, 51.150319, -0.5321018, 51.150319 ], "geometry": { "type": "Point", "coordinates": [ -0.5321018, 51.150319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06424608" }, "bbox": [ -0.4811617, 51.1685465, -0.4811617, 51.1685465 ], "geometry": { "type": "Point", "coordinates": [ -0.4811617, 51.1685465 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06416041" }, "bbox": [ -0.4772294, 51.1623097, -0.4772294, 51.1623097 ], "geometry": { "type": "Point", "coordinates": [ -0.4772294, 51.1623097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06417036" }, "bbox": [ -0.4752903, 51.1616282, -0.4752903, 51.1616282 ], "geometry": { "type": "Point", "coordinates": [ -0.4752903, 51.1616282 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05428109" }, "bbox": [ -0.4866925, 51.1686254, -0.4866925, 51.1686254 ], "geometry": { "type": "Point", "coordinates": [ -0.4866925, 51.1686254 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06412738" }, "bbox": [ -0.4818278, 51.1619079, -0.4818278, 51.1619079 ], "geometry": { "type": "Point", "coordinates": [ -0.4818278, 51.1619079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06412999" }, "bbox": [ -0.481304, 51.1672572, -0.481304, 51.1672572 ], "geometry": { "type": "Point", "coordinates": [ -0.481304, 51.1672572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06414441" }, "bbox": [ -0.4792229, 51.162009, -0.4792229, 51.162009 ], "geometry": { "type": "Point", "coordinates": [ -0.4792229, 51.162009 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06411638" }, "bbox": [ -0.4831458, 51.1618744, -0.4831458, 51.1618744 ], "geometry": { "type": "Point", "coordinates": [ -0.4831458, 51.1618744 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06412462" }, "bbox": [ -0.4818976, 51.164011, -0.4818976, 51.164011 ], "geometry": { "type": "Point", "coordinates": [ -0.4818976, 51.164011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06419651" }, "bbox": [ -0.4716096, 51.1628904, -0.4716096, 51.1628904 ], "geometry": { "type": "Point", "coordinates": [ -0.4716096, 51.1628904 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06412626" }, "bbox": [ -0.4816108, 51.1608108, -0.4816108, 51.1608108 ], "geometry": { "type": "Point", "coordinates": [ -0.4816108, 51.1608108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05419388" }, "bbox": [ -0.4849146, 51.1655867, -0.4849146, 51.1655867 ], "geometry": { "type": "Point", "coordinates": [ -0.4849146, 51.1655867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05417390" }, "bbox": [ -0.4890371, 51.1666626, -0.4890371, 51.1666626 ], "geometry": { "type": "Point", "coordinates": [ -0.4890371, 51.1666626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05417689" }, "bbox": [ -0.4886219, 51.1666056, -0.4886219, 51.1666056 ], "geometry": { "type": "Point", "coordinates": [ -0.4886219, 51.1666056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05416278" }, "bbox": [ -0.4910222, 51.1658504, -0.4910222, 51.1658504 ], "geometry": { "type": "Point", "coordinates": [ -0.4910222, 51.1658504 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05415105" }, "bbox": [ -0.4925202, 51.1591077, -0.4925202, 51.1591077 ], "geometry": { "type": "Point", "coordinates": [ -0.4925202, 51.1591077 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05414901" }, "bbox": [ -0.4927917, 51.1586829, -0.4927917, 51.1586829 ], "geometry": { "type": "Point", "coordinates": [ -0.4927917, 51.1586829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05415832" }, "bbox": [ -0.4901171, 51.1620675, -0.4901171, 51.1620675 ], "geometry": { "type": "Point", "coordinates": [ -0.4901171, 51.1620675 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05417609" }, "bbox": [ -0.4888801, 51.1593588, -0.4888801, 51.1593588 ], "geometry": { "type": "Point", "coordinates": [ -0.4888801, 51.1593588 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34419985" }, "bbox": [ -0.0709453, 51.1600525, -0.0709453, 51.1600525 ], "geometry": { "type": "Point", "coordinates": [ -0.0709453, 51.1600525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34418971" }, "bbox": [ -0.0723769, 51.1588662, -0.0723769, 51.1588662 ], "geometry": { "type": "Point", "coordinates": [ -0.0723769, 51.1588662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35414396" }, "bbox": [ -0.0647368, 51.1607103, -0.0647368, 51.1607103 ], "geometry": { "type": "Point", "coordinates": [ -0.0647368, 51.1607103 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35414585" }, "bbox": [ -0.0644204, 51.1600235, -0.0644204, 51.1600235 ], "geometry": { "type": "Point", "coordinates": [ -0.0644204, 51.1600235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35417476" }, "bbox": [ -0.0601822, 51.1590914, -0.0601822, 51.1590914 ], "geometry": { "type": "Point", "coordinates": [ -0.0601822, 51.1590914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35418258" }, "bbox": [ -0.0583716, 51.1573461, -0.0583716, 51.1573461 ], "geometry": { "type": "Point", "coordinates": [ -0.0583716, 51.1573461 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35418987" }, "bbox": [ -0.0570775, 51.1603272, -0.0570775, 51.1603272 ], "geometry": { "type": "Point", "coordinates": [ -0.0570775, 51.1603272 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35415841" }, "bbox": [ -0.0625534, 51.1559656, -0.0625534, 51.1559656 ], "geometry": { "type": "Point", "coordinates": [ -0.0625534, 51.1559656 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35416502" }, "bbox": [ -0.0615707, 51.1524432, -0.0615707, 51.1524432 ], "geometry": { "type": "Point", "coordinates": [ -0.0615707, 51.1524432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35410269" }, "bbox": [ -0.0705281, 51.1585031, -0.0705281, 51.1585031 ], "geometry": { "type": "Point", "coordinates": [ -0.0705281, 51.1585031 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35416612" }, "bbox": [ -0.0617838, 51.1534684, -0.0617838, 51.1534684 ], "geometry": { "type": "Point", "coordinates": [ -0.0617838, 51.1534684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35413881" }, "bbox": [ -0.0652352, 51.1595603, -0.0652352, 51.1595603 ], "geometry": { "type": "Point", "coordinates": [ -0.0652352, 51.1595603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34429201" }, "bbox": [ -0.0718107, 51.1614805, -0.0718107, 51.1614805 ], "geometry": { "type": "Point", "coordinates": [ -0.0718107, 51.1614805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34429120" }, "bbox": [ -0.0718178, 51.1631158, -0.0718178, 51.1631158 ], "geometry": { "type": "Point", "coordinates": [ -0.0718178, 51.1631158 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35411361" }, "bbox": [ -0.0691419, 51.1578815, -0.0691419, 51.1578815 ], "geometry": { "type": "Point", "coordinates": [ -0.0691419, 51.1578815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35413788" }, "bbox": [ -0.065556, 51.1602235, -0.065556, 51.1602235 ], "geometry": { "type": "Point", "coordinates": [ -0.065556, 51.1602235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35411271" }, "bbox": [ -0.068907, 51.1586935, -0.068907, 51.1586935 ], "geometry": { "type": "Point", "coordinates": [ -0.068907, 51.1586935 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35413596" }, "bbox": [ -0.0656733, 51.1608622, -0.0656733, 51.1608622 ], "geometry": { "type": "Point", "coordinates": [ -0.0656733, 51.1608622 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09391023" }, "bbox": [ -0.4420118, 51.1422805, -0.4420118, 51.1422805 ], "geometry": { "type": "Point", "coordinates": [ -0.4420118, 51.1422805 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09392118" }, "bbox": [ -0.4394848, 51.141936, -0.4394848, 51.141936 ], "geometry": { "type": "Point", "coordinates": [ -0.4394848, 51.141936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09392626" }, "bbox": [ -0.4398863, 51.1421808, -0.4398863, 51.1421808 ], "geometry": { "type": "Point", "coordinates": [ -0.4398863, 51.1421808 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09391302" }, "bbox": [ -0.4418157, 51.1399996, -0.4418157, 51.1399996 ], "geometry": { "type": "Point", "coordinates": [ -0.4418157, 51.1399996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09381879" }, "bbox": [ -0.4406738, 51.137931, -0.4406738, 51.137931 ], "geometry": { "type": "Point", "coordinates": [ -0.4406738, 51.137931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08399700" }, "bbox": [ -0.4436955, 51.1398957, -0.4436955, 51.1398957 ], "geometry": { "type": "Point", "coordinates": [ -0.4436955, 51.1398957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08388061" }, "bbox": [ -0.4435093, 51.136243, -0.4435093, 51.136243 ], "geometry": { "type": "Point", "coordinates": [ -0.4435093, 51.136243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08388379" }, "bbox": [ -0.4459033, 51.1380358, -0.4459033, 51.1380358 ], "geometry": { "type": "Point", "coordinates": [ -0.4459033, 51.1380358 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08386693" }, "bbox": [ -0.4482108, 51.1393889, -0.4482108, 51.1393889 ], "geometry": { "type": "Point", "coordinates": [ -0.4482108, 51.1393889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08389891" }, "bbox": [ -0.4436022, 51.1391305, -0.4436022, 51.1391305 ], "geometry": { "type": "Point", "coordinates": [ -0.4436022, 51.1391305 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22550783" }, "bbox": [ -0.2508198, 51.2885386, -0.2508198, 51.2885386 ], "geometry": { "type": "Point", "coordinates": [ -0.2508198, 51.2885386 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22550161" }, "bbox": [ -0.2518096, 51.286618, -0.2518096, 51.286618 ], "geometry": { "type": "Point", "coordinates": [ -0.2518096, 51.286618 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22550572" }, "bbox": [ -0.2511209, 51.2875986, -0.2511209, 51.2875986 ], "geometry": { "type": "Point", "coordinates": [ -0.2511209, 51.2875986 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22550776" }, "bbox": [ -0.250899, 51.2878405, -0.250899, 51.2878405 ], "geometry": { "type": "Point", "coordinates": [ -0.250899, 51.2878405 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21559180" }, "bbox": [ -0.2533369, 51.2882801, -0.2533369, 51.2882801 ], "geometry": { "type": "Point", "coordinates": [ -0.2533369, 51.2882801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21558994" }, "bbox": [ -0.2533855, 51.2895711, -0.2533855, 51.2895711 ], "geometry": { "type": "Point", "coordinates": [ -0.2533855, 51.2895711 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21558298" }, "bbox": [ -0.2546274, 51.2894353, -0.2546274, 51.2894353 ], "geometry": { "type": "Point", "coordinates": [ -0.2546274, 51.2894353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21558884" }, "bbox": [ -0.2535788, 51.2886364, -0.2535788, 51.2886364 ], "geometry": { "type": "Point", "coordinates": [ -0.2535788, 51.2886364 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21559465" }, "bbox": [ -0.2526795, 51.2870241, -0.2526795, 51.2870241 ], "geometry": { "type": "Point", "coordinates": [ -0.2526795, 51.2870241 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21559074" }, "bbox": [ -0.253214, 51.2878966, -0.253214, 51.2878966 ], "geometry": { "type": "Point", "coordinates": [ -0.253214, 51.2878966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21559372" }, "bbox": [ -0.2529108, 51.2875178, -0.2529108, 51.2875178 ], "geometry": { "type": "Point", "coordinates": [ -0.2529108, 51.2875178 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22550767" }, "bbox": [ -0.250911, 51.287154, -0.250911, 51.287154 ], "geometry": { "type": "Point", "coordinates": [ -0.250911, 51.287154 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22550789" }, "bbox": [ -0.2511567, 51.2890778, -0.2511567, 51.2890778 ], "geometry": { "type": "Point", "coordinates": [ -0.2511567, 51.2890778 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22551481" }, "bbox": [ -0.2499034, 51.2881595, -0.2499034, 51.2881595 ], "geometry": { "type": "Point", "coordinates": [ -0.2499034, 51.2881595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21543732" }, "bbox": [ -0.2612168, 51.2749866, -0.2612168, 51.2749866 ], "geometry": { "type": "Point", "coordinates": [ -0.2612168, 51.2749866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21542341" }, "bbox": [ -0.2634161, 51.2759235, -0.2634161, 51.2759235 ], "geometry": { "type": "Point", "coordinates": [ -0.2634161, 51.2759235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21541742" }, "bbox": [ -0.2642442, 51.2760757, -0.2642442, 51.2760757 ], "geometry": { "type": "Point", "coordinates": [ -0.2642442, 51.2760757 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08682466" }, "bbox": [ -0.4452491, 51.4066857, -0.4452491, 51.4066857 ], "geometry": { "type": "Point", "coordinates": [ -0.4452491, 51.4066857 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08682773" }, "bbox": [ -0.4447357, 51.407309, -0.4447357, 51.407309 ], "geometry": { "type": "Point", "coordinates": [ -0.4447357, 51.407309 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08682172" }, "bbox": [ -0.4456511, 51.4072429, -0.4456511, 51.4072429 ], "geometry": { "type": "Point", "coordinates": [ -0.4456511, 51.4072429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08682571" }, "bbox": [ -0.4448761, 51.4070949, -0.4448761, 51.4070949 ], "geometry": { "type": "Point", "coordinates": [ -0.4448761, 51.4070949 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08682569" }, "bbox": [ -0.445055, 51.4068819, -0.445055, 51.4068819 ], "geometry": { "type": "Point", "coordinates": [ -0.445055, 51.4068819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29495175" }, "bbox": [ -0.1462884, 51.2323247, -0.1462884, 51.2323247 ], "geometry": { "type": "Point", "coordinates": [ -0.1462884, 51.2323247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29497781" }, "bbox": [ -0.1426337, 51.2327923, -0.1426337, 51.2327923 ], "geometry": { "type": "Point", "coordinates": [ -0.1426337, 51.2327923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29496480" }, "bbox": [ -0.1442459, 51.2326798, -0.1442459, 51.2326798 ], "geometry": { "type": "Point", "coordinates": [ -0.1442459, 51.2326798 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29499774" }, "bbox": [ -0.1409121, 51.2319967, -0.1409121, 51.2319967 ], "geometry": { "type": "Point", "coordinates": [ -0.1409121, 51.2319967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29499488" }, "bbox": [ -0.1405025, 51.2332945, -0.1405025, 51.2332945 ], "geometry": { "type": "Point", "coordinates": [ -0.1405025, 51.2332945 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21548200" }, "bbox": [ -0.2550515, 51.2721517, -0.2550515, 51.2721517 ], "geometry": { "type": "Point", "coordinates": [ -0.2550515, 51.2721517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21537176" }, "bbox": [ -0.2567578, 51.2700232, -0.2567578, 51.2700232 ], "geometry": { "type": "Point", "coordinates": [ -0.2567578, 51.2700232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21567909" }, "bbox": [ -0.2547581, 51.2908257, -0.2547581, 51.2908257 ], "geometry": { "type": "Point", "coordinates": [ -0.2547581, 51.2908257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21567420" }, "bbox": [ -0.2554478, 51.2918922, -0.2554478, 51.2918922 ], "geometry": { "type": "Point", "coordinates": [ -0.2554478, 51.2918922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08571127" }, "bbox": [ -0.451503, 51.3044209, -0.451503, 51.3044209 ], "geometry": { "type": "Point", "coordinates": [ -0.451503, 51.3044209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07578010" }, "bbox": [ -0.4556772, 51.3029912, -0.4556772, 51.3029912 ], "geometry": { "type": "Point", "coordinates": [ -0.4556772, 51.3029912 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07575327" }, "bbox": [ -0.4576822, 51.3043248, -0.4576822, 51.3043248 ], "geometry": { "type": "Point", "coordinates": [ -0.4576822, 51.3043248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14561662" }, "bbox": [ -0.3640318, 51.2972848, -0.3640318, 51.2972848 ], "geometry": { "type": "Point", "coordinates": [ -0.3640318, 51.2972848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14561262" }, "bbox": [ -0.3641861, 51.2974578, -0.3641861, 51.2974578 ], "geometry": { "type": "Point", "coordinates": [ -0.3641861, 51.2974578 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14561366" }, "bbox": [ -0.3643309, 51.2976362, -0.3643309, 51.2976362 ], "geometry": { "type": "Point", "coordinates": [ -0.3643309, 51.2976362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14560965" }, "bbox": [ -0.364242, 51.2974713, -0.364242, 51.2974713 ], "geometry": { "type": "Point", "coordinates": [ -0.364242, 51.2974713 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14560961" }, "bbox": [ -0.3649992, 51.2971878, -0.3649992, 51.2971878 ], "geometry": { "type": "Point", "coordinates": [ -0.3649992, 51.2971878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30502157" }, "bbox": [ -0.1359928, 51.2394679, -0.1359928, 51.2394679 ], "geometry": { "type": "Point", "coordinates": [ -0.1359928, 51.2394679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30504616" }, "bbox": [ -0.1325144, 51.2355567, -0.1325144, 51.2355567 ], "geometry": { "type": "Point", "coordinates": [ -0.1325144, 51.2355567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30501905" }, "bbox": [ -0.1365085, 51.2348379, -0.1365085, 51.2348379 ], "geometry": { "type": "Point", "coordinates": [ -0.1365085, 51.2348379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30502623" }, "bbox": [ -0.135467, 51.236342, -0.135467, 51.236342 ], "geometry": { "type": "Point", "coordinates": [ -0.135467, 51.236342 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30501718" }, "bbox": [ -0.136759, 51.2359669, -0.136759, 51.2359669 ], "geometry": { "type": "Point", "coordinates": [ -0.136759, 51.2359669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30503725" }, "bbox": [ -0.1338211, 51.2365426, -0.1338211, 51.2365426 ], "geometry": { "type": "Point", "coordinates": [ -0.1338211, 51.2365426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04542080" }, "bbox": [ -0.5064799, 51.2826522, -0.5064799, 51.2826522 ], "geometry": { "type": "Point", "coordinates": [ -0.5064799, 51.2826522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03557871" }, "bbox": [ -0.513142, 51.2909812, -0.513142, 51.2909812 ], "geometry": { "type": "Point", "coordinates": [ -0.513142, 51.2909812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04547950" }, "bbox": [ -0.4994342, 51.2803287, -0.4994342, 51.2803287 ], "geometry": { "type": "Point", "coordinates": [ -0.4994342, 51.2803287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04547439" }, "bbox": [ -0.4991484, 51.2790915, -0.4991484, 51.2790915 ], "geometry": { "type": "Point", "coordinates": [ -0.4991484, 51.2790915 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03553966" }, "bbox": [ -0.5184442, 51.2906596, -0.5184442, 51.2906596 ], "geometry": { "type": "Point", "coordinates": [ -0.5184442, 51.2906596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03552968" }, "bbox": [ -0.5201428, 51.2908777, -0.5201428, 51.2908777 ], "geometry": { "type": "Point", "coordinates": [ -0.5201428, 51.2908777 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04539690" }, "bbox": [ -0.496698, 51.2744329, -0.496698, 51.2744329 ], "geometry": { "type": "Point", "coordinates": [ -0.496698, 51.2744329 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04552352" }, "bbox": [ -0.5067285, 51.2892924, -0.5067285, 51.2892924 ], "geometry": { "type": "Point", "coordinates": [ -0.5067285, 51.2892924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05543866" }, "bbox": [ -0.4905243, 51.2812373, -0.4905243, 51.2812373 ], "geometry": { "type": "Point", "coordinates": [ -0.4905243, 51.2812373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05544035" }, "bbox": [ -0.4901603, 51.2785595, -0.4901603, 51.2785595 ], "geometry": { "type": "Point", "coordinates": [ -0.4901603, 51.2785595 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05544240" }, "bbox": [ -0.4897203, 51.2793565, -0.4897203, 51.2793565 ], "geometry": { "type": "Point", "coordinates": [ -0.4897203, 51.2793565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461588" }, "bbox": [ -0.6649865, 51.2149346, -0.6649865, 51.2149346 ], "geometry": { "type": "Point", "coordinates": [ -0.6649865, 51.2149346 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04434222" }, "bbox": [ -0.5075268, 51.1787236, -0.5075268, 51.1787236 ], "geometry": { "type": "Point", "coordinates": [ -0.5075268, 51.1787236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427803" }, "bbox": [ -0.5169305, 51.1681035, -0.5169305, 51.1681035 ], "geometry": { "type": "Point", "coordinates": [ -0.5169305, 51.1681035 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04414745" }, "bbox": [ -0.5072908, 51.1627533, -0.5072908, 51.1627533 ], "geometry": { "type": "Point", "coordinates": [ -0.5072908, 51.1627533 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427917" }, "bbox": [ -0.5168912, 51.1693248, -0.5168912, 51.1693248 ], "geometry": { "type": "Point", "coordinates": [ -0.5168912, 51.1693248 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03426022" }, "bbox": [ -0.5195455, 51.1699059, -0.5195455, 51.1699059 ], "geometry": { "type": "Point", "coordinates": [ -0.5195455, 51.1699059 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04413850" }, "bbox": [ -0.5084657, 51.1634084, -0.5084657, 51.1634084 ], "geometry": { "type": "Point", "coordinates": [ -0.5084657, 51.1634084 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03427962" }, "bbox": [ -0.5166753, 51.1734219, -0.5166753, 51.1734219 ], "geometry": { "type": "Point", "coordinates": [ -0.5166753, 51.1734219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04413943" }, "bbox": [ -0.5084672, 51.1626032, -0.5084672, 51.1626032 ], "geometry": { "type": "Point", "coordinates": [ -0.5084672, 51.1626032 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03425180" }, "bbox": [ -0.5205836, 51.1751353, -0.5205836, 51.1751353 ], "geometry": { "type": "Point", "coordinates": [ -0.5205836, 51.1751353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96614448" }, "bbox": [ -0.6166218, 51.3443144, -0.6166218, 51.3443144 ], "geometry": { "type": "Point", "coordinates": [ -0.6166218, 51.3443144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96617529" }, "bbox": [ -0.6122359, 51.3425074, -0.6122359, 51.3425074 ], "geometry": { "type": "Point", "coordinates": [ -0.6122359, 51.3425074 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96615246" }, "bbox": [ -0.6153556, 51.3440601, -0.6153556, 51.3440601 ], "geometry": { "type": "Point", "coordinates": [ -0.6153556, 51.3440601 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96613543" }, "bbox": [ -0.6179196, 51.3438486, -0.6179196, 51.3438486 ], "geometry": { "type": "Point", "coordinates": [ -0.6179196, 51.3438486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96613541" }, "bbox": [ -0.6181188, 51.3437013, -0.6181188, 51.3437013 ], "geometry": { "type": "Point", "coordinates": [ -0.6181188, 51.3437013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23489499" }, "bbox": [ -0.2263673, 51.2267148, -0.2263673, 51.2267148 ], "geometry": { "type": "Point", "coordinates": [ -0.2263673, 51.2267148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23497128" }, "bbox": [ -0.2294288, 51.2292445, -0.2294288, 51.2292445 ], "geometry": { "type": "Point", "coordinates": [ -0.2294288, 51.2292445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34435853" }, "bbox": [ -0.0762246, 51.1751388, -0.0762246, 51.1751388 ], "geometry": { "type": "Point", "coordinates": [ -0.0762246, 51.1751388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34436048" }, "bbox": [ -0.0759803, 51.1746922, -0.0759803, 51.1746922 ], "geometry": { "type": "Point", "coordinates": [ -0.0759803, 51.1746922 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21535770" }, "bbox": [ -0.2581648, 51.2694441, -0.2581648, 51.2694441 ], "geometry": { "type": "Point", "coordinates": [ -0.2581648, 51.2694441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21535857" }, "bbox": [ -0.2586045, 51.2682118, -0.2586045, 51.2682118 ], "geometry": { "type": "Point", "coordinates": [ -0.2586045, 51.2682118 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22527761" }, "bbox": [ -0.2418271, 51.2595521, -0.2418271, 51.2595521 ], "geometry": { "type": "Point", "coordinates": [ -0.2418271, 51.2595521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22527289" }, "bbox": [ -0.2418224, 51.2618516, -0.2418224, 51.2618516 ], "geometry": { "type": "Point", "coordinates": [ -0.2418224, 51.2618516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22524788" }, "bbox": [ -0.2447194, 51.2623451, -0.2447194, 51.2623451 ], "geometry": { "type": "Point", "coordinates": [ -0.2447194, 51.2623451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22523971" }, "bbox": [ -0.2470384, 51.2605207, -0.2470384, 51.2605207 ], "geometry": { "type": "Point", "coordinates": [ -0.2470384, 51.2605207 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22524191" }, "bbox": [ -0.2474656, 51.2621355, -0.2474656, 51.2621355 ], "geometry": { "type": "Point", "coordinates": [ -0.2474656, 51.2621355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22525197" }, "bbox": [ -0.2451924, 51.2627958, -0.2451924, 51.2627958 ], "geometry": { "type": "Point", "coordinates": [ -0.2451924, 51.2627958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23528294" }, "bbox": [ -0.2267854, 51.2621826, -0.2267854, 51.2621826 ], "geometry": { "type": "Point", "coordinates": [ -0.2267854, 51.2621826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99464362" }, "bbox": [ -0.5781413, 51.2099919, -0.5781413, 51.2099919 ], "geometry": { "type": "Point", "coordinates": [ -0.5781413, 51.2099919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33506801" }, "bbox": [ -0.0868572, 51.2337113, -0.0868572, 51.2337113 ], "geometry": { "type": "Point", "coordinates": [ -0.0868572, 51.2337113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97327692" }, "bbox": [ -0.6054745, 51.0873489, -0.6054745, 51.0873489 ], "geometry": { "type": "Point", "coordinates": [ -0.6054745, 51.0873489 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97332810" }, "bbox": [ -0.6123594, 51.0890464, -0.6123594, 51.0890464 ], "geometry": { "type": "Point", "coordinates": [ -0.6123594, 51.0890464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95320085" }, "bbox": [ -0.6448885, 51.0870871, -0.6448885, 51.0870871 ], "geometry": { "type": "Point", "coordinates": [ -0.6448885, 51.0870871 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95320584" }, "bbox": [ -0.6442266, 51.0869976, -0.6442266, 51.0869976 ], "geometry": { "type": "Point", "coordinates": [ -0.6442266, 51.0869976 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02346124" }, "bbox": [ -0.5370244, 51.0983449, -0.5370244, 51.0983449 ], "geometry": { "type": "Point", "coordinates": [ -0.5370244, 51.0983449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02345022" }, "bbox": [ -0.5373221, 51.0980361, -0.5373221, 51.0980361 ], "geometry": { "type": "Point", "coordinates": [ -0.5373221, 51.0980361 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02344904" }, "bbox": [ -0.5376685, 51.096481, -0.5376685, 51.096481 ], "geometry": { "type": "Point", "coordinates": [ -0.5376685, 51.096481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02345911" }, "bbox": [ -0.5363574, 51.0971008, -0.5363574, 51.0971008 ], "geometry": { "type": "Point", "coordinates": [ -0.5363574, 51.0971008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02345212" }, "bbox": [ -0.5372514, 51.0973, -0.5372514, 51.0973 ], "geometry": { "type": "Point", "coordinates": [ -0.5372514, 51.0973 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02345224" }, "bbox": [ -0.5369577, 51.0985454, -0.5369577, 51.0985454 ], "geometry": { "type": "Point", "coordinates": [ -0.5369577, 51.0985454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32546660" }, "bbox": [ -0.0993629, 51.2751548, -0.0993629, 51.2751548 ], "geometry": { "type": "Point", "coordinates": [ -0.0993629, 51.2751548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32548870" }, "bbox": [ -0.0962515, 51.2760125, -0.0962515, 51.2760125 ], "geometry": { "type": "Point", "coordinates": [ -0.0962515, 51.2760125 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32547897" }, "bbox": [ -0.0979074, 51.2782388, -0.0979074, 51.2782388 ], "geometry": { "type": "Point", "coordinates": [ -0.0979074, 51.2782388 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32546244" }, "bbox": [ -0.1006714, 51.2738326, -0.1006714, 51.2738326 ], "geometry": { "type": "Point", "coordinates": [ -0.1006714, 51.2738326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32549692" }, "bbox": [ -0.0954075, 51.2779349, -0.0954075, 51.2779349 ], "geometry": { "type": "Point", "coordinates": [ -0.0954075, 51.2779349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32546472" }, "bbox": [ -0.0997901, 51.2761245, -0.0997901, 51.2761245 ], "geometry": { "type": "Point", "coordinates": [ -0.0997901, 51.2761245 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32545753" }, "bbox": [ -0.1011127, 51.2744919, -0.1011127, 51.2744919 ], "geometry": { "type": "Point", "coordinates": [ -0.1011127, 51.2744919 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32559418" }, "bbox": [ -0.095282, 51.2802303, -0.095282, 51.2802303 ], "geometry": { "type": "Point", "coordinates": [ -0.095282, 51.2802303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32558801" }, "bbox": [ -0.0970867, 51.2796752, -0.0970867, 51.2796752 ], "geometry": { "type": "Point", "coordinates": [ -0.0970867, 51.2796752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83428341" }, "bbox": [ -0.8021586, 51.1748287, -0.8021586, 51.1748287 ], "geometry": { "type": "Point", "coordinates": [ -0.8021586, 51.1748287 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06418525" }, "bbox": [ -0.4733214, 51.1605382, -0.4733214, 51.1605382 ], "geometry": { "type": "Point", "coordinates": [ -0.4733214, 51.1605382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06416024" }, "bbox": [ -0.4769236, 51.1604628, -0.4769236, 51.1604628 ], "geometry": { "type": "Point", "coordinates": [ -0.4769236, 51.1604628 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06419831" }, "bbox": [ -0.4714396, 51.1612027, -0.4714396, 51.1612027 ], "geometry": { "type": "Point", "coordinates": [ -0.4714396, 51.1612027 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93463577" }, "bbox": [ -0.6650634, 51.212126, -0.6650634, 51.212126 ], "geometry": { "type": "Point", "coordinates": [ -0.6650634, 51.212126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93461376" }, "bbox": [ -0.6679532, 51.2125671, -0.6679532, 51.2125671 ], "geometry": { "type": "Point", "coordinates": [ -0.6679532, 51.2125671 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91338980" }, "bbox": [ -0.6890671, 51.096227, -0.6890671, 51.096227 ], "geometry": { "type": "Point", "coordinates": [ -0.6890671, 51.096227 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04440298" }, "bbox": [ -0.5125709, 51.1945981, -0.5125709, 51.1945981 ], "geometry": { "type": "Point", "coordinates": [ -0.5125709, 51.1945981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03446744" }, "bbox": [ -0.5176922, 51.1892796, -0.5176922, 51.1892796 ], "geometry": { "type": "Point", "coordinates": [ -0.5176922, 51.1892796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447940" }, "bbox": [ -0.5160924, 51.1894321, -0.5160924, 51.1894321 ], "geometry": { "type": "Point", "coordinates": [ -0.5160924, 51.1894321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447152" }, "bbox": [ -0.517241, 51.1905063, -0.517241, 51.1905063 ], "geometry": { "type": "Point", "coordinates": [ -0.517241, 51.1905063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447846" }, "bbox": [ -0.5161402, 51.1899301, -0.5161402, 51.1899301 ], "geometry": { "type": "Point", "coordinates": [ -0.5161402, 51.1899301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447686" }, "bbox": [ -0.5162831, 51.193302, -0.5162831, 51.193302 ], "geometry": { "type": "Point", "coordinates": [ -0.5162831, 51.193302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447148" }, "bbox": [ -0.5172179, 51.1900964, -0.5172179, 51.1900964 ], "geometry": { "type": "Point", "coordinates": [ -0.5172179, 51.1900964 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447382" }, "bbox": [ -0.517011, 51.1933274, -0.517011, 51.1933274 ], "geometry": { "type": "Point", "coordinates": [ -0.517011, 51.1933274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448674" }, "bbox": [ -0.5151556, 51.1928371, -0.5151556, 51.1928371 ], "geometry": { "type": "Point", "coordinates": [ -0.5151556, 51.1928371 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03448737" }, "bbox": [ -0.514959, 51.1890972, -0.514959, 51.1890972 ], "geometry": { "type": "Point", "coordinates": [ -0.514959, 51.1890972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94394469" }, "bbox": [ -0.6511504, 51.1487195, -0.6511504, 51.1487195 ], "geometry": { "type": "Point", "coordinates": [ -0.6511504, 51.1487195 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94394735" }, "bbox": [ -0.6508577, 51.1455655, -0.6508577, 51.1455655 ], "geometry": { "type": "Point", "coordinates": [ -0.6508577, 51.1455655 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93388899" }, "bbox": [ -0.6591828, 51.1426413, -0.6591828, 51.1426413 ], "geometry": { "type": "Point", "coordinates": [ -0.6591828, 51.1426413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93389057" }, "bbox": [ -0.6591351, 51.1387343, -0.6591351, 51.1387343 ], "geometry": { "type": "Point", "coordinates": [ -0.6591351, 51.1387343 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93387741" }, "bbox": [ -0.6610982, 51.1373072, -0.6610982, 51.1373072 ], "geometry": { "type": "Point", "coordinates": [ -0.6610982, 51.1373072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93388551" }, "bbox": [ -0.6599986, 51.1381885, -0.6599986, 51.1381885 ], "geometry": { "type": "Point", "coordinates": [ -0.6599986, 51.1381885 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93388048" }, "bbox": [ -0.6606325, 51.1379462, -0.6606325, 51.1379462 ], "geometry": { "type": "Point", "coordinates": [ -0.6606325, 51.1379462 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93387754" }, "bbox": [ -0.6617263, 51.1383566, -0.6617263, 51.1383566 ], "geometry": { "type": "Point", "coordinates": [ -0.6617263, 51.1383566 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93388158" }, "bbox": [ -0.6604842, 51.138859, -0.6604842, 51.138859 ], "geometry": { "type": "Point", "coordinates": [ -0.6604842, 51.138859 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93388445" }, "bbox": [ -0.660077, 51.1376812, -0.660077, 51.1376812 ], "geometry": { "type": "Point", "coordinates": [ -0.660077, 51.1376812 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93388559" }, "bbox": [ -0.6599094, 51.138867, -0.6599094, 51.138867 ], "geometry": { "type": "Point", "coordinates": [ -0.6599094, 51.138867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93399107" }, "bbox": [ -0.6588747, 51.1431873, -0.6588747, 51.1431873 ], "geometry": { "type": "Point", "coordinates": [ -0.6588747, 51.1431873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04476142" }, "bbox": [ -0.5035223, 51.216416, -0.5035223, 51.216416 ], "geometry": { "type": "Point", "coordinates": [ -0.5035223, 51.216416 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05468285" }, "bbox": [ -0.4863396, 51.2110819, -0.4863396, 51.2110819 ], "geometry": { "type": "Point", "coordinates": [ -0.4863396, 51.2110819 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06479001" }, "bbox": [ -0.4709294, 51.2122769, -0.4709294, 51.2122769 ], "geometry": { "type": "Point", "coordinates": [ -0.4709294, 51.2122769 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06464830" }, "bbox": [ -0.4765215, 51.2058791, -0.4765215, 51.2058791 ], "geometry": { "type": "Point", "coordinates": [ -0.4765215, 51.2058791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06467289" }, "bbox": [ -0.4735866, 51.2112471, -0.4735866, 51.2112471 ], "geometry": { "type": "Point", "coordinates": [ -0.4735866, 51.2112471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466725" }, "bbox": [ -0.4741696, 51.2055285, -0.4741696, 51.2055285 ], "geometry": { "type": "Point", "coordinates": [ -0.4741696, 51.2055285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39412256" }, "bbox": [ -0.0105739, 51.1563374, -0.0105739, 51.1563374 ], "geometry": { "type": "Point", "coordinates": [ -0.0105739, 51.1563374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39413261" }, "bbox": [ -0.0092333, 51.1568772, -0.0092333, 51.1568772 ], "geometry": { "type": "Point", "coordinates": [ -0.0092333, 51.1568772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06468245" }, "bbox": [ -0.4722055, 51.2073198, -0.4722055, 51.2073198 ], "geometry": { "type": "Point", "coordinates": [ -0.4722055, 51.2073198 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06462864" }, "bbox": [ -0.4799045, 51.2091255, -0.4799045, 51.2091255 ], "geometry": { "type": "Point", "coordinates": [ -0.4799045, 51.2091255 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06466287" }, "bbox": [ -0.4749209, 51.2111662, -0.4749209, 51.2111662 ], "geometry": { "type": "Point", "coordinates": [ -0.4749209, 51.2111662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06469473" }, "bbox": [ -0.4704002, 51.2097678, -0.4704002, 51.2097678 ], "geometry": { "type": "Point", "coordinates": [ -0.4704002, 51.2097678 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05479302" }, "bbox": [ -0.4845782, 51.2119112, -0.4845782, 51.2119112 ], "geometry": { "type": "Point", "coordinates": [ -0.4845782, 51.2119112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05479506" }, "bbox": [ -0.4845438, 51.2128797, -0.4845438, 51.2128797 ], "geometry": { "type": "Point", "coordinates": [ -0.4845438, 51.2128797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05479151" }, "bbox": [ -0.4848221, 51.2170308, -0.4848221, 51.2170308 ], "geometry": { "type": "Point", "coordinates": [ -0.4848221, 51.2170308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11360794" }, "bbox": [ -0.4146186, 51.1204422, -0.4146186, 51.1204422 ], "geometry": { "type": "Point", "coordinates": [ -0.4146186, 51.1204422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11360539" }, "bbox": [ -0.4133233, 51.1161326, -0.4133233, 51.1161326 ], "geometry": { "type": "Point", "coordinates": [ -0.4133233, 51.1161326 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11361431" }, "bbox": [ -0.4136651, 51.1153131, -0.4136651, 51.1153131 ], "geometry": { "type": "Point", "coordinates": [ -0.4136651, 51.1153131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11361439" }, "bbox": [ -0.4133044, 51.1163044, -0.4133044, 51.1163044 ], "geometry": { "type": "Point", "coordinates": [ -0.4133044, 51.1163044 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11360405" }, "bbox": [ -0.41535, 51.1129506, -0.41535, 51.1129506 ], "geometry": { "type": "Point", "coordinates": [ -0.41535, 51.1129506 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11360714" }, "bbox": [ -0.4146955, 51.1138519, -0.4146955, 51.1138519 ], "geometry": { "type": "Point", "coordinates": [ -0.4146955, 51.1138519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10340180" }, "bbox": [ -0.4301089, 51.1021563, -0.4301089, 51.1021563 ], "geometry": { "type": "Point", "coordinates": [ -0.4301089, 51.1021563 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83406868" }, "bbox": [ -0.8045189, 51.1593332, -0.8045189, 51.1593332 ], "geometry": { "type": "Point", "coordinates": [ -0.8045189, 51.1593332 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83409279" }, "bbox": [ -0.8012482, 51.1602695, -0.8012482, 51.1602695 ], "geometry": { "type": "Point", "coordinates": [ -0.8012482, 51.1602695 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407284" }, "bbox": [ -0.8040892, 51.1607183, -0.8040892, 51.1607183 ], "geometry": { "type": "Point", "coordinates": [ -0.8040892, 51.1607183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408994" }, "bbox": [ -0.801654, 51.1615571, -0.801654, 51.1615571 ], "geometry": { "type": "Point", "coordinates": [ -0.801654, 51.1615571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408282" }, "bbox": [ -0.8027762, 51.1605134, -0.8027762, 51.1605134 ], "geometry": { "type": "Point", "coordinates": [ -0.8027762, 51.1605134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408588" }, "bbox": [ -0.8022338, 51.161024, -0.8022338, 51.161024 ], "geometry": { "type": "Point", "coordinates": [ -0.8022338, 51.161024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408964" }, "bbox": [ -0.801587, 51.1589839, -0.801587, 51.1589839 ], "geometry": { "type": "Point", "coordinates": [ -0.801587, 51.1589839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83409879" }, "bbox": [ -0.8003233, 51.1602689, -0.8003233, 51.1602689 ], "geometry": { "type": "Point", "coordinates": [ -0.8003233, 51.1602689 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408778" }, "bbox": [ -0.8020035, 51.160161, -0.8020035, 51.160161 ], "geometry": { "type": "Point", "coordinates": [ -0.8020035, 51.160161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408272" }, "bbox": [ -0.8026387, 51.1597124, -0.8026387, 51.1597124 ], "geometry": { "type": "Point", "coordinates": [ -0.8026387, 51.1597124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407397" }, "bbox": [ -0.8039475, 51.1619437, -0.8039475, 51.1619437 ], "geometry": { "type": "Point", "coordinates": [ -0.8039475, 51.1619437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83409392" }, "bbox": [ -0.8008741, 51.1612621, -0.8008741, 51.1612621 ], "geometry": { "type": "Point", "coordinates": [ -0.8008741, 51.1612621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83409184" }, "bbox": [ -0.8014445, 51.1606884, -0.8014445, 51.1606884 ], "geometry": { "type": "Point", "coordinates": [ -0.8014445, 51.1606884 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407572" }, "bbox": [ -0.8033361, 51.1594542, -0.8033361, 51.1594542 ], "geometry": { "type": "Point", "coordinates": [ -0.8033361, 51.1594542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407892" }, "bbox": [ -0.8030819, 51.1615739, -0.8030819, 51.1615739 ], "geometry": { "type": "Point", "coordinates": [ -0.8030819, 51.1615739 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83407977" }, "bbox": [ -0.803302, 51.1600737, -0.803302, 51.1600737 ], "geometry": { "type": "Point", "coordinates": [ -0.803302, 51.1600737 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU83408683" }, "bbox": [ -0.8023314, 51.1603682, -0.8023314, 51.1603682 ], "geometry": { "type": "Point", "coordinates": [ -0.8023314, 51.1603682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14424988" }, "bbox": [ -0.3643874, 51.1736705, -0.3643874, 51.1736705 ], "geometry": { "type": "Point", "coordinates": [ -0.3643874, 51.1736705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13423677" }, "bbox": [ -0.3797333, 51.1729321, -0.3797333, 51.1729321 ], "geometry": { "type": "Point", "coordinates": [ -0.3797333, 51.1729321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13422781" }, "bbox": [ -0.3814947, 51.1732122, -0.3814947, 51.1732122 ], "geometry": { "type": "Point", "coordinates": [ -0.3814947, 51.1732122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13421585" }, "bbox": [ -0.3829323, 51.1739348, -0.3829323, 51.1739348 ], "geometry": { "type": "Point", "coordinates": [ -0.3829323, 51.1739348 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10428226" }, "bbox": [ -0.4162567, 51.1689091, -0.4162567, 51.1689091 ], "geometry": { "type": "Point", "coordinates": [ -0.4162567, 51.1689091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10426607" }, "bbox": [ -0.4185498, 51.1672244, -0.4185498, 51.1672244 ], "geometry": { "type": "Point", "coordinates": [ -0.4185498, 51.1672244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10429714" }, "bbox": [ -0.4134424, 51.1677653, -0.4134424, 51.1677653 ], "geometry": { "type": "Point", "coordinates": [ -0.4134424, 51.1677653 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10428919" }, "bbox": [ -0.4155382, 51.1679131, -0.4155382, 51.1679131 ], "geometry": { "type": "Point", "coordinates": [ -0.4155382, 51.1679131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10427320" }, "bbox": [ -0.4175695, 51.1683772, -0.4175695, 51.1683772 ], "geometry": { "type": "Point", "coordinates": [ -0.4175695, 51.1683772 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10427502" }, "bbox": [ -0.41729, 51.1665686, -0.41729, 51.1665686 ], "geometry": { "type": "Point", "coordinates": [ -0.41729, 51.1665686 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10427111" }, "bbox": [ -0.4181341, 51.1676837, -0.4181341, 51.1676837 ], "geometry": { "type": "Point", "coordinates": [ -0.4181341, 51.1676837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10428401" }, "bbox": [ -0.4158327, 51.1666967, -0.4158327, 51.1666967 ], "geometry": { "type": "Point", "coordinates": [ -0.4158327, 51.1666967 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10428116" }, "bbox": [ -0.4164892, 51.16826, -0.4164892, 51.16826 ], "geometry": { "type": "Point", "coordinates": [ -0.4164892, 51.16826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10418676" }, "bbox": [ -0.4158233, 51.1644378, -0.4158233, 51.1644378 ], "geometry": { "type": "Point", "coordinates": [ -0.4158233, 51.1644378 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10419881" }, "bbox": [ -0.4145232, 51.1650203, -0.4145232, 51.1650203 ], "geometry": { "type": "Point", "coordinates": [ -0.4145232, 51.1650203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10419297" }, "bbox": [ -0.4150037, 51.1662448, -0.4150037, 51.1662448 ], "geometry": { "type": "Point", "coordinates": [ -0.4150037, 51.1662448 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35532315" }, "bbox": [ -0.062761, 51.2613815, -0.062761, 51.2613815 ], "geometry": { "type": "Point", "coordinates": [ -0.062761, 51.2613815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35531515" }, "bbox": [ -0.0644943, 51.2615382, -0.0644943, 51.2615382 ], "geometry": { "type": "Point", "coordinates": [ -0.0644943, 51.2615382 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35540503" }, "bbox": [ -0.0653816, 51.2695133, -0.0653816, 51.2695133 ], "geometry": { "type": "Point", "coordinates": [ -0.0653816, 51.2695133 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34489078" }, "bbox": [ -0.0696988, 51.2222846, -0.0696988, 51.2222846 ], "geometry": { "type": "Point", "coordinates": [ -0.0696988, 51.2222846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35483983" }, "bbox": [ -0.0625941, 51.222684, -0.0625941, 51.222684 ], "geometry": { "type": "Point", "coordinates": [ -0.0625941, 51.222684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35484193" }, "bbox": [ -0.0623527, 51.2235643, -0.0623527, 51.2235643 ], "geometry": { "type": "Point", "coordinates": [ -0.0623527, 51.2235643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35483191" }, "bbox": [ -0.0650613, 51.223494, -0.0650613, 51.223494 ], "geometry": { "type": "Point", "coordinates": [ -0.0650613, 51.223494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35481673" }, "bbox": [ -0.0659086, 51.2219875, -0.0659086, 51.2219875 ], "geometry": { "type": "Point", "coordinates": [ -0.0659086, 51.2219875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ34498204" }, "bbox": [ -0.0707075, 51.224635, -0.0707075, 51.224635 ], "geometry": { "type": "Point", "coordinates": [ -0.0707075, 51.224635 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35482979" }, "bbox": [ -0.0639588, 51.222345, -0.0639588, 51.222345 ], "geometry": { "type": "Point", "coordinates": [ -0.0639588, 51.222345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35481971" }, "bbox": [ -0.0655438, 51.2215886, -0.0655438, 51.2215886 ], "geometry": { "type": "Point", "coordinates": [ -0.0655438, 51.2215886 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493167" }, "bbox": [ -0.0633965, 51.2302513, -0.0633965, 51.2302513 ], "geometry": { "type": "Point", "coordinates": [ -0.0633965, 51.2302513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493466" }, "bbox": [ -0.0630472, 51.2300914, -0.0630472, 51.2300914 ], "geometry": { "type": "Point", "coordinates": [ -0.0630472, 51.2300914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ35493365" }, "bbox": [ -0.0631332, 51.2300021, -0.0631332, 51.2300021 ], "geometry": { "type": "Point", "coordinates": [ -0.0631332, 51.2300021 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24470297" }, "bbox": [ -0.2254295, 51.2175631, -0.2254295, 51.2175631 ], "geometry": { "type": "Point", "coordinates": [ -0.2254295, 51.2175631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11438194" }, "bbox": [ -0.401337, 51.1825966, -0.401337, 51.1825966 ], "geometry": { "type": "Point", "coordinates": [ -0.401337, 51.1825966 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11449212" }, "bbox": [ -0.400088, 51.1853429, -0.400088, 51.1853429 ], "geometry": { "type": "Point", "coordinates": [ -0.400088, 51.1853429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09451821" }, "bbox": [ -0.438883, 51.1956521, -0.438883, 51.1956521 ], "geometry": { "type": "Point", "coordinates": [ -0.438883, 51.1956521 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09452119" }, "bbox": [ -0.4384944, 51.1955291, -0.4384944, 51.1955291 ], "geometry": { "type": "Point", "coordinates": [ -0.4384944, 51.1955291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09451617" }, "bbox": [ -0.439241, 51.1950866, -0.439241, 51.1950866 ], "geometry": { "type": "Point", "coordinates": [ -0.439241, 51.1950866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08447368" }, "bbox": [ -0.4455638, 51.1911606, -0.4455638, 51.1911606 ], "geometry": { "type": "Point", "coordinates": [ -0.4455638, 51.1911606 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25463570" }, "bbox": [ -0.206797, 51.2058887, -0.206797, 51.2058887 ], "geometry": { "type": "Point", "coordinates": [ -0.206797, 51.2058887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04390103" }, "bbox": [ -0.5143363, 51.1410936, -0.5143363, 51.1410936 ], "geometry": { "type": "Point", "coordinates": [ -0.5143363, 51.1410936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04383395" }, "bbox": [ -0.5093353, 51.1403469, -0.5093353, 51.1403469 ], "geometry": { "type": "Point", "coordinates": [ -0.5093353, 51.1403469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04374612" }, "bbox": [ -0.5086476, 51.1238736, -0.5086476, 51.1238736 ], "geometry": { "type": "Point", "coordinates": [ -0.5086476, 51.1238736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16370920" }, "bbox": [ -0.3425051, 51.1224316, -0.3425051, 51.1224316 ], "geometry": { "type": "Point", "coordinates": [ -0.3425051, 51.1224316 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39467646" }, "bbox": [ -0.0010488, 51.2002187, -0.0010488, 51.2002187 ], "geometry": { "type": "Point", "coordinates": [ -0.0010488, 51.2002187 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39468249" }, "bbox": [ -0.0004804, 51.2004492, -0.0004804, 51.2004492 ], "geometry": { "type": "Point", "coordinates": [ -0.0004804, 51.2004492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42456085" }, "bbox": [ 0.039286, 51.1940894, 0.039286, 51.1940894 ], "geometry": { "type": "Point", "coordinates": [ 0.039286, 51.1940894 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42453073" }, "bbox": [ 0.0352754, 51.1931267, 0.0352754, 51.1931267 ], "geometry": { "type": "Point", "coordinates": [ 0.0352754, 51.1931267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42457276" }, "bbox": [ 0.0409826, 51.1932845, 0.0409826, 51.1932845 ], "geometry": { "type": "Point", "coordinates": [ 0.0409826, 51.1932845 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42456055" }, "bbox": [ 0.0393211, 51.1915905, 0.0393211, 51.1915905 ], "geometry": { "type": "Point", "coordinates": [ 0.0393211, 51.1915905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42456167" }, "bbox": [ 0.0397647, 51.1923648, 0.0397647, 51.1923648 ], "geometry": { "type": "Point", "coordinates": [ 0.0397647, 51.1923648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41509774" }, "bbox": [ 0.0328907, 51.2383004, 0.0328907, 51.2383004 ], "geometry": { "type": "Point", "coordinates": [ 0.0328907, 51.2383004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42501284" }, "bbox": [ 0.034368, 51.2385384, 0.034368, 51.2385384 ], "geometry": { "type": "Point", "coordinates": [ 0.034368, 51.2385384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42512845" }, "bbox": [ 0.0362787, 51.2442432, 0.0362787, 51.2442432 ], "geometry": { "type": "Point", "coordinates": [ 0.0362787, 51.2442432 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42512607" }, "bbox": [ 0.03659, 51.2409873, 0.03659, 51.2409873 ], "geometry": { "type": "Point", "coordinates": [ 0.03659, 51.2409873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43512321" }, "bbox": [ 0.0505575, 51.2421037, 0.0505575, 51.2421037 ], "geometry": { "type": "Point", "coordinates": [ 0.0505575, 51.2421037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43515621" }, "bbox": [ 0.0552924, 51.2419267, 0.0552924, 51.2419267 ], "geometry": { "type": "Point", "coordinates": [ 0.0552924, 51.2419267 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43515118" }, "bbox": [ 0.0545657, 51.2417728, 0.0545657, 51.2417728 ], "geometry": { "type": "Point", "coordinates": [ 0.0545657, 51.2417728 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43514918" }, "bbox": [ 0.0538028, 51.2418745, 0.0538028, 51.2418745 ], "geometry": { "type": "Point", "coordinates": [ 0.0538028, 51.2418745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ43512626" }, "bbox": [ 0.0506995, 51.2425383, 0.0506995, 51.2425383 ], "geometry": { "type": "Point", "coordinates": [ 0.0506995, 51.2425383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39461788" }, "bbox": [ -0.0091253, 51.2042529, -0.0091253, 51.2042529 ], "geometry": { "type": "Point", "coordinates": [ -0.0091253, 51.2042529 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38477899" }, "bbox": [ -0.0144988, 51.2143016, -0.0144988, 51.2143016 ], "geometry": { "type": "Point", "coordinates": [ -0.0144988, 51.2143016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39460526" }, "bbox": [ -0.0112135, 51.1986485, -0.0112135, 51.1986485 ], "geometry": { "type": "Point", "coordinates": [ -0.0112135, 51.1986485 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39470188" }, "bbox": [ -0.0110862, 51.213171, -0.0110862, 51.213171 ], "geometry": { "type": "Point", "coordinates": [ -0.0110862, 51.213171 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38486703" }, "bbox": [ -0.0157156, 51.214592, -0.0157156, 51.214592 ], "geometry": { "type": "Point", "coordinates": [ -0.0157156, 51.214592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549880" }, "bbox": [ -0.195254, 51.2783253, -0.195254, 51.2783253 ], "geometry": { "type": "Point", "coordinates": [ -0.195254, 51.2783253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549888" }, "bbox": [ -0.1951271, 51.2791331, -0.1951271, 51.2791331 ], "geometry": { "type": "Point", "coordinates": [ -0.1951271, 51.2791331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549683" }, "bbox": [ -0.1956624, 51.2791052, -0.1956624, 51.2791052 ], "geometry": { "type": "Point", "coordinates": [ -0.1956624, 51.2791052 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549983" }, "bbox": [ -0.1950865, 51.2787011, -0.1950865, 51.2787011 ], "geometry": { "type": "Point", "coordinates": [ -0.1950865, 51.2787011 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25549381" }, "bbox": [ -0.1958282, 51.2785046, -0.1958282, 51.2785046 ], "geometry": { "type": "Point", "coordinates": [ -0.1958282, 51.2785046 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26533284" }, "bbox": [ -0.1906547, 51.2697139, -0.1906547, 51.2697139 ], "geometry": { "type": "Point", "coordinates": [ -0.1906547, 51.2697139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26533680" }, "bbox": [ -0.1899002, 51.2693192, -0.1899002, 51.2693192 ], "geometry": { "type": "Point", "coordinates": [ -0.1899002, 51.2693192 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26532982" }, "bbox": [ -0.190955, 51.2695231, -0.190955, 51.2695231 ], "geometry": { "type": "Point", "coordinates": [ -0.190955, 51.2695231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26541290" }, "bbox": [ -0.1928324, 51.2795427, -0.1928324, 51.2795427 ], "geometry": { "type": "Point", "coordinates": [ -0.1928324, 51.2795427 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26541186" }, "bbox": [ -0.1932675, 51.2789216, -0.1932675, 51.2789216 ], "geometry": { "type": "Point", "coordinates": [ -0.1932675, 51.2789216 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26540387" }, "bbox": [ -0.194594, 51.2791577, -0.194594, 51.2791577 ], "geometry": { "type": "Point", "coordinates": [ -0.194594, 51.2791577 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26540281" }, "bbox": [ -0.1946416, 51.2785306, -0.1946416, 51.2785306 ], "geometry": { "type": "Point", "coordinates": [ -0.1946416, 51.2785306 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26541297" }, "bbox": [ -0.1931472, 51.2799064, -0.1931472, 51.2799064 ], "geometry": { "type": "Point", "coordinates": [ -0.1931472, 51.2799064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26540980" }, "bbox": [ -0.1936139, 51.2784037, -0.1936139, 51.2784037 ], "geometry": { "type": "Point", "coordinates": [ -0.1936139, 51.2784037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26551700" }, "bbox": [ -0.1923703, 51.2801776, -0.1923703, 51.2801776 ], "geometry": { "type": "Point", "coordinates": [ -0.1923703, 51.2801776 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21541214" }, "bbox": [ -0.2647439, 51.2734221, -0.2647439, 51.2734221 ], "geometry": { "type": "Point", "coordinates": [ -0.2647439, 51.2734221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21531597" }, "bbox": [ -0.264448, 51.2716831, -0.264448, 51.2716831 ], "geometry": { "type": "Point", "coordinates": [ -0.264448, 51.2716831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21530496" }, "bbox": [ -0.2662242, 51.2720108, -0.2662242, 51.2720108 ], "geometry": { "type": "Point", "coordinates": [ -0.2662242, 51.2720108 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20539169" }, "bbox": [ -0.2679067, 51.2694134, -0.2679067, 51.2694134 ], "geometry": { "type": "Point", "coordinates": [ -0.2679067, 51.2694134 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20539773" }, "bbox": [ -0.2672444, 51.2700983, -0.2672444, 51.2700983 ], "geometry": { "type": "Point", "coordinates": [ -0.2672444, 51.2700983 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18406505" }, "bbox": [ -0.3050532, 51.1474467, -0.3050532, 51.1474467 ], "geometry": { "type": "Point", "coordinates": [ -0.3050532, 51.1474467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568046" }, "bbox": [ -0.0825286, 51.2915137, -0.0825286, 51.2915137 ], "geometry": { "type": "Point", "coordinates": [ -0.0825286, 51.2915137 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568547" }, "bbox": [ -0.0813111, 51.2917452, -0.0813111, 51.2917452 ], "geometry": { "type": "Point", "coordinates": [ -0.0813111, 51.2917452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33567838" }, "bbox": [ -0.0828134, 51.290801, -0.0828134, 51.290801 ], "geometry": { "type": "Point", "coordinates": [ -0.0828134, 51.290801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568733" }, "bbox": [ -0.0815932, 51.2904185, -0.0815932, 51.2904185 ], "geometry": { "type": "Point", "coordinates": [ -0.0815932, 51.2904185 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568037" }, "bbox": [ -0.0825258, 51.2907441, -0.0825258, 51.2907441 ], "geometry": { "type": "Point", "coordinates": [ -0.0825258, 51.2907441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568736" }, "bbox": [ -0.0815716, 51.2906941, -0.0815716, 51.2906941 ], "geometry": { "type": "Point", "coordinates": [ -0.0815716, 51.2906941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568642" }, "bbox": [ -0.0816139, 51.2911503, -0.0816139, 51.2911503 ], "geometry": { "type": "Point", "coordinates": [ -0.0816139, 51.2911503 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568639" }, "bbox": [ -0.0815717, 51.2909292, -0.0815717, 51.2909292 ], "geometry": { "type": "Point", "coordinates": [ -0.0815717, 51.2909292 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568344" }, "bbox": [ -0.0820117, 51.2913662, -0.0820117, 51.2913662 ], "geometry": { "type": "Point", "coordinates": [ -0.0820117, 51.2913662 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33568944" }, "bbox": [ -0.0813127, 51.2914148, -0.0813127, 51.2914148 ], "geometry": { "type": "Point", "coordinates": [ -0.0813127, 51.2914148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11539202" }, "bbox": [ -0.3971564, 51.2653514, -0.3971564, 51.2653514 ], "geometry": { "type": "Point", "coordinates": [ -0.3971564, 51.2653514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11539200" }, "bbox": [ -0.3972179, 51.265156, -0.3972179, 51.265156 ], "geometry": { "type": "Point", "coordinates": [ -0.3972179, 51.265156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11529198" }, "bbox": [ -0.3971856, 51.2649148, -0.3971856, 51.2649148 ], "geometry": { "type": "Point", "coordinates": [ -0.3971856, 51.2649148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527668" }, "bbox": [ -0.4140012, 51.2625259, -0.4140012, 51.2625259 ], "geometry": { "type": "Point", "coordinates": [ -0.4140012, 51.2625259 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527987" }, "bbox": [ -0.4137611, 51.2648851, -0.4137611, 51.2648851 ], "geometry": { "type": "Point", "coordinates": [ -0.4137611, 51.2648851 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527572" }, "bbox": [ -0.4141614, 51.2629486, -0.4141614, 51.2629486 ], "geometry": { "type": "Point", "coordinates": [ -0.4141614, 51.2629486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527068" }, "bbox": [ -0.414865, 51.2625219, -0.414865, 51.2625219 ], "geometry": { "type": "Point", "coordinates": [ -0.414865, 51.2625219 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10526488" }, "bbox": [ -0.4156565, 51.2643096, -0.4156565, 51.2643096 ], "geometry": { "type": "Point", "coordinates": [ -0.4156565, 51.2643096 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527575" }, "bbox": [ -0.4141207, 51.2633017, -0.4141207, 51.2633017 ], "geometry": { "type": "Point", "coordinates": [ -0.4141207, 51.2633017 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10526563" }, "bbox": [ -0.415436, 51.2620731, -0.415436, 51.2620731 ], "geometry": { "type": "Point", "coordinates": [ -0.415436, 51.2620731 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10528599" }, "bbox": [ -0.4124851, 51.2653054, -0.4124851, 51.2653054 ], "geometry": { "type": "Point", "coordinates": [ -0.4124851, 51.2653054 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10528491" }, "bbox": [ -0.412831, 51.2643486, -0.412831, 51.2643486 ], "geometry": { "type": "Point", "coordinates": [ -0.412831, 51.2643486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10526366" }, "bbox": [ -0.4158537, 51.2623866, -0.4158537, 51.2623866 ], "geometry": { "type": "Point", "coordinates": [ -0.4158537, 51.2623866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527777" }, "bbox": [ -0.4134141, 51.2634952, -0.4134141, 51.2634952 ], "geometry": { "type": "Point", "coordinates": [ -0.4134141, 51.2634952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527492" }, "bbox": [ -0.4144478, 51.2641931, -0.4144478, 51.2641931 ], "geometry": { "type": "Point", "coordinates": [ -0.4144478, 51.2641931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10527563" }, "bbox": [ -0.4141195, 51.2621848, -0.4141195, 51.2621848 ], "geometry": { "type": "Point", "coordinates": [ -0.4141195, 51.2621848 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89440008" }, "bbox": [ -0.7279318, 51.1890996, -0.7279318, 51.1890996 ], "geometry": { "type": "Point", "coordinates": [ -0.7279318, 51.1890996 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89441424" }, "bbox": [ -0.7257422, 51.1904891, -0.7257422, 51.1904891 ], "geometry": { "type": "Point", "coordinates": [ -0.7257422, 51.1904891 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89441320" }, "bbox": [ -0.7250662, 51.1899623, -0.7250662, 51.1899623 ], "geometry": { "type": "Point", "coordinates": [ -0.7250662, 51.1899623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09579508" }, "bbox": [ -0.4241899, 51.3022589, -0.4241899, 51.3022589 ], "geometry": { "type": "Point", "coordinates": [ -0.4241899, 51.3022589 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09579720" }, "bbox": [ -0.4241439, 51.3035594, -0.4241439, 51.3035594 ], "geometry": { "type": "Point", "coordinates": [ -0.4241439, 51.3035594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09575210" }, "bbox": [ -0.4292836, 51.302703, -0.4292836, 51.302703 ], "geometry": { "type": "Point", "coordinates": [ -0.4292836, 51.302703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09577505" }, "bbox": [ -0.4282496, 51.3014734, -0.4282496, 51.3014734 ], "geometry": { "type": "Point", "coordinates": [ -0.4282496, 51.3014734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09571225" }, "bbox": [ -0.4361224, 51.3039955, -0.4361224, 51.3039955 ], "geometry": { "type": "Point", "coordinates": [ -0.4361224, 51.3039955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09580409" }, "bbox": [ -0.4368326, 51.3115788, -0.4368326, 51.3115788 ], "geometry": { "type": "Point", "coordinates": [ -0.4368326, 51.3115788 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09584057" }, "bbox": [ -0.4318401, 51.3157649, -0.4318401, 51.3157649 ], "geometry": { "type": "Point", "coordinates": [ -0.4318401, 51.3157649 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99655972" }, "bbox": [ -0.5703258, 51.3818082, -0.5703258, 51.3818082 ], "geometry": { "type": "Point", "coordinates": [ -0.5703258, 51.3818082 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99657575" }, "bbox": [ -0.5688622, 51.3818726, -0.5688622, 51.3818726 ], "geometry": { "type": "Point", "coordinates": [ -0.5688622, 51.3818726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99655179" }, "bbox": [ -0.5713789, 51.3825151, -0.5713789, 51.3825151 ], "geometry": { "type": "Point", "coordinates": [ -0.5713789, 51.3825151 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99658581" }, "bbox": [ -0.5665934, 51.3827078, -0.5665934, 51.3827078 ], "geometry": { "type": "Point", "coordinates": [ -0.5665934, 51.3827078 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99669250" }, "bbox": [ -0.5653831, 51.388768, -0.5653831, 51.388768 ], "geometry": { "type": "Point", "coordinates": [ -0.5653831, 51.388768 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99667542" }, "bbox": [ -0.5686084, 51.387937, -0.5686084, 51.387937 ], "geometry": { "type": "Point", "coordinates": [ -0.5686084, 51.387937 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99649288" }, "bbox": [ -0.5658211, 51.3741854, -0.5658211, 51.3741854 ], "geometry": { "type": "Point", "coordinates": [ -0.5658211, 51.3741854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99647788" }, "bbox": [ -0.5685674, 51.3739936, -0.5685674, 51.3739936 ], "geometry": { "type": "Point", "coordinates": [ -0.5685674, 51.3739936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99648485" }, "bbox": [ -0.5668951, 51.3739413, -0.5668951, 51.3739413 ], "geometry": { "type": "Point", "coordinates": [ -0.5668951, 51.3739413 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99649589" }, "bbox": [ -0.5652929, 51.3742982, -0.5652929, 51.3742982 ], "geometry": { "type": "Point", "coordinates": [ -0.5652929, 51.3742982 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99646385" }, "bbox": [ -0.5696353, 51.3753592, -0.5696353, 51.3753592 ], "geometry": { "type": "Point", "coordinates": [ -0.5696353, 51.3753592 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99648786" }, "bbox": [ -0.5663503, 51.3740736, -0.5663503, 51.3740736 ], "geometry": { "type": "Point", "coordinates": [ -0.5663503, 51.3740736 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08720109" }, "bbox": [ -0.4474915, 51.4375321, -0.4474915, 51.4375321 ], "geometry": { "type": "Point", "coordinates": [ -0.4474915, 51.4375321 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728106" }, "bbox": [ -0.4503753, 51.4372522, -0.4503753, 51.4372522 ], "geometry": { "type": "Point", "coordinates": [ -0.4503753, 51.4372522 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728512" }, "bbox": [ -0.4500126, 51.4379743, -0.4500126, 51.4379743 ], "geometry": { "type": "Point", "coordinates": [ -0.4500126, 51.4379743 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07729010" }, "bbox": [ -0.4492278, 51.4376726, -0.4492278, 51.4376726 ], "geometry": { "type": "Point", "coordinates": [ -0.4492278, 51.4376726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728310" }, "bbox": [ -0.4500946, 51.437667, -0.4500946, 51.437667 ], "geometry": { "type": "Point", "coordinates": [ -0.4500946, 51.437667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728405" }, "bbox": [ -0.4498334, 51.4370166, -0.4498334, 51.4370166 ], "geometry": { "type": "Point", "coordinates": [ -0.4498334, 51.4370166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07729013" }, "bbox": [ -0.4490894, 51.4379249, -0.4490894, 51.4379249 ], "geometry": { "type": "Point", "coordinates": [ -0.4490894, 51.4379249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728610" }, "bbox": [ -0.4495767, 51.4377625, -0.4495767, 51.4377625 ], "geometry": { "type": "Point", "coordinates": [ -0.4495767, 51.4377625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728806" }, "bbox": [ -0.4492959, 51.4373003, -0.4492959, 51.4373003 ], "geometry": { "type": "Point", "coordinates": [ -0.4492959, 51.4373003 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07728506" }, "bbox": [ -0.4497031, 51.4372591, -0.4497031, 51.4372591 ], "geometry": { "type": "Point", "coordinates": [ -0.4497031, 51.4372591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465457" }, "bbox": [ -0.4333405, 51.2079115, -0.4333405, 51.2079115 ], "geometry": { "type": "Point", "coordinates": [ -0.4333405, 51.2079115 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465068" }, "bbox": [ -0.4338497, 51.2089016, -0.4338497, 51.2089016 ], "geometry": { "type": "Point", "coordinates": [ -0.4338497, 51.2089016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09464669" }, "bbox": [ -0.4343902, 51.2089682, -0.4343902, 51.2089682 ], "geometry": { "type": "Point", "coordinates": [ -0.4343902, 51.2089682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465471" }, "bbox": [ -0.4331642, 51.2087, -0.4331642, 51.2087 ], "geometry": { "type": "Point", "coordinates": [ -0.4331642, 51.2087 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465577" }, "bbox": [ -0.43308, 51.2096147, -0.43308, 51.2096147 ], "geometry": { "type": "Point", "coordinates": [ -0.43308, 51.2096147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465872" }, "bbox": [ -0.4326338, 51.2091962, -0.4326338, 51.2091962 ], "geometry": { "type": "Point", "coordinates": [ -0.4326338, 51.2091962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09465472" }, "bbox": [ -0.4325031, 51.2091876, -0.4325031, 51.2091876 ], "geometry": { "type": "Point", "coordinates": [ -0.4325031, 51.2091876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09466165" }, "bbox": [ -0.4323363, 51.2085049, -0.4323363, 51.2085049 ], "geometry": { "type": "Point", "coordinates": [ -0.4323363, 51.2085049 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09464877" }, "bbox": [ -0.4339397, 51.2095608, -0.4339397, 51.2095608 ], "geometry": { "type": "Point", "coordinates": [ -0.4339397, 51.2095608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93518925" }, "bbox": [ -0.6559787, 51.2527699, -0.6559787, 51.2527699 ], "geometry": { "type": "Point", "coordinates": [ -0.6559787, 51.2527699 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16527907" }, "bbox": [ -0.3278635, 51.255947, -0.3278635, 51.255947 ], "geometry": { "type": "Point", "coordinates": [ -0.3278635, 51.255947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37433738" }, "bbox": [ -0.0363451, 51.1731433, -0.0363451, 51.1731433 ], "geometry": { "type": "Point", "coordinates": [ -0.0363451, 51.1731433 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37432954" }, "bbox": [ -0.0373696, 51.1746703, -0.0373696, 51.1746703 ], "geometry": { "type": "Point", "coordinates": [ -0.0373696, 51.1746703 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37437994" }, "bbox": [ -0.030332, 51.1782988, -0.030332, 51.1782988 ], "geometry": { "type": "Point", "coordinates": [ -0.030332, 51.1782988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37434358" }, "bbox": [ -0.0353582, 51.1750075, -0.0353582, 51.1750075 ], "geometry": { "type": "Point", "coordinates": [ -0.0353582, 51.1750075 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37434946" }, "bbox": [ -0.034548, 51.1739247, -0.034548, 51.1739247 ], "geometry": { "type": "Point", "coordinates": [ -0.034548, 51.1739247 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37434071" }, "bbox": [ -0.0359609, 51.176127, -0.0359609, 51.176127 ], "geometry": { "type": "Point", "coordinates": [ -0.0359609, 51.176127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37436394" }, "bbox": [ -0.0324275, 51.1781253, -0.0324275, 51.1781253 ], "geometry": { "type": "Point", "coordinates": [ -0.0324275, 51.1781253 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37435324" }, "bbox": [ -0.0341746, 51.1718712, -0.0341746, 51.1718712 ], "geometry": { "type": "Point", "coordinates": [ -0.0341746, 51.1718712 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38432892" }, "bbox": [ -0.02279, 51.1778317, -0.02279, 51.1778317 ], "geometry": { "type": "Point", "coordinates": [ -0.02279, 51.1778317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14510183" }, "bbox": [ -0.3683596, 51.2543824, -0.3683596, 51.2543824 ], "geometry": { "type": "Point", "coordinates": [ -0.3683596, 51.2543824 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13519596" }, "bbox": [ -0.3682362, 51.2552454, -0.3682362, 51.2552454 ], "geometry": { "type": "Point", "coordinates": [ -0.3682362, 51.2552454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12503561" }, "bbox": [ -0.3921397, 51.2436818, -0.3921397, 51.2436818 ], "geometry": { "type": "Point", "coordinates": [ -0.3921397, 51.2436818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12503071" }, "bbox": [ -0.3925912, 51.2445173, -0.3925912, 51.2445173 ], "geometry": { "type": "Point", "coordinates": [ -0.3925912, 51.2445173 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12502888" }, "bbox": [ -0.3928006, 51.2460191, -0.3928006, 51.2460191 ], "geometry": { "type": "Point", "coordinates": [ -0.3928006, 51.2460191 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20494208" }, "bbox": [ -0.2767652, 51.2280869, -0.2767652, 51.2280869 ], "geometry": { "type": "Point", "coordinates": [ -0.2767652, 51.2280869 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14366577" }, "bbox": [ -0.3633111, 51.1187377, -0.3633111, 51.1187377 ], "geometry": { "type": "Point", "coordinates": [ -0.3633111, 51.1187377 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15373409" }, "bbox": [ -0.3528879, 51.1215166, -0.3528879, 51.1215166 ], "geometry": { "type": "Point", "coordinates": [ -0.3528879, 51.1215166 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15377635" }, "bbox": [ -0.3472218, 51.1238238, -0.3472218, 51.1238238 ], "geometry": { "type": "Point", "coordinates": [ -0.3472218, 51.1238238 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15378235" }, "bbox": [ -0.3461178, 51.1236674, -0.3461178, 51.1236674 ], "geometry": { "type": "Point", "coordinates": [ -0.3461178, 51.1236674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00437557" }, "bbox": [ -0.5598469, 51.1825794, -0.5598469, 51.1825794 ], "geometry": { "type": "Point", "coordinates": [ -0.5598469, 51.1825794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00438101" }, "bbox": [ -0.5589627, 51.1774591, -0.5589627, 51.1774591 ], "geometry": { "type": "Point", "coordinates": [ -0.5589627, 51.1774591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00446532" }, "bbox": [ -0.5613908, 51.1883905, -0.5613908, 51.1883905 ], "geometry": { "type": "Point", "coordinates": [ -0.5613908, 51.1883905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00445814" }, "bbox": [ -0.5620385, 51.1875264, -0.5620385, 51.1875264 ], "geometry": { "type": "Point", "coordinates": [ -0.5620385, 51.1875264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00447750" }, "bbox": [ -0.5593452, 51.1908734, -0.5593452, 51.1908734 ], "geometry": { "type": "Point", "coordinates": [ -0.5593452, 51.1908734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00447847" }, "bbox": [ -0.5592916, 51.1906053, -0.5592916, 51.1906053 ], "geometry": { "type": "Point", "coordinates": [ -0.5592916, 51.1906053 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00447726" }, "bbox": [ -0.5594567, 51.1887002, -0.5594567, 51.1887002 ], "geometry": { "type": "Point", "coordinates": [ -0.5594567, 51.1887002 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01430136" }, "bbox": [ -0.5561712, 51.1805554, -0.5561712, 51.1805554 ], "geometry": { "type": "Point", "coordinates": [ -0.5561712, 51.1805554 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12691451" }, "bbox": [ -0.3886778, 51.4125706, -0.3886778, 51.4125706 ], "geometry": { "type": "Point", "coordinates": [ -0.3886778, 51.4125706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12691541" }, "bbox": [ -0.3887207, 51.4123667, -0.3887207, 51.4123667 ], "geometry": { "type": "Point", "coordinates": [ -0.3887207, 51.4123667 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12691721" }, "bbox": [ -0.3886109, 51.4108131, -0.3886109, 51.4108131 ], "geometry": { "type": "Point", "coordinates": [ -0.3886109, 51.4108131 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12691137" }, "bbox": [ -0.389359, 51.4124962, -0.389359, 51.4124962 ], "geometry": { "type": "Point", "coordinates": [ -0.389359, 51.4124962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12691023" }, "bbox": [ -0.3895288, 51.4110127, -0.3895288, 51.4110127 ], "geometry": { "type": "Point", "coordinates": [ -0.3895288, 51.4110127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84400258" }, "bbox": [ -0.7997975, 51.1584024, -0.7997975, 51.1584024 ], "geometry": { "type": "Point", "coordinates": [ -0.7997975, 51.1584024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU84401765" }, "bbox": [ -0.7980721, 51.1590029, -0.7980721, 51.1590029 ], "geometry": { "type": "Point", "coordinates": [ -0.7980721, 51.1590029 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18413648" }, "bbox": [ -0.3087487, 51.1603475, -0.3087487, 51.1603475 ], "geometry": { "type": "Point", "coordinates": [ -0.3087487, 51.1603475 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18414834" }, "bbox": [ -0.3069801, 51.1592156, -0.3069801, 51.1592156 ], "geometry": { "type": "Point", "coordinates": [ -0.3069801, 51.1592156 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18413930" }, "bbox": [ -0.3083468, 51.1588288, -0.3083468, 51.1588288 ], "geometry": { "type": "Point", "coordinates": [ -0.3083468, 51.1588288 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18414458" }, "bbox": [ -0.3073306, 51.1612835, -0.3073306, 51.1612835 ], "geometry": { "type": "Point", "coordinates": [ -0.3073306, 51.1612835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18415265" }, "bbox": [ -0.3062614, 51.1618889, -0.3062614, 51.1618889 ], "geometry": { "type": "Point", "coordinates": [ -0.3062614, 51.1618889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17419895" }, "bbox": [ -0.3136445, 51.1644147, -0.3136445, 51.1644147 ], "geometry": { "type": "Point", "coordinates": [ -0.3136445, 51.1644147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95598457" }, "bbox": [ -0.6258362, 51.3271854, -0.6258362, 51.3271854 ], "geometry": { "type": "Point", "coordinates": [ -0.6258362, 51.3271854 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95597125" }, "bbox": [ -0.6277576, 51.3242765, -0.6277576, 51.3242765 ], "geometry": { "type": "Point", "coordinates": [ -0.6277576, 51.3242765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95597547" }, "bbox": [ -0.6271285, 51.3263389, -0.6271285, 51.3263389 ], "geometry": { "type": "Point", "coordinates": [ -0.6271285, 51.3263389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98350885" }, "bbox": [ -0.6002054, 51.1136574, -0.6002054, 51.1136574 ], "geometry": { "type": "Point", "coordinates": [ -0.6002054, 51.1136574 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98352216" }, "bbox": [ -0.5982918, 51.1074149, -0.5982918, 51.1074149 ], "geometry": { "type": "Point", "coordinates": [ -0.5982918, 51.1074149 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98353106" }, "bbox": [ -0.5969846, 51.1064942, -0.5969846, 51.1064942 ], "geometry": { "type": "Point", "coordinates": [ -0.5969846, 51.1064942 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98352841" }, "bbox": [ -0.5978854, 51.1096041, -0.5978854, 51.1096041 ], "geometry": { "type": "Point", "coordinates": [ -0.5978854, 51.1096041 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96358117" }, "bbox": [ -0.6181292, 51.1079939, -0.6181292, 51.1079939 ], "geometry": { "type": "Point", "coordinates": [ -0.6181292, 51.1079939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96358423" }, "bbox": [ -0.6180705, 51.1082422, -0.6180705, 51.1082422 ], "geometry": { "type": "Point", "coordinates": [ -0.6180705, 51.1082422 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98342794" }, "bbox": [ -0.5977653, 51.1054107, -0.5977653, 51.1054107 ], "geometry": { "type": "Point", "coordinates": [ -0.5977653, 51.1054107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97352866" }, "bbox": [ -0.6115648, 51.1119933, -0.6115648, 51.1119933 ], "geometry": { "type": "Point", "coordinates": [ -0.6115648, 51.1119933 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97359983" }, "bbox": [ -0.6015436, 51.1133913, -0.6015436, 51.1133913 ], "geometry": { "type": "Point", "coordinates": [ -0.6015436, 51.1133913 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353667" }, "bbox": [ -0.6105511, 51.1120688, -0.6105511, 51.1120688 ], "geometry": { "type": "Point", "coordinates": [ -0.6105511, 51.1120688 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97353467" }, "bbox": [ -0.6110063, 51.1122704, -0.6110063, 51.1122704 ], "geometry": { "type": "Point", "coordinates": [ -0.6110063, 51.1122704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96497807" }, "bbox": [ -0.6150822, 51.2327088, -0.6150822, 51.2327088 ], "geometry": { "type": "Point", "coordinates": [ -0.6150822, 51.2327088 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96498109" }, "bbox": [ -0.6146703, 51.2328555, -0.6146703, 51.2328555 ], "geometry": { "type": "Point", "coordinates": [ -0.6146703, 51.2328555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93628239" }, "bbox": [ -0.6543217, 51.352847, -0.6543217, 51.352847 ], "geometry": { "type": "Point", "coordinates": [ -0.6543217, 51.352847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93628550" }, "bbox": [ -0.6537877, 51.3536977, -0.6537877, 51.3536977 ], "geometry": { "type": "Point", "coordinates": [ -0.6537877, 51.3536977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99369576" }, "bbox": [ -0.5734415, 51.1214632, -0.5734415, 51.1214632 ], "geometry": { "type": "Point", "coordinates": [ -0.5734415, 51.1214632 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99369198" }, "bbox": [ -0.5738284, 51.1235855, -0.5738284, 51.1235855 ], "geometry": { "type": "Point", "coordinates": [ -0.5738284, 51.1235855 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99367774" }, "bbox": [ -0.5758169, 51.1211821, -0.5758169, 51.1211821 ], "geometry": { "type": "Point", "coordinates": [ -0.5758169, 51.1211821 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99369280" }, "bbox": [ -0.573638, 51.1218683, -0.573638, 51.1218683 ], "geometry": { "type": "Point", "coordinates": [ -0.573638, 51.1218683 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27523127" }, "bbox": [ -0.1769371, 51.2554611, -0.1769371, 51.2554611 ], "geometry": { "type": "Point", "coordinates": [ -0.1769371, 51.2554611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18445994" }, "bbox": [ -0.3043272, 51.1914004, -0.3043272, 51.1914004 ], "geometry": { "type": "Point", "coordinates": [ -0.3043272, 51.1914004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18447147" }, "bbox": [ -0.3027558, 51.187112, -0.3027558, 51.187112 ], "geometry": { "type": "Point", "coordinates": [ -0.3027558, 51.187112 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18441291" }, "bbox": [ -0.3110502, 51.1912101, -0.3110502, 51.1912101 ], "geometry": { "type": "Point", "coordinates": [ -0.3110502, 51.1912101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17439797" }, "bbox": [ -0.3134709, 51.1828271, -0.3134709, 51.1828271 ], "geometry": { "type": "Point", "coordinates": [ -0.3134709, 51.1828271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16434978" }, "bbox": [ -0.3346473, 51.1814157, -0.3346473, 51.1814157 ], "geometry": { "type": "Point", "coordinates": [ -0.3346473, 51.1814157 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18456901" }, "bbox": [ -0.3028899, 51.192004, -0.3028899, 51.192004 ], "geometry": { "type": "Point", "coordinates": [ -0.3028899, 51.192004 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03691424" }, "bbox": [ -0.5210257, 51.4135271, -0.5210257, 51.4135271 ], "geometry": { "type": "Point", "coordinates": [ -0.5210257, 51.4135271 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02696432" }, "bbox": [ -0.5257438, 51.4136355, -0.5257438, 51.4136355 ], "geometry": { "type": "Point", "coordinates": [ -0.5257438, 51.4136355 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02697858" }, "bbox": [ -0.5234802, 51.4159882, -0.5234802, 51.4159882 ], "geometry": { "type": "Point", "coordinates": [ -0.5234802, 51.4159882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02695647" }, "bbox": [ -0.5262936, 51.4148335, -0.5262936, 51.4148335 ], "geometry": { "type": "Point", "coordinates": [ -0.5262936, 51.4148335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02695239" }, "bbox": [ -0.5271549, 51.414273, -0.5271549, 51.414273 ], "geometry": { "type": "Point", "coordinates": [ -0.5271549, 51.414273 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10710731" }, "bbox": [ -0.4185068, 51.4294735, -0.4185068, 51.4294735 ], "geometry": { "type": "Point", "coordinates": [ -0.4185068, 51.4294735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10706261" }, "bbox": [ -0.4105982, 51.4237179, -0.4105982, 51.4237179 ], "geometry": { "type": "Point", "coordinates": [ -0.4105982, 51.4237179 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24419946" }, "bbox": [ -0.2143794, 51.1586367, -0.2143794, 51.1586367 ], "geometry": { "type": "Point", "coordinates": [ -0.2143794, 51.1586367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07480513" }, "bbox": [ -0.4685538, 51.2224016, -0.4685538, 51.2224016 ], "geometry": { "type": "Point", "coordinates": [ -0.4685538, 51.2224016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07479381" }, "bbox": [ -0.4559373, 51.2192691, -0.4559373, 51.2192691 ], "geometry": { "type": "Point", "coordinates": [ -0.4559373, 51.2192691 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06489812" }, "bbox": [ -0.4695117, 51.2222484, -0.4695117, 51.2222484 ], "geometry": { "type": "Point", "coordinates": [ -0.4695117, 51.2222484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07478974" }, "bbox": [ -0.4566921, 51.2185126, -0.4566921, 51.2185126 ], "geometry": { "type": "Point", "coordinates": [ -0.4566921, 51.2185126 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07470450" }, "bbox": [ -0.4686128, 51.2167451, -0.4686128, 51.2167451 ], "geometry": { "type": "Point", "coordinates": [ -0.4686128, 51.2167451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07479201" }, "bbox": [ -0.4563293, 51.2120449, -0.4563293, 51.2120449 ], "geometry": { "type": "Point", "coordinates": [ -0.4563293, 51.2120449 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07478479" }, "bbox": [ -0.4572245, 51.2191968, -0.4572245, 51.2191968 ], "geometry": { "type": "Point", "coordinates": [ -0.4572245, 51.2191968 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07462180" }, "bbox": [ -0.4665672, 51.2103729, -0.4665672, 51.2103729 ], "geometry": { "type": "Point", "coordinates": [ -0.4665672, 51.2103729 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21422371" }, "bbox": [ -0.2671536, 51.170975, -0.2671536, 51.170975 ], "geometry": { "type": "Point", "coordinates": [ -0.2671536, 51.170975 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21426730" }, "bbox": [ -0.2610688, 51.1668469, -0.2610688, 51.1668469 ], "geometry": { "type": "Point", "coordinates": [ -0.2610688, 51.1668469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420394" }, "bbox": [ -0.2557822, 51.1726709, -0.2557822, 51.1726709 ], "geometry": { "type": "Point", "coordinates": [ -0.2557822, 51.1726709 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22422289" }, "bbox": [ -0.2531831, 51.1721786, -0.2531831, 51.1721786 ], "geometry": { "type": "Point", "coordinates": [ -0.2531831, 51.1721786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22422193" }, "bbox": [ -0.2532178, 51.1725289, -0.2532178, 51.1725289 ], "geometry": { "type": "Point", "coordinates": [ -0.2532178, 51.1725289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420594" }, "bbox": [ -0.2554678, 51.1727176, -0.2554678, 51.1727176 ], "geometry": { "type": "Point", "coordinates": [ -0.2554678, 51.1727176 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421284" }, "bbox": [ -0.254491, 51.1717988, -0.254491, 51.1717988 ], "geometry": { "type": "Point", "coordinates": [ -0.254491, 51.1717988 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420297" }, "bbox": [ -0.2559984, 51.1729987, -0.2559984, 51.1729987 ], "geometry": { "type": "Point", "coordinates": [ -0.2559984, 51.1729987 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421595" }, "bbox": [ -0.2534363, 51.1728203, -0.2534363, 51.1728203 ], "geometry": { "type": "Point", "coordinates": [ -0.2534363, 51.1728203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420794" }, "bbox": [ -0.2552397, 51.1727113, -0.2552397, 51.1727113 ], "geometry": { "type": "Point", "coordinates": [ -0.2552397, 51.1727113 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421889" }, "bbox": [ -0.2536657, 51.1721914, -0.2536657, 51.1721914 ], "geometry": { "type": "Point", "coordinates": [ -0.2536657, 51.1721914 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420892" }, "bbox": [ -0.2551468, 51.1724801, -0.2551468, 51.1724801 ], "geometry": { "type": "Point", "coordinates": [ -0.2551468, 51.1724801 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420291" }, "bbox": [ -0.2559735, 51.1724621, -0.2559735, 51.1724621 ], "geometry": { "type": "Point", "coordinates": [ -0.2559735, 51.1724621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22422085" }, "bbox": [ -0.253751, 51.1716598, -0.253751, 51.1716598 ], "geometry": { "type": "Point", "coordinates": [ -0.253751, 51.1716598 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22422089" }, "bbox": [ -0.2534463, 51.1721765, -0.2534463, 51.1721765 ], "geometry": { "type": "Point", "coordinates": [ -0.2534463, 51.1721765 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421784" }, "bbox": [ -0.2538762, 51.1717797, -0.2538762, 51.1717797 ], "geometry": { "type": "Point", "coordinates": [ -0.2538762, 51.1717797 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420591" }, "bbox": [ -0.2555704, 51.1724383, -0.2555704, 51.1724383 ], "geometry": { "type": "Point", "coordinates": [ -0.2555704, 51.1724383 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421883" }, "bbox": [ -0.2537108, 51.1716934, -0.2537108, 51.1716934 ], "geometry": { "type": "Point", "coordinates": [ -0.2537108, 51.1716934 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420397" }, "bbox": [ -0.2556169, 51.1731196, -0.2556169, 51.1731196 ], "geometry": { "type": "Point", "coordinates": [ -0.2556169, 51.1731196 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22421986" }, "bbox": [ -0.2535837, 51.171941, -0.2535837, 51.171941 ], "geometry": { "type": "Point", "coordinates": [ -0.2535837, 51.171941 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22420597" }, "bbox": [ -0.2554868, 51.1729505, -0.2554868, 51.1729505 ], "geometry": { "type": "Point", "coordinates": [ -0.2554868, 51.1729505 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22431205" }, "bbox": [ -0.2546063, 51.1737095, -0.2546063, 51.1737095 ], "geometry": { "type": "Point", "coordinates": [ -0.2546063, 51.1737095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22432810" }, "bbox": [ -0.2521594, 51.1740795, -0.2521594, 51.1740795 ], "geometry": { "type": "Point", "coordinates": [ -0.2521594, 51.1740795 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22431917" }, "bbox": [ -0.2533487, 51.1748023, -0.2533487, 51.1748023 ], "geometry": { "type": "Point", "coordinates": [ -0.2533487, 51.1748023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23420502" }, "bbox": [ -0.2416554, 51.1641705, -0.2416554, 51.1641705 ], "geometry": { "type": "Point", "coordinates": [ -0.2416554, 51.1641705 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22430118" }, "bbox": [ -0.256117, 51.1749779, -0.256117, 51.1749779 ], "geometry": { "type": "Point", "coordinates": [ -0.256117, 51.1749779 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25428959" }, "bbox": [ -0.2007549, 51.168831, -0.2007549, 51.168831 ], "geometry": { "type": "Point", "coordinates": [ -0.2007549, 51.168831 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28582366" }, "bbox": [ -0.1616109, 51.3128354, -0.1616109, 51.3128354 ], "geometry": { "type": "Point", "coordinates": [ -0.1616109, 51.3128354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28582553" }, "bbox": [ -0.161316, 51.3114313, -0.161316, 51.3114313 ], "geometry": { "type": "Point", "coordinates": [ -0.161316, 51.3114313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28584393" }, "bbox": [ -0.1592007, 51.3147837, -0.1592007, 51.3147837 ], "geometry": { "type": "Point", "coordinates": [ -0.1592007, 51.3147837 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28581585" }, "bbox": [ -0.1628269, 51.3144327, -0.1628269, 51.3144327 ], "geometry": { "type": "Point", "coordinates": [ -0.1628269, 51.3144327 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28582863" }, "bbox": [ -0.1606959, 51.3123651, -0.1606959, 51.3123651 ], "geometry": { "type": "Point", "coordinates": [ -0.1606959, 51.3123651 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28583084" }, "bbox": [ -0.1604709, 51.3142545, -0.1604709, 51.3142545 ], "geometry": { "type": "Point", "coordinates": [ -0.1604709, 51.3142545 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19565555" }, "bbox": [ -0.2870691, 51.2957516, -0.2870691, 51.2957516 ], "geometry": { "type": "Point", "coordinates": [ -0.2870691, 51.2957516 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568634" }, "bbox": [ -0.2830615, 51.2938141, -0.2830615, 51.2938141 ], "geometry": { "type": "Point", "coordinates": [ -0.2830615, 51.2938141 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19568452" }, "bbox": [ -0.2827692, 51.2951478, -0.2827692, 51.2951478 ], "geometry": { "type": "Point", "coordinates": [ -0.2827692, 51.2951478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19569011" }, "bbox": [ -0.2819055, 51.291525, -0.2819055, 51.291525 ], "geometry": { "type": "Point", "coordinates": [ -0.2819055, 51.291525 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19569258" }, "bbox": [ -0.2813396, 51.2958559, -0.2813396, 51.2958559 ], "geometry": { "type": "Point", "coordinates": [ -0.2813396, 51.2958559 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19569627" }, "bbox": [ -0.2808874, 51.2930496, -0.2808874, 51.2930496 ], "geometry": { "type": "Point", "coordinates": [ -0.2808874, 51.2930496 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19554429" }, "bbox": [ -0.2888137, 51.2841569, -0.2888137, 51.2841569 ], "geometry": { "type": "Point", "coordinates": [ -0.2888137, 51.2841569 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92366164" }, "bbox": [ -0.6777537, 51.1214804, -0.6777537, 51.1214804 ], "geometry": { "type": "Point", "coordinates": [ -0.6777537, 51.1214804 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92655775" }, "bbox": [ -0.6709345, 51.3832064, -0.6709345, 51.3832064 ], "geometry": { "type": "Point", "coordinates": [ -0.6709345, 51.3832064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92658486" }, "bbox": [ -0.6672567, 51.3842353, -0.6672567, 51.3842353 ], "geometry": { "type": "Point", "coordinates": [ -0.6672567, 51.3842353 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92656474" }, "bbox": [ -0.6700622, 51.3831608, -0.6700622, 51.3831608 ], "geometry": { "type": "Point", "coordinates": [ -0.6700622, 51.3831608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92657782" }, "bbox": [ -0.6681784, 51.3839091, -0.6681784, 51.3839091 ], "geometry": { "type": "Point", "coordinates": [ -0.6681784, 51.3839091 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92657682" }, "bbox": [ -0.6683132, 51.3838517, -0.6683132, 51.3838517 ], "geometry": { "type": "Point", "coordinates": [ -0.6683132, 51.3838517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94425898" }, "bbox": [ -0.648127, 51.1784124, -0.648127, 51.1784124 ], "geometry": { "type": "Point", "coordinates": [ -0.648127, 51.1784124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94435409" }, "bbox": [ -0.6485429, 51.1794706, -0.6485429, 51.1794706 ], "geometry": { "type": "Point", "coordinates": [ -0.6485429, 51.1794706 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94439993" }, "bbox": [ -0.6421685, 51.1867291, -0.6421685, 51.1867291 ], "geometry": { "type": "Point", "coordinates": [ -0.6421685, 51.1867291 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94438898" }, "bbox": [ -0.6436971, 51.1872016, -0.6436971, 51.1872016 ], "geometry": { "type": "Point", "coordinates": [ -0.6436971, 51.1872016 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94439890" }, "bbox": [ -0.6425793, 51.1866223, -0.6425793, 51.1866223 ], "geometry": { "type": "Point", "coordinates": [ -0.6425793, 51.1866223 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95431872" }, "bbox": [ -0.6399421, 51.1848647, -0.6399421, 51.1848647 ], "geometry": { "type": "Point", "coordinates": [ -0.6399421, 51.1848647 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95430146" }, "bbox": [ -0.6421045, 51.1826146, -0.6421045, 51.1826146 ], "geometry": { "type": "Point", "coordinates": [ -0.6421045, 51.1826146 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10418153" }, "bbox": [ -0.417963, 51.1620958, -0.417963, 51.1620958 ], "geometry": { "type": "Point", "coordinates": [ -0.417963, 51.1620958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10413856" }, "bbox": [ -0.4227379, 51.1627403, -0.4227379, 51.1627403 ], "geometry": { "type": "Point", "coordinates": [ -0.4227379, 51.1627403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10413840" }, "bbox": [ -0.4228064, 51.1612209, -0.4228064, 51.1612209 ], "geometry": { "type": "Point", "coordinates": [ -0.4228064, 51.1612209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415926" }, "bbox": [ -0.419944, 51.1598568, -0.419944, 51.1598568 ], "geometry": { "type": "Point", "coordinates": [ -0.419944, 51.1598568 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415548" }, "bbox": [ -0.4202914, 51.1618932, -0.4202914, 51.1618932 ], "geometry": { "type": "Point", "coordinates": [ -0.4202914, 51.1618932 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415325" }, "bbox": [ -0.4218515, 51.1601835, -0.4218515, 51.1601835 ], "geometry": { "type": "Point", "coordinates": [ -0.4218515, 51.1601835 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415037" }, "bbox": [ -0.4213774, 51.1612625, -0.4213774, 51.1612625 ], "geometry": { "type": "Point", "coordinates": [ -0.4213774, 51.1612625 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10419067" }, "bbox": [ -0.4152018, 51.1635477, -0.4152018, 51.1635477 ], "geometry": { "type": "Point", "coordinates": [ -0.4152018, 51.1635477 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10414584" }, "bbox": [ -0.421589, 51.165147, -0.421589, 51.165147 ], "geometry": { "type": "Point", "coordinates": [ -0.421589, 51.165147 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415552" }, "bbox": [ -0.4205059, 51.1621867, -0.4205059, 51.1621867 ], "geometry": { "type": "Point", "coordinates": [ -0.4205059, 51.1621867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415845" }, "bbox": [ -0.4199977, 51.1616296, -0.4199977, 51.1616296 ], "geometry": { "type": "Point", "coordinates": [ -0.4199977, 51.1616296 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10414589" }, "bbox": [ -0.4217531, 51.1656089, -0.4217531, 51.1656089 ], "geometry": { "type": "Point", "coordinates": [ -0.4217531, 51.1656089 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10415639" }, "bbox": [ -0.4208408, 51.1609392, -0.4208408, 51.1609392 ], "geometry": { "type": "Point", "coordinates": [ -0.4208408, 51.1609392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87483716" }, "bbox": [ -0.7503668, 51.2259555, -0.7503668, 51.2259555 ], "geometry": { "type": "Point", "coordinates": [ -0.7503668, 51.2259555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87483002" }, "bbox": [ -0.751101, 51.2247344, -0.751101, 51.2247344 ], "geometry": { "type": "Point", "coordinates": [ -0.751101, 51.2247344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88480117" }, "bbox": [ -0.7408581, 51.2261542, -0.7408581, 51.2261542 ], "geometry": { "type": "Point", "coordinates": [ -0.7408581, 51.2261542 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88483537" }, "bbox": [ -0.7361373, 51.2276434, -0.7361373, 51.2276434 ], "geometry": { "type": "Point", "coordinates": [ -0.7361373, 51.2276434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24421738" }, "bbox": [ -0.2247656, 51.1671202, -0.2247656, 51.1671202 ], "geometry": { "type": "Point", "coordinates": [ -0.2247656, 51.1671202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23438115" }, "bbox": [ -0.2301654, 51.1742303, -0.2301654, 51.1742303 ], "geometry": { "type": "Point", "coordinates": [ -0.2301654, 51.1742303 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24429499" }, "bbox": [ -0.2142465, 51.17235, -0.2142465, 51.17235 ], "geometry": { "type": "Point", "coordinates": [ -0.2142465, 51.17235 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24439101" }, "bbox": [ -0.2145216, 51.17274, -0.2145216, 51.17274 ], "geometry": { "type": "Point", "coordinates": [ -0.2145216, 51.17274 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25430104" }, "bbox": [ -0.2133816, 51.1732174, -0.2133816, 51.1732174 ], "geometry": { "type": "Point", "coordinates": [ -0.2133816, 51.1732174 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86452423" }, "bbox": [ -0.7676214, 51.1997473, -0.7676214, 51.1997473 ], "geometry": { "type": "Point", "coordinates": [ -0.7676214, 51.1997473 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU86458884" }, "bbox": [ -0.7584094, 51.2053564, -0.7584094, 51.2053564 ], "geometry": { "type": "Point", "coordinates": [ -0.7584094, 51.2053564 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18554842" }, "bbox": [ -0.3024096, 51.2856286, -0.3024096, 51.2856286 ], "geometry": { "type": "Point", "coordinates": [ -0.3024096, 51.2856286 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18545262" }, "bbox": [ -0.3019873, 51.278467, -0.3019873, 51.278467 ], "geometry": { "type": "Point", "coordinates": [ -0.3019873, 51.278467 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18544482" }, "bbox": [ -0.3023334, 51.2813308, -0.3023334, 51.2813308 ], "geometry": { "type": "Point", "coordinates": [ -0.3023334, 51.2813308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17559124" }, "bbox": [ -0.3103608, 51.2842575, -0.3103608, 51.2842575 ], "geometry": { "type": "Point", "coordinates": [ -0.3103608, 51.2842575 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17556711" }, "bbox": [ -0.3141585, 51.2830033, -0.3141585, 51.2830033 ], "geometry": { "type": "Point", "coordinates": [ -0.3141585, 51.2830033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16556444" }, "bbox": [ -0.3288876, 51.2861679, -0.3288876, 51.2861679 ], "geometry": { "type": "Point", "coordinates": [ -0.3288876, 51.2861679 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16557035" }, "bbox": [ -0.3279938, 51.2855825, -0.3279938, 51.2855825 ], "geometry": { "type": "Point", "coordinates": [ -0.3279938, 51.2855825 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17545398" }, "bbox": [ -0.3162041, 51.2818232, -0.3162041, 51.2818232 ], "geometry": { "type": "Point", "coordinates": [ -0.3162041, 51.2818232 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30494691" }, "bbox": [ -0.1327274, 51.233451, -0.1327274, 51.233451 ], "geometry": { "type": "Point", "coordinates": [ -0.1327274, 51.233451 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30490775" }, "bbox": [ -0.1382761, 51.2321215, -0.1382761, 51.2321215 ], "geometry": { "type": "Point", "coordinates": [ -0.1382761, 51.2321215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498917" }, "bbox": [ -0.126699, 51.2266704, -0.126699, 51.2266704 ], "geometry": { "type": "Point", "coordinates": [ -0.126699, 51.2266704 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498943" }, "bbox": [ -0.1267548, 51.2290648, -0.1267548, 51.2290648 ], "geometry": { "type": "Point", "coordinates": [ -0.1267548, 51.2290648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30490582" }, "bbox": [ -0.1385573, 51.2327613, -0.1385573, 51.2327613 ], "geometry": { "type": "Point", "coordinates": [ -0.1385573, 51.2327613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498433" }, "bbox": [ -0.1274991, 51.2281802, -0.1274991, 51.2281802 ], "geometry": { "type": "Point", "coordinates": [ -0.1274991, 51.2281802 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30498928" }, "bbox": [ -0.1267438, 51.2276153, -0.1267438, 51.2276153 ], "geometry": { "type": "Point", "coordinates": [ -0.1267438, 51.2276153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06440338" }, "bbox": [ -0.4841625, 51.1889916, -0.4841625, 51.1889916 ], "geometry": { "type": "Point", "coordinates": [ -0.4841625, 51.1889916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05459107" }, "bbox": [ -0.4856601, 51.1949781, -0.4856601, 51.1949781 ], "geometry": { "type": "Point", "coordinates": [ -0.4856601, 51.1949781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06441159" }, "bbox": [ -0.4826353, 51.1907464, -0.4826353, 51.1907464 ], "geometry": { "type": "Point", "coordinates": [ -0.4826353, 51.1907464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06440657" }, "bbox": [ -0.4836732, 51.190514, -0.4836732, 51.190514 ], "geometry": { "type": "Point", "coordinates": [ -0.4836732, 51.190514 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06432229" }, "bbox": [ -0.4819311, 51.1790039, -0.4819311, 51.1790039 ], "geometry": { "type": "Point", "coordinates": [ -0.4819311, 51.1790039 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05449395" }, "bbox": [ -0.4853455, 51.1937055, -0.4853455, 51.1937055 ], "geometry": { "type": "Point", "coordinates": [ -0.4853455, 51.1937055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05449857" }, "bbox": [ -0.4848638, 51.1909608, -0.4848638, 51.1909608 ], "geometry": { "type": "Point", "coordinates": [ -0.4848638, 51.1909608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06429886" }, "bbox": [ -0.4709404, 51.1750727, -0.4709404, 51.1750727 ], "geometry": { "type": "Point", "coordinates": [ -0.4709404, 51.1750727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18501322" }, "bbox": [ -0.3091219, 51.2388716, -0.3091219, 51.2388716 ], "geometry": { "type": "Point", "coordinates": [ -0.3091219, 51.2388716 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18504146" }, "bbox": [ -0.3050446, 51.2411104, -0.3050446, 51.2411104 ], "geometry": { "type": "Point", "coordinates": [ -0.3050446, 51.2411104 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18500739" }, "bbox": [ -0.3098831, 51.2405356, -0.3098831, 51.2405356 ], "geometry": { "type": "Point", "coordinates": [ -0.3098831, 51.2405356 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18502331" }, "bbox": [ -0.3078082, 51.2398745, -0.3078082, 51.2398745 ], "geometry": { "type": "Point", "coordinates": [ -0.3078082, 51.2398745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ18506155" }, "bbox": [ -0.302464, 51.24202, -0.302464, 51.24202 ], "geometry": { "type": "Point", "coordinates": [ -0.302464, 51.24202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87429715" }, "bbox": [ -0.741961, 51.1698362, -0.741961, 51.1698362 ], "geometry": { "type": "Point", "coordinates": [ -0.741961, 51.1698362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87422058" }, "bbox": [ -0.7541016, 51.1756246, -0.7541016, 51.1756246 ], "geometry": { "type": "Point", "coordinates": [ -0.7541016, 51.1756246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87423158" }, "bbox": [ -0.7523599, 51.1757362, -0.7523599, 51.1757362 ], "geometry": { "type": "Point", "coordinates": [ -0.7523599, 51.1757362 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95526222" }, "bbox": [ -0.6310105, 51.2611791, -0.6310105, 51.2611791 ], "geometry": { "type": "Point", "coordinates": [ -0.6310105, 51.2611791 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU95525934" }, "bbox": [ -0.6314434, 51.2622977, -0.6314434, 51.2622977 ], "geometry": { "type": "Point", "coordinates": [ -0.6314434, 51.2622977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04360259" }, "bbox": [ -0.5152016, 51.1191749, -0.5152016, 51.1191749 ], "geometry": { "type": "Point", "coordinates": [ -0.5152016, 51.1191749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04360163" }, "bbox": [ -0.5153196, 51.1194523, -0.5153196, 51.1194523 ], "geometry": { "type": "Point", "coordinates": [ -0.5153196, 51.1194523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04350265" }, "bbox": [ -0.5153737, 51.1106204, -0.5153737, 51.1106204 ], "geometry": { "type": "Point", "coordinates": [ -0.5153737, 51.1106204 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05340395" }, "bbox": [ -0.5028723, 51.1086357, -0.5028723, 51.1086357 ], "geometry": { "type": "Point", "coordinates": [ -0.5028723, 51.1086357 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03358561" }, "bbox": [ -0.51773, 51.1103471, -0.51773, 51.1103471 ], "geometry": { "type": "Point", "coordinates": [ -0.51773, 51.1103471 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05334074" }, "bbox": [ -0.4961707, 51.0933289, -0.4961707, 51.0933289 ], "geometry": { "type": "Point", "coordinates": [ -0.4961707, 51.0933289 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04345941" }, "bbox": [ -0.5075642, 51.0994939, -0.5075642, 51.0994939 ], "geometry": { "type": "Point", "coordinates": [ -0.5075642, 51.0994939 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06363949" }, "bbox": [ -0.4814732, 51.1180523, -0.4814732, 51.1180523 ], "geometry": { "type": "Point", "coordinates": [ -0.4814732, 51.1180523 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05369519" }, "bbox": [ -0.4879076, 51.115436, -0.4879076, 51.115436 ], "geometry": { "type": "Point", "coordinates": [ -0.4879076, 51.115436 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01566035" }, "bbox": [ -0.5444259, 51.2971172, -0.5444259, 51.2971172 ], "geometry": { "type": "Point", "coordinates": [ -0.5444259, 51.2971172 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02556595" }, "bbox": [ -0.5290704, 51.293591, -0.5290704, 51.293591 ], "geometry": { "type": "Point", "coordinates": [ -0.5290704, 51.293591 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01567161" }, "bbox": [ -0.5422711, 51.2995434, -0.5422711, 51.2995434 ], "geometry": { "type": "Point", "coordinates": [ -0.5422711, 51.2995434 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01555441" }, "bbox": [ -0.5453388, 51.2888548, -0.5453388, 51.2888548 ], "geometry": { "type": "Point", "coordinates": [ -0.5453388, 51.2888548 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00559196" }, "bbox": [ -0.5540655, 51.293923, -0.5540655, 51.293923 ], "geometry": { "type": "Point", "coordinates": [ -0.5540655, 51.293923 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13494047" }, "bbox": [ -0.3771449, 51.2331526, -0.3771449, 51.2331526 ], "geometry": { "type": "Point", "coordinates": [ -0.3771449, 51.2331526 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14480599" }, "bbox": [ -0.3679753, 51.2286852, -0.3679753, 51.2286852 ], "geometry": { "type": "Point", "coordinates": [ -0.3679753, 51.2286852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13482702" }, "bbox": [ -0.3790882, 51.2196876, -0.3790882, 51.2196876 ], "geometry": { "type": "Point", "coordinates": [ -0.3790882, 51.2196876 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13483111" }, "bbox": [ -0.3788227, 51.2210063, -0.3788227, 51.2210063 ], "geometry": { "type": "Point", "coordinates": [ -0.3788227, 51.2210063 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13483412" }, "bbox": [ -0.3784142, 51.2210603, -0.3784142, 51.2210603 ], "geometry": { "type": "Point", "coordinates": [ -0.3784142, 51.2210603 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14473247" }, "bbox": [ -0.3643402, 51.2150947, -0.3643402, 51.2150947 ], "geometry": { "type": "Point", "coordinates": [ -0.3643402, 51.2150947 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14472655" }, "bbox": [ -0.3652793, 51.2157366, -0.3652793, 51.2157366 ], "geometry": { "type": "Point", "coordinates": [ -0.3652793, 51.2157366 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14472659" }, "bbox": [ -0.3656227, 51.2163572, -0.3656227, 51.2163572 ], "geometry": { "type": "Point", "coordinates": [ -0.3656227, 51.2163572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14474250" }, "bbox": [ -0.363108, 51.2152123, -0.363108, 51.2152123 ], "geometry": { "type": "Point", "coordinates": [ -0.363108, 51.2152123 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13470660" }, "bbox": [ -0.3825241, 51.2164725, -0.3825241, 51.2164725 ], "geometry": { "type": "Point", "coordinates": [ -0.3825241, 51.2164725 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37484166" }, "bbox": [ -0.0337252, 51.2206596, -0.0337252, 51.2206596 ], "geometry": { "type": "Point", "coordinates": [ -0.0337252, 51.2206596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37485249" }, "bbox": [ -0.0322103, 51.2190882, -0.0322103, 51.2190882 ], "geometry": { "type": "Point", "coordinates": [ -0.0322103, 51.2190882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37486147" }, "bbox": [ -0.0309153, 51.218751, -0.0309153, 51.218751 ], "geometry": { "type": "Point", "coordinates": [ -0.0309153, 51.218751 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37485471" }, "bbox": [ -0.0318602, 51.2211072, -0.0318602, 51.2211072 ], "geometry": { "type": "Point", "coordinates": [ -0.0318602, 51.2211072 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37471684" }, "bbox": [ -0.037918, 51.2132493, -0.037918, 51.2132493 ], "geometry": { "type": "Point", "coordinates": [ -0.037918, 51.2132493 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37475952" }, "bbox": [ -0.031675, 51.2103221, -0.031675, 51.2103221 ], "geometry": { "type": "Point", "coordinates": [ -0.031675, 51.2103221 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37474956" }, "bbox": [ -0.0326935, 51.2105803, -0.0326935, 51.2105803 ], "geometry": { "type": "Point", "coordinates": [ -0.0326935, 51.2105803 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ37474355" }, "bbox": [ -0.0338294, 51.2105669, -0.0338294, 51.2105669 ], "geometry": { "type": "Point", "coordinates": [ -0.0338294, 51.2105669 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02453864" }, "bbox": [ -0.5359841, 51.2008301, -0.5359841, 51.2008301 ], "geometry": { "type": "Point", "coordinates": [ -0.5359841, 51.2008301 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02451018" }, "bbox": [ -0.5400727, 51.1969127, -0.5400727, 51.1969127 ], "geometry": { "type": "Point", "coordinates": [ -0.5400727, 51.1969127 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01464141" }, "bbox": [ -0.5497701, 51.2077594, -0.5497701, 51.2077594 ], "geometry": { "type": "Point", "coordinates": [ -0.5497701, 51.2077594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02453068" }, "bbox": [ -0.5376261, 51.2006244, -0.5376261, 51.2006244 ], "geometry": { "type": "Point", "coordinates": [ -0.5376261, 51.2006244 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02452063" }, "bbox": [ -0.5374543, 51.2012379, -0.5374543, 51.2012379 ], "geometry": { "type": "Point", "coordinates": [ -0.5374543, 51.2012379 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02453664" }, "bbox": [ -0.5363252, 51.2008165, -0.5363252, 51.2008165 ], "geometry": { "type": "Point", "coordinates": [ -0.5363252, 51.2008165 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02459052" }, "bbox": [ -0.5286549, 51.1995818, -0.5286549, 51.1995818 ], "geometry": { "type": "Point", "coordinates": [ -0.5286549, 51.1995818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02459253" }, "bbox": [ -0.528384, 51.1998097, -0.528384, 51.1998097 ], "geometry": { "type": "Point", "coordinates": [ -0.528384, 51.1998097 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02454164" }, "bbox": [ -0.5355795, 51.2008314, -0.5355795, 51.2008314 ], "geometry": { "type": "Point", "coordinates": [ -0.5355795, 51.2008314 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02458154" }, "bbox": [ -0.5303481, 51.1998754, -0.5303481, 51.1998754 ], "geometry": { "type": "Point", "coordinates": [ -0.5303481, 51.1998754 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02442408" }, "bbox": [ -0.5386541, 51.1868518, -0.5386541, 51.1868518 ], "geometry": { "type": "Point", "coordinates": [ -0.5386541, 51.1868518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02431795" }, "bbox": [ -0.5395721, 51.1856648, -0.5395721, 51.1856648 ], "geometry": { "type": "Point", "coordinates": [ -0.5395721, 51.1856648 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09578705" }, "bbox": [ -0.4252934, 51.3019633, -0.4252934, 51.3019633 ], "geometry": { "type": "Point", "coordinates": [ -0.4252934, 51.3019633 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09568995" }, "bbox": [ -0.4250873, 51.3010957, -0.4250873, 51.3010957 ], "geometry": { "type": "Point", "coordinates": [ -0.4250873, 51.3010957 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09569097" }, "bbox": [ -0.4250065, 51.3012163, -0.4250065, 51.3012163 ], "geometry": { "type": "Point", "coordinates": [ -0.4250065, 51.3012163 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09568897" }, "bbox": [ -0.4251996, 51.3012664, -0.4251996, 51.3012664 ], "geometry": { "type": "Point", "coordinates": [ -0.4251996, 51.3012664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09568896" }, "bbox": [ -0.4252805, 51.3011458, -0.4252805, 51.3011458 ], "geometry": { "type": "Point", "coordinates": [ -0.4252805, 51.3011458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09568388" }, "bbox": [ -0.4259801, 51.3004486, -0.4259801, 51.3004486 ], "geometry": { "type": "Point", "coordinates": [ -0.4259801, 51.3004486 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09567879" }, "bbox": [ -0.4267661, 51.2995756, -0.4267661, 51.2995756 ], "geometry": { "type": "Point", "coordinates": [ -0.4267661, 51.2995756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09568597" }, "bbox": [ -0.4249618, 51.3014658, -0.4249618, 51.3014658 ], "geometry": { "type": "Point", "coordinates": [ -0.4249618, 51.3014658 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09568779" }, "bbox": [ -0.4254321, 51.2995926, -0.4254321, 51.2995926 ], "geometry": { "type": "Point", "coordinates": [ -0.4254321, 51.2995926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82393530" }, "bbox": [ -0.8240172, 51.1472446, -0.8240172, 51.1472446 ], "geometry": { "type": "Point", "coordinates": [ -0.8240172, 51.1472446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21399847" }, "bbox": [ -0.2575096, 51.1414368, -0.2575096, 51.1414368 ], "geometry": { "type": "Point", "coordinates": [ -0.2575096, 51.1414368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21399653" }, "bbox": [ -0.2579658, 51.1419888, -0.2579658, 51.1419888 ], "geometry": { "type": "Point", "coordinates": [ -0.2579658, 51.1419888 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21399737" }, "bbox": [ -0.2577778, 51.1407813, -0.2577778, 51.1407813 ], "geometry": { "type": "Point", "coordinates": [ -0.2577778, 51.1407813 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22390351" }, "bbox": [ -0.2571328, 51.1422155, -0.2571328, 51.1422155 ], "geometry": { "type": "Point", "coordinates": [ -0.2571328, 51.1422155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22390342" }, "bbox": [ -0.2569442, 51.1407452, -0.2569442, 51.1407452 ], "geometry": { "type": "Point", "coordinates": [ -0.2569442, 51.1407452 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36592408" }, "bbox": [ -0.0464727, 51.3145747, -0.0464727, 51.3145747 ], "geometry": { "type": "Point", "coordinates": [ -0.0464727, 51.3145747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36597274" }, "bbox": [ -0.0392648, 51.3204139, -0.0392648, 51.3204139 ], "geometry": { "type": "Point", "coordinates": [ -0.0392648, 51.3204139 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29505703" }, "bbox": [ -0.14533, 51.2348302, -0.14533, 51.2348302 ], "geometry": { "type": "Point", "coordinates": [ -0.14533, 51.2348302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29501908" }, "bbox": [ -0.1506163, 51.2353727, -0.1506163, 51.2353727 ], "geometry": { "type": "Point", "coordinates": [ -0.1506163, 51.2353727 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29501901" }, "bbox": [ -0.1503984, 51.2345583, -0.1503984, 51.2345583 ], "geometry": { "type": "Point", "coordinates": [ -0.1503984, 51.2345583 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29503301" }, "bbox": [ -0.1488431, 51.2346392, -0.1488431, 51.2346392 ], "geometry": { "type": "Point", "coordinates": [ -0.1488431, 51.2346392 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29502403" }, "bbox": [ -0.1506008, 51.2348702, -0.1506008, 51.2348702 ], "geometry": { "type": "Point", "coordinates": [ -0.1506008, 51.2348702 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29509409" }, "bbox": [ -0.1399456, 51.2352764, -0.1399456, 51.2352764 ], "geometry": { "type": "Point", "coordinates": [ -0.1399456, 51.2352764 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ29507114" }, "bbox": [ -0.143561, 51.2357037, -0.143561, 51.2357037 ], "geometry": { "type": "Point", "coordinates": [ -0.143561, 51.2357037 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03734292" }, "bbox": [ -0.5129258, 51.4548322, -0.5129258, 51.4548322 ], "geometry": { "type": "Point", "coordinates": [ -0.5129258, 51.4548322 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04744759" }, "bbox": [ -0.4976028, 51.4605815, -0.4976028, 51.4605815 ], "geometry": { "type": "Point", "coordinates": [ -0.4976028, 51.4605815 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04744860" }, "bbox": [ -0.4974097, 51.4607867, -0.4974097, 51.4607867 ], "geometry": { "type": "Point", "coordinates": [ -0.4974097, 51.4607867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04744561" }, "bbox": [ -0.4978536, 51.4608608, -0.4978536, 51.4608608 ], "geometry": { "type": "Point", "coordinates": [ -0.4978536, 51.4608608 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03746666" }, "bbox": [ -0.5091925, 51.4613335, -0.5091925, 51.4613335 ], "geometry": { "type": "Point", "coordinates": [ -0.5091925, 51.4613335 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03747670" }, "bbox": [ -0.5077007, 51.4617847, -0.5077007, 51.4617847 ], "geometry": { "type": "Point", "coordinates": [ -0.5077007, 51.4617847 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03748775" }, "bbox": [ -0.5062439, 51.4622483, -0.5062439, 51.4622483 ], "geometry": { "type": "Point", "coordinates": [ -0.5062439, 51.4622483 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03748575" }, "bbox": [ -0.5064633, 51.4621444, -0.5064633, 51.4621444 ], "geometry": { "type": "Point", "coordinates": [ -0.5064633, 51.4621444 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88383950" }, "bbox": [ -0.7376854, 51.1393494, -0.7376854, 51.1393494 ], "geometry": { "type": "Point", "coordinates": [ -0.7376854, 51.1393494 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87373875" }, "bbox": [ -0.7525403, 51.1324205, -0.7525403, 51.1324205 ], "geometry": { "type": "Point", "coordinates": [ -0.7525403, 51.1324205 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87388620" }, "bbox": [ -0.7454533, 51.1363426, -0.7454533, 51.1363426 ], "geometry": { "type": "Point", "coordinates": [ -0.7454533, 51.1363426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06458184" }, "bbox": [ -0.4717808, 51.2015095, -0.4717808, 51.2015095 ], "geometry": { "type": "Point", "coordinates": [ -0.4717808, 51.2015095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07461355" }, "bbox": [ -0.4677818, 51.2081926, -0.4677818, 51.2081926 ], "geometry": { "type": "Point", "coordinates": [ -0.4677818, 51.2081926 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07450963" }, "bbox": [ -0.4686339, 51.1998124, -0.4686339, 51.1998124 ], "geometry": { "type": "Point", "coordinates": [ -0.4686339, 51.1998124 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07450990" }, "bbox": [ -0.4686801, 51.2022298, -0.4686801, 51.2022298 ], "geometry": { "type": "Point", "coordinates": [ -0.4686801, 51.2022298 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07452883" }, "bbox": [ -0.4658078, 51.2016067, -0.4658078, 51.2016067 ], "geometry": { "type": "Point", "coordinates": [ -0.4658078, 51.2016067 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453148" }, "bbox": [ -0.4655416, 51.1984231, -0.4655416, 51.1984231 ], "geometry": { "type": "Point", "coordinates": [ -0.4655416, 51.1984231 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07450427" }, "bbox": [ -0.4694134, 51.1967721, -0.4694134, 51.1967721 ], "geometry": { "type": "Point", "coordinates": [ -0.4694134, 51.1967721 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07452785" }, "bbox": [ -0.4657295, 51.2017826, -0.4657295, 51.2017826 ], "geometry": { "type": "Point", "coordinates": [ -0.4657295, 51.2017826 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07453073" }, "bbox": [ -0.4654883, 51.2000447, -0.4654883, 51.2000447 ], "geometry": { "type": "Point", "coordinates": [ -0.4654883, 51.2000447 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88344439" }, "bbox": [ -0.7380353, 51.102674, -0.7380353, 51.102674 ], "geometry": { "type": "Point", "coordinates": [ -0.7380353, 51.102674 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89334394" }, "bbox": [ -0.7243119, 51.0979387, -0.7243119, 51.0979387 ], "geometry": { "type": "Point", "coordinates": [ -0.7243119, 51.0979387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU89344301" }, "bbox": [ -0.7241056, 51.098509, -0.7241056, 51.098509 ], "geometry": { "type": "Point", "coordinates": [ -0.7241056, 51.098509 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87343605" }, "bbox": [ -0.753596, 51.0988584, -0.753596, 51.0988584 ], "geometry": { "type": "Point", "coordinates": [ -0.753596, 51.0988584 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22407137" }, "bbox": [ -0.2469362, 51.1494621, -0.2469362, 51.1494621 ], "geometry": { "type": "Point", "coordinates": [ -0.2469362, 51.1494621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23400610" }, "bbox": [ -0.2422629, 51.1470431, -0.2422629, 51.1470431 ], "geometry": { "type": "Point", "coordinates": [ -0.2422629, 51.1470431 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23401111" }, "bbox": [ -0.2420592, 51.1470208, -0.2420592, 51.1470208 ], "geometry": { "type": "Point", "coordinates": [ -0.2420592, 51.1470208 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406857" }, "bbox": [ -0.2330889, 51.1510781, -0.2330889, 51.1510781 ], "geometry": { "type": "Point", "coordinates": [ -0.2330889, 51.1510781 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23406660" }, "bbox": [ -0.2334208, 51.1511567, -0.2334208, 51.1511567 ], "geometry": { "type": "Point", "coordinates": [ -0.2334208, 51.1511567 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405958" }, "bbox": [ -0.2339416, 51.1512799, -0.2339416, 51.1512799 ], "geometry": { "type": "Point", "coordinates": [ -0.2339416, 51.1512799 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405249" }, "bbox": [ -0.2355504, 51.1503735, -0.2355504, 51.1503735 ], "geometry": { "type": "Point", "coordinates": [ -0.2355504, 51.1503735 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23405954" }, "bbox": [ -0.2343445, 51.1507613, -0.2343445, 51.1507613 ], "geometry": { "type": "Point", "coordinates": [ -0.2343445, 51.1507613 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24418302" }, "bbox": [ -0.2164169, 51.1548182, -0.2164169, 51.1548182 ], "geometry": { "type": "Point", "coordinates": [ -0.2164169, 51.1548182 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24410316" }, "bbox": [ -0.2276178, 51.1564203, -0.2276178, 51.1564203 ], "geometry": { "type": "Point", "coordinates": [ -0.2276178, 51.1564203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24410913" }, "bbox": [ -0.2270774, 51.1559055, -0.2270774, 51.1559055 ], "geometry": { "type": "Point", "coordinates": [ -0.2270774, 51.1559055 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02368697" }, "bbox": [ -0.5317993, 51.1226594, -0.5317993, 51.1226594 ], "geometry": { "type": "Point", "coordinates": [ -0.5317993, 51.1226594 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02362776" }, "bbox": [ -0.5400381, 51.1210164, -0.5400381, 51.1210164 ], "geometry": { "type": "Point", "coordinates": [ -0.5400381, 51.1210164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02361278" }, "bbox": [ -0.542126, 51.121331, -0.542126, 51.121331 ], "geometry": { "type": "Point", "coordinates": [ -0.542126, 51.121331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01368054" }, "bbox": [ -0.5451906, 51.1194484, -0.5451906, 51.1194484 ], "geometry": { "type": "Point", "coordinates": [ -0.5451906, 51.1194484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01369773" }, "bbox": [ -0.5443052, 51.1208071, -0.5443052, 51.1208071 ], "geometry": { "type": "Point", "coordinates": [ -0.5443052, 51.1208071 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01369553" }, "bbox": [ -0.5445804, 51.1190849, -0.5445804, 51.1190849 ], "geometry": { "type": "Point", "coordinates": [ -0.5445804, 51.1190849 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92374081" }, "bbox": [ -0.6803455, 51.1321482, -0.6803455, 51.1321482 ], "geometry": { "type": "Point", "coordinates": [ -0.6803455, 51.1321482 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09410103" }, "bbox": [ -0.4424938, 51.1581048, -0.4424938, 51.1581048 ], "geometry": { "type": "Point", "coordinates": [ -0.4424938, 51.1581048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08416833" }, "bbox": [ -0.4471446, 51.1608863, -0.4471446, 51.1608863 ], "geometry": { "type": "Point", "coordinates": [ -0.4471446, 51.1608863 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08409698" }, "bbox": [ -0.4432602, 51.1577928, -0.4432602, 51.1577928 ], "geometry": { "type": "Point", "coordinates": [ -0.4432602, 51.1577928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81458715" }, "bbox": [ -0.8295123, 51.1997443, -0.8295123, 51.1997443 ], "geometry": { "type": "Point", "coordinates": [ -0.8295123, 51.1997443 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU81459817" }, "bbox": [ -0.8281625, 51.1999917, -0.8281625, 51.1999917 ], "geometry": { "type": "Point", "coordinates": [ -0.8281625, 51.1999917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82451529" }, "bbox": [ -0.8252914, 51.2016958, -0.8252914, 51.2016958 ], "geometry": { "type": "Point", "coordinates": [ -0.8252914, 51.2016958 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82450931" }, "bbox": [ -0.8272179, 51.2008536, -0.8272179, 51.2008536 ], "geometry": { "type": "Point", "coordinates": [ -0.8272179, 51.2008536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU82467709" }, "bbox": [ -0.8162401, 51.2077917, -0.8162401, 51.2077917 ], "geometry": { "type": "Point", "coordinates": [ -0.8162401, 51.2077917 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91564424" }, "bbox": [ -0.6905385, 51.2979742, -0.6905385, 51.2979742 ], "geometry": { "type": "Point", "coordinates": [ -0.6905385, 51.2979742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91574917" }, "bbox": [ -0.6899314, 51.3053007, -0.6899314, 51.3053007 ], "geometry": { "type": "Point", "coordinates": [ -0.6899314, 51.3053007 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92563306" }, "bbox": [ -0.676927, 51.2960492, -0.676927, 51.2960492 ], "geometry": { "type": "Point", "coordinates": [ -0.676927, 51.2960492 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU92561331" }, "bbox": [ -0.6796883, 51.2985412, -0.6796883, 51.2985412 ], "geometry": { "type": "Point", "coordinates": [ -0.6796883, 51.2985412 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93551696" }, "bbox": [ -0.6653801, 51.295203, -0.6653801, 51.295203 ], "geometry": { "type": "Point", "coordinates": [ -0.6653801, 51.295203 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90557042" }, "bbox": [ -0.7019449, 51.2905806, -0.7019449, 51.2905806 ], "geometry": { "type": "Point", "coordinates": [ -0.7019449, 51.2905806 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90531513" }, "bbox": [ -0.7077029, 51.2714209, -0.7077029, 51.2714209 ], "geometry": { "type": "Point", "coordinates": [ -0.7077029, 51.2714209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02657477" }, "bbox": [ -0.5250145, 51.3817048, -0.5250145, 51.3817048 ], "geometry": { "type": "Point", "coordinates": [ -0.5250145, 51.3817048 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11670364" }, "bbox": [ -0.4049563, 51.3969317, -0.4049563, 51.3969317 ], "geometry": { "type": "Point", "coordinates": [ -0.4049563, 51.3969317 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10678737" }, "bbox": [ -0.4078065, 51.3944928, -0.4078065, 51.3944928 ], "geometry": { "type": "Point", "coordinates": [ -0.4078065, 51.3944928 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99392532" }, "bbox": [ -0.5825358, 51.1445938, -0.5825358, 51.1445938 ], "geometry": { "type": "Point", "coordinates": [ -0.5825358, 51.1445938 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU98385386" }, "bbox": [ -0.5930119, 51.1404249, -0.5930119, 51.1404249 ], "geometry": { "type": "Point", "coordinates": [ -0.5930119, 51.1404249 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99534103" }, "bbox": [ -0.5764296, 51.2678905, -0.5764296, 51.2678905 ], "geometry": { "type": "Point", "coordinates": [ -0.5764296, 51.2678905 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08595464" }, "bbox": [ -0.44366, 51.3256056, -0.44366, 51.3256056 ], "geometry": { "type": "Point", "coordinates": [ -0.44366, 51.3256056 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36470529" }, "bbox": [ -0.0535945, 51.2086445, -0.0535945, 51.2086445 ], "geometry": { "type": "Point", "coordinates": [ -0.0535945, 51.2086445 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ36470928" }, "bbox": [ -0.0530628, 51.2085373, -0.0530628, 51.2085373 ], "geometry": { "type": "Point", "coordinates": [ -0.0530628, 51.2085373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20403699" }, "bbox": [ -0.2800588, 51.1556226, -0.2800588, 51.1556226 ], "geometry": { "type": "Point", "coordinates": [ -0.2800588, 51.1556226 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27471523" }, "bbox": [ -0.181261, 51.2099643, -0.181261, 51.2099643 ], "geometry": { "type": "Point", "coordinates": [ -0.181261, 51.2099643 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41486358" }, "bbox": [ 0.0266603, 51.218587, 0.0266603, 51.218587 ], "geometry": { "type": "Point", "coordinates": [ 0.0266603, 51.218587 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41486064" }, "bbox": [ 0.0263102, 51.219454, 0.0263102, 51.219454 ], "geometry": { "type": "Point", "coordinates": [ 0.0263102, 51.219454 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41499607" }, "bbox": [ 0.0314735, 51.2228664, 0.0314735, 51.2228664 ], "geometry": { "type": "Point", "coordinates": [ 0.0314735, 51.2228664 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42480985" }, "bbox": [ 0.0332213, 51.2211144, 0.0332213, 51.2211144 ], "geometry": { "type": "Point", "coordinates": [ 0.0332213, 51.2211144 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447828" }, "bbox": [ -0.5163359, 51.1883816, -0.5163359, 51.1883816 ], "geometry": { "type": "Point", "coordinates": [ -0.5163359, 51.1883816 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03446409" }, "bbox": [ -0.5184251, 51.1864517, -0.5184251, 51.1864517 ], "geometry": { "type": "Point", "coordinates": [ -0.5184251, 51.1864517 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03447220" }, "bbox": [ -0.5171947, 51.1875852, -0.5171947, 51.1875852 ], "geometry": { "type": "Point", "coordinates": [ -0.5171947, 51.1875852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03445917" }, "bbox": [ -0.5181031, 51.1878257, -0.5181031, 51.1878257 ], "geometry": { "type": "Point", "coordinates": [ -0.5181031, 51.1878257 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02439765" }, "bbox": [ -0.5280633, 51.1827998, -0.5280633, 51.1827998 ], "geometry": { "type": "Point", "coordinates": [ -0.5280633, 51.1827998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02439757" }, "bbox": [ -0.5282624, 51.1820285, -0.5282624, 51.1820285 ], "geometry": { "type": "Point", "coordinates": [ -0.5282624, 51.1820285 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ02437855" }, "bbox": [ -0.5313584, 51.1817531, -0.5313584, 51.1817531 ], "geometry": { "type": "Point", "coordinates": [ -0.5313584, 51.1817531 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39533084" }, "bbox": [ -0.004677, 51.2669083, -0.004677, 51.2669083 ], "geometry": { "type": "Point", "coordinates": [ -0.004677, 51.2669083 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39532996" }, "bbox": [ -0.004851, 51.2677631, -0.004851, 51.2677631 ], "geometry": { "type": "Point", "coordinates": [ -0.004851, 51.2677631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38535188" }, "bbox": [ -0.0160239, 51.2672972, -0.0160239, 51.2672972 ], "geometry": { "type": "Point", "coordinates": [ -0.0160239, 51.2672972 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38537790" }, "bbox": [ -0.0114178, 51.2672395, -0.0114178, 51.2672395 ], "geometry": { "type": "Point", "coordinates": [ -0.0114178, 51.2672395 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22609947" }, "bbox": [ -0.2359738, 51.3299338, -0.2359738, 51.3299338 ], "geometry": { "type": "Point", "coordinates": [ -0.2359738, 51.3299338 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23602753" }, "bbox": [ -0.2318736, 51.3305064, -0.2318736, 51.3305064 ], "geometry": { "type": "Point", "coordinates": [ -0.2318736, 51.3305064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23601270" }, "bbox": [ -0.2341382, 51.3320307, -0.2341382, 51.3320307 ], "geometry": { "type": "Point", "coordinates": [ -0.2341382, 51.3320307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23602159" }, "bbox": [ -0.232838, 51.3310796, -0.232838, 51.3310796 ], "geometry": { "type": "Point", "coordinates": [ -0.232838, 51.3310796 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23601253" }, "bbox": [ -0.2348522, 51.3304551, -0.2348522, 51.3304551 ], "geometry": { "type": "Point", "coordinates": [ -0.2348522, 51.3304551 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ23601665" }, "bbox": [ -0.2334582, 51.3315403, -0.2334582, 51.3315403 ], "geometry": { "type": "Point", "coordinates": [ -0.2334582, 51.3315403 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21511808" }, "bbox": [ -0.2652654, 51.2459311, -0.2652654, 51.2459311 ], "geometry": { "type": "Point", "coordinates": [ -0.2652654, 51.2459311 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21519256" }, "bbox": [ -0.2543799, 51.2501978, -0.2543799, 51.2501978 ], "geometry": { "type": "Point", "coordinates": [ -0.2543799, 51.2501978 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ21511416" }, "bbox": [ -0.2656663, 51.2467519, -0.2656663, 51.2467519 ], "geometry": { "type": "Point", "coordinates": [ -0.2656663, 51.2467519 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622914" }, "bbox": [ -0.2885747, 51.3458079, -0.2885747, 51.3458079 ], "geometry": { "type": "Point", "coordinates": [ -0.2885747, 51.3458079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19624532" }, "bbox": [ -0.286774, 51.3474426, -0.286774, 51.3474426 ], "geometry": { "type": "Point", "coordinates": [ -0.286774, 51.3474426 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622515" }, "bbox": [ -0.2890651, 51.3459829, -0.2890651, 51.3459829 ], "geometry": { "type": "Point", "coordinates": [ -0.2890651, 51.3459829 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19622414" }, "bbox": [ -0.2891758, 51.3458135, -0.2891758, 51.3458135 ], "geometry": { "type": "Point", "coordinates": [ -0.2891758, 51.3458135 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19620831" }, "bbox": [ -0.2914116, 51.3474437, -0.2914116, 51.3474437 ], "geometry": { "type": "Point", "coordinates": [ -0.2914116, 51.3474437 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19624130" }, "bbox": [ -0.286747, 51.3472458, -0.286747, 51.3472458 ], "geometry": { "type": "Point", "coordinates": [ -0.286747, 51.3472458 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19623930" }, "bbox": [ -0.2871027, 51.3473189, -0.2871027, 51.3473189 ], "geometry": { "type": "Point", "coordinates": [ -0.2871027, 51.3473189 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19624228" }, "bbox": [ -0.286477, 51.3472242, -0.286477, 51.3472242 ], "geometry": { "type": "Point", "coordinates": [ -0.286477, 51.3472242 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15583202" }, "bbox": [ -0.3470257, 51.3097775, -0.3470257, 51.3097775 ], "geometry": { "type": "Point", "coordinates": [ -0.3470257, 51.3097775 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15582203" }, "bbox": [ -0.3482604, 51.3097749, -0.3482604, 51.3097749 ], "geometry": { "type": "Point", "coordinates": [ -0.3482604, 51.3097749 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11635431" }, "bbox": [ -0.3995193, 51.3579206, -0.3995193, 51.3579206 ], "geometry": { "type": "Point", "coordinates": [ -0.3995193, 51.3579206 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11635627" }, "bbox": [ -0.39925, 51.3575398, -0.39925, 51.3575398 ], "geometry": { "type": "Point", "coordinates": [ -0.39925, 51.3575398 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11625184" }, "bbox": [ -0.4000548, 51.3537365, -0.4000548, 51.3537365 ], "geometry": { "type": "Point", "coordinates": [ -0.4000548, 51.3537365 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15581902" }, "bbox": [ -0.3490337, 51.3098236, -0.3490337, 51.3098236 ], "geometry": { "type": "Point", "coordinates": [ -0.3490337, 51.3098236 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15571693" }, "bbox": [ -0.3493517, 51.3091051, -0.3493517, 51.3091051 ], "geometry": { "type": "Point", "coordinates": [ -0.3493517, 51.3091051 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15572883" }, "bbox": [ -0.3471316, 51.3078344, -0.3471316, 51.3078344 ], "geometry": { "type": "Point", "coordinates": [ -0.3471316, 51.3078344 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15573997" }, "bbox": [ -0.3459311, 51.3091269, -0.3459311, 51.3091269 ], "geometry": { "type": "Point", "coordinates": [ -0.3459311, 51.3091269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15572890" }, "bbox": [ -0.3474618, 51.3085129, -0.3474618, 51.3085129 ], "geometry": { "type": "Point", "coordinates": [ -0.3474618, 51.3085129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15571999" }, "bbox": [ -0.3487798, 51.3093313, -0.3487798, 51.3093313 ], "geometry": { "type": "Point", "coordinates": [ -0.3487798, 51.3093313 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15573991" }, "bbox": [ -0.3458214, 51.3086767, -0.3458214, 51.3086767 ], "geometry": { "type": "Point", "coordinates": [ -0.3458214, 51.3086767 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15573899" }, "bbox": [ -0.3460741, 51.3093184, -0.3460741, 51.3093184 ], "geometry": { "type": "Point", "coordinates": [ -0.3460741, 51.3093184 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27449587" }, "bbox": [ -0.1703534, 51.1886962, -0.1703534, 51.1886962 ], "geometry": { "type": "Point", "coordinates": [ -0.1703534, 51.1886962 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27448399" }, "bbox": [ -0.1718821, 51.1899373, -0.1718821, 51.1899373 ], "geometry": { "type": "Point", "coordinates": [ -0.1718821, 51.1899373 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27455811" }, "bbox": [ -0.1755685, 51.1908101, -0.1755685, 51.1908101 ], "geometry": { "type": "Point", "coordinates": [ -0.1755685, 51.1908101 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ27457410" }, "bbox": [ -0.1734198, 51.1913537, -0.1734198, 51.1913537 ], "geometry": { "type": "Point", "coordinates": [ -0.1734198, 51.1913537 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28450417" }, "bbox": [ -0.1693248, 51.1914866, -0.1693248, 51.1914866 ], "geometry": { "type": "Point", "coordinates": [ -0.1693248, 51.1914866 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28450405" }, "bbox": [ -0.1689468, 51.1897183, -0.1689468, 51.1897183 ], "geometry": { "type": "Point", "coordinates": [ -0.1689468, 51.1897183 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28453216" }, "bbox": [ -0.1652188, 51.1912852, -0.1652188, 51.1912852 ], "geometry": { "type": "Point", "coordinates": [ -0.1652188, 51.1912852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28452924" }, "bbox": [ -0.1655284, 51.1923875, -0.1655284, 51.1923875 ], "geometry": { "type": "Point", "coordinates": [ -0.1655284, 51.1923875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99455718" }, "bbox": [ -0.5763464, 51.1972043, -0.5763464, 51.1972043 ], "geometry": { "type": "Point", "coordinates": [ -0.5763464, 51.1972043 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99454531" }, "bbox": [ -0.5779427, 51.1983396, -0.5779427, 51.1983396 ], "geometry": { "type": "Point", "coordinates": [ -0.5779427, 51.1983396 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99456725" }, "bbox": [ -0.5751507, 51.1978008, -0.5751507, 51.1978008 ], "geometry": { "type": "Point", "coordinates": [ -0.5751507, 51.1978008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40404130" }, "bbox": [ 0.0058078, 51.1448107, 0.0058078, 51.1448107 ], "geometry": { "type": "Point", "coordinates": [ 0.0058078, 51.1448107 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40404133" }, "bbox": [ 0.0058632, 51.1450474, 0.0058632, 51.1450474 ], "geometry": { "type": "Point", "coordinates": [ 0.0058632, 51.1450474 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40404537" }, "bbox": [ 0.0068117, 51.1456387, 0.0068117, 51.1456387 ], "geometry": { "type": "Point", "coordinates": [ 0.0068117, 51.1456387 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40404334" }, "bbox": [ 0.0063449, 51.1450856, 0.0063449, 51.1450856 ], "geometry": { "type": "Point", "coordinates": [ 0.0063449, 51.1450856 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32412652" }, "bbox": [ -0.1101214, 51.15766, -0.1101214, 51.15766 ], "geometry": { "type": "Point", "coordinates": [ -0.1101214, 51.15766 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32411754" }, "bbox": [ -0.1114138, 51.1578867, -0.1114138, 51.1578867 ], "geometry": { "type": "Point", "coordinates": [ -0.1114138, 51.1578867 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32411546" }, "bbox": [ -0.111645, 51.1572122, -0.111645, 51.1572122 ], "geometry": { "type": "Point", "coordinates": [ -0.111645, 51.1572122 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04509774" }, "bbox": [ -0.497479, 51.2461873, -0.497479, 51.2461873 ], "geometry": { "type": "Point", "coordinates": [ -0.497479, 51.2461873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04518421" }, "bbox": [ -0.4990894, 51.2504368, -0.4990894, 51.2504368 ], "geometry": { "type": "Point", "coordinates": [ -0.4990894, 51.2504368 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04519535" }, "bbox": [ -0.4979516, 51.2517026, -0.4979516, 51.2517026 ], "geometry": { "type": "Point", "coordinates": [ -0.4979516, 51.2517026 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04517022" }, "bbox": [ -0.5013517, 51.2506971, -0.5013517, 51.2506971 ], "geometry": { "type": "Point", "coordinates": [ -0.5013517, 51.2506971 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32496115" }, "bbox": [ -0.1021925, 51.2261818, -0.1021925, 51.2261818 ], "geometry": { "type": "Point", "coordinates": [ -0.1021925, 51.2261818 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32494467" }, "bbox": [ -0.1043952, 51.2308828, -0.1043952, 51.2308828 ], "geometry": { "type": "Point", "coordinates": [ -0.1043952, 51.2308828 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06552153" }, "bbox": [ -0.4776628, 51.2887023, -0.4776628, 51.2887023 ], "geometry": { "type": "Point", "coordinates": [ -0.4776628, 51.2887023 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06551556" }, "bbox": [ -0.4790637, 51.2893571, -0.4790637, 51.2893571 ], "geometry": { "type": "Point", "coordinates": [ -0.4790637, 51.2893571 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ06551255" }, "bbox": [ -0.4795753, 51.2891718, -0.4795753, 51.2891718 ], "geometry": { "type": "Point", "coordinates": [ -0.4795753, 51.2891718 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13676551" }, "bbox": [ -0.3678027, 51.3952666, -0.3678027, 51.3952666 ], "geometry": { "type": "Point", "coordinates": [ -0.3678027, 51.3952666 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13677753" }, "bbox": [ -0.3662211, 51.3952936, -0.3662211, 51.3952936 ], "geometry": { "type": "Point", "coordinates": [ -0.3662211, 51.3952936 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13676648" }, "bbox": [ -0.3678557, 51.3950349, -0.3678557, 51.3950349 ], "geometry": { "type": "Point", "coordinates": [ -0.3678557, 51.3950349 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07591838" }, "bbox": [ -0.4632057, 51.323385, -0.4632057, 51.323385 ], "geometry": { "type": "Point", "coordinates": [ -0.4632057, 51.323385 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ07592646" }, "bbox": [ -0.4621325, 51.3241246, -0.4621325, 51.3241246 ], "geometry": { "type": "Point", "coordinates": [ -0.4621325, 51.3241246 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10558612" }, "bbox": [ -0.4116452, 51.2844882, -0.4116452, 51.2844882 ], "geometry": { "type": "Point", "coordinates": [ -0.4116452, 51.2844882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01691135" }, "bbox": [ -0.5478013, 51.4141228, -0.5478013, 51.4141228 ], "geometry": { "type": "Point", "coordinates": [ -0.5478013, 51.4141228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01690743" }, "bbox": [ -0.5481468, 51.4148924, -0.5481468, 51.4148924 ], "geometry": { "type": "Point", "coordinates": [ -0.5481468, 51.4148924 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01690146" }, "bbox": [ -0.5488373, 51.4151269, -0.5488373, 51.4151269 ], "geometry": { "type": "Point", "coordinates": [ -0.5488373, 51.4151269 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00699641" }, "bbox": [ -0.5495741, 51.4146478, -0.5495741, 51.4146478 ], "geometry": { "type": "Point", "coordinates": [ -0.5495741, 51.4146478 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00699448" }, "bbox": [ -0.5501599, 51.4155792, -0.5501599, 51.4155792 ], "geometry": { "type": "Point", "coordinates": [ -0.5501599, 51.4155792 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ04720303" }, "bbox": [ -0.5046378, 51.4377098, -0.5046378, 51.4377098 ], "geometry": { "type": "Point", "coordinates": [ -0.5046378, 51.4377098 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03728520" }, "bbox": [ -0.5070836, 51.4392389, -0.5070836, 51.4392389 ], "geometry": { "type": "Point", "coordinates": [ -0.5070836, 51.4392389 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ03727611" }, "bbox": [ -0.5085036, 51.4385062, -0.5085036, 51.4385062 ], "geometry": { "type": "Point", "coordinates": [ -0.5085036, 51.4385062 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24516785" }, "bbox": [ -0.2144853, 51.2522833, -0.2144853, 51.2522833 ], "geometry": { "type": "Point", "coordinates": [ -0.2144853, 51.2522833 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ24512090" }, "bbox": [ -0.2214061, 51.2527745, -0.2214061, 51.2527745 ], "geometry": { "type": "Point", "coordinates": [ -0.2214061, 51.2527745 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94649516" }, "bbox": [ -0.6376567, 51.3689878, -0.6376567, 51.3689878 ], "geometry": { "type": "Point", "coordinates": [ -0.6376567, 51.3689878 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94648733" }, "bbox": [ -0.6384981, 51.3701793, -0.6384981, 51.3701793 ], "geometry": { "type": "Point", "coordinates": [ -0.6384981, 51.3701793 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38399296" }, "bbox": [ -0.0153501, 51.1421682, -0.0153501, 51.1421682 ], "geometry": { "type": "Point", "coordinates": [ -0.0153501, 51.1421682 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38390156" }, "bbox": [ -0.0286327, 51.1387889, -0.0286327, 51.1387889 ], "geometry": { "type": "Point", "coordinates": [ -0.0286327, 51.1387889 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87475383" }, "bbox": [ -0.7479041, 51.2229774, -0.7479041, 51.2229774 ], "geometry": { "type": "Point", "coordinates": [ -0.7479041, 51.2229774 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87473393" }, "bbox": [ -0.750774, 51.2238621, -0.750774, 51.2238621 ], "geometry": { "type": "Point", "coordinates": [ -0.750774, 51.2238621 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87473795" }, "bbox": [ -0.7507548, 51.2240129, -0.7507548, 51.2240129 ], "geometry": { "type": "Point", "coordinates": [ -0.7507548, 51.2240129 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU80457686" }, "bbox": [ -0.8454109, 51.2062507, -0.8454109, 51.2062507 ], "geometry": { "type": "Point", "coordinates": [ -0.8454109, 51.2062507 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16473572" }, "bbox": [ -0.3354236, 51.2165446, -0.3354236, 51.2165446 ], "geometry": { "type": "Point", "coordinates": [ -0.3354236, 51.2165446 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00650183" }, "bbox": [ -0.5642848, 51.3824672, -0.5642848, 51.3824672 ], "geometry": { "type": "Point", "coordinates": [ -0.5642848, 51.3824672 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00640191" }, "bbox": [ -0.5644216, 51.3744903, -0.5644216, 51.3744903 ], "geometry": { "type": "Point", "coordinates": [ -0.5644216, 51.3744903 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19606461" }, "bbox": [ -0.2838913, 51.3319893, -0.2838913, 51.3319893 ], "geometry": { "type": "Point", "coordinates": [ -0.2838913, 51.3319893 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ19419015" }, "bbox": [ -0.2867145, 51.1572518, -0.2867145, 51.1572518 ], "geometry": { "type": "Point", "coordinates": [ -0.2867145, 51.1572518 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385533" }, "bbox": [ -0.549981, 51.1352609, -0.549981, 51.1352609 ], "geometry": { "type": "Point", "coordinates": [ -0.549981, 51.1352609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ01385923" }, "bbox": [ -0.5496754, 51.1344484, -0.5496754, 51.1344484 ], "geometry": { "type": "Point", "coordinates": [ -0.5496754, 51.1344484 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00370512" }, "bbox": [ -0.5717718, 51.1246873, -0.5717718, 51.1246873 ], "geometry": { "type": "Point", "coordinates": [ -0.5717718, 51.1246873 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00379723" }, "bbox": [ -0.5582003, 51.1256726, -0.5582003, 51.1256726 ], "geometry": { "type": "Point", "coordinates": [ -0.5582003, 51.1256726 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10479107" }, "bbox": [ -0.4138666, 51.2121393, -0.4138666, 51.2121393 ], "geometry": { "type": "Point", "coordinates": [ -0.4138666, 51.2121393 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14639089" }, "bbox": [ -0.3509591, 51.3624599, -0.3509591, 51.3624599 ], "geometry": { "type": "Point", "coordinates": [ -0.3509591, 51.3624599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14638284" }, "bbox": [ -0.352183, 51.3619852, -0.352183, 51.3619852 ], "geometry": { "type": "Point", "coordinates": [ -0.352183, 51.3619852 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16463329" }, "bbox": [ -0.3359171, 51.2040681, -0.3359171, 51.2040681 ], "geometry": { "type": "Point", "coordinates": [ -0.3359171, 51.2040681 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ16452898" }, "bbox": [ -0.3370256, 51.2012839, -0.3370256, 51.2012839 ], "geometry": { "type": "Point", "coordinates": [ -0.3370256, 51.2012839 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10591651" }, "bbox": [ -0.4204018, 51.3240998, -0.4204018, 51.3240998 ], "geometry": { "type": "Point", "coordinates": [ -0.4204018, 51.3240998 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ10592058" }, "bbox": [ -0.4197955, 51.3247215, -0.4197955, 51.3247215 ], "geometry": { "type": "Point", "coordinates": [ -0.4197955, 51.3247215 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ41541299" }, "bbox": [ 0.0217852, 51.2765441, 0.0217852, 51.2765441 ], "geometry": { "type": "Point", "coordinates": [ 0.0217852, 51.2765441 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09537108" }, "bbox": [ -0.4290527, 51.2663572, -0.4290527, 51.2663572 ], "geometry": { "type": "Point", "coordinates": [ -0.4290527, 51.2663572 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09538915" }, "bbox": [ -0.426077, 51.2669132, -0.426077, 51.2669132 ], "geometry": { "type": "Point", "coordinates": [ -0.426077, 51.2669132 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14623806" }, "bbox": [ -0.3585655, 51.3460202, -0.3585655, 51.3460202 ], "geometry": { "type": "Point", "coordinates": [ -0.3585655, 51.3460202 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14623913" }, "bbox": [ -0.3588863, 51.3467429, -0.3588863, 51.3467429 ], "geometry": { "type": "Point", "coordinates": [ -0.3588863, 51.3467429 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14623205" }, "bbox": [ -0.3593969, 51.3458609, -0.3593969, 51.3458609 ], "geometry": { "type": "Point", "coordinates": [ -0.3593969, 51.3458609 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97366272" }, "bbox": [ -0.6064237, 51.1214384, -0.6064237, 51.1214384 ], "geometry": { "type": "Point", "coordinates": [ -0.6064237, 51.1214384 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97368364" }, "bbox": [ -0.603586, 51.1210931, -0.603586, 51.1210931 ], "geometry": { "type": "Point", "coordinates": [ -0.603586, 51.1210931 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ15484372" }, "bbox": [ -0.3481504, 51.2260955, -0.3481504, 51.2260955 ], "geometry": { "type": "Point", "coordinates": [ -0.3481504, 51.2260955 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85476242" }, "bbox": [ -0.7751394, 51.2196615, -0.7751394, 51.2196615 ], "geometry": { "type": "Point", "coordinates": [ -0.7751394, 51.2196615 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85479745" }, "bbox": [ -0.7709752, 51.2196064, -0.7709752, 51.2196064 ], "geometry": { "type": "Point", "coordinates": [ -0.7709752, 51.2196064 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94532724" }, "bbox": [ -0.6501436, 51.2706307, -0.6501436, 51.2706307 ], "geometry": { "type": "Point", "coordinates": [ -0.6501436, 51.2706307 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU93534009" }, "bbox": [ -0.6632676, 51.2711302, -0.6632676, 51.2711302 ], "geometry": { "type": "Point", "coordinates": [ -0.6632676, 51.2711302 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ13452295" }, "bbox": [ -0.3808183, 51.2015734, -0.3808183, 51.2015734 ], "geometry": { "type": "Point", "coordinates": [ -0.3808183, 51.2015734 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12458265" }, "bbox": [ -0.3866982, 51.1985882, -0.3866982, 51.1985882 ], "geometry": { "type": "Point", "coordinates": [ -0.3866982, 51.1985882 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12449476" }, "bbox": [ -0.3853192, 51.1909789, -0.3853192, 51.1909789 ], "geometry": { "type": "Point", "coordinates": [ -0.3853192, 51.1909789 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ32453069" }, "bbox": [ -0.1078431, 51.1950875, -0.1078431, 51.1950875 ], "geometry": { "type": "Point", "coordinates": [ -0.1078431, 51.1950875 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20391890" }, "bbox": [ -0.2832736, 51.1457645, -0.2832736, 51.1457645 ], "geometry": { "type": "Point", "coordinates": [ -0.2832736, 51.1457645 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20392485" }, "bbox": [ -0.2820906, 51.1452916, -0.2820906, 51.1452916 ], "geometry": { "type": "Point", "coordinates": [ -0.2820906, 51.1452916 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20386196" }, "bbox": [ -0.2773872, 51.1374401, -0.2773872, 51.1374401 ], "geometry": { "type": "Point", "coordinates": [ -0.2773872, 51.1374401 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97457099" }, "bbox": [ -0.6027661, 51.2047969, -0.6027661, 51.2047969 ], "geometry": { "type": "Point", "coordinates": [ -0.6027661, 51.2047969 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU90636853" }, "bbox": [ -0.6988923, 51.3636331, -0.6988923, 51.3636331 ], "geometry": { "type": "Point", "coordinates": [ -0.6988923, 51.3636331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99630859" }, "bbox": [ -0.5779921, 51.3626607, -0.5779921, 51.3626607 ], "geometry": { "type": "Point", "coordinates": [ -0.5779921, 51.3626607 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99420310" }, "bbox": [ -0.5857798, 51.1705331, -0.5857798, 51.1705331 ], "geometry": { "type": "Point", "coordinates": [ -0.5857798, 51.1705331 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97661054" }, "bbox": [ -0.6062917, 51.3895008, -0.6062917, 51.3895008 ], "geometry": { "type": "Point", "coordinates": [ -0.6062917, 51.3895008 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU91407619" }, "bbox": [ -0.6893063, 51.1536488, -0.6893063, 51.1536488 ], "geometry": { "type": "Point", "coordinates": [ -0.6893063, 51.1536488 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU97417636" }, "bbox": [ -0.603311, 51.1631787, -0.603311, 51.1631787 ], "geometry": { "type": "Point", "coordinates": [ -0.603311, 51.1631787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09489929" }, "bbox": [ -0.4262389, 51.2232374, -0.4262389, 51.2232374 ], "geometry": { "type": "Point", "coordinates": [ -0.4262389, 51.2232374 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14583729" }, "bbox": [ -0.3602534, 51.3121277, -0.3602534, 51.3121277 ], "geometry": { "type": "Point", "coordinates": [ -0.3602534, 51.3121277 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26442773" }, "bbox": [ -0.1936075, 51.1881024, -0.1936075, 51.1881024 ], "geometry": { "type": "Point", "coordinates": [ -0.1936075, 51.1881024 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12617839" }, "bbox": [ -0.3823305, 51.3404993, -0.3823305, 51.3404993 ], "geometry": { "type": "Point", "coordinates": [ -0.3823305, 51.3404993 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12389747" }, "bbox": [ -0.3866425, 51.1344228, -0.3866425, 51.1344228 ], "geometry": { "type": "Point", "coordinates": [ -0.3866425, 51.1344228 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11580113" }, "bbox": [ -0.4089149, 51.3114209, -0.4089149, 51.3114209 ], "geometry": { "type": "Point", "coordinates": [ -0.4089149, 51.3114209 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ11576634" }, "bbox": [ -0.3996, 51.3043469, -0.3996, 51.3043469 ], "geometry": { "type": "Point", "coordinates": [ -0.3996, 51.3043469 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ42437603" }, "bbox": [ 0.0405219, 51.1686787, 0.0405219, 51.1686787 ], "geometry": { "type": "Point", "coordinates": [ 0.0405219, 51.1686787 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17489842" }, "bbox": [ -0.3117766, 51.2227536, -0.3117766, 51.2227536 ], "geometry": { "type": "Point", "coordinates": [ -0.3117766, 51.2227536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU96478032" }, "bbox": [ -0.615334, 51.2171015, -0.615334, 51.2171015 ], "geometry": { "type": "Point", "coordinates": [ -0.615334, 51.2171015 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99322892" }, "bbox": [ -0.583792, 51.0871977, -0.583792, 51.0871977 ], "geometry": { "type": "Point", "coordinates": [ -0.583792, 51.0871977 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ28555316" }, "bbox": [ -0.1584464, 51.2811148, -0.1584464, 51.2811148 ], "geometry": { "type": "Point", "coordinates": [ -0.1584464, 51.2811148 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99616038" }, "bbox": [ -0.5713487, 51.3427752, -0.5713487, 51.3427752 ], "geometry": { "type": "Point", "coordinates": [ -0.5713487, 51.3427752 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99553491" }, "bbox": [ -0.576936, 51.2938153, -0.576936, 51.2938153 ], "geometry": { "type": "Point", "coordinates": [ -0.576936, 51.2938153 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU87390632" }, "bbox": [ -0.7567237, 51.1465513, -0.7567237, 51.1465513 ], "geometry": { "type": "Point", "coordinates": [ -0.7567237, 51.1465513 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU85380762" }, "bbox": [ -0.7853575, 51.1406013, -0.7853575, 51.1406013 ], "geometry": { "type": "Point", "coordinates": [ -0.7853575, 51.1406013 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25419875" }, "bbox": [ -0.1997589, 51.161164, -0.1997589, 51.161164 ], "geometry": { "type": "Point", "coordinates": [ -0.1997589, 51.161164 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26410569" }, "bbox": [ -0.1988074, 51.1605611, -0.1988074, 51.1605611 ], "geometry": { "type": "Point", "coordinates": [ -0.1988074, 51.1605611 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26410272" }, "bbox": [ -0.1991514, 51.1608243, -0.1991514, 51.1608243 ], "geometry": { "type": "Point", "coordinates": [ -0.1991514, 51.1608243 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26410872" }, "bbox": [ -0.1984297, 51.1608742, -0.1984297, 51.1608742 ], "geometry": { "type": "Point", "coordinates": [ -0.1984297, 51.1608742 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26410575" }, "bbox": [ -0.1987319, 51.1611033, -0.1987319, 51.1611033 ], "geometry": { "type": "Point", "coordinates": [ -0.1987319, 51.1611033 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ26410376" }, "bbox": [ -0.1992539, 51.1614423, -0.1992539, 51.1614423 ], "geometry": { "type": "Point", "coordinates": [ -0.1992539, 51.1614423 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ38408207" }, "bbox": [ -0.0168101, 51.1430827, -0.0168101, 51.1430827 ], "geometry": { "type": "Point", "coordinates": [ -0.0168101, 51.1430827 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ33497380" }, "bbox": [ -0.0858765, 51.2316846, -0.0858765, 51.2316846 ], "geometry": { "type": "Point", "coordinates": [ -0.0858765, 51.2316846 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ30412574" }, "bbox": [ -0.1387509, 51.1601481, -0.1387509, 51.1601481 ], "geometry": { "type": "Point", "coordinates": [ -0.1387509, 51.1601481 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ00535429" }, "bbox": [ -0.5616183, 51.2699324, -0.5616183, 51.2699324 ], "geometry": { "type": "Point", "coordinates": [ -0.5616183, 51.2699324 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40490605" }, "bbox": [ 0.0039722, 51.223456, 0.0039722, 51.223456 ], "geometry": { "type": "Point", "coordinates": [ 0.0039722, 51.223456 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ05715389" }, "bbox": [ -0.483289, 51.4361599, -0.483289, 51.4361599 ], "geometry": { "type": "Point", "coordinates": [ -0.483289, 51.4361599 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12365183" }, "bbox": [ -0.3943641, 51.1198536, -0.3943641, 51.1198536 ], "geometry": { "type": "Point", "coordinates": [ -0.3943641, 51.1198536 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12363286" }, "bbox": [ -0.3963819, 51.1201497, -0.3963819, 51.1201497 ], "geometry": { "type": "Point", "coordinates": [ -0.3963819, 51.1201497 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ12366774" }, "bbox": [ -0.3916395, 51.1187981, -0.3916395, 51.1187981 ], "geometry": { "type": "Point", "coordinates": [ -0.3916395, 51.1187981 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ14521536" }, "bbox": [ -0.3654877, 51.2590328, -0.3654877, 51.2590328 ], "geometry": { "type": "Point", "coordinates": [ -0.3654877, 51.2590328 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22536908" }, "bbox": [ -0.2427076, 51.2637345, -0.2427076, 51.2637345 ], "geometry": { "type": "Point", "coordinates": [ -0.2427076, 51.2637345 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99361519" }, "bbox": [ -0.5848362, 51.1164308, -0.5848362, 51.1164308 ], "geometry": { "type": "Point", "coordinates": [ -0.5848362, 51.1164308 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99583050" }, "bbox": [ -0.5771857, 51.3168784, -0.5771857, 51.3168784 ], "geometry": { "type": "Point", "coordinates": [ -0.5771857, 51.3168784 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ20560315" }, "bbox": [ -0.2799801, 51.291794, -0.2799801, 51.291794 ], "geometry": { "type": "Point", "coordinates": [ -0.2799801, 51.291794 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU88459251" }, "bbox": [ -0.7285812, 51.2018747, -0.7285812, 51.2018747 ], "geometry": { "type": "Point", "coordinates": [ -0.7285812, 51.2018747 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ09396332" }, "bbox": [ -0.4342091, 51.1426262, -0.4342091, 51.1426262 ], "geometry": { "type": "Point", "coordinates": [ -0.4342091, 51.1426262 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08520099" }, "bbox": [ -0.4534646, 51.265865, -0.4534646, 51.265865 ], "geometry": { "type": "Point", "coordinates": [ -0.4534646, 51.265865 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ08520195" }, "bbox": [ -0.4532153, 51.2652061, -0.4532153, 51.2652061 ], "geometry": { "type": "Point", "coordinates": [ -0.4532153, 51.2652061 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU94356787" }, "bbox": [ -0.6493725, 51.1143319, -0.6493725, 51.1143319 ], "geometry": { "type": "Point", "coordinates": [ -0.6493725, 51.1143319 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99728559" }, "bbox": [ -0.564447, 51.4433145, -0.564447, 51.4433145 ], "geometry": { "type": "Point", "coordinates": [ -0.564447, 51.4433145 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99728358" }, "bbox": [ -0.5650358, 51.4435565, -0.5650358, 51.4435565 ], "geometry": { "type": "Point", "coordinates": [ -0.5650358, 51.4435565 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "SU99727552" }, "bbox": [ -0.5667097, 51.4429547, -0.5667097, 51.4429547 ], "geometry": { "type": "Point", "coordinates": [ -0.5667097, 51.4429547 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39467127" }, "bbox": [ -0.0018089, 51.1985756, -0.0018089, 51.1985756 ], "geometry": { "type": "Point", "coordinates": [ -0.0018089, 51.1985756 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39467329" }, "bbox": [ -0.0014417, 51.1987402, -0.0014417, 51.1987402 ], "geometry": { "type": "Point", "coordinates": [ -0.0014417, 51.1987402 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39469001" }, "bbox": [ 0.0008217, 51.1961684, 0.0008217, 51.1961684 ], "geometry": { "type": "Point", "coordinates": [ 0.0008217, 51.1961684 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39466515" }, "bbox": [ -0.0025435, 51.1972155, -0.0025435, 51.1972155 ], "geometry": { "type": "Point", "coordinates": [ -0.0025435, 51.1972155 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39469779" }, "bbox": [ 0.0021619, 51.2031631, 0.0021619, 51.2031631 ], "geometry": { "type": "Point", "coordinates": [ 0.0021619, 51.2031631 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39469478" }, "bbox": [ 0.0017703, 51.2031121, 0.0017703, 51.2031121 ], "geometry": { "type": "Point", "coordinates": [ 0.0017703, 51.2031121 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ39468792" }, "bbox": [ 0.0012138, 51.2047079, 0.0012138, 51.2047079 ], "geometry": { "type": "Point", "coordinates": [ 0.0012138, 51.2047079 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40461371" }, "bbox": [ 0.0043782, 51.2024266, 0.0043782, 51.2024266 ], "geometry": { "type": "Point", "coordinates": [ 0.0043782, 51.2024266 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40461871" }, "bbox": [ 0.0048994, 51.2024095, 0.0048994, 51.2024095 ], "geometry": { "type": "Point", "coordinates": [ 0.0048994, 51.2024095 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457775" }, "bbox": [ 0.0132087, 51.1936623, 0.0132087, 51.1936623 ], "geometry": { "type": "Point", "coordinates": [ 0.0132087, 51.1936623 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40457886" }, "bbox": [ 0.0132194, 51.1947268, 0.0132194, 51.1947268 ], "geometry": { "type": "Point", "coordinates": [ 0.0132194, 51.1947268 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40456887" }, "bbox": [ 0.0120255, 51.1946952, 0.0120255, 51.1946952 ], "geometry": { "type": "Point", "coordinates": [ 0.0120255, 51.1946952 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40467500" }, "bbox": [ 0.0130643, 51.1959264, 0.0130643, 51.1959264 ], "geometry": { "type": "Point", "coordinates": [ 0.0130643, 51.1959264 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40460245" }, "bbox": [ 0.0025842, 51.1998946, 0.0025842, 51.1998946 ], "geometry": { "type": "Point", "coordinates": [ 0.0025842, 51.1998946 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40461135" }, "bbox": [ 0.003911, 51.199161, 0.003911, 51.199161 ], "geometry": { "type": "Point", "coordinates": [ 0.003911, 51.199161 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40464418" }, "bbox": [ 0.0088387, 51.1972604, 0.0088387, 51.1972604 ], "geometry": { "type": "Point", "coordinates": [ 0.0088387, 51.1972604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ40463621" }, "bbox": [ 0.0074609, 51.1978694, 0.0074609, 51.1978694 ], "geometry": { "type": "Point", "coordinates": [ 0.0074609, 51.1978694 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17531126" }, "bbox": [ -0.3227438, 51.2664596, -0.3227438, 51.2664596 ], "geometry": { "type": "Point", "coordinates": [ -0.3227438, 51.2664596 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17532007" }, "bbox": [ -0.3215199, 51.264864, -0.3215199, 51.264864 ], "geometry": { "type": "Point", "coordinates": [ -0.3215199, 51.264864 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17531026" }, "bbox": [ -0.3230006, 51.2664367, -0.3230006, 51.2664367 ], "geometry": { "type": "Point", "coordinates": [ -0.3230006, 51.2664367 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17531328" }, "bbox": [ -0.3225153, 51.2666604, -0.3225153, 51.2666604 ], "geometry": { "type": "Point", "coordinates": [ -0.3225153, 51.2666604 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17531319" }, "bbox": [ -0.3224739, 51.2657786, -0.3224739, 51.2657786 ], "geometry": { "type": "Point", "coordinates": [ -0.3224739, 51.2657786 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17532126" }, "bbox": [ -0.3212178, 51.2661354, -0.3212178, 51.2661354 ], "geometry": { "type": "Point", "coordinates": [ -0.3212178, 51.2661354 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17531325" }, "bbox": [ -0.321616, 51.2662464, -0.321616, 51.2662464 ], "geometry": { "type": "Point", "coordinates": [ -0.321616, 51.2662464 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17533932" }, "bbox": [ -0.3189128, 51.2670626, -0.3189128, 51.2670626 ], "geometry": { "type": "Point", "coordinates": [ -0.3189128, 51.2670626 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ17532132" }, "bbox": [ -0.3213031, 51.2669887, -0.3213031, 51.2669887 ], "geometry": { "type": "Point", "coordinates": [ -0.3213031, 51.2669887 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ25438493" }, "bbox": [ -0.2008677, 51.1807555, -0.2008677, 51.1807555 ], "geometry": { "type": "Point", "coordinates": [ -0.2008677, 51.1807555 ] } }, -{ "type": "Feature", "properties": { "fid": null, "id": null, "parcel_ref": "TQ22460123" }, "bbox": [ -0.2551707, 51.2023221, -0.2551707, 51.2023221 ], "geometry": { "type": "Point", "coordinates": [ -0.2551707, 51.2023221 ] } } -] -} diff --git a/public/SURREY_shp.zip b/public/SURREY_shp.zip deleted file mode 100644 index 190214c8..00000000 Binary files a/public/SURREY_shp.zip and /dev/null differ diff --git a/public/api.json b/public/api.json deleted file mode 100644 index 41fa4412..00000000 --- a/public/api.json +++ /dev/null @@ -1,1223 +0,0 @@ -{ - "openapi": "3.0.0", - "info": { - "title": "EGNSSALLSERVICES", - "version": "1.0.0" - }, - "servers": [ - { - "url": "https://pic2bim.co.uk/" - } - ], - "components": { - "securitySchemes": { - "bearerAuth": { - "type": "http", - "scheme": "bearer" - } - } - }, - "paths": { - "/comm_login": { - "post": { - "tags": [ - "Authorization" - ], - "summary": "Get Bearer Token", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "login": { - "type": "string", - "example": "user" - }, - "pswd": { - "type": "string", - "example": "1234" - } - } - } - } - } - }, - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_unassigned": { - "post": { - "tags": [ - "Photos" - ], - "summary": "Get unassigned photo IDs by user ID", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "user_id": { - "type": "integer", - "example": "4" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_status": { - "post": { - "tags": [ - "Tasks" - ], - "summary": "Update task status", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "task_id": { - "type": "integer", - "example": "123" - }, - "note": { - "type": "string", - "example": "test" - }, - "status": { - "type": "string", - "example": "new" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_tasks": { - "post": { - "tags": [ - "Tasks" - ], - "summary": "Get tasks by user ID", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "user_id": { - "type": "integer", - "example": "3" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_get_paths": { - "post": { - "tags": [ - "Paths" - ], - "summary": "Get paths by user ID", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "user_id": { - "type": "integer", - "example": "4" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_path": { - "post": { - "tags": [ - "Paths" - ], - "summary": "Create a new path", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "user_id": { - "type": "integer", - "example": "3" - }, - "name": { - "type": "string", - "example": "Test example path" - }, - "deviceManufacture": { - "type": "string", - "example": "Manufacturer" - }, - "deviceModel": { - "type": "string", - "example": "Model" - }, - "devicePlatform": { - "type": "string", - "example": "Platform" - }, - "deviceVersion": { - "type": "string", - "example": "Version" - }, - "start": { - "type": "string", - "example": "2024-05-01 12:00:00" - }, - "end": { - "type": "string", - "example": "2024-05-01 13:00:00" - }, - "area": { - "type": "number", - "example": "150.50" - }, - "points": { - "type": "number", - "example": "[{\"lat\":123,\"lng\":456,\"altitude\":100,\"accuracy\":50,\"created\":\"2024-05-03T08:11:50.000Z\"}]" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_shapes": { - "post": { - "tags": [ - "Shapes" - ], - "summary": "Get shapes by coordinates", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "max_lat": { - "type": "integer", - "example": "1" - }, - "min_lat": { - "type": "integer", - "example": "1" - }, - "max_lng": { - "type": "integer", - "example": "1" - }, - "min_lng": { - "type": "integer", - "example": "1" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_photo": { - "post": { - "tags": [ - "Photos" - ], - "summary": "Upload a photo", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "task_id": { - "type": "integer", - "example": "125950" - }, - "user_id": { - "type": "integer", - "example": "4" - }, - "photo": { - "type": "number" - }, - "digest": { - "type": "string", - "example": "abc123digestvalue" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_get_photo": { - "post": { - "tags": [ - "Photos" - ], - "summary": "Get photo by ID", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "photo_id": { - "type": "integer", - "example": "18021" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_update": { - "post": { - "tags": [ - "Tasks" - ], - "summary": "Submit task photos and update task status", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "user_id": { - "type": "integer", - "example": "4" - }, - "task_id": { - "type": "integer", - "example": "125950" - }, - "photos": { - "type": "number", - "example": "[{\"lat\":\"34.052235\",\"lng\":\"-118.243683\",\"altitude\":\"89.5\",\"bearing\":\"120\",\"magnetic_azimuth\":\"180\",\"photo_heading\":\"45\",\"accuracy\":\"5\",\"orientation\":\"123\",\"pitch\":\"10\",\"roll\":\"5\",\"photo_angle\":\"90\",\"created\":\"2024-10-17 10:00:00\",\"note\":\"This is a sample note\",\"photo\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCABkAGQDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExGhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDEooor0jzQooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD/9k=" - }, - "status": { - "type": "string", - "example": "data provided" - }, - "note": { - "type": "string", - "example": "TEST TASK NOTE" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_task_photos": { - "post": { - "tags": [ - "Tasks" - ], - "summary": "Get task photos", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "task_id": { - "type": "integer", - "example": "125950" - }, - "user_id": { - "type": "integer", - "example": "4" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_delete_path": { - "post": { - "tags": [ - "Paths" - ], - "summary": "Delete a path", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "path_id": { - "type": "integer", - "example": "373" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_delete_unassigned_photo": { - "post": { - "tags": [ - "Photos" - ], - "summary": "Delete unassigned photo", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "photo_id": { - "type": "integer", - "example": "17804" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_get_lpis": { - "get": { - "tags": [ - "LPIS" - ], - "summary": "Retrieve a list of LPIS records based on filters or bounding box", - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "required": true, - "schema": { - "type": "string" - }, - "example": "application/json", - "description": "Specifies the content type" - }, - { - "name": "bbox", - "in": "query", - "required": false, - "schema": { - "type": "string" - }, - "example": "-0.6000,51.2000,-0.5900,51.2100", - "description": "bbox coordinates" - }, - { - "name": "numberOfRecords", - "in": "query", - "required": false, - "schema": { - "type": "integer", - "default": 20 - }, - "description": "Number of records per page for pagination" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_lpis": { - "post": { - "tags": [ - "LPIS" - ], - "summary": "Save LPIS", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "identificator": { - "type": "string", - "example": "identificator" - }, - "pa_description": { - "type": "Pa description", - "example": "pa description" - }, - "wkt": { - "type": "wkt", - "example": "wkt data" - }, - "wgs_geometry": { - "type": "json", - "example": [ - { - "latitude": 37.7749, - "longitude": -122.4194 - }, - { - "latitude": 34.0522, - "longitude": -118.2437 - } - ] - }, - "wgs_max_lat": { - "type": "float", - "example": "21.22" - }, - "wgs_min_lat": { - "type": "float", - "example": "-98.32" - }, - "wgs_max_lng": { - "type": "float", - "example": "3.21" - }, - "wgs_min_lng": { - "type": "float", - "example": "12.01" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_get_lpis_record": { - "post": { - "tags": [ - "LPIS" - ], - "summary": "Get a single LPIS record", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": "627847" - } - } - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ], - "parameters": [ - { - "name": "Accept", - "in": "header", - "schema": { - "type": "string" - }, - "example": "application/json" - } - ], - "responses": { - "200": { - "description": "Successful response", - "content": { - "application/json": {} - } - } - } - } - }, - "/comm_building_part": { - "get": { - "tags": [ - "Building Part" - ], - "operationId": "5b160ea9535ef944ea74a64c86c187d2", - "responses": { - "200": { - "description": "List of building part", - "content": { - "application/json": { - "schema": {} - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] - } - }, - "/comm_building_part_nearest": { - "get": { - "tags": [ - "Building Part" - ], - "operationId": "5e2fbb1aa147b8f5f9c7ef22ebf453b7", - "parameters": [ - { - "name": "latitude", - "in": "query", - "required": true, - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "longitude", - "in": "query", - "required": true, - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "distance", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - } - }, - { - "name": "imagedirection", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - } - } - ], - "responses": { - "200": { - "description": "Get nearest building part", - "content": { - "application/json": { - "schema": {} - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] - } - }, - "/comm_codepoint": { - "get": { - "tags": [ - "Codepoint" - ], - "operationId": "2ed2aa5f7d39387ccfc3df90c97789c3", - "parameters": [ - { - "name": "postcode", - "in": "query", - "required": false, - "schema": { - "type": "string" - }, - "example": "BA1 0AH" - }, - { - "name": "min_lng", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.5" - }, - { - "name": "min_lat", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.2" - }, - { - "name": "max_lng", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.2" - }, - { - "name": "max_lat", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.6" - }, - { - "name": "page", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "List of codepoint", - "content": { - "application/json": { - "schema": {} - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] - } - }, - "/comm_uprn": { - "get": { - "tags": [ - "UPRN" - ], - "operationId": "cbc6dcbd3c7b1d18555b42663a4ca6fc", - "parameters": [ - { - "name": "uprn", - "in": "query", - "required": false, - "schema": { - "type": "string" - }, - "example": "1" - }, - { - "name": "min_lng", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.5" - }, - { - "name": "min_lat", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.2" - }, - { - "name": "max_lng", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.2" - }, - { - "name": "max_lat", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.6" - }, - { - "name": "page", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "List of UPRN address", - "content": { - "application/json": { - "schema": {} - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] - } - }, - "/comm_nhle": { - "get": { - "tags": [ - "NHLE" - ], - "operationId": "cbc6dcbd3c7b1d18555b42663a4ca6fc", - "parameters": [ - { - "name": "latitude", - "in": "query", - "required": true, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.2" - }, - { - "name": "longitude", - "in": "query", - "required": true, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.5" - }, - { - "name": "distance", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "10" - }, - { - "name": "imagedirection", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "9" - } - ], - "responses": { - "200": { - "description": "List of NHLE records", - "content": { - "application/json": { - "schema": {} - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] - } - }, - "/comm_land_registry_inspire": { - "get": { - "tags": [ - "Land Registry Inspire" - ], - "operationId": "ab64d78e9c2f1e39d5a7b8d0c3e6f4a1", - "parameters": [ - { - "name": "inspire_id", - "in": "query", - "required": false, - "schema": { - "type": "string" - }, - "example": "31444717" - }, - { - "name": "min_lng", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.5" - }, - { - "name": "min_lat", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.2" - }, - { - "name": "max_lng", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "-2.2" - }, - { - "name": "max_lat", - "in": "query", - "required": false, - "schema": { - "type": "number", - "format": "double" - }, - "example": "51.6" - }, - { - "name": "page", - "in": "query", - "required": false, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "List of spatial boundary records", - "content": { - "application/json": { - "schema": {} - } - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] - } - } - } -} \ No newline at end of file diff --git a/public/assets/building-polygons.geojson b/public/assets/building-polygons.geojson new file mode 100644 index 00000000..4c5079b3 --- /dev/null +++ b/public/assets/building-polygons.geojson @@ -0,0 +1,1111 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 1 Market House", + "description": "Market House which was also a jail. It was built in 1566 and demolished in 1866" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7988395, + 51.2150512 + ] + }, + "id": 1 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 1a Almshouses" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7994894, + 51.2158169 + ] + }, + "id": 2 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 2 Long GardenWalk" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7998668, + 51.215839 + ] + }, + "id": 3 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 3 Lion & Lamb Yard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8008986, + 51.2144428 + ] + }, + "id": 4 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 4 timber-framed building " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8025718, + 51.2139196 + ] + }, + "id": 5 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 5 Streaky Bacon Lane" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.801495, + 51.214086 + ] + }, + "id": 6 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 5a St. Andrews Church" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.800848, + 51.2132686 + ] + }, + "id": 7 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 6 Upper and Middle Church Lane" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8001939, + 51.2136219 + ] + }, + "id": 8 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 7 The Maltings" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7980342, + 51.2113869 + ] + }, + "id": 9 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 7a" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7971989, + 51.2116174 + ] + }, + "id": 10 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 7b" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7965031, + 51.2119052 + ] + }, + "id": 11 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 8 Longbridge" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7970539, + 51.2122992 + ] + }, + "id": 12 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 9 Victoria Garden" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7953274, + 51.2146128 + ] + }, + "id": 13 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 10 38 miles from London" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7975558, + 51.2157137 + ] + }, + "id": 14 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 11 Bush Hotel Courtyard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.798498, + 51.2150769 + ] + }, + "id": 15 + }, + { + "type": "Feature", + "properties": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "intervention_type": "other", + "name": "Plaque 12 Borelli Yard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7986647, + 51.2150023 + ] + }, + "id": 16 + }, + { + "geometry": { + "coordinates": [ + [ + -0.798839, + 51.215051 + ], + [ + -0.798873, + 51.21509 + ], + [ + -0.799091, + 51.215323 + ], + [ + -0.799228, + 51.215489 + ], + [ + -0.799525, + 51.21586 + ], + [ + -0.79968, + 51.215861 + ], + [ + -0.799866, + 51.215839 + ], + [ + -0.800012, + 51.215796 + ], + [ + -0.800143, + 51.215752 + ], + [ + -0.800164, + 51.215746 + ], + [ + -0.800546, + 51.215606 + ], + [ + -0.80099, + 51.215454 + ], + [ + -0.801083, + 51.215425 + ], + [ + -0.801372, + 51.215355 + ], + [ + -0.801463, + 51.215357 + ], + [ + -0.801515, + 51.21537 + ], + [ + -0.801583, + 51.215397 + ], + [ + -0.801714, + 51.215344 + ], + [ + -0.80162, + 51.215208 + ], + [ + -0.801451, + 51.215137 + ], + [ + -0.801292, + 51.214919 + ], + [ + -0.80103, + 51.214616 + ], + [ + -0.800896, + 51.214443 + ], + [ + -0.800842, + 51.21437 + ], + [ + -0.800834, + 51.21436 + ], + [ + -0.801222, + 51.214263 + ], + [ + -0.801591, + 51.214162 + ], + [ + -0.801885, + 51.21409 + ], + [ + -0.80216, + 51.214019 + ], + [ + -0.80234, + 51.213978 + ], + [ + -0.802595, + 51.213921 + ], + [ + -0.80234, + 51.213978 + ], + [ + -0.80216, + 51.214019 + ], + [ + -0.801885, + 51.21409 + ], + [ + -0.801866, + 51.214054 + ], + [ + -0.801938, + 51.214033 + ], + [ + -0.801902, + 51.213975 + ], + [ + -0.801634, + 51.21405 + ], + [ + -0.80154, + 51.214074 + ], + [ + -0.801498, + 51.214085 + ], + [ + -0.801408, + 51.213954 + ], + [ + -0.801322, + 51.213709 + ], + [ + -0.8013, + 51.213426 + ], + [ + -0.801138, + 51.213415 + ], + [ + -0.800897, + 51.213314 + ], + [ + -0.800841, + 51.213268 + ], + [ + -0.800551, + 51.213396 + ], + [ + -0.80026, + 51.213559 + ], + [ + -0.800231, + 51.213588 + ], + [ + -0.800191, + 51.213625 + ], + [ + -0.800161, + 51.213569 + ], + [ + -0.800133, + 51.213274 + ], + [ + -0.800122, + 51.213089 + ], + [ + -0.800157, + 51.213001 + ], + [ + -0.799989, + 51.212988 + ], + [ + -0.799302, + 51.212962 + ], + [ + -0.799292, + 51.212934 + ], + [ + -0.799282, + 51.212889 + ], + [ + -0.799202, + 51.212652 + ], + [ + -0.799135, + 51.21262 + ], + [ + -0.799123, + 51.212569 + ], + [ + -0.799127, + 51.212497 + ], + [ + -0.7982532580913642, + 51.21213168768486 + ], + [ + -0.798319, + 51.211861 + ], + [ + -0.79829, + 51.211813 + ], + [ + -0.798209, + 51.211678 + ], + [ + -0.798128, + 51.211544 + ], + [ + -0.798017, + 51.211359 + ], + [ + -0.797745, + 51.211436 + ], + [ + -0.797345, + 51.211575 + ], + [ + -0.797206, + 51.211612 + ], + [ + -0.797147, + 51.211661 + ], + [ + -0.797072, + 51.211713 + ], + [ + -0.796987, + 51.211778 + ], + [ + -0.796955, + 51.21181 + ], + [ + -0.796946, + 51.211828 + ], + [ + -0.796932, + 51.211858 + ], + [ + -0.796933, + 51.211888 + ], + [ + -0.796934, + 51.211905 + ], + [ + -0.796965, + 51.21195 + ], + [ + -0.79697, + 51.211957 + ], + [ + -0.797023, + 51.212036 + ], + [ + -0.797036, + 51.212055 + ], + [ + -0.797043, + 51.212065 + ], + [ + -0.797125, + 51.212194 + ], + [ + -0.797165, + 51.212266 + ], + [ + -0.797109, + 51.212281 + ], + [ + -0.797052, + 51.212297 + ], + [ + -0.796912, + 51.212087 + ], + [ + -0.796843, + 51.212007 + ], + [ + -0.796781, + 51.211965 + ], + [ + -0.796744, + 51.211945 + ], + [ + -0.796636, + 51.211938 + ], + [ + -0.796526, + 51.211938 + ], + [ + -0.796502, + 51.2119 + ], + [ + -0.796526, + 51.211938 + ], + [ + -0.796636, + 51.211938 + ], + [ + -0.796744, + 51.211945 + ], + [ + -0.796781, + 51.211965 + ], + [ + -0.796843, + 51.212007 + ], + [ + -0.796912, + 51.212087 + ], + [ + -0.797052, + 51.212297 + ], + [ + -0.797024, + 51.212341 + ], + [ + -0.797004, + 51.212364 + ], + [ + -0.796985, + 51.212387 + ], + [ + -0.796952, + 51.21244 + ], + [ + -0.796911, + 51.212633 + ], + [ + -0.796803, + 51.212898 + ], + [ + -0.796763, + 51.213008 + ], + [ + -0.796687, + 51.213207 + ], + [ + -0.79665, + 51.213327 + ], + [ + -0.796633, + 51.213383 + ], + [ + -0.79662, + 51.213429 + ], + [ + -0.796509, + 51.2135 + ], + [ + -0.796269, + 51.213639 + ], + [ + -0.795728, + 51.213954 + ], + [ + -0.795683, + 51.213974 + ], + [ + -0.795625, + 51.21398 + ], + [ + -0.795626, + 51.214031 + ], + [ + -0.795627, + 51.214054 + ], + [ + -0.795605, + 51.214065 + ], + [ + -0.79558, + 51.214077 + ], + [ + -0.795555, + 51.214107 + ], + [ + -0.795089, + 51.214336 + ], + [ + -0.795326, + 51.21451 + ], + [ + -0.795245, + 51.214548 + ], + [ + -0.795327, + 51.214611 + ], + [ + -0.795424, + 51.214563 + ], + [ + -0.795731, + 51.214416 + ], + [ + -0.795929, + 51.214321 + ], + [ + -0.796042, + 51.214411 + ], + [ + -0.796097, + 51.214386 + ], + [ + -0.796143, + 51.21442 + ], + [ + -0.796166, + 51.214436 + ], + [ + -0.796143, + 51.21442 + ], + [ + -0.796097, + 51.214386 + ], + [ + -0.796042, + 51.214411 + ], + [ + -0.795929, + 51.214321 + ], + [ + -0.796042, + 51.214411 + ], + [ + -0.796097, + 51.214386 + ], + [ + -0.796143, + 51.21442 + ], + [ + -0.796166, + 51.214436 + ], + [ + -0.797049, + 51.215134 + ], + [ + -0.797086, + 51.215163 + ], + [ + -0.79713, + 51.215197 + ], + [ + -0.797484, + 51.215467 + ], + [ + -0.797417, + 51.215514 + ], + [ + -0.797378, + 51.215545 + ], + [ + -0.797413, + 51.215577 + ], + [ + -0.797435, + 51.215607 + ], + [ + -0.797413, + 51.215638 + ], + [ + -0.797386, + 51.215656 + ], + [ + -0.797412, + 51.21569 + ], + [ + -0.797433, + 51.215718 + ], + [ + -0.797496, + 51.21571 + ], + [ + -0.797552, + 51.215716 + ], + [ + -0.797624, + 51.215683 + ], + [ + -0.797677, + 51.215658 + ], + [ + -0.797636, + 51.215626 + ], + [ + -0.797611, + 51.215589 + ], + [ + -0.797672, + 51.215535 + ], + [ + -0.79763, + 51.215508 + ], + [ + -0.797592, + 51.215478 + ], + [ + -0.797758, + 51.215398 + ], + [ + -0.797927, + 51.215326 + ], + [ + -0.798328, + 51.215154 + ], + [ + -0.798665, + 51.215002 + ] + ], + "type": "LineString" + }, + "properties": { + "length_meters": 2201.333270291644, + "waypoints": [ + { + "lat": 51.215051, + "lon": -0.798839, + "snapped": true + }, + { + "lat": 51.21586, + "lon": -0.799525, + "snapped": true + }, + { + "lat": 51.215839, + "lon": -0.799866, + "snapped": true + }, + { + "lat": 51.215344, + "lon": -0.801714, + "snapped": true + }, + { + "lat": 51.21436, + "lon": -0.800834, + "snapped": true + }, + { + "lat": 51.213921, + "lon": -0.8025949, + "snapped": true + }, + { + "lat": 51.213975, + "lon": -0.801902, + "snapped": true + }, + { + "lat": 51.214085, + "lon": -0.801498, + "snapped": true + }, + { + "lat": 51.213268, + "lon": -0.800841, + "snapped": true + }, + { + "lat": 51.213625, + "lon": -0.800191, + "snapped": true + }, + { + "lat": 51.212497, + "lon": -0.799127, + "snapped": true + }, + { + "lat": 51.2121316, + "lon": -0.7982532, + "snapped": false + }, + { + "lat": 51.211861, + "lon": -0.798319, + "snapped": true + }, + { + "lat": 51.211359, + "lon": -0.798017, + "snapped": true + }, + { + "lat": 51.211612, + "lon": -0.797206, + "snapped": true + }, + { + "lat": 51.2121939, + "lon": -0.797125, + "snapped": true + }, + { + "lat": 51.212297, + "lon": -0.797052, + "snapped": true + }, + { + "lat": 51.2119, + "lon": -0.796502, + "snapped": true + }, + { + "lat": 51.214065, + "lon": -0.795605, + "snapped": true + }, + { + "lat": 51.214336, + "lon": -0.795089, + "snapped": true + }, + { + "lat": 51.214611, + "lon": -0.795327, + "snapped": true + }, + { + "lat": 51.214436, + "lon": -0.796166, + "snapped": true + }, + { + "lat": 51.214321, + "lon": -0.795929, + "snapped": true + }, + { + "lat": 51.2154669, + "lon": -0.797484, + "snapped": true + }, + { + "lat": 51.215718, + "lon": -0.7974329, + "snapped": true + }, + { + "lat": 51.215716, + "lon": -0.797552, + "snapped": true + }, + { + "lat": 51.215658, + "lon": -0.797677, + "snapped": true + }, + { + "lat": 51.215535, + "lon": -0.797672, + "snapped": true + }, + { + "lat": 51.215478, + "lon": -0.797592, + "snapped": true + }, + { + "lat": 51.215002, + "lon": -0.798665, + "snapped": true + } + ], + "scheme_reference": "adc17d58-978d-4661-a8fc-ca54ca401adc", + "intervention_type": "route", + "name": "Route from ??? and Castle Street to ??? and Borelli Yard" + }, + "type": "Feature", + "id": 17 + } + ], + "schemes": { + "adc17d58-978d-4661-a8fc-ca54ca401adc": { + "scheme_reference": "adc17d58-978d-4661-a8fc-ca54ca401adc", + "color": "#ff7f00", + "scheme_name": "Farnham Heritage Trail Route" + }, + "f53a13e1-e008-4f0f-879d-311c029f7efc": { + "scheme_reference": "f53a13e1-e008-4f0f-879d-311c029f7efc", + "color": "#4ea258", + "scheme_name": "Farnham Heritage Trail Waypoints" + } + }, + "authority": "LAD_Waverley", + "origin": "atip-v2" +} \ No newline at end of file diff --git a/public/building.json b/public/building.json new file mode 100644 index 00000000..e93c5f69 --- /dev/null +++ b/public/building.json @@ -0,0 +1,14012 @@ +{ + "type": "FeatureCollection", + "links": [ + { + "href": "https://api.os.uk/features/ngd/ofa/v1/collections/bld-fts-building-3/items?bbox=-0.797072,51.214364,-0.793392,51.216461", + "rel": "self", + "type": "application/geo+json", + "title": "All features from the 'Building v3' collection within bounding box: -0.797072,51.214364,-0.793392,51.216461" + } + ], + "timeStamp": "2025-07-14T07:06:32.502254452Z", + "numberReturned": 71, + "features": [ + { + "id": "01739baf-3dfd-4349-89f2-8d55ff3aea20", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7964709, + 51.2157074 + ], + [ + -0.7964416, + 51.2157235 + ], + [ + -0.7964263, + 51.2157116 + ], + [ + -0.7964552, + 51.2156969 + ], + [ + -0.7964709, + 51.2157074 + ] + ] + ] + }, + "properties": { + "osid": "01739baf-3dfd-4349-89f2-8d55ff3aea20", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 4.388, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 2, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "01739baf-3dfd-4349-89f2-8d55ff3aea20", + "buildingpartid": "f0327460-d36b-4a94-be0a-51c3d2478ec2", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "04995f98-afdd-43b4-843f-e623193247f9", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7959707, + 51.2164857 + ], + [ + -0.7958665, + 51.2165552 + ], + [ + -0.7957815, + 51.2164932 + ], + [ + -0.7957812, + 51.216493 + ], + [ + -0.7957766, + 51.2164896 + ], + [ + -0.7957722, + 51.2164865 + ], + [ + -0.795783, + 51.2164807 + ], + [ + -0.7958152, + 51.2164634 + ], + [ + -0.7958314, + 51.2164748 + ], + [ + -0.7958445, + 51.2164678 + ], + [ + -0.7958164, + 51.2164473 + ], + [ + -0.7958701, + 51.2164179 + ], + [ + -0.7959625, + 51.2164802 + ], + [ + -0.7959679, + 51.2164839 + ], + [ + -0.7959707, + 51.2164857 + ] + ] + ] + }, + "properties": { + "osid": "04995f98-afdd-43b4-843f-e623193247f9", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Other|Commercial Activity: Retail", + "description": "Mixed Use Building", + "versiondate": "2024-09-21", + "connectivity": "Multi-Connected", + "primarysiteid": "9d8069a6-46ef-4022-9daa-acd4c7ee4ac3", + "sitereference": [ + { + "siteid": "9d8069a6-46ef-4022-9daa-acd4c7ee4ac3", + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + } + ], + "uprnreference": [ + { + "uprn": 10013893653, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 10091107345, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 10094580568, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 10094580569, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 10094580570, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 10094580571, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 10096745978, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + }, + { + "uprn": 100062353976, + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingversiondate": "2024-09-21" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": 2018, + "geometry_area_m2": 103.572, + "buildingpartcount": 1, + "buildingage_period": "2010-2019", + "buildingage_source": "Verisk", + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2024-09-21", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "04995f98-afdd-43b4-843f-e623193247f9", + "buildingpartid": "4e002f5a-9e9a-45aa-a0fc-e62cac0669e7", + "buildingversiondate": "2024-09-21" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-09-21", + "buildinguse_updatedate": "2024-09-21", + "description_updatedate": "2024-09-21", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-09-21", + "buildingage_evidencedate": "2018-12-31", + "versionavailablefromdate": "2024-09-22T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-09-21", + "numberoffloors_updatedate": "2024-09-20", + "buildinguse_oslandusetiera": "Commercial Activity: Industrial Or Manufacturing", + "basementpresence_updatedate": "2024-09-21", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 8, + "constructionmaterial_updatedate": "2024-09-21", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 8, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "055a205d-6c4b-4dc4-bcea-a49957010b78", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7961736, + 51.2146261 + ], + [ + -0.7961572, + 51.2146342 + ], + [ + -0.7961375, + 51.2146186 + ], + [ + -0.7961059, + 51.2145934 + ], + [ + -0.7961224, + 51.2145852 + ], + [ + -0.796154, + 51.2146104 + ], + [ + -0.7961736, + 51.2146261 + ] + ] + ] + }, + "properties": { + "osid": "055a205d-6c4b-4dc4-bcea-a49957010b78", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 8.478, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 0, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "055a205d-6c4b-4dc4-bcea-a49957010b78", + "buildingpartid": "27bb10a8-d3bf-4896-b903-842bf2ca4a93", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "0be8224b-be88-42ef-8e37-e0913d306284", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7962147, + 51.2153941 + ], + [ + -0.7961161, + 51.2154423 + ], + [ + -0.7961084, + 51.2154461 + ], + [ + -0.7960597, + 51.2154076 + ], + [ + -0.7960092, + 51.2153678 + ], + [ + -0.7959977, + 51.2153731 + ], + [ + -0.7958831, + 51.2152814 + ], + [ + -0.795984, + 51.2152316 + ], + [ + -0.7960558, + 51.2152887 + ], + [ + -0.7960752, + 51.2153041 + ], + [ + -0.7960978, + 51.2153221 + ], + [ + -0.7961149, + 51.2153138 + ], + [ + -0.7961291, + 51.2153252 + ], + [ + -0.7962147, + 51.2153941 + ] + ] + ] + }, + "properties": { + "osid": "0be8224b-be88-42ef-8e37-e0913d306284", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Attraction Or Activity|Commercial Activity: Retail", + "description": "Mixed Use Building", + "versiondate": "2025-05-14", + "connectivity": "End-Connected", + "primarysiteid": "ff224a27-ec24-4755-b991-344152432012", + "sitereference": [ + { + "siteid": "ff224a27-ec24-4755-b991-344152432012", + "buildingid": "0be8224b-be88-42ef-8e37-e0913d306284", + "buildingversiondate": "2025-05-14" + } + ], + "uprnreference": [ + { + "uprn": 10094578874, + "buildingid": "0be8224b-be88-42ef-8e37-e0913d306284", + "buildingversiondate": "2025-05-14" + }, + { + "uprn": 10094578875, + "buildingid": "0be8224b-be88-42ef-8e37-e0913d306284", + "buildingversiondate": "2025-05-14" + }, + { + "uprn": 10094578876, + "buildingid": "0be8224b-be88-42ef-8e37-e0913d306284", + "buildingversiondate": "2025-05-14" + }, + { + "uprn": 10094578877, + "buildingid": "0be8224b-be88-42ef-8e37-e0913d306284", + "buildingversiondate": "2025-05-14" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Unknown", + "buildingage_year": 2022, + "geometry_area_m2": 222.454, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2025-05-14", + "constructionmaterial": "Unknown", + "buildingpartreference": [ + { + "buildingid": "0be8224b-be88-42ef-8e37-e0913d306284", + "buildingpartid": "fd15f967-4526-477f-afed-d49c80d0080e", + "buildingversiondate": "2025-05-14" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2025-05-14", + "buildinguse_updatedate": "2025-05-14", + "description_updatedate": "2025-05-14", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-05-14", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2025-05-15T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-05-14", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Commercial Activity: Retail", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 4, + "constructionmaterial_updatedate": "2025-05-14", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 4, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "17f56929-1b8f-48f8-8ebf-0a2b9080e240", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7954262, + 51.2154986 + ], + [ + -0.7954255, + 51.2155145 + ], + [ + -0.7953693, + 51.2155431 + ], + [ + -0.7953452, + 51.21554 + ], + [ + -0.7953325, + 51.2155303 + ], + [ + -0.7954135, + 51.2154889 + ], + [ + -0.7954262, + 51.2154986 + ] + ] + ] + }, + "properties": { + "osid": "17f56929-1b8f-48f8-8ebf-0a2b9080e240", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2024, + "geometry_area_m2": 18.441, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "17f56929-1b8f-48f8-8ebf-0a2b9080e240", + "buildingpartid": "47c75fbf-c6b5-4b9f-8b5e-b21d426318d4", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2024-07-09", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "1a6f82e5-4acc-4474-855c-05ffe3b75ad2", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7950575, + 51.215617 + ], + [ + -0.7950379, + 51.215629 + ], + [ + -0.7949523, + 51.215562 + ], + [ + -0.7949741, + 51.2155511 + ], + [ + -0.7950575, + 51.215617 + ] + ] + ] + }, + "properties": { + "osid": "1a6f82e5-4acc-4474-855c-05ffe3b75ad2", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2024, + "geometry_area_m2": 18.172, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "1a6f82e5-4acc-4474-855c-05ffe3b75ad2", + "buildingpartid": "b891896d-b70a-4938-9e4f-2359f8c57eff", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2024-01-19", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "1af5311a-be0b-47d7-bb9b-4819aee1cc04", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7971295, + 51.2150395 + ], + [ + -0.7970567, + 51.2150758 + ], + [ + -0.7970423, + 51.215065 + ], + [ + -0.7971162, + 51.2150286 + ], + [ + -0.7971226, + 51.2150339 + ], + [ + -0.7971295, + 51.2150395 + ] + ] + ] + }, + "properties": { + "osid": "1af5311a-be0b-47d7-bb9b-4819aee1cc04", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 10.104, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 2, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "1af5311a-be0b-47d7-bb9b-4819aee1cc04", + "buildingpartid": "4eae1b1d-6b0b-43b6-9337-b4c1c4a9be93", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "1dc4405a-a017-4e97-8544-dff53893c465", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7960855, + 51.2163381 + ], + [ + -0.7959819, + 51.2164034 + ], + [ + -0.7959758, + 51.2164073 + ], + [ + -0.7959625, + 51.2164157 + ], + [ + -0.7959247, + 51.2164393 + ], + [ + -0.7959014, + 51.2164248 + ], + [ + -0.79585, + 51.2163928 + ], + [ + -0.7959548, + 51.2163259 + ], + [ + -0.7958746, + 51.216273 + ], + [ + -0.7959288, + 51.2162382 + ], + [ + -0.7960299, + 51.2163038 + ], + [ + -0.7960665, + 51.2163266 + ], + [ + -0.7960855, + 51.2163381 + ] + ] + ] + }, + "properties": { + "osid": "1dc4405a-a017-4e97-8544-dff53893c465", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Other", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": "1f6d0c39-ecdd-4cb1-9ea8-eac3c8b19485", + "sitereference": [ + { + "siteid": "1f6d0c39-ecdd-4cb1-9ea8-eac3c8b19485", + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013891413, + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 10013891414, + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 10013894072, + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 10013897494, + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 100062354529, + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 161.9, + "buildingpartcount": 1, + "buildingage_period": "1870-1918", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "1dc4405a-a017-4e97-8544-dff53893c465", + "buildingpartid": "79c5cff1-6b95-452b-a347-0b1ced62dd3c", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1901-12-31", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-07-19", + "buildinguse_oslandusetiera": "Commercial Activity: Industrial Or Manufacturing", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 5, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 4, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "20571299-ee08-4450-97cd-32eefb45cd8c", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970862, + 51.21581 + ], + [ + -0.7970363, + 51.2158407 + ], + [ + -0.7969144, + 51.215767 + ], + [ + -0.7969278, + 51.2157593 + ], + [ + -0.7969568, + 51.2157425 + ], + [ + -0.797003, + 51.215772 + ], + [ + -0.7970162, + 51.2157622 + ], + [ + -0.7970862, + 51.21581 + ] + ] + ] + }, + "properties": { + "osid": "20571299-ee08-4450-97cd-32eefb45cd8c", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "c65535d4-8bcc-4d73-9ac5-326247e91057", + "sitereference": [ + { + "siteid": "c65535d4-8bcc-4d73-9ac5-326247e91057", + "buildingid": "20571299-ee08-4450-97cd-32eefb45cd8c", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 100062354579, + "buildingid": "20571299-ee08-4450-97cd-32eefb45cd8c", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 54.667, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "20571299-ee08-4450-97cd-32eefb45cd8c", + "buildingpartid": "5f428841-167d-4ddf-b881-4aef44368b71", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7954045, + 51.2164012 + ], + [ + -0.7954021, + 51.2164024 + ], + [ + -0.7953088, + 51.2164516 + ], + [ + -0.7952956, + 51.2164585 + ], + [ + -0.7952796, + 51.2164669 + ], + [ + -0.7952761, + 51.2164651 + ], + [ + -0.7951745, + 51.216518 + ], + [ + -0.7951515, + 51.2165007 + ], + [ + -0.7951183, + 51.2164756 + ], + [ + -0.7951314, + 51.2164685 + ], + [ + -0.7950349, + 51.2163968 + ], + [ + -0.7950064, + 51.216376 + ], + [ + -0.7950081, + 51.216375 + ], + [ + -0.795029, + 51.2163631 + ], + [ + -0.7950085, + 51.2163477 + ], + [ + -0.7950398, + 51.2163305 + ], + [ + -0.7950419, + 51.2163031 + ], + [ + -0.7951255, + 51.2162575 + ], + [ + -0.795204, + 51.2162131 + ], + [ + -0.7952093, + 51.2162101 + ], + [ + -0.79521, + 51.2162106 + ], + [ + -0.7952441, + 51.2162353 + ], + [ + -0.795251, + 51.2162317 + ], + [ + -0.7952984, + 51.2162663 + ], + [ + -0.7952938, + 51.2162689 + ], + [ + -0.7952848, + 51.2162739 + ], + [ + -0.7952812, + 51.2162709 + ], + [ + -0.7951541, + 51.2163375 + ], + [ + -0.7951751, + 51.2163552 + ], + [ + -0.7951461, + 51.2163707 + ], + [ + -0.7952276, + 51.2164295 + ], + [ + -0.7952429, + 51.2164211 + ], + [ + -0.795355, + 51.2163643 + ], + [ + -0.7954008, + 51.2163986 + ], + [ + -0.7954045, + 51.2164012 + ] + ] + ] + }, + "properties": { + "osid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Mixed Use", + "description": "Mixed Use Building", + "versiondate": "2025-04-05", + "connectivity": "End-Connected", + "primarysiteid": "2c8fdd7e-aa0d-4c0a-b477-a769454f5b02", + "sitereference": [ + { + "siteid": "2c8fdd7e-aa0d-4c0a-b477-a769454f5b02", + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + } + ], + "uprnreference": [ + { + "uprn": 10013894100, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894101, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894102, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894897, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894898, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894899, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894900, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894957, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894958, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894961, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894962, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894963, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 10013894964, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200000850968, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001290164, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001290165, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291949, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291950, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291951, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291952, + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingversiondate": "2025-04-05" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 374.814, + "buildingpartcount": 3, + "buildingage_period": "1980-1989", + "buildingage_source": "Verisk", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2025-03-20", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingpartid": "7092a2d1-9825-46bf-8356-e2883572f12e", + "buildingversiondate": "2025-04-05" + }, + { + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingpartid": "d925d72e-7a05-4348-a0cc-ebf41d11543b", + "buildingversiondate": "2025-04-05" + }, + { + "buildingid": "20ea1711-c566-4867-baf5-9e6fd6fb92d7", + "buildingpartid": "e0c92e2c-60fc-43ac-9453-de20287cc8b1", + "buildingversiondate": "2025-04-05" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-04-05", + "buildinguse_updatedate": "2025-03-20", + "description_updatedate": "2025-03-20", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2025-03-20", + "buildingage_evidencedate": "2017-02-10", + "versionavailablefromdate": "2025-04-06T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2025-03-20", + "numberoffloors_updatedate": "2025-03-10", + "buildinguse_oslandusetiera": "Commercial Activity: Industrial Or Manufacturing", + "basementpresence_updatedate": "2025-04-05", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 5, + "buildinguse_addresscount_total": 20, + "constructionmaterial_updatedate": "2025-04-05", + "buildingage_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)", + "constructionmaterial_evidencedate": "2009-02-26", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 11, + "buildinguse_addresscount_residential": 4, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)" + } + }, + { + "id": "2700003f-110e-46ea-945b-22e830e42afb", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7952734, + 51.2145925 + ], + [ + -0.7952444, + 51.2146069 + ], + [ + -0.7949301, + 51.2147661 + ], + [ + -0.7948947, + 51.214784 + ], + [ + -0.7948834, + 51.2147772 + ], + [ + -0.7948616, + 51.2147891 + ], + [ + -0.7948117, + 51.2147827 + ], + [ + -0.794797, + 51.2147678 + ], + [ + -0.7947804, + 51.2147752 + ], + [ + -0.7947425, + 51.2147447 + ], + [ + -0.7947144, + 51.2147584 + ], + [ + -0.794654, + 51.2147879 + ], + [ + -0.7946068, + 51.214751 + ], + [ + -0.7945025, + 51.2146696 + ], + [ + -0.7944941, + 51.214663 + ], + [ + -0.7945804, + 51.2146194 + ], + [ + -0.794572, + 51.2146126 + ], + [ + -0.7946772, + 51.2145597 + ], + [ + -0.7947151, + 51.2145886 + ], + [ + -0.7948611, + 51.2147001 + ], + [ + -0.7950583, + 51.2146032 + ], + [ + -0.7950215, + 51.2145736 + ], + [ + -0.7949371, + 51.2145058 + ], + [ + -0.7949164, + 51.2144893 + ], + [ + -0.794883, + 51.2144624 + ], + [ + -0.7949944, + 51.2144074 + ], + [ + -0.7950312, + 51.2144367 + ], + [ + -0.7952101, + 51.2145795 + ], + [ + -0.7952392, + 51.2145652 + ], + [ + -0.7952734, + 51.2145925 + ] + ] + ] + }, + "properties": { + "osid": "2700003f-110e-46ea-945b-22e830e42afb", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Residential Accommodation", + "description": "Multiple Residential Accommodation", + "versiondate": "2025-04-05", + "connectivity": "Standalone", + "primarysiteid": "9906c9a2-9881-41a3-aee9-171108172de1", + "sitereference": [ + { + "siteid": "9906c9a2-9881-41a3-aee9-171108172de1", + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + } + ], + "uprnreference": [ + { + "uprn": 10096744934, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354494, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354495, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354496, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354497, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354498, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354499, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354500, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354501, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354502, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354503, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354504, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354505, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354506, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354507, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354508, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354509, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354510, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354511, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354512, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354513, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354514, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354515, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354516, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354517, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354518, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354519, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354520, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354521, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354522, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062354523, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 100062699118, + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingversiondate": "2025-04-05" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 842.31, + "buildingpartcount": 2, + "buildingage_period": "1990-1999", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2025-03-14", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingpartid": "babf024d-1213-40ec-a3fd-bb074071b3fa", + "buildingversiondate": "2025-04-05" + }, + { + "buildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "buildingpartid": "cd37cf20-068c-47ce-b0e8-d96c66f940cb", + "buildingversiondate": "2025-04-05" + } + ], + "numberoffloors_source": "Energy Performance Certificate Authority", + "buildingage_updatedate": "2025-04-05", + "buildinguse_updatedate": "2025-03-14", + "description_updatedate": "2025-03-14", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2025-03-14", + "buildingage_evidencedate": "2016-10-27", + "versionavailablefromdate": "2025-04-06T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2025-03-14", + "numberoffloors_updatedate": "2025-03-10", + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2025-04-05", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2011-03-31", + "numberoffloors_capturemethod": "Third Party Unknown", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 32, + "constructionmaterial_updatedate": "2025-04-05", + "buildingage_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)", + "constructionmaterial_evidencedate": "2015-11-07", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 31, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)" + } + }, + { + "id": "2930eed3-580c-4c75-9da2-01bdd7f871fd", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7969992, + 51.2156694 + ], + [ + -0.7969863, + 51.2156782 + ], + [ + -0.7969249, + 51.2156377 + ], + [ + -0.7969231, + 51.2156355 + ], + [ + -0.7969367, + 51.2156283 + ], + [ + -0.7969992, + 51.2156694 + ] + ] + ] + }, + "properties": { + "osid": "2930eed3-580c-4c75-9da2-01bdd7f871fd", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 8.453, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 4, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "2930eed3-580c-4c75-9da2-01bdd7f871fd", + "buildingpartid": "bfb29e87-0176-4ab8-854b-5a22091804e6", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7969367, + 51.2156283 + ], + [ + -0.7969231, + 51.2156355 + ], + [ + -0.7969249, + 51.2156377 + ], + [ + -0.796887, + 51.2156624 + ], + [ + -0.7968983, + 51.2156693 + ], + [ + -0.7968434, + 51.2157044 + ], + [ + -0.796831, + 51.2156965 + ], + [ + -0.7967677, + 51.2156558 + ], + [ + -0.7968919, + 51.2156003 + ], + [ + -0.7968995, + 51.2155969 + ], + [ + -0.7969367, + 51.2156283 + ] + ] + ] + }, + "properties": { + "osid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Attraction Or Activity", + "description": "Attraction Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "sitereference": [ + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 200001536946, + "buildingid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 65.383, + "buildingpartcount": 3, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 4, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Unknown", + "buildingpartreference": [ + { + "buildingid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "buildingpartid": "2a3acf7e-a9b4-41ec-8126-4461a2b62ec0", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "buildingpartid": "67917ca8-b8aa-42ed-b5c7-fe9c522cc3b1", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "buildingpartid": "f8fa044b-080a-40a3-995e-1387b058716f", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "2e9754ba-c2a9-44bf-a818-4f7e3fa006f4", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.796817, + 51.215527 + ], + [ + -0.7966726, + 51.215595 + ], + [ + -0.7966254, + 51.215564 + ], + [ + -0.7966288, + 51.2155624 + ], + [ + -0.7967381, + 51.2155092 + ], + [ + -0.7967531, + 51.2155019 + ], + [ + -0.7967738, + 51.2154918 + ], + [ + -0.796817, + 51.215527 + ] + ] + ] + }, + "properties": { + "osid": "2e9754ba-c2a9-44bf-a818-4f7e3fa006f4", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Industrial Or Manufacturing", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "551adb6f-ad60-4fd6-9c72-8a8ee10c3a45", + "sitereference": [ + { + "siteid": "551adb6f-ad60-4fd6-9c72-8a8ee10c3a45", + "buildingid": "2e9754ba-c2a9-44bf-a818-4f7e3fa006f4", + "buildingversiondate": "2024-07-20" + }, + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "2e9754ba-c2a9-44bf-a818-4f7e3fa006f4", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013891655, + "buildingid": "2e9754ba-c2a9-44bf-a818-4f7e3fa006f4", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 62.245, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 2, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "2e9754ba-c2a9-44bf-a818-4f7e3fa006f4", + "buildingpartid": "48190b8f-62f9-4c95-a346-420699a2c5be", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7958232, + 51.214317 + ], + [ + -0.7955077, + 51.2144752 + ], + [ + -0.7954731, + 51.2144485 + ], + [ + -0.7954435, + 51.2144256 + ], + [ + -0.7954319, + 51.2144315 + ], + [ + -0.7954104, + 51.2144146 + ], + [ + -0.7954218, + 51.2144088 + ], + [ + -0.7954115, + 51.2144009 + ], + [ + -0.7954794, + 51.2143661 + ], + [ + -0.795462, + 51.2143529 + ], + [ + -0.7954709, + 51.2143485 + ], + [ + -0.7954838, + 51.214342 + ], + [ + -0.7955264, + 51.2143206 + ], + [ + -0.7955275, + 51.21432 + ], + [ + -0.7955431, + 51.2143122 + ], + [ + -0.7955673, + 51.2143 + ], + [ + -0.7956108, + 51.2142788 + ], + [ + -0.7956144, + 51.2142816 + ], + [ + -0.7956789, + 51.2142499 + ], + [ + -0.7957176, + 51.2142317 + ], + [ + -0.7957264, + 51.2142396 + ], + [ + -0.7958232, + 51.214317 + ] + ] + ] + }, + "properties": { + "osid": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-12-04", + "connectivity": "Semi-Connected", + "primarysiteid": "169c5db8-7c37-43f9-90df-daa34cde1f7c", + "sitereference": [ + { + "siteid": "169c5db8-7c37-43f9-90df-daa34cde1f7c", + "buildingid": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "buildingversiondate": "2024-12-04" + } + ], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Present", + "buildingage_year": null, + "geometry_area_m2": 343.286, + "buildingpartcount": 4, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-12-04", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "buildingpartid": "20537443-46e3-427e-9498-20e999bd8ff0", + "buildingversiondate": "2024-12-04" + }, + { + "buildingid": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "buildingpartid": "30b1538d-4255-49f4-80a1-79b6bf3dd68d", + "buildingversiondate": "2024-12-04" + }, + { + "buildingid": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "buildingpartid": "7617eb88-d672-4154-b977-d3889b723695", + "buildingversiondate": "2024-12-04" + }, + { + "buildingid": "333841b3-1b8d-44bd-99ac-7f333d6e0b49", + "buildingpartid": "91310acd-8b94-4a4c-93c0-c8335ce94b78", + "buildingversiondate": "2024-12-04" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-12-03", + "buildinguse_updatedate": "2024-12-04", + "description_updatedate": "2024-12-04", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-12-04", + "buildingage_evidencedate": "1972-12-29", + "versionavailablefromdate": "2024-12-05T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-12-04", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Community Services: Other", + "basementpresence_updatedate": "2024-11-28", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2017-04-01", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Third Party Unknown", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": "2024-12-03", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1972-12-29", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Valuation Office Agency (Non-Domestic Rates Pre 2018)", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7945663, + 51.2152572 + ], + [ + -0.79441, + 51.215341 + ], + [ + -0.7943667, + 51.2153098 + ], + [ + -0.7943357, + 51.2153262 + ], + [ + -0.7943062, + 51.2153045 + ], + [ + -0.7942863, + 51.2152899 + ], + [ + -0.7942229, + 51.2152434 + ], + [ + -0.7942345, + 51.2152372 + ], + [ + -0.7941782, + 51.2151959 + ], + [ + -0.794167, + 51.215202 + ], + [ + -0.794104, + 51.2151558 + ], + [ + -0.794081, + 51.2151682 + ], + [ + -0.7940679, + 51.2151586 + ], + [ + -0.7940534, + 51.2151486 + ], + [ + -0.7940515, + 51.2151472 + ], + [ + -0.7940188, + 51.2151231 + ], + [ + -0.7940421, + 51.2151105 + ], + [ + -0.7940535, + 51.2151045 + ], + [ + -0.7939967, + 51.2150627 + ], + [ + -0.7939858, + 51.2150691 + ], + [ + -0.7939587, + 51.2150492 + ], + [ + -0.7939337, + 51.2150308 + ], + [ + -0.7939467, + 51.2150237 + ], + [ + -0.793856, + 51.2149565 + ], + [ + -0.7938383, + 51.2149427 + ], + [ + -0.7938813, + 51.2149214 + ], + [ + -0.7938973, + 51.2149341 + ], + [ + -0.7939474, + 51.214907 + ], + [ + -0.7939309, + 51.2148943 + ], + [ + -0.7939689, + 51.214874 + ], + [ + -0.7939553, + 51.2148647 + ], + [ + -0.7939892, + 51.214845 + ], + [ + -0.7940041, + 51.2148551 + ], + [ + -0.794012, + 51.2148509 + ], + [ + -0.794046, + 51.214876 + ], + [ + -0.7940507, + 51.2148734 + ], + [ + -0.7940553, + 51.2148709 + ], + [ + -0.7941553, + 51.2149444 + ], + [ + -0.794181, + 51.2149632 + ], + [ + -0.7942694, + 51.2150282 + ], + [ + -0.7943624, + 51.2150965 + ], + [ + -0.7943631, + 51.215097 + ], + [ + -0.7944194, + 51.2151383 + ], + [ + -0.7944519, + 51.2151622 + ], + [ + -0.7945148, + 51.2152084 + ], + [ + -0.7945062, + 51.2152133 + ], + [ + -0.7945609, + 51.2152533 + ], + [ + -0.7945663, + 51.2152572 + ] + ] + ] + }, + "properties": { + "osid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Construction|Residential Accommodation", + "description": "Multiple Residential Accommodation", + "versiondate": "2024-10-15", + "connectivity": "Standalone", + "primarysiteid": "48257504-4ba3-42d3-9f17-2ed05f3080be", + "sitereference": [ + { + "siteid": "48257504-4ba3-42d3-9f17-2ed05f3080be", + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + } + ], + "uprnreference": [ + { + "uprn": 10091111594, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578705, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578706, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578707, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578708, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578709, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578710, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578711, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578712, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578713, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578714, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578715, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578716, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578717, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578718, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578719, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578720, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578721, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578722, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578723, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578724, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578725, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578726, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578727, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578728, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578729, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578730, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578731, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578732, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578733, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578734, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578735, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578736, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578737, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + }, + { + "uprn": 10094578738, + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingversiondate": "2024-10-15" + } + ], + "mainbuildingid": null, + "numberoffloors": 4, + "basementpresence": "Unknown", + "buildingage_year": 2024, + "geometry_area_m2": 1034.243, + "buildingpartcount": 5, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-10-15", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingpartid": "2235f2b9-7bc8-4553-919c-60fa986bdf33", + "buildingversiondate": "2024-10-15" + }, + { + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingpartid": "5158f2df-0f3f-4273-91f3-959498402b0d", + "buildingversiondate": "2024-10-15" + }, + { + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingpartid": "686fb4b9-3dcb-4051-8b17-396e16d7d0e0", + "buildingversiondate": "2024-10-15" + }, + { + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingpartid": "9d29e950-afd5-46e6-a75b-912a6375ba11", + "buildingversiondate": "2024-10-15" + }, + { + "buildingid": "3425de3a-02d1-49fa-8774-af6cf7de186a", + "buildingpartid": "b1cf257f-44a7-43cc-9c08-991e58a1f498", + "buildingversiondate": "2024-10-15" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-10-15", + "buildinguse_updatedate": "2024-10-15", + "description_updatedate": "2024-10-15", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-10-15", + "buildingage_evidencedate": "2024-07-09", + "versionavailablefromdate": "2024-10-16T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-10-15", + "numberoffloors_updatedate": "2024-10-15", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Ordnance Survey", + "numberoffloors_evidencedate": "2024-01-19", + "numberoffloors_capturemethod": "Field Survey", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 35, + "constructionmaterial_updatedate": "2024-10-15", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2024-01-19", + "constructionmaterial_capturemethod": "Field Survey", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 34, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.79476, + 51.2154105 + ], + [ + -0.7946681, + 51.2154564 + ], + [ + -0.7946572, + 51.2154481 + ], + [ + -0.7944742, + 51.2155391 + ], + [ + -0.7944623, + 51.2155297 + ], + [ + -0.7943764, + 51.2155722 + ], + [ + -0.7943265, + 51.2155323 + ], + [ + -0.7943175, + 51.2155367 + ], + [ + -0.7942527, + 51.2154858 + ], + [ + -0.7942998, + 51.2154621 + ], + [ + -0.7942781, + 51.2154445 + ], + [ + -0.794265, + 51.215434 + ], + [ + -0.7943384, + 51.2153962 + ], + [ + -0.794352, + 51.2154075 + ], + [ + -0.7944171, + 51.215375 + ], + [ + -0.7944249, + 51.2153809 + ], + [ + -0.7946075, + 51.2152902 + ], + [ + -0.7946112, + 51.2152931 + ], + [ + -0.79476, + 51.2154105 + ] + ] + ] + }, + "properties": { + "osid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2025-02-25", + "connectivity": "Standalone", + "primarysiteid": "726e3200-8caa-4b87-b19c-37a05467b900", + "sitereference": [ + { + "siteid": "726e3200-8caa-4b87-b19c-37a05467b900", + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + } + ], + "uprnreference": [ + { + "uprn": 10091111592, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578648, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578649, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578650, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578651, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578652, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578653, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578654, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578655, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578656, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578657, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578658, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578659, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578660, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578661, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578662, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578663, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578664, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578665, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578901, + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingversiondate": "2025-02-25" + } + ], + "mainbuildingid": null, + "numberoffloors": 4, + "basementpresence": "Unknown", + "buildingage_year": 2024, + "geometry_area_m2": 532.091, + "buildingpartcount": 2, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2025-02-25", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingpartid": "4b87aa0b-c710-446e-a69f-d1b6578755fb", + "buildingversiondate": "2025-02-25" + }, + { + "buildingid": "3b9f7aa8-4796-42c2-a5b7-53f89c41077a", + "buildingpartid": "c0ccfbb6-81bb-471f-9745-556f583a7225", + "buildingversiondate": "2025-02-25" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-02-25", + "buildinguse_updatedate": "2025-02-25", + "description_updatedate": "2025-02-25", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-02-25", + "buildingage_evidencedate": "2024-01-19", + "versionavailablefromdate": "2025-02-26T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-02-25", + "numberoffloors_updatedate": "2025-02-25", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Ordnance Survey", + "numberoffloors_evidencedate": "2024-01-19", + "numberoffloors_capturemethod": "Field Survey", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 20, + "constructionmaterial_updatedate": "2025-02-25", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2024-01-19", + "constructionmaterial_capturemethod": "Field Survey", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 18, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.795423, + 51.2159344 + ], + [ + -0.7954023, + 51.2159449 + ], + [ + -0.7953548, + 51.2159684 + ], + [ + -0.79536, + 51.2159724 + ], + [ + -0.7952534, + 51.2160257 + ], + [ + -0.7952317, + 51.2160365 + ], + [ + -0.7952407, + 51.2160436 + ], + [ + -0.7951351, + 51.2160967 + ], + [ + -0.7951222, + 51.2160869 + ], + [ + -0.7951026, + 51.2160968 + ], + [ + -0.7951153, + 51.2161071 + ], + [ + -0.7950341, + 51.2161482 + ], + [ + -0.7948707, + 51.2162296 + ], + [ + -0.7948133, + 51.2161848 + ], + [ + -0.79474, + 51.2162211 + ], + [ + -0.794696, + 51.2161864 + ], + [ + -0.7946154, + 51.2162263 + ], + [ + -0.7945904, + 51.2162066 + ], + [ + -0.794584, + 51.2162096 + ], + [ + -0.7945253, + 51.2161631 + ], + [ + -0.7945019, + 51.2161743 + ], + [ + -0.7944831, + 51.2161593 + ], + [ + -0.7944319, + 51.2161192 + ], + [ + -0.7942817, + 51.2160039 + ], + [ + -0.7943449, + 51.2159721 + ], + [ + -0.7942913, + 51.2159292 + ], + [ + -0.7942793, + 51.2159197 + ], + [ + -0.7941906, + 51.2158499 + ], + [ + -0.7941115, + 51.2157876 + ], + [ + -0.7945548, + 51.215565 + ], + [ + -0.7946018, + 51.2155402 + ], + [ + -0.7947303, + 51.2154759 + ], + [ + -0.7947437, + 51.215486 + ], + [ + -0.7948113, + 51.2154521 + ], + [ + -0.7948114, + 51.2154521 + ], + [ + -0.794812, + 51.2154518 + ], + [ + -0.7948875, + 51.2155109 + ], + [ + -0.7949485, + 51.215559 + ], + [ + -0.7949523, + 51.215562 + ], + [ + -0.7950379, + 51.215629 + ], + [ + -0.7950486, + 51.2156374 + ], + [ + -0.7950798, + 51.2156618 + ], + [ + -0.7950949, + 51.2156736 + ], + [ + -0.7951914, + 51.2157494 + ], + [ + -0.7952374, + 51.2157855 + ], + [ + -0.7952452, + 51.2157918 + ], + [ + -0.7952651, + 51.2158078 + ], + [ + -0.7952971, + 51.2158338 + ], + [ + -0.7953499, + 51.2158765 + ], + [ + -0.7953568, + 51.215882 + ], + [ + -0.795423, + 51.2159344 + ] + ] + ] + }, + "properties": { + "osid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Mixed Use", + "description": "Mixed Use Building", + "versiondate": "2025-05-17", + "connectivity": "Multi-Connected", + "primarysiteid": "c509cbbc-1aea-49e0-9237-7bb252f7b1a8", + "sitereference": [ + { + "siteid": "c509cbbc-1aea-49e0-9237-7bb252f7b1a8", + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + } + ], + "uprnreference": [ + { + "uprn": 10091111597, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10091111598, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578781, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578782, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578783, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578784, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578785, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578786, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578787, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578788, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578789, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578790, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578791, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578792, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578793, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578794, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578795, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578796, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578797, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578798, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578799, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578800, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578801, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578802, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578803, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578804, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578805, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578806, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578807, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578808, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578809, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578810, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578811, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578812, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578813, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578897, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578898, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578899, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578900, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578902, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + }, + { + "uprn": 10094578905, + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingversiondate": "2025-05-17" + } + ], + "mainbuildingid": null, + "numberoffloors": 5, + "basementpresence": "Unknown", + "buildingage_year": 2023, + "geometry_area_m2": 4448.882, + "buildingpartcount": 2, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2025-05-17", + "constructionmaterial": "Unknown", + "buildingpartreference": [ + { + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingpartid": "4a3cf444-82bb-484a-a21c-0c81c20db1c6", + "buildingversiondate": "2025-05-17" + }, + { + "buildingid": "3ddbb60e-3ec3-4891-b7f9-f0c81b9ec647", + "buildingpartid": "4aa890ea-6bb1-42c7-9ab5-ce810d4e4c05", + "buildingversiondate": "2025-05-17" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-05-17", + "buildinguse_updatedate": "2025-05-17", + "description_updatedate": "2025-05-17", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-05-17", + "buildingage_evidencedate": "2024-01-19", + "versionavailablefromdate": "2025-05-18T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-05-17", + "numberoffloors_updatedate": "2025-05-17", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": "2024-03-15", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 2, + "buildinguse_addresscount_total": 41, + "constructionmaterial_updatedate": "2025-05-17", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 6, + "buildinguse_addresscount_residential": 33, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7980272, + 51.2150964 + ], + [ + -0.7980199, + 51.215099 + ], + [ + -0.7979994, + 51.2151065 + ], + [ + -0.7979433, + 51.215127 + ], + [ + -0.7979878, + 51.2151744 + ], + [ + -0.7980107, + 51.2151989 + ], + [ + -0.7979875, + 51.2152081 + ], + [ + -0.7979472, + 51.2152239 + ], + [ + -0.7979208, + 51.2151957 + ], + [ + -0.7978537, + 51.2152213 + ], + [ + -0.7978479, + 51.2152155 + ], + [ + -0.7978344, + 51.2152136 + ], + [ + -0.7978039, + 51.2151737 + ], + [ + -0.7979117, + 51.2151307 + ], + [ + -0.7977911, + 51.2150076 + ], + [ + -0.7976584, + 51.2150657 + ], + [ + -0.7976802, + 51.2150861 + ], + [ + -0.7976351, + 51.215105 + ], + [ + -0.7977031, + 51.2151713 + ], + [ + -0.7978197, + 51.2152728 + ], + [ + -0.7978735, + 51.2152517 + ], + [ + -0.797907, + 51.2152858 + ], + [ + -0.7978586, + 51.2153028 + ], + [ + -0.7978305, + 51.2152823 + ], + [ + -0.7977386, + 51.2153288 + ], + [ + -0.7977208, + 51.215314 + ], + [ + -0.7977043, + 51.2153012 + ], + [ + -0.7976894, + 51.2153096 + ], + [ + -0.7976815, + 51.2153132 + ], + [ + -0.797631, + 51.2153376 + ], + [ + -0.7975918, + 51.2153106 + ], + [ + -0.7976719, + 51.2152699 + ], + [ + -0.7977086, + 51.2152489 + ], + [ + -0.7976823, + 51.2152268 + ], + [ + -0.7975583, + 51.2152854 + ], + [ + -0.7975451, + 51.2152726 + ], + [ + -0.7974506, + 51.2153039 + ], + [ + -0.7974447, + 51.2153058 + ], + [ + -0.7974299, + 51.21529 + ], + [ + -0.7974154, + 51.2152744 + ], + [ + -0.7975454, + 51.2152266 + ], + [ + -0.7975643, + 51.2152196 + ], + [ + -0.7976258, + 51.215197 + ], + [ + -0.7975873, + 51.2151624 + ], + [ + -0.7975308, + 51.2151846 + ], + [ + -0.7975135, + 51.2151914 + ], + [ + -0.7974973, + 51.2151753 + ], + [ + -0.7974274, + 51.2152013 + ], + [ + -0.7974028, + 51.215178 + ], + [ + -0.7973554, + 51.215133 + ], + [ + -0.7972916, + 51.2150725 + ], + [ + -0.7972997, + 51.2150692 + ], + [ + -0.7975089, + 51.2149845 + ], + [ + -0.7975543, + 51.2150281 + ], + [ + -0.797828, + 51.2149082 + ], + [ + -0.7977725, + 51.2148622 + ], + [ + -0.7977383, + 51.2148338 + ], + [ + -0.7977041, + 51.2148054 + ], + [ + -0.7976691, + 51.2147764 + ], + [ + -0.7976349, + 51.2147479 + ], + [ + -0.797597, + 51.2147165 + ], + [ + -0.7975636, + 51.2146888 + ], + [ + -0.7975281, + 51.2146593 + ], + [ + -0.7974923, + 51.2146296 + ], + [ + -0.797456, + 51.2145996 + ], + [ + -0.7974208, + 51.2145704 + ], + [ + -0.7973872, + 51.2145425 + ], + [ + -0.7972903, + 51.214462 + ], + [ + -0.7972668, + 51.2144732 + ], + [ + -0.7971908, + 51.2145092 + ], + [ + -0.7970582, + 51.2143989 + ], + [ + -0.7972194, + 51.2143224 + ], + [ + -0.7973292, + 51.2144136 + ], + [ + -0.7973564, + 51.2144007 + ], + [ + -0.7973794, + 51.2144197 + ], + [ + -0.7974409, + 51.2144707 + ], + [ + -0.7974761, + 51.2144998 + ], + [ + -0.7976705, + 51.214661 + ], + [ + -0.7976941, + 51.2146805 + ], + [ + -0.797981, + 51.2149183 + ], + [ + -0.7980066, + 51.2149385 + ], + [ + -0.7979545, + 51.2149646 + ], + [ + -0.7979289, + 51.2149443 + ], + [ + -0.7978787, + 51.2149694 + ], + [ + -0.7979263, + 51.2150157 + ], + [ + -0.7979366, + 51.2150258 + ], + [ + -0.797949, + 51.21502 + ], + [ + -0.7979625, + 51.2150333 + ], + [ + -0.798001, + 51.2150709 + ], + [ + -0.7980272, + 51.2150964 + ] + ] + ] + }, + "properties": { + "osid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Geometry And Attributes", + "buildinguse": "Temporary Or Holiday Accommodation", + "description": "Temporary Or Holiday Accommodation Building", + "versiondate": "2024-08-08", + "connectivity": "Multi-Connected", + "primarysiteid": "5d06143b-6de1-4c3a-9cd7-360548352ac6", + "sitereference": [ + { + "siteid": "5d06143b-6de1-4c3a-9cd7-360548352ac6", + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingversiondate": "2024-08-08" + } + ], + "uprnreference": [ + { + "uprn": 100062162631, + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingversiondate": "2024-08-08" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 1813.383, + "buildingpartcount": 9, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 11, + "containingsitecount": 1, + "geometry_updatedate": "2024-08-08", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "24c61b11-10b7-4cfd-a31c-e697bf452a4c", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "54e6da2c-59b4-45b5-bbeb-acc141b3db9d", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "9dc36df0-e000-4e0e-b739-6cb67e4ffce8", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "b09dbe99-9bda-4f8d-81de-fe42bddbe09e", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "bf400eec-d075-47de-9d69-438def5cc1d1", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "c274dbb6-6a4d-46aa-b3e8-0e02bc0d0351", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "dc63278b-9184-4e6e-a025-374a1f298151", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "f0227e06-5cb3-4553-806a-870f28818c80", + "buildingversiondate": "2024-08-08" + }, + { + "buildingid": "3e5dd97c-6faa-4b52-9d9b-0bcf3bf06d59", + "buildingpartid": "ff704694-7afc-42a1-95ba-429ac45edb54", + "buildingversiondate": "2024-08-08" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-08-08", + "buildinguse_updatedate": "2024-08-08", + "description_updatedate": "2024-08-08", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-08-08", + "buildingage_evidencedate": "1950-04-26", + "versionavailablefromdate": "2024-08-09T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-08-08", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Temporary Or Holiday Accommodation", + "basementpresence_updatedate": "2024-08-08", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-08-08", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1950-04-26", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "3ecc9dd7-186d-4ee1-b9d2-188ba7ec79d0", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7950924, + 51.21483 + ], + [ + -0.7950028, + 51.2148742 + ], + [ + -0.7949672, + 51.2148457 + ], + [ + -0.7950568, + 51.2148016 + ], + [ + -0.7950924, + 51.21483 + ] + ] + ] + }, + "properties": { + "osid": "3ecc9dd7-186d-4ee1-b9d2-188ba7ec79d0", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Domestic Outbuilding", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": "9d95cfe2-d9e4-49fa-8bd4-a9051bb08164", + "sitereference": [ + { + "siteid": "9d95cfe2-d9e4-49fa-8bd4-a9051bb08164", + "buildingid": "3ecc9dd7-186d-4ee1-b9d2-188ba7ec79d0", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2022, + "geometry_area_m2": 32.023, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "3ecc9dd7-186d-4ee1-b9d2-188ba7ec79d0", + "buildingpartid": "cc6f5f0b-866c-4a99-8cb3-43211360a60e", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-07-06", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "No", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970642, + 51.2147416 + ], + [ + -0.7969844, + 51.2147831 + ], + [ + -0.7969774, + 51.2147772 + ], + [ + -0.7969208, + 51.2148049 + ], + [ + -0.7969061, + 51.2147935 + ], + [ + -0.7968836, + 51.2148045 + ], + [ + -0.7968619, + 51.2147868 + ], + [ + -0.7968452, + 51.2147951 + ], + [ + -0.7969077, + 51.2148425 + ], + [ + -0.7969518, + 51.2148228 + ], + [ + -0.7969757, + 51.214841 + ], + [ + -0.7969322, + 51.2148621 + ], + [ + -0.7969659, + 51.2148885 + ], + [ + -0.7968723, + 51.2149348 + ], + [ + -0.7968324, + 51.2149546 + ], + [ + -0.7967103, + 51.2148603 + ], + [ + -0.7967502, + 51.21484 + ], + [ + -0.7967379, + 51.2148303 + ], + [ + -0.7968311, + 51.2147846 + ], + [ + -0.7969499, + 51.2147265 + ], + [ + -0.7970075, + 51.2146983 + ], + [ + -0.7970642, + 51.2147416 + ] + ] + ] + }, + "properties": { + "osid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Residential Accommodation", + "description": "Multiple Residential Accommodation", + "versiondate": "2025-07-07", + "connectivity": "Multi-Connected", + "primarysiteid": "827ee9ce-7f15-4403-a287-a42e1938d100", + "sitereference": [ + { + "siteid": "827ee9ce-7f15-4403-a287-a42e1938d100", + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + } + ], + "uprnreference": [ + { + "uprn": 10096745265, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 10096745266, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 10096745267, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 10096745268, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 10096745269, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 10096745270, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 10096745271, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + }, + { + "uprn": 100062353933, + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingversiondate": "2025-07-07" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Present", + "buildingage_year": null, + "geometry_area_m2": 266.697, + "buildingpartcount": 1, + "buildingage_period": "Unknown", + "buildingage_source": null, + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2025-07-03", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "410edb06-b64e-4a6c-9311-6292b0e6934b", + "buildingpartid": "570a1be5-bcef-45c3-be7b-9cf7ec1300c5", + "buildingversiondate": "2025-07-07" + } + ], + "numberoffloors_source": "Energy Performance Certificate Authority", + "buildingage_updatedate": "2025-07-03", + "buildinguse_updatedate": "2025-07-03", + "description_updatedate": "2025-07-03", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2025-07-03", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2025-07-08T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2025-07-03", + "numberoffloors_updatedate": "2025-07-04", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2025-07-03", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2024-05-24", + "numberoffloors_capturemethod": "Third Party Unknown", + "basementpresence_evidencedate": "2017-04-01", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Third Party Unknown", + "basementpresence_selfcontained": "Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 8, + "constructionmaterial_updatedate": "2025-07-03", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 7, + "basementpresence_thirdpartyprovenance": "Valuation Office Agency (Non-Domestic Rates Pre 2018)", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "4b6dc6e1-de85-4a3c-b5ed-d664b139ef85", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7960597, + 51.2154076 + ], + [ + -0.7960101, + 51.215432 + ], + [ + -0.7958512, + 51.2153048 + ], + [ + -0.7958299, + 51.2153154 + ], + [ + -0.7957884, + 51.2152823 + ], + [ + -0.7958099, + 51.2152717 + ], + [ + -0.7957052, + 51.2151879 + ], + [ + -0.7957428, + 51.2151694 + ], + [ + -0.7958535, + 51.2152574 + ], + [ + -0.7959538, + 51.2152076 + ], + [ + -0.795984, + 51.2152316 + ], + [ + -0.7958831, + 51.2152814 + ], + [ + -0.7959977, + 51.2153731 + ], + [ + -0.7960092, + 51.2153678 + ], + [ + -0.7960597, + 51.2154076 + ] + ] + ] + }, + "properties": { + "osid": "4b6dc6e1-de85-4a3c-b5ed-d664b139ef85", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2022, + "geometry_area_m2": 161.015, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 2, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "4b6dc6e1-de85-4a3c-b5ed-d664b139ef85", + "buildingpartid": "a41273a4-8fad-4e02-8213-76a17f0f416d", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "4bfdd2e5-d0f7-4b8e-84cd-9572231ca3fb", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7966808, + 51.2158303 + ], + [ + -0.7966123, + 51.2158632 + ], + [ + -0.7965842, + 51.2158399 + ], + [ + -0.7966527, + 51.2158071 + ], + [ + -0.7966808, + 51.2158303 + ] + ] + ] + }, + "properties": { + "osid": "4bfdd2e5-d0f7-4b8e-84cd-9572231ca3fb", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 19.561, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 3, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "4bfdd2e5-d0f7-4b8e-84cd-9572231ca3fb", + "buildingpartid": "ecbf4ec6-69dc-4ad5-99e4-1aecf3c4e6be", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "53c28992-a9bd-482d-a16e-f1c477000438", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7971535, + 51.2157686 + ], + [ + -0.7970862, + 51.21581 + ], + [ + -0.7970162, + 51.2157622 + ], + [ + -0.797003, + 51.215772 + ], + [ + -0.7969568, + 51.2157425 + ], + [ + -0.7969762, + 51.2157313 + ], + [ + -0.7969586, + 51.2157194 + ], + [ + -0.7970051, + 51.2156906 + ], + [ + -0.7969863, + 51.2156782 + ], + [ + -0.7969992, + 51.2156694 + ], + [ + -0.7971488, + 51.2157657 + ], + [ + -0.7971535, + 51.2157686 + ] + ] + ] + }, + "properties": { + "osid": "53c28992-a9bd-482d-a16e-f1c477000438", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [ + { + "uprn": 100062354439, + "buildingid": "53c28992-a9bd-482d-a16e-f1c477000438", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 94.541, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 4, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "53c28992-a9bd-482d-a16e-f1c477000438", + "buildingpartid": "58ad3e8a-4318-4f7e-8e89-3b6997f8d8b7", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "555cb4c7-3275-4e64-955a-edda295b7267", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.797013, + 51.2149484 + ], + [ + -0.796938, + 51.214985 + ], + [ + -0.7969239, + 51.2149742 + ], + [ + -0.796999, + 51.214937 + ], + [ + -0.7970064, + 51.214943 + ], + [ + -0.797013, + 51.2149484 + ] + ] + ] + }, + "properties": { + "osid": "555cb4c7-3275-4e64-955a-edda295b7267", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 10.526, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 2, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "555cb4c7-3275-4e64-955a-edda295b7267", + "buildingpartid": "a3ff3231-13ee-444c-a885-0ba70b9b5b22", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "592f111a-c75b-4939-84bf-be7a9580086f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.796498, + 51.215572 + ], + [ + -0.7964978, + 51.2155721 + ], + [ + -0.7964345, + 51.2156081 + ], + [ + -0.7964342, + 51.2156079 + ], + [ + -0.7963935, + 51.2155783 + ], + [ + -0.7964393, + 51.2155523 + ], + [ + -0.7964527, + 51.2155447 + ], + [ + -0.796498, + 51.215572 + ] + ] + ] + }, + "properties": { + "osid": "592f111a-c75b-4939-84bf-be7a9580086f", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 25.302, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 0, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "592f111a-c75b-4939-84bf-be7a9580086f", + "buildingpartid": "2f2c1946-a719-4526-a035-7a010792f35d", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970436, + 51.2149237 + ], + [ + -0.7970064, + 51.214943 + ], + [ + -0.796999, + 51.214937 + ], + [ + -0.7969239, + 51.2149742 + ], + [ + -0.7968723, + 51.2149348 + ], + [ + -0.7969659, + 51.2148885 + ], + [ + -0.7969855, + 51.2148789 + ], + [ + -0.7970436, + 51.2149237 + ] + ] + ] + }, + "properties": { + "osid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2024-08-02", + "connectivity": "Multi-Connected", + "primarysiteid": "8147de7b-007c-4f9b-b64d-cfc9a3930523", + "sitereference": [ + { + "siteid": "8147de7b-007c-4f9b-b64d-cfc9a3930523", + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + } + ], + "uprnreference": [ + { + "uprn": 100061608461, + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 100062700123, + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291789, + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291790, + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291791, + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291792, + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingversiondate": "2024-08-02" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 59.611, + "buildingpartcount": 1, + "buildingage_period": "1919-1944", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "59d4065b-5919-4baf-b3a3-50f2f7e739f6", + "buildingpartid": "5ed65826-b000-420f-973a-7b57e15cd09e", + "buildingversiondate": "2024-08-02" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1939-12-31", + "versionavailablefromdate": "2024-08-03T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-08-02", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 6, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 5, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "5b82a156-997d-4351-bd3b-3194284fe57f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7957707, + 51.2155597 + ], + [ + -0.7954182, + 51.2157411 + ], + [ + -0.7953327, + 51.2156751 + ], + [ + -0.7953303, + 51.2156733 + ], + [ + -0.7953412, + 51.2156677 + ], + [ + -0.7953482, + 51.2156643 + ], + [ + -0.7953505, + 51.215666 + ], + [ + -0.7954215, + 51.2157208 + ], + [ + -0.7957385, + 51.2155577 + ], + [ + -0.7955958, + 51.2154471 + ], + [ + -0.7955595, + 51.2154657 + ], + [ + -0.7955073, + 51.2154923 + ], + [ + -0.795506, + 51.215493 + ], + [ + -0.7954921, + 51.2154824 + ], + [ + -0.7954928, + 51.2154812 + ], + [ + -0.7955992, + 51.2154269 + ], + [ + -0.7957707, + 51.2155597 + ] + ] + ] + }, + "properties": { + "osid": "5b82a156-997d-4351-bd3b-3194284fe57f", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2024, + "geometry_area_m2": 104.735, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "5b82a156-997d-4351-bd3b-3194284fe57f", + "buildingpartid": "f104907c-40b0-4e54-a8c2-6bde4bc71827", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2024-07-09", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "5df27d80-fc7d-4e7c-a9fd-3e90489b2171", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7972171, + 51.2154397 + ], + [ + -0.7971273, + 51.2154792 + ], + [ + -0.7971154, + 51.2154688 + ], + [ + -0.7970858, + 51.215481 + ], + [ + -0.7970707, + 51.2154553 + ], + [ + -0.7971801, + 51.2154056 + ], + [ + -0.7972171, + 51.2154397 + ] + ] + ] + }, + "properties": { + "osid": "5df27d80-fc7d-4e7c-a9fd-3e90489b2171", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2024-08-02", + "connectivity": "End-Connected", + "primarysiteid": "b41d3009-3c8f-4d9b-aec9-e207abc25969", + "sitereference": [ + { + "siteid": "b41d3009-3c8f-4d9b-aec9-e207abc25969", + "buildingid": "5df27d80-fc7d-4e7c-a9fd-3e90489b2171", + "buildingversiondate": "2024-08-02" + } + ], + "uprnreference": [ + { + "uprn": 10091108204, + "buildingid": "5df27d80-fc7d-4e7c-a9fd-3e90489b2171", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 100062354491, + "buildingid": "5df27d80-fc7d-4e7c-a9fd-3e90489b2171", + "buildingversiondate": "2024-08-02" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": 2016, + "geometry_area_m2": 41.199, + "buildingpartcount": 1, + "buildingage_period": "2010-2019", + "buildingage_source": "Verisk", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "5df27d80-fc7d-4e7c-a9fd-3e90489b2171", + "buildingpartid": "541f84e6-601d-47fb-9b46-802fdef00406", + "buildingversiondate": "2024-08-02" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-09-01", + "versionavailablefromdate": "2024-08-03T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-08-02", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 2, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2016-08-02", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 1, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)" + } + }, + { + "id": "6ac1c59d-419b-495d-a0a2-4ea91d2c165c", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7936563, + 51.2155739 + ], + [ + -0.7935991, + 51.2156803 + ], + [ + -0.793419, + 51.2156424 + ], + [ + -0.7933186, + 51.2156212 + ], + [ + -0.793349, + 51.2155639 + ], + [ + -0.7933751, + 51.2155148 + ], + [ + -0.7933863, + 51.2155171 + ], + [ + -0.7934748, + 51.2155357 + ], + [ + -0.7936563, + 51.2155739 + ] + ] + ] + }, + "properties": { + "osid": "6ac1c59d-419b-495d-a0a2-4ea91d2c165c", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Attraction Or Activity", + "description": "Attraction Building", + "versiondate": "2024-08-09", + "connectivity": "Standalone", + "primarysiteid": "c1da05b4-3ea6-4ec5-84e5-45870bbbdf1d", + "sitereference": [ + { + "siteid": "c1da05b4-3ea6-4ec5-84e5-45870bbbdf1d", + "buildingid": "6ac1c59d-419b-495d-a0a2-4ea91d2c165c", + "buildingversiondate": "2024-08-09" + } + ], + "uprnreference": [ + { + "uprn": 100062354616, + "buildingid": "6ac1c59d-419b-495d-a0a2-4ea91d2c165c", + "buildingversiondate": "2024-08-09" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 258.352, + "buildingpartcount": 1, + "buildingage_period": "1980-1989", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-08-09", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "6ac1c59d-419b-495d-a0a2-4ea91d2c165c", + "buildingpartid": "6c12bfcf-0c68-44f6-84f2-0dad6ed64780", + "buildingversiondate": "2024-08-09" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-08-09", + "buildinguse_updatedate": "2024-08-09", + "description_updatedate": "2024-08-09", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-08-09", + "buildingage_evidencedate": "1983-01-01", + "versionavailablefromdate": "2024-08-10T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-08-09", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Community Services: Other", + "basementpresence_updatedate": "2024-08-09", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-08-09", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2017-11-10", + "constructionmaterial_capturemethod": "Remote Sensing Survey", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation" + } + }, + { + "id": "764567f2-31b6-429b-9c8c-af136f81d0bd", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7967061, + 51.2158599 + ], + [ + -0.7966856, + 51.2158641 + ], + [ + -0.7966855, + 51.2158681 + ], + [ + -0.7966422, + 51.215888 + ], + [ + -0.7966123, + 51.2158632 + ], + [ + -0.7966808, + 51.2158303 + ], + [ + -0.7967061, + 51.2158599 + ] + ] + ] + }, + "properties": { + "osid": "764567f2-31b6-429b-9c8c-af136f81d0bd", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 19.982, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 4, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "764567f2-31b6-429b-9c8c-af136f81d0bd", + "buildingpartid": "38390671-8c66-45b8-8cf3-e30211917cfe", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "7c48b4ce-cb37-47f8-85ee-e5f1b695dc3e", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7967667, + 51.2159911 + ], + [ + -0.7967573, + 51.2159965 + ], + [ + -0.7967354, + 51.2160098 + ], + [ + -0.7967348, + 51.2160101 + ], + [ + -0.7966807, + 51.2160397 + ], + [ + -0.7966796, + 51.2160402 + ], + [ + -0.7966375, + 51.2160088 + ], + [ + -0.7965303, + 51.2159169 + ], + [ + -0.7965194, + 51.2159079 + ], + [ + -0.7965162, + 51.2159053 + ], + [ + -0.7965584, + 51.2158851 + ], + [ + -0.7965484, + 51.2158769 + ], + [ + -0.7965062, + 51.2158971 + ], + [ + -0.7964827, + 51.2158777 + ], + [ + -0.7964357, + 51.2158384 + ], + [ + -0.796526, + 51.2157917 + ], + [ + -0.7965842, + 51.2158399 + ], + [ + -0.7966123, + 51.2158632 + ], + [ + -0.7966422, + 51.215888 + ], + [ + -0.7967667, + 51.2159911 + ] + ] + ] + }, + "properties": { + "osid": "7c48b4ce-cb37-47f8-85ee-e5f1b695dc3e", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Geometry", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2025-01-04", + "connectivity": "Multi-Connected", + "primarysiteid": "1c30aa8c-8214-4cf3-9c63-98fc598f5533", + "sitereference": [ + { + "siteid": "1c30aa8c-8214-4cf3-9c63-98fc598f5533", + "buildingid": "7c48b4ce-cb37-47f8-85ee-e5f1b695dc3e", + "buildingversiondate": "2025-01-04" + } + ], + "uprnreference": [ + { + "uprn": 100061601828, + "buildingid": "7c48b4ce-cb37-47f8-85ee-e5f1b695dc3e", + "buildingversiondate": "2025-01-04" + }, + { + "uprn": 100062354441, + "buildingid": "7c48b4ce-cb37-47f8-85ee-e5f1b695dc3e", + "buildingversiondate": "2025-01-04" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 226.724, + "buildingpartcount": 1, + "buildingage_period": "Unknown", + "buildingage_source": null, + "connectivity_count": 5, + "containingsitecount": 1, + "geometry_updatedate": "2025-01-04", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "7c48b4ce-cb37-47f8-85ee-e5f1b695dc3e", + "buildingpartid": "dbe170fc-7906-48e8-ab17-102c55649c91", + "buildingversiondate": "2025-01-04" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-12-19", + "buildinguse_updatedate": "2025-01-04", + "description_updatedate": "2025-01-04", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2025-01-04", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2025-01-05T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2025-01-04", + "numberoffloors_updatedate": "2024-09-14", + "buildinguse_oslandusetiera": "Commercial Activity: Retail", + "basementpresence_updatedate": "2025-01-04", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 2, + "constructionmaterial_updatedate": "2024-12-19", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 1, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7968125, + 51.2159697 + ], + [ + -0.7967667, + 51.2159911 + ], + [ + -0.7966422, + 51.215888 + ], + [ + -0.7966855, + 51.2158681 + ], + [ + -0.7966856, + 51.2158641 + ], + [ + -0.7967061, + 51.2158599 + ], + [ + -0.7967277, + 51.2158853 + ], + [ + -0.7967579, + 51.2159205 + ], + [ + -0.7967713, + 51.2159283 + ], + [ + -0.7967632, + 51.215935 + ], + [ + -0.7968125, + 51.2159697 + ] + ] + ] + }, + "properties": { + "osid": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-07-28", + "connectivity": "Multi-Connected", + "primarysiteid": "241eb95c-992e-4dd1-9167-d65dcf4a14bb", + "sitereference": [ + { + "siteid": "241eb95c-992e-4dd1-9167-d65dcf4a14bb", + "buildingid": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "buildingversiondate": "2024-07-28" + } + ], + "uprnreference": [ + { + "uprn": 100062354440, + "buildingid": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "buildingversiondate": "2024-07-28" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 63.598, + "buildingpartcount": 3, + "buildingage_period": "1945-1959", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-28", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "buildingpartid": "1cdf8250-1f61-4265-a722-8881bb67a56c", + "buildingversiondate": "2024-07-28" + }, + { + "buildingid": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "buildingpartid": "bd270f4a-64b2-4845-b366-e5fa2ad351ec", + "buildingversiondate": "2024-07-28" + }, + { + "buildingid": "81dafb62-2ab1-45b9-852b-d171e0cdf24e", + "buildingpartid": "e9e95d92-47a3-41ef-843e-9d02251cf470", + "buildingversiondate": "2024-07-28" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-28", + "buildinguse_updatedate": "2024-07-28", + "description_updatedate": "2024-07-28", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-28", + "buildingage_evidencedate": "2017-11-10", + "versionavailablefromdate": "2024-07-29T00:00:00Z", + "buildingage_capturemethod": "Remote Sensing Survey", + "mainbuildingid_updatedate": "2024-07-28", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Commercial Activity: Retail", + "basementpresence_updatedate": "2024-07-28", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-28", + "buildingage_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "82161124-4754-4c53-bce1-857b5756f2a1", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7964371, + 51.2161658 + ], + [ + -0.7964083, + 51.216184 + ], + [ + -0.7963893, + 51.2161959 + ], + [ + -0.7963648, + 51.2162112 + ], + [ + -0.7963559, + 51.2162168 + ], + [ + -0.7963187, + 51.21624 + ], + [ + -0.7962721, + 51.216269 + ], + [ + -0.7962125, + 51.2163062 + ], + [ + -0.7962073, + 51.216303 + ], + [ + -0.7961862, + 51.2162899 + ], + [ + -0.7961619, + 51.2162747 + ], + [ + -0.7961613, + 51.2162742 + ], + [ + -0.7961545, + 51.2162778 + ], + [ + -0.7960313, + 51.2162001 + ], + [ + -0.7960343, + 51.2161982 + ], + [ + -0.795933, + 51.216124 + ], + [ + -0.7958668, + 51.216079 + ], + [ + -0.7957156, + 51.2159768 + ], + [ + -0.795605, + 51.2158957 + ], + [ + -0.79554, + 51.2159304 + ], + [ + -0.79551, + 51.2159084 + ], + [ + -0.7954969, + 51.2158988 + ], + [ + -0.7954792, + 51.2158858 + ], + [ + -0.7954854, + 51.2158825 + ], + [ + -0.7953861, + 51.2158095 + ], + [ + -0.7953993, + 51.2158023 + ], + [ + -0.7956367, + 51.2156749 + ], + [ + -0.7957275, + 51.215626 + ], + [ + -0.7957747, + 51.2156607 + ], + [ + -0.7959081, + 51.2157585 + ], + [ + -0.7958986, + 51.2157636 + ], + [ + -0.7959875, + 51.2158288 + ], + [ + -0.7959971, + 51.2158236 + ], + [ + -0.7960534, + 51.215865 + ], + [ + -0.7961199, + 51.2159138 + ], + [ + -0.7961225, + 51.2159124 + ], + [ + -0.7961941, + 51.2159651 + ], + [ + -0.7962183, + 51.2159828 + ], + [ + -0.7962075, + 51.2159888 + ], + [ + -0.7962921, + 51.2160509 + ], + [ + -0.7962986, + 51.2160474 + ], + [ + -0.796354, + 51.2160883 + ], + [ + -0.7963583, + 51.216086 + ], + [ + -0.7963629, + 51.2160893 + ], + [ + -0.7964283, + 51.2161371 + ], + [ + -0.7964343, + 51.2161567 + ], + [ + -0.7964371, + 51.2161658 + ] + ] + ] + }, + "properties": { + "osid": "82161124-4754-4c53-bce1-857b5756f2a1", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2025-05-08", + "connectivity": "Semi-Connected", + "primarysiteid": "49e042a2-cfac-4d84-8a4e-61e68f8d8791", + "sitereference": [ + { + "siteid": "49e042a2-cfac-4d84-8a4e-61e68f8d8791", + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + } + ], + "uprnreference": [ + { + "uprn": 10091111595, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578739, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578740, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578741, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578742, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578743, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578744, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578745, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578746, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578747, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578748, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578749, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578750, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578751, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578752, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578753, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578754, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578755, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578756, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578757, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578758, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578759, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578760, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578761, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578762, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578763, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578764, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578765, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578766, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578767, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578768, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578769, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578770, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578771, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578772, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578773, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578774, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578775, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578776, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578777, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578778, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578779, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578780, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578884, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578885, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578886, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578887, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578888, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578889, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578890, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578891, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578892, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578893, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578894, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578903, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10096746629, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10096746630, + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingversiondate": "2025-05-08" + } + ], + "mainbuildingid": null, + "numberoffloors": 5, + "basementpresence": "Unknown", + "buildingage_year": 2022, + "geometry_area_m2": 2084.987, + "buildingpartcount": 2, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2025-05-08", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingpartid": "31fa46ea-3631-4220-9e35-2a51d6eee818", + "buildingversiondate": "2025-05-08" + }, + { + "buildingid": "82161124-4754-4c53-bce1-857b5756f2a1", + "buildingpartid": "e887feac-caf8-4f62-acbf-903557829036", + "buildingversiondate": "2025-05-08" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-05-08", + "buildinguse_updatedate": "2025-05-08", + "description_updatedate": "2025-05-08", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-05-08", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2025-05-09T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-05-08", + "numberoffloors_updatedate": "2025-05-08", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 3, + "buildinguse_addresscount_total": 57, + "constructionmaterial_updatedate": "2025-05-08", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "1972-12-29", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 12, + "buildinguse_addresscount_residential": 42, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "82162cca-3ca2-4c19-85be-7a6d0dcc5569", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.794622, + 51.2144311 + ], + [ + -0.7945648, + 51.2144592 + ], + [ + -0.7945562, + 51.2144537 + ], + [ + -0.7945425, + 51.2144423 + ], + [ + -0.7945995, + 51.2144133 + ], + [ + -0.794622, + 51.2144311 + ] + ] + ] + }, + "properties": { + "osid": "82162cca-3ca2-4c19-85be-7a6d0dcc5569", + "theme": "Buildings", + "isinsite": false, + "changetype": "Modified Attributes", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-12-04", + "connectivity": "Semi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 12.732, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 1, + "containingsitecount": 0, + "geometry_updatedate": "2024-12-04", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "82162cca-3ca2-4c19-85be-7a6d0dcc5569", + "buildingpartid": "47d1f945-858b-425b-bde7-9c5101488bd6", + "buildingversiondate": "2024-12-04" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-12-04", + "description_updatedate": "2024-12-04", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-12-04", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-12-05T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-12-04", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "82a5984c-e8fd-495b-8af0-276e6a52c03f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7962408, + 51.2149246 + ], + [ + -0.7962339, + 51.2149278 + ], + [ + -0.7961433, + 51.2149733 + ], + [ + -0.79605, + 51.215026 + ], + [ + -0.7960008, + 51.2150549 + ], + [ + -0.7959917, + 51.215048 + ], + [ + -0.7959088, + 51.2150903 + ], + [ + -0.7958887, + 51.2150996 + ], + [ + -0.7958842, + 51.2151018 + ], + [ + -0.7953709, + 51.2146961 + ], + [ + -0.7953767, + 51.2146931 + ], + [ + -0.7953769, + 51.214693 + ], + [ + -0.795377, + 51.214693 + ], + [ + -0.795722, + 51.2145192 + ], + [ + -0.7959794, + 51.2147242 + ], + [ + -0.7959852, + 51.2147202 + ], + [ + -0.7961795, + 51.2148755 + ], + [ + -0.7962408, + 51.2149246 + ] + ] + ] + }, + "properties": { + "osid": "82a5984c-e8fd-495b-8af0-276e6a52c03f", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": "9c0eb5a2-35bf-4e21-8320-dea921dc4786", + "sitereference": [ + { + "siteid": "9c0eb5a2-35bf-4e21-8320-dea921dc4786", + "buildingid": "82a5984c-e8fd-495b-8af0-276e6a52c03f", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 1831.975, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "82a5984c-e8fd-495b-8af0-276e6a52c03f", + "buildingpartid": "8ec722df-166d-4ca6-903c-4c5a0ef60751", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Transport: Road, Track Or Path", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7971021, + 51.2149689 + ], + [ + -0.7969918, + 51.2150262 + ], + [ + -0.796938, + 51.214985 + ], + [ + -0.797013, + 51.2149484 + ], + [ + -0.7970064, + 51.214943 + ], + [ + -0.7970436, + 51.2149237 + ], + [ + -0.7971021, + 51.2149689 + ] + ] + ] + }, + "properties": { + "osid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2024-08-02", + "connectivity": "Multi-Connected", + "primarysiteid": "edfb0a6c-76b8-4901-ab5d-b01aeeec8a27", + "sitereference": [ + { + "siteid": "edfb0a6c-76b8-4901-ab5d-b01aeeec8a27", + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + } + ], + "uprnreference": [ + { + "uprn": 100061608460, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 100062700112, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 100062700122, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291785, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291786, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291787, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291788, + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingversiondate": "2024-08-02" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 60.529, + "buildingpartcount": 1, + "buildingage_period": "1919-1944", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "88dc7808-a04e-49e5-b66c-6b64220eb8a8", + "buildingpartid": "3d62a047-abb1-4ca5-a473-ad0390113e06", + "buildingversiondate": "2024-08-02" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1939-12-31", + "versionavailablefromdate": "2024-08-03T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-08-02", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 7, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 5, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "8e9a3745-5172-4299-b46b-5eb5dbaf9221", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970363, + 51.2158407 + ], + [ + -0.796946, + 51.2158982 + ], + [ + -0.7969405, + 51.2158649 + ], + [ + -0.7965689, + 51.2156183 + ], + [ + -0.7965929, + 51.215605 + ], + [ + -0.7968722, + 51.2157936 + ], + [ + -0.79691, + 51.2157701 + ], + [ + -0.7966058, + 51.2155737 + ], + [ + -0.7966254, + 51.215564 + ], + [ + -0.7966726, + 51.215595 + ], + [ + -0.7967227, + 51.2156271 + ], + [ + -0.7967677, + 51.2156558 + ], + [ + -0.796831, + 51.2156965 + ], + [ + -0.7968434, + 51.2157044 + ], + [ + -0.7969106, + 51.2157481 + ], + [ + -0.7969278, + 51.2157593 + ], + [ + -0.7969144, + 51.215767 + ], + [ + -0.7970363, + 51.2158407 + ] + ] + ] + }, + "properties": { + "osid": "8e9a3745-5172-4299-b46b-5eb5dbaf9221", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Commercial Activity: Other", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [ + { + "uprn": 10013893571, + "buildingid": "8e9a3745-5172-4299-b46b-5eb5dbaf9221", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 192.367, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 7, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "8e9a3745-5172-4299-b46b-5eb5dbaf9221", + "buildingpartid": "7cadd1cb-b6a6-4fb4-89ba-c58bbca929c5", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-07-19", + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "940992ea-9d4e-4112-ad45-ef75069afb4b", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7957385, + 51.2155577 + ], + [ + -0.7954215, + 51.2157208 + ], + [ + -0.7953505, + 51.215666 + ], + [ + -0.7953482, + 51.2156643 + ], + [ + -0.7953412, + 51.2156677 + ], + [ + -0.7952567, + 51.2156014 + ], + [ + -0.7953127, + 51.2155726 + ], + [ + -0.7953126, + 51.2155565 + ], + [ + -0.7953452, + 51.21554 + ], + [ + -0.7953693, + 51.2155431 + ], + [ + -0.7954255, + 51.2155145 + ], + [ + -0.7954262, + 51.2154986 + ], + [ + -0.7954579, + 51.2154823 + ], + [ + -0.7954836, + 51.2154848 + ], + [ + -0.7954901, + 51.2154809 + ], + [ + -0.7954921, + 51.2154824 + ], + [ + -0.795506, + 51.215493 + ], + [ + -0.7955073, + 51.2154923 + ], + [ + -0.7955595, + 51.2154657 + ], + [ + -0.7955958, + 51.2154471 + ], + [ + -0.7957385, + 51.2155577 + ] + ] + ] + }, + "properties": { + "osid": "940992ea-9d4e-4112-ad45-ef75069afb4b", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "72b0fb69-ee43-4d37-8e26-29553ca637b4", + "sitereference": [ + { + "siteid": "72b0fb69-ee43-4d37-8e26-29553ca637b4", + "buildingid": "940992ea-9d4e-4112-ad45-ef75069afb4b", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10094578906, + "buildingid": "940992ea-9d4e-4112-ad45-ef75069afb4b", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Unknown", + "buildingage_year": 2024, + "geometry_area_m2": 505.823, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "940992ea-9d4e-4112-ad45-ef75069afb4b", + "buildingpartid": "92b1189e-6b77-42a6-ae83-801e5d7f1914", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2024-07-09", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-07-19", + "buildinguse_oslandusetiera": "Commercial Activity: Retail", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Ordnance Survey", + "numberoffloors_evidencedate": "2024-01-19", + "numberoffloors_capturemethod": "Field Survey", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2024-01-19", + "constructionmaterial_capturemethod": "Field Survey", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "9829a313-a99f-4e09-81bb-7b6f42b0e1de", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.79554, + 51.2159304 + ], + [ + -0.7955267, + 51.2159375 + ], + [ + -0.7954968, + 51.2159155 + ], + [ + -0.79551, + 51.2159084 + ], + [ + -0.79554, + 51.2159304 + ] + ] + ] + }, + "properties": { + "osid": "9829a313-a99f-4e09-81bb-7b6f42b0e1de", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Semi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2022, + "geometry_area_m2": 3.927, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "9829a313-a99f-4e09-81bb-7b6f42b0e1de", + "buildingpartid": "884188fa-c6fa-4bf1-b07c-938cf0c514f8", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "9dc5fe65-d5d7-4f6e-a5ac-1eeeeba7534f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7953132, + 51.2162582 + ], + [ + -0.7952984, + 51.2162663 + ], + [ + -0.795251, + 51.2162317 + ], + [ + -0.7952441, + 51.2162353 + ], + [ + -0.79521, + 51.2162106 + ], + [ + -0.7952326, + 51.2161992 + ], + [ + -0.7953132, + 51.2162582 + ] + ] + ] + }, + "properties": { + "osid": "9dc5fe65-d5d7-4f6e-a5ac-1eeeeba7534f", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2022, + "geometry_area_m2": 14.222, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 2, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "9dc5fe65-d5d7-4f6e-a5ac-1eeeeba7534f", + "buildingpartid": "a51b91b2-d504-4dda-9746-6f743b9026b5", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.796946, + 51.2158982 + ], + [ + -0.7969264, + 51.2159097 + ], + [ + -0.7969068, + 51.2159203 + ], + [ + -0.7968335, + 51.2159591 + ], + [ + -0.796819, + 51.2159661 + ], + [ + -0.7968125, + 51.2159697 + ], + [ + -0.7967632, + 51.215935 + ], + [ + -0.7967713, + 51.2159283 + ], + [ + -0.7967579, + 51.2159205 + ], + [ + -0.7967277, + 51.2158853 + ], + [ + -0.7967061, + 51.2158599 + ], + [ + -0.7966808, + 51.2158303 + ], + [ + -0.7967135, + 51.2158122 + ], + [ + -0.7966685, + 51.215778 + ], + [ + -0.7966055, + 51.2158075 + ], + [ + -0.7965569, + 51.2157746 + ], + [ + -0.7965628, + 51.2157688 + ], + [ + -0.796532, + 51.2157482 + ], + [ + -0.7964709, + 51.2157074 + ], + [ + -0.7964552, + 51.2156969 + ], + [ + -0.796446, + 51.2156907 + ], + [ + -0.7964564, + 51.2156846 + ], + [ + -0.7964993, + 51.2156593 + ], + [ + -0.7965689, + 51.2156183 + ], + [ + -0.7969405, + 51.2158649 + ], + [ + -0.796946, + 51.2158982 + ] + ] + ] + }, + "properties": { + "osid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "19e7ecf7-4f29-4ccd-87cb-cd162f44971a", + "sitereference": [ + { + "siteid": "19e7ecf7-4f29-4ccd-87cb-cd162f44971a", + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013891953, + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 10013891954, + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 100062609405, + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 200001538575, + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 475.521, + "buildingpartcount": 3, + "buildingage_period": "Unknown", + "buildingage_source": null, + "connectivity_count": 6, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingpartid": "114b66da-91de-424c-91e1-fd94a22f83d1", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingpartid": "8060eaea-903e-4dd9-b1c2-6be2604d577e", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "a074413d-2f2d-4d94-860c-dec8446c70e3", + "buildingpartid": "a64da676-c80f-408a-b809-275dc41bf727", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-07-19", + "buildinguse_oslandusetiera": "Unknown Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 4, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 2, + "buildinguse_addresscount_residential": 2, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "a3cd878a-11e0-4414-932f-de5f42032c30", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7957631, + 51.2162097 + ], + [ + -0.7956581, + 51.2162624 + ], + [ + -0.7955701, + 51.2163053 + ], + [ + -0.7955683, + 51.2163062 + ], + [ + -0.7955417, + 51.2162851 + ], + [ + -0.7955338, + 51.2162788 + ], + [ + -0.7955311, + 51.2162767 + ], + [ + -0.7955804, + 51.216252 + ], + [ + -0.7955692, + 51.2162429 + ], + [ + -0.7956079, + 51.2162231 + ], + [ + -0.7955426, + 51.2161715 + ], + [ + -0.7954781, + 51.2162036 + ], + [ + -0.7954594, + 51.2161888 + ], + [ + -0.7954592, + 51.2161886 + ], + [ + -0.7954419, + 51.2161973 + ], + [ + -0.7954061, + 51.2162153 + ], + [ + -0.7953162, + 51.2162604 + ], + [ + -0.7953132, + 51.2162582 + ], + [ + -0.7952326, + 51.2161992 + ], + [ + -0.7953063, + 51.2161622 + ], + [ + -0.7952903, + 51.2161496 + ], + [ + -0.7953105, + 51.2161396 + ], + [ + -0.7953466, + 51.2161214 + ], + [ + -0.7953633, + 51.2161129 + ], + [ + -0.7954323, + 51.2160784 + ], + [ + -0.7954424, + 51.2160734 + ], + [ + -0.7954495, + 51.216079 + ], + [ + -0.7955576, + 51.2160239 + ], + [ + -0.7956392, + 51.2160882 + ], + [ + -0.7956281, + 51.2160937 + ], + [ + -0.7956864, + 51.2161396 + ], + [ + -0.7956789, + 51.2161435 + ], + [ + -0.7957631, + 51.2162097 + ] + ] + ] + }, + "properties": { + "osid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Residential Accommodation", + "description": "Multiple Residential Accommodation", + "versiondate": "2025-05-08", + "connectivity": "End-Connected", + "primarysiteid": "9bfe44cd-cecb-4960-81ca-5f9e9dc8c0f6", + "sitereference": [ + { + "siteid": "9bfe44cd-cecb-4960-81ca-5f9e9dc8c0f6", + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + } + ], + "uprnreference": [ + { + "uprn": 10094578814, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578815, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578816, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578817, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578818, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578819, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578820, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578821, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578822, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578823, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578824, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578825, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578826, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578827, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + }, + { + "uprn": 10094578828, + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingversiondate": "2025-05-08" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Unknown", + "buildingage_year": 2022, + "geometry_area_m2": 495.759, + "buildingpartcount": 4, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2025-05-08", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingpartid": "31ea759c-ab8c-461c-8924-4359ed1ea5eb", + "buildingversiondate": "2025-05-08" + }, + { + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingpartid": "5bf725c4-33e1-4572-bab7-8ad451688ce3", + "buildingversiondate": "2025-05-08" + }, + { + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingpartid": "b0fb093f-7a8b-40e6-b3d9-9c93c5e97d2c", + "buildingversiondate": "2025-05-08" + }, + { + "buildingid": "a3cd878a-11e0-4414-932f-de5f42032c30", + "buildingpartid": "d6120852-d909-44f7-a913-1d7d277d5e3a", + "buildingversiondate": "2025-05-08" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2025-05-08", + "buildinguse_updatedate": "2025-05-08", + "description_updatedate": "2025-05-08", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-05-08", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2025-05-09T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-05-08", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 15, + "constructionmaterial_updatedate": "2025-05-08", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2025-03-26", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 15, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "a644ba99-9729-40b3-bd3d-7df7d1c83b25", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7959538, + 51.2152076 + ], + [ + -0.7958535, + 51.2152574 + ], + [ + -0.7957428, + 51.2151694 + ], + [ + -0.7957147, + 51.215147 + ], + [ + -0.795799, + 51.2151054 + ], + [ + -0.7957959, + 51.2151028 + ], + [ + -0.7958124, + 51.2150944 + ], + [ + -0.7958841, + 51.2151522 + ], + [ + -0.7959538, + 51.2152076 + ] + ] + ] + }, + "properties": { + "osid": "a644ba99-9729-40b3-bd3d-7df7d1c83b25", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-11-26", + "connectivity": "Multi-Connected", + "primarysiteid": "afeb1224-99e2-4a0e-b935-9b4772eab1a4", + "sitereference": [ + { + "siteid": "afeb1224-99e2-4a0e-b935-9b4772eab1a4", + "buildingid": "a644ba99-9729-40b3-bd3d-7df7d1c83b25", + "buildingversiondate": "2024-11-26" + } + ], + "uprnreference": [ + { + "uprn": 10094578873, + "buildingid": "a644ba99-9729-40b3-bd3d-7df7d1c83b25", + "buildingversiondate": "2024-11-26" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Unknown", + "buildingage_year": 2022, + "geometry_area_m2": 140.291, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2024-11-26", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "a644ba99-9729-40b3-bd3d-7df7d1c83b25", + "buildingpartid": "6321a722-2d6a-439d-936e-83075e9759b8", + "buildingversiondate": "2024-11-26" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-11-26", + "buildinguse_updatedate": "2024-11-26", + "description_updatedate": "2024-11-26", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-11-26", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2024-11-27T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-11-26", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Commercial Activity: Retail", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-11-26", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2017-11-10", + "constructionmaterial_capturemethod": "Remote Sensing Survey", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation" + } + }, + { + "id": "a84dbec7-151b-4bd7-b081-7c0651133190", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7954939, + 51.2144804 + ], + [ + -0.7954348, + 51.214511 + ], + [ + -0.795386, + 51.2145363 + ], + [ + -0.7953443, + 51.2145578 + ], + [ + -0.7953442, + 51.2145579 + ], + [ + -0.7953227, + 51.2145415 + ], + [ + -0.7954507, + 51.2144753 + ], + [ + -0.7954724, + 51.2144641 + ], + [ + -0.7954939, + 51.2144804 + ] + ] + ] + }, + "properties": { + "osid": "a84dbec7-151b-4bd7-b081-7c0651133190", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Ancillary Building", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": "9906c9a2-9881-41a3-aee9-171108172de1", + "sitereference": [ + { + "siteid": "9906c9a2-9881-41a3-aee9-171108172de1", + "buildingid": "a84dbec7-151b-4bd7-b081-7c0651133190", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": "2700003f-110e-46ea-945b-22e830e42afb", + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 31.955, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "a84dbec7-151b-4bd7-b081-7c0651133190", + "buildingpartid": "72515caf-2d17-4c02-b81b-b517e46532cc", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "No", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "adfb6d1d-03fb-4eba-ad36-109264892ad5", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7968284, + 51.2144222 + ], + [ + -0.7967958, + 51.2144384 + ], + [ + -0.7966565, + 51.2145077 + ], + [ + -0.7966411, + 51.2144954 + ], + [ + -0.7966106, + 51.2145112 + ], + [ + -0.7966029, + 51.2145058 + ], + [ + -0.7966094, + 51.2145022 + ], + [ + -0.7965968, + 51.2144927 + ], + [ + -0.7965895, + 51.2144962 + ], + [ + -0.7965832, + 51.2144912 + ], + [ + -0.796613, + 51.2144758 + ], + [ + -0.796587, + 51.2144566 + ], + [ + -0.7965667, + 51.2144672 + ], + [ + -0.796573, + 51.2144722 + ], + [ + -0.7965606, + 51.2144788 + ], + [ + -0.7965529, + 51.2144729 + ], + [ + -0.7965282, + 51.2144857 + ], + [ + -0.7965352, + 51.2144911 + ], + [ + -0.7965229, + 51.2144978 + ], + [ + -0.7965159, + 51.2144923 + ], + [ + -0.796489, + 51.2145064 + ], + [ + -0.7964953, + 51.2145114 + ], + [ + -0.7964823, + 51.214518 + ], + [ + -0.7964753, + 51.2145121 + ], + [ + -0.796447, + 51.2145271 + ], + [ + -0.796454, + 51.2145321 + ], + [ + -0.7964417, + 51.2145383 + ], + [ + -0.7964023, + 51.2145096 + ], + [ + -0.7963747, + 51.2145241 + ], + [ + -0.7963663, + 51.2145177 + ], + [ + -0.796375, + 51.2145133 + ], + [ + -0.7963673, + 51.2145078 + ], + [ + -0.7963579, + 51.2145127 + ], + [ + -0.7963494, + 51.2145063 + ], + [ + -0.7963582, + 51.2145015 + ], + [ + -0.7963364, + 51.214485 + ], + [ + -0.7963277, + 51.2144895 + ], + [ + -0.79632, + 51.2144835 + ], + [ + -0.796328, + 51.2144787 + ], + [ + -0.7963181, + 51.2144727 + ], + [ + -0.7963087, + 51.2144758 + ], + [ + -0.7963017, + 51.2144708 + ], + [ + -0.7963089, + 51.2144668 + ], + [ + -0.7963047, + 51.2144631 + ], + [ + -0.7962968, + 51.2144676 + ], + [ + -0.7962876, + 51.2144621 + ], + [ + -0.7962963, + 51.2144572 + ], + [ + -0.7962773, + 51.2144431 + ], + [ + -0.7962694, + 51.214447 + ], + [ + -0.7962581, + 51.2144388 + ], + [ + -0.7962676, + 51.2144344 + ], + [ + -0.7962605, + 51.214429 + ], + [ + -0.7962693, + 51.2144241 + ], + [ + -0.7962791, + 51.2144314 + ], + [ + -0.7962994, + 51.2144208 + ], + [ + -0.7962903, + 51.214414 + ], + [ + -0.7963004, + 51.2144082 + ], + [ + -0.7963096, + 51.2144155 + ], + [ + -0.7963154, + 51.2144124 + ], + [ + -0.7963196, + 51.2144156 + ], + [ + -0.7963413, + 51.2144046 + ], + [ + -0.796335, + 51.2144001 + ], + [ + -0.7963445, + 51.2143952 + ], + [ + -0.7963508, + 51.2143998 + ], + [ + -0.7963805, + 51.2143843 + ], + [ + -0.7963756, + 51.2143802 + ], + [ + -0.7963851, + 51.2143754 + ], + [ + -0.7963907, + 51.2143799 + ], + [ + -0.7964233, + 51.2143632 + ], + [ + -0.796417, + 51.2143586 + ], + [ + -0.7964271, + 51.2143538 + ], + [ + -0.7964335, + 51.2143588 + ], + [ + -0.7964596, + 51.2143451 + ], + [ + -0.7964512, + 51.2143387 + ], + [ + -0.7964613, + 51.2143339 + ], + [ + -0.7964676, + 51.2143389 + ], + [ + -0.7964988, + 51.2143226 + ], + [ + -0.7964918, + 51.2143171 + ], + [ + -0.796502, + 51.2143118 + ], + [ + -0.7965083, + 51.2143164 + ], + [ + -0.7965402, + 51.2142996 + ], + [ + -0.796536, + 51.214296 + ], + [ + -0.7965404, + 51.214292 + ], + [ + -0.7965306, + 51.2142861 + ], + [ + -0.7965037, + 51.2143002 + ], + [ + -0.7965058, + 51.214302 + ], + [ + -0.7964956, + 51.2143073 + ], + [ + -0.796457, + 51.2142777 + ], + [ + -0.7964486, + 51.2142713 + ], + [ + -0.7964566, + 51.2142673 + ], + [ + -0.7964644, + 51.2142714 + ], + [ + -0.7964905, + 51.2142573 + ], + [ + -0.7964807, + 51.21425 + ], + [ + -0.7964887, + 51.2142461 + ], + [ + -0.7964936, + 51.2142497 + ], + [ + -0.7965545, + 51.2142198 + ], + [ + -0.7965482, + 51.2142148 + ], + [ + -0.7965576, + 51.2142099 + ], + [ + -0.7965646, + 51.2142149 + ], + [ + -0.7966198, + 51.2141863 + ], + [ + -0.7966142, + 51.2141817 + ], + [ + -0.7966222, + 51.2141777 + ], + [ + -0.7966289, + 51.2141828 + ], + [ + -0.7967948, + 51.2143099 + ], + [ + -0.796761, + 51.2143712 + ], + [ + -0.7967652, + 51.2143744 + ], + [ + -0.7968284, + 51.2144222 + ] + ] + ] + }, + "properties": { + "osid": "adfb6d1d-03fb-4eba-ad36-109264892ad5", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail|Community Services: Religious Worship", + "description": "Church", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": "c6af6435-6878-45bc-bb06-64abe119f5d2", + "sitereference": [ + { + "siteid": "c6af6435-6878-45bc-bb06-64abe119f5d2", + "buildingid": "adfb6d1d-03fb-4eba-ad36-109264892ad5", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10096745655, + "buildingid": "adfb6d1d-03fb-4eba-ad36-109264892ad5", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 200001532928, + "buildingid": "adfb6d1d-03fb-4eba-ad36-109264892ad5", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 790.384, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "adfb6d1d-03fb-4eba-ad36-109264892ad5", + "buildingpartid": "500a894e-b556-4071-988b-7e8e92b60346", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1972-12-29", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Community Services: Religious Worship", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 2, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "2017-11-10", + "constructionmaterial_capturemethod": "Remote Sensing Survey", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation" + } + }, + { + "id": "b44319d1-c29f-4423-9651-0e3ed71a066c", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7953715, + 51.2158646 + ], + [ + -0.7953499, + 51.2158765 + ], + [ + -0.7952971, + 51.2158338 + ], + [ + -0.7952651, + 51.2158078 + ], + [ + -0.7952452, + 51.2157918 + ], + [ + -0.7952662, + 51.2157813 + ], + [ + -0.7953715, + 51.2158646 + ] + ] + ] + }, + "properties": { + "osid": "b44319d1-c29f-4423-9651-0e3ed71a066c", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2024, + "geometry_area_m2": 22.99, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "b44319d1-c29f-4423-9651-0e3ed71a066c", + "buildingpartid": "5520f501-4403-40a8-952d-4e808d149ff6", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2024-01-19", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "bc432d82-0084-46c4-87ec-b0e10c874bbe", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.795949, + 51.2144622 + ], + [ + -0.7959442, + 51.2144646 + ], + [ + -0.7959185, + 51.2144771 + ], + [ + -0.7958966, + 51.2144595 + ], + [ + -0.7958758, + 51.2144425 + ], + [ + -0.7959008, + 51.2144305 + ], + [ + -0.7959069, + 51.2144276 + ], + [ + -0.7959467, + 51.2144603 + ], + [ + -0.795949, + 51.2144622 + ] + ] + ] + }, + "properties": { + "osid": "bc432d82-0084-46c4-87ec-b0e10c874bbe", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 13.229, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 0, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "bc432d82-0084-46c4-87ec-b0e10c874bbe", + "buildingpartid": "d562cb93-974f-4b12-8a84-78f30e9d8098", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "bde35a97-db87-468a-a5d0-2f9edb344b28", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7967628, + 51.214591 + ], + [ + -0.7966645, + 51.2146413 + ], + [ + -0.7965593, + 51.2146955 + ], + [ + -0.7965163, + 51.2146628 + ], + [ + -0.7964982, + 51.2146489 + ], + [ + -0.7964954, + 51.2146468 + ], + [ + -0.7964775, + 51.2146484 + ], + [ + -0.7964571, + 51.2146329 + ], + [ + -0.796459, + 51.214614 + ], + [ + -0.7965613, + 51.2145647 + ], + [ + -0.7965803, + 51.214577 + ], + [ + -0.796713, + 51.2145087 + ], + [ + -0.7967481, + 51.2145356 + ], + [ + -0.7967139, + 51.2145533 + ], + [ + -0.7967628, + 51.214591 + ] + ] + ] + }, + "properties": { + "osid": "bde35a97-db87-468a-a5d0-2f9edb344b28", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Other", + "description": "Commercial Building", + "versiondate": "2024-08-08", + "connectivity": "Standalone", + "primarysiteid": "c912318c-25d9-46d8-bfe4-d75c8af9fae4", + "sitereference": [ + { + "siteid": "c912318c-25d9-46d8-bfe4-d75c8af9fae4", + "buildingid": "bde35a97-db87-468a-a5d0-2f9edb344b28", + "buildingversiondate": "2024-08-08" + } + ], + "uprnreference": [ + { + "uprn": 100062353876, + "buildingid": "bde35a97-db87-468a-a5d0-2f9edb344b28", + "buildingversiondate": "2024-08-08" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 205.027, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-08-08", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "bde35a97-db87-468a-a5d0-2f9edb344b28", + "buildingpartid": "07cbdc37-967f-42bd-a1cc-a15e318067cf", + "buildingversiondate": "2024-08-08" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-08-08", + "buildinguse_updatedate": "2024-08-08", + "description_updatedate": "2024-08-08", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-08-08", + "buildingage_evidencedate": "2017-11-10", + "versionavailablefromdate": "2024-08-09T00:00:00Z", + "buildingage_capturemethod": "Remote Sensing Survey", + "mainbuildingid_updatedate": "2024-08-08", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Commercial Activity: Industrial Or Manufacturing", + "basementpresence_updatedate": "2024-08-08", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-08-08", + "buildingage_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation", + "constructionmaterial_evidencedate": "2017-11-10", + "constructionmaterial_capturemethod": "Remote Sensing Survey", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation" + } + }, + { + "id": "bf1a250b-098a-4a46-a094-0f60ee570916", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7972199, + 51.2150598 + ], + [ + -0.7971082, + 51.2151153 + ], + [ + -0.7970567, + 51.2150758 + ], + [ + -0.7971295, + 51.2150395 + ], + [ + -0.7971226, + 51.2150339 + ], + [ + -0.7971612, + 51.2150145 + ], + [ + -0.7972199, + 51.2150598 + ] + ] + ] + }, + "properties": { + "osid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2024-08-02", + "connectivity": "Multi-Connected", + "primarysiteid": "b84ebd91-5585-42d0-81ec-6bbe732e24b5", + "sitereference": [ + { + "siteid": "b84ebd91-5585-42d0-81ec-6bbe732e24b5", + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + } + ], + "uprnreference": [ + { + "uprn": 100061608458, + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 100062700120, + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291777, + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291778, + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291779, + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291780, + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingversiondate": "2024-08-02" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 59.358, + "buildingpartcount": 1, + "buildingage_period": "1919-1944", + "buildingage_source": "Verisk", + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "bf1a250b-098a-4a46-a094-0f60ee570916", + "buildingpartid": "b54e3195-71f5-4208-8558-693094430fa7", + "buildingversiondate": "2024-08-02" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1939-12-31", + "versionavailablefromdate": "2024-08-03T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-08-02", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 6, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 5, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "c67da512-ef8c-4f60-9c00-7410ef8333ec", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.797265, + 51.2156897 + ], + [ + -0.7972047, + 51.2157269 + ], + [ + -0.7969961, + 51.2155905 + ], + [ + -0.7970538, + 51.215554 + ], + [ + -0.7970849, + 51.215574 + ], + [ + -0.7972598, + 51.2156863 + ], + [ + -0.797265, + 51.2156897 + ] + ] + ] + }, + "properties": { + "osid": "c67da512-ef8c-4f60-9c00-7410ef8333ec", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": "705ad083-43f6-472e-901d-d36dcc1244d9", + "sitereference": [ + { + "siteid": "705ad083-43f6-472e-901d-d36dcc1244d9", + "buildingid": "c67da512-ef8c-4f60-9c00-7410ef8333ec", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013892485, + "buildingid": "c67da512-ef8c-4f60-9c00-7410ef8333ec", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 122.446, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "c67da512-ef8c-4f60-9c00-7410ef8333ec", + "buildingpartid": "73df10c6-0f97-44f5-800a-c2e8000a5289", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Commercial Activity: Retail", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970914, + 51.2153206 + ], + [ + -0.7969874, + 51.215382 + ], + [ + -0.7968837, + 51.2153128 + ], + [ + -0.7968333, + 51.2152793 + ], + [ + -0.7967824, + 51.2153089 + ], + [ + -0.7967858, + 51.2153121 + ], + [ + -0.796603, + 51.2154188 + ], + [ + -0.7966297, + 51.2154367 + ], + [ + -0.7966435, + 51.2154285 + ], + [ + -0.796721, + 51.2154804 + ], + [ + -0.7967072, + 51.2154885 + ], + [ + -0.7967381, + 51.2155092 + ], + [ + -0.7966288, + 51.2155624 + ], + [ + -0.7966254, + 51.215564 + ], + [ + -0.7964502, + 51.2154431 + ], + [ + -0.7963987, + 51.2154726 + ], + [ + -0.7960905, + 51.2152674 + ], + [ + -0.7959677, + 51.2151829 + ], + [ + -0.7960881, + 51.2151138 + ], + [ + -0.7960663, + 51.2150984 + ], + [ + -0.7960578, + 51.2150925 + ], + [ + -0.7960463, + 51.2150846 + ], + [ + -0.7960008, + 51.2150549 + ], + [ + -0.79605, + 51.215026 + ], + [ + -0.7961433, + 51.2149733 + ], + [ + -0.7962298, + 51.2150307 + ], + [ + -0.7963105, + 51.2149839 + ], + [ + -0.796461, + 51.2148973 + ], + [ + -0.7964922, + 51.2148787 + ], + [ + -0.7965053, + 51.2148712 + ], + [ + -0.7966407, + 51.2149606 + ], + [ + -0.7966157, + 51.2149758 + ], + [ + -0.7967458, + 51.2150634 + ], + [ + -0.796831, + 51.2151205 + ], + [ + -0.7968091, + 51.2151352 + ], + [ + -0.7969379, + 51.2152214 + ], + [ + -0.796943, + 51.2152179 + ], + [ + -0.7970914, + 51.2153206 + ] + ] + ] + }, + "properties": { + "osid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Mixed Use", + "description": "Mixed Use Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "6f6298b0-377b-41bb-9dc4-4de769ba0596", + "sitereference": [ + { + "siteid": "6f6298b0-377b-41bb-9dc4-4de769ba0596", + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingversiondate": "2024-07-20" + }, + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013892251, + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 10094580588, + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 100062354346, + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 200001290415, + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 2801.419, + "buildingpartcount": 5, + "buildingage_period": "1980-1989", + "buildingage_source": "Verisk", + "connectivity_count": 2, + "containingsitecount": 2, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingpartid": "0e548bfd-82fc-4c15-b12d-d5e349749c74", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingpartid": "300cd430-7408-481e-8e26-22244c0065a8", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingpartid": "4f008b8d-24ba-4b6f-924b-a2a92d532f5a", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingpartid": "62885fb5-494c-43ba-abf2-4bf45351722e", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c69f30ff-7289-4219-930b-cdbce8a5722f", + "buildingpartid": "821b5482-12f2-4e9e-be04-43d8cf4140b5", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1980-01-01", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 4, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2017-11-10", + "constructionmaterial_capturemethod": "Remote Sensing Survey", + "buildinguse_addresscount_commercial": 4, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation" + } + }, + { + "id": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7940197, + 51.2161622 + ], + [ + -0.7939961, + 51.2162069 + ], + [ + -0.7939902, + 51.2162181 + ], + [ + -0.7939695, + 51.2162574 + ], + [ + -0.7938549, + 51.2162336 + ], + [ + -0.7938402, + 51.2162623 + ], + [ + -0.7937981, + 51.2163417 + ], + [ + -0.793787, + 51.2163627 + ], + [ + -0.7937664, + 51.2164019 + ], + [ + -0.793761, + 51.2164008 + ], + [ + -0.7936481, + 51.2163773 + ], + [ + -0.7936257, + 51.2164198 + ], + [ + -0.7936106, + 51.2164484 + ], + [ + -0.7935261, + 51.2164307 + ], + [ + -0.7932406, + 51.2163708 + ], + [ + -0.7931592, + 51.2163538 + ], + [ + -0.7932277, + 51.2162244 + ], + [ + -0.7931124, + 51.2162003 + ], + [ + -0.7931365, + 51.2161549 + ], + [ + -0.793153, + 51.2161237 + ], + [ + -0.7931749, + 51.216081 + ], + [ + -0.7931869, + 51.21606 + ], + [ + -0.7931888, + 51.2160564 + ], + [ + -0.7932328, + 51.2159737 + ], + [ + -0.793317, + 51.2158186 + ], + [ + -0.7933348, + 51.2158223 + ], + [ + -0.7933413, + 51.2158105 + ], + [ + -0.7933236, + 51.2158067 + ], + [ + -0.7933291, + 51.2157966 + ], + [ + -0.7933469, + 51.2158004 + ], + [ + -0.7934003, + 51.2158118 + ], + [ + -0.793389, + 51.2158332 + ], + [ + -0.7934317, + 51.2158422 + ], + [ + -0.7934638, + 51.215782 + ], + [ + -0.7934684, + 51.215773 + ], + [ + -0.7934821, + 51.2157474 + ], + [ + -0.7935531, + 51.2157624 + ], + [ + -0.793911, + 51.2158377 + ], + [ + -0.7939357, + 51.2158429 + ], + [ + -0.7939295, + 51.2158546 + ], + [ + -0.7939227, + 51.2158672 + ], + [ + -0.7939218, + 51.2158688 + ], + [ + -0.7939852, + 51.2158827 + ], + [ + -0.7940188, + 51.2158901 + ], + [ + -0.7939963, + 51.2159306 + ], + [ + -0.7940166, + 51.215935 + ], + [ + -0.79399, + 51.2159815 + ], + [ + -0.7939129, + 51.2161239 + ], + [ + -0.793905, + 51.2161383 + ], + [ + -0.7940197, + 51.2161622 + ] + ] + ] + }, + "properties": { + "osid": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Attraction Or Activity", + "description": "Leisure Or Sports Centre", + "versiondate": "2024-08-09", + "connectivity": "Standalone", + "primarysiteid": "78c45740-ff2a-4eb2-9325-f8c883a69cae", + "sitereference": [ + { + "siteid": "78c45740-ff2a-4eb2-9325-f8c883a69cae", + "buildingid": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "buildingversiondate": "2024-08-09" + } + ], + "uprnreference": [ + { + "uprn": 100062354562, + "buildingid": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "buildingversiondate": "2024-08-09" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 3359.201, + "buildingpartcount": 3, + "buildingage_period": "1980-1989", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-08-09", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "buildingpartid": "52fc745f-e2b2-4c87-bcda-0f67616ea7ef", + "buildingversiondate": "2024-08-09" + }, + { + "buildingid": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "buildingpartid": "6c25f391-30f2-4652-bcda-e906f24b1cb3", + "buildingversiondate": "2024-08-09" + }, + { + "buildingid": "c75718f7-ce61-4b9b-99c4-a68f5079ae7f", + "buildingpartid": "8298d172-acd0-49f3-9c38-51e333f2d4eb", + "buildingversiondate": "2024-08-09" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-08-09", + "buildinguse_updatedate": "2024-08-09", + "description_updatedate": "2024-08-09", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-08-09", + "buildingage_evidencedate": "1983-01-01", + "versionavailablefromdate": "2024-08-10T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-08-09", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Sports Attraction Or Facility", + "basementpresence_updatedate": "2024-08-09", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-08-09", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "c835f356-08b2-418c-a476-52685f163f0e", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.795698, + 51.2142321 + ], + [ + -0.7956726, + 51.2142444 + ], + [ + -0.7956789, + 51.2142499 + ], + [ + -0.7956144, + 51.2142816 + ], + [ + -0.7956108, + 51.2142788 + ], + [ + -0.7955673, + 51.2143 + ], + [ + -0.7955431, + 51.2143122 + ], + [ + -0.7955275, + 51.21432 + ], + [ + -0.7955264, + 51.2143206 + ], + [ + -0.7954838, + 51.214342 + ], + [ + -0.7954709, + 51.2143485 + ], + [ + -0.795462, + 51.2143529 + ], + [ + -0.7954456, + 51.214361 + ], + [ + -0.7953867, + 51.2143904 + ], + [ + -0.7953824, + 51.2143925 + ], + [ + -0.7953456, + 51.2143642 + ], + [ + -0.7953612, + 51.2143562 + ], + [ + -0.7952719, + 51.214287 + ], + [ + -0.7952531, + 51.2142725 + ], + [ + -0.7954236, + 51.214189 + ], + [ + -0.7955598, + 51.2141223 + ], + [ + -0.79559, + 51.2141464 + ], + [ + -0.7955818, + 51.2141503 + ], + [ + -0.7955653, + 51.2141583 + ], + [ + -0.7956214, + 51.2142039 + ], + [ + -0.7956461, + 51.2141915 + ], + [ + -0.795698, + 51.2142321 + ] + ] + ] + }, + "properties": { + "osid": "c835f356-08b2-418c-a476-52685f163f0e", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Community Services: Religious Worship", + "description": "Church", + "versiondate": "2024-07-20", + "connectivity": "Semi-Connected", + "primarysiteid": "5280284c-96e0-43c2-a329-c7baf7c08e70", + "sitereference": [ + { + "siteid": "5280284c-96e0-43c2-a329-c7baf7c08e70", + "buildingid": "c835f356-08b2-418c-a476-52685f163f0e", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 100062354627, + "buildingid": "c835f356-08b2-418c-a476-52685f163f0e", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": 2004, + "geometry_area_m2": 424.952, + "buildingpartcount": 4, + "buildingage_period": "2000-2009", + "buildingage_source": "Verisk", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "c835f356-08b2-418c-a476-52685f163f0e", + "buildingpartid": "17279b0f-ac93-436f-84b6-86a06aef2df4", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c835f356-08b2-418c-a476-52685f163f0e", + "buildingpartid": "20e02899-6a18-40d4-87a3-ea83fd2a5baa", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c835f356-08b2-418c-a476-52685f163f0e", + "buildingpartid": "c5a97fcc-6c12-4730-a45f-5e6bbcffd9c5", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "c835f356-08b2-418c-a476-52685f163f0e", + "buildingpartid": "f28de27f-a940-41cf-b615-246540fb3ed9", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2004-12-31", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Community Services: Religious Worship", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "cf54ecb4-2f93-4a7d-8105-e13fb79895df", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7972082, + 51.2157291 + ], + [ + -0.7971912, + 51.2157391 + ], + [ + -0.7971885, + 51.2157406 + ], + [ + -0.7971623, + 51.2157574 + ], + [ + -0.7971488, + 51.2157657 + ], + [ + -0.7969992, + 51.2156694 + ], + [ + -0.7969367, + 51.2156283 + ], + [ + -0.7969961, + 51.2155905 + ], + [ + -0.7972047, + 51.2157269 + ], + [ + -0.7972082, + 51.2157291 + ] + ] + ] + }, + "properties": { + "osid": "cf54ecb4-2f93-4a7d-8105-e13fb79895df", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Retail", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "bc8e9015-fbbe-410c-99a9-a54acee2d282", + "sitereference": [ + { + "siteid": "bc8e9015-fbbe-410c-99a9-a54acee2d282", + "buildingid": "cf54ecb4-2f93-4a7d-8105-e13fb79895df", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 100062354438, + "buildingid": "cf54ecb4-2f93-4a7d-8105-e13fb79895df", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 125.278, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "cf54ecb4-2f93-4a7d-8105-e13fb79895df", + "buildingpartid": "ea74a555-73e7-4a85-8b45-906e900108d9", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Commercial Activity: Industrial Or Manufacturing", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "d06679ca-b0f0-44ad-a816-d596fd480044", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7953453, + 51.2147037 + ], + [ + -0.7953025, + 51.2147246 + ], + [ + -0.7952672, + 51.214696 + ], + [ + -0.7953101, + 51.2146752 + ], + [ + -0.7953453, + 51.2147037 + ] + ] + ] + }, + "properties": { + "osid": "d06679ca-b0f0-44ad-a816-d596fd480044", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Domestic Outbuilding", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": "9d95cfe2-d9e4-49fa-8bd4-a9051bb08164", + "sitereference": [ + { + "siteid": "9d95cfe2-d9e4-49fa-8bd4-a9051bb08164", + "buildingid": "d06679ca-b0f0-44ad-a816-d596fd480044", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2022, + "geometry_area_m2": 15.232, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "d06679ca-b0f0-44ad-a816-d596fd480044", + "buildingpartid": "d6fd5124-4a43-4699-b588-51166c7a4537", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-07-06", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "No", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "d2c54cf8-8b85-4ed8-8f65-31d5bb32eac3", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7968995, + 51.2155969 + ], + [ + -0.7968919, + 51.2156003 + ], + [ + -0.7967677, + 51.2156558 + ], + [ + -0.7967227, + 51.2156271 + ], + [ + -0.7968597, + 51.2155632 + ], + [ + -0.7968995, + 51.2155969 + ] + ] + ] + }, + "properties": { + "osid": "d2c54cf8-8b85-4ed8-8f65-31d5bb32eac3", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Industrial Or Manufacturing", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "4148fa56-9d7d-4eb9-bcf1-5465dea94a9c", + "sitereference": [ + { + "siteid": "4148fa56-9d7d-4eb9-bcf1-5465dea94a9c", + "buildingid": "d2c54cf8-8b85-4ed8-8f65-31d5bb32eac3", + "buildingversiondate": "2024-07-20" + }, + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "d2c54cf8-8b85-4ed8-8f65-31d5bb32eac3", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10002173989, + "buildingid": "d2c54cf8-8b85-4ed8-8f65-31d5bb32eac3", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 52.752, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 2, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "d2c54cf8-8b85-4ed8-8f65-31d5bb32eac3", + "buildingpartid": "56850651-e0cb-4f14-922a-f47784050793", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7943128, + 51.2156196 + ], + [ + -0.7942792, + 51.2156364 + ], + [ + -0.7942667, + 51.2156266 + ], + [ + -0.7942261, + 51.215647 + ], + [ + -0.7942484, + 51.2156646 + ], + [ + -0.7942507, + 51.2156664 + ], + [ + -0.7942469, + 51.2156683 + ], + [ + -0.7941015, + 51.215741 + ], + [ + -0.7940852, + 51.2157483 + ], + [ + -0.7940821, + 51.2157458 + ], + [ + -0.7940534, + 51.2157233 + ], + [ + -0.794069, + 51.2157154 + ], + [ + -0.7940151, + 51.215673 + ], + [ + -0.7940016, + 51.21568 + ], + [ + -0.7939696, + 51.2156547 + ], + [ + -0.793954, + 51.2156625 + ], + [ + -0.7939256, + 51.2156401 + ], + [ + -0.793922, + 51.2156372 + ], + [ + -0.79392, + 51.2156356 + ], + [ + -0.7938912, + 51.2156129 + ], + [ + -0.7939068, + 51.2156051 + ], + [ + -0.7938827, + 51.2155861 + ], + [ + -0.7938706, + 51.2155923 + ], + [ + -0.7938661, + 51.2155889 + ], + [ + -0.7938395, + 51.2155685 + ], + [ + -0.7938521, + 51.2155619 + ], + [ + -0.7938241, + 51.2155398 + ], + [ + -0.7937949, + 51.2155168 + ], + [ + -0.7937793, + 51.2155245 + ], + [ + -0.7937687, + 51.2155162 + ], + [ + -0.7937508, + 51.2155021 + ], + [ + -0.7937476, + 51.2154996 + ], + [ + -0.7937632, + 51.2154918 + ], + [ + -0.7937629, + 51.2154916 + ], + [ + -0.7937406, + 51.215474 + ], + [ + -0.7937296, + 51.2154795 + ], + [ + -0.7937055, + 51.2154605 + ], + [ + -0.7937002, + 51.2154563 + ], + [ + -0.7936975, + 51.2154542 + ], + [ + -0.793693, + 51.2154565 + ], + [ + -0.7936887, + 51.215453 + ], + [ + -0.7936593, + 51.2154298 + ], + [ + -0.7936747, + 51.2154221 + ], + [ + -0.7936497, + 51.2154023 + ], + [ + -0.7935783, + 51.2153458 + ], + [ + -0.7935659, + 51.2153339 + ], + [ + -0.7936027, + 51.2153148 + ], + [ + -0.7936162, + 51.2153268 + ], + [ + -0.7936873, + 51.2152912 + ], + [ + -0.7936824, + 51.2152873 + ], + [ + -0.7937834, + 51.2152368 + ], + [ + -0.7937993, + 51.2152287 + ], + [ + -0.7938047, + 51.215233 + ], + [ + -0.7938333, + 51.2152555 + ], + [ + -0.7938179, + 51.215264 + ], + [ + -0.7938714, + 51.2153061 + ], + [ + -0.7938791, + 51.2153026 + ], + [ + -0.7938934, + 51.2153139 + ], + [ + -0.7939076, + 51.2153252 + ], + [ + -0.7939116, + 51.2153284 + ], + [ + -0.7938966, + 51.2153366 + ], + [ + -0.7939144, + 51.2153507 + ], + [ + -0.7939407, + 51.2153714 + ], + [ + -0.7939254, + 51.2153792 + ], + [ + -0.7939788, + 51.2154214 + ], + [ + -0.7940042, + 51.2154087 + ], + [ + -0.7940354, + 51.2154332 + ], + [ + -0.7940664, + 51.2154577 + ], + [ + -0.7940409, + 51.2154705 + ], + [ + -0.7940994, + 51.2155167 + ], + [ + -0.7940845, + 51.2155241 + ], + [ + -0.7941195, + 51.2155517 + ], + [ + -0.7941528, + 51.2155351 + ], + [ + -0.7941403, + 51.2155252 + ], + [ + -0.7941829, + 51.215504 + ], + [ + -0.7941953, + 51.2155139 + ], + [ + -0.7942055, + 51.2155088 + ], + [ + -0.7942709, + 51.2155605 + ], + [ + -0.7942617, + 51.2155651 + ], + [ + -0.7943114, + 51.2156041 + ], + [ + -0.7943003, + 51.2156098 + ], + [ + -0.7943128, + 51.2156196 + ] + ] + ] + }, + "properties": { + "osid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2025-02-11", + "connectivity": "Standalone", + "primarysiteid": "7340defc-52f3-4f39-984b-0f3db2678dfa", + "sitereference": [ + { + "siteid": "7340defc-52f3-4f39-984b-0f3db2678dfa", + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + } + ], + "uprnreference": [ + { + "uprn": 10091111593, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578666, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578667, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578668, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578669, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578670, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578671, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578672, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578673, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578674, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578675, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578676, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578677, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578678, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578679, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578680, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578681, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578682, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578683, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578684, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578685, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578686, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578687, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578688, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578689, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578690, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578691, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578692, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578693, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578694, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578695, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578696, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578697, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578698, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578699, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578700, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578701, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578702, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578703, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + }, + { + "uprn": 10094578704, + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingversiondate": "2025-02-11" + } + ], + "mainbuildingid": null, + "numberoffloors": 4, + "basementpresence": "Unknown", + "buildingage_year": 2024, + "geometry_area_m2": 1117.048, + "buildingpartcount": 15, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2025-02-11", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "2382ad9b-c77f-4e47-9835-9b220ee6cc86", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "3a6fb8bd-993d-475e-a08e-3c4a61429dd6", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "4073e590-a3f0-4016-8e75-db2ff96d99e7", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "47f2cc75-e6ba-4e2e-9e68-7377f963162a", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "5dc4fdd3-859d-47ff-90ea-fe3dffea637d", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "6693ab74-e8c1-441f-b10e-c2f2caa6efdb", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "768b394b-7760-4374-bd19-e5a45d2a78da", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "8feb0967-b75b-4eaf-8233-2eecddcada2c", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "98a6af35-f71d-48ef-a7fd-bca4d01f41a4", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "9cca1924-af0d-43e4-af18-af51f54478aa", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "a8336871-9361-4554-87e8-7df66c9afce0", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "b7b8c2c5-512a-45f2-b104-ec328c0be2ca", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "d9a704d8-7a1a-46e0-b893-bbb150263b5b", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "e82c11fc-e6a9-4dd2-97df-e490664802ac", + "buildingversiondate": "2025-02-11" + }, + { + "buildingid": "d39d2c17-8c6b-42c0-a90b-b92f4c533f76", + "buildingpartid": "ebee7a8a-c417-4d72-8ae0-cb53e66a8b40", + "buildingversiondate": "2025-02-11" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-02-11", + "buildinguse_updatedate": "2025-02-11", + "description_updatedate": "2025-02-11", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-02-11", + "buildingage_evidencedate": "2024-08-05", + "versionavailablefromdate": "2025-02-12T00:00:00Z", + "buildingage_capturemethod": "Desk-Based", + "mainbuildingid_updatedate": "2025-02-11", + "numberoffloors_updatedate": "2025-02-11", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": null, + "constructionmaterial_source": "Ordnance Survey", + "numberoffloors_evidencedate": "2024-01-19", + "numberoffloors_capturemethod": "Field Survey", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 40, + "constructionmaterial_updatedate": "2025-02-11", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2024-01-19", + "constructionmaterial_capturemethod": "Field Survey", + "buildinguse_addresscount_commercial": 2, + "buildinguse_addresscount_residential": 37, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "d844a730-fa48-45fc-90a4-8c6bca136ecd", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7963362, + 51.2142344 + ], + [ + -0.7961979, + 51.2143051 + ], + [ + -0.7962035, + 51.2143097 + ], + [ + -0.7960911, + 51.2143665 + ], + [ + -0.7960089, + 51.214305 + ], + [ + -0.7960153, + 51.2143017 + ], + [ + -0.7961829, + 51.2142162 + ], + [ + -0.7962621, + 51.2141768 + ], + [ + -0.7963362, + 51.2142344 + ] + ] + ] + }, + "properties": { + "osid": "d844a730-fa48-45fc-90a4-8c6bca136ecd", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Other", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "4b35a332-3e6e-44bf-9158-06c6214f7d4b", + "sitereference": [ + { + "siteid": "4b35a332-3e6e-44bf-9158-06c6214f7d4b", + "buildingid": "d844a730-fa48-45fc-90a4-8c6bca136ecd", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013890186, + "buildingid": "d844a730-fa48-45fc-90a4-8c6bca136ecd", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 100062609537, + "buildingid": "d844a730-fa48-45fc-90a4-8c6bca136ecd", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Not Present", + "buildingage_year": 2000, + "geometry_area_m2": 194.565, + "buildingpartcount": 1, + "buildingage_period": "2000-2009", + "buildingage_source": "Verisk", + "connectivity_count": 2, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "d844a730-fa48-45fc-90a4-8c6bca136ecd", + "buildingpartid": "9c8db0a6-3a97-4b45-8e41-807aea977ecf", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2000-12-31", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-07-19", + "buildinguse_oslandusetiera": "Unknown Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 2, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 2, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7955621, + 51.2166089 + ], + [ + -0.7954258, + 51.2166807 + ], + [ + -0.7953333, + 51.2166114 + ], + [ + -0.7953173, + 51.2166198 + ], + [ + -0.7952756, + 51.216589 + ], + [ + -0.7952836, + 51.2165849 + ], + [ + -0.7953059, + 51.216573 + ], + [ + -0.7953127, + 51.2165694 + ], + [ + -0.7952713, + 51.2165384 + ], + [ + -0.7952289, + 51.2165067 + ], + [ + -0.7953351, + 51.2164495 + ], + [ + -0.7953754, + 51.2164797 + ], + [ + -0.7954038, + 51.2164647 + ], + [ + -0.7954485, + 51.2164967 + ], + [ + -0.7954272, + 51.2165079 + ], + [ + -0.7954662, + 51.2165372 + ], + [ + -0.7955621, + 51.2166089 + ] + ] + ] + }, + "properties": { + "osid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Other", + "description": "Commercial Building", + "versiondate": "2024-08-19", + "connectivity": "Standalone", + "primarysiteid": "57be46eb-18e3-4091-a860-67faaff80a25", + "sitereference": [ + { + "siteid": "57be46eb-18e3-4091-a860-67faaff80a25", + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + } + ], + "uprnreference": [ + { + "uprn": 10013893125, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10013893126, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107097, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107098, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107099, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107100, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107101, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107102, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10091107103, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10094581561, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 10094581562, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + }, + { + "uprn": 200001290168, + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingversiondate": "2024-08-19" + } + ], + "mainbuildingid": null, + "numberoffloors": 2, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 289.616, + "buildingpartcount": 1, + "buildingage_period": "1980-1989", + "buildingage_source": "Verisk", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "d9f46112-55c2-464c-8a81-8b9b1c60d658", + "buildingpartid": "6823e12c-d862-4be1-8d65-181202cdf7d3", + "buildingversiondate": "2024-08-19" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1983-01-01", + "versionavailablefromdate": "2024-08-20T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-08-19", + "buildinguse_oslandusetiera": "Commercial Activity: Industrial Or Manufacturing", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 2, + "buildinguse_addresscount_total": 12, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2017-11-10", + "constructionmaterial_capturemethod": "Remote Sensing Survey", + "buildinguse_addresscount_commercial": 10, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Remote Sensed Manual Imagery Interpretation" + } + }, + { + "id": "e0a0ea9d-74b0-4271-9d8b-7f1f8628331f", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7968597, + 51.2155632 + ], + [ + -0.7967227, + 51.2156271 + ], + [ + -0.7966726, + 51.215595 + ], + [ + -0.796817, + 51.215527 + ], + [ + -0.7968597, + 51.2155632 + ] + ] + ] + }, + "properties": { + "osid": "e0a0ea9d-74b0-4271-9d8b-7f1f8628331f", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Industrial Or Manufacturing", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "acd8f88d-d1a5-475b-b501-35a764c0677c", + "sitereference": [ + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "e0a0ea9d-74b0-4271-9d8b-7f1f8628331f", + "buildingversiondate": "2024-07-20" + }, + { + "siteid": "acd8f88d-d1a5-475b-b501-35a764c0677c", + "buildingid": "e0a0ea9d-74b0-4271-9d8b-7f1f8628331f", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013891654, + "buildingid": "e0a0ea9d-74b0-4271-9d8b-7f1f8628331f", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 61.116, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 2, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "e0a0ea9d-74b0-4271-9d8b-7f1f8628331f", + "buildingpartid": "b1c7a2fe-650c-43a6-a1f5-35c999a1d827", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 1, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "e1ed5533-2cb3-47fb-b505-e2e3c2178bb8", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970075, + 51.2146983 + ], + [ + -0.7969499, + 51.2147265 + ], + [ + -0.7968311, + 51.2147846 + ], + [ + -0.7967379, + 51.2148303 + ], + [ + -0.7967151, + 51.2148415 + ], + [ + -0.796706, + 51.2148342 + ], + [ + -0.7966787, + 51.2148361 + ], + [ + -0.796664, + 51.2148238 + ], + [ + -0.7966716, + 51.2148077 + ], + [ + -0.7966379, + 51.2147822 + ], + [ + -0.7966114, + 51.2147842 + ], + [ + -0.7965945, + 51.2147714 + ], + [ + -0.7966014, + 51.2147549 + ], + [ + -0.796593, + 51.214748 + ], + [ + -0.7966279, + 51.2147309 + ], + [ + -0.7966865, + 51.2147022 + ], + [ + -0.7966956, + 51.2147095 + ], + [ + -0.7967089, + 51.2147031 + ], + [ + -0.7966848, + 51.2146833 + ], + [ + -0.7966845, + 51.214683 + ], + [ + -0.7967474, + 51.2146508 + ], + [ + -0.796788, + 51.2146313 + ], + [ + -0.7968039, + 51.2146443 + ], + [ + -0.7968366, + 51.2146286 + ], + [ + -0.7968622, + 51.2146295 + ], + [ + -0.796896, + 51.2146132 + ], + [ + -0.796981, + 51.2146781 + ], + [ + -0.7970075, + 51.2146983 + ] + ] + ] + }, + "properties": { + "osid": "e1ed5533-2cb3-47fb-b505-e2e3c2178bb8", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "End-Connected", + "primarysiteid": "96829d83-010b-4055-9a3c-de9f54ff98c0", + "sitereference": [ + { + "siteid": "96829d83-010b-4055-9a3c-de9f54ff98c0", + "buildingid": "e1ed5533-2cb3-47fb-b505-e2e3c2178bb8", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 368.353, + "buildingpartcount": 2, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "e1ed5533-2cb3-47fb-b505-e2e3c2178bb8", + "buildingpartid": "3980bd11-99c0-4997-8c5a-0584bef48140", + "buildingversiondate": "2024-07-20" + }, + { + "buildingid": "e1ed5533-2cb3-47fb-b505-e2e3c2178bb8", + "buildingpartid": "4fb9e9a1-b5f5-4387-88fc-f733b6c82be8", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Community Services: Other", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "e6b62ad7-b16d-4d70-a750-3f706c389b88", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7934483, + 51.2157198 + ], + [ + -0.7934354, + 51.2157433 + ], + [ + -0.7933968, + 51.2157349 + ], + [ + -0.7934097, + 51.2157115 + ], + [ + -0.7934479, + 51.2157197 + ], + [ + -0.7934483, + 51.2157198 + ] + ] + ] + }, + "properties": { + "osid": "e6b62ad7-b16d-4d70-a750-3f706c389b88", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Electricity Sub Station", + "versiondate": "2024-07-20", + "connectivity": "Standalone", + "primarysiteid": "bb4a5eb6-6f4b-472b-a9ff-5aaa77dbf9ef", + "sitereference": [ + { + "siteid": "bb4a5eb6-6f4b-472b-a9ff-5aaa77dbf9ef", + "buildingid": "e6b62ad7-b16d-4d70-a750-3f706c389b88", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2021, + "geometry_area_m2": 7.874, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 0, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "e6b62ad7-b16d-4d70-a750-3f706c389b88", + "buildingpartid": "895eedcd-025d-41c2-9039-78d63ce30e86", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2024-07-09", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Utility Or Environmental Protection", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7971612, + 51.2150145 + ], + [ + -0.7971226, + 51.2150339 + ], + [ + -0.7971162, + 51.2150286 + ], + [ + -0.7970423, + 51.215065 + ], + [ + -0.7969918, + 51.2150262 + ], + [ + -0.7971021, + 51.2149689 + ], + [ + -0.7971612, + 51.2150145 + ] + ] + ] + }, + "properties": { + "osid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2024-08-02", + "connectivity": "Multi-Connected", + "primarysiteid": "1922ffff-bb14-4958-a62b-da63af7d470c", + "sitereference": [ + { + "siteid": "1922ffff-bb14-4958-a62b-da63af7d470c", + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + } + ], + "uprnreference": [ + { + "uprn": 100061608459, + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 100062700121, + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291781, + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291782, + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291783, + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + }, + { + "uprn": 200001291784, + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingversiondate": "2024-08-02" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 59.436, + "buildingpartcount": 1, + "buildingage_period": "1919-1944", + "buildingage_source": "Verisk", + "connectivity_count": 3, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "ebe936a9-3560-415f-9c25-ceaa1f4d25cb", + "buildingpartid": "c13b0dab-d4c4-4137-8ee8-dbc8eb806399", + "buildingversiondate": "2024-08-02" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1939-12-31", + "versionavailablefromdate": "2024-08-03T00:00:00Z", + "buildingage_capturemethod": "Automated Process", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": "2024-08-02", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 6, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Address Analysis", + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 5, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7950132, + 51.2141657 + ], + [ + -0.7949124, + 51.2142132 + ], + [ + -0.7948893, + 51.2141941 + ], + [ + -0.7948748, + 51.2142011 + ], + [ + -0.7949105, + 51.2142312 + ], + [ + -0.7947858, + 51.2142906 + ], + [ + -0.7947361, + 51.2142487 + ], + [ + -0.794748, + 51.2142432 + ], + [ + -0.7947571, + 51.214239 + ], + [ + -0.7945988, + 51.214107 + ], + [ + -0.7945885, + 51.2141118 + ], + [ + -0.794568, + 51.2141215 + ], + [ + -0.7943379, + 51.2142298 + ], + [ + -0.7943709, + 51.2142573 + ], + [ + -0.7944352, + 51.2143108 + ], + [ + -0.7943681, + 51.214344 + ], + [ + -0.7943998, + 51.2143694 + ], + [ + -0.7944435, + 51.2144044 + ], + [ + -0.7944576, + 51.2144158 + ], + [ + -0.7944914, + 51.2143994 + ], + [ + -0.7945105, + 51.2144159 + ], + [ + -0.7945425, + 51.2144423 + ], + [ + -0.7945562, + 51.2144537 + ], + [ + -0.7944713, + 51.2144946 + ], + [ + -0.7944243, + 51.2144559 + ], + [ + -0.7943917, + 51.2144713 + ], + [ + -0.7942901, + 51.2143862 + ], + [ + -0.7942843, + 51.2143879 + ], + [ + -0.7942267, + 51.2143402 + ], + [ + -0.7942138, + 51.2143472 + ], + [ + -0.7941591, + 51.2143026 + ], + [ + -0.7941671, + 51.2142986 + ], + [ + -0.7941174, + 51.2142572 + ], + [ + -0.7942181, + 51.2142092 + ], + [ + -0.7942034, + 51.2141974 + ], + [ + -0.7942723, + 51.2141648 + ], + [ + -0.794268, + 51.2141616 + ], + [ + -0.7943355, + 51.2141281 + ], + [ + -0.7943404, + 51.2141318 + ], + [ + -0.7944114, + 51.2140983 + ], + [ + -0.7943967, + 51.2140865 + ], + [ + -0.7946047, + 51.2139879 + ], + [ + -0.7946615, + 51.2140353 + ], + [ + -0.7946905, + 51.2140216 + ], + [ + -0.7946793, + 51.2140112 + ], + [ + -0.7946884, + 51.2139915 + ], + [ + -0.794758, + 51.213958 + ], + [ + -0.7947981, + 51.2139584 + ], + [ + -0.7948268, + 51.2139821 + ], + [ + -0.7948211, + 51.2140081 + ], + [ + -0.7947872, + 51.2140241 + ], + [ + -0.7948188, + 51.2140504 + ], + [ + -0.7948005, + 51.2140587 + ], + [ + -0.794912, + 51.2141471 + ], + [ + -0.7949214, + 51.2141429 + ], + [ + -0.7949634, + 51.2141242 + ], + [ + -0.7950132, + 51.2141657 + ] + ] + ] + }, + "properties": { + "osid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Residential Accommodation", + "description": "Multiple Residential Accommodation", + "versiondate": "2025-04-05", + "connectivity": "Semi-Connected", + "primarysiteid": "440b8e4c-9a2a-4da9-a7db-cbc2b2d94adb", + "sitereference": [ + { + "siteid": "440b8e4c-9a2a-4da9-a7db-cbc2b2d94adb", + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + } + ], + "uprnreference": [ + { + "uprn": 200001291996, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291997, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291998, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001291999, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292000, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292001, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292002, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292003, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292004, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292005, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292006, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292007, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292008, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292009, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292010, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292011, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292012, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292013, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292014, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292015, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292016, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292017, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292018, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292019, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292020, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292021, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292022, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292023, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292024, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292025, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292026, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292027, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292028, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292029, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292030, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292031, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292032, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292033, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292034, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292035, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292036, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292037, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292038, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292039, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292040, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292041, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292042, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292043, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292044, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292045, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292046, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292047, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292048, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001292049, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001296761, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + }, + { + "uprn": 200001298879, + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingversiondate": "2025-04-05" + } + ], + "mainbuildingid": null, + "numberoffloors": 3, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 1164.049, + "buildingpartcount": 4, + "buildingage_period": "1960-1979", + "buildingage_source": "Verisk", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2025-03-20", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingpartid": "00db7f85-3759-41d2-a5cd-0831db275e9a", + "buildingversiondate": "2025-04-05" + }, + { + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingpartid": "6899f05f-abe9-4377-ba74-cfa47b13088c", + "buildingversiondate": "2025-04-05" + }, + { + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingpartid": "729ee74d-5090-43bf-9ef6-e9ed2f31b647", + "buildingversiondate": "2025-04-05" + }, + { + "buildingid": "ec2985cc-1702-42a4-b213-d8a1819bdd4c", + "buildingpartid": "d4a696e2-ff46-4c98-b2b5-ce612f73fa1c", + "buildingversiondate": "2025-04-05" + } + ], + "numberoffloors_source": "Energy Performance Certificate Authority", + "buildingage_updatedate": "2025-04-05", + "buildinguse_updatedate": "2025-03-20", + "description_updatedate": "2025-03-20", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2025-03-20", + "buildingage_evidencedate": "2024-08-23", + "versionavailablefromdate": "2025-04-06T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2025-03-20", + "numberoffloors_updatedate": "2025-03-10", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2025-04-05", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2010-07-12", + "numberoffloors_capturemethod": "Third Party Unknown", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 56, + "constructionmaterial_updatedate": "2025-04-05", + "buildingage_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)", + "constructionmaterial_evidencedate": "2013-04-26", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 55, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Domestic Energy Performance Certificate (England And Wales)" + } + }, + { + "id": "ece5782e-feeb-4d32-a074-bf03767c493b", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7958325, + 51.2150848 + ], + [ + -0.7958124, + 51.2150944 + ], + [ + -0.7957959, + 51.2151028 + ], + [ + -0.795799, + 51.2151054 + ], + [ + -0.7957147, + 51.215147 + ], + [ + -0.7956436, + 51.2151821 + ], + [ + -0.7956502, + 51.2151878 + ], + [ + -0.7956511, + 51.2151887 + ], + [ + -0.7954765, + 51.2152747 + ], + [ + -0.7954732, + 51.2152724 + ], + [ + -0.7954721, + 51.2152717 + ], + [ + -0.7953944, + 51.2153096 + ], + [ + -0.7953242, + 51.2152535 + ], + [ + -0.7953136, + 51.2152586 + ], + [ + -0.7953128, + 51.2152589 + ], + [ + -0.7952229, + 51.2151873 + ], + [ + -0.7952241, + 51.2151867 + ], + [ + -0.7952339, + 51.2151815 + ], + [ + -0.7952255, + 51.2151744 + ], + [ + -0.7951796, + 51.2151379 + ], + [ + -0.7951648, + 51.2151452 + ], + [ + -0.7951409, + 51.2151263 + ], + [ + -0.7951272, + 51.2151329 + ], + [ + -0.7951034, + 51.2151137 + ], + [ + -0.795117, + 51.215107 + ], + [ + -0.7951323, + 51.2150995 + ], + [ + -0.7951289, + 51.2150969 + ], + [ + -0.7950746, + 51.2150573 + ], + [ + -0.7950633, + 51.2150628 + ], + [ + -0.7950549, + 51.2150561 + ], + [ + -0.7950405, + 51.2150631 + ], + [ + -0.7949669, + 51.2150041 + ], + [ + -0.7949815, + 51.2149969 + ], + [ + -0.794973, + 51.2149901 + ], + [ + -0.7949767, + 51.2149882 + ], + [ + -0.7949843, + 51.2149846 + ], + [ + -0.7949152, + 51.2149292 + ], + [ + -0.794955, + 51.2149097 + ], + [ + -0.7950309, + 51.2148724 + ], + [ + -0.7950329, + 51.2148739 + ], + [ + -0.7951025, + 51.2148396 + ], + [ + -0.7951745, + 51.2148042 + ], + [ + -0.7952328, + 51.2147753 + ], + [ + -0.7953289, + 51.2147281 + ], + [ + -0.7953349, + 51.2147329 + ], + [ + -0.7953629, + 51.2147191 + ], + [ + -0.7953702, + 51.2147154 + ], + [ + -0.7955002, + 51.2148194 + ], + [ + -0.7956864, + 51.214969 + ], + [ + -0.7956879, + 51.2149703 + ], + [ + -0.7956895, + 51.2149698 + ], + [ + -0.7958325, + 51.2150848 + ] + ] + ] + }, + "properties": { + "osid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Commercial Activity: Retail|Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2025-02-25", + "connectivity": "End-Connected", + "primarysiteid": "9d95cfe2-d9e4-49fa-8bd4-a9051bb08164", + "sitereference": [ + { + "siteid": "9d95cfe2-d9e4-49fa-8bd4-a9051bb08164", + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + } + ], + "uprnreference": [ + { + "uprn": 10091111601, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578829, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578830, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578831, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578832, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578833, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578834, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578835, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578836, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578837, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578838, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578839, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578840, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578841, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578842, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578843, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578844, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578845, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578846, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578847, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578848, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578849, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578850, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578851, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578852, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578853, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578854, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578855, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578856, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578857, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578858, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578859, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578860, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578861, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578862, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578863, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578864, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578865, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578866, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578867, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578868, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578869, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578870, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10094578871, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10096745664, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10096745665, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + }, + { + "uprn": 10096745666, + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingversiondate": "2025-02-25" + } + ], + "mainbuildingid": null, + "numberoffloors": 4, + "basementpresence": "Not Present", + "buildingage_year": 2022, + "geometry_area_m2": 2166.818, + "buildingpartcount": 3, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2025-02-25", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingpartid": "060f474f-1aa7-4b94-a106-b00534b0dd27", + "buildingversiondate": "2025-02-25" + }, + { + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingpartid": "5b4ae6ca-4140-40cc-a4a2-8bae6a98b9e7", + "buildingversiondate": "2025-02-25" + }, + { + "buildingid": "ece5782e-feeb-4d32-a074-bf03767c493b", + "buildingpartid": "5e81142a-6131-4eec-8675-dd0236a23d33", + "buildingversiondate": "2025-02-25" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-02-25", + "buildinguse_updatedate": "2025-02-25", + "description_updatedate": "2025-02-25", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2025-02-25", + "buildingage_evidencedate": "2024-09-06", + "versionavailablefromdate": "2025-02-26T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-02-25", + "numberoffloors_updatedate": "2025-02-25", + "buildinguse_oslandusetiera": "Residential Accommodation", + "basementpresence_updatedate": "2025-02-25", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 2, + "buildinguse_addresscount_total": 47, + "constructionmaterial_updatedate": "2025-02-25", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": "2023-01-23", + "constructionmaterial_capturemethod": "Automated Process", + "buildinguse_addresscount_commercial": 3, + "buildinguse_addresscount_residential": 42, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Infill Modelling" + } + }, + { + "id": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7970051, + 51.2156906 + ], + [ + -0.7969586, + 51.2157194 + ], + [ + -0.7969762, + 51.2157313 + ], + [ + -0.7969568, + 51.2157425 + ], + [ + -0.7969278, + 51.2157593 + ], + [ + -0.7969106, + 51.2157481 + ], + [ + -0.7968434, + 51.2157044 + ], + [ + -0.7968983, + 51.2156693 + ], + [ + -0.796887, + 51.2156624 + ], + [ + -0.7969249, + 51.2156377 + ], + [ + -0.7969863, + 51.2156782 + ], + [ + -0.7970051, + 51.2156906 + ] + ] + ] + }, + "properties": { + "osid": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Commercial Activity: Industrial Or Manufacturing", + "description": "Commercial Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": "da267a0f-a201-4e24-9ac8-70dbe11a4e3d", + "sitereference": [ + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "buildingversiondate": "2024-07-20" + }, + { + "siteid": "da267a0f-a201-4e24-9ac8-70dbe11a4e3d", + "buildingid": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [ + { + "uprn": 10013891652, + "buildingid": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "buildingversiondate": "2024-07-20" + }, + { + "uprn": 100062699288, + "buildingid": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "buildingversiondate": "2024-07-20" + } + ], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": "Not Present", + "buildingage_year": null, + "geometry_area_m2": 75.899, + "buildingpartcount": 1, + "buildingage_period": "Pre-1919", + "buildingage_source": "Verisk", + "connectivity_count": 5, + "containingsitecount": 2, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": "Brick Or Block Or Stone", + "buildingpartreference": [ + { + "buildingid": "eda0d8ed-c600-4dd9-a8d8-a411d857537d", + "buildingpartid": "76f7fa85-aac8-4e24-8a39-9577b4ea6faa", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": "Verisk", + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "1974-02-15", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Third Party Unknown", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": "2024-07-19", + "constructionmaterial_source": "Verisk", + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": "2022-12-23", + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": "Automated Process", + "basementpresence_selfcontained": "Not Present", + "buildinguse_addresscount_other": 1, + "buildinguse_addresscount_total": 2, + "constructionmaterial_updatedate": "2024-07-19", + "buildingage_thirdpartyprovenance": "Historic England (Listed Buildings)", + "constructionmaterial_evidencedate": "1974-02-15", + "constructionmaterial_capturemethod": "Third Party Unknown", + "buildinguse_addresscount_commercial": 1, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": "Infill Modelling", + "constructionmaterial_thirdpartyprovenance": "Historic England (Listed Buildings)" + } + }, + { + "id": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7966346, + 51.2160574 + ], + [ + -0.7966346, + 51.2160574 + ], + [ + -0.7965422, + 51.2161129 + ], + [ + -0.7965375, + 51.21611 + ], + [ + -0.7965058, + 51.2161282 + ], + [ + -0.7965039, + 51.2161271 + ], + [ + -0.7964758, + 51.2161113 + ], + [ + -0.796455, + 51.2160996 + ], + [ + -0.7964072, + 51.2160694 + ], + [ + -0.7964094, + 51.216068 + ], + [ + -0.7964111, + 51.2160669 + ], + [ + -0.7963716, + 51.216036 + ], + [ + -0.796356, + 51.2160238 + ], + [ + -0.7963514, + 51.2160202 + ], + [ + -0.7963503, + 51.2160208 + ], + [ + -0.7963465, + 51.2160228 + ], + [ + -0.7962838, + 51.2159735 + ], + [ + -0.796232, + 51.2159327 + ], + [ + -0.7962305, + 51.2159334 + ], + [ + -0.7962284, + 51.2159344 + ], + [ + -0.7961157, + 51.2158457 + ], + [ + -0.7959041, + 51.2156787 + ], + [ + -0.7959242, + 51.2156688 + ], + [ + -0.7958537, + 51.2156134 + ], + [ + -0.795895, + 51.2155926 + ], + [ + -0.7960687, + 51.2155057 + ], + [ + -0.7962188, + 51.2154304 + ], + [ + -0.7962217, + 51.2154328 + ], + [ + -0.7962546, + 51.2154166 + ], + [ + -0.7963277, + 51.2154742 + ], + [ + -0.7963353, + 51.2154704 + ], + [ + -0.7964085, + 51.2155281 + ], + [ + -0.796298, + 51.2155835 + ], + [ + -0.796146, + 51.2156596 + ], + [ + -0.7960965, + 51.2156844 + ], + [ + -0.7961123, + 51.2156969 + ], + [ + -0.7961144, + 51.2156986 + ], + [ + -0.7961031, + 51.2157042 + ], + [ + -0.7961062, + 51.2157067 + ], + [ + -0.7961145, + 51.2157132 + ], + [ + -0.7961162, + 51.2157146 + ], + [ + -0.79612, + 51.2157127 + ], + [ + -0.7961616, + 51.2156918 + ], + [ + -0.7962023, + 51.215724 + ], + [ + -0.7963831, + 51.2158671 + ], + [ + -0.7964426, + 51.2159137 + ], + [ + -0.7965078, + 51.2159649 + ], + [ + -0.7965291, + 51.2159816 + ], + [ + -0.7965315, + 51.2159835 + ], + [ + -0.7965271, + 51.2159859 + ], + [ + -0.7965268, + 51.215986 + ], + [ + -0.7965263, + 51.2159863 + ], + [ + -0.7965378, + 51.2159939 + ], + [ + -0.7966103, + 51.2160415 + ], + [ + -0.7966331, + 51.2160564 + ], + [ + -0.7966346, + 51.2160574 + ] + ] + ] + }, + "properties": { + "osid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "theme": "Buildings", + "isinsite": true, + "changetype": "Modified Attributes", + "buildinguse": "Residential Accommodation", + "description": "Mixed Use Building", + "versiondate": "2025-02-26", + "connectivity": "Semi-Connected", + "primarysiteid": "25def714-8bfa-4c99-9998-83a3d94e6b16", + "sitereference": [ + { + "siteid": "25def714-8bfa-4c99-9998-83a3d94e6b16", + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + } + ], + "uprnreference": [ + { + "uprn": 10091111591, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578632, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578633, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578634, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578635, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578636, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578637, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578638, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578639, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578640, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578641, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578642, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578643, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578644, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578645, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578646, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578647, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578872, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578878, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578879, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578880, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578881, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578882, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10094578883, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10096745894, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10096745895, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10096745896, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10096745897, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10096745898, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + }, + { + "uprn": 10096745899, + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingversiondate": "2025-02-26" + } + ], + "mainbuildingid": null, + "numberoffloors": 4, + "basementpresence": "Unknown", + "buildingage_year": 2022, + "geometry_area_m2": 1325.3, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 2, + "geometry_updatedate": "2025-02-26", + "constructionmaterial": "Unknown", + "buildingpartreference": [ + { + "buildingid": "f6b1f9e5-1180-4741-8f65-d8de6d0d7a21", + "buildingpartid": "da349ab0-7009-4ecb-8d28-06a13a8399b5", + "buildingversiondate": "2025-02-26" + } + ], + "numberoffloors_source": "Ordnance Survey", + "buildingage_updatedate": "2025-02-26", + "buildinguse_updatedate": "2025-02-26", + "description_updatedate": "2025-02-26", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2025-02-26", + "buildingage_evidencedate": "2025-01-03", + "versionavailablefromdate": "2025-02-27T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2025-02-26", + "numberoffloors_updatedate": "2025-02-26", + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": "2023-10-10", + "numberoffloors_capturemethod": "Automated Process", + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "Yes", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": "Unknown", + "buildinguse_addresscount_other": 4, + "buildinguse_addresscount_total": 30, + "constructionmaterial_updatedate": "2025-02-26", + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 10, + "buildinguse_addresscount_residential": 16, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "f81e333f-3bf6-49be-9d81-0e9ab3cf42b3", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.796532, + 51.2157482 + ], + [ + -0.796497, + 51.2157677 + ], + [ + -0.796526, + 51.2157917 + ], + [ + -0.7964357, + 51.2158384 + ], + [ + -0.7963145, + 51.2157366 + ], + [ + -0.7963988, + 51.2156902 + ], + [ + -0.7964263, + 51.2157116 + ], + [ + -0.7964416, + 51.2157235 + ], + [ + -0.7964709, + 51.2157074 + ], + [ + -0.796532, + 51.2157482 + ] + ] + ] + }, + "properties": { + "osid": "f81e333f-3bf6-49be-9d81-0e9ab3cf42b3", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 133.056, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 4, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "f81e333f-3bf6-49be-9d81-0e9ab3cf42b3", + "buildingpartid": "7a033dfe-9977-4770-9f13-cf9ab1cef2e8", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "fb42bec8-8174-4760-b05a-cb6f6de80295", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7967135, + 51.2158122 + ], + [ + -0.7966808, + 51.2158303 + ], + [ + -0.7966527, + 51.2158071 + ], + [ + -0.7965842, + 51.2158399 + ], + [ + -0.796526, + 51.2157917 + ], + [ + -0.796497, + 51.2157677 + ], + [ + -0.796532, + 51.2157482 + ], + [ + -0.7965628, + 51.2157688 + ], + [ + -0.7965569, + 51.2157746 + ], + [ + -0.7966055, + 51.2158075 + ], + [ + -0.7966685, + 51.215778 + ], + [ + -0.7967135, + 51.2158122 + ] + ] + ] + }, + "properties": { + "osid": "fb42bec8-8174-4760-b05a-cb6f6de80295", + "theme": "Buildings", + "isinsite": false, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Unknown Building", + "versiondate": "2024-07-20", + "connectivity": "Multi-Connected", + "primarysiteid": null, + "sitereference": [], + "uprnreference": [], + "mainbuildingid": null, + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": null, + "geometry_area_m2": 53.278, + "buildingpartcount": 1, + "buildingage_period": null, + "buildingage_source": null, + "connectivity_count": 4, + "containingsitecount": 0, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "fb42bec8-8174-4760-b05a-cb6f6de80295", + "buildingpartid": "0d069eb5-5796-46cf-b544-1274a1806e80", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": null, + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": null, + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": null, + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": null, + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": null, + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + }, + { + "id": "fc54370a-e8d7-406d-8ccd-6f1ca03c9385", + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7962546, + 51.2154166 + ], + [ + -0.7962217, + 51.2154328 + ], + [ + -0.7962188, + 51.2154304 + ], + [ + -0.7962102, + 51.2154236 + ], + [ + -0.7962405, + 51.2154087 + ], + [ + -0.7962431, + 51.2154074 + ], + [ + -0.7962546, + 51.2154166 + ] + ] + ] + }, + "properties": { + "osid": "fc54370a-e8d7-406d-8ccd-6f1ca03c9385", + "theme": "Buildings", + "isinsite": true, + "changetype": "New", + "buildinguse": "Unknown", + "description": "Ancillary Building", + "versiondate": "2024-07-20", + "connectivity": "Semi-Connected", + "primarysiteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "sitereference": [ + { + "siteid": "a868364f-b7b5-481a-bf19-93c516dd36a8", + "buildingid": "fc54370a-e8d7-406d-8ccd-6f1ca03c9385", + "buildingversiondate": "2024-07-20" + } + ], + "uprnreference": [], + "mainbuildingid": "2e007f73-e59f-4aa2-bd54-20b352e3e184", + "numberoffloors": null, + "basementpresence": null, + "buildingage_year": 2022, + "geometry_area_m2": 3.787, + "buildingpartcount": 1, + "buildingage_period": "2020-2029", + "buildingage_source": "Ordnance Survey", + "connectivity_count": 1, + "containingsitecount": 1, + "geometry_updatedate": "2024-07-18", + "constructionmaterial": null, + "buildingpartreference": [ + { + "buildingid": "fc54370a-e8d7-406d-8ccd-6f1ca03c9385", + "buildingpartid": "331b49ff-0c60-470b-8584-07c804d50405", + "buildingversiondate": "2024-07-20" + } + ], + "numberoffloors_source": null, + "buildingage_updatedate": "2024-07-19", + "buildinguse_updatedate": "2024-07-18", + "description_updatedate": "2024-07-18", + "versionavailabletodate": null, + "basementpresence_source": null, + "connectivity_updatedate": "2024-07-18", + "buildingage_evidencedate": "2022-11-10", + "versionavailablefromdate": "2024-07-21T00:00:00Z", + "buildingage_capturemethod": "Field Survey", + "mainbuildingid_updatedate": "2024-07-18", + "numberoffloors_updatedate": null, + "buildinguse_oslandusetiera": "Mixed Use", + "basementpresence_updatedate": null, + "constructionmaterial_source": null, + "numberoffloors_evidencedate": null, + "numberoffloors_capturemethod": null, + "basementpresence_evidencedate": null, + "mainbuildingid_ismainbuilding": "No", + "basementpresence_capturemethod": null, + "basementpresence_selfcontained": null, + "buildinguse_addresscount_other": 0, + "buildinguse_addresscount_total": 0, + "constructionmaterial_updatedate": null, + "buildingage_thirdpartyprovenance": null, + "constructionmaterial_evidencedate": null, + "constructionmaterial_capturemethod": null, + "buildinguse_addresscount_commercial": 0, + "buildinguse_addresscount_residential": 0, + "basementpresence_thirdpartyprovenance": null, + "constructionmaterial_thirdpartyprovenance": null + } + } + ] +} \ No newline at end of file diff --git a/public/cam.gltf b/public/cam.gltf new file mode 100644 index 00000000..0515c84e --- /dev/null +++ b/public/cam.gltf @@ -0,0 +1,222 @@ +{ + "asset" : { + "generator" : "Khronos glTF Blender I/O v1.7.33", + "version" : "2.0" + }, + "extensionsUsed" : [ + "KHR_materials_transmission" + ], + "scene" : 0, + "scenes" : [ + { + "name" : "Scene", + "nodes" : [ + 0, + 1 + ] + } + ], + "nodes" : [ + { + "mesh" : 0, + "name" : "Cube" + }, + { + "mesh" : 1, + "name" : "Cube.001", + "rotation" : [ + 0, + 0.9998419284820557, + 0, + 0.017780395224690437 + ], + "scale" : [ + 1.7649177312850952, + 1, + 1.7649177312850952 + ], + "translation" : [ + -0.02739277482032776, + 0.039773356169462204, + -1.091304063796997 + ] + } + ], + "materials" : [ + { + "doubleSided" : true, + "extensions" : { + "KHR_materials_transmission" : { + "transmissionFactor" : 0.6994819045066833 + } + }, + "name" : "Material.002", + "pbrMetallicRoughness" : { + "baseColorFactor" : [ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor" : 0, + "roughnessFactor" : 0.5 + } + }, + { + "doubleSided" : true, + "extensions" : { + "KHR_materials_transmission" : { + "transmissionFactor" : 0.7046632170677185 + } + }, + "name" : "Material.001", + "pbrMetallicRoughness" : { + "baseColorFactor" : [ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor" : 0, + "roughnessFactor" : 0.5 + } + } + ], + "meshes" : [ + { + "name" : "Cube.001", + "primitives" : [ + { + "attributes" : { + "POSITION" : 0, + "NORMAL" : 1, + "TEXCOORD_0" : 2 + }, + "indices" : 3, + "material" : 0 + } + ] + }, + { + "name" : "Cube.002", + "primitives" : [ + { + "attributes" : { + "POSITION" : 4, + "NORMAL" : 5, + "TEXCOORD_0" : 6 + }, + "indices" : 3, + "material" : 1 + } + ] + } + ], + "accessors" : [ + { + "bufferView" : 0, + "componentType" : 5126, + "count" : 24, + "max" : [ + 0.46514344215393066, + 0.6387248039245605, + 0.986670732498169 + ], + "min" : [ + -0.46514344215393066, + -0.6387248039245605, + -0.986670732498169 + ], + "type" : "VEC3" + }, + { + "bufferView" : 1, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 2, + "componentType" : 5126, + "count" : 24, + "type" : "VEC2" + }, + { + "bufferView" : 3, + "componentType" : 5123, + "count" : 36, + "type" : "SCALAR" + }, + { + "bufferView" : 4, + "componentType" : 5126, + "count" : 24, + "max" : [ + 0.3196382522583008, + 0.40549468994140625, + 0.30353641510009766 + ], + "min" : [ + -0.3196382522583008, + -0.40549468994140625, + -0.0023928284645080566 + ], + "type" : "VEC3" + }, + { + "bufferView" : 5, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 6, + "componentType" : 5126, + "count" : 24, + "type" : "VEC2" + } + ], + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 288 + }, + { + "buffer" : 0, + "byteLength" : 192, + "byteOffset" : 576 + }, + { + "buffer" : 0, + "byteLength" : 72, + "byteOffset" : 768 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 840 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 1128 + }, + { + "buffer" : 0, + "byteLength" : 192, + "byteOffset" : 1416 + } + ], + "buffers" : [ + { + "byteLength" : 1608, + "uri" : "data:application/octet-stream;base64,SCfuvniDI790lnw/SCfuvniDI790lnw/SCfuvniDI790lnw/SCfuvniDIz90lnw/SCfuvniDIz90lnw/SCfuvniDIz90lnw/SCfuvniDI790lny/SCfuvniDI790lny/SCfuvniDI790lny/SCfuvniDIz90lny/SCfuvniDIz90lny/SCfuvniDIz90lny/SCfuPniDI790lnw/SCfuPniDI790lnw/SCfuPniDI790lnw/SCfuPniDIz90lnw/SCfuPniDIz90lnw/SCfuPniDIz90lnw/SCfuPniDI790lny/SCfuPniDI790lny/SCfuPniDI790lny/SCfuPniDIz90lny/SCfuPniDIz90lny/SCfuPniDIz90lny/AACAvwAAAAAAAACAAAAAAAAAgL8AAACAAAAAAAAAAAAAAIA/AACAvwAAAAAAAACAAAAAAAAAAAAAAIA/AAAAAAAAgD8AAACAAACAvwAAAAAAAACAAAAAAAAAgL8AAACAAAAAAAAAAAAAAIC/AACAvwAAAAAAAACAAAAAAAAAAAAAAIC/AAAAAAAAgD8AAACAAAAAAAAAgL8AAACAAAAAAAAAAAAAAIA/AACAPwAAAAAAAACAAAAAAAAAAAAAAIA/AAAAAAAAgD8AAACAAACAPwAAAAAAAACAAAAAAAAAgL8AAACAAAAAAAAAAAAAAIC/AACAPwAAAAAAAACAAAAAAAAAAAAAAIC/AAAAAAAAgD8AAACAAACAPwAAAAAAAACAAADAPgAAgD8AAAA+AACAPgAAwD4AAAAAAAAgPwAAgD8AACA/AAAAAAAAYD8AAIA+AADAPgAAQD8AAAA+AAAAPwAAwD4AAEA/AAAgPwAAQD8AACA/AABAPwAAYD8AAAA/AADAPgAAgD4AAMA+AACAPgAAwD4AAIA+AAAgPwAAgD4AACA/AACAPgAAID8AAIA+AADAPgAAAD8AAMA+AAAAPwAAwD4AAAA/AAAgPwAAAD8AACA/AAAAPwAAID8AAAA/AAADAAkAAAAJAAYACAAKABUACAAVABMAFAAXABEAFAARAA4ADQAPAAQADQAEAAIABwASAAwABwAMAAEAFgALAAUAFgAFABAAoKejvgCdz74gaZs+oKejvgCdz74gaZs+oKejvgCdz74gaZs+oKejvgCdzz4gaZs+oKejvgCdzz4gaZs+oKejvgCdzz4gaZs+MIKXvAi21b0A0Ry7MIKXvAi21b0A0Ry7MIKXvAi21b0A0Ry7MIKXvAi21T0A0Ry7MIKXvAi21T0A0Ry7MIKXvAi21T0A0Ry7oKejPgCdz74gaZs+oKejPgCdz74gaZs+oKejPgCdz74gaZs+oKejPgCdzz4gaZs+oKejPgCdzz4gaZs+oKejPgCdzz4gaZs+MIKXPAi21b0A0Ry7MIKXPAi21b0A0Ry7MIKXPAi21b0A0Ry7MIKXPAi21T0A0Ry7MIKXPAi21T0A0Ry7MIKXPAi21T0A0Ry70XA2vwAAAAA0ljO/AAAAANBwNr82ljO/AAAAAAAAAAAAAIA/0XA2vwAAAAA0ljO/AAAAAAAAAAAAAIA/AAAAANBwNj82ljO/0XA2vwAAAAA0ljO/AAAAANBwNr82ljO/AAAAAAAAAAAAAIC/0XA2vwAAAAA0ljO/AAAAAAAAAAAAAIC/AAAAANBwNj82ljO/AAAAANBwNr82ljO/AAAAAAAAAAAAAIA/0XA2PwAAAAA0ljO/AAAAAAAAAAAAAIA/AAAAANBwNj82ljO/0XA2PwAAAAA0ljO/AAAAANBwNr82ljO/AAAAAAAAAAAAAIC/0XA2PwAAAAA0ljO/AAAAAAAAAAAAAIC/AAAAANBwNj82ljO/0XA2PwAAAAA0ljO/AADAPgAAgD8AAAA+AACAPgAAwD4AAAAAAAAgPwAAgD8AACA/AAAAAAAAYD8AAIA+AADAPgAAQD8AAAA+AAAAPwAAwD4AAEA/AAAgPwAAQD8AACA/AABAPwAAYD8AAAA/AADAPgAAgD4AAMA+AACAPgAAwD4AAIA+AAAgPwAAgD4AACA/AACAPgAAID8AAIA+AADAPgAAAD8AAMA+AAAAPwAAwD4AAAA/AAAgPwAAAD8AACA/AAAAPwAAID8AAAA/" + } + ] +} diff --git a/public/css/styles.css b/public/css/styles.css old mode 100644 new mode 100755 diff --git a/public/egnss4all_app_back.png b/public/egnss4all_app_back.png old mode 100644 new mode 100755 diff --git a/public/favicon.ico b/public/favicon.ico old mode 100644 new mode 100755 diff --git a/public/group_marker/m1.png b/public/group_marker/m1.png old mode 100644 new mode 100755 diff --git a/public/group_marker/m2.png b/public/group_marker/m2.png old mode 100644 new mode 100755 diff --git a/public/group_marker/m3.png b/public/group_marker/m3.png old mode 100644 new mode 100755 diff --git a/public/group_marker/m4.png b/public/group_marker/m4.png old mode 100644 new mode 100755 diff --git a/public/group_marker/m5.png b/public/group_marker/m5.png old mode 100644 new mode 100755 diff --git a/public/icon_azimuth.png b/public/icon_azimuth.png old mode 100644 new mode 100755 diff --git a/public/icon_photo.png b/public/icon_photo.png old mode 100644 new mode 100755 diff --git a/public/icon_photo_mask.png b/public/icon_photo_mask.png old mode 100644 new mode 100755 diff --git a/public/icon_photo_pdf.png b/public/icon_photo_pdf.png old mode 100644 new mode 100755 diff --git a/public/images/dummy-image.jpg b/public/images/dummy-image.jpg old mode 100644 new mode 100755 diff --git a/public/images/image_3.jpeg b/public/images/image_3.jpeg new file mode 100644 index 00000000..ab0410ec Binary files /dev/null and b/public/images/image_3.jpeg differ diff --git a/public/images/pic2bim_logo.png b/public/images/pic2bim_logo.png new file mode 100644 index 00000000..dfb7fc3d Binary files /dev/null and b/public/images/pic2bim_logo.png differ diff --git a/public/images/pic2bim_logo_white.png b/public/images/pic2bim_logo_white.png new file mode 100644 index 00000000..b02e6f0e Binary files /dev/null and b/public/images/pic2bim_logo_white.png differ diff --git a/public/index.php b/public/index.php old mode 100644 new mode 100755 diff --git a/public/laz/su-farnham-castle-exhibition-building.laz b/public/laz/su-farnham-castle-exhibition-building.laz new file mode 100644 index 00000000..575a4bc4 Binary files /dev/null and b/public/laz/su-farnham-castle-exhibition-building.laz differ diff --git a/public/laz/su-farnham-castle-exhibition.laz b/public/laz/su-farnham-castle-exhibition.laz new file mode 100644 index 00000000..5384498e Binary files /dev/null and b/public/laz/su-farnham-castle-exhibition.laz differ diff --git a/public/laz/su-farnham-castle.laz b/public/laz/su-farnham-castle.laz new file mode 100644 index 00000000..e136c51e Binary files /dev/null and b/public/laz/su-farnham-castle.laz differ diff --git a/public/laz/su-farnham-congregational-church.laz b/public/laz/su-farnham-congregational-church.laz new file mode 100644 index 00000000..890c7887 Binary files /dev/null and b/public/laz/su-farnham-congregational-church.laz differ diff --git a/public/laz/su-farnham-museum.laz b/public/laz/su-farnham-museum.laz new file mode 100644 index 00000000..50886c95 Binary files /dev/null and b/public/laz/su-farnham-museum.laz differ diff --git a/public/laz/su-farnham-st-andrews-church.laz b/public/laz/su-farnham-st-andrews-church.laz new file mode 100644 index 00000000..ae866e15 Binary files /dev/null and b/public/laz/su-farnham-st-andrews-church.laz differ diff --git a/public/laz/su-farnham-vernon-house.laz b/public/laz/su-farnham-vernon-house.laz new file mode 100644 index 00000000..763d77ca Binary files /dev/null and b/public/laz/su-farnham-vernon-house.laz differ diff --git a/public/logo_egnss4all.svg b/public/logo_egnss4all.svg old mode 100644 new mode 100755 diff --git a/public/logo_egnss4all_white.png b/public/logo_egnss4all_white.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_datachecked_1.png b/public/map_marker/marker_datachecked_1.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_datachecked_2.png b/public/map_marker/marker_datachecked_2.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_dataprovided.png b/public/map_marker/marker_dataprovided.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_new.png b/public/map_marker/marker_new.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_open.png b/public/map_marker/marker_open.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_returned.png b/public/map_marker/marker_returned.png old mode 100644 new mode 100755 diff --git a/public/map_marker/marker_unassigned.png b/public/map_marker/marker_unassigned.png old mode 100644 new mode 100755 diff --git a/public/marker.glb b/public/marker.glb new file mode 100644 index 00000000..1cd6cc8d Binary files /dev/null and b/public/marker.glb differ diff --git a/public/marker.gltf b/public/marker.gltf new file mode 100644 index 00000000..b13a59f1 --- /dev/null +++ b/public/marker.gltf @@ -0,0 +1,250 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.5.47", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0, + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"ThumbnailCard", + "rotation":[ + -0.7079666256904602, + 0, + 0, + 0.7062458992004395 + ], + "scale":[ + 4.563982009887695, + 4.563995361328125, + 6.606538772583008 + ], + "translation":[ + -0.3786945343017578, + 29.477237701416016, + 0.9977952837944031 + ] + }, + { + "mesh":1, + "name":"Node1" + }, + { + "children":[ + 1 + ], + "name":"Node0" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"ThumbnailMaterial", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"x1", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8509804010391235, + 0.8509804010391235, + 0.8509804010391235, + 1 + ], + "metallicFactor":0.05000000074505806, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Plane", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh_0", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"texture", + "uri":"texture.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":66, + "max":[ + 1, + 0.05000000074505806, + 1 + ], + "min":[ + -1, + 0, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":626, + "max":[ + 7.765094757080078, + 37.750450134277344, + 4.302507400512695 + ], + "min":[ + -8.500371932983398, + -0.6842705011367798, + -1.6745527982711792 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":626, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":626, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":2640, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":792, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":792, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":1584, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":2112, + "target":34963 + }, + { + "buffer":0, + "byteLength":7512, + "byteOffset":2472, + "target":34962 + }, + { + "buffer":0, + "byteLength":7512, + "byteOffset":9984, + "target":34962 + }, + { + "buffer":0, + "byteLength":5008, + "byteOffset":17496, + "target":34962 + }, + { + "buffer":0, + "byteLength":5280, + "byteOffset":22504, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":27784, + "uri":"markerx.bin" + } + ] +} diff --git a/public/markerx.bin b/public/markerx.bin new file mode 100644 index 00000000..0dbc8490 Binary files /dev/null and b/public/markerx.bin differ diff --git a/public/markerx.glb b/public/markerx.glb new file mode 100644 index 00000000..9ccd8e75 Binary files /dev/null and b/public/markerx.glb differ diff --git a/public/osopenuprn_address-Ward-South-East-Farnham-Castle.geojson b/public/osopenuprn_address-Ward-South-East-Farnham-Castle.geojson deleted file mode 100644 index 4bc39e4e..00000000 --- a/public/osopenuprn_address-Ward-South-East-Farnham-Castle.geojson +++ /dev/null @@ -1,4957 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "osopenuprn_address-Ward-South-East-Farnham-Castle", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::27700" } }, -"xy_coordinate_resolution": 1e-15, -"features": [ -{ "type": "Feature", "properties": { "FID": 12025830, "UPRN": 10002173556, "X_COORDINATE": 483963.0, "Y_COORDINATE": 146952.0, "LATITUDE": 51.2156038, "LONGITUDE": -0.7992287 }, "geometry": { "type": "Point", "coordinates": [ 483963.0, 146952.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025831, "UPRN": 10002173557, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2156212, "LONGITUDE": -0.7991709 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025754, "UPRN": 10002173428, "X_COORDINATE": 483972.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152698, "LONGITUDE": -0.7991085 }, "geometry": { "type": "Point", "coordinates": [ 483972.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025752, "UPRN": 10002173426, "X_COORDINATE": 483974.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152426, "LONGITUDE": -0.7990806 }, "geometry": { "type": "Point", "coordinates": [ 483974.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025751, "UPRN": 10002173425, "X_COORDINATE": 483977.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151882, "LONGITUDE": -0.799039 }, "geometry": { "type": "Point", "coordinates": [ 483977.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025753, "UPRN": 10002173427, "X_COORDINATE": 483979.0, "Y_COORDINATE": 146904.0, "LATITUDE": 51.2151699, "LONGITUDE": -0.7990109 }, "geometry": { "type": "Point", "coordinates": [ 483979.0, 146904.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025654, "UPRN": 10002173310, "X_COORDINATE": 483983.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2150974, "LONGITUDE": -0.7989555 }, "geometry": { "type": "Point", "coordinates": [ 483983.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025750, "UPRN": 10002173424, "X_COORDINATE": 483983.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2150974, "LONGITUDE": -0.7989555 }, "geometry": { "type": "Point", "coordinates": [ 483983.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025983, "UPRN": 10002173727, "X_COORDINATE": 484098.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2136511, "LONGITUDE": -0.7973466 }, "geometry": { "type": "Point", "coordinates": [ 484098.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026221, "UPRN": 10002173969, "X_COORDINATE": 484056.0, "Y_COORDINATE": 146970.0, "LATITUDE": 51.215752, "LONGITUDE": -0.7978932 }, "geometry": { "type": "Point", "coordinates": [ 484056.0, 146970.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026222, "UPRN": 10002173970, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156791, "LONGITUDE": -0.7978092 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026223, "UPRN": 10002173971, "X_COORDINATE": 484069.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155972, "LONGITUDE": -0.7977111 }, "geometry": { "type": "Point", "coordinates": [ 484069.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026224, "UPRN": 10002173972, "X_COORDINATE": 484061.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.2157153, "LONGITUDE": -0.7978226 }, "geometry": { "type": "Point", "coordinates": [ 484061.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026225, "UPRN": 10002173973, "X_COORDINATE": 484067.0, "Y_COORDINATE": 146959.0, "LATITUDE": 51.2156514, "LONGITUDE": -0.7977383 }, "geometry": { "type": "Point", "coordinates": [ 484067.0, 146959.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026226, "UPRN": 10002173974, "X_COORDINATE": 484068.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.2155794, "LONGITUDE": -0.7977259 }, "geometry": { "type": "Point", "coordinates": [ 484068.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026227, "UPRN": 10002173975, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146802.0, "LATITUDE": 51.2142581, "LONGITUDE": -0.7995357 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146802.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026235, "UPRN": 10002173983, "X_COORDINATE": 483932.0, "Y_COORDINATE": 146882.0, "LATITUDE": 51.214979, "LONGITUDE": -0.7996888 }, "geometry": { "type": "Point", "coordinates": [ 483932.0, 146882.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026241, "UPRN": 10002173989, "X_COORDINATE": 484129.0, "Y_COORDINATE": 146956.0, "LATITUDE": 51.2156154, "LONGITUDE": -0.7968516 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 146956.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026243, "UPRN": 10002173991, "X_COORDINATE": 484099.0, "Y_COORDINATE": 146958.0, "LATITUDE": 51.2156377, "LONGITUDE": -0.7972805 }, "geometry": { "type": "Point", "coordinates": [ 484099.0, 146958.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026244, "UPRN": 10002173992, "X_COORDINATE": 484096.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155932, "LONGITUDE": -0.7973246 }, "geometry": { "type": "Point", "coordinates": [ 484096.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026245, "UPRN": 10002173993, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146877.0, "LATITUDE": 51.2149312, "LONGITUDE": -0.7994036 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146877.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026206, "UPRN": 10002173954, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146742.0, "LATITUDE": 51.2137388, "LONGITUDE": -0.8015106 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146742.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025464, "UPRN": 10002173089, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146839.0, "LATITUDE": 51.2146563, "LONGITUDE": -0.8059397 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025465, "UPRN": 10002173090, "X_COORDINATE": 483499.0, "Y_COORDINATE": 146842.0, "LATITUDE": 51.2146829, "LONGITUDE": -0.805896 }, "geometry": { "type": "Point", "coordinates": [ 483499.0, 146842.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025456, "UPRN": 10002173079, "X_COORDINATE": 483583.0, "Y_COORDINATE": 146184.0, "LATITUDE": 51.208755, "LONGITUDE": -0.8048466 }, "geometry": { "type": "Point", "coordinates": [ 483583.0, 146184.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026006, "UPRN": 10002173750, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026007, "UPRN": 10002173751, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026017, "UPRN": 10002173761, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026016, "UPRN": 10002173760, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026015, "UPRN": 10002173759, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026014, "UPRN": 10002173758, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026013, "UPRN": 10002173757, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026012, "UPRN": 10002173756, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026011, "UPRN": 10002173755, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026010, "UPRN": 10002173754, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026009, "UPRN": 10002173753, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026008, "UPRN": 10002173752, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025990, "UPRN": 10002173734, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025991, "UPRN": 10002173735, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025992, "UPRN": 10002173736, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025993, "UPRN": 10002173737, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025994, "UPRN": 10002173738, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025995, "UPRN": 10002173739, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025996, "UPRN": 10002173740, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025997, "UPRN": 10002173741, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025998, "UPRN": 10002173742, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025999, "UPRN": 10002173743, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026000, "UPRN": 10002173744, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026001, "UPRN": 10002173745, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026002, "UPRN": 10002173746, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026003, "UPRN": 10002173747, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025989, "UPRN": 10002173733, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025988, "UPRN": 10002173732, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025987, "UPRN": 10002173731, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12025986, "UPRN": 10002173730, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026005, "UPRN": 10002173749, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 12026004, "UPRN": 10002173748, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820552, "UPRN": 200001291819, "X_COORDINATE": 483616.0, "Y_COORDINATE": 146182.0, "LATITUDE": 51.2087322, "LONGITUDE": -0.8043748 }, "geometry": { "type": "Point", "coordinates": [ 483616.0, 146182.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820664, "UPRN": 200001292007, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820665, "UPRN": 200001292008, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820666, "UPRN": 200001292009, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820667, "UPRN": 200001292010, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820668, "UPRN": 200001292011, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820669, "UPRN": 200001292012, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820670, "UPRN": 200001292013, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820671, "UPRN": 200001292014, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820672, "UPRN": 200001292015, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820673, "UPRN": 200001292016, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820674, "UPRN": 200001292017, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820675, "UPRN": 200001292018, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820676, "UPRN": 200001292019, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820704, "UPRN": 200001292047, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820705, "UPRN": 200001292048, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820706, "UPRN": 200001292049, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819614, "UPRN": 200001290383, "X_COORDINATE": 484012.0, "Y_COORDINATE": 146487.0, "LATITUDE": 51.2114162, "LONGITUDE": -0.798636 }, "geometry": { "type": "Point", "coordinates": [ 484012.0, 146487.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819574, "UPRN": 200001290326, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146616.0, "LATITUDE": 51.2125859, "LONGITUDE": -0.7995791 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819480, "UPRN": 200001290169, "X_COORDINATE": 483992.0, "Y_COORDINATE": 146652.0, "LATITUDE": 51.2129025, "LONGITUDE": -0.7988837 }, "geometry": { "type": "Point", "coordinates": [ 483992.0, 146652.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819487, "UPRN": 200001290176, "X_COORDINATE": 484017.0, "Y_COORDINATE": 146681.0, "LATITUDE": 51.2131595, "LONGITUDE": -0.798519 }, "geometry": { "type": "Point", "coordinates": [ 484017.0, 146681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819486, "UPRN": 200001290175, "X_COORDINATE": 484017.0, "Y_COORDINATE": 146681.0, "LATITUDE": 51.2131595, "LONGITUDE": -0.798519 }, "geometry": { "type": "Point", "coordinates": [ 484017.0, 146681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820486, "UPRN": 200001291733, "X_COORDINATE": 483965.0, "Y_COORDINATE": 146697.0, "LATITUDE": 51.213311, "LONGITUDE": -0.7992596 }, "geometry": { "type": "Point", "coordinates": [ 483965.0, 146697.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819485, "UPRN": 200001290174, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819484, "UPRN": 200001290173, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819483, "UPRN": 200001290172, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819481, "UPRN": 200001290170, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146713.0, "LATITUDE": 51.2134557, "LONGITUDE": -0.7993417 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146713.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819488, "UPRN": 200001290177, "X_COORDINATE": 483949.0, "Y_COORDINATE": 146738.0, "LATITUDE": 51.213682, "LONGITUDE": -0.799479 }, "geometry": { "type": "Point", "coordinates": [ 483949.0, 146738.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820487, "UPRN": 200001291735, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2136006, "LONGITUDE": -0.7994382 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820513, "UPRN": 200001291775, "X_COORDINATE": 483906.0, "Y_COORDINATE": 146374.0, "LATITUDE": 51.2104159, "LONGITUDE": -0.8001795 }, "geometry": { "type": "Point", "coordinates": [ 483906.0, 146374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935546, "UPRN": 200001532938, "X_COORDINATE": 483951.0, "Y_COORDINATE": 146653.0, "LATITUDE": 51.2129175, "LONGITUDE": -0.7994703 }, "geometry": { "type": "Point", "coordinates": [ 483951.0, 146653.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819707, "UPRN": 200001290521, "X_COORDINATE": 483299.0, "Y_COORDINATE": 146433.0, "LATITUDE": 51.2110351, "LONGITUDE": -0.8088536 }, "geometry": { "type": "Point", "coordinates": [ 483299.0, 146433.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935492, "UPRN": 200001532801, "X_COORDINATE": 483324.0, "Y_COORDINATE": 146395.0, "LATITUDE": 51.2106898, "LONGITUDE": -0.8085046 }, "geometry": { "type": "Point", "coordinates": [ 483324.0, 146395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819461, "UPRN": 200001290150, "X_COORDINATE": 483336.0, "Y_COORDINATE": 146446.0, "LATITUDE": 51.2111465, "LONGITUDE": -0.808321 }, "geometry": { "type": "Point", "coordinates": [ 483336.0, 146446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819460, "UPRN": 200001290149, "X_COORDINATE": 483336.0, "Y_COORDINATE": 146446.0, "LATITUDE": 51.2111465, "LONGITUDE": -0.808321 }, "geometry": { "type": "Point", "coordinates": [ 483336.0, 146446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819462, "UPRN": 200001290151, "X_COORDINATE": 483371.0, "Y_COORDINATE": 146436.0, "LATITUDE": 51.2110515, "LONGITUDE": -0.8078224 }, "geometry": { "type": "Point", "coordinates": [ 483371.0, 146436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819459, "UPRN": 200001290148, "X_COORDINATE": 483371.0, "Y_COORDINATE": 146436.0, "LATITUDE": 51.2110515, "LONGITUDE": -0.8078224 }, "geometry": { "type": "Point", "coordinates": [ 483371.0, 146436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819465, "UPRN": 200001290154, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819464, "UPRN": 200001290153, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819463, "UPRN": 200001290152, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823298, "UPRN": 200001298015, "X_COORDINATE": 483402.0, "Y_COORDINATE": 146478.0, "LATITUDE": 51.2114246, "LONGITUDE": -0.8073689 }, "geometry": { "type": "Point", "coordinates": [ 483402.0, 146478.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819415, "UPRN": 200001290096, "X_COORDINATE": 483410.0, "Y_COORDINATE": 146469.0, "LATITUDE": 51.2113425, "LONGITUDE": -0.8072565 }, "geometry": { "type": "Point", "coordinates": [ 483410.0, 146469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823646, "UPRN": 200001299070, "X_COORDINATE": 483419.0, "Y_COORDINATE": 146539.0, "LATITUDE": 51.2119705, "LONGITUDE": -0.8071115 }, "geometry": { "type": "Point", "coordinates": [ 483419.0, 146539.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820447, "UPRN": 200001291686, "X_COORDINATE": 483420.0, "Y_COORDINATE": 146538.0, "LATITUDE": 51.2119614, "LONGITUDE": -0.8070974 }, "geometry": { "type": "Point", "coordinates": [ 483420.0, 146538.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935854, "UPRN": 200001533738, "X_COORDINATE": 483445.0, "Y_COORDINATE": 146557.0, "LATITUDE": 51.2121285, "LONGITUDE": -0.8067351 }, "geometry": { "type": "Point", "coordinates": [ 483445.0, 146557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936616, "UPRN": 200001536405, "X_COORDINATE": 483400.0, "Y_COORDINATE": 146400.0, "LATITUDE": 51.2107237, "LONGITUDE": -0.8074157 }, "geometry": { "type": "Point", "coordinates": [ 483400.0, 146400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936950, "UPRN": 200001537638, "X_COORDINATE": 483360.0, "Y_COORDINATE": 146400.0, "LATITUDE": 51.2107295, "LONGITUDE": -0.8079882 }, "geometry": { "type": "Point", "coordinates": [ 483360.0, 146400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818166, "UPRN": 200001287661, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146535.0, "LATITUDE": 51.2118406, "LONGITUDE": -0.7979377 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815888, "UPRN": 200001282844, "X_COORDINATE": 483616.0, "Y_COORDINATE": 146529.0, "LATITUDE": 51.2118518, "LONGITUDE": -0.8042941 }, "geometry": { "type": "Point", "coordinates": [ 483616.0, 146529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815887, "UPRN": 200001282843, "X_COORDINATE": 483623.0, "Y_COORDINATE": 146451.0, "LATITUDE": 51.2111496, "LONGITUDE": -0.8042121 }, "geometry": { "type": "Point", "coordinates": [ 483623.0, 146451.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815876, "UPRN": 200001282832, "X_COORDINATE": 483627.0, "Y_COORDINATE": 146532.0, "LATITUDE": 51.2118772, "LONGITUDE": -0.804136 }, "geometry": { "type": "Point", "coordinates": [ 483627.0, 146532.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815885, "UPRN": 200001282841, "X_COORDINATE": 483624.0, "Y_COORDINATE": 146460.0, "LATITUDE": 51.2112303, "LONGITUDE": -0.8041957 }, "geometry": { "type": "Point", "coordinates": [ 483624.0, 146460.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815884, "UPRN": 200001282840, "X_COORDINATE": 483624.0, "Y_COORDINATE": 146465.0, "LATITUDE": 51.2112753, "LONGITUDE": -0.8041945 }, "geometry": { "type": "Point", "coordinates": [ 483624.0, 146465.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815886, "UPRN": 200001282842, "X_COORDINATE": 483623.0, "Y_COORDINATE": 146456.0, "LATITUDE": 51.2111945, "LONGITUDE": -0.8042109 }, "geometry": { "type": "Point", "coordinates": [ 483623.0, 146456.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815875, "UPRN": 200001282831, "X_COORDINATE": 483623.0, "Y_COORDINATE": 146531.0, "LATITUDE": 51.2118688, "LONGITUDE": -0.8041935 }, "geometry": { "type": "Point", "coordinates": [ 483623.0, 146531.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815874, "UPRN": 200001282830, "X_COORDINATE": 483620.0, "Y_COORDINATE": 146531.0, "LATITUDE": 51.2118692, "LONGITUDE": -0.8042364 }, "geometry": { "type": "Point", "coordinates": [ 483620.0, 146531.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815883, "UPRN": 200001282839, "X_COORDINATE": 483619.0, "Y_COORDINATE": 146471.0, "LATITUDE": 51.21133, "LONGITUDE": -0.8042647 }, "geometry": { "type": "Point", "coordinates": [ 483619.0, 146471.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815882, "UPRN": 200001282838, "X_COORDINATE": 483619.0, "Y_COORDINATE": 146476.0, "LATITUDE": 51.2113749, "LONGITUDE": -0.8042635 }, "geometry": { "type": "Point", "coordinates": [ 483619.0, 146476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815881, "UPRN": 200001282837, "X_COORDINATE": 483619.0, "Y_COORDINATE": 146481.0, "LATITUDE": 51.2114199, "LONGITUDE": -0.8042623 }, "geometry": { "type": "Point", "coordinates": [ 483619.0, 146481.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815880, "UPRN": 200001282836, "X_COORDINATE": 483618.0, "Y_COORDINATE": 146486.0, "LATITUDE": 51.211465, "LONGITUDE": -0.8042755 }, "geometry": { "type": "Point", "coordinates": [ 483618.0, 146486.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815879, "UPRN": 200001282835, "X_COORDINATE": 483618.0, "Y_COORDINATE": 146492.0, "LATITUDE": 51.2115189, "LONGITUDE": -0.8042741 }, "geometry": { "type": "Point", "coordinates": [ 483618.0, 146492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936326, "UPRN": 200001535425, "X_COORDINATE": 484152.0, "Y_COORDINATE": 146470.0, "LATITUDE": 51.2112428, "LONGITUDE": -0.7966361 }, "geometry": { "type": "Point", "coordinates": [ 484152.0, 146470.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936642, "UPRN": 200001536526, "X_COORDINATE": 484037.0, "Y_COORDINATE": 146549.0, "LATITUDE": 51.2119699, "LONGITUDE": -0.7982636 }, "geometry": { "type": "Point", "coordinates": [ 484037.0, 146549.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39357484, "UPRN": 200002885670, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146535.0, "LATITUDE": 51.2118406, "LONGITUDE": -0.7979377 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819700, "UPRN": 200001290509, "X_COORDINATE": 483447.0, "Y_COORDINATE": 146600.0, "LATITUDE": 51.2125148, "LONGITUDE": -0.8066965 }, "geometry": { "type": "Point", "coordinates": [ 483447.0, 146600.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936435, "UPRN": 200001535760, "X_COORDINATE": 483527.0, "Y_COORDINATE": 146616.0, "LATITUDE": 51.212647, "LONGITUDE": -0.8055478 }, "geometry": { "type": "Point", "coordinates": [ 483527.0, 146616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819582, "UPRN": 200001290334, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819583, "UPRN": 200001290335, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935873, "UPRN": 200001533804, "X_COORDINATE": 483760.0, "Y_COORDINATE": 146580.0, "LATITUDE": 51.2122892, "LONGITUDE": -0.8022211 }, "geometry": { "type": "Point", "coordinates": [ 483760.0, 146580.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816138, "UPRN": 200001283273, "X_COORDINATE": 483842.0, "Y_COORDINATE": 146615.0, "LATITUDE": 51.2125919, "LONGITUDE": -0.8010393 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 146615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816139, "UPRN": 200001283274, "X_COORDINATE": 483887.0, "Y_COORDINATE": 146636.0, "LATITUDE": 51.2127741, "LONGITUDE": -0.8003903 }, "geometry": { "type": "Point", "coordinates": [ 483887.0, 146636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820545, "UPRN": 200001291812, "X_COORDINATE": 483893.0, "Y_COORDINATE": 146647.0, "LATITUDE": 51.2128721, "LONGITUDE": -0.8003018 }, "geometry": { "type": "Point", "coordinates": [ 483893.0, 146647.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818519, "UPRN": 200001288435, "X_COORDINATE": 484020.0, "Y_COORDINATE": 146653.0, "LATITUDE": 51.2129074, "LONGITUDE": -0.7984826 }, "geometry": { "type": "Point", "coordinates": [ 484020.0, 146653.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818520, "UPRN": 200001288436, "X_COORDINATE": 484025.0, "Y_COORDINATE": 146653.0, "LATITUDE": 51.2129066, "LONGITUDE": -0.7984111 }, "geometry": { "type": "Point", "coordinates": [ 484025.0, 146653.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935977, "UPRN": 200001534152, "X_COORDINATE": 483581.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2130526, "LONGITUDE": -0.8047641 }, "geometry": { "type": "Point", "coordinates": [ 483581.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823648, "UPRN": 200001299072, "X_COORDINATE": 483481.0, "Y_COORDINATE": 146635.0, "LATITUDE": 51.2128245, "LONGITUDE": -0.8062018 }, "geometry": { "type": "Point", "coordinates": [ 483481.0, 146635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823085, "UPRN": 200001296941, "X_COORDINATE": 483529.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130872, "LONGITUDE": -0.8055077 }, "geometry": { "type": "Point", "coordinates": [ 483529.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820476, "UPRN": 200001291716, "X_COORDINATE": 483551.0, "Y_COORDINATE": 146682.0, "LATITUDE": 51.2132368, "LONGITUDE": -0.8051889 }, "geometry": { "type": "Point", "coordinates": [ 483551.0, 146682.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820475, "UPRN": 200001291715, "X_COORDINATE": 483462.0, "Y_COORDINATE": 146657.0, "LATITUDE": 51.2130251, "LONGITUDE": -0.8064686 }, "geometry": { "type": "Point", "coordinates": [ 483462.0, 146657.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820474, "UPRN": 200001291714, "X_COORDINATE": 483471.0, "Y_COORDINATE": 146652.0, "LATITUDE": 51.2129788, "LONGITUDE": -0.8063409 }, "geometry": { "type": "Point", "coordinates": [ 483471.0, 146652.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820473, "UPRN": 200001291713, "X_COORDINATE": 483477.0, "Y_COORDINATE": 146645.0, "LATITUDE": 51.212915, "LONGITUDE": -0.8062567 }, "geometry": { "type": "Point", "coordinates": [ 483477.0, 146645.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819698, "UPRN": 200001290506, "X_COORDINATE": 483609.0, "Y_COORDINATE": 146682.0, "LATITUDE": 51.2132284, "LONGITUDE": -0.8043587 }, "geometry": { "type": "Point", "coordinates": [ 483609.0, 146682.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819699, "UPRN": 200001290508, "X_COORDINATE": 483481.0, "Y_COORDINATE": 146635.0, "LATITUDE": 51.2128245, "LONGITUDE": -0.8062018 }, "geometry": { "type": "Point", "coordinates": [ 483481.0, 146635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819601, "UPRN": 200001290367, "X_COORDINATE": 483463.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.213906, "LONGITUDE": -0.8064315 }, "geometry": { "type": "Point", "coordinates": [ 483463.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816144, "UPRN": 200001283280, "X_COORDINATE": 483608.0, "Y_COORDINATE": 146683.0, "LATITUDE": 51.2132375, "LONGITUDE": -0.8043728 }, "geometry": { "type": "Point", "coordinates": [ 483608.0, 146683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816143, "UPRN": 200001283279, "X_COORDINATE": 483608.0, "Y_COORDINATE": 146683.0, "LATITUDE": 51.2132375, "LONGITUDE": -0.8043728 }, "geometry": { "type": "Point", "coordinates": [ 483608.0, 146683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816142, "UPRN": 200001283278, "X_COORDINATE": 483608.0, "Y_COORDINATE": 146683.0, "LATITUDE": 51.2132375, "LONGITUDE": -0.8043728 }, "geometry": { "type": "Point", "coordinates": [ 483608.0, 146683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936295, "UPRN": 200001535305, "X_COORDINATE": 483544.0, "Y_COORDINATE": 146640.0, "LATITUDE": 51.2128603, "LONGITUDE": -0.8052989 }, "geometry": { "type": "Point", "coordinates": [ 483544.0, 146640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820539, "UPRN": 200001291802, "X_COORDINATE": 484200.0, "Y_COORDINATE": 146693.0, "LATITUDE": 51.2132405, "LONGITUDE": -0.7958969 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 146693.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820540, "UPRN": 200001291803, "X_COORDINATE": 484200.0, "Y_COORDINATE": 146693.0, "LATITUDE": 51.2132405, "LONGITUDE": -0.7958969 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 146693.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820541, "UPRN": 200001291804, "X_COORDINATE": 484200.0, "Y_COORDINATE": 146693.0, "LATITUDE": 51.2132405, "LONGITUDE": -0.7958969 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 146693.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820536, "UPRN": 200001291799, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146696.0, "LATITUDE": 51.213266, "LONGITUDE": -0.795753 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146696.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820537, "UPRN": 200001291800, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146696.0, "LATITUDE": 51.213266, "LONGITUDE": -0.795753 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146696.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820538, "UPRN": 200001291801, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146696.0, "LATITUDE": 51.213266, "LONGITUDE": -0.795753 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146696.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820533, "UPRN": 200001291796, "X_COORDINATE": 484217.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2133279, "LONGITUDE": -0.7956512 }, "geometry": { "type": "Point", "coordinates": [ 484217.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820534, "UPRN": 200001291797, "X_COORDINATE": 484217.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2133279, "LONGITUDE": -0.7956512 }, "geometry": { "type": "Point", "coordinates": [ 484217.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820535, "UPRN": 200001291798, "X_COORDINATE": 484217.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2133279, "LONGITUDE": -0.7956512 }, "geometry": { "type": "Point", "coordinates": [ 484217.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820530, "UPRN": 200001291793, "X_COORDINATE": 484223.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2133989, "LONGITUDE": -0.7955634 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820531, "UPRN": 200001291794, "X_COORDINATE": 484223.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2133989, "LONGITUDE": -0.7955634 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820532, "UPRN": 200001291795, "X_COORDINATE": 484223.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2133989, "LONGITUDE": -0.7955634 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935827, "UPRN": 200001533669, "X_COORDINATE": 483862.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.2131553, "LONGITUDE": -0.8007383 }, "geometry": { "type": "Point", "coordinates": [ 483862.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936019, "UPRN": 200001534349, "X_COORDINATE": 484162.0, "Y_COORDINATE": 146667.0, "LATITUDE": 51.2130123, "LONGITUDE": -0.7964469 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 146667.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936135, "UPRN": 200001534782, "X_COORDINATE": 484041.0, "Y_COORDINATE": 146683.0, "LATITUDE": 51.213174, "LONGITUDE": -0.7981751 }, "geometry": { "type": "Point", "coordinates": [ 484041.0, 146683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39435574, "UPRN": 200003085958, "X_COORDINATE": 484162.0, "Y_COORDINATE": 146667.0, "LATITUDE": 51.2130123, "LONGITUDE": -0.7964469 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 146667.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815729, "UPRN": 200001282581, "X_COORDINATE": 483487.0, "Y_COORDINATE": 146383.0, "LATITUDE": 51.2105581, "LONGITUDE": -0.8061744 }, "geometry": { "type": "Point", "coordinates": [ 483487.0, 146383.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815727, "UPRN": 200001282579, "X_COORDINATE": 483487.0, "Y_COORDINATE": 146372.0, "LATITUDE": 51.2104592, "LONGITUDE": -0.806177 }, "geometry": { "type": "Point", "coordinates": [ 483487.0, 146372.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815728, "UPRN": 200001282580, "X_COORDINATE": 483489.0, "Y_COORDINATE": 146379.0, "LATITUDE": 51.2105219, "LONGITUDE": -0.8061467 }, "geometry": { "type": "Point", "coordinates": [ 483489.0, 146379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815726, "UPRN": 200001282578, "X_COORDINATE": 483490.0, "Y_COORDINATE": 146368.0, "LATITUDE": 51.2104228, "LONGITUDE": -0.8061349 }, "geometry": { "type": "Point", "coordinates": [ 483490.0, 146368.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815725, "UPRN": 200001282577, "X_COORDINATE": 483493.0, "Y_COORDINATE": 146364.0, "LATITUDE": 51.2103864, "LONGITUDE": -0.8060929 }, "geometry": { "type": "Point", "coordinates": [ 483493.0, 146364.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815724, "UPRN": 200001282576, "X_COORDINATE": 483494.0, "Y_COORDINATE": 146361.0, "LATITUDE": 51.2103593, "LONGITUDE": -0.8060793 }, "geometry": { "type": "Point", "coordinates": [ 483494.0, 146361.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815730, "UPRN": 200001282582, "X_COORDINATE": 483500.0, "Y_COORDINATE": 146393.0, "LATITUDE": 51.2106461, "LONGITUDE": -0.805986 }, "geometry": { "type": "Point", "coordinates": [ 483500.0, 146393.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815717, "UPRN": 200001282569, "X_COORDINATE": 483510.0, "Y_COORDINATE": 146399.0, "LATITUDE": 51.2106986, "LONGITUDE": -0.8058415 }, "geometry": { "type": "Point", "coordinates": [ 483510.0, 146399.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815718, "UPRN": 200001282570, "X_COORDINATE": 483514.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.210671, "LONGITUDE": -0.8057849 }, "geometry": { "type": "Point", "coordinates": [ 483514.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815719, "UPRN": 200001282571, "X_COORDINATE": 483519.0, "Y_COORDINATE": 146394.0, "LATITUDE": 51.2106523, "LONGITUDE": -0.8057138 }, "geometry": { "type": "Point", "coordinates": [ 483519.0, 146394.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815721, "UPRN": 200001282573, "X_COORDINATE": 483519.0, "Y_COORDINATE": 146382.0, "LATITUDE": 51.2105445, "LONGITUDE": -0.8057166 }, "geometry": { "type": "Point", "coordinates": [ 483519.0, 146382.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815722, "UPRN": 200001282574, "X_COORDINATE": 483521.0, "Y_COORDINATE": 146378.0, "LATITUDE": 51.2105082, "LONGITUDE": -0.8056889 }, "geometry": { "type": "Point", "coordinates": [ 483521.0, 146378.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815720, "UPRN": 200001282572, "X_COORDINATE": 483522.0, "Y_COORDINATE": 146389.0, "LATITUDE": 51.2106069, "LONGITUDE": -0.8056721 }, "geometry": { "type": "Point", "coordinates": [ 483522.0, 146389.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815723, "UPRN": 200001282575, "X_COORDINATE": 483523.0, "Y_COORDINATE": 146375.0, "LATITUDE": 51.2104809, "LONGITUDE": -0.805661 }, "geometry": { "type": "Point", "coordinates": [ 483523.0, 146375.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819584, "UPRN": 200001290337, "X_COORDINATE": 483533.0, "Y_COORDINATE": 146547.0, "LATITUDE": 51.2120258, "LONGITUDE": -0.8054779 }, "geometry": { "type": "Point", "coordinates": [ 483533.0, 146547.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816227, "UPRN": 200001283448, "X_COORDINATE": 483543.0, "Y_COORDINATE": 146398.0, "LATITUDE": 51.2106848, "LONGITUDE": -0.8053694 }, "geometry": { "type": "Point", "coordinates": [ 483543.0, 146398.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816223, "UPRN": 200001283444, "X_COORDINATE": 483547.0, "Y_COORDINATE": 146399.0, "LATITUDE": 51.2106932, "LONGITUDE": -0.8053119 }, "geometry": { "type": "Point", "coordinates": [ 483547.0, 146399.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816224, "UPRN": 200001283445, "X_COORDINATE": 483551.0, "Y_COORDINATE": 146401.0, "LATITUDE": 51.2107106, "LONGITUDE": -0.8052542 }, "geometry": { "type": "Point", "coordinates": [ 483551.0, 146401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816225, "UPRN": 200001283446, "X_COORDINATE": 483555.0, "Y_COORDINATE": 146402.0, "LATITUDE": 51.210719, "LONGITUDE": -0.8051967 }, "geometry": { "type": "Point", "coordinates": [ 483555.0, 146402.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816226, "UPRN": 200001283447, "X_COORDINATE": 483559.0, "Y_COORDINATE": 146403.0, "LATITUDE": 51.2107274, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483559.0, 146403.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935834, "UPRN": 200001533686, "X_COORDINATE": 483575.0, "Y_COORDINATE": 146546.0, "LATITUDE": 51.2120107, "LONGITUDE": -0.804877 }, "geometry": { "type": "Point", "coordinates": [ 483575.0, 146546.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823518, "UPRN": 200001298685, "X_COORDINATE": 483616.0, "Y_COORDINATE": 146529.0, "LATITUDE": 51.2118518, "LONGITUDE": -0.8042941 }, "geometry": { "type": "Point", "coordinates": [ 483616.0, 146529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815878, "UPRN": 200001282834, "X_COORDINATE": 483618.0, "Y_COORDINATE": 146500.0, "LATITUDE": 51.2115908, "LONGITUDE": -0.8042722 }, "geometry": { "type": "Point", "coordinates": [ 483618.0, 146500.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820374, "UPRN": 200001291596, "X_COORDINATE": 483667.0, "Y_COORDINATE": 146565.0, "LATITUDE": 51.212168, "LONGITUDE": -0.8035558 }, "geometry": { "type": "Point", "coordinates": [ 483667.0, 146565.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815877, "UPRN": 200001282833, "X_COORDINATE": 483618.0, "Y_COORDINATE": 146505.0, "LATITUDE": 51.2116358, "LONGITUDE": -0.8042711 }, "geometry": { "type": "Point", "coordinates": [ 483618.0, 146505.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815565, "UPRN": 200001282385, "X_COORDINATE": 483579.0, "Y_COORDINATE": 146484.0, "LATITUDE": 51.2114527, "LONGITUDE": -0.8048342 }, "geometry": { "type": "Point", "coordinates": [ 483579.0, 146484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815576, "UPRN": 200001282396, "X_COORDINATE": 483577.0, "Y_COORDINATE": 146473.0, "LATITUDE": 51.2113541, "LONGITUDE": -0.8048653 }, "geometry": { "type": "Point", "coordinates": [ 483577.0, 146473.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815566, "UPRN": 200001282386, "X_COORDINATE": 483572.0, "Y_COORDINATE": 146489.0, "LATITUDE": 51.2114987, "LONGITUDE": -0.8049332 }, "geometry": { "type": "Point", "coordinates": [ 483572.0, 146489.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815567, "UPRN": 200001282387, "X_COORDINATE": 483568.0, "Y_COORDINATE": 146492.0, "LATITUDE": 51.2115262, "LONGITUDE": -0.8049897 }, "geometry": { "type": "Point", "coordinates": [ 483568.0, 146492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815575, "UPRN": 200001282395, "X_COORDINATE": 483567.0, "Y_COORDINATE": 146459.0, "LATITUDE": 51.2112297, "LONGITUDE": -0.8050117 }, "geometry": { "type": "Point", "coordinates": [ 483567.0, 146459.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815568, "UPRN": 200001282388, "X_COORDINATE": 483563.0, "Y_COORDINATE": 146492.0, "LATITUDE": 51.2115269, "LONGITUDE": -0.8050613 }, "geometry": { "type": "Point", "coordinates": [ 483563.0, 146492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815574, "UPRN": 200001282394, "X_COORDINATE": 483562.0, "Y_COORDINATE": 146458.0, "LATITUDE": 51.2112214, "LONGITUDE": -0.8050835 }, "geometry": { "type": "Point", "coordinates": [ 483562.0, 146458.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815569, "UPRN": 200001282389, "X_COORDINATE": 483558.0, "Y_COORDINATE": 146491.0, "LATITUDE": 51.2115187, "LONGITUDE": -0.8051331 }, "geometry": { "type": "Point", "coordinates": [ 483558.0, 146491.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815570, "UPRN": 200001282390, "X_COORDINATE": 483554.0, "Y_COORDINATE": 146491.0, "LATITUDE": 51.2115193, "LONGITUDE": -0.8051904 }, "geometry": { "type": "Point", "coordinates": [ 483554.0, 146491.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815571, "UPRN": 200001282391, "X_COORDINATE": 483550.0, "Y_COORDINATE": 146491.0, "LATITUDE": 51.2115199, "LONGITUDE": -0.8052476 }, "geometry": { "type": "Point", "coordinates": [ 483550.0, 146491.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815572, "UPRN": 200001282392, "X_COORDINATE": 483546.0, "Y_COORDINATE": 146490.0, "LATITUDE": 51.2115115, "LONGITUDE": -0.8053051 }, "geometry": { "type": "Point", "coordinates": [ 483546.0, 146490.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815573, "UPRN": 200001282393, "X_COORDINATE": 483542.0, "Y_COORDINATE": 146490.0, "LATITUDE": 51.211512, "LONGITUDE": -0.8053623 }, "geometry": { "type": "Point", "coordinates": [ 483542.0, 146490.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936930, "UPRN": 200001537569, "X_COORDINATE": 483477.0, "Y_COORDINATE": 146502.0, "LATITUDE": 51.2116294, "LONGITUDE": -0.8062899 }, "geometry": { "type": "Point", "coordinates": [ 483477.0, 146502.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815863, "UPRN": 200001282813, "X_COORDINATE": 483828.0, "Y_COORDINATE": 146999.0, "LATITUDE": 51.2160462, "LONGITUDE": -0.8011501 }, "geometry": { "type": "Point", "coordinates": [ 483828.0, 146999.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815862, "UPRN": 200001282812, "X_COORDINATE": 483825.0, "Y_COORDINATE": 147003.0, "LATITUDE": 51.2160826, "LONGITUDE": -0.8011921 }, "geometry": { "type": "Point", "coordinates": [ 483825.0, 147003.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815861, "UPRN": 200001282811, "X_COORDINATE": 483815.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.216147, "LONGITUDE": -0.8013336 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815860, "UPRN": 200001282810, "X_COORDINATE": 483820.0, "Y_COORDINATE": 147013.0, "LATITUDE": 51.2161732, "LONGITUDE": -0.8012614 }, "geometry": { "type": "Point", "coordinates": [ 483820.0, 147013.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815864, "UPRN": 200001282815, "X_COORDINATE": 483825.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161994, "LONGITUDE": -0.8011891 }, "geometry": { "type": "Point", "coordinates": [ 483825.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815872, "UPRN": 200001282828, "X_COORDINATE": 483810.0, "Y_COORDINATE": 147063.0, "LATITUDE": 51.2166242, "LONGITUDE": -0.8013929 }, "geometry": { "type": "Point", "coordinates": [ 483810.0, 147063.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815871, "UPRN": 200001282827, "X_COORDINATE": 483813.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2166417, "LONGITUDE": -0.8013494 }, "geometry": { "type": "Point", "coordinates": [ 483813.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815870, "UPRN": 200001282826, "X_COORDINATE": 483816.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2166503, "LONGITUDE": -0.8013063 }, "geometry": { "type": "Point", "coordinates": [ 483816.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815869, "UPRN": 200001282825, "X_COORDINATE": 483820.0, "Y_COORDINATE": 147069.0, "LATITUDE": 51.2166766, "LONGITUDE": -0.8012483 }, "geometry": { "type": "Point", "coordinates": [ 483820.0, 147069.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820482, "UPRN": 200001291724, "X_COORDINATE": 483857.0, "Y_COORDINATE": 147069.0, "LATITUDE": 51.2166712, "LONGITUDE": -0.8007187 }, "geometry": { "type": "Point", "coordinates": [ 483857.0, 147069.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815868, "UPRN": 200001282824, "X_COORDINATE": 483823.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166852, "LONGITUDE": -0.8012051 }, "geometry": { "type": "Point", "coordinates": [ 483823.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815867, "UPRN": 200001282823, "X_COORDINATE": 483826.0, "Y_COORDINATE": 147072.0, "LATITUDE": 51.2167027, "LONGITUDE": -0.8011617 }, "geometry": { "type": "Point", "coordinates": [ 483826.0, 147072.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815866, "UPRN": 200001282822, "X_COORDINATE": 483829.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.2167113, "LONGITUDE": -0.8011185 }, "geometry": { "type": "Point", "coordinates": [ 483829.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815865, "UPRN": 200001282821, "X_COORDINATE": 483832.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2167288, "LONGITUDE": -0.8010751 }, "geometry": { "type": "Point", "coordinates": [ 483832.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820483, "UPRN": 200001291725, "X_COORDINATE": 483854.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2167256, "LONGITUDE": -0.8007602 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815873, "UPRN": 200001282829, "X_COORDINATE": 483835.0, "Y_COORDINATE": 147076.0, "LATITUDE": 51.2167374, "LONGITUDE": -0.801032 }, "geometry": { "type": "Point", "coordinates": [ 483835.0, 147076.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819455, "UPRN": 200001290141, "X_COORDINATE": 483831.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2171515, "LONGITUDE": -0.8010785 }, "geometry": { "type": "Point", "coordinates": [ 483831.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818256, "UPRN": 200001287895, "X_COORDINATE": 483842.0, "Y_COORDINATE": 147221.0, "LATITUDE": 51.2180399, "LONGITUDE": -0.8008979 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 147221.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820484, "UPRN": 200001291726, "X_COORDINATE": 483854.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2167256, "LONGITUDE": -0.8007602 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820485, "UPRN": 200001291727, "X_COORDINATE": 483854.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2167256, "LONGITUDE": -0.8007602 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823017, "UPRN": 200001296634, "X_COORDINATE": 483853.0, "Y_COORDINATE": 147160.0, "LATITUDE": 51.2174899, "LONGITUDE": -0.8007547 }, "geometry": { "type": "Point", "coordinates": [ 483853.0, 147160.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935798, "UPRN": 200001533597, "X_COORDINATE": 483760.0, "Y_COORDINATE": 147285.0, "LATITUDE": 51.2186273, "LONGITUDE": -0.8020568 }, "geometry": { "type": "Point", "coordinates": [ 483760.0, 147285.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819540, "UPRN": 200001290273, "X_COORDINATE": 484186.0, "Y_COORDINATE": 147169.0, "LATITUDE": 51.2175219, "LONGITUDE": -0.7959858 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 147169.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819541, "UPRN": 200001290274, "X_COORDINATE": 484186.0, "Y_COORDINATE": 147169.0, "LATITUDE": 51.2175219, "LONGITUDE": -0.7959858 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 147169.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819636, "UPRN": 200001290417, "X_COORDINATE": 484206.0, "Y_COORDINATE": 147204.0, "LATITUDE": 51.2178336, "LONGITUDE": -0.7956913 }, "geometry": { "type": "Point", "coordinates": [ 484206.0, 147204.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819637, "UPRN": 200001290418, "X_COORDINATE": 484210.0, "Y_COORDINATE": 147178.0, "LATITUDE": 51.2175992, "LONGITUDE": -0.7956401 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 147178.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823582, "UPRN": 200001298887, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147185.0, "LATITUDE": 51.2176619, "LONGITUDE": -0.7956098 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147185.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936016, "UPRN": 200001534336, "X_COORDINATE": 484263.0, "Y_COORDINATE": 147162.0, "LATITUDE": 51.2174476, "LONGITUDE": -0.7948852 }, "geometry": { "type": "Point", "coordinates": [ 484263.0, 147162.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816100, "UPRN": 200001283164, "X_COORDINATE": 484316.0, "Y_COORDINATE": 147358.0, "LATITUDE": 51.2192018, "LONGITUDE": -0.7940805 }, "geometry": { "type": "Point", "coordinates": [ 484316.0, 147358.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823028, "UPRN": 200001296685, "X_COORDINATE": 484329.0, "Y_COORDINATE": 147199.0, "LATITUDE": 51.2177705, "LONGITUDE": -0.7939317 }, "geometry": { "type": "Point", "coordinates": [ 484329.0, 147199.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823029, "UPRN": 200001296686, "X_COORDINATE": 484329.0, "Y_COORDINATE": 147199.0, "LATITUDE": 51.2177705, "LONGITUDE": -0.7939317 }, "geometry": { "type": "Point", "coordinates": [ 484329.0, 147199.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823351, "UPRN": 200001298164, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179366, "LONGITUDE": -0.7934692 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823350, "UPRN": 200001298163, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179366, "LONGITUDE": -0.7934692 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823347, "UPRN": 200001298159, "X_COORDINATE": 484366.0, "Y_COORDINATE": 147240.0, "LATITUDE": 51.2181336, "LONGITUDE": -0.7933924 }, "geometry": { "type": "Point", "coordinates": [ 484366.0, 147240.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819491, "UPRN": 200001290189, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819492, "UPRN": 200001290190, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819497, "UPRN": 200001290202, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936152, "UPRN": 200001534846, "X_COORDINATE": 484170.0, "Y_COORDINATE": 147190.0, "LATITUDE": 51.217713, "LONGITUDE": -0.7962099 }, "geometry": { "type": "Point", "coordinates": [ 484170.0, 147190.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936279, "UPRN": 200001535266, "X_COORDINATE": 484234.0, "Y_COORDINATE": 147338.0, "LATITUDE": 51.2190341, "LONGITUDE": -0.795259 }, "geometry": { "type": "Point", "coordinates": [ 484234.0, 147338.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936340, "UPRN": 200001535463, "X_COORDINATE": 484330.0, "Y_COORDINATE": 147140.0, "LATITUDE": 51.2172399, "LONGITUDE": -0.7939312 }, "geometry": { "type": "Point", "coordinates": [ 484330.0, 147140.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936383, "UPRN": 200001535580, "X_COORDINATE": 484208.0, "Y_COORDINATE": 147221.0, "LATITUDE": 51.2179861, "LONGITUDE": -0.7956586 }, "geometry": { "type": "Point", "coordinates": [ 484208.0, 147221.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936708, "UPRN": 200001536775, "X_COORDINATE": 484350.0, "Y_COORDINATE": 147250.0, "LATITUDE": 51.2182259, "LONGITUDE": -0.7936191 }, "geometry": { "type": "Point", "coordinates": [ 484350.0, 147250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936924, "UPRN": 200001537538, "X_COORDINATE": 484380.0, "Y_COORDINATE": 147250.0, "LATITUDE": 51.2182214, "LONGITUDE": -0.7931897 }, "geometry": { "type": "Point", "coordinates": [ 484380.0, 147250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936983, "UPRN": 200001537733, "X_COORDINATE": 484303.0, "Y_COORDINATE": 147151.0, "LATITUDE": 51.2173428, "LONGITUDE": -0.7943152 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 147151.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937245, "UPRN": 200001538545, "X_COORDINATE": 484325.0, "Y_COORDINATE": 147172.0, "LATITUDE": 51.2175283, "LONGITUDE": -0.7939953 }, "geometry": { "type": "Point", "coordinates": [ 484325.0, 147172.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39357482, "UPRN": 200002885668, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819471, "UPRN": 200001290160, "X_COORDINATE": 484412.0, "Y_COORDINATE": 147135.0, "LATITUDE": 51.2171829, "LONGITUDE": -0.7927586 }, "geometry": { "type": "Point", "coordinates": [ 484412.0, 147135.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38923177, "UPRN": 200001495179, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.217857, "LONGITUDE": -0.7927267 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819477, "UPRN": 200001290166, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.217857, "LONGITUDE": -0.7927267 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819478, "UPRN": 200001290167, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.217857, "LONGITUDE": -0.7927267 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818168, "UPRN": 200001287663, "X_COORDINATE": 484417.0, "Y_COORDINATE": 147105.0, "LATITUDE": 51.2169124, "LONGITUDE": -0.7926941 }, "geometry": { "type": "Point", "coordinates": [ 484417.0, 147105.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819470, "UPRN": 200001290159, "X_COORDINATE": 484453.0, "Y_COORDINATE": 147188.0, "LATITUDE": 51.2176533, "LONGITUDE": -0.7921592 }, "geometry": { "type": "Point", "coordinates": [ 484453.0, 147188.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818518, "UPRN": 200001288434, "X_COORDINATE": 484468.0, "Y_COORDINATE": 147109.0, "LATITUDE": 51.2169408, "LONGITUDE": -0.7919631 }, "geometry": { "type": "Point", "coordinates": [ 484468.0, 147109.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819474, "UPRN": 200001290163, "X_COORDINATE": 484471.0, "Y_COORDINATE": 147124.0, "LATITUDE": 51.2170752, "LONGITUDE": -0.7919166 }, "geometry": { "type": "Point", "coordinates": [ 484471.0, 147124.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819617, "UPRN": 200001290388, "X_COORDINATE": 484476.0, "Y_COORDINATE": 147153.0, "LATITUDE": 51.2173352, "LONGITUDE": -0.7918382 }, "geometry": { "type": "Point", "coordinates": [ 484476.0, 147153.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823030, "UPRN": 200001296687, "X_COORDINATE": 484479.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.2182608, "LONGITUDE": -0.7917711 }, "geometry": { "type": "Point", "coordinates": [ 484479.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819619, "UPRN": 200001290390, "X_COORDINATE": 484502.0, "Y_COORDINATE": 147163.0, "LATITUDE": 51.2174213, "LONGITUDE": -0.7914637 }, "geometry": { "type": "Point", "coordinates": [ 484502.0, 147163.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819618, "UPRN": 200001290389, "X_COORDINATE": 484509.0, "Y_COORDINATE": 147165.0, "LATITUDE": 51.2174382, "LONGITUDE": -0.791363 }, "geometry": { "type": "Point", "coordinates": [ 484509.0, 147165.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935596, "UPRN": 200001533075, "X_COORDINATE": 484520.0, "Y_COORDINATE": 147328.0, "LATITUDE": 51.218902, "LONGITUDE": -0.7911672 }, "geometry": { "type": "Point", "coordinates": [ 484520.0, 147328.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935629, "UPRN": 200001533149, "X_COORDINATE": 484526.0, "Y_COORDINATE": 147350.0, "LATITUDE": 51.2190989, "LONGITUDE": -0.7910762 }, "geometry": { "type": "Point", "coordinates": [ 484526.0, 147350.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818169, "UPRN": 200001287664, "X_COORDINATE": 484531.0, "Y_COORDINATE": 147138.0, "LATITUDE": 51.2171922, "LONGITUDE": -0.7910545 }, "geometry": { "type": "Point", "coordinates": [ 484531.0, 147138.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823348, "UPRN": 200001298160, "X_COORDINATE": 484543.0, "Y_COORDINATE": 147239.0, "LATITUDE": 51.2180985, "LONGITUDE": -0.7908589 }, "geometry": { "type": "Point", "coordinates": [ 484543.0, 147239.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819616, "UPRN": 200001290386, "X_COORDINATE": 484546.0, "Y_COORDINATE": 147153.0, "LATITUDE": 51.2173249, "LONGITUDE": -0.7908362 }, "geometry": { "type": "Point", "coordinates": [ 484546.0, 147153.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819496, "UPRN": 200001290200, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147213.0, "LATITUDE": 51.2178637, "LONGITUDE": -0.7907648 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147213.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819493, "UPRN": 200001290197, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147269.0, "LATITUDE": 51.2183671, "LONGITUDE": -0.7907517 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147269.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819494, "UPRN": 200001290198, "X_COORDINATE": 484551.0, "Y_COORDINATE": 147247.0, "LATITUDE": 51.2181692, "LONGITUDE": -0.7907425 }, "geometry": { "type": "Point", "coordinates": [ 484551.0, 147247.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820642, "UPRN": 200001291970, "X_COORDINATE": 484576.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2191005, "LONGITUDE": -0.7903602 }, "geometry": { "type": "Point", "coordinates": [ 484576.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823031, "UPRN": 200001296689, "X_COORDINATE": 484578.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189294, "LONGITUDE": -0.790336 }, "geometry": { "type": "Point", "coordinates": [ 484578.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819495, "UPRN": 200001290199, "X_COORDINATE": 484581.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.217904, "LONGITUDE": -0.7903199 }, "geometry": { "type": "Point", "coordinates": [ 484581.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820643, "UPRN": 200001291976, "X_COORDINATE": 484654.0, "Y_COORDINATE": 147347.0, "LATITUDE": 51.219053, "LONGITUDE": -0.7892445 }, "geometry": { "type": "Point", "coordinates": [ 484654.0, 147347.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819537, "UPRN": 200001290268, "X_COORDINATE": 484684.0, "Y_COORDINATE": 147296.0, "LATITUDE": 51.21859, "LONGITUDE": -0.7888271 }, "geometry": { "type": "Point", "coordinates": [ 484684.0, 147296.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936117, "UPRN": 200001534694, "X_COORDINATE": 484570.0, "Y_COORDINATE": 147250.0, "LATITUDE": 51.2181934, "LONGITUDE": -0.7904698 }, "geometry": { "type": "Point", "coordinates": [ 484570.0, 147250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936215, "UPRN": 200001535049, "X_COORDINATE": 484403.0, "Y_COORDINATE": 147236.0, "LATITUDE": 51.2180922, "LONGITUDE": -0.7928637 }, "geometry": { "type": "Point", "coordinates": [ 484403.0, 147236.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936218, "UPRN": 200001535067, "X_COORDINATE": 484509.0, "Y_COORDINATE": 147195.0, "LATITUDE": 51.2177079, "LONGITUDE": -0.791356 }, "geometry": { "type": "Point", "coordinates": [ 484509.0, 147195.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936594, "UPRN": 200001536332, "X_COORDINATE": 484580.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.2183177, "LONGITUDE": -0.7903234 }, "geometry": { "type": "Point", "coordinates": [ 484580.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936821, "UPRN": 200001537183, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147200.0, "LATITUDE": 51.2177468, "LONGITUDE": -0.7907679 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147200.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936840, "UPRN": 200001537243, "X_COORDINATE": 484519.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183447, "LONGITUDE": -0.7911961 }, "geometry": { "type": "Point", "coordinates": [ 484519.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936947, "UPRN": 200001537626, "X_COORDINATE": 484610.0, "Y_COORDINATE": 147227.0, "LATITUDE": 51.2179807, "LONGITUDE": -0.7899026 }, "geometry": { "type": "Point", "coordinates": [ 484610.0, 147227.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937240, "UPRN": 200001538525, "X_COORDINATE": 484597.0, "Y_COORDINATE": 147223.0, "LATITUDE": 51.2179466, "LONGITUDE": -0.7900897 }, "geometry": { "type": "Point", "coordinates": [ 484597.0, 147223.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937327, "UPRN": 200001538817, "X_COORDINATE": 484640.0, "Y_COORDINATE": 147172.0, "LATITUDE": 51.2174818, "LONGITUDE": -0.7894861 }, "geometry": { "type": "Point", "coordinates": [ 484640.0, 147172.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820637, "UPRN": 200001291948, "X_COORDINATE": 484716.0, "Y_COORDINATE": 147421.0, "LATITUDE": 51.219709, "LONGITUDE": -0.7883395 }, "geometry": { "type": "Point", "coordinates": [ 484716.0, 147421.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820592, "UPRN": 200001291871, "X_COORDINATE": 484820.0, "Y_COORDINATE": 147844.0, "LATITUDE": 51.2234964, "LONGITUDE": -0.7867508 }, "geometry": { "type": "Point", "coordinates": [ 484820.0, 147844.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819640, "UPRN": 200001290423, "X_COORDINATE": 484656.0, "Y_COORDINATE": 147454.0, "LATITUDE": 51.2200146, "LONGITUDE": -0.7891907 }, "geometry": { "type": "Point", "coordinates": [ 484656.0, 147454.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38603062, "UPRN": 200000848036, "X_COORDINATE": 484901.0, "Y_COORDINATE": 147483.0, "LATITUDE": 51.220239, "LONGITUDE": -0.7856765 }, "geometry": { "type": "Point", "coordinates": [ 484901.0, 147483.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935545, "UPRN": 200001532936, "X_COORDINATE": 484641.0, "Y_COORDINATE": 147490.0, "LATITUDE": 51.2203405, "LONGITUDE": -0.7893969 }, "geometry": { "type": "Point", "coordinates": [ 484641.0, 147490.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819639, "UPRN": 200001290422, "X_COORDINATE": 484682.0, "Y_COORDINATE": 147386.0, "LATITUDE": 51.2193994, "LONGITUDE": -0.7888345 }, "geometry": { "type": "Point", "coordinates": [ 484682.0, 147386.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936334, "UPRN": 200001535443, "X_COORDINATE": 484795.0, "Y_COORDINATE": 147810.0, "LATITUDE": 51.2231945, "LONGITUDE": -0.7871168 }, "geometry": { "type": "Point", "coordinates": [ 484795.0, 147810.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820645, "UPRN": 200001291981, "X_COORDINATE": 484771.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190716, "LONGITUDE": -0.7875687 }, "geometry": { "type": "Point", "coordinates": [ 484771.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820646, "UPRN": 200001291983, "X_COORDINATE": 484799.0, "Y_COORDINATE": 147464.0, "LATITUDE": 51.2200833, "LONGITUDE": -0.7871412 }, "geometry": { "type": "Point", "coordinates": [ 484799.0, 147464.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819531, "UPRN": 200001290259, "X_COORDINATE": 484801.0, "Y_COORDINATE": 147303.0, "LATITUDE": 51.2186356, "LONGITUDE": -0.7871506 }, "geometry": { "type": "Point", "coordinates": [ 484801.0, 147303.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819528, "UPRN": 200001290254, "X_COORDINATE": 484820.0, "Y_COORDINATE": 147359.0, "LATITUDE": 51.2191362, "LONGITUDE": -0.7868654 }, "geometry": { "type": "Point", "coordinates": [ 484820.0, 147359.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819549, "UPRN": 200001290284, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819548, "UPRN": 200001290283, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819547, "UPRN": 200001290282, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819546, "UPRN": 200001290281, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819545, "UPRN": 200001290280, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819527, "UPRN": 200001290253, "X_COORDINATE": 484837.0, "Y_COORDINATE": 147358.0, "LATITUDE": 51.2191247, "LONGITUDE": -0.7866222 }, "geometry": { "type": "Point", "coordinates": [ 484837.0, 147358.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819526, "UPRN": 200001290252, "X_COORDINATE": 484837.0, "Y_COORDINATE": 147348.0, "LATITUDE": 51.2190348, "LONGITUDE": -0.7866246 }, "geometry": { "type": "Point", "coordinates": [ 484837.0, 147348.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818721, "UPRN": 200001288895, "X_COORDINATE": 484846.0, "Y_COORDINATE": 147461.0, "LATITUDE": 51.2200494, "LONGITUDE": -0.7864691 }, "geometry": { "type": "Point", "coordinates": [ 484846.0, 147461.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935757, "UPRN": 200001533533, "X_COORDINATE": 484856.0, "Y_COORDINATE": 147215.0, "LATITUDE": 51.2178363, "LONGITUDE": -0.786384 }, "geometry": { "type": "Point", "coordinates": [ 484856.0, 147215.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823042, "UPRN": 200001296749, "X_COORDINATE": 484867.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2201182, "LONGITUDE": -0.7861666 }, "geometry": { "type": "Point", "coordinates": [ 484867.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936251, "UPRN": 200001535168, "X_COORDINATE": 484868.0, "Y_COORDINATE": 147550.0, "LATITUDE": 51.2208462, "LONGITUDE": -0.7861331 }, "geometry": { "type": "Point", "coordinates": [ 484868.0, 147550.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936187, "UPRN": 200001534953, "X_COORDINATE": 484874.0, "Y_COORDINATE": 147254.0, "LATITUDE": 51.2181842, "LONGITUDE": -0.7861171 }, "geometry": { "type": "Point", "coordinates": [ 484874.0, 147254.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819542, "UPRN": 200001290275, "X_COORDINATE": 484895.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.217435, "LONGITUDE": -0.7858361 }, "geometry": { "type": "Point", "coordinates": [ 484895.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819539, "UPRN": 200001290272, "X_COORDINATE": 484895.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.217435, "LONGITUDE": -0.7858361 }, "geometry": { "type": "Point", "coordinates": [ 484895.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819538, "UPRN": 200001290270, "X_COORDINATE": 484895.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.217435, "LONGITUDE": -0.7858361 }, "geometry": { "type": "Point", "coordinates": [ 484895.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819543, "UPRN": 200001290276, "X_COORDINATE": 484921.0, "Y_COORDINATE": 147174.0, "LATITUDE": 51.2174581, "LONGITUDE": -0.7854632 }, "geometry": { "type": "Point", "coordinates": [ 484921.0, 147174.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935993, "UPRN": 200001534211, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819550, "UPRN": 200001290287, "X_COORDINATE": 484983.0, "Y_COORDINATE": 147397.0, "LATITUDE": 51.2194536, "LONGITUDE": -0.784523 }, "geometry": { "type": "Point", "coordinates": [ 484983.0, 147397.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818522, "UPRN": 200001288443, "X_COORDINATE": 485002.0, "Y_COORDINATE": 147215.0, "LATITUDE": 51.2178146, "LONGITUDE": -0.784294 }, "geometry": { "type": "Point", "coordinates": [ 485002.0, 147215.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936605, "UPRN": 200001536371, "X_COORDINATE": 484960.0, "Y_COORDINATE": 147197.0, "LATITUDE": 51.217659, "LONGITUDE": -0.7848995 }, "geometry": { "type": "Point", "coordinates": [ 484960.0, 147197.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936700, "UPRN": 200001536761, "X_COORDINATE": 484847.0, "Y_COORDINATE": 147235.0, "LATITUDE": 51.2180174, "LONGITUDE": -0.7865081 }, "geometry": { "type": "Point", "coordinates": [ 484847.0, 147235.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936894, "UPRN": 200001537420, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937114, "UPRN": 200001538182, "X_COORDINATE": 484868.0, "Y_COORDINATE": 147194.0, "LATITUDE": 51.2176457, "LONGITUDE": -0.7862172 }, "geometry": { "type": "Point", "coordinates": [ 484868.0, 147194.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937120, "UPRN": 200001538200, "X_COORDINATE": 484865.0, "Y_COORDINATE": 147284.0, "LATITUDE": 51.2184553, "LONGITUDE": -0.7862389 }, "geometry": { "type": "Point", "coordinates": [ 484865.0, 147284.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937308, "UPRN": 200001538709, "X_COORDINATE": 484940.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2174732, "LONGITUDE": -0.7851908 }, "geometry": { "type": "Point", "coordinates": [ 484940.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937309, "UPRN": 200001538715, "X_COORDINATE": 484843.0, "Y_COORDINATE": 147458.0, "LATITUDE": 51.2200228, "LONGITUDE": -0.7865127 }, "geometry": { "type": "Point", "coordinates": [ 484843.0, 147458.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937182, "UPRN": 200001538381, "X_COORDINATE": 485068.0, "Y_COORDINATE": 147640.0, "LATITUDE": 51.2216256, "LONGITUDE": -0.7832486 }, "geometry": { "type": "Point", "coordinates": [ 485068.0, 147640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936668, "UPRN": 200001536651, "X_COORDINATE": 484940.0, "Y_COORDINATE": 147660.0, "LATITUDE": 51.2218244, "LONGITUDE": -0.7850764 }, "geometry": { "type": "Point", "coordinates": [ 484940.0, 147660.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936420, "UPRN": 200001535710, "X_COORDINATE": 485050.0, "Y_COORDINATE": 147650.0, "LATITUDE": 51.2217182, "LONGITUDE": -0.783504 }, "geometry": { "type": "Point", "coordinates": [ 485050.0, 147650.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815611, "UPRN": 200001282437, "X_COORDINATE": 485068.0, "Y_COORDINATE": 147598.0, "LATITUDE": 51.221248, "LONGITUDE": -0.7832586 }, "geometry": { "type": "Point", "coordinates": [ 485068.0, 147598.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816153, "UPRN": 200001283292, "X_COORDINATE": 485070.0, "Y_COORDINATE": 147690.0, "LATITUDE": 51.2220748, "LONGITUDE": -0.7832082 }, "geometry": { "type": "Point", "coordinates": [ 485070.0, 147690.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815612, "UPRN": 200001282438, "X_COORDINATE": 485072.0, "Y_COORDINATE": 147601.0, "LATITUDE": 51.2212744, "LONGITUDE": -0.7832006 }, "geometry": { "type": "Point", "coordinates": [ 485072.0, 147601.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816154, "UPRN": 200001283293, "X_COORDINATE": 485073.0, "Y_COORDINATE": 147683.0, "LATITUDE": 51.2220114, "LONGITUDE": -0.7831669 }, "geometry": { "type": "Point", "coordinates": [ 485073.0, 147683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816155, "UPRN": 200001283294, "X_COORDINATE": 485077.0, "Y_COORDINATE": 147678.0, "LATITUDE": 51.2219659, "LONGITUDE": -0.7831108 }, "geometry": { "type": "Point", "coordinates": [ 485077.0, 147678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816169, "UPRN": 200001283308, "X_COORDINATE": 485077.0, "Y_COORDINATE": 147607.0, "LATITUDE": 51.2213276, "LONGITUDE": -0.7831276 }, "geometry": { "type": "Point", "coordinates": [ 485077.0, 147607.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816156, "UPRN": 200001283295, "X_COORDINATE": 485081.0, "Y_COORDINATE": 147672.0, "LATITUDE": 51.2219113, "LONGITUDE": -0.783055 }, "geometry": { "type": "Point", "coordinates": [ 485081.0, 147672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816168, "UPRN": 200001283307, "X_COORDINATE": 485081.0, "Y_COORDINATE": 147610.0, "LATITUDE": 51.2213539, "LONGITUDE": -0.7830696 }, "geometry": { "type": "Point", "coordinates": [ 485081.0, 147610.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816157, "UPRN": 200001283296, "X_COORDINATE": 485085.0, "Y_COORDINATE": 147666.0, "LATITUDE": 51.2218568, "LONGITUDE": -0.7829991 }, "geometry": { "type": "Point", "coordinates": [ 485085.0, 147666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816158, "UPRN": 200001283297, "X_COORDINATE": 485088.0, "Y_COORDINATE": 147658.0, "LATITUDE": 51.2217844, "LONGITUDE": -0.7829581 }, "geometry": { "type": "Point", "coordinates": [ 485088.0, 147658.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816167, "UPRN": 200001283306, "X_COORDINATE": 485088.0, "Y_COORDINATE": 147613.0, "LATITUDE": 51.2213799, "LONGITUDE": -0.7829687 }, "geometry": { "type": "Point", "coordinates": [ 485088.0, 147613.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816159, "UPRN": 200001283298, "X_COORDINATE": 485091.0, "Y_COORDINATE": 147649.0, "LATITUDE": 51.2217031, "LONGITUDE": -0.7829172 }, "geometry": { "type": "Point", "coordinates": [ 485091.0, 147649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816160, "UPRN": 200001283299, "X_COORDINATE": 485097.0, "Y_COORDINATE": 147644.0, "LATITUDE": 51.2216572, "LONGITUDE": -0.7828325 }, "geometry": { "type": "Point", "coordinates": [ 485097.0, 147644.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815613, "UPRN": 200001282439, "X_COORDINATE": 485100.0, "Y_COORDINATE": 147592.0, "LATITUDE": 51.2211893, "LONGITUDE": -0.7828019 }, "geometry": { "type": "Point", "coordinates": [ 485100.0, 147592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816161, "UPRN": 200001283300, "X_COORDINATE": 485102.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.2215846, "LONGITUDE": -0.7827628 }, "geometry": { "type": "Point", "coordinates": [ 485102.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815614, "UPRN": 200001282440, "X_COORDINATE": 485103.0, "Y_COORDINATE": 147588.0, "LATITUDE": 51.2211529, "LONGITUDE": -0.7827599 }, "geometry": { "type": "Point", "coordinates": [ 485103.0, 147588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816162, "UPRN": 200001283301, "X_COORDINATE": 485106.0, "Y_COORDINATE": 147628.0, "LATITUDE": 51.221512, "LONGITUDE": -0.7827075 }, "geometry": { "type": "Point", "coordinates": [ 485106.0, 147628.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815615, "UPRN": 200001282441, "X_COORDINATE": 485107.0, "Y_COORDINATE": 147581.0, "LATITUDE": 51.2210894, "LONGITUDE": -0.7827043 }, "geometry": { "type": "Point", "coordinates": [ 485107.0, 147581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816163, "UPRN": 200001283302, "X_COORDINATE": 485109.0, "Y_COORDINATE": 147621.0, "LATITUDE": 51.2214487, "LONGITUDE": -0.7826662 }, "geometry": { "type": "Point", "coordinates": [ 485109.0, 147621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815616, "UPRN": 200001282442, "X_COORDINATE": 485109.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210531, "LONGITUDE": -0.7826766 }, "geometry": { "type": "Point", "coordinates": [ 485109.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816164, "UPRN": 200001283303, "X_COORDINATE": 485115.0, "Y_COORDINATE": 147613.0, "LATITUDE": 51.2213758, "LONGITUDE": -0.7825822 }, "geometry": { "type": "Point", "coordinates": [ 485115.0, 147613.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816166, "UPRN": 200001283305, "X_COORDINATE": 485120.0, "Y_COORDINATE": 147594.0, "LATITUDE": 51.2212043, "LONGITUDE": -0.7825151 }, "geometry": { "type": "Point", "coordinates": [ 485120.0, 147594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816165, "UPRN": 200001283304, "X_COORDINATE": 485129.0, "Y_COORDINATE": 147599.0, "LATITUDE": 51.2212479, "LONGITUDE": -0.7823851 }, "geometry": { "type": "Point", "coordinates": [ 485129.0, 147599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816170, "UPRN": 200001283309, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2214109, "LONGITUDE": -0.7833545 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815620, "UPRN": 200001282446, "X_COORDINATE": 485063.0, "Y_COORDINATE": 147595.0, "LATITUDE": 51.2212218, "LONGITUDE": -0.7833309 }, "geometry": { "type": "Point", "coordinates": [ 485063.0, 147595.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816147, "UPRN": 200001283286, "X_COORDINATE": 485051.0, "Y_COORDINATE": 147670.0, "LATITUDE": 51.2218978, "LONGITUDE": -0.7834849 }, "geometry": { "type": "Point", "coordinates": [ 485051.0, 147670.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816146, "UPRN": 200001283285, "X_COORDINATE": 485043.0, "Y_COORDINATE": 147665.0, "LATITUDE": 51.2218541, "LONGITUDE": -0.7836006 }, "geometry": { "type": "Point", "coordinates": [ 485043.0, 147665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816145, "UPRN": 200001283284, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147661.0, "LATITUDE": 51.2218193, "LONGITUDE": -0.7837161 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147661.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819551, "UPRN": 200001290288, "X_COORDINATE": 484929.0, "Y_COORDINATE": 147754.0, "LATITUDE": 51.2226711, "LONGITUDE": -0.7852116 }, "geometry": { "type": "Point", "coordinates": [ 484929.0, 147754.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820594, "UPRN": 200001291876, "X_COORDINATE": 484973.0, "Y_COORDINATE": 147779.0, "LATITUDE": 51.2228893, "LONGITUDE": -0.7845758 }, "geometry": { "type": "Point", "coordinates": [ 484973.0, 147779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935510, "UPRN": 200001532835, "X_COORDINATE": 485037.0, "Y_COORDINATE": 147849.0, "LATITUDE": 51.2235091, "LONGITUDE": -0.783643 }, "geometry": { "type": "Point", "coordinates": [ 485037.0, 147849.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936337, "UPRN": 200001535457, "X_COORDINATE": 484970.0, "Y_COORDINATE": 147600.0, "LATITUDE": 51.2212806, "LONGITUDE": -0.7846611 }, "geometry": { "type": "Point", "coordinates": [ 484970.0, 147600.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816175, "UPRN": 200001283314, "X_COORDINATE": 485029.0, "Y_COORDINATE": 147654.0, "LATITUDE": 51.2217572, "LONGITUDE": -0.7838037 }, "geometry": { "type": "Point", "coordinates": [ 485029.0, 147654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816174, "UPRN": 200001283313, "X_COORDINATE": 485043.0, "Y_COORDINATE": 147631.0, "LATITUDE": 51.2215484, "LONGITUDE": -0.7836087 }, "geometry": { "type": "Point", "coordinates": [ 485043.0, 147631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816173, "UPRN": 200001283312, "X_COORDINATE": 485049.0, "Y_COORDINATE": 147635.0, "LATITUDE": 51.2215835, "LONGITUDE": -0.7835218 }, "geometry": { "type": "Point", "coordinates": [ 485049.0, 147635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816171, "UPRN": 200001283310, "X_COORDINATE": 485059.0, "Y_COORDINATE": 147621.0, "LATITUDE": 51.2214561, "LONGITUDE": -0.783382 }, "geometry": { "type": "Point", "coordinates": [ 485059.0, 147621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816172, "UPRN": 200001283311, "X_COORDINATE": 485059.0, "Y_COORDINATE": 147640.0, "LATITUDE": 51.2216269, "LONGITUDE": -0.7833775 }, "geometry": { "type": "Point", "coordinates": [ 485059.0, 147640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816152, "UPRN": 200001283291, "X_COORDINATE": 485065.0, "Y_COORDINATE": 147698.0, "LATITUDE": 51.2221475, "LONGITUDE": -0.7832779 }, "geometry": { "type": "Point", "coordinates": [ 485065.0, 147698.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935840, "UPRN": 200001533695, "X_COORDINATE": 485079.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2180639, "LONGITUDE": -0.7831849 }, "geometry": { "type": "Point", "coordinates": [ 485079.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815617, "UPRN": 200001282443, "X_COORDINATE": 485087.0, "Y_COORDINATE": 147572.0, "LATITUDE": 51.2210114, "LONGITUDE": -0.7829927 }, "geometry": { "type": "Point", "coordinates": [ 485087.0, 147572.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935821, "UPRN": 200001533660, "X_COORDINATE": 485121.0, "Y_COORDINATE": 147357.0, "LATITUDE": 51.2190735, "LONGITUDE": -0.7825569 }, "geometry": { "type": "Point", "coordinates": [ 485121.0, 147357.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819544, "UPRN": 200001290279, "X_COORDINATE": 485191.0, "Y_COORDINATE": 147265.0, "LATITUDE": 51.218236, "LONGITUDE": -0.7815767 }, "geometry": { "type": "Point", "coordinates": [ 485191.0, 147265.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819535, "UPRN": 200001290264, "X_COORDINATE": 485198.0, "Y_COORDINATE": 147369.0, "LATITUDE": 51.2191699, "LONGITUDE": -0.7814518 }, "geometry": { "type": "Point", "coordinates": [ 485198.0, 147369.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819536, "UPRN": 200001290265, "X_COORDINATE": 485224.0, "Y_COORDINATE": 147372.0, "LATITUDE": 51.219193, "LONGITUDE": -0.7810789 }, "geometry": { "type": "Point", "coordinates": [ 485224.0, 147372.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935595, "UPRN": 200001533071, "X_COORDINATE": 485225.0, "Y_COORDINATE": 147279.0, "LATITUDE": 51.2183568, "LONGITUDE": -0.7810867 }, "geometry": { "type": "Point", "coordinates": [ 485225.0, 147279.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935670, "UPRN": 200001533280, "X_COORDINATE": 485250.0, "Y_COORDINATE": 147350.0, "LATITUDE": 51.2189913, "LONGITUDE": -0.7807119 }, "geometry": { "type": "Point", "coordinates": [ 485250.0, 147350.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819529, "UPRN": 200001290255, "X_COORDINATE": 485264.0, "Y_COORDINATE": 147439.0, "LATITUDE": 51.2197894, "LONGITUDE": -0.7804904 }, "geometry": { "type": "Point", "coordinates": [ 485264.0, 147439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819534, "UPRN": 200001290263, "X_COORDINATE": 485285.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.2185096, "LONGITUDE": -0.7802235 }, "geometry": { "type": "Point", "coordinates": [ 485285.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935797, "UPRN": 200001533596, "X_COORDINATE": 485306.0, "Y_COORDINATE": 147572.0, "LATITUDE": 51.2209788, "LONGITUDE": -0.7798576 }, "geometry": { "type": "Point", "coordinates": [ 485306.0, 147572.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815618, "UPRN": 200001282444, "X_COORDINATE": 485082.0, "Y_COORDINATE": 147569.0, "LATITUDE": 51.2209852, "LONGITUDE": -0.783065 }, "geometry": { "type": "Point", "coordinates": [ 485082.0, 147569.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815619, "UPRN": 200001282445, "X_COORDINATE": 485078.0, "Y_COORDINATE": 147567.0, "LATITUDE": 51.2209678, "LONGITUDE": -0.7831228 }, "geometry": { "type": "Point", "coordinates": [ 485078.0, 147567.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936682, "UPRN": 200001536705, "X_COORDINATE": 485252.0, "Y_COORDINATE": 147491.0, "LATITUDE": 51.2202586, "LONGITUDE": -0.7806499 }, "geometry": { "type": "Point", "coordinates": [ 485252.0, 147491.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936757, "UPRN": 200001536953, "X_COORDINATE": 485050.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2185716, "LONGITUDE": -0.7835868 }, "geometry": { "type": "Point", "coordinates": [ 485050.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936764, "UPRN": 200001536986, "X_COORDINATE": 485116.0, "Y_COORDINATE": 147343.0, "LATITUDE": 51.2189484, "LONGITUDE": -0.7826318 }, "geometry": { "type": "Point", "coordinates": [ 485116.0, 147343.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936995, "UPRN": 200001537771, "X_COORDINATE": 485020.0, "Y_COORDINATE": 147313.0, "LATITUDE": 51.218693, "LONGITUDE": -0.7840132 }, "geometry": { "type": "Point", "coordinates": [ 485020.0, 147313.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816151, "UPRN": 200001283290, "X_COORDINATE": 485060.0, "Y_COORDINATE": 147706.0, "LATITUDE": 51.2222201, "LONGITUDE": -0.7833475 }, "geometry": { "type": "Point", "coordinates": [ 485060.0, 147706.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816150, "UPRN": 200001283289, "X_COORDINATE": 485057.0, "Y_COORDINATE": 147729.0, "LATITUDE": 51.2224273, "LONGITUDE": -0.783385 }, "geometry": { "type": "Point", "coordinates": [ 485057.0, 147729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816149, "UPRN": 200001283288, "X_COORDINATE": 485048.0, "Y_COORDINATE": 147724.0, "LATITUDE": 51.2223837, "LONGITUDE": -0.7835151 }, "geometry": { "type": "Point", "coordinates": [ 485048.0, 147724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816148, "UPRN": 200001283287, "X_COORDINATE": 485039.0, "Y_COORDINATE": 147721.0, "LATITUDE": 51.2223581, "LONGITUDE": -0.7836446 }, "geometry": { "type": "Point", "coordinates": [ 485039.0, 147721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820433, "UPRN": 200001291666, "X_COORDINATE": 483479.0, "Y_COORDINATE": 146833.0, "LATITUDE": 51.2146049, "LONGITUDE": -0.8061844 }, "geometry": { "type": "Point", "coordinates": [ 483479.0, 146833.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820434, "UPRN": 200001291667, "X_COORDINATE": 483479.0, "Y_COORDINATE": 146826.0, "LATITUDE": 51.2145419, "LONGITUDE": -0.806186 }, "geometry": { "type": "Point", "coordinates": [ 483479.0, 146826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820435, "UPRN": 200001291668, "X_COORDINATE": 483486.0, "Y_COORDINATE": 146811.0, "LATITUDE": 51.2144061, "LONGITUDE": -0.8060893 }, "geometry": { "type": "Point", "coordinates": [ 483486.0, 146811.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820436, "UPRN": 200001291669, "X_COORDINATE": 483488.0, "Y_COORDINATE": 146807.0, "LATITUDE": 51.2143698, "LONGITUDE": -0.8060616 }, "geometry": { "type": "Point", "coordinates": [ 483488.0, 146807.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820437, "UPRN": 200001291670, "X_COORDINATE": 483494.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.214297, "LONGITUDE": -0.8059776 }, "geometry": { "type": "Point", "coordinates": [ 483494.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820438, "UPRN": 200001291671, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2142608, "LONGITUDE": -0.8059499 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820439, "UPRN": 200001291672, "X_COORDINATE": 483505.0, "Y_COORDINATE": 146782.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.8058241 }, "geometry": { "type": "Point", "coordinates": [ 483505.0, 146782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820432, "UPRN": 200001291665, "X_COORDINATE": 483508.0, "Y_COORDINATE": 146847.0, "LATITUDE": 51.2147265, "LONGITUDE": -0.805766 }, "geometry": { "type": "Point", "coordinates": [ 483508.0, 146847.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820431, "UPRN": 200001291664, "X_COORDINATE": 483516.0, "Y_COORDINATE": 146851.0, "LATITUDE": 51.2147613, "LONGITUDE": -0.8056506 }, "geometry": { "type": "Point", "coordinates": [ 483516.0, 146851.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820403, "UPRN": 200001291631, "X_COORDINATE": 483566.0, "Y_COORDINATE": 146849.0, "LATITUDE": 51.214736, "LONGITUDE": -0.8049354 }, "geometry": { "type": "Point", "coordinates": [ 483566.0, 146849.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819697, "UPRN": 200001290504, "X_COORDINATE": 483610.69, "Y_COORDINATE": 146689.82, "LATITUDE": 51.2132984, "LONGITUDE": -0.8043327 }, "geometry": { "type": "Point", "coordinates": [ 483610.69, 146689.82 ] } }, -{ "type": "Feature", "properties": { "FID": 38818736, "UPRN": 200001288922, "X_COORDINATE": 483633.0, "Y_COORDINATE": 146872.0, "LATITUDE": 51.214933, "LONGITUDE": -0.803971 }, "geometry": { "type": "Point", "coordinates": [ 483633.0, 146872.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820424, "UPRN": 200001291655, "X_COORDINATE": 483643.0, "Y_COORDINATE": 146823.0, "LATITUDE": 51.214491, "LONGITUDE": -0.8038392 }, "geometry": { "type": "Point", "coordinates": [ 483643.0, 146823.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820423, "UPRN": 200001291654, "X_COORDINATE": 483645.0, "Y_COORDINATE": 146818.0, "LATITUDE": 51.2144457, "LONGITUDE": -0.8038118 }, "geometry": { "type": "Point", "coordinates": [ 483645.0, 146818.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820421, "UPRN": 200001291652, "X_COORDINATE": 483647.0, "Y_COORDINATE": 146813.0, "LATITUDE": 51.2144005, "LONGITUDE": -0.8037843 }, "geometry": { "type": "Point", "coordinates": [ 483647.0, 146813.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820422, "UPRN": 200001291653, "X_COORDINATE": 483647.0, "Y_COORDINATE": 146813.0, "LATITUDE": 51.2144005, "LONGITUDE": -0.8037843 }, "geometry": { "type": "Point", "coordinates": [ 483647.0, 146813.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820425, "UPRN": 200001291656, "X_COORDINATE": 483650.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.2146428, "LONGITUDE": -0.8037351 }, "geometry": { "type": "Point", "coordinates": [ 483650.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820426, "UPRN": 200001291657, "X_COORDINATE": 483652.0, "Y_COORDINATE": 146835.0, "LATITUDE": 51.2145976, "LONGITUDE": -0.8037076 }, "geometry": { "type": "Point", "coordinates": [ 483652.0, 146835.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820420, "UPRN": 200001291651, "X_COORDINATE": 483655.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143903, "LONGITUDE": -0.80367 }, "geometry": { "type": "Point", "coordinates": [ 483655.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820418, "UPRN": 200001291649, "X_COORDINATE": 483660.0, "Y_COORDINATE": 146818.0, "LATITUDE": 51.2144436, "LONGITUDE": -0.8035971 }, "geometry": { "type": "Point", "coordinates": [ 483660.0, 146818.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820419, "UPRN": 200001291650, "X_COORDINATE": 483660.0, "Y_COORDINATE": 146818.0, "LATITUDE": 51.2144436, "LONGITUDE": -0.8035971 }, "geometry": { "type": "Point", "coordinates": [ 483660.0, 146818.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820417, "UPRN": 200001291648, "X_COORDINATE": 483662.0, "Y_COORDINATE": 146829.0, "LATITUDE": 51.2145422, "LONGITUDE": -0.8035659 }, "geometry": { "type": "Point", "coordinates": [ 483662.0, 146829.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820415, "UPRN": 200001291646, "X_COORDINATE": 483667.0, "Y_COORDINATE": 146822.0, "LATITUDE": 51.2144785, "LONGITUDE": -0.8034959 }, "geometry": { "type": "Point", "coordinates": [ 483667.0, 146822.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820416, "UPRN": 200001291647, "X_COORDINATE": 483667.0, "Y_COORDINATE": 146822.0, "LATITUDE": 51.2144785, "LONGITUDE": -0.8034959 }, "geometry": { "type": "Point", "coordinates": [ 483667.0, 146822.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820440, "UPRN": 200001291673, "X_COORDINATE": 483511.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2141057, "LONGITUDE": -0.8057391 }, "geometry": { "type": "Point", "coordinates": [ 483511.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820441, "UPRN": 200001291674, "X_COORDINATE": 483539.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2142545, "LONGITUDE": -0.8053344 }, "geometry": { "type": "Point", "coordinates": [ 483539.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820442, "UPRN": 200001291675, "X_COORDINATE": 483546.0, "Y_COORDINATE": 146797.0, "LATITUDE": 51.2142714, "LONGITUDE": -0.8052337 }, "geometry": { "type": "Point", "coordinates": [ 483546.0, 146797.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823033, "UPRN": 200001296729, "X_COORDINATE": 483589.0, "Y_COORDINATE": 146728.0, "LATITUDE": 51.2136448, "LONGITUDE": -0.8046343 }, "geometry": { "type": "Point", "coordinates": [ 483589.0, 146728.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823034, "UPRN": 200001296730, "X_COORDINATE": 483564.0, "Y_COORDINATE": 146760.0, "LATITUDE": 51.2139362, "LONGITUDE": -0.8049847 }, "geometry": { "type": "Point", "coordinates": [ 483564.0, 146760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823368, "UPRN": 200001298212, "X_COORDINATE": 483626.0, "Y_COORDINATE": 146741.0, "LATITUDE": 51.2137563, "LONGITUDE": -0.8041017 }, "geometry": { "type": "Point", "coordinates": [ 483626.0, 146741.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823373, "UPRN": 200001298223, "X_COORDINATE": 483564.0, "Y_COORDINATE": 146760.0, "LATITUDE": 51.2139362, "LONGITUDE": -0.8049847 }, "geometry": { "type": "Point", "coordinates": [ 483564.0, 146760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823605, "UPRN": 200001298962, "X_COORDINATE": 483667.0, "Y_COORDINATE": 146822.0, "LATITUDE": 51.2144785, "LONGITUDE": -0.8034959 }, "geometry": { "type": "Point", "coordinates": [ 483667.0, 146822.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823649, "UPRN": 200001299073, "X_COORDINATE": 483622.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.213604, "LONGITUDE": -0.8041629 }, "geometry": { "type": "Point", "coordinates": [ 483622.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936380, "UPRN": 200001535575, "X_COORDINATE": 483589.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2134201, "LONGITUDE": -0.8046401 }, "geometry": { "type": "Point", "coordinates": [ 483589.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936445, "UPRN": 200001535794, "X_COORDINATE": 483595.0, "Y_COORDINATE": 146708.0, "LATITUDE": 51.2134641, "LONGITUDE": -0.8045531 }, "geometry": { "type": "Point", "coordinates": [ 483595.0, 146708.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819662, "UPRN": 200001290461, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819663, "UPRN": 200001290462, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819664, "UPRN": 200001290463, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819665, "UPRN": 200001290464, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819666, "UPRN": 200001290465, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819667, "UPRN": 200001290466, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819668, "UPRN": 200001290467, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819676, "UPRN": 200001290478, "X_COORDINATE": 484102.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2136505, "LONGITUDE": -0.7972893 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819660, "UPRN": 200001290458, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146720.0, "LATITUDE": 51.2134953, "LONGITUDE": -0.7970643 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146720.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819661, "UPRN": 200001290459, "X_COORDINATE": 484148.0, "Y_COORDINATE": 146745.0, "LATITUDE": 51.2137156, "LONGITUDE": -0.796629 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 146745.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819627, "UPRN": 200001290400, "X_COORDINATE": 484150.0, "Y_COORDINATE": 146846.0, "LATITUDE": 51.2146233, "LONGITUDE": -0.7965767 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 146846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819629, "UPRN": 200001290405, "X_COORDINATE": 484150.0, "Y_COORDINATE": 146846.0, "LATITUDE": 51.2146233, "LONGITUDE": -0.7965767 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 146846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819631, "UPRN": 200001290408, "X_COORDINATE": 484187.0, "Y_COORDINATE": 146851.0, "LATITUDE": 51.2146628, "LONGITUDE": -0.7960459 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 146851.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819633, "UPRN": 200001290411, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819634, "UPRN": 200001290412, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935442, "UPRN": 200001532636, "X_COORDINATE": 484113.0, "Y_COORDINATE": 146718.0, "LATITUDE": 51.213478, "LONGITUDE": -0.7971363 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 146718.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935543, "UPRN": 200001532928, "X_COORDINATE": 484155.0, "Y_COORDINATE": 146819.0, "LATITUDE": 51.2143799, "LONGITUDE": -0.7965115 }, "geometry": { "type": "Point", "coordinates": [ 484155.0, 146819.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935732, "UPRN": 200001533461, "X_COORDINATE": 484198.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151557, "LONGITUDE": -0.7958756 }, "geometry": { "type": "Point", "coordinates": [ 484198.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935759, "UPRN": 200001533540, "X_COORDINATE": 484139.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.213645, "LONGITUDE": -0.7967597 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936240, "UPRN": 200001535138, "X_COORDINATE": 484119.0, "Y_COORDINATE": 146831.0, "LATITUDE": 51.2144931, "LONGITUDE": -0.797024 }, "geometry": { "type": "Point", "coordinates": [ 484119.0, 146831.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936474, "UPRN": 200001535918, "X_COORDINATE": 484182.0, "Y_COORDINATE": 146726.0, "LATITUDE": 51.2135398, "LONGITUDE": -0.7961468 }, "geometry": { "type": "Point", "coordinates": [ 484182.0, 146726.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936745, "UPRN": 200001536918, "X_COORDINATE": 484197.0, "Y_COORDINATE": 146791.0, "LATITUDE": 51.214122, "LONGITUDE": -0.7959169 }, "geometry": { "type": "Point", "coordinates": [ 484197.0, 146791.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937088, "UPRN": 200001538084, "X_COORDINATE": 484206.0, "Y_COORDINATE": 146867.0, "LATITUDE": 51.2148039, "LONGITUDE": -0.7957702 }, "geometry": { "type": "Point", "coordinates": [ 484206.0, 146867.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937381, "UPRN": 200001539153, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819696, "UPRN": 200001290503, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819695, "UPRN": 200001290502, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819694, "UPRN": 200001290501, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819693, "UPRN": 200001290500, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818533, "UPRN": 200001288481, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819650, "UPRN": 200001290439, "X_COORDINATE": 483697.0, "Y_COORDINATE": 146918.0, "LATITUDE": 51.2153372, "LONGITUDE": -0.8030442 }, "geometry": { "type": "Point", "coordinates": [ 483697.0, 146918.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819566, "UPRN": 200001290314, "X_COORDINATE": 483723.0, "Y_COORDINATE": 146850.0, "LATITUDE": 51.214722, "LONGITUDE": -0.8026878 }, "geometry": { "type": "Point", "coordinates": [ 483723.0, 146850.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819701, "UPRN": 200001290512, "X_COORDINATE": 483726.0, "Y_COORDINATE": 146800.0, "LATITUDE": 51.2142721, "LONGITUDE": -0.8026565 }, "geometry": { "type": "Point", "coordinates": [ 483726.0, 146800.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819413, "UPRN": 200001290091, "X_COORDINATE": 483735.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2143157, "LONGITUDE": -0.8025266 }, "geometry": { "type": "Point", "coordinates": [ 483735.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819414, "UPRN": 200001290092, "X_COORDINATE": 483735.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2143157, "LONGITUDE": -0.8025266 }, "geometry": { "type": "Point", "coordinates": [ 483735.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819692, "UPRN": 200001290499, "X_COORDINATE": 483743.0, "Y_COORDINATE": 146743.0, "LATITUDE": 51.2137571, "LONGITUDE": -0.8024265 }, "geometry": { "type": "Point", "coordinates": [ 483743.0, 146743.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819703, "UPRN": 200001290514, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140708, "LONGITUDE": -0.8023181 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819702, "UPRN": 200001290513, "X_COORDINATE": 483753.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140703, "LONGITUDE": -0.8022752 }, "geometry": { "type": "Point", "coordinates": [ 483753.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819704, "UPRN": 200001290515, "X_COORDINATE": 483769.0, "Y_COORDINATE": 146788.0, "LATITUDE": 51.2141579, "LONGITUDE": -0.8020438 }, "geometry": { "type": "Point", "coordinates": [ 483769.0, 146788.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819564, "UPRN": 200001290311, "X_COORDINATE": 483786.0, "Y_COORDINATE": 146901.0, "LATITUDE": 51.2151713, "LONGITUDE": -0.8017742 }, "geometry": { "type": "Point", "coordinates": [ 483786.0, 146901.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819563, "UPRN": 200001290310, "X_COORDINATE": 483801.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2150252, "LONGITUDE": -0.8015632 }, "geometry": { "type": "Point", "coordinates": [ 483801.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820445, "UPRN": 200001291684, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2137064, "LONGITUDE": -0.8027428 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820446, "UPRN": 200001291685, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2137064, "LONGITUDE": -0.8027428 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820549, "UPRN": 200001291816, "X_COORDINATE": 483743.0, "Y_COORDINATE": 146775.0, "LATITUDE": 51.2140448, "LONGITUDE": -0.802419 }, "geometry": { "type": "Point", "coordinates": [ 483743.0, 146775.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820550, "UPRN": 200001291817, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146791.0, "LATITUDE": 51.2141834, "LONGITUDE": -0.8019 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146791.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936731, "UPRN": 200001536867, "X_COORDINATE": 483691.0, "Y_COORDINATE": 146818.0, "LATITUDE": 51.214439, "LONGITUDE": -0.8031533 }, "geometry": { "type": "Point", "coordinates": [ 483691.0, 146818.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936732, "UPRN": 200001536869, "X_COORDINATE": 483759.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2155079, "LONGITUDE": -0.802152 }, "geometry": { "type": "Point", "coordinates": [ 483759.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937007, "UPRN": 200001537811, "X_COORDINATE": 483802.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.2146475, "LONGITUDE": -0.8015587 }, "geometry": { "type": "Point", "coordinates": [ 483802.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937119, "UPRN": 200001538193, "X_COORDINATE": 483795.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.215125, "LONGITUDE": -0.8016465 }, "geometry": { "type": "Point", "coordinates": [ 483795.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937271, "UPRN": 200001538609, "X_COORDINATE": 483776.0, "Y_COORDINATE": 146692.0, "LATITUDE": 51.2132938, "LONGITUDE": -0.801966 }, "geometry": { "type": "Point", "coordinates": [ 483776.0, 146692.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937384, "UPRN": 200001539165, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146772.0, "LATITUDE": 51.2140168, "LONGITUDE": -0.8023195 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146772.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823020, "UPRN": 200001296647, "X_COORDINATE": 483830.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135286, "LONGITUDE": -0.8011868 }, "geometry": { "type": "Point", "coordinates": [ 483830.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823638, "UPRN": 200001299049, "X_COORDINATE": 483830.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135286, "LONGITUDE": -0.8011868 }, "geometry": { "type": "Point", "coordinates": [ 483830.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823643, "UPRN": 200001299065, "X_COORDINATE": 483830.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135286, "LONGITUDE": -0.8011868 }, "geometry": { "type": "Point", "coordinates": [ 483830.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819691, "UPRN": 200001290498, "X_COORDINATE": 483815.0, "Y_COORDINATE": 146723.0, "LATITUDE": 51.2135668, "LONGITUDE": -0.8014006 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 146723.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819690, "UPRN": 200001290497, "X_COORDINATE": 483815.0, "Y_COORDINATE": 146723.0, "LATITUDE": 51.2135668, "LONGITUDE": -0.8014006 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 146723.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819689, "UPRN": 200001290496, "X_COORDINATE": 483815.0, "Y_COORDINATE": 146723.0, "LATITUDE": 51.2135668, "LONGITUDE": -0.8014006 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 146723.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823021, "UPRN": 200001296648, "X_COORDINATE": 483829.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135827, "LONGITUDE": -0.8011997 }, "geometry": { "type": "Point", "coordinates": [ 483829.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819670, "UPRN": 200001290469, "X_COORDINATE": 483850.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136426, "LONGITUDE": -0.8008975 }, "geometry": { "type": "Point", "coordinates": [ 483850.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819669, "UPRN": 200001290468, "X_COORDINATE": 483913.0, "Y_COORDINATE": 146736.0, "LATITUDE": 51.2136693, "LONGITUDE": -0.7999948 }, "geometry": { "type": "Point", "coordinates": [ 483913.0, 146736.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819688, "UPRN": 200001290495, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146742.0, "LATITUDE": 51.2137388, "LONGITUDE": -0.8015106 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146742.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823647, "UPRN": 200001299071, "X_COORDINATE": 483812.0, "Y_COORDINATE": 146750.0, "LATITUDE": 51.21381, "LONGITUDE": -0.8014372 }, "geometry": { "type": "Point", "coordinates": [ 483812.0, 146750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823022, "UPRN": 200001296649, "X_COORDINATE": 483821.0, "Y_COORDINATE": 146763.0, "LATITUDE": 51.2139255, "LONGITUDE": -0.8013054 }, "geometry": { "type": "Point", "coordinates": [ 483821.0, 146763.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819687, "UPRN": 200001290493, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146776.0, "LATITUDE": 51.2140444, "LONGITUDE": -0.8015027 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146776.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820551, "UPRN": 200001291818, "X_COORDINATE": 483867.0, "Y_COORDINATE": 146780.0, "LATITUDE": 51.2140716, "LONGITUDE": -0.800643 }, "geometry": { "type": "Point", "coordinates": [ 483867.0, 146780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820548, "UPRN": 200001291815, "X_COORDINATE": 483865.0, "Y_COORDINATE": 146798.0, "LATITUDE": 51.2142337, "LONGITUDE": -0.8006674 }, "geometry": { "type": "Point", "coordinates": [ 483865.0, 146798.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819686, "UPRN": 200001290489, "X_COORDINATE": 483874.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142414, "LONGITUDE": -0.8005383 }, "geometry": { "type": "Point", "coordinates": [ 483874.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820547, "UPRN": 200001291814, "X_COORDINATE": 483874.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142414, "LONGITUDE": -0.8005383 }, "geometry": { "type": "Point", "coordinates": [ 483874.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820546, "UPRN": 200001291813, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143534, "LONGITUDE": -0.8000629 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819705, "UPRN": 200001290518, "X_COORDINATE": 483838.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.2143905, "LONGITUDE": -0.8010499 }, "geometry": { "type": "Point", "coordinates": [ 483838.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936887, "UPRN": 200001537397, "X_COORDINATE": 483866.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2134155, "LONGITUDE": -0.8006743 }, "geometry": { "type": "Point", "coordinates": [ 483866.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818717, "UPRN": 200001288888, "X_COORDINATE": 483938.0, "Y_COORDINATE": 146741.0, "LATITUDE": 51.2137106, "LONGITUDE": -0.7996358 }, "geometry": { "type": "Point", "coordinates": [ 483938.0, 146741.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819482, "UPRN": 200001290171, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138295, "LONGITUDE": -0.7989598 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819677, "UPRN": 200001290479, "X_COORDINATE": 484012.0, "Y_COORDINATE": 146767.0, "LATITUDE": 51.2139334, "LONGITUDE": -0.7985705 }, "geometry": { "type": "Point", "coordinates": [ 484012.0, 146767.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819554, "UPRN": 200001290300, "X_COORDINATE": 483994.0, "Y_COORDINATE": 146816.0, "LATITUDE": 51.2143766, "LONGITUDE": -0.7988167 }, "geometry": { "type": "Point", "coordinates": [ 483994.0, 146816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820481, "UPRN": 200001291722, "X_COORDINATE": 483953.0, "Y_COORDINATE": 146844.0, "LATITUDE": 51.2146343, "LONGITUDE": -0.799397 }, "geometry": { "type": "Point", "coordinates": [ 483953.0, 146844.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819646, "UPRN": 200001290432, "X_COORDINATE": 483990.0, "Y_COORDINATE": 146865.0, "LATITUDE": 51.2148177, "LONGITUDE": -0.7988625 }, "geometry": { "type": "Point", "coordinates": [ 483990.0, 146865.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819645, "UPRN": 200001290429, "X_COORDINATE": 483933.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.214853, "LONGITUDE": -0.7996777 }, "geometry": { "type": "Point", "coordinates": [ 483933.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819454, "UPRN": 200001290140, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.215074, "LONGITUDE": -0.7992997 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819456, "UPRN": 200001290143, "X_COORDINATE": 483998.0, "Y_COORDINATE": 146908.0, "LATITUDE": 51.2152031, "LONGITUDE": -0.7987379 }, "geometry": { "type": "Point", "coordinates": [ 483998.0, 146908.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819647, "UPRN": 200001290434, "X_COORDINATE": 484015.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152815, "LONGITUDE": -0.7984925 }, "geometry": { "type": "Point", "coordinates": [ 484015.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819457, "UPRN": 200001290144, "X_COORDINATE": 483939.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.2153376, "LONGITUDE": -0.7995792 }, "geometry": { "type": "Point", "coordinates": [ 483939.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819453, "UPRN": 200001290139, "X_COORDINATE": 483988.0, "Y_COORDINATE": 146950.0, "LATITUDE": 51.2155821, "LONGITUDE": -0.7988713 }, "geometry": { "type": "Point", "coordinates": [ 483988.0, 146950.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818180, "UPRN": 200001287697, "X_COORDINATE": 483995.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2156261, "LONGITUDE": -0.7987699 }, "geometry": { "type": "Point", "coordinates": [ 483995.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818270, "UPRN": 200001287924, "X_COORDINATE": 484001.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156701, "LONGITUDE": -0.7986829 }, "geometry": { "type": "Point", "coordinates": [ 484001.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818273, "UPRN": 200001287927, "X_COORDINATE": 483978.0, "Y_COORDINATE": 146963.0, "LATITUDE": 51.2157005, "LONGITUDE": -0.7990114 }, "geometry": { "type": "Point", "coordinates": [ 483978.0, 146963.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818271, "UPRN": 200001287925, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.2157264, "LONGITUDE": -0.7989105 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816098, "UPRN": 200001283162, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.2157763, "LONGITUDE": -0.7985083 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816097, "UPRN": 200001283161, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2157963, "LONGITUDE": -0.7987082 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818181, "UPRN": 200001287698, "X_COORDINATE": 484001.0, "Y_COORDINATE": 146989.0, "LATITUDE": 51.2159309, "LONGITUDE": -0.7986761 }, "geometry": { "type": "Point", "coordinates": [ 484001.0, 146989.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818179, "UPRN": 200001287696, "X_COORDINATE": 484014.0, "Y_COORDINATE": 146999.0, "LATITUDE": 51.2160188, "LONGITUDE": -0.7984877 }, "geometry": { "type": "Point", "coordinates": [ 484014.0, 146999.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816099, "UPRN": 200001283163, "X_COORDINATE": 484017.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160723, "LONGITUDE": -0.7984433 }, "geometry": { "type": "Point", "coordinates": [ 484017.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818272, "UPRN": 200001287926, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2161074, "LONGITUDE": -0.7983565 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816095, "UPRN": 200001283159, "X_COORDINATE": 484018.0, "Y_COORDINATE": 147013.0, "LATITUDE": 51.2161441, "LONGITUDE": -0.7984271 }, "geometry": { "type": "Point", "coordinates": [ 484018.0, 147013.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816094, "UPRN": 200001283158, "X_COORDINATE": 484015.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161895, "LONGITUDE": -0.7984689 }, "geometry": { "type": "Point", "coordinates": [ 484015.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816093, "UPRN": 200001283157, "X_COORDINATE": 484013.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2162168, "LONGITUDE": -0.7984968 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819441, "UPRN": 200001290123, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163322, "LONGITUDE": -0.7983506 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819440, "UPRN": 200001290122, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163322, "LONGITUDE": -0.7983506 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820488, "UPRN": 200001291736, "X_COORDINATE": 483968.0, "Y_COORDINATE": 146774.0, "LATITUDE": 51.2140028, "LONGITUDE": -0.7991987 }, "geometry": { "type": "Point", "coordinates": [ 483968.0, 146774.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823018, "UPRN": 200001296635, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155644, "LONGITUDE": -0.7997738 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935472, "UPRN": 200001532759, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146937.0, "LATITUDE": 51.2154732, "LONGITUDE": -0.7996473 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146937.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935906, "UPRN": 200001533923, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.2148729, "LONGITUDE": -0.7998633 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936048, "UPRN": 200001534437, "X_COORDINATE": 484030.0, "Y_COORDINATE": 146930.0, "LATITUDE": 51.2153962, "LONGITUDE": -0.7982748 }, "geometry": { "type": "Point", "coordinates": [ 484030.0, 146930.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936049, "UPRN": 200001534443, "X_COORDINATE": 483996.0, "Y_COORDINATE": 146903.0, "LATITUDE": 51.2151584, "LONGITUDE": -0.7987677 }, "geometry": { "type": "Point", "coordinates": [ 483996.0, 146903.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936345, "UPRN": 200001535484, "X_COORDINATE": 483958.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140402, "LONGITUDE": -0.7993409 }, "geometry": { "type": "Point", "coordinates": [ 483958.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936738, "UPRN": 200001536888, "X_COORDINATE": 484030.0, "Y_COORDINATE": 146930.0, "LATITUDE": 51.2153962, "LONGITUDE": -0.7982748 }, "geometry": { "type": "Point", "coordinates": [ 484030.0, 146930.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937006, "UPRN": 200001537807, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146916.0, "LATITUDE": 51.2152728, "LONGITUDE": -0.7985214 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146916.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937275, "UPRN": 200001538616, "X_COORDINATE": 483950.0, "Y_COORDINATE": 146876.0, "LATITUDE": 51.2149225, "LONGITUDE": -0.7994325 }, "geometry": { "type": "Point", "coordinates": [ 483950.0, 146876.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819632, "UPRN": 200001290409, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.2139895, "LONGITUDE": -0.795276 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819630, "UPRN": 200001290407, "X_COORDINATE": 484249.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2140514, "LONGITUDE": -0.7951742 }, "geometry": { "type": "Point", "coordinates": [ 484249.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820653, "UPRN": 200001291996, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820654, "UPRN": 200001291997, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820655, "UPRN": 200001291998, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820656, "UPRN": 200001291999, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820657, "UPRN": 200001292000, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820658, "UPRN": 200001292001, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820659, "UPRN": 200001292002, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820660, "UPRN": 200001292003, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820661, "UPRN": 200001292004, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820662, "UPRN": 200001292005, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820663, "UPRN": 200001292006, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936688, "UPRN": 200001536730, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146801.0, "LATITUDE": 51.2142055, "LONGITUDE": -0.795299 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146801.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936904, "UPRN": 200001537471, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.2139895, "LONGITUDE": -0.795276 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936944, "UPRN": 200001537609, "X_COORDINATE": 484232.0, "Y_COORDINATE": 146836.0, "LATITUDE": 51.2145214, "LONGITUDE": -0.7954053 }, "geometry": { "type": "Point", "coordinates": [ 484232.0, 146836.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820677, "UPRN": 200001292020, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820678, "UPRN": 200001292021, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820679, "UPRN": 200001292022, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820680, "UPRN": 200001292023, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820681, "UPRN": 200001292024, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820682, "UPRN": 200001292025, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820683, "UPRN": 200001292026, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820684, "UPRN": 200001292027, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820685, "UPRN": 200001292028, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820686, "UPRN": 200001292029, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820687, "UPRN": 200001292030, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820688, "UPRN": 200001292031, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820689, "UPRN": 200001292032, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820690, "UPRN": 200001292033, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820691, "UPRN": 200001292034, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820692, "UPRN": 200001292035, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820693, "UPRN": 200001292036, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820694, "UPRN": 200001292037, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820695, "UPRN": 200001292038, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820696, "UPRN": 200001292039, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820697, "UPRN": 200001292040, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820698, "UPRN": 200001292041, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820699, "UPRN": 200001292042, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820700, "UPRN": 200001292043, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820701, "UPRN": 200001292044, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820702, "UPRN": 200001292045, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820703, "UPRN": 200001292046, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823045, "UPRN": 200001296761, "X_COORDINATE": 484296.0, "Y_COORDINATE": 146830.0, "LATITUDE": 51.214458, "LONGITUDE": -0.7944906 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 146830.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823577, "UPRN": 200001298879, "X_COORDINATE": 484301.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141426, "LONGITUDE": -0.7944273 }, "geometry": { "type": "Point", "coordinates": [ 484301.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936928, "UPRN": 200001537559, "X_COORDINATE": 484298.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2133969, "LONGITUDE": -0.7944897 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820522, "UPRN": 200001291785, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146884.0, "LATITUDE": 51.2149697, "LONGITUDE": -0.7970259 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146884.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820523, "UPRN": 200001291786, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146884.0, "LATITUDE": 51.2149697, "LONGITUDE": -0.7970259 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146884.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820524, "UPRN": 200001291787, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146884.0, "LATITUDE": 51.2149697, "LONGITUDE": -0.7970259 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146884.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820525, "UPRN": 200001291788, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146884.0, "LATITUDE": 51.2149697, "LONGITUDE": -0.7970259 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146884.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820518, "UPRN": 200001291781, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150152, "LONGITUDE": -0.797082 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820519, "UPRN": 200001291782, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150152, "LONGITUDE": -0.797082 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820520, "UPRN": 200001291783, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150152, "LONGITUDE": -0.797082 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820521, "UPRN": 200001291784, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150152, "LONGITUDE": -0.797082 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820514, "UPRN": 200001291777, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150519, "LONGITUDE": -0.7971526 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820515, "UPRN": 200001291778, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150519, "LONGITUDE": -0.7971526 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820516, "UPRN": 200001291779, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150519, "LONGITUDE": -0.7971526 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820517, "UPRN": 200001291780, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150519, "LONGITUDE": -0.7971526 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819635, "UPRN": 200001290415, "X_COORDINATE": 484121.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2152929, "LONGITUDE": -0.7969745 }, "geometry": { "type": "Point", "coordinates": [ 484121.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820480, "UPRN": 200001291721, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153632, "LONGITUDE": -0.7976886 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819626, "UPRN": 200001290398, "X_COORDINATE": 484100.0, "Y_COORDINATE": 146945.0, "LATITUDE": 51.2155207, "LONGITUDE": -0.7972693 }, "geometry": { "type": "Point", "coordinates": [ 484100.0, 146945.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819654, "UPRN": 200001290450, "X_COORDINATE": 484074.0, "Y_COORDINATE": 146981.0, "LATITUDE": 51.2158482, "LONGITUDE": -0.797633 }, "geometry": { "type": "Point", "coordinates": [ 484074.0, 146981.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819438, "UPRN": 200001290120, "X_COORDINATE": 484134.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158484, "LONGITUDE": -0.7967739 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819436, "UPRN": 200001290118, "X_COORDINATE": 484134.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158484, "LONGITUDE": -0.7967739 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819628, "UPRN": 200001290402, "X_COORDINATE": 484134.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158484, "LONGITUDE": -0.7967739 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819656, "UPRN": 200001290452, "X_COORDINATE": 484078.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158836, "LONGITUDE": -0.7975748 }, "geometry": { "type": "Point", "coordinates": [ 484078.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816111, "UPRN": 200001283185, "X_COORDINATE": 484081.0, "Y_COORDINATE": 146990.0, "LATITUDE": 51.2159281, "LONGITUDE": -0.7975307 }, "geometry": { "type": "Point", "coordinates": [ 484081.0, 146990.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818276, "UPRN": 200001287935, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159546, "LONGITUDE": -0.7974871 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818072, "UPRN": 200001287407, "X_COORDINATE": 484089.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159808, "LONGITUDE": -0.7974148 }, "geometry": { "type": "Point", "coordinates": [ 484089.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818192, "UPRN": 200001287709, "X_COORDINATE": 484097.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160606, "LONGITUDE": -0.7972982 }, "geometry": { "type": "Point", "coordinates": [ 484097.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819437, "UPRN": 200001290119, "X_COORDINATE": 484072.0, "Y_COORDINATE": 147006.0, "LATITUDE": 51.2160732, "LONGITUDE": -0.7976558 }, "geometry": { "type": "Point", "coordinates": [ 484072.0, 147006.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818193, "UPRN": 200001287710, "X_COORDINATE": 484104.0, "Y_COORDINATE": 147012.0, "LATITUDE": 51.2161225, "LONGITUDE": -0.7971963 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 147012.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820526, "UPRN": 200001291789, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149241, "LONGITUDE": -0.7969698 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820527, "UPRN": 200001291790, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149241, "LONGITUDE": -0.7969698 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820528, "UPRN": 200001291791, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149241, "LONGITUDE": -0.7969698 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820529, "UPRN": 200001291792, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149241, "LONGITUDE": -0.7969698 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823349, "UPRN": 200001298161, "X_COORDINATE": 484134.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158484, "LONGITUDE": -0.7967739 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823578, "UPRN": 200001298880, "X_COORDINATE": 484104.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154752, "LONGITUDE": -0.7972132 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936388, "UPRN": 200001535598, "X_COORDINATE": 484093.0, "Y_COORDINATE": 147001.0, "LATITUDE": 51.2160252, "LONGITUDE": -0.7973563 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 147001.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936755, "UPRN": 200001536946, "X_COORDINATE": 484127.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156696, "LONGITUDE": -0.7968788 }, "geometry": { "type": "Point", "coordinates": [ 484127.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937259, "UPRN": 200001538575, "X_COORDINATE": 484131.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158758, "LONGITUDE": -0.7968161 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39357483, "UPRN": 200002885669, "X_COORDINATE": 484096.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155932, "LONGITUDE": -0.7973246 }, "geometry": { "type": "Point", "coordinates": [ 484096.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819452, "UPRN": 200001290136, "X_COORDINATE": 483900.21, "Y_COORDINATE": 147074.36, "LATITUDE": 51.2167131, "LONGITUDE": -0.8000989 }, "geometry": { "type": "Point", "coordinates": [ 483900.210000000020955, 147074.35999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 38816091, "UPRN": 200001283155, "X_COORDINATE": 484006.0, "Y_COORDINATE": 147030.0, "LATITUDE": 51.2162987, "LONGITUDE": -0.7985949 }, "geometry": { "type": "Point", "coordinates": [ 484006.0, 147030.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818526, "UPRN": 200001288467, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146992.0, "LATITUDE": 51.2159569, "LONGITUDE": -0.7985895 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146992.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816092, "UPRN": 200001283156, "X_COORDINATE": 484010.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162532, "LONGITUDE": -0.7985388 }, "geometry": { "type": "Point", "coordinates": [ 484010.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816090, "UPRN": 200001283154, "X_COORDINATE": 484011.0, "Y_COORDINATE": 146997.0, "LATITUDE": 51.2160013, "LONGITUDE": -0.7985311 }, "geometry": { "type": "Point", "coordinates": [ 484011.0, 146997.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819439, "UPRN": 200001290121, "X_COORDINATE": 484028.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163674, "LONGITUDE": -0.7982781 }, "geometry": { "type": "Point", "coordinates": [ 484028.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819447, "UPRN": 200001290129, "X_COORDINATE": 484029.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162684, "LONGITUDE": -0.7982664 }, "geometry": { "type": "Point", "coordinates": [ 484029.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819444, "UPRN": 200001290126, "X_COORDINATE": 484029.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162684, "LONGITUDE": -0.7982664 }, "geometry": { "type": "Point", "coordinates": [ 484029.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819443, "UPRN": 200001290125, "X_COORDINATE": 484029.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162684, "LONGITUDE": -0.7982664 }, "geometry": { "type": "Point", "coordinates": [ 484029.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819449, "UPRN": 200001290131, "X_COORDINATE": 484032.0, "Y_COORDINATE": 147041.0, "LATITUDE": 51.2163938, "LONGITUDE": -0.7982202 }, "geometry": { "type": "Point", "coordinates": [ 484032.0, 147041.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819445, "UPRN": 200001290127, "X_COORDINATE": 484032.0, "Y_COORDINATE": 147041.0, "LATITUDE": 51.2163938, "LONGITUDE": -0.7982202 }, "geometry": { "type": "Point", "coordinates": [ 484032.0, 147041.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818712, "UPRN": 200001288880, "X_COORDINATE": 484032.0, "Y_COORDINATE": 147041.0, "LATITUDE": 51.2163938, "LONGITUDE": -0.7982202 }, "geometry": { "type": "Point", "coordinates": [ 484032.0, 147041.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819446, "UPRN": 200001290128, "X_COORDINATE": 484036.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163303, "LONGITUDE": -0.7981646 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819442, "UPRN": 200001290124, "X_COORDINATE": 484036.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163303, "LONGITUDE": -0.7981646 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815603, "UPRN": 200001282427, "X_COORDINATE": 484037.0, "Y_COORDINATE": 147072.0, "LATITUDE": 51.2166717, "LONGITUDE": -0.7981413 }, "geometry": { "type": "Point", "coordinates": [ 484037.0, 147072.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815604, "UPRN": 200001282428, "X_COORDINATE": 484041.0, "Y_COORDINATE": 147079.0, "LATITUDE": 51.2167341, "LONGITUDE": -0.7980825 }, "geometry": { "type": "Point", "coordinates": [ 484041.0, 147079.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815602, "UPRN": 200001282426, "X_COORDINATE": 484045.0, "Y_COORDINATE": 147068.0, "LATITUDE": 51.2166346, "LONGITUDE": -0.7980278 }, "geometry": { "type": "Point", "coordinates": [ 484045.0, 147068.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815610, "UPRN": 200001282434, "X_COORDINATE": 484048.0, "Y_COORDINATE": 147084.0, "LATITUDE": 51.216778, "LONGITUDE": -0.7979811 }, "geometry": { "type": "Point", "coordinates": [ 484048.0, 147084.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815605, "UPRN": 200001282429, "X_COORDINATE": 484048.0, "Y_COORDINATE": 147084.0, "LATITUDE": 51.216778, "LONGITUDE": -0.7979811 }, "geometry": { "type": "Point", "coordinates": [ 484048.0, 147084.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815608, "UPRN": 200001282432, "X_COORDINATE": 484048.0, "Y_COORDINATE": 147084.0, "LATITUDE": 51.216778, "LONGITUDE": -0.7979811 }, "geometry": { "type": "Point", "coordinates": [ 484048.0, 147084.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815609, "UPRN": 200001282433, "X_COORDINATE": 484053.0, "Y_COORDINATE": 147078.0, "LATITUDE": 51.2167233, "LONGITUDE": -0.7979109 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 147078.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815606, "UPRN": 200001282430, "X_COORDINATE": 484053.0, "Y_COORDINATE": 147078.0, "LATITUDE": 51.2167233, "LONGITUDE": -0.7979109 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 147078.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815607, "UPRN": 200001282431, "X_COORDINATE": 484054.0, "Y_COORDINATE": 147072.0, "LATITUDE": 51.2166692, "LONGITUDE": -0.797898 }, "geometry": { "type": "Point", "coordinates": [ 484054.0, 147072.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816096, "UPRN": 200001283160, "X_COORDINATE": 483997.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161922, "LONGITUDE": -0.7987266 }, "geometry": { "type": "Point", "coordinates": [ 483997.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816087, "UPRN": 200001283151, "X_COORDINATE": 483993.0, "Y_COORDINATE": 147015.0, "LATITUDE": 51.2161658, "LONGITUDE": -0.7987845 }, "geometry": { "type": "Point", "coordinates": [ 483993.0, 147015.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816088, "UPRN": 200001283152, "X_COORDINATE": 483990.0, "Y_COORDINATE": 147013.0, "LATITUDE": 51.2161482, "LONGITUDE": -0.7988279 }, "geometry": { "type": "Point", "coordinates": [ 483990.0, 147013.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816089, "UPRN": 200001283153, "X_COORDINATE": 483985.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.216131, "LONGITUDE": -0.7989 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819448, "UPRN": 200001290130, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163322, "LONGITUDE": -0.7983506 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820512, "UPRN": 200001291774, "X_COORDINATE": 483916.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167614, "LONGITUDE": -0.7998715 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823316, "UPRN": 200001298068, "X_COORDINATE": 484045.0, "Y_COORDINATE": 147068.0, "LATITUDE": 51.2166346, "LONGITUDE": -0.7980278 }, "geometry": { "type": "Point", "coordinates": [ 484045.0, 147068.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935570, "UPRN": 200001533016, "X_COORDINATE": 483971.0, "Y_COORDINATE": 147004.0, "LATITUDE": 51.2160701, "LONGITUDE": -0.799102 }, "geometry": { "type": "Point", "coordinates": [ 483971.0, 147004.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936722, "UPRN": 200001536828, "X_COORDINATE": 484000.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160299, "LONGITUDE": -0.7986878 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937112, "UPRN": 200001538172, "X_COORDINATE": 483910.0, "Y_COORDINATE": 147051.0, "LATITUDE": 51.2165016, "LONGITUDE": -0.7999642 }, "geometry": { "type": "Point", "coordinates": [ 483910.0, 147051.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816110, "UPRN": 200001283184, "X_COORDINATE": 484122.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161738, "LONGITUDE": -0.7969373 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819655, "UPRN": 200001290451, "X_COORDINATE": 484120.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.216192, "LONGITUDE": -0.7969654 }, "geometry": { "type": "Point", "coordinates": [ 484120.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816109, "UPRN": 200001283183, "X_COORDINATE": 484124.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162184, "LONGITUDE": -0.7969075 }, "geometry": { "type": "Point", "coordinates": [ 484124.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818738, "UPRN": 200001288924, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162537, "LONGITUDE": -0.7968349 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818190, "UPRN": 200001287707, "X_COORDINATE": 484132.0, "Y_COORDINATE": 147032.0, "LATITUDE": 51.2162982, "LONGITUDE": -0.7967908 }, "geometry": { "type": "Point", "coordinates": [ 484132.0, 147032.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818739, "UPRN": 200001288925, "X_COORDINATE": 484134.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2163069, "LONGITUDE": -0.796762 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816104, "UPRN": 200001283178, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163601, "LONGITUDE": -0.796689 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818194, "UPRN": 200001287711, "X_COORDINATE": 484143.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164044, "LONGITUDE": -0.7966306 }, "geometry": { "type": "Point", "coordinates": [ 484143.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818073, "UPRN": 200001287416, "X_COORDINATE": 484150.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165922, "LONGITUDE": -0.7965254 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819489, "UPRN": 200001290179, "X_COORDINATE": 484150.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165922, "LONGITUDE": -0.7965254 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819715, "UPRN": 200001290539, "X_COORDINATE": 484150.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165922, "LONGITUDE": -0.7965254 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819716, "UPRN": 200001290540, "X_COORDINATE": 484150.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165922, "LONGITUDE": -0.7965254 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819717, "UPRN": 200001290541, "X_COORDINATE": 484150.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165922, "LONGITUDE": -0.7965254 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816231, "UPRN": 200001283452, "X_COORDINATE": 484145.0, "Y_COORDINATE": 147068.0, "LATITUDE": 51.2166199, "LONGITUDE": -0.7965963 }, "geometry": { "type": "Point", "coordinates": [ 484145.0, 147068.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820644, "UPRN": 200001291980, "X_COORDINATE": 484157.0, "Y_COORDINATE": 146995.0, "LATITUDE": 51.2159618, "LONGITUDE": -0.7964416 }, "geometry": { "type": "Point", "coordinates": [ 484157.0, 146995.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816233, "UPRN": 200001283454, "X_COORDINATE": 484153.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165558, "LONGITUDE": -0.7964834 }, "geometry": { "type": "Point", "coordinates": [ 484153.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816230, "UPRN": 200001283451, "X_COORDINATE": 484156.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.2165284, "LONGITUDE": -0.7964412 }, "geometry": { "type": "Point", "coordinates": [ 484156.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818527, "UPRN": 200001288470, "X_COORDINATE": 484152.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164391, "LONGITUDE": -0.7965008 }, "geometry": { "type": "Point", "coordinates": [ 484152.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823676, "UPRN": 200001299131, "X_COORDINATE": 484157.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2166001, "LONGITUDE": -0.796425 }, "geometry": { "type": "Point", "coordinates": [ 484157.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935892, "UPRN": 200001533868, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147056.0, "LATITUDE": 51.2165129, "LONGITUDE": -0.796685 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147056.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816234, "UPRN": 200001283455, "X_COORDINATE": 484158.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167259, "LONGITUDE": -0.7964074 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818275, "UPRN": 200001287933, "X_COORDINATE": 484160.0, "Y_COORDINATE": 147054.0, "LATITUDE": 51.2164918, "LONGITUDE": -0.7963849 }, "geometry": { "type": "Point", "coordinates": [ 484160.0, 147054.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816232, "UPRN": 200001283453, "X_COORDINATE": 484162.0, "Y_COORDINATE": 147076.0, "LATITUDE": 51.2166893, "LONGITUDE": -0.7963511 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 147076.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819719, "UPRN": 200001290543, "X_COORDINATE": 484163.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166352, "LONGITUDE": -0.7963382 }, "geometry": { "type": "Point", "coordinates": [ 484163.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819718, "UPRN": 200001290542, "X_COORDINATE": 484163.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166352, "LONGITUDE": -0.7963382 }, "geometry": { "type": "Point", "coordinates": [ 484163.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816105, "UPRN": 200001283179, "X_COORDINATE": 484168.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165805, "LONGITUDE": -0.796268 }, "geometry": { "type": "Point", "coordinates": [ 484168.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816106, "UPRN": 200001283180, "X_COORDINATE": 484176.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166333, "LONGITUDE": -0.7961521 }, "geometry": { "type": "Point", "coordinates": [ 484176.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818274, "UPRN": 200001287932, "X_COORDINATE": 484179.0, "Y_COORDINATE": 147074.0, "LATITUDE": 51.2166688, "LONGITUDE": -0.7961082 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 147074.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816107, "UPRN": 200001283181, "X_COORDINATE": 484183.0, "Y_COORDINATE": 147077.0, "LATITUDE": 51.2166952, "LONGITUDE": -0.7960503 }, "geometry": { "type": "Point", "coordinates": [ 484183.0, 147077.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818529, "UPRN": 200001288472, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167216, "LONGITUDE": -0.7959923 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818195, "UPRN": 200001287713, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147085.0, "LATITUDE": 51.2167662, "LONGITUDE": -0.7959625 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147085.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818191, "UPRN": 200001287708, "X_COORDINATE": 484190.0, "Y_COORDINATE": 147086.0, "LATITUDE": 51.2167751, "LONGITUDE": -0.7959479 }, "geometry": { "type": "Point", "coordinates": [ 484190.0, 147086.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816229, "UPRN": 200001283450, "X_COORDINATE": 484192.0, "Y_COORDINATE": 147088.0, "LATITUDE": 51.2167928, "LONGITUDE": -0.7959188 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 147088.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818737, "UPRN": 200001288923, "X_COORDINATE": 484196.0, "Y_COORDINATE": 147092.0, "LATITUDE": 51.2168281, "LONGITUDE": -0.7958607 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 147092.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816228, "UPRN": 200001283449, "X_COORDINATE": 484196.0, "Y_COORDINATE": 147092.0, "LATITUDE": 51.2168281, "LONGITUDE": -0.7958607 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 147092.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823675, "UPRN": 200001299130, "X_COORDINATE": 484200.0, "Y_COORDINATE": 147096.0, "LATITUDE": 51.2168635, "LONGITUDE": -0.7958025 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 147096.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818196, "UPRN": 200001287714, "X_COORDINATE": 484200.0, "Y_COORDINATE": 147096.0, "LATITUDE": 51.2168635, "LONGITUDE": -0.7958025 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 147096.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38816108, "UPRN": 200001283182, "X_COORDINATE": 484200.0, "Y_COORDINATE": 147096.0, "LATITUDE": 51.2168635, "LONGITUDE": -0.7958025 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 147096.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818528, "UPRN": 200001288471, "X_COORDINATE": 484204.0, "Y_COORDINATE": 147098.0, "LATITUDE": 51.2168809, "LONGITUDE": -0.7957447 }, "geometry": { "type": "Point", "coordinates": [ 484204.0, 147098.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819490, "UPRN": 200001290180, "X_COORDINATE": 484205.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2165571, "LONGITUDE": -0.7957389 }, "geometry": { "type": "Point", "coordinates": [ 484205.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819479, "UPRN": 200001290168, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819498, "UPRN": 200001290204, "X_COORDINATE": 484232.0, "Y_COORDINATE": 147019.0, "LATITUDE": 51.2161666, "LONGITUDE": -0.7953624 }, "geometry": { "type": "Point", "coordinates": [ 484232.0, 147019.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935862, "UPRN": 200001533765, "X_COORDINATE": 484179.0, "Y_COORDINATE": 147014.0, "LATITUDE": 51.2161294, "LONGITUDE": -0.7961223 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 147014.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936105, "UPRN": 200001534644, "X_COORDINATE": 484173.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2165978, "LONGITUDE": -0.796196 }, "geometry": { "type": "Point", "coordinates": [ 484173.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936325, "UPRN": 200001535419, "X_COORDINATE": 484180.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160034, "LONGITUDE": -0.7961112 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936826, "UPRN": 200001537199, "X_COORDINATE": 484168.0, "Y_COORDINATE": 147026.0, "LATITUDE": 51.2162389, "LONGITUDE": -0.7962769 }, "geometry": { "type": "Point", "coordinates": [ 484168.0, 147026.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937090, "UPRN": 200001538086, "X_COORDINATE": 484171.0, "Y_COORDINATE": 147056.0, "LATITUDE": 51.2165082, "LONGITUDE": -0.7962269 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 147056.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823019, "UPRN": 200001296636, "X_COORDINATE": 483815.0, "Y_COORDINATE": 147116.0, "LATITUDE": 51.2170999, "LONGITUDE": -0.8013089 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 147116.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820641, "UPRN": 200001291952, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820640, "UPRN": 200001291951, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820639, "UPRN": 200001291950, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820638, "UPRN": 200001291949, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819476, "UPRN": 200001290165, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819475, "UPRN": 200001290164, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38603369, "UPRN": 200000850968, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819468, "UPRN": 200001290157, "X_COORDINATE": 484273.0, "Y_COORDINATE": 147008.0, "LATITUDE": 51.2160616, "LONGITUDE": -0.7947781 }, "geometry": { "type": "Point", "coordinates": [ 484273.0, 147008.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935601, "UPRN": 200001533080, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147097.0, "LATITUDE": 51.2168581, "LONGITUDE": -0.7943994 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147097.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935614, "UPRN": 200001533112, "X_COORDINATE": 484339.0, "Y_COORDINATE": 147102.0, "LATITUDE": 51.216897, "LONGITUDE": -0.7938113 }, "geometry": { "type": "Point", "coordinates": [ 484339.0, 147102.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819469, "UPRN": 200001290158, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147030.0, "LATITUDE": 51.2162452, "LONGITUDE": -0.7933988 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147030.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819473, "UPRN": 200001290162, "X_COORDINATE": 484412.0, "Y_COORDINATE": 147114.0, "LATITUDE": 51.2169941, "LONGITUDE": -0.7927635 }, "geometry": { "type": "Point", "coordinates": [ 484412.0, 147114.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38815712, "UPRN": 200001282541, "X_COORDINATE": 484432.0, "Y_COORDINATE": 147083.0, "LATITUDE": 51.2167124, "LONGITUDE": -0.7924845 }, "geometry": { "type": "Point", "coordinates": [ 484432.0, 147083.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819472, "UPRN": 200001290161, "X_COORDINATE": 484443.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.2166209, "LONGITUDE": -0.7923294 }, "geometry": { "type": "Point", "coordinates": [ 484443.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820648, "UPRN": 200001291988, "X_COORDINATE": 484514.0, "Y_COORDINATE": 147013.0, "LATITUDE": 51.216071, "LONGITUDE": -0.7913272 }, "geometry": { "type": "Point", "coordinates": [ 484514.0, 147013.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820647, "UPRN": 200001291987, "X_COORDINATE": 484514.0, "Y_COORDINATE": 147013.0, "LATITUDE": 51.216071, "LONGITUDE": -0.7913272 }, "geometry": { "type": "Point", "coordinates": [ 484514.0, 147013.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935844, "UPRN": 200001533705, "X_COORDINATE": 484231.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2155823, "LONGITUDE": -0.795392 }, "geometry": { "type": "Point", "coordinates": [ 484231.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936131, "UPRN": 200001534759, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147100.0, "LATITUDE": 51.2168478, "LONGITUDE": -0.7907914 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147100.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936327, "UPRN": 200001535427, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147100.0, "LATITUDE": 51.2168921, "LONGITUDE": -0.7950858 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147100.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936867, "UPRN": 200001537340, "X_COORDINATE": 484350.0, "Y_COORDINATE": 146950.0, "LATITUDE": 51.2155288, "LONGITUDE": -0.7936895 }, "geometry": { "type": "Point", "coordinates": [ 484350.0, 146950.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936875, "UPRN": 200001537365, "X_COORDINATE": 484276.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.215351, "LONGITUDE": -0.7947537 }, "geometry": { "type": "Point", "coordinates": [ 484276.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936926, "UPRN": 200001537553, "X_COORDINATE": 484625.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.2164591, "LONGITUDE": -0.7897277 }, "geometry": { "type": "Point", "coordinates": [ 484625.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937318, "UPRN": 200001538759, "X_COORDINATE": 484243.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2153558, "LONGITUDE": -0.7952261 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39357485, "UPRN": 200002885672, "X_COORDINATE": 484666.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.216453, "LONGITUDE": -0.7891408 }, "geometry": { "type": "Point", "coordinates": [ 484666.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39435570, "UPRN": 200003085943, "X_COORDINATE": 484565.0, "Y_COORDINATE": 147036.0, "LATITUDE": 51.2162702, "LONGITUDE": -0.7905918 }, "geometry": { "type": "Point", "coordinates": [ 484565.0, 147036.0 ] } }, -{ "type": "Feature", "properties": { "FID": 39435576, "UPRN": 200003085969, "X_COORDINATE": 484449.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2162604, "LONGITUDE": -0.7922529 }, "geometry": { "type": "Point", "coordinates": [ 484449.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823650, "UPRN": 200001299075, "X_COORDINATE": 483854.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.2146129, "LONGITUDE": -0.800815 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819565, "UPRN": 200001290312, "X_COORDINATE": 483831.0, "Y_COORDINATE": 146841.0, "LATITUDE": 51.2146253, "LONGITUDE": -0.801144 }, "geometry": { "type": "Point", "coordinates": [ 483831.0, 146841.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936182, "UPRN": 200001534943, "X_COORDINATE": 483820.0, "Y_COORDINATE": 146852.0, "LATITUDE": 51.2147258, "LONGITUDE": -0.8012989 }, "geometry": { "type": "Point", "coordinates": [ 483820.0, 146852.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38818723, "UPRN": 200001288901, "X_COORDINATE": 483835.0, "Y_COORDINATE": 146862.0, "LATITUDE": 51.2148135, "LONGITUDE": -0.8010819 }, "geometry": { "type": "Point", "coordinates": [ 483835.0, 146862.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819706, "UPRN": 200001290519, "X_COORDINATE": 483859.0, "Y_COORDINATE": 146863.0, "LATITUDE": 51.2148189, "LONGITUDE": -0.8007381 }, "geometry": { "type": "Point", "coordinates": [ 483859.0, 146863.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819568, "UPRN": 200001290318, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819569, "UPRN": 200001290319, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819571, "UPRN": 200001290322, "X_COORDINATE": 483868.0, "Y_COORDINATE": 146887.0, "LATITUDE": 51.2150334, "LONGITUDE": -0.8006037 }, "geometry": { "type": "Point", "coordinates": [ 483868.0, 146887.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819559, "UPRN": 200001290305, "X_COORDINATE": 483826.0, "Y_COORDINATE": 146890.0, "LATITUDE": 51.2150665, "LONGITUDE": -0.8012042 }, "geometry": { "type": "Point", "coordinates": [ 483826.0, 146890.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819558, "UPRN": 200001290304, "X_COORDINATE": 483824.0, "Y_COORDINATE": 146897.0, "LATITUDE": 51.2151297, "LONGITUDE": -0.8012312 }, "geometry": { "type": "Point", "coordinates": [ 483824.0, 146897.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823484, "UPRN": 200001298567, "X_COORDINATE": 483862.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2151511, "LONGITUDE": -0.8006865 }, "geometry": { "type": "Point", "coordinates": [ 483862.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819570, "UPRN": 200001290320, "X_COORDINATE": 483870.0, "Y_COORDINATE": 146901.0, "LATITUDE": 51.215159, "LONGITUDE": -0.8005718 }, "geometry": { "type": "Point", "coordinates": [ 483870.0, 146901.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819560, "UPRN": 200001290306, "X_COORDINATE": 483817.0, "Y_COORDINATE": 146903.0, "LATITUDE": 51.2151847, "LONGITUDE": -0.80133 }, "geometry": { "type": "Point", "coordinates": [ 483817.0, 146903.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819561, "UPRN": 200001290308, "X_COORDINATE": 483820.0, "Y_COORDINATE": 146910.0, "LATITUDE": 51.2152472, "LONGITUDE": -0.8012854 }, "geometry": { "type": "Point", "coordinates": [ 483820.0, 146910.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819562, "UPRN": 200001290309, "X_COORDINATE": 483814.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152571, "LONGITUDE": -0.801371 }, "geometry": { "type": "Point", "coordinates": [ 483814.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38823485, "UPRN": 200001298569, "X_COORDINATE": 483855.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152601, "LONGITUDE": -0.8007839 }, "geometry": { "type": "Point", "coordinates": [ 483855.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820491, "UPRN": 200001291739, "X_COORDINATE": 483854.0, "Y_COORDINATE": 146916.0, "LATITUDE": 51.2152962, "LONGITUDE": -0.8007973 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 146916.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820490, "UPRN": 200001291738, "X_COORDINATE": 483852.0, "Y_COORDINATE": 146919.0, "LATITUDE": 51.2153234, "LONGITUDE": -0.8008252 }, "geometry": { "type": "Point", "coordinates": [ 483852.0, 146919.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38820489, "UPRN": 200001291737, "X_COORDINATE": 483850.0, "Y_COORDINATE": 146923.0, "LATITUDE": 51.2153597, "LONGITUDE": -0.8008529 }, "geometry": { "type": "Point", "coordinates": [ 483850.0, 146923.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38819572, "UPRN": 200001290323, "X_COORDINATE": 483874.0, "Y_COORDINATE": 146931.0, "LATITUDE": 51.2154281, "LONGITUDE": -0.8005075 }, "geometry": { "type": "Point", "coordinates": [ 483874.0, 146931.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38935549, "UPRN": 200001532949, "X_COORDINATE": 483851.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.2156113, "LONGITUDE": -0.8008321 }, "geometry": { "type": "Point", "coordinates": [ 483851.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936284, "UPRN": 200001535280, "X_COORDINATE": 483850.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.215054, "LONGITUDE": -0.8008609 }, "geometry": { "type": "Point", "coordinates": [ 483850.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936335, "UPRN": 200001535451, "X_COORDINATE": 483841.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2158195, "LONGITUDE": -0.8009699 }, "geometry": { "type": "Point", "coordinates": [ 483841.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38936788, "UPRN": 200001537069, "X_COORDINATE": 483900.0, "Y_COORDINATE": 146850.0, "LATITUDE": 51.2146961, "LONGITUDE": -0.8001543 }, "geometry": { "type": "Point", "coordinates": [ 483900.0, 146850.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937311, "UPRN": 200001538717, "X_COORDINATE": 483844.0, "Y_COORDINATE": 146944.0, "LATITUDE": 51.2155494, "LONGITUDE": -0.8009339 }, "geometry": { "type": "Point", "coordinates": [ 483844.0, 146944.0 ] } }, -{ "type": "Feature", "properties": { "FID": 38937350, "UPRN": 200001538981, "X_COORDINATE": 483825.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161994, "LONGITUDE": -0.8011891 }, "geometry": { "type": "Point", "coordinates": [ 483825.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122978, "UPRN": 100062163124, "X_COORDINATE": 483637.0, "Y_COORDINATE": 146192.0, "LATITUDE": 51.2088191, "LONGITUDE": -0.8040719 }, "geometry": { "type": "Point", "coordinates": [ 483637.0, 146192.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122979, "UPRN": 100062163125, "X_COORDINATE": 483634.0, "Y_COORDINATE": 146191.0, "LATITUDE": 51.2088105, "LONGITUDE": -0.8041151 }, "geometry": { "type": "Point", "coordinates": [ 483634.0, 146191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122980, "UPRN": 100062163126, "X_COORDINATE": 483630.0, "Y_COORDINATE": 146189.0, "LATITUDE": 51.2087931, "LONGITUDE": -0.8041728 }, "geometry": { "type": "Point", "coordinates": [ 483630.0, 146189.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122981, "UPRN": 100062163127, "X_COORDINATE": 483626.0, "Y_COORDINATE": 146188.0, "LATITUDE": 51.2087847, "LONGITUDE": -0.8042303 }, "geometry": { "type": "Point", "coordinates": [ 483626.0, 146188.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216912, "UPRN": 100062354292, "X_COORDINATE": 483559.0, "Y_COORDINATE": 146166.0, "LATITUDE": 51.2085967, "LONGITUDE": -0.8051943 }, "geometry": { "type": "Point", "coordinates": [ 483559.0, 146166.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400157, "UPRN": 100062700425, "X_COORDINATE": 483637.0, "Y_COORDINATE": 146192.0, "LATITUDE": 51.2088191, "LONGITUDE": -0.8040719 }, "geometry": { "type": "Point", "coordinates": [ 483637.0, 146192.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450836, "UPRN": 10013897272, "X_COORDINATE": 483299.0, "Y_COORDINATE": 146433.0, "LATITUDE": 51.2110351, "LONGITUDE": -0.8088536 }, "geometry": { "type": "Point", "coordinates": [ 483299.0, 146433.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451493, "UPRN": 10013898361, "X_COORDINATE": 483318.0, "Y_COORDINATE": 146404.0, "LATITUDE": 51.2107716, "LONGITUDE": -0.8085884 }, "geometry": { "type": "Point", "coordinates": [ 483318.0, 146404.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451494, "UPRN": 10013898362, "X_COORDINATE": 483328.0, "Y_COORDINATE": 146387.0, "LATITUDE": 51.2106173, "LONGITUDE": -0.8084492 }, "geometry": { "type": "Point", "coordinates": [ 483328.0, 146387.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266294, "UPRN": 10091107605, "X_COORDINATE": 483324.0, "Y_COORDINATE": 146395.0, "LATITUDE": 51.2106898, "LONGITUDE": -0.8085046 }, "geometry": { "type": "Point", "coordinates": [ 483324.0, 146395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266367, "UPRN": 10091107679, "X_COORDINATE": 483328.0, "Y_COORDINATE": 146445.0, "LATITUDE": 51.2111387, "LONGITUDE": -0.8084358 }, "geometry": { "type": "Point", "coordinates": [ 483328.0, 146445.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18043495, "UPRN": 10025677803, "X_COORDINATE": 483410.52, "Y_COORDINATE": 146365.46, "LATITUDE": 51.2104116, "LONGITUDE": -0.8072731 }, "geometry": { "type": "Point", "coordinates": [ 483410.520000000018626, 146365.46 ] } }, -{ "type": "Feature", "properties": { "FID": 15990714, "UPRN": 10015453898, "X_COORDINATE": 483475.71, "Y_COORDINATE": 146385.08, "LATITUDE": 51.2105785, "LONGITUDE": -0.8063355 }, "geometry": { "type": "Point", "coordinates": [ 483475.710000000020955, 146385.079999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 20266295, "UPRN": 10091107606, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913101, "UPRN": 10094581588, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913102, "UPRN": 10094581589, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913160, "UPRN": 10094581648, "X_COORDINATE": 483385.0, "Y_COORDINATE": 146396.0, "LATITUDE": 51.2106899, "LONGITUDE": -0.8076313 }, "geometry": { "type": "Point", "coordinates": [ 483385.0, 146396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450484, "UPRN": 10013896864, "X_COORDINATE": 483501.0, "Y_COORDINATE": 146401.0, "LATITUDE": 51.2107179, "LONGITUDE": -0.8059698 }, "geometry": { "type": "Point", "coordinates": [ 483501.0, 146401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450520, "UPRN": 10013896903, "X_COORDINATE": 483446.0, "Y_COORDINATE": 146411.0, "LATITUDE": 51.2108158, "LONGITUDE": -0.8067547 }, "geometry": { "type": "Point", "coordinates": [ 483446.0, 146411.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17500206, "UPRN": 10024880592, "X_COORDINATE": 483450.56, "Y_COORDINATE": 146411.79, "LATITUDE": 51.2108223, "LONGITUDE": -0.8066893 }, "geometry": { "type": "Point", "coordinates": [ 483450.56, 146411.79 ] } }, -{ "type": "Feature", "properties": { "FID": 21911417, "UPRN": 10094579886, "X_COORDINATE": 483349.0, "Y_COORDINATE": 146416.0, "LATITUDE": 51.2108749, "LONGITUDE": -0.8081419 }, "geometry": { "type": "Point", "coordinates": [ 483349.0, 146416.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265786, "UPRN": 10091107092, "X_COORDINATE": 483372.09, "Y_COORDINATE": 146436.64, "LATITUDE": 51.2110571, "LONGITUDE": -0.8078066 }, "geometry": { "type": "Point", "coordinates": [ 483372.090000000025611, 146436.64000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 20265787, "UPRN": 10091107093, "X_COORDINATE": 483336.0, "Y_COORDINATE": 146446.0, "LATITUDE": 51.2111465, "LONGITUDE": -0.808321 }, "geometry": { "type": "Point", "coordinates": [ 483336.0, 146446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266368, "UPRN": 10091107680, "X_COORDINATE": 483344.0, "Y_COORDINATE": 146448.0, "LATITUDE": 51.2111634, "LONGITUDE": -0.808206 }, "geometry": { "type": "Point", "coordinates": [ 483344.0, 146448.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449020, "UPRN": 10013895390, "X_COORDINATE": 483358.0, "Y_COORDINATE": 146470.0, "LATITUDE": 51.2113591, "LONGITUDE": -0.8080006 }, "geometry": { "type": "Point", "coordinates": [ 483358.0, 146470.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450534, "UPRN": 10013896917, "X_COORDINATE": 483364.0, "Y_COORDINATE": 146493.0, "LATITUDE": 51.211565, "LONGITUDE": -0.8079094 }, "geometry": { "type": "Point", "coordinates": [ 483364.0, 146493.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116315, "UPRN": 10096744697, "X_COORDINATE": 483529.07, "Y_COORDINATE": 146745.94, "LATITUDE": 51.2138149, "LONGITUDE": -0.8054879 }, "geometry": { "type": "Point", "coordinates": [ 483529.07, 146745.94 ] } }, -{ "type": "Feature", "properties": { "FID": 23116505, "UPRN": 10096744893, "X_COORDINATE": 483525.28, "Y_COORDINATE": 146704.66, "LATITUDE": 51.2134443, "LONGITUDE": -0.8055518 }, "geometry": { "type": "Point", "coordinates": [ 483525.28000000002794, 146704.66 ] } }, -{ "type": "Feature", "properties": { "FID": 15447584, "UPRN": 10013893935, "X_COORDINATE": 483577.0, "Y_COORDINATE": 146155.0, "LATITUDE": 51.2084952, "LONGITUDE": -0.8049393 }, "geometry": { "type": "Point", "coordinates": [ 483577.0, 146155.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447263, "UPRN": 10013893606, "X_COORDINATE": 483583.0, "Y_COORDINATE": 146184.0, "LATITUDE": 51.208755, "LONGITUDE": -0.8048466 }, "geometry": { "type": "Point", "coordinates": [ 483583.0, 146184.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911691, "UPRN": 10094580163, "X_COORDINATE": 483501.0, "Y_COORDINATE": 146617.0, "LATITUDE": 51.2126598, "LONGITUDE": -0.8059197 }, "geometry": { "type": "Point", "coordinates": [ 483501.0, 146617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911689, "UPRN": 10094580161, "X_COORDINATE": 483501.0, "Y_COORDINATE": 146617.0, "LATITUDE": 51.2126598, "LONGITUDE": -0.8059197 }, "geometry": { "type": "Point", "coordinates": [ 483501.0, 146617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911690, "UPRN": 10094580162, "X_COORDINATE": 483505.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126952, "LONGITUDE": -0.8058615 }, "geometry": { "type": "Point", "coordinates": [ 483505.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911688, "UPRN": 10094580160, "X_COORDINATE": 483505.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126952, "LONGITUDE": -0.8058615 }, "geometry": { "type": "Point", "coordinates": [ 483505.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448615, "UPRN": 10013894975, "X_COORDINATE": 483505.0, "Y_COORDINATE": 146623.0, "LATITUDE": 51.2127131, "LONGITUDE": -0.805861 }, "geometry": { "type": "Point", "coordinates": [ 483505.0, 146623.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448612, "UPRN": 10013894972, "X_COORDINATE": 483509.0, "Y_COORDINATE": 146664.0, "LATITUDE": 51.2130811, "LONGITUDE": -0.8057942 }, "geometry": { "type": "Point", "coordinates": [ 483509.0, 146664.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449618, "UPRN": 10013895991, "X_COORDINATE": 483509.0, "Y_COORDINATE": 146638.0, "LATITUDE": 51.2128474, "LONGITUDE": -0.8058003 }, "geometry": { "type": "Point", "coordinates": [ 483509.0, 146638.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265711, "UPRN": 10091107016, "X_COORDINATE": 483516.0, "Y_COORDINATE": 146615.0, "LATITUDE": 51.2126396, "LONGITUDE": -0.8057054 }, "geometry": { "type": "Point", "coordinates": [ 483516.0, 146615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266963, "UPRN": 10091108278, "X_COORDINATE": 483522.0, "Y_COORDINATE": 146593.0, "LATITUDE": 51.2124409, "LONGITUDE": -0.8056247 }, "geometry": { "type": "Point", "coordinates": [ 483522.0, 146593.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449848, "UPRN": 10013896223, "X_COORDINATE": 483543.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2130582, "LONGITUDE": -0.8053081 }, "geometry": { "type": "Point", "coordinates": [ 483543.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446552, "UPRN": 10013892872, "X_COORDINATE": 483560.0, "Y_COORDINATE": 146657.0, "LATITUDE": 51.2130108, "LONGITUDE": -0.8050659 }, "geometry": { "type": "Point", "coordinates": [ 483560.0, 146657.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446551, "UPRN": 10013892871, "X_COORDINATE": 483560.0, "Y_COORDINATE": 146657.0, "LATITUDE": 51.2130108, "LONGITUDE": -0.8050659 }, "geometry": { "type": "Point", "coordinates": [ 483560.0, 146657.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448970, "UPRN": 10013895337, "X_COORDINATE": 483564.0, "Y_COORDINATE": 146675.0, "LATITUDE": 51.213172, "LONGITUDE": -0.8050044 }, "geometry": { "type": "Point", "coordinates": [ 483564.0, 146675.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442620, "UPRN": 10013888512, "X_COORDINATE": 483572.0, "Y_COORDINATE": 146669.0, "LATITUDE": 51.2131169, "LONGITUDE": -0.8048913 }, "geometry": { "type": "Point", "coordinates": [ 483572.0, 146669.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442621, "UPRN": 10013888513, "X_COORDINATE": 483574.0, "Y_COORDINATE": 146664.0, "LATITUDE": 51.2130716, "LONGITUDE": -0.8048639 }, "geometry": { "type": "Point", "coordinates": [ 483574.0, 146664.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442622, "UPRN": 10013888514, "X_COORDINATE": 483583.0, "Y_COORDINATE": 146641.0, "LATITUDE": 51.2128636, "LONGITUDE": -0.8047404 }, "geometry": { "type": "Point", "coordinates": [ 483583.0, 146641.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443969, "UPRN": 10013890071, "X_COORDINATE": 483586.0, "Y_COORDINATE": 146637.0, "LATITUDE": 51.2128272, "LONGITUDE": -0.8046984 }, "geometry": { "type": "Point", "coordinates": [ 483586.0, 146637.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442623, "UPRN": 10013888515, "X_COORDINATE": 483588.0, "Y_COORDINATE": 146632.0, "LATITUDE": 51.2127819, "LONGITUDE": -0.8046709 }, "geometry": { "type": "Point", "coordinates": [ 483588.0, 146632.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269577, "UPRN": 10091110901, "X_COORDINATE": 483591.0, "Y_COORDINATE": 146614.0, "LATITUDE": 51.2126197, "LONGITUDE": -0.8046322 }, "geometry": { "type": "Point", "coordinates": [ 483591.0, 146614.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448775, "UPRN": 10013895142, "X_COORDINATE": 483599.0, "Y_COORDINATE": 146696.0, "LATITUDE": 51.2133557, "LONGITUDE": -0.8044986 }, "geometry": { "type": "Point", "coordinates": [ 483599.0, 146696.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449171, "UPRN": 10013895542, "X_COORDINATE": 483608.0, "Y_COORDINATE": 146701.0, "LATITUDE": 51.2133993, "LONGITUDE": -0.8043686 }, "geometry": { "type": "Point", "coordinates": [ 483608.0, 146701.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448019, "UPRN": 10013894378, "X_COORDINATE": 483619.0, "Y_COORDINATE": 146666.0, "LATITUDE": 51.213083, "LONGITUDE": -0.8042193 }, "geometry": { "type": "Point", "coordinates": [ 483619.0, 146666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267601, "UPRN": 10091108921, "X_COORDINATE": 483621.0, "Y_COORDINATE": 146607.0, "LATITUDE": 51.2125523, "LONGITUDE": -0.8042044 }, "geometry": { "type": "Point", "coordinates": [ 483621.0, 146607.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446078, "UPRN": 10013892380, "X_COORDINATE": 483665.0, "Y_COORDINATE": 146639.0, "LATITUDE": 51.2128336, "LONGITUDE": -0.8035672 }, "geometry": { "type": "Point", "coordinates": [ 483665.0, 146639.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447582, "UPRN": 10013893933, "X_COORDINATE": 483531.0, "Y_COORDINATE": 146430.0, "LATITUDE": 51.2109742, "LONGITUDE": -0.8055337 }, "geometry": { "type": "Point", "coordinates": [ 483531.0, 146430.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450523, "UPRN": 10013896906, "X_COORDINATE": 483532.0, "Y_COORDINATE": 146414.0, "LATITUDE": 51.2108302, "LONGITUDE": -0.8055231 }, "geometry": { "type": "Point", "coordinates": [ 483532.0, 146414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450524, "UPRN": 10013896907, "X_COORDINATE": 483532.0, "Y_COORDINATE": 146414.0, "LATITUDE": 51.2108302, "LONGITUDE": -0.8055231 }, "geometry": { "type": "Point", "coordinates": [ 483532.0, 146414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444076, "UPRN": 10013890215, "X_COORDINATE": 483547.0, "Y_COORDINATE": 146545.0, "LATITUDE": 51.2120058, "LONGITUDE": -0.805278 }, "geometry": { "type": "Point", "coordinates": [ 483547.0, 146545.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444061, "UPRN": 10013890200, "X_COORDINATE": 483552.0, "Y_COORDINATE": 146532.0, "LATITUDE": 51.2118882, "LONGITUDE": -0.8052094 }, "geometry": { "type": "Point", "coordinates": [ 483552.0, 146532.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444060, "UPRN": 10013890199, "X_COORDINATE": 483553.0, "Y_COORDINATE": 146538.0, "LATITUDE": 51.211942, "LONGITUDE": -0.8051937 }, "geometry": { "type": "Point", "coordinates": [ 483553.0, 146538.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444730, "UPRN": 10013890925, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444729, "UPRN": 10013890924, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444728, "UPRN": 10013890923, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444727, "UPRN": 10013890922, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265790, "UPRN": 10091107096, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444059, "UPRN": 10013890198, "X_COORDINATE": 483571.0, "Y_COORDINATE": 146543.0, "LATITUDE": 51.2119843, "LONGITUDE": -0.8049349 }, "geometry": { "type": "Point", "coordinates": [ 483571.0, 146543.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444058, "UPRN": 10013890197, "X_COORDINATE": 483579.0, "Y_COORDINATE": 146544.0, "LATITUDE": 51.2119921, "LONGITUDE": -0.8048202 }, "geometry": { "type": "Point", "coordinates": [ 483579.0, 146544.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447244, "UPRN": 10013893586, "X_COORDINATE": 483579.0, "Y_COORDINATE": 146597.0, "LATITUDE": 51.2124686, "LONGITUDE": -0.8048079 }, "geometry": { "type": "Point", "coordinates": [ 483579.0, 146597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450481, "UPRN": 10013896861, "X_COORDINATE": 483582.0, "Y_COORDINATE": 146478.0, "LATITUDE": 51.2113983, "LONGITUDE": -0.8047926 }, "geometry": { "type": "Point", "coordinates": [ 483582.0, 146478.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444057, "UPRN": 10013890196, "X_COORDINATE": 483587.0, "Y_COORDINATE": 146546.0, "LATITUDE": 51.2120089, "LONGITUDE": -0.8047052 }, "geometry": { "type": "Point", "coordinates": [ 483587.0, 146546.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448464, "UPRN": 10013894824, "X_COORDINATE": 483609.0, "Y_COORDINATE": 146577.0, "LATITUDE": 51.2122844, "LONGITUDE": -0.8043831 }, "geometry": { "type": "Point", "coordinates": [ 483609.0, 146577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449804, "UPRN": 10013896179, "X_COORDINATE": 483615.0, "Y_COORDINATE": 146512.0, "LATITUDE": 51.2116991, "LONGITUDE": -0.8043124 }, "geometry": { "type": "Point", "coordinates": [ 483615.0, 146512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447581, "UPRN": 10013893932, "X_COORDINATE": 483640.0, "Y_COORDINATE": 146444.0, "LATITUDE": 51.2110842, "LONGITUDE": -0.8039704 }, "geometry": { "type": "Point", "coordinates": [ 483640.0, 146444.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444543, "UPRN": 10013890726, "X_COORDINATE": 483642.0, "Y_COORDINATE": 146599.0, "LATITUDE": 51.2124773, "LONGITUDE": -0.8039057 }, "geometry": { "type": "Point", "coordinates": [ 483642.0, 146599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266964, "UPRN": 10091108279, "X_COORDINATE": 483526.0, "Y_COORDINATE": 146587.0, "LATITUDE": 51.2123864, "LONGITUDE": -0.8055688 }, "geometry": { "type": "Point", "coordinates": [ 483526.0, 146587.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268991, "UPRN": 10091110315, "X_COORDINATE": 483568.0, "Y_COORDINATE": 146578.0, "LATITUDE": 51.2122994, "LONGITUDE": -0.8049697 }, "geometry": { "type": "Point", "coordinates": [ 483568.0, 146578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269123, "UPRN": 10091110447, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913083, "UPRN": 10094581570, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913871, "UPRN": 10094582372, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913872, "UPRN": 10094582373, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18049433, "UPRN": 10025700283, "X_COORDINATE": 483601.57, "Y_COORDINATE": 146856.11, "LATITUDE": 51.2147947, "LONGITUDE": -0.8044246 }, "geometry": { "type": "Point", "coordinates": [ 483601.57, 146856.10999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 15449135, "UPRN": 10013895506, "X_COORDINATE": 483606.0, "Y_COORDINATE": 146765.0, "LATITUDE": 51.213975, "LONGITUDE": -0.8043823 }, "geometry": { "type": "Point", "coordinates": [ 483606.0, 146765.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445471, "UPRN": 10013891761, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2147897, "LONGITUDE": -0.804032 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20629839, "UPRN": 10091941611, "X_COORDINATE": 483645.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136906, "LONGITUDE": -0.8038313 }, "geometry": { "type": "Point", "coordinates": [ 483645.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449514, "UPRN": 10013895887, "X_COORDINATE": 483660.0, "Y_COORDINATE": 146858.0, "LATITUDE": 51.2148032, "LONGITUDE": -0.8035878 }, "geometry": { "type": "Point", "coordinates": [ 483660.0, 146858.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266915, "UPRN": 10091108230, "X_COORDINATE": 483681.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.214, "LONGITUDE": -0.8033079 }, "geometry": { "type": "Point", "coordinates": [ 483681.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266914, "UPRN": 10091108229, "X_COORDINATE": 483681.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.214, "LONGITUDE": -0.8033079 }, "geometry": { "type": "Point", "coordinates": [ 483681.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266913, "UPRN": 10091108228, "X_COORDINATE": 483681.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.214, "LONGITUDE": -0.8033079 }, "geometry": { "type": "Point", "coordinates": [ 483681.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266912, "UPRN": 10091108227, "X_COORDINATE": 483681.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.214, "LONGITUDE": -0.8033079 }, "geometry": { "type": "Point", "coordinates": [ 483681.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266911, "UPRN": 10091108226, "X_COORDINATE": 483681.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.214, "LONGITUDE": -0.8033079 }, "geometry": { "type": "Point", "coordinates": [ 483681.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266705, "UPRN": 10091108018, "X_COORDINATE": 483681.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.214, "LONGITUDE": -0.8033079 }, "geometry": { "type": "Point", "coordinates": [ 483681.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266916, "UPRN": 10091108231, "X_COORDINATE": 483690.0, "Y_COORDINATE": 146780.0, "LATITUDE": 51.2140975, "LONGITUDE": -0.8031765 }, "geometry": { "type": "Point", "coordinates": [ 483690.0, 146780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266907, "UPRN": 10091108222, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266910, "UPRN": 10091108225, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266909, "UPRN": 10091108224, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266908, "UPRN": 10091108223, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266706, "UPRN": 10091108019, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266707, "UPRN": 10091108020, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266902, "UPRN": 10091108217, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20664396, "UPRN": 10092066936, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268978, "UPRN": 10091110302, "X_COORDINATE": 483701.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2143207, "LONGITUDE": -0.8030132 }, "geometry": { "type": "Point", "coordinates": [ 483701.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447354, "UPRN": 10013893698, "X_COORDINATE": 483707.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2148232, "LONGITUDE": -0.8029143 }, "geometry": { "type": "Point", "coordinates": [ 483707.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447355, "UPRN": 10013893699, "X_COORDINATE": 483707.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2148232, "LONGITUDE": -0.8029143 }, "geometry": { "type": "Point", "coordinates": [ 483707.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447356, "UPRN": 10013893700, "X_COORDINATE": 483707.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2148232, "LONGITUDE": -0.8029143 }, "geometry": { "type": "Point", "coordinates": [ 483707.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444544, "UPRN": 10013890727, "X_COORDINATE": 483712.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2141303, "LONGITUDE": -0.8028607 }, "geometry": { "type": "Point", "coordinates": [ 483712.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450177, "UPRN": 10013896553, "X_COORDINATE": 483713.0, "Y_COORDINATE": 146749.0, "LATITUDE": 51.2138155, "LONGITUDE": -0.8028545 }, "geometry": { "type": "Point", "coordinates": [ 483713.0, 146749.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266906, "UPRN": 10091108221, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266905, "UPRN": 10091108220, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266904, "UPRN": 10091108219, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266903, "UPRN": 10091108218, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117402, "UPRN": 10096745986, "X_COORDINATE": 483699.59, "Y_COORDINATE": 146757.17, "LATITUDE": 51.2138909, "LONGITUDE": -0.8030445 }, "geometry": { "type": "Point", "coordinates": [ 483699.590000000025611, 146757.170000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 23117403, "UPRN": 10096745987, "X_COORDINATE": 483692.54, "Y_COORDINATE": 146752.43, "LATITUDE": 51.2138493, "LONGITUDE": -0.8031466 }, "geometry": { "type": "Point", "coordinates": [ 483692.539999999979045, 146752.43 ] } }, -{ "type": "Feature", "properties": { "FID": 23117404, "UPRN": 10096745988, "X_COORDINATE": 483685.09, "Y_COORDINATE": 146761.1, "LATITUDE": 51.2139283, "LONGITUDE": -0.8032512 }, "geometry": { "type": "Point", "coordinates": [ 483685.090000000025611, 146761.1 ] } }, -{ "type": "Feature", "properties": { "FID": 17495406, "UPRN": 10024874619, "X_COORDINATE": 483720.64, "Y_COORDINATE": 146688.71, "LATITUDE": 51.2132723, "LONGITUDE": -0.8027592 }, "geometry": { "type": "Point", "coordinates": [ 483720.64000000001397, 146688.71 ] } }, -{ "type": "Feature", "properties": { "FID": 17494687, "UPRN": 10024873705, "X_COORDINATE": 483660.85, "Y_COORDINATE": 146719.45, "LATITUDE": 51.2135574, "LONGITUDE": -0.8036078 }, "geometry": { "type": "Point", "coordinates": [ 483660.849999999976717, 146719.450000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 23116331, "UPRN": 10096744713, "X_COORDINATE": 483609.17, "Y_COORDINATE": 146887.5, "LATITUDE": 51.2150758, "LONGITUDE": -0.8043085 }, "geometry": { "type": "Point", "coordinates": [ 483609.169999999983702, 146887.5 ] } }, -{ "type": "Feature", "properties": { "FID": 15450667, "UPRN": 10013897096, "X_COORDINATE": 483629.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.2153831, "LONGITUDE": -0.8040166 }, "geometry": { "type": "Point", "coordinates": [ 483629.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912269, "UPRN": 10094580744, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116860, "UPRN": 10096745248, "X_COORDINATE": 483714.18, "Y_COORDINATE": 146737.01, "LATITUDE": 51.2137075, "LONGITUDE": -0.8028404 }, "geometry": { "type": "Point", "coordinates": [ 483714.18, 146737.01 ] } }, -{ "type": "Feature", "properties": { "FID": 23116861, "UPRN": 10096745249, "X_COORDINATE": 483702.06, "Y_COORDINATE": 146731.89, "LATITUDE": 51.2136633, "LONGITUDE": -0.8030151 }, "geometry": { "type": "Point", "coordinates": [ 483702.06, 146731.89000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 23116862, "UPRN": 10096745250, "X_COORDINATE": 483715.13, "Y_COORDINATE": 146734.46, "LATITUDE": 51.2136844, "LONGITUDE": -0.8028274 }, "geometry": { "type": "Point", "coordinates": [ 483715.13, 146734.46 ] } }, -{ "type": "Feature", "properties": { "FID": 23116863, "UPRN": 10096745251, "X_COORDINATE": 483702.94, "Y_COORDINATE": 146728.37, "LATITUDE": 51.2136315, "LONGITUDE": -0.8030033 }, "geometry": { "type": "Point", "coordinates": [ 483702.94, 146728.37 ] } }, -{ "type": "Feature", "properties": { "FID": 23116864, "UPRN": 10096745252, "X_COORDINATE": 483711.0, "Y_COORDINATE": 146733.0, "LATITUDE": 51.2136719, "LONGITUDE": -0.8028869 }, "geometry": { "type": "Point", "coordinates": [ 483711.0, 146733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117033, "UPRN": 10096745421, "X_COORDINATE": 483608.21, "Y_COORDINATE": 146896.69, "LATITUDE": 51.2151586, "LONGITUDE": -0.8043201 }, "geometry": { "type": "Point", "coordinates": [ 483608.210000000020955, 146896.69 ] } }, -{ "type": "Feature", "properties": { "FID": 23117103, "UPRN": 10096745504, "X_COORDINATE": 483693.22, "Y_COORDINATE": 146963.81, "LATITUDE": 51.2157495, "LONGITUDE": -0.8030876 }, "geometry": { "type": "Point", "coordinates": [ 483693.21999999997206, 146963.81 ] } }, -{ "type": "Feature", "properties": { "FID": 20267577, "UPRN": 10091108897, "X_COORDINATE": 483431.0, "Y_COORDINATE": 146766.0, "LATITUDE": 51.2140095, "LONGITUDE": -0.806887 }, "geometry": { "type": "Point", "coordinates": [ 483431.0, 146766.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450276, "UPRN": 10013896654, "X_COORDINATE": 483459.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.2146977, "LONGITUDE": -0.8064684 }, "geometry": { "type": "Point", "coordinates": [ 483459.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447381, "UPRN": 10013893726, "X_COORDINATE": 483493.0, "Y_COORDINATE": 146766.0, "LATITUDE": 51.2140005, "LONGITUDE": -0.8059996 }, "geometry": { "type": "Point", "coordinates": [ 483493.0, 146766.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447546, "UPRN": 10013893896, "X_COORDINATE": 483518.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2134305, "LONGITUDE": -0.8056564 }, "geometry": { "type": "Point", "coordinates": [ 483518.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116310, "UPRN": 10096744692, "X_COORDINATE": 483465.2, "Y_COORDINATE": 146832.59, "LATITUDE": 51.2146032, "LONGITUDE": -0.806382 }, "geometry": { "type": "Point", "coordinates": [ 483465.200000000011642, 146832.59 ] } }, -{ "type": "Feature", "properties": { "FID": 23116382, "UPRN": 10096744764, "X_COORDINATE": 483516.96, "Y_COORDINATE": 146715.91, "LATITUDE": 51.2135467, "LONGITUDE": -0.8056682 }, "geometry": { "type": "Point", "coordinates": [ 483516.960000000020955, 146715.91 ] } }, -{ "type": "Feature", "properties": { "FID": 23116506, "UPRN": 10096744894, "X_COORDINATE": 483513.46, "Y_COORDINATE": 146733.62, "LATITUDE": 51.2137064, "LONGITUDE": -0.8057142 }, "geometry": { "type": "Point", "coordinates": [ 483513.460000000020955, 146733.62 ] } }, -{ "type": "Feature", "properties": { "FID": 15447246, "UPRN": 10013893588, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447247, "UPRN": 10013893589, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447245, "UPRN": 10013893587, "X_COORDINATE": 483724.0, "Y_COORDINATE": 146788.0, "LATITUDE": 51.2141645, "LONGITUDE": -0.802688 }, "geometry": { "type": "Point", "coordinates": [ 483724.0, 146788.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267515, "UPRN": 10091108835, "X_COORDINATE": 483728.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.214065, "LONGITUDE": -0.8026333 }, "geometry": { "type": "Point", "coordinates": [ 483728.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267514, "UPRN": 10091108834, "X_COORDINATE": 483732.0, "Y_COORDINATE": 146771.0, "LATITUDE": 51.2140105, "LONGITUDE": -0.8025774 }, "geometry": { "type": "Point", "coordinates": [ 483732.0, 146771.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266427, "UPRN": 10091107740, "X_COORDINATE": 483733.0, "Y_COORDINATE": 146757.0, "LATITUDE": 51.2138845, "LONGITUDE": -0.8025664 }, "geometry": { "type": "Point", "coordinates": [ 483733.0, 146757.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268963, "UPRN": 10091110287, "X_COORDINATE": 483745.0, "Y_COORDINATE": 146816.0, "LATITUDE": 51.2144131, "LONGITUDE": -0.8023809 }, "geometry": { "type": "Point", "coordinates": [ 483745.0, 146816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267524, "UPRN": 10091108844, "X_COORDINATE": 483746.0, "Y_COORDINATE": 146789.0, "LATITUDE": 51.2141702, "LONGITUDE": -0.8023728 }, "geometry": { "type": "Point", "coordinates": [ 483746.0, 146789.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450601, "UPRN": 10013897024, "X_COORDINATE": 483749.0, "Y_COORDINATE": 146763.0, "LATITUDE": 51.2139361, "LONGITUDE": -0.8023359 }, "geometry": { "type": "Point", "coordinates": [ 483749.0, 146763.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446927, "UPRN": 10013893267, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140708, "LONGITUDE": -0.8023181 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446928, "UPRN": 10013893268, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140708, "LONGITUDE": -0.8023181 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17501588, "UPRN": 10024882306, "X_COORDINATE": 483756.92, "Y_COORDINATE": 146835.51, "LATITUDE": 51.2145868, "LONGITUDE": -0.8022057 }, "geometry": { "type": "Point", "coordinates": [ 483756.919999999983702, 146835.51 ] } }, -{ "type": "Feature", "properties": { "FID": 20268910, "UPRN": 10091110234, "X_COORDINATE": 483760.0, "Y_COORDINATE": 146792.0, "LATITUDE": 51.2141952, "LONGITUDE": -0.8021717 }, "geometry": { "type": "Point", "coordinates": [ 483760.0, 146792.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444230, "UPRN": 10013890389, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444524, "UPRN": 10013890707, "X_COORDINATE": 483718.0, "Y_COORDINATE": 147238.0, "LATITUDE": 51.2182109, "LONGITUDE": -0.802669 }, "geometry": { "type": "Point", "coordinates": [ 483718.0, 147238.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444523, "UPRN": 10013890706, "X_COORDINATE": 483723.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2190103, "LONGITUDE": -0.8025767 }, "geometry": { "type": "Point", "coordinates": [ 483723.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444522, "UPRN": 10013890705, "X_COORDINATE": 483676.0, "Y_COORDINATE": 147282.0, "LATITUDE": 51.2186126, "LONGITUDE": -0.80326 }, "geometry": { "type": "Point", "coordinates": [ 483676.0, 147282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913642, "UPRN": 10094582142, "X_COORDINATE": 483696.94, "Y_COORDINATE": 147153.04, "LATITUDE": 51.2174502, "LONGITUDE": -0.8029903 }, "geometry": { "type": "Point", "coordinates": [ 483696.94, 147153.04 ] } }, -{ "type": "Feature", "properties": { "FID": 21913643, "UPRN": 10094582143, "X_COORDINATE": 483709.5, "Y_COORDINATE": 147156.24, "LATITUDE": 51.2174771, "LONGITUDE": -0.8028097 }, "geometry": { "type": "Point", "coordinates": [ 483709.5, 147156.24 ] } }, -{ "type": "Feature", "properties": { "FID": 21913644, "UPRN": 10094582144, "X_COORDINATE": 483718.62, "Y_COORDINATE": 147162.65, "LATITUDE": 51.2175334, "LONGITUDE": -0.8026777 }, "geometry": { "type": "Point", "coordinates": [ 483718.62, 147162.65 ] } }, -{ "type": "Feature", "properties": { "FID": 21913645, "UPRN": 10094582145, "X_COORDINATE": 483697.93, "Y_COORDINATE": 147153.53, "LATITUDE": 51.2174545, "LONGITUDE": -0.802976 }, "geometry": { "type": "Point", "coordinates": [ 483697.93, 147153.53 ] } }, -{ "type": "Feature", "properties": { "FID": 21913646, "UPRN": 10094582146, "X_COORDINATE": 483718.52, "Y_COORDINATE": 147162.09, "LATITUDE": 51.2175284, "LONGITUDE": -0.8026793 }, "geometry": { "type": "Point", "coordinates": [ 483718.520000000018626, 147162.09 ] } }, -{ "type": "Feature", "properties": { "FID": 21913647, "UPRN": 10094582147, "X_COORDINATE": 483719.36, "Y_COORDINATE": 147163.14, "LATITUDE": 51.2175377, "LONGITUDE": -0.802667 }, "geometry": { "type": "Point", "coordinates": [ 483719.35999999998603, 147163.14000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 21913648, "UPRN": 10094582148, "X_COORDINATE": 483709.16, "Y_COORDINATE": 147154.95, "LATITUDE": 51.2174656, "LONGITUDE": -0.8028149 }, "geometry": { "type": "Point", "coordinates": [ 483709.159999999974389, 147154.950000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 21913649, "UPRN": 10094582149, "X_COORDINATE": 483698.32, "Y_COORDINATE": 147154.71, "LATITUDE": 51.217465, "LONGITUDE": -0.8029701 }, "geometry": { "type": "Point", "coordinates": [ 483698.32, 147154.71 ] } }, -{ "type": "Feature", "properties": { "FID": 21913650, "UPRN": 10094582150, "X_COORDINATE": 483707.44, "Y_COORDINATE": 147159.14, "LATITUDE": 51.2175035, "LONGITUDE": -0.8028386 }, "geometry": { "type": "Point", "coordinates": [ 483707.44, 147159.14000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 15443905, "UPRN": 10013889993, "X_COORDINATE": 483726.0, "Y_COORDINATE": 147031.0, "LATITUDE": 51.2163488, "LONGITUDE": -0.8026027 }, "geometry": { "type": "Point", "coordinates": [ 483726.0, 147031.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447502, "UPRN": 10013893852, "X_COORDINATE": 483754.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2159311, "LONGITUDE": -0.8022126 }, "geometry": { "type": "Point", "coordinates": [ 483754.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448616, "UPRN": 10013894976, "X_COORDINATE": 483771.0, "Y_COORDINATE": 146758.0, "LATITUDE": 51.2138879, "LONGITUDE": -0.8020222 }, "geometry": { "type": "Point", "coordinates": [ 483771.0, 146758.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910915, "UPRN": 10094579338, "X_COORDINATE": 483749.0, "Y_COORDINATE": 146908.0, "LATITUDE": 51.2152396, "LONGITUDE": -0.8023022 }, "geometry": { "type": "Point", "coordinates": [ 483749.0, 146908.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117345, "UPRN": 10096745929, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17775141, "UPRN": 10025226898, "X_COORDINATE": 483711.99, "Y_COORDINATE": 146604.51, "LATITUDE": 51.2125166, "LONGITUDE": -0.8029026 }, "geometry": { "type": "Point", "coordinates": [ 483711.99, 146604.51 ] } }, -{ "type": "Feature", "properties": { "FID": 20266653, "UPRN": 10091107966, "X_COORDINATE": 483736.0, "Y_COORDINATE": 146668.0, "LATITUDE": 51.2130839, "LONGITUDE": -0.8025442 }, "geometry": { "type": "Point", "coordinates": [ 483736.0, 146668.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266654, "UPRN": 10091107967, "X_COORDINATE": 483741.0, "Y_COORDINATE": 146671.0, "LATITUDE": 51.2131101, "LONGITUDE": -0.8024719 }, "geometry": { "type": "Point", "coordinates": [ 483741.0, 146671.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266655, "UPRN": 10091107968, "X_COORDINATE": 483749.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.2131719, "LONGITUDE": -0.8023558 }, "geometry": { "type": "Point", "coordinates": [ 483749.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17495407, "UPRN": 10024874620, "X_COORDINATE": 483749.81, "Y_COORDINATE": 146595.54, "LATITUDE": 51.2124304, "LONGITUDE": -0.8023634 }, "geometry": { "type": "Point", "coordinates": [ 483749.81, 146595.54 ] } }, -{ "type": "Feature", "properties": { "FID": 20266656, "UPRN": 10091107969, "X_COORDINATE": 483753.0, "Y_COORDINATE": 146672.0, "LATITUDE": 51.2131174, "LONGITUDE": -0.8022999 }, "geometry": { "type": "Point", "coordinates": [ 483753.0, 146672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444530, "UPRN": 10013890713, "X_COORDINATE": 483760.0, "Y_COORDINATE": 146716.0, "LATITUDE": 51.2135119, "LONGITUDE": -0.8021894 }, "geometry": { "type": "Point", "coordinates": [ 483760.0, 146716.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444531, "UPRN": 10013890714, "X_COORDINATE": 483760.0, "Y_COORDINATE": 146716.0, "LATITUDE": 51.2135119, "LONGITUDE": -0.8021894 }, "geometry": { "type": "Point", "coordinates": [ 483760.0, 146716.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444532, "UPRN": 10013890715, "X_COORDINATE": 483763.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.2134575, "LONGITUDE": -0.8021479 }, "geometry": { "type": "Point", "coordinates": [ 483763.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444533, "UPRN": 10013890716, "X_COORDINATE": 483767.0, "Y_COORDINATE": 146704.0, "LATITUDE": 51.213403, "LONGITUDE": -0.8020921 }, "geometry": { "type": "Point", "coordinates": [ 483767.0, 146704.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444535, "UPRN": 10013890718, "X_COORDINATE": 483769.0, "Y_COORDINATE": 146694.0, "LATITUDE": 51.2133128, "LONGITUDE": -0.8020658 }, "geometry": { "type": "Point", "coordinates": [ 483769.0, 146694.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444534, "UPRN": 10013890717, "X_COORDINATE": 483769.0, "Y_COORDINATE": 146699.0, "LATITUDE": 51.2133578, "LONGITUDE": -0.8020646 }, "geometry": { "type": "Point", "coordinates": [ 483769.0, 146699.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444536, "UPRN": 10013890719, "X_COORDINATE": 483772.0, "Y_COORDINATE": 146689.0, "LATITUDE": 51.2132674, "LONGITUDE": -0.802024 }, "geometry": { "type": "Point", "coordinates": [ 483772.0, 146689.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444537, "UPRN": 10013890720, "X_COORDINATE": 483773.0, "Y_COORDINATE": 146684.0, "LATITUDE": 51.2132223, "LONGITUDE": -0.8020108 }, "geometry": { "type": "Point", "coordinates": [ 483773.0, 146684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444538, "UPRN": 10013890721, "X_COORDINATE": 483775.0, "Y_COORDINATE": 146680.0, "LATITUDE": 51.2131861, "LONGITUDE": -0.8019831 }, "geometry": { "type": "Point", "coordinates": [ 483775.0, 146680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444539, "UPRN": 10013890722, "X_COORDINATE": 483777.0, "Y_COORDINATE": 146674.0, "LATITUDE": 51.2131318, "LONGITUDE": -0.8019559 }, "geometry": { "type": "Point", "coordinates": [ 483777.0, 146674.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116865, "UPRN": 10096745253, "X_COORDINATE": 483728.73, "Y_COORDINATE": 146714.16, "LATITUDE": 51.2134999, "LONGITUDE": -0.8026375 }, "geometry": { "type": "Point", "coordinates": [ 483728.729999999981374, 146714.16 ] } }, -{ "type": "Feature", "properties": { "FID": 23116866, "UPRN": 10096745254, "X_COORDINATE": 483725.04, "Y_COORDINATE": 146687.56, "LATITUDE": 51.2132614, "LONGITUDE": -0.8026965 }, "geometry": { "type": "Point", "coordinates": [ 483725.039999999979045, 146687.56 ] } }, -{ "type": "Feature", "properties": { "FID": 15448553, "UPRN": 10013894913, "X_COORDINATE": 483413.0, "Y_COORDINATE": 146544.0, "LATITUDE": 51.2120163, "LONGITUDE": -0.8071962 }, "geometry": { "type": "Point", "coordinates": [ 483413.0, 146544.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447087, "UPRN": 10013893427, "X_COORDINATE": 483443.0, "Y_COORDINATE": 146555.0, "LATITUDE": 51.2121109, "LONGITUDE": -0.8067642 }, "geometry": { "type": "Point", "coordinates": [ 483443.0, 146555.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447088, "UPRN": 10013893428, "X_COORDINATE": 483443.0, "Y_COORDINATE": 146555.0, "LATITUDE": 51.2121109, "LONGITUDE": -0.8067642 }, "geometry": { "type": "Point", "coordinates": [ 483443.0, 146555.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267347, "UPRN": 10091108663, "X_COORDINATE": 483395.0, "Y_COORDINATE": 146555.0, "LATITUDE": 51.2121179, "LONGITUDE": -0.8074513 }, "geometry": { "type": "Point", "coordinates": [ 483395.0, 146555.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267348, "UPRN": 10091108664, "X_COORDINATE": 483395.0, "Y_COORDINATE": 146555.0, "LATITUDE": 51.2121179, "LONGITUDE": -0.8074513 }, "geometry": { "type": "Point", "coordinates": [ 483395.0, 146555.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267349, "UPRN": 10091108665, "X_COORDINATE": 483378.0, "Y_COORDINATE": 146557.0, "LATITUDE": 51.2121383, "LONGITUDE": -0.8076941 }, "geometry": { "type": "Point", "coordinates": [ 483378.0, 146557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267350, "UPRN": 10091108666, "X_COORDINATE": 483404.0, "Y_COORDINATE": 146562.0, "LATITUDE": 51.2121795, "LONGITUDE": -0.8073208 }, "geometry": { "type": "Point", "coordinates": [ 483404.0, 146562.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267351, "UPRN": 10091108667, "X_COORDINATE": 483404.0, "Y_COORDINATE": 146562.0, "LATITUDE": 51.2121795, "LONGITUDE": -0.8073208 }, "geometry": { "type": "Point", "coordinates": [ 483404.0, 146562.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447089, "UPRN": 10013893429, "X_COORDINATE": 483444.0, "Y_COORDINATE": 146567.0, "LATITUDE": 51.2122186, "LONGITUDE": -0.8067471 }, "geometry": { "type": "Point", "coordinates": [ 483444.0, 146567.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447090, "UPRN": 10013893430, "X_COORDINATE": 483444.0, "Y_COORDINATE": 146567.0, "LATITUDE": 51.2122186, "LONGITUDE": -0.8067471 }, "geometry": { "type": "Point", "coordinates": [ 483444.0, 146567.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267352, "UPRN": 10091108668, "X_COORDINATE": 483405.0, "Y_COORDINATE": 146577.0, "LATITUDE": 51.2123142, "LONGITUDE": -0.807303 }, "geometry": { "type": "Point", "coordinates": [ 483405.0, 146577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17775142, "UPRN": 10025226899, "X_COORDINATE": 483482.53, "Y_COORDINATE": 146579.29, "LATITUDE": 51.2123235, "LONGITUDE": -0.8061928 }, "geometry": { "type": "Point", "coordinates": [ 483482.53000000002794, 146579.29 ] } }, -{ "type": "Feature", "properties": { "FID": 15448613, "UPRN": 10013894973, "X_COORDINATE": 483424.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2123474, "LONGITUDE": -0.8070302 }, "geometry": { "type": "Point", "coordinates": [ 483424.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723481, "UPRN": 100061602427, "X_COORDINATE": 484106.0, "Y_COORDINATE": 146482.0, "LATITUDE": 51.2113574, "LONGITUDE": -0.7972917 }, "geometry": { "type": "Point", "coordinates": [ 484106.0, 146482.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723462, "UPRN": 100061602408, "X_COORDINATE": 484104.0, "Y_COORDINATE": 146392.0, "LATITUDE": 51.2105486, "LONGITUDE": -0.7973414 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 146392.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723461, "UPRN": 100061602407, "X_COORDINATE": 484104.0, "Y_COORDINATE": 146392.0, "LATITUDE": 51.2105486, "LONGITUDE": -0.7973414 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 146392.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721281, "UPRN": 100061600074, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146532.0, "LATITUDE": 51.2118046, "LONGITUDE": -0.797051 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146532.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721280, "UPRN": 100061600073, "X_COORDINATE": 484117.0, "Y_COORDINATE": 146529.0, "LATITUDE": 51.2117783, "LONGITUDE": -0.7971233 }, "geometry": { "type": "Point", "coordinates": [ 484117.0, 146529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721279, "UPRN": 100061600072, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146527.0, "LATITUDE": 51.2117608, "LONGITUDE": -0.7971667 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146527.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721278, "UPRN": 100061600071, "X_COORDINATE": 484111.0, "Y_COORDINATE": 146526.0, "LATITUDE": 51.2117522, "LONGITUDE": -0.7972098 }, "geometry": { "type": "Point", "coordinates": [ 484111.0, 146526.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721277, "UPRN": 100061600070, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146524.0, "LATITUDE": 51.2117345, "LONGITUDE": -0.7972389 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146524.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721269, "UPRN": 100061600062, "X_COORDINATE": 484135.0, "Y_COORDINATE": 146515.0, "LATITUDE": 51.2116498, "LONGITUDE": -0.7968689 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 146515.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721268, "UPRN": 100061600061, "X_COORDINATE": 484135.0, "Y_COORDINATE": 146515.0, "LATITUDE": 51.2116498, "LONGITUDE": -0.7968689 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 146515.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719545, "UPRN": 100061598281, "X_COORDINATE": 484154.0, "Y_COORDINATE": 146532.0, "LATITUDE": 51.2117998, "LONGITUDE": -0.796593 }, "geometry": { "type": "Point", "coordinates": [ 484154.0, 146532.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719544, "UPRN": 100061598280, "X_COORDINATE": 484157.0, "Y_COORDINATE": 146534.0, "LATITUDE": 51.2118174, "LONGITUDE": -0.7965496 }, "geometry": { "type": "Point", "coordinates": [ 484157.0, 146534.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448643, "UPRN": 10013895009, "X_COORDINATE": 484138.0, "Y_COORDINATE": 146537.0, "LATITUDE": 51.2118472, "LONGITUDE": -0.7968208 }, "geometry": { "type": "Point", "coordinates": [ 484138.0, 146537.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448466, "UPRN": 10013894826, "X_COORDINATE": 484148.0, "Y_COORDINATE": 146523.0, "LATITUDE": 51.2117198, "LONGITUDE": -0.796681 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 146523.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449882, "UPRN": 10013896257, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146517.0, "LATITUDE": 51.2116697, "LONGITUDE": -0.7970545 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146517.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449962, "UPRN": 10013896338, "X_COORDINATE": 484126.0, "Y_COORDINATE": 146433.0, "LATITUDE": 51.2109139, "LONGITUDE": -0.7970169 }, "geometry": { "type": "Point", "coordinates": [ 484126.0, 146433.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449151, "UPRN": 10013895522, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146419.0, "LATITUDE": 51.2107906, "LONGITUDE": -0.7972635 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447414, "UPRN": 10013893760, "X_COORDINATE": 484101.0, "Y_COORDINATE": 146410.0, "LATITUDE": 51.2107108, "LONGITUDE": -0.7973801 }, "geometry": { "type": "Point", "coordinates": [ 484101.0, 146410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15920600, "UPRN": 10015352451, "X_COORDINATE": 484128.25, "Y_COORDINATE": 146371.75, "LATITUDE": 51.210363, "LONGITUDE": -0.796999 }, "geometry": { "type": "Point", "coordinates": [ 484128.25, 146371.75 ] } }, -{ "type": "Feature", "properties": { "FID": 31721270, "UPRN": 100061600063, "X_COORDINATE": 484131.0, "Y_COORDINATE": 146510.0, "LATITUDE": 51.2116054, "LONGITUDE": -0.7969273 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 146510.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721271, "UPRN": 100061600064, "X_COORDINATE": 484127.0, "Y_COORDINATE": 146507.0, "LATITUDE": 51.2115791, "LONGITUDE": -0.7969853 }, "geometry": { "type": "Point", "coordinates": [ 484127.0, 146507.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721272, "UPRN": 100061600065, "X_COORDINATE": 484126.0, "Y_COORDINATE": 146502.0, "LATITUDE": 51.2115343, "LONGITUDE": -0.7970008 }, "geometry": { "type": "Point", "coordinates": [ 484126.0, 146502.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721273, "UPRN": 100061600066, "X_COORDINATE": 484123.0, "Y_COORDINATE": 146494.0, "LATITUDE": 51.2114628, "LONGITUDE": -0.7970456 }, "geometry": { "type": "Point", "coordinates": [ 484123.0, 146494.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721275, "UPRN": 100061600068, "X_COORDINATE": 484104.0, "Y_COORDINATE": 146519.0, "LATITUDE": 51.2116903, "LONGITUDE": -0.7973117 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 146519.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721276, "UPRN": 100061600069, "X_COORDINATE": 484104.0, "Y_COORDINATE": 146519.0, "LATITUDE": 51.2116903, "LONGITUDE": -0.7973117 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 146519.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721274, "UPRN": 100061600067, "X_COORDINATE": 484096.0, "Y_COORDINATE": 146527.0, "LATITUDE": 51.2117634, "LONGITUDE": -0.7974243 }, "geometry": { "type": "Point", "coordinates": [ 484096.0, 146527.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445193, "UPRN": 10013891468, "X_COORDINATE": 484097.0, "Y_COORDINATE": 146493.0, "LATITUDE": 51.2114576, "LONGITUDE": -0.797418 }, "geometry": { "type": "Point", "coordinates": [ 484097.0, 146493.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723464, "UPRN": 100061602410, "X_COORDINATE": 484095.0, "Y_COORDINATE": 146390.0, "LATITUDE": 51.2105319, "LONGITUDE": -0.7974707 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 146390.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723463, "UPRN": 100061602409, "X_COORDINATE": 484095.0, "Y_COORDINATE": 146390.0, "LATITUDE": 51.2105319, "LONGITUDE": -0.7974707 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 146390.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17778842, "UPRN": 10025231388, "X_COORDINATE": 484067.95, "Y_COORDINATE": 146356.7, "LATITUDE": 51.2102365, "LONGITUDE": -0.7978656 }, "geometry": { "type": "Point", "coordinates": [ 484067.950000000011642, 146356.700000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 32122682, "UPRN": 100062162406, "X_COORDINATE": 484031.0, "Y_COORDINATE": 146450.0, "LATITUDE": 51.2110807, "LONGITUDE": -0.7983727 }, "geometry": { "type": "Point", "coordinates": [ 484031.0, 146450.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122681, "UPRN": 100062162405, "X_COORDINATE": 484038.0, "Y_COORDINATE": 146460.0, "LATITUDE": 51.2111696, "LONGITUDE": -0.7982701 }, "geometry": { "type": "Point", "coordinates": [ 484038.0, 146460.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730757, "UPRN": 100061610324, "X_COORDINATE": 484036.0, "Y_COORDINATE": 146322.0, "LATITUDE": 51.2099293, "LONGITUDE": -0.798331 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 146322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730756, "UPRN": 100061610323, "X_COORDINATE": 484036.0, "Y_COORDINATE": 146322.0, "LATITUDE": 51.2099293, "LONGITUDE": -0.798331 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 146322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730713, "UPRN": 100061610280, "X_COORDINATE": 484039.0, "Y_COORDINATE": 146376.0, "LATITUDE": 51.2104143, "LONGITUDE": -0.7982755 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 146376.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730712, "UPRN": 100061610279, "X_COORDINATE": 484039.0, "Y_COORDINATE": 146376.0, "LATITUDE": 51.2104143, "LONGITUDE": -0.7982755 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 146376.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730711, "UPRN": 100061610278, "X_COORDINATE": 484044.0, "Y_COORDINATE": 146369.0, "LATITUDE": 51.2103506, "LONGITUDE": -0.7982055 }, "geometry": { "type": "Point", "coordinates": [ 484044.0, 146369.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730710, "UPRN": 100061610277, "X_COORDINATE": 484044.0, "Y_COORDINATE": 146369.0, "LATITUDE": 51.2103506, "LONGITUDE": -0.7982055 }, "geometry": { "type": "Point", "coordinates": [ 484044.0, 146369.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730709, "UPRN": 100061610276, "X_COORDINATE": 484050.0, "Y_COORDINATE": 146360.0, "LATITUDE": 51.2102688, "LONGITUDE": -0.7981218 }, "geometry": { "type": "Point", "coordinates": [ 484050.0, 146360.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730708, "UPRN": 100061610275, "X_COORDINATE": 484050.0, "Y_COORDINATE": 146360.0, "LATITUDE": 51.2102688, "LONGITUDE": -0.7981218 }, "geometry": { "type": "Point", "coordinates": [ 484050.0, 146360.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730707, "UPRN": 100061610274, "X_COORDINATE": 484055.0, "Y_COORDINATE": 146351.0, "LATITUDE": 51.2101872, "LONGITUDE": -0.7980523 }, "geometry": { "type": "Point", "coordinates": [ 484055.0, 146351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730706, "UPRN": 100061610273, "X_COORDINATE": 484055.0, "Y_COORDINATE": 146351.0, "LATITUDE": 51.2101872, "LONGITUDE": -0.7980523 }, "geometry": { "type": "Point", "coordinates": [ 484055.0, 146351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727956, "UPRN": 100061607229, "X_COORDINATE": 484088.0, "Y_COORDINATE": 146505.0, "LATITUDE": 51.2115668, "LONGITUDE": -0.797544 }, "geometry": { "type": "Point", "coordinates": [ 484088.0, 146505.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727954, "UPRN": 100061607227, "X_COORDINATE": 484092.0, "Y_COORDINATE": 146509.0, "LATITUDE": 51.2116022, "LONGITUDE": -0.7974858 }, "geometry": { "type": "Point", "coordinates": [ 484092.0, 146509.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723480, "UPRN": 100061602426, "X_COORDINATE": 484093.0, "Y_COORDINATE": 146422.0, "LATITUDE": 51.2108199, "LONGITUDE": -0.7974918 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 146422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723479, "UPRN": 100061602425, "X_COORDINATE": 484093.0, "Y_COORDINATE": 146422.0, "LATITUDE": 51.2108199, "LONGITUDE": -0.7974918 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 146422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723478, "UPRN": 100061602424, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146430.0, "LATITUDE": 51.2108921, "LONGITUDE": -0.7975186 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146430.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723477, "UPRN": 100061602423, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146430.0, "LATITUDE": 51.2108921, "LONGITUDE": -0.7975186 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146430.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723476, "UPRN": 100061602422, "X_COORDINATE": 484088.0, "Y_COORDINATE": 146439.0, "LATITUDE": 51.2109735, "LONGITUDE": -0.7975594 }, "geometry": { "type": "Point", "coordinates": [ 484088.0, 146439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723475, "UPRN": 100061602421, "X_COORDINATE": 484088.0, "Y_COORDINATE": 146439.0, "LATITUDE": 51.2109735, "LONGITUDE": -0.7975594 }, "geometry": { "type": "Point", "coordinates": [ 484088.0, 146439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723474, "UPRN": 100061602420, "X_COORDINATE": 484058.0, "Y_COORDINATE": 146417.0, "LATITUDE": 51.2107801, "LONGITUDE": -0.7979939 }, "geometry": { "type": "Point", "coordinates": [ 484058.0, 146417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723473, "UPRN": 100061602419, "X_COORDINATE": 484058.0, "Y_COORDINATE": 146417.0, "LATITUDE": 51.2107801, "LONGITUDE": -0.7979939 }, "geometry": { "type": "Point", "coordinates": [ 484058.0, 146417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723472, "UPRN": 100061602418, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146408.0, "LATITUDE": 51.2106989, "LONGITUDE": -0.7979674 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146408.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723471, "UPRN": 100061602417, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146408.0, "LATITUDE": 51.2106989, "LONGITUDE": -0.7979674 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146408.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723470, "UPRN": 100061602416, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146401.0, "LATITUDE": 51.2106357, "LONGITUDE": -0.7979404 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723469, "UPRN": 100061602415, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146401.0, "LATITUDE": 51.2106357, "LONGITUDE": -0.7979404 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723468, "UPRN": 100061602414, "X_COORDINATE": 484065.0, "Y_COORDINATE": 146393.0, "LATITUDE": 51.2105633, "LONGITUDE": -0.7978993 }, "geometry": { "type": "Point", "coordinates": [ 484065.0, 146393.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723467, "UPRN": 100061602413, "X_COORDINATE": 484065.0, "Y_COORDINATE": 146393.0, "LATITUDE": 51.2105633, "LONGITUDE": -0.7978993 }, "geometry": { "type": "Point", "coordinates": [ 484065.0, 146393.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723466, "UPRN": 100061602412, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146388.0, "LATITUDE": 51.2105151, "LONGITUDE": -0.7975856 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146388.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723465, "UPRN": 100061602411, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146388.0, "LATITUDE": 51.2105151, "LONGITUDE": -0.7975856 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146388.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399945, "UPRN": 100062700039, "X_COORDINATE": 484031.0, "Y_COORDINATE": 146450.0, "LATITUDE": 51.2110807, "LONGITUDE": -0.7983727 }, "geometry": { "type": "Point", "coordinates": [ 484031.0, 146450.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18029621, "UPRN": 10025645203, "X_COORDINATE": 483780.98, "Y_COORDINATE": 146602.39, "LATITUDE": 51.2124875, "LONGITUDE": -0.8019156 }, "geometry": { "type": "Point", "coordinates": [ 483780.979999999981374, 146602.39000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 15444540, "UPRN": 10013890723, "X_COORDINATE": 483790.0, "Y_COORDINATE": 146681.0, "LATITUDE": 51.2131929, "LONGITUDE": -0.8017682 }, "geometry": { "type": "Point", "coordinates": [ 483790.0, 146681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444541, "UPRN": 10013890724, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146681.0, "LATITUDE": 51.2131923, "LONGITUDE": -0.8017109 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447566, "UPRN": 10013893916, "X_COORDINATE": 483812.0, "Y_COORDINATE": 146623.0, "LATITUDE": 51.2126682, "LONGITUDE": -0.8014668 }, "geometry": { "type": "Point", "coordinates": [ 483812.0, 146623.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117125, "UPRN": 10096745526, "X_COORDINATE": 483813.58, "Y_COORDINATE": 146730.0, "LATITUDE": 51.2136299, "LONGITUDE": -0.8014193 }, "geometry": { "type": "Point", "coordinates": [ 483813.580000000016298, 146730.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117122, "UPRN": 10096745523, "X_COORDINATE": 483813.78, "Y_COORDINATE": 146728.62, "LATITUDE": 51.2136175, "LONGITUDE": -0.8014167 }, "geometry": { "type": "Point", "coordinates": [ 483813.78000000002794, 146728.62 ] } }, -{ "type": "Feature", "properties": { "FID": 23117128, "UPRN": 10096745529, "X_COORDINATE": 483814.06, "Y_COORDINATE": 146727.17, "LATITUDE": 51.2136044, "LONGITUDE": -0.8014131 }, "geometry": { "type": "Point", "coordinates": [ 483814.06, 146727.170000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 23117130, "UPRN": 10096745531, "X_COORDINATE": 483815.07, "Y_COORDINATE": 146719.31, "LATITUDE": 51.2135336, "LONGITUDE": -0.8014004 }, "geometry": { "type": "Point", "coordinates": [ 483815.07, 146719.31 ] } }, -{ "type": "Feature", "properties": { "FID": 23117127, "UPRN": 10096745528, "X_COORDINATE": 483815.14, "Y_COORDINATE": 146717.42, "LATITUDE": 51.2135166, "LONGITUDE": -0.8013999 }, "geometry": { "type": "Point", "coordinates": [ 483815.14000000001397, 146717.420000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 23117124, "UPRN": 10096745525, "X_COORDINATE": 483815.18, "Y_COORDINATE": 146718.15, "LATITUDE": 51.2135231, "LONGITUDE": -0.8013991 }, "geometry": { "type": "Point", "coordinates": [ 483815.18, 146718.15 ] } }, -{ "type": "Feature", "properties": { "FID": 23117129, "UPRN": 10096745530, "X_COORDINATE": 483816.22, "Y_COORDINATE": 146724.87, "LATITUDE": 51.2135834, "LONGITUDE": -0.8013827 }, "geometry": { "type": "Point", "coordinates": [ 483816.21999999997206, 146724.87 ] } }, -{ "type": "Feature", "properties": { "FID": 23117126, "UPRN": 10096745527, "X_COORDINATE": 483817.28, "Y_COORDINATE": 146725.07, "LATITUDE": 51.2135851, "LONGITUDE": -0.8013675 }, "geometry": { "type": "Point", "coordinates": [ 483817.28000000002794, 146725.07 ] } }, -{ "type": "Feature", "properties": { "FID": 23117123, "UPRN": 10096745524, "X_COORDINATE": 483817.95, "Y_COORDINATE": 146725.2, "LATITUDE": 51.2135861, "LONGITUDE": -0.8013578 }, "geometry": { "type": "Point", "coordinates": [ 483817.950000000011642, 146725.200000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 31719533, "UPRN": 100061598269, "X_COORDINATE": 484163.0, "Y_COORDINATE": 146565.0, "LATITUDE": 51.2120952, "LONGITUDE": -0.7964564 }, "geometry": { "type": "Point", "coordinates": [ 484163.0, 146565.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719531, "UPRN": 100061598267, "X_COORDINATE": 484167.0, "Y_COORDINATE": 146566.0, "LATITUDE": 51.2121036, "LONGITUDE": -0.796399 }, "geometry": { "type": "Point", "coordinates": [ 484167.0, 146566.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719529, "UPRN": 100061598265, "X_COORDINATE": 484172.0, "Y_COORDINATE": 146568.0, "LATITUDE": 51.2121208, "LONGITUDE": -0.7963269 }, "geometry": { "type": "Point", "coordinates": [ 484172.0, 146568.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719527, "UPRN": 100061598263, "X_COORDINATE": 484176.0, "Y_COORDINATE": 146570.0, "LATITUDE": 51.2121382, "LONGITUDE": -0.7962692 }, "geometry": { "type": "Point", "coordinates": [ 484176.0, 146570.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719543, "UPRN": 100061598279, "X_COORDINATE": 484183.0, "Y_COORDINATE": 146542.0, "LATITUDE": 51.2118855, "LONGITUDE": -0.7961756 }, "geometry": { "type": "Point", "coordinates": [ 484183.0, 146542.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719525, "UPRN": 100061598261, "X_COORDINATE": 484184.0, "Y_COORDINATE": 146573.0, "LATITUDE": 51.212164, "LONGITUDE": -0.796154 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 146573.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719542, "UPRN": 100061598278, "X_COORDINATE": 484186.0, "Y_COORDINATE": 146547.0, "LATITUDE": 51.21193, "LONGITUDE": -0.7961315 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 146547.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719524, "UPRN": 100061598260, "X_COORDINATE": 484188.0, "Y_COORDINATE": 146574.0, "LATITUDE": 51.2121724, "LONGITUDE": -0.7960965 }, "geometry": { "type": "Point", "coordinates": [ 484188.0, 146574.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719541, "UPRN": 100061598277, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146547.0, "LATITUDE": 51.2119291, "LONGITUDE": -0.7960456 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146547.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719523, "UPRN": 100061598259, "X_COORDINATE": 484193.0, "Y_COORDINATE": 146576.0, "LATITUDE": 51.2121897, "LONGITUDE": -0.7960245 }, "geometry": { "type": "Point", "coordinates": [ 484193.0, 146576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719540, "UPRN": 100061598276, "X_COORDINATE": 484196.0, "Y_COORDINATE": 146550.0, "LATITUDE": 51.2119555, "LONGITUDE": -0.7959876 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 146550.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719522, "UPRN": 100061598258, "X_COORDINATE": 484200.0, "Y_COORDINATE": 146578.0, "LATITUDE": 51.2122066, "LONGITUDE": -0.7959238 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 146578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719539, "UPRN": 100061598275, "X_COORDINATE": 484200.0, "Y_COORDINATE": 146550.0, "LATITUDE": 51.2119549, "LONGITUDE": -0.7959304 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 146550.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719538, "UPRN": 100061598274, "X_COORDINATE": 484203.0, "Y_COORDINATE": 146551.0, "LATITUDE": 51.2119634, "LONGITUDE": -0.7958872 }, "geometry": { "type": "Point", "coordinates": [ 484203.0, 146551.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719521, "UPRN": 100061598257, "X_COORDINATE": 484204.0, "Y_COORDINATE": 146580.0, "LATITUDE": 51.212224, "LONGITUDE": -0.7958661 }, "geometry": { "type": "Point", "coordinates": [ 484204.0, 146580.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719520, "UPRN": 100061598256, "X_COORDINATE": 484209.0, "Y_COORDINATE": 146582.0, "LATITUDE": 51.2122413, "LONGITUDE": -0.7957941 }, "geometry": { "type": "Point", "coordinates": [ 484209.0, 146582.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719519, "UPRN": 100061598255, "X_COORDINATE": 484215.0, "Y_COORDINATE": 146586.0, "LATITUDE": 51.2122763, "LONGITUDE": -0.7957072 }, "geometry": { "type": "Point", "coordinates": [ 484215.0, 146586.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719537, "UPRN": 100061598273, "X_COORDINATE": 484220.0, "Y_COORDINATE": 146557.0, "LATITUDE": 51.2120149, "LONGITUDE": -0.7956425 }, "geometry": { "type": "Point", "coordinates": [ 484220.0, 146557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719534, "UPRN": 100061598270, "X_COORDINATE": 484223.0, "Y_COORDINATE": 146559.0, "LATITUDE": 51.2120324, "LONGITUDE": -0.7955991 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 146559.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116164, "UPRN": 10096744546, "X_COORDINATE": 484224.74, "Y_COORDINATE": 146606.21, "LATITUDE": 51.2124566, "LONGITUDE": -0.7955631 }, "geometry": { "type": "Point", "coordinates": [ 484224.74, 146606.21 ] } }, -{ "type": "Feature", "properties": { "FID": 31719532, "UPRN": 100061598268, "X_COORDINATE": 484226.0, "Y_COORDINATE": 146562.0, "LATITUDE": 51.2120589, "LONGITUDE": -0.7955554 }, "geometry": { "type": "Point", "coordinates": [ 484226.0, 146562.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719530, "UPRN": 100061598266, "X_COORDINATE": 484229.0, "Y_COORDINATE": 146563.0, "LATITUDE": 51.2120675, "LONGITUDE": -0.7955122 }, "geometry": { "type": "Point", "coordinates": [ 484229.0, 146563.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719528, "UPRN": 100061598264, "X_COORDINATE": 484232.0, "Y_COORDINATE": 146564.0, "LATITUDE": 51.212076, "LONGITUDE": -0.7954691 }, "geometry": { "type": "Point", "coordinates": [ 484232.0, 146564.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719526, "UPRN": 100061598262, "X_COORDINATE": 484235.0, "Y_COORDINATE": 146566.0, "LATITUDE": 51.2120936, "LONGITUDE": -0.7954257 }, "geometry": { "type": "Point", "coordinates": [ 484235.0, 146566.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443157, "UPRN": 10013889133, "X_COORDINATE": 484156.0, "Y_COORDINATE": 146560.0, "LATITUDE": 51.2120513, "LONGITUDE": -0.7965578 }, "geometry": { "type": "Point", "coordinates": [ 484156.0, 146560.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450652, "UPRN": 10013897078, "X_COORDINATE": 484129.0, "Y_COORDINATE": 146561.0, "LATITUDE": 51.2120642, "LONGITUDE": -0.796944 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 146561.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719535, "UPRN": 100061598271, "X_COORDINATE": 484150.0, "Y_COORDINATE": 146552.0, "LATITUDE": 51.2119802, "LONGITUDE": -0.7966456 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 146552.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719536, "UPRN": 100061598272, "X_COORDINATE": 484144.0, "Y_COORDINATE": 146553.0, "LATITUDE": 51.2119901, "LONGITUDE": -0.7967312 }, "geometry": { "type": "Point", "coordinates": [ 484144.0, 146553.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721266, "UPRN": 100061600059, "X_COORDINATE": 484137.0, "Y_COORDINATE": 146566.0, "LATITUDE": 51.212108, "LONGITUDE": -0.7968283 }, "geometry": { "type": "Point", "coordinates": [ 484137.0, 146566.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721267, "UPRN": 100061600060, "X_COORDINATE": 484137.0, "Y_COORDINATE": 146561.0, "LATITUDE": 51.2120631, "LONGITUDE": -0.7968295 }, "geometry": { "type": "Point", "coordinates": [ 484137.0, 146561.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445347, "UPRN": 10013891635, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146576.0, "LATITUDE": 51.2122103, "LONGITUDE": -0.7980283 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445349, "UPRN": 10013891637, "X_COORDINATE": 484036.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2122577, "LONGITUDE": -0.7982705 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445348, "UPRN": 10013891636, "X_COORDINATE": 484049.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2122558, "LONGITUDE": -0.7980844 }, "geometry": { "type": "Point", "coordinates": [ 484049.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445350, "UPRN": 10013891638, "X_COORDINATE": 484033.0, "Y_COORDINATE": 146585.0, "LATITUDE": 51.2122941, "LONGITUDE": -0.7983125 }, "geometry": { "type": "Point", "coordinates": [ 484033.0, 146585.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17778840, "UPRN": 10025231386, "X_COORDINATE": 484009.2, "Y_COORDINATE": 146614.8, "LATITUDE": 51.2125655, "LONGITUDE": -0.7986462 }, "geometry": { "type": "Point", "coordinates": [ 484009.200000000011642, 146614.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 20266627, "UPRN": 10091107940, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2128666, "LONGITUDE": -0.7980112 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266607, "UPRN": 10091107920, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2128666, "LONGITUDE": -0.7980112 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266588, "UPRN": 10091107901, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2128666, "LONGITUDE": -0.7980112 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447256, "UPRN": 10013893598, "X_COORDINATE": 483992.0, "Y_COORDINATE": 146652.0, "LATITUDE": 51.2129025, "LONGITUDE": -0.7988837 }, "geometry": { "type": "Point", "coordinates": [ 483992.0, 146652.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447257, "UPRN": 10013893599, "X_COORDINATE": 483992.0, "Y_COORDINATE": 146652.0, "LATITUDE": 51.2129025, "LONGITUDE": -0.7988837 }, "geometry": { "type": "Point", "coordinates": [ 483992.0, 146652.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266589, "UPRN": 10091107902, "X_COORDINATE": 484045.0, "Y_COORDINATE": 146655.0, "LATITUDE": 51.2129217, "LONGITUDE": -0.7981243 }, "geometry": { "type": "Point", "coordinates": [ 484045.0, 146655.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446080, "UPRN": 10013892382, "X_COORDINATE": 484029.0, "Y_COORDINATE": 146656.0, "LATITUDE": 51.212933, "LONGITUDE": -0.7983531 }, "geometry": { "type": "Point", "coordinates": [ 484029.0, 146656.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266628, "UPRN": 10091107941, "X_COORDINATE": 484051.0, "Y_COORDINATE": 146657.0, "LATITUDE": 51.2129388, "LONGITUDE": -0.798038 }, "geometry": { "type": "Point", "coordinates": [ 484051.0, 146657.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15876135, "UPRN": 10015288088, "X_COORDINATE": 484015.3, "Y_COORDINATE": 146661.75, "LATITUDE": 51.2129867, "LONGITUDE": -0.7985479 }, "geometry": { "type": "Point", "coordinates": [ 484015.299999999988358, 146661.75 ] } }, -{ "type": "Feature", "properties": { "FID": 32122286, "UPRN": 100062161805, "X_COORDINATE": 484024.0, "Y_COORDINATE": 146637.0, "LATITUDE": 51.2127629, "LONGITUDE": -0.7984291 }, "geometry": { "type": "Point", "coordinates": [ 484024.0, 146637.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122287, "UPRN": 100062161806, "X_COORDINATE": 484024.0, "Y_COORDINATE": 146637.0, "LATITUDE": 51.2127629, "LONGITUDE": -0.7984291 }, "geometry": { "type": "Point", "coordinates": [ 484024.0, 146637.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122288, "UPRN": 100062161807, "X_COORDINATE": 484024.0, "Y_COORDINATE": 146637.0, "LATITUDE": 51.2127629, "LONGITUDE": -0.7984291 }, "geometry": { "type": "Point", "coordinates": [ 484024.0, 146637.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122289, "UPRN": 100062161812, "X_COORDINATE": 484024.0, "Y_COORDINATE": 146637.0, "LATITUDE": 51.2127629, "LONGITUDE": -0.7984291 }, "geometry": { "type": "Point", "coordinates": [ 484024.0, 146637.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216664, "UPRN": 100062353930, "X_COORDINATE": 484011.0, "Y_COORDINATE": 146648.0, "LATITUDE": 51.2128637, "LONGITUDE": -0.7986126 }, "geometry": { "type": "Point", "coordinates": [ 484011.0, 146648.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266609, "UPRN": 10091107922, "X_COORDINATE": 484051.0, "Y_COORDINATE": 146657.0, "LATITUDE": 51.2129388, "LONGITUDE": -0.798038 }, "geometry": { "type": "Point", "coordinates": [ 484051.0, 146657.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266608, "UPRN": 10091107921, "X_COORDINATE": 484045.0, "Y_COORDINATE": 146655.0, "LATITUDE": 51.2129217, "LONGITUDE": -0.7981243 }, "geometry": { "type": "Point", "coordinates": [ 484045.0, 146655.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399504, "UPRN": 100062699277, "X_COORDINATE": 484022.0, "Y_COORDINATE": 146645.0, "LATITUDE": 51.2128352, "LONGITUDE": -0.7984559 }, "geometry": { "type": "Point", "coordinates": [ 484022.0, 146645.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266626, "UPRN": 10091107939, "X_COORDINATE": 484059.0, "Y_COORDINATE": 146641.0, "LATITUDE": 51.2127938, "LONGITUDE": -0.7979272 }, "geometry": { "type": "Point", "coordinates": [ 484059.0, 146641.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266606, "UPRN": 10091107919, "X_COORDINATE": 484059.0, "Y_COORDINATE": 146641.0, "LATITUDE": 51.2127938, "LONGITUDE": -0.7979272 }, "geometry": { "type": "Point", "coordinates": [ 484059.0, 146641.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266587, "UPRN": 10091107900, "X_COORDINATE": 484059.0, "Y_COORDINATE": 146641.0, "LATITUDE": 51.2127938, "LONGITUDE": -0.7979272 }, "geometry": { "type": "Point", "coordinates": [ 484059.0, 146641.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266586, "UPRN": 10091107899, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146634.0, "LATITUDE": 51.2127307, "LONGITUDE": -0.7979146 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266605, "UPRN": 10091107918, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146634.0, "LATITUDE": 51.2127307, "LONGITUDE": -0.7979146 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266625, "UPRN": 10091107938, "X_COORDINATE": 484061.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2127036, "LONGITUDE": -0.7979009 }, "geometry": { "type": "Point", "coordinates": [ 484061.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266585, "UPRN": 10091107898, "X_COORDINATE": 484063.0, "Y_COORDINATE": 146628.0, "LATITUDE": 51.2126763, "LONGITUDE": -0.797873 }, "geometry": { "type": "Point", "coordinates": [ 484063.0, 146628.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266604, "UPRN": 10091107917, "X_COORDINATE": 484063.0, "Y_COORDINATE": 146628.0, "LATITUDE": 51.2126763, "LONGITUDE": -0.797873 }, "geometry": { "type": "Point", "coordinates": [ 484063.0, 146628.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445344, "UPRN": 10013891632, "X_COORDINATE": 484065.0, "Y_COORDINATE": 146634.0, "LATITUDE": 51.2127299, "LONGITUDE": -0.797843 }, "geometry": { "type": "Point", "coordinates": [ 484065.0, 146634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266597, "UPRN": 10091107910, "X_COORDINATE": 484065.0, "Y_COORDINATE": 146634.0, "LATITUDE": 51.2127299, "LONGITUDE": -0.797843 }, "geometry": { "type": "Point", "coordinates": [ 484065.0, 146634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266747, "UPRN": 10091108061, "X_COORDINATE": 484067.0, "Y_COORDINATE": 146629.0, "LATITUDE": 51.2126847, "LONGITUDE": -0.7978155 }, "geometry": { "type": "Point", "coordinates": [ 484067.0, 146629.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266612, "UPRN": 10091107925, "X_COORDINATE": 484068.0, "Y_COORDINATE": 146640.0, "LATITUDE": 51.2127834, "LONGITUDE": -0.7977986 }, "geometry": { "type": "Point", "coordinates": [ 484068.0, 146640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266593, "UPRN": 10091107906, "X_COORDINATE": 484068.0, "Y_COORDINATE": 146640.0, "LATITUDE": 51.2127834, "LONGITUDE": -0.7977986 }, "geometry": { "type": "Point", "coordinates": [ 484068.0, 146640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266631, "UPRN": 10091107944, "X_COORDINATE": 484068.0, "Y_COORDINATE": 146640.0, "LATITUDE": 51.2127834, "LONGITUDE": -0.7977986 }, "geometry": { "type": "Point", "coordinates": [ 484068.0, 146640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266613, "UPRN": 10091107926, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146633.0, "LATITUDE": 51.2127201, "LONGITUDE": -0.7977573 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146633.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266614, "UPRN": 10091107927, "X_COORDINATE": 484074.0, "Y_COORDINATE": 146627.0, "LATITUDE": 51.2126657, "LONGITUDE": -0.7977158 }, "geometry": { "type": "Point", "coordinates": [ 484074.0, 146627.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266984, "UPRN": 10091108299, "X_COORDINATE": 484060.0, "Y_COORDINATE": 146535.0, "LATITUDE": 51.2118406, "LONGITUDE": -0.7979377 }, "geometry": { "type": "Point", "coordinates": [ 484060.0, 146535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266591, "UPRN": 10091107904, "X_COORDINATE": 484061.0, "Y_COORDINATE": 146658.0, "LATITUDE": 51.2129463, "LONGITUDE": -0.7978946 }, "geometry": { "type": "Point", "coordinates": [ 484061.0, 146658.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266610, "UPRN": 10091107923, "X_COORDINATE": 484061.0, "Y_COORDINATE": 146658.0, "LATITUDE": 51.2129463, "LONGITUDE": -0.7978946 }, "geometry": { "type": "Point", "coordinates": [ 484061.0, 146658.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266629, "UPRN": 10091107942, "X_COORDINATE": 484061.0, "Y_COORDINATE": 146658.0, "LATITUDE": 51.2129463, "LONGITUDE": -0.7978946 }, "geometry": { "type": "Point", "coordinates": [ 484061.0, 146658.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266592, "UPRN": 10091107905, "X_COORDINATE": 484064.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2128649, "LONGITUDE": -0.7978538 }, "geometry": { "type": "Point", "coordinates": [ 484064.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266611, "UPRN": 10091107924, "X_COORDINATE": 484064.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2128649, "LONGITUDE": -0.7978538 }, "geometry": { "type": "Point", "coordinates": [ 484064.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266630, "UPRN": 10091107943, "X_COORDINATE": 484064.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2128649, "LONGITUDE": -0.7978538 }, "geometry": { "type": "Point", "coordinates": [ 484064.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216994, "UPRN": 100062354427, "X_COORDINATE": 484003.0, "Y_COORDINATE": 146675.0, "LATITUDE": 51.2131077, "LONGITUDE": -0.7987208 }, "geometry": { "type": "Point", "coordinates": [ 484003.0, 146675.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216607, "UPRN": 100062353841, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444117, "UPRN": 10013890257, "X_COORDINATE": 484002.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2135483, "LONGITUDE": -0.7987237 }, "geometry": { "type": "Point", "coordinates": [ 484002.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444116, "UPRN": 10013890256, "X_COORDINATE": 484002.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2135483, "LONGITUDE": -0.7987237 }, "geometry": { "type": "Point", "coordinates": [ 484002.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442965, "UPRN": 10013888915, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146694.0, "LATITUDE": 51.2132782, "LONGITUDE": -0.7986878 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146694.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444112, "UPRN": 10013890252, "X_COORDINATE": 484006.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135567, "LONGITUDE": -0.7986662 }, "geometry": { "type": "Point", "coordinates": [ 484006.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447269, "UPRN": 10013893612, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146677.0, "LATITUDE": 51.2131247, "LONGITUDE": -0.7986345 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447270, "UPRN": 10013893613, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146677.0, "LATITUDE": 51.2131247, "LONGITUDE": -0.7986345 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444120, "UPRN": 10013890260, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146713.0, "LATITUDE": 51.2134484, "LONGITUDE": -0.7986261 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146713.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444118, "UPRN": 10013890258, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146713.0, "LATITUDE": 51.2134484, "LONGITUDE": -0.7986261 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146713.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444115, "UPRN": 10013890255, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2135916, "LONGITUDE": -0.7985651 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444114, "UPRN": 10013890254, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2135916, "LONGITUDE": -0.7985651 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444119, "UPRN": 10013890259, "X_COORDINATE": 484014.0, "Y_COORDINATE": 146715.0, "LATITUDE": 51.2134656, "LONGITUDE": -0.798554 }, "geometry": { "type": "Point", "coordinates": [ 484014.0, 146715.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444113, "UPRN": 10013890253, "X_COORDINATE": 484021.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135006, "LONGITUDE": -0.7984529 }, "geometry": { "type": "Point", "coordinates": [ 484021.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911224, "UPRN": 10094579648, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911223, "UPRN": 10094579647, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442966, "UPRN": 10013888916, "X_COORDINATE": 484105.0, "Y_COORDINATE": 146743.0, "LATITUDE": 51.213704, "LONGITUDE": -0.797245 }, "geometry": { "type": "Point", "coordinates": [ 484105.0, 146743.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442970, "UPRN": 10013888920, "X_COORDINATE": 484105.0, "Y_COORDINATE": 146743.0, "LATITUDE": 51.213704, "LONGITUDE": -0.797245 }, "geometry": { "type": "Point", "coordinates": [ 484105.0, 146743.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442971, "UPRN": 10013888921, "X_COORDINATE": 484098.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2136511, "LONGITUDE": -0.7973466 }, "geometry": { "type": "Point", "coordinates": [ 484098.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442975, "UPRN": 10013888925, "X_COORDINATE": 484098.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2136511, "LONGITUDE": -0.7973466 }, "geometry": { "type": "Point", "coordinates": [ 484098.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442967, "UPRN": 10013888917, "X_COORDINATE": 484102.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136055, "LONGITUDE": -0.7972905 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442972, "UPRN": 10013888922, "X_COORDINATE": 484102.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136055, "LONGITUDE": -0.7972905 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442976, "UPRN": 10013888926, "X_COORDINATE": 484102.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136055, "LONGITUDE": -0.7972905 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442969, "UPRN": 10013888919, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146730.0, "LATITUDE": 51.2135892, "LONGITUDE": -0.7974484 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146730.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442974, "UPRN": 10013888924, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146730.0, "LATITUDE": 51.2135892, "LONGITUDE": -0.7974484 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146730.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442978, "UPRN": 10013888928, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146730.0, "LATITUDE": 51.2135892, "LONGITUDE": -0.7974484 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146730.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442973, "UPRN": 10013888923, "X_COORDINATE": 484095.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135436, "LONGITUDE": -0.7973923 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442968, "UPRN": 10013888918, "X_COORDINATE": 484095.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135436, "LONGITUDE": -0.7973923 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442977, "UPRN": 10013888927, "X_COORDINATE": 484095.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135436, "LONGITUDE": -0.7973923 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447144, "UPRN": 10013893484, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269002, "UPRN": 10091110326, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146710.0, "LATITUDE": 51.21341, "LONGITUDE": -0.7975103 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146710.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449540, "UPRN": 10013895913, "X_COORDINATE": 484063.0, "Y_COORDINATE": 146675.0, "LATITUDE": 51.2130988, "LONGITUDE": -0.797862 }, "geometry": { "type": "Point", "coordinates": [ 484063.0, 146675.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216995, "UPRN": 100062354428, "X_COORDINATE": 484018.0, "Y_COORDINATE": 146677.0, "LATITUDE": 51.2131234, "LONGITUDE": -0.7985057 }, "geometry": { "type": "Point", "coordinates": [ 484018.0, 146677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216996, "UPRN": 100062354429, "X_COORDINATE": 484027.0, "Y_COORDINATE": 146685.0, "LATITUDE": 51.213194, "LONGITUDE": -0.798375 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 146685.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216998, "UPRN": 100062354431, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146677.0, "LATITUDE": 51.2131247, "LONGITUDE": -0.7986345 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216999, "UPRN": 100062354432, "X_COORDINATE": 484023.0, "Y_COORDINATE": 146679.0, "LATITUDE": 51.2131407, "LONGITUDE": -0.7984336 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 146679.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217109, "UPRN": 100062354577, "X_COORDINATE": 484049.0, "Y_COORDINATE": 146689.0, "LATITUDE": 51.2132268, "LONGITUDE": -0.7980591 }, "geometry": { "type": "Point", "coordinates": [ 484049.0, 146689.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367181, "UPRN": 100062609402, "X_COORDINATE": 484041.0, "Y_COORDINATE": 146682.0, "LATITUDE": 51.213165, "LONGITUDE": -0.7981753 }, "geometry": { "type": "Point", "coordinates": [ 484041.0, 146682.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367277, "UPRN": 100062609626, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146758.0, "LATITUDE": 51.2138465, "LONGITUDE": -0.7979858 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146758.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726049, "UPRN": 100061605242, "X_COORDINATE": 483972.0, "Y_COORDINATE": 146650.0, "LATITUDE": 51.2128875, "LONGITUDE": -0.7991704 }, "geometry": { "type": "Point", "coordinates": [ 483972.0, 146650.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726044, "UPRN": 100061605237, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146654.0, "LATITUDE": 51.2129312, "LONGITUDE": -0.7999281 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726046, "UPRN": 100061605239, "X_COORDINATE": 483931.0, "Y_COORDINATE": 146654.0, "LATITUDE": 51.2129294, "LONGITUDE": -0.7997563 }, "geometry": { "type": "Point", "coordinates": [ 483931.0, 146654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726047, "UPRN": 100061605240, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146654.0, "LATITUDE": 51.212929, "LONGITUDE": -0.7997134 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726048, "UPRN": 100061605241, "X_COORDINATE": 483937.0, "Y_COORDINATE": 146654.0, "LATITUDE": 51.2129286, "LONGITUDE": -0.7996704 }, "geometry": { "type": "Point", "coordinates": [ 483937.0, 146654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726045, "UPRN": 100061605238, "X_COORDINATE": 483926.0, "Y_COORDINATE": 146655.0, "LATITUDE": 51.2129392, "LONGITUDE": -0.7998276 }, "geometry": { "type": "Point", "coordinates": [ 483926.0, 146655.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726029, "UPRN": 100061605222, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130242, "LONGITUDE": -0.799353 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726028, "UPRN": 100061605221, "X_COORDINATE": 483966.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130232, "LONGITUDE": -0.7992528 }, "geometry": { "type": "Point", "coordinates": [ 483966.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726030, "UPRN": 100061605223, "X_COORDINATE": 483955.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130248, "LONGITUDE": -0.7994102 }, "geometry": { "type": "Point", "coordinates": [ 483955.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726031, "UPRN": 100061605224, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130252, "LONGITUDE": -0.7994532 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726032, "UPRN": 100061605225, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130258, "LONGITUDE": -0.7995104 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726035, "UPRN": 100061605228, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130279, "LONGITUDE": -0.7997108 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726033, "UPRN": 100061605226, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146666.0, "LATITUDE": 51.2130354, "LONGITUDE": -0.7995674 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726034, "UPRN": 100061605227, "X_COORDINATE": 483941.0, "Y_COORDINATE": 146666.0, "LATITUDE": 51.2130358, "LONGITUDE": -0.7996104 }, "geometry": { "type": "Point", "coordinates": [ 483941.0, 146666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726036, "UPRN": 100061605229, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146666.0, "LATITUDE": 51.2130375, "LONGITUDE": -0.7997678 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726037, "UPRN": 100061605230, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146667.0, "LATITUDE": 51.2130472, "LONGITUDE": -0.7998392 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146667.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726038, "UPRN": 100061605231, "X_COORDINATE": 483921.0, "Y_COORDINATE": 146667.0, "LATITUDE": 51.2130478, "LONGITUDE": -0.7998964 }, "geometry": { "type": "Point", "coordinates": [ 483921.0, 146667.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726039, "UPRN": 100061605232, "X_COORDINATE": 483916.0, "Y_COORDINATE": 146667.0, "LATITUDE": 51.2130485, "LONGITUDE": -0.799968 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 146667.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726040, "UPRN": 100061605233, "X_COORDINATE": 483912.0, "Y_COORDINATE": 146668.0, "LATITUDE": 51.2130581, "LONGITUDE": -0.800025 }, "geometry": { "type": "Point", "coordinates": [ 483912.0, 146668.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722854, "UPRN": 100061601757, "X_COORDINATE": 483972.0, "Y_COORDINATE": 146672.0, "LATITUDE": 51.2130852, "LONGITUDE": -0.7991653 }, "geometry": { "type": "Point", "coordinates": [ 483972.0, 146672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726050, "UPRN": 100061605243, "X_COORDINATE": 483979.0, "Y_COORDINATE": 146646.0, "LATITUDE": 51.2128505, "LONGITUDE": -0.7990711 }, "geometry": { "type": "Point", "coordinates": [ 483979.0, 146646.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726051, "UPRN": 100061605244, "X_COORDINATE": 483979.0, "Y_COORDINATE": 146646.0, "LATITUDE": 51.2128505, "LONGITUDE": -0.7990711 }, "geometry": { "type": "Point", "coordinates": [ 483979.0, 146646.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726672, "UPRN": 100061605905, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216917, "UPRN": 100062354299, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216918, "UPRN": 100062354300, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216919, "UPRN": 100062354301, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216920, "UPRN": 100062354302, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216921, "UPRN": 100062354303, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216922, "UPRN": 100062354304, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216923, "UPRN": 100062354305, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.213147, "LONGITUDE": -0.7999225 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216964, "UPRN": 100062354397, "X_COORDINATE": 483973.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130222, "LONGITUDE": -0.7991526 }, "geometry": { "type": "Point", "coordinates": [ 483973.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216965, "UPRN": 100062354398, "X_COORDINATE": 483972.0, "Y_COORDINATE": 146672.0, "LATITUDE": 51.2130852, "LONGITUDE": -0.7991653 }, "geometry": { "type": "Point", "coordinates": [ 483972.0, 146672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217115, "UPRN": 100062354586, "X_COORDINATE": 483951.0, "Y_COORDINATE": 146654.0, "LATITUDE": 51.2129265, "LONGITUDE": -0.79947 }, "geometry": { "type": "Point", "coordinates": [ 483951.0, 146654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443747, "UPRN": 10013889826, "X_COORDINATE": 484172.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2134154, "LONGITUDE": -0.7962932 }, "geometry": { "type": "Point", "coordinates": [ 484172.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267862, "UPRN": 10091109183, "X_COORDINATE": 484166.0, "Y_COORDINATE": 146718.0, "LATITUDE": 51.2134702, "LONGITUDE": -0.7963777 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 146718.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268990, "UPRN": 10091110314, "X_COORDINATE": 484152.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140746, "LONGITUDE": -0.7965624 }, "geometry": { "type": "Point", "coordinates": [ 484152.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445015, "UPRN": 10013891242, "X_COORDINATE": 484185.0, "Y_COORDINATE": 146800.0, "LATITUDE": 51.2142046, "LONGITUDE": -0.7960865 }, "geometry": { "type": "Point", "coordinates": [ 484185.0, 146800.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445017, "UPRN": 10013891244, "X_COORDINATE": 484190.0, "Y_COORDINATE": 146802.0, "LATITUDE": 51.2142219, "LONGITUDE": -0.7960145 }, "geometry": { "type": "Point", "coordinates": [ 484190.0, 146802.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444048, "UPRN": 10013890186, "X_COORDINATE": 484174.0, "Y_COORDINATE": 146802.0, "LATITUDE": 51.2142242, "LONGITUDE": -0.7962435 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 146802.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445016, "UPRN": 10013891243, "X_COORDINATE": 484188.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2142491, "LONGITUDE": -0.7960424 }, "geometry": { "type": "Point", "coordinates": [ 484188.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15881426, "UPRN": 10015295815, "X_COORDINATE": 484184.2, "Y_COORDINATE": 146818.1, "LATITUDE": 51.2143675, "LONGITUDE": -0.7960937 }, "geometry": { "type": "Point", "coordinates": [ 484184.200000000011642, 146818.1 ] } }, -{ "type": "Feature", "properties": { "FID": 15450325, "UPRN": 10013896704, "X_COORDINATE": 484187.0, "Y_COORDINATE": 146826.0, "LATITUDE": 51.2144381, "LONGITUDE": -0.7960518 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 146826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18043466, "UPRN": 10025677771, "X_COORDINATE": 484181.26, "Y_COORDINATE": 146844.13, "LATITUDE": 51.2146019, "LONGITUDE": -0.7961297 }, "geometry": { "type": "Point", "coordinates": [ 484181.26, 146844.13 ] } }, -{ "type": "Feature", "properties": { "FID": 17497688, "UPRN": 10024877481, "X_COORDINATE": 484128.12, "Y_COORDINATE": 146923.08, "LATITUDE": 51.2153195, "LONGITUDE": -0.7968719 }, "geometry": { "type": "Point", "coordinates": [ 484128.12, 146923.079999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 20270265, "UPRN": 10091111602, "X_COORDINATE": 484189.0, "Y_COORDINATE": 146924.0, "LATITUDE": 51.2153188, "LONGITUDE": -0.7960002 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 146924.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910461, "UPRN": 10094578877, "X_COORDINATE": 484187.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153461, "LONGITUDE": -0.7960281 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910459, "UPRN": 10094578875, "X_COORDINATE": 484185.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2153644, "LONGITUDE": -0.7960563 }, "geometry": { "type": "Point", "coordinates": [ 484185.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910460, "UPRN": 10094578876, "X_COORDINATE": 484181.39, "Y_COORDINATE": 146931.9, "LATITUDE": 51.215391, "LONGITUDE": -0.7961073 }, "geometry": { "type": "Point", "coordinates": [ 484181.39000000001397, 146931.9 ] } }, -{ "type": "Feature", "properties": { "FID": 20265580, "UPRN": 10091106885, "X_COORDINATE": 484162.0, "Y_COORDINATE": 146705.0, "LATITUDE": 51.213354, "LONGITUDE": -0.796438 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 146705.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443797, "UPRN": 10013889878, "X_COORDINATE": 484132.0, "Y_COORDINATE": 146704.0, "LATITUDE": 51.2133494, "LONGITUDE": -0.7968676 }, "geometry": { "type": "Point", "coordinates": [ 484132.0, 146704.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443527, "UPRN": 10013889575, "X_COORDINATE": 484129.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2135746, "LONGITUDE": -0.7969047 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912113, "UPRN": 10094580588, "X_COORDINATE": 484145.89, "Y_COORDINATE": 146901.11, "LATITUDE": 51.2151194, "LONGITUDE": -0.7966227 }, "geometry": { "type": "Point", "coordinates": [ 484145.89000000001397, 146901.10999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 21913791, "UPRN": 10094582291, "X_COORDINATE": 484161.9, "Y_COORDINATE": 146792.62, "LATITUDE": 51.2141417, "LONGITUDE": -0.7964189 }, "geometry": { "type": "Point", "coordinates": [ 484161.900000000023283, 146792.62 ] } }, -{ "type": "Feature", "properties": { "FID": 23116877, "UPRN": 10096745265, "X_COORDINATE": 484134.69, "Y_COORDINATE": 146875.89, "LATITUDE": 51.2148943, "LONGITUDE": -0.7967889 }, "geometry": { "type": "Point", "coordinates": [ 484134.69, 146875.89000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 23116878, "UPRN": 10096745266, "X_COORDINATE": 484122.55, "Y_COORDINATE": 146859.58, "LATITUDE": 51.2147495, "LONGITUDE": -0.7969665 }, "geometry": { "type": "Point", "coordinates": [ 484122.549999999988358, 146859.579999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 23116879, "UPRN": 10096745267, "X_COORDINATE": 484128.21, "Y_COORDINATE": 146872.82, "LATITUDE": 51.2148677, "LONGITUDE": -0.7968823 }, "geometry": { "type": "Point", "coordinates": [ 484128.210000000020955, 146872.82 ] } }, -{ "type": "Feature", "properties": { "FID": 23116880, "UPRN": 10096745268, "X_COORDINATE": 484133.05, "Y_COORDINATE": 146874.84, "LATITUDE": 51.2148851, "LONGITUDE": -0.7968126 }, "geometry": { "type": "Point", "coordinates": [ 484133.049999999988358, 146874.84 ] } }, -{ "type": "Feature", "properties": { "FID": 23116881, "UPRN": 10096745269, "X_COORDINATE": 484129.24, "Y_COORDINATE": 146871.84, "LATITUDE": 51.2148587, "LONGITUDE": -0.7968678 }, "geometry": { "type": "Point", "coordinates": [ 484129.24, 146871.84 ] } }, -{ "type": "Feature", "properties": { "FID": 23116882, "UPRN": 10096745270, "X_COORDINATE": 484134.35, "Y_COORDINATE": 146872.83, "LATITUDE": 51.2148669, "LONGITUDE": -0.7967945 }, "geometry": { "type": "Point", "coordinates": [ 484134.349999999976717, 146872.829999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 23116883, "UPRN": 10096745271, "X_COORDINATE": 484130.37, "Y_COORDINATE": 146870.55, "LATITUDE": 51.2148469, "LONGITUDE": -0.796852 }, "geometry": { "type": "Point", "coordinates": [ 484130.37, 146870.549999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 23117253, "UPRN": 10096745655, "X_COORDINATE": 484155.0, "Y_COORDINATE": 146819.0, "LATITUDE": 51.2143799, "LONGITUDE": -0.7965115 }, "geometry": { "type": "Point", "coordinates": [ 484155.0, 146819.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731422, "UPRN": 100061611022, "X_COORDINATE": 484132.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.2139338, "LONGITUDE": -0.7968524 }, "geometry": { "type": "Point", "coordinates": [ 484132.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731423, "UPRN": 100061611023, "X_COORDINATE": 484129.0, "Y_COORDINATE": 146766.0, "LATITUDE": 51.2139072, "LONGITUDE": -0.796896 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 146766.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731424, "UPRN": 100061611024, "X_COORDINATE": 484125.0, "Y_COORDINATE": 146763.0, "LATITUDE": 51.2138808, "LONGITUDE": -0.796954 }, "geometry": { "type": "Point", "coordinates": [ 484125.0, 146763.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731425, "UPRN": 100061611025, "X_COORDINATE": 484121.0, "Y_COORDINATE": 146759.0, "LATITUDE": 51.2138455, "LONGITUDE": -0.7970122 }, "geometry": { "type": "Point", "coordinates": [ 484121.0, 146759.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731426, "UPRN": 100061611026, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146756.0, "LATITUDE": 51.2138189, "LONGITUDE": -0.7970558 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146756.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731427, "UPRN": 100061611027, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146753.0, "LATITUDE": 51.2137926, "LONGITUDE": -0.7971138 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146753.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731428, "UPRN": 100061611028, "X_COORDINATE": 484110.0, "Y_COORDINATE": 146749.0, "LATITUDE": 51.2137572, "LONGITUDE": -0.797172 }, "geometry": { "type": "Point", "coordinates": [ 484110.0, 146749.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217035, "UPRN": 100062354485, "X_COORDINATE": 484132.0, "Y_COORDINATE": 146852.0, "LATITUDE": 51.2146799, "LONGITUDE": -0.796833 }, "geometry": { "type": "Point", "coordinates": [ 484132.0, 146852.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117113, "UPRN": 10096745514, "X_COORDINATE": 483814.36, "Y_COORDINATE": 146742.04, "LATITUDE": 51.213738, "LONGITUDE": -0.8014053 }, "geometry": { "type": "Point", "coordinates": [ 483814.35999999998603, 146742.04 ] } }, -{ "type": "Feature", "properties": { "FID": 23117119, "UPRN": 10096745520, "X_COORDINATE": 483812.7, "Y_COORDINATE": 146758.46, "LATITUDE": 51.2138859, "LONGITUDE": -0.8014252 }, "geometry": { "type": "Point", "coordinates": [ 483812.700000000011642, 146758.46 ] } }, -{ "type": "Feature", "properties": { "FID": 23117120, "UPRN": 10096745521, "X_COORDINATE": 483812.36, "Y_COORDINATE": 146759.04, "LATITUDE": 51.2138912, "LONGITUDE": -0.80143 }, "geometry": { "type": "Point", "coordinates": [ 483812.35999999998603, 146759.04 ] } }, -{ "type": "Feature", "properties": { "FID": 23117121, "UPRN": 10096745522, "X_COORDINATE": 483812.06, "Y_COORDINATE": 146747.21, "LATITUDE": 51.2137849, "LONGITUDE": -0.801437 }, "geometry": { "type": "Point", "coordinates": [ 483812.06, 146747.21 ] } }, -{ "type": "Feature", "properties": { "FID": 23117132, "UPRN": 10096745533, "X_COORDINATE": 483802.03, "Y_COORDINATE": 146745.29, "LATITUDE": 51.2137691, "LONGITUDE": -0.801581 }, "geometry": { "type": "Point", "coordinates": [ 483802.03000000002794, 146745.29 ] } }, -{ "type": "Feature", "properties": { "FID": 32216606, "UPRN": 100062353840, "X_COORDINATE": 483812.43, "Y_COORDINATE": 146760.97, "LATITUDE": 51.2139085, "LONGITUDE": -0.8014285 }, "geometry": { "type": "Point", "coordinates": [ 483812.43, 146760.97 ] } }, -{ "type": "Feature", "properties": { "FID": 23117135, "UPRN": 10096745536, "X_COORDINATE": 483803.83, "Y_COORDINATE": 146744.44, "LATITUDE": 51.2137612, "LONGITUDE": -0.8015555 }, "geometry": { "type": "Point", "coordinates": [ 483803.830000000016298, 146744.44 ] } }, -{ "type": "Feature", "properties": { "FID": 23117134, "UPRN": 10096745535, "X_COORDINATE": 483803.69, "Y_COORDINATE": 146736.86, "LATITUDE": 51.213693, "LONGITUDE": -0.8015592 }, "geometry": { "type": "Point", "coordinates": [ 483803.69, 146736.85999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 23117133, "UPRN": 10096745534, "X_COORDINATE": 483805.93, "Y_COORDINATE": 146741.8, "LATITUDE": 51.2137371, "LONGITUDE": -0.801526 }, "geometry": { "type": "Point", "coordinates": [ 483805.93, 146741.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 21911907, "UPRN": 10094580382, "X_COORDINATE": 483800.36, "Y_COORDINATE": 146773.02, "LATITUDE": 51.2140186, "LONGITUDE": -0.8015985 }, "geometry": { "type": "Point", "coordinates": [ 483800.35999999998603, 146773.019999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 21911908, "UPRN": 10094580383, "X_COORDINATE": 483796.77, "Y_COORDINATE": 146775.26, "LATITUDE": 51.2140393, "LONGITUDE": -0.8016493 }, "geometry": { "type": "Point", "coordinates": [ 483796.770000000018626, 146775.26 ] } }, -{ "type": "Feature", "properties": { "FID": 23117112, "UPRN": 10096745513, "X_COORDINATE": 483812.33, "Y_COORDINATE": 146746.67, "LATITUDE": 51.21378, "LONGITUDE": -0.8014333 }, "geometry": { "type": "Point", "coordinates": [ 483812.330000000016298, 146746.670000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 23117114, "UPRN": 10096745515, "X_COORDINATE": 483810.29, "Y_COORDINATE": 146738.34, "LATITUDE": 51.2137054, "LONGITUDE": -0.8014644 }, "geometry": { "type": "Point", "coordinates": [ 483810.289999999979045, 146738.34 ] } }, -{ "type": "Feature", "properties": { "FID": 23117117, "UPRN": 10096745518, "X_COORDINATE": 483811.78, "Y_COORDINATE": 146748.67, "LATITUDE": 51.213798, "LONGITUDE": -0.8014407 }, "geometry": { "type": "Point", "coordinates": [ 483811.78000000002794, 146748.670000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 23117118, "UPRN": 10096745519, "X_COORDINATE": 483814.12, "Y_COORDINATE": 146758.77, "LATITUDE": 51.2138885, "LONGITUDE": -0.8014048 }, "geometry": { "type": "Point", "coordinates": [ 483814.12, 146758.769999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 23117131, "UPRN": 10096745532, "X_COORDINATE": 483801.52, "Y_COORDINATE": 146743.49, "LATITUDE": 51.213753, "LONGITUDE": -0.8015887 }, "geometry": { "type": "Point", "coordinates": [ 483801.520000000018626, 146743.49 ] } }, -{ "type": "Feature", "properties": { "FID": 32217084, "UPRN": 100062354542, "X_COORDINATE": 483814.0, "Y_COORDINATE": 146866.0, "LATITUDE": 51.2148525, "LONGITUDE": -0.8013815 }, "geometry": { "type": "Point", "coordinates": [ 483814.0, 146866.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217083, "UPRN": 100062354541, "X_COORDINATE": 483783.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2152257, "LONGITUDE": -0.8018157 }, "geometry": { "type": "Point", "coordinates": [ 483783.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217073, "UPRN": 100062354527, "X_COORDINATE": 483798.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2139918, "LONGITUDE": -0.8016329 }, "geometry": { "type": "Point", "coordinates": [ 483798.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216682, "UPRN": 100062353955, "X_COORDINATE": 483815.0, "Y_COORDINATE": 146804.0, "LATITUDE": 51.214295, "LONGITUDE": -0.8013817 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 146804.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216669, "UPRN": 100062353941, "X_COORDINATE": 483789.0, "Y_COORDINATE": 146767.0, "LATITUDE": 51.2139662, "LONGITUDE": -0.8017625 }, "geometry": { "type": "Point", "coordinates": [ 483789.0, 146767.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216605, "UPRN": 100062353839, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146776.0, "LATITUDE": 51.2140444, "LONGITUDE": -0.8015027 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146776.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122907, "UPRN": 100062162852, "X_COORDINATE": 483789.0, "Y_COORDINATE": 146767.0, "LATITUDE": 51.2139662, "LONGITUDE": -0.8017625 }, "geometry": { "type": "Point", "coordinates": [ 483789.0, 146767.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122900, "UPRN": 100062162842, "X_COORDINATE": 483819.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140157, "LONGITUDE": -0.8013317 }, "geometry": { "type": "Point", "coordinates": [ 483819.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122899, "UPRN": 100062162841, "X_COORDINATE": 483819.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140157, "LONGITUDE": -0.8013317 }, "geometry": { "type": "Point", "coordinates": [ 483819.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122898, "UPRN": 100062162840, "X_COORDINATE": 483819.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140157, "LONGITUDE": -0.8013317 }, "geometry": { "type": "Point", "coordinates": [ 483819.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451502, "UPRN": 10013898370, "X_COORDINATE": 483802.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.2146475, "LONGITUDE": -0.8015587 }, "geometry": { "type": "Point", "coordinates": [ 483802.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443981, "UPRN": 10013890086, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146742.0, "LATITUDE": 51.2137388, "LONGITUDE": -0.8015106 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146742.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448364, "UPRN": 10013894723, "X_COORDINATE": 483812.0, "Y_COORDINATE": 146750.0, "LATITUDE": 51.21381, "LONGITUDE": -0.8014372 }, "geometry": { "type": "Point", "coordinates": [ 483812.0, 146750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448363, "UPRN": 10013894722, "X_COORDINATE": 483812.0, "Y_COORDINATE": 146750.0, "LATITUDE": 51.21381, "LONGITUDE": -0.8014372 }, "geometry": { "type": "Point", "coordinates": [ 483812.0, 146750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117116, "UPRN": 10096745517, "X_COORDINATE": 483808.5, "Y_COORDINATE": 146743.5, "LATITUDE": 51.213752, "LONGITUDE": -0.8014888 }, "geometry": { "type": "Point", "coordinates": [ 483808.5, 146743.5 ] } }, -{ "type": "Feature", "properties": { "FID": 32217135, "UPRN": 100062354628, "X_COORDINATE": 483786.0, "Y_COORDINATE": 146901.0, "LATITUDE": 51.2151713, "LONGITUDE": -0.8017742 }, "geometry": { "type": "Point", "coordinates": [ 483786.0, 146901.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400148, "UPRN": 100062700399, "X_COORDINATE": 483819.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140157, "LONGITUDE": -0.8013317 }, "geometry": { "type": "Point", "coordinates": [ 483819.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400149, "UPRN": 100062700400, "X_COORDINATE": 483819.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140157, "LONGITUDE": -0.8013317 }, "geometry": { "type": "Point", "coordinates": [ 483819.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449116, "UPRN": 10013895487, "X_COORDINATE": 483833.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142474, "LONGITUDE": -0.8011252 }, "geometry": { "type": "Point", "coordinates": [ 483833.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216628, "UPRN": 100062353870, "X_COORDINATE": 483835.0, "Y_COORDINATE": 146835.0, "LATITUDE": 51.2145707, "LONGITUDE": -0.8010882 }, "geometry": { "type": "Point", "coordinates": [ 483835.0, 146835.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731767, "UPRN": 100061611387, "X_COORDINATE": 483837.0, "Y_COORDINATE": 146779.0, "LATITUDE": 51.214067, "LONGITUDE": -0.8010726 }, "geometry": { "type": "Point", "coordinates": [ 483837.0, 146779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216626, "UPRN": 100062353867, "X_COORDINATE": 483839.0, "Y_COORDINATE": 146854.0, "LATITUDE": 51.214741, "LONGITUDE": -0.8010265 }, "geometry": { "type": "Point", "coordinates": [ 483839.0, 146854.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216640, "UPRN": 100062353887, "X_COORDINATE": 483845.0, "Y_COORDINATE": 146844.0, "LATITUDE": 51.2146502, "LONGITUDE": -0.8009429 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 146844.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731832, "UPRN": 100061611454, "X_COORDINATE": 483846.0, "Y_COORDINATE": 146824.0, "LATITUDE": 51.2144702, "LONGITUDE": -0.8009333 }, "geometry": { "type": "Point", "coordinates": [ 483846.0, 146824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448614, "UPRN": 10013894974, "X_COORDINATE": 483846.0, "Y_COORDINATE": 146824.0, "LATITUDE": 51.2144702, "LONGITUDE": -0.8009333 }, "geometry": { "type": "Point", "coordinates": [ 483846.0, 146824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913250, "UPRN": 10094581739, "X_COORDINATE": 483847.75, "Y_COORDINATE": 146853.15, "LATITUDE": 51.214732, "LONGITUDE": -0.8009014 }, "geometry": { "type": "Point", "coordinates": [ 483847.75, 146853.15 ] } }, -{ "type": "Feature", "properties": { "FID": 15448023, "UPRN": 10013894382, "X_COORDINATE": 483853.98, "Y_COORDINATE": 146854.95, "LATITUDE": 51.2147473, "LONGITUDE": -0.8008118 }, "geometry": { "type": "Point", "coordinates": [ 483853.979999999981374, 146854.950000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 21913037, "UPRN": 10094581524, "X_COORDINATE": 483858.86, "Y_COORDINATE": 146861.62, "LATITUDE": 51.2148066, "LONGITUDE": -0.8007404 }, "geometry": { "type": "Point", "coordinates": [ 483858.85999999998603, 146861.62 ] } }, -{ "type": "Feature", "properties": { "FID": 32216653, "UPRN": 100062353916, "X_COORDINATE": 483860.9, "Y_COORDINATE": 146826.92, "LATITUDE": 51.2144943, "LONGITUDE": -0.8007193 }, "geometry": { "type": "Point", "coordinates": [ 483860.900000000023283, 146826.920000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 21913036, "UPRN": 10094581523, "X_COORDINATE": 483862.11, "Y_COORDINATE": 146857.83, "LATITUDE": 51.214772, "LONGITUDE": -0.8006948 }, "geometry": { "type": "Point", "coordinates": [ 483862.10999999998603, 146857.829999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 31731766, "UPRN": 100061611385, "X_COORDINATE": 483865.0, "Y_COORDINATE": 146800.0, "LATITUDE": 51.2142517, "LONGITUDE": -0.8006669 }, "geometry": { "type": "Point", "coordinates": [ 483865.0, 146800.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447859, "UPRN": 10013894214, "X_COORDINATE": 483865.0, "Y_COORDINATE": 146797.0, "LATITUDE": 51.2142247, "LONGITUDE": -0.8006676 }, "geometry": { "type": "Point", "coordinates": [ 483865.0, 146797.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731835, "UPRN": 100061611457, "X_COORDINATE": 483865.0, "Y_COORDINATE": 146850.0, "LATITUDE": 51.2147012, "LONGITUDE": -0.8006553 }, "geometry": { "type": "Point", "coordinates": [ 483865.0, 146850.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447858, "UPRN": 10013894213, "X_COORDINATE": 483868.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142423, "LONGITUDE": -0.8006242 }, "geometry": { "type": "Point", "coordinates": [ 483868.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731833, "UPRN": 100061611455, "X_COORDINATE": 483871.0, "Y_COORDINATE": 146839.0, "LATITUDE": 51.2146014, "LONGITUDE": -0.8005719 }, "geometry": { "type": "Point", "coordinates": [ 483871.0, 146839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731834, "UPRN": 100061611456, "X_COORDINATE": 483871.0, "Y_COORDINATE": 146839.0, "LATITUDE": 51.2146014, "LONGITUDE": -0.8005719 }, "geometry": { "type": "Point", "coordinates": [ 483871.0, 146839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265663, "UPRN": 10091106968, "X_COORDINATE": 483891.0, "Y_COORDINATE": 146761.0, "LATITUDE": 51.2138973, "LONGITUDE": -0.8003039 }, "geometry": { "type": "Point", "coordinates": [ 483891.0, 146761.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730897, "UPRN": 100061610478, "X_COORDINATE": 483895.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138427, "LONGITUDE": -0.800248 }, "geometry": { "type": "Point", "coordinates": [ 483895.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216684, "UPRN": 100062353957, "X_COORDINATE": 483842.0, "Y_COORDINATE": 146822.0, "LATITUDE": 51.2144528, "LONGITUDE": -0.800991 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 146822.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216685, "UPRN": 100062353958, "X_COORDINATE": 483871.0, "Y_COORDINATE": 146839.0, "LATITUDE": 51.2146014, "LONGITUDE": -0.8005719 }, "geometry": { "type": "Point", "coordinates": [ 483871.0, 146839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216937, "UPRN": 100062354331, "X_COORDINATE": 483878.0, "Y_COORDINATE": 146804.0, "LATITUDE": 51.2142857, "LONGITUDE": -0.8004799 }, "geometry": { "type": "Point", "coordinates": [ 483878.0, 146804.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217013, "UPRN": 100062354454, "X_COORDINATE": 483837.0, "Y_COORDINATE": 146779.0, "LATITUDE": 51.214067, "LONGITUDE": -0.8010726 }, "geometry": { "type": "Point", "coordinates": [ 483837.0, 146779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217014, "UPRN": 100062354457, "X_COORDINATE": 483868.0, "Y_COORDINATE": 146790.0, "LATITUDE": 51.2141613, "LONGITUDE": -0.8006263 }, "geometry": { "type": "Point", "coordinates": [ 483868.0, 146790.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217015, "UPRN": 100062354458, "X_COORDINATE": 483860.0, "Y_COORDINATE": 146793.0, "LATITUDE": 51.2141895, "LONGITUDE": -0.8007401 }, "geometry": { "type": "Point", "coordinates": [ 483860.0, 146793.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217019, "UPRN": 100062354463, "X_COORDINATE": 483854.0, "Y_COORDINATE": 146827.0, "LATITUDE": 51.214496, "LONGITUDE": -0.8008181 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 146827.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217023, "UPRN": 100062354467, "X_COORDINATE": 483877.0, "Y_COORDINATE": 146837.0, "LATITUDE": 51.2145826, "LONGITUDE": -0.8004865 }, "geometry": { "type": "Point", "coordinates": [ 483877.0, 146837.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217087, "UPRN": 100062354548, "X_COORDINATE": 483883.0, "Y_COORDINATE": 146768.0, "LATITUDE": 51.2139614, "LONGITUDE": -0.8004167 }, "geometry": { "type": "Point", "coordinates": [ 483883.0, 146768.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367278, "UPRN": 100062609629, "X_COORDINATE": 483882.0, "Y_COORDINATE": 146804.0, "LATITUDE": 51.2142852, "LONGITUDE": -0.8004227 }, "geometry": { "type": "Point", "coordinates": [ 483882.0, 146804.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367279, "UPRN": 100062609631, "X_COORDINATE": 483860.0, "Y_COORDINATE": 146793.0, "LATITUDE": 51.2141895, "LONGITUDE": -0.8007401 }, "geometry": { "type": "Point", "coordinates": [ 483860.0, 146793.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367289, "UPRN": 100062609654, "X_COORDINATE": 483832.0, "Y_COORDINATE": 146823.0, "LATITUDE": 51.2144633, "LONGITUDE": -0.8011339 }, "geometry": { "type": "Point", "coordinates": [ 483832.0, 146823.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17501586, "UPRN": 10024882304, "X_COORDINATE": 483892.35, "Y_COORDINATE": 146768.38, "LATITUDE": 51.2139634, "LONGITUDE": -0.8002828 }, "geometry": { "type": "Point", "coordinates": [ 483892.349999999976717, 146768.38 ] } }, -{ "type": "Feature", "properties": { "FID": 20269261, "UPRN": 10091110585, "X_COORDINATE": 483893.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140048, "LONGITUDE": -0.8002724 }, "geometry": { "type": "Point", "coordinates": [ 483893.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447983, "UPRN": 10013894342, "X_COORDINATE": 483916.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.2140374, "LONGITUDE": -0.7999423 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269260, "UPRN": 10091110584, "X_COORDINATE": 483892.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140499, "LONGITUDE": -0.8002856 }, "geometry": { "type": "Point", "coordinates": [ 483892.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266702, "UPRN": 10091108015, "X_COORDINATE": 483890.0, "Y_COORDINATE": 146782.0, "LATITUDE": 51.2140862, "LONGITUDE": -0.8003133 }, "geometry": { "type": "Point", "coordinates": [ 483890.0, 146782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269259, "UPRN": 10091110583, "X_COORDINATE": 483888.0, "Y_COORDINATE": 146788.0, "LATITUDE": 51.2141404, "LONGITUDE": -0.8003405 }, "geometry": { "type": "Point", "coordinates": [ 483888.0, 146788.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269262, "UPRN": 10091110586, "X_COORDINATE": 483888.0, "Y_COORDINATE": 146788.0, "LATITUDE": 51.2141404, "LONGITUDE": -0.8003405 }, "geometry": { "type": "Point", "coordinates": [ 483888.0, 146788.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269263, "UPRN": 10091110587, "X_COORDINATE": 483888.0, "Y_COORDINATE": 146788.0, "LATITUDE": 51.2141404, "LONGITUDE": -0.8003405 }, "geometry": { "type": "Point", "coordinates": [ 483888.0, 146788.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122897, "UPRN": 100062162839, "X_COORDINATE": 483887.0, "Y_COORDINATE": 146791.0, "LATITUDE": 51.2141675, "LONGITUDE": -0.8003541 }, "geometry": { "type": "Point", "coordinates": [ 483887.0, 146791.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722859, "UPRN": 100061601764, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146798.0, "LATITUDE": 51.2142249, "LONGITUDE": -0.7998086 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146798.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216938, "UPRN": 100062354334, "X_COORDINATE": 483892.0, "Y_COORDINATE": 146806.0, "LATITUDE": 51.2143017, "LONGITUDE": -0.8002791 }, "geometry": { "type": "Point", "coordinates": [ 483892.0, 146806.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216936, "UPRN": 100062354329, "X_COORDINATE": 483895.0, "Y_COORDINATE": 146810.0, "LATITUDE": 51.2143372, "LONGITUDE": -0.8002352 }, "geometry": { "type": "Point", "coordinates": [ 483895.0, 146810.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446320, "UPRN": 10013892634, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146811.0, "LATITUDE": 51.2143425, "LONGITUDE": -0.7998771 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146811.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448075, "UPRN": 10013894434, "X_COORDINATE": 483899.0, "Y_COORDINATE": 146811.0, "LATITUDE": 51.2143456, "LONGITUDE": -0.8001777 }, "geometry": { "type": "Point", "coordinates": [ 483899.0, 146811.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216619, "UPRN": 100062353859, "X_COORDINATE": 483905.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143537, "LONGITUDE": -0.8000916 }, "geometry": { "type": "Point", "coordinates": [ 483905.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122896, "UPRN": 100062162837, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143534, "LONGITUDE": -0.8000629 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216979, "UPRN": 100062354412, "X_COORDINATE": 483921.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2142884, "LONGITUDE": -0.7998642 }, "geometry": { "type": "Point", "coordinates": [ 483921.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216980, "UPRN": 100062354413, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146808.0, "LATITUDE": 51.2143155, "LONGITUDE": -0.7998778 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146808.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217147, "UPRN": 100062354652, "X_COORDINATE": 483923.0, "Y_COORDINATE": 146801.0, "LATITUDE": 51.2142522, "LONGITUDE": -0.7998365 }, "geometry": { "type": "Point", "coordinates": [ 483923.0, 146801.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217152, "UPRN": 100062354658, "X_COORDINATE": 483905.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143537, "LONGITUDE": -0.8000916 }, "geometry": { "type": "Point", "coordinates": [ 483905.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367173, "UPRN": 100062609388, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146808.0, "LATITUDE": 51.2143155, "LONGITUDE": -0.7998778 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146808.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400146, "UPRN": 100062700397, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143534, "LONGITUDE": -0.8000629 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400147, "UPRN": 100062700398, "X_COORDINATE": 483899.0, "Y_COORDINATE": 146811.0, "LATITUDE": 51.2143456, "LONGITUDE": -0.8001777 }, "geometry": { "type": "Point", "coordinates": [ 483899.0, 146811.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216856, "UPRN": 100062354177, "X_COORDINATE": 483962.0, "Y_COORDINATE": 146845.0, "LATITUDE": 51.214642, "LONGITUDE": -0.799268 }, "geometry": { "type": "Point", "coordinates": [ 483962.0, 146845.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217091, "UPRN": 100062354552, "X_COORDINATE": 483964.0, "Y_COORDINATE": 146851.0, "LATITUDE": 51.2146956, "LONGITUDE": -0.7992379 }, "geometry": { "type": "Point", "coordinates": [ 483964.0, 146851.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216860, "UPRN": 100062354182, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142277, "LONGITUDE": -0.7992072 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216861, "UPRN": 100062354183, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142277, "LONGITUDE": -0.7992072 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216862, "UPRN": 100062354184, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142277, "LONGITUDE": -0.7992072 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216855, "UPRN": 100062354176, "X_COORDINATE": 483971.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2147126, "LONGITUDE": -0.7991373 }, "geometry": { "type": "Point", "coordinates": [ 483971.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117295, "UPRN": 10096745879, "X_COORDINATE": 483971.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2141013, "LONGITUDE": -0.7991532 }, "geometry": { "type": "Point", "coordinates": [ 483971.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911218, "UPRN": 10094579642, "X_COORDINATE": 483971.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2141013, "LONGITUDE": -0.7991532 }, "geometry": { "type": "Point", "coordinates": [ 483971.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216955, "UPRN": 100062354361, "X_COORDINATE": 483983.0, "Y_COORDINATE": 146859.0, "LATITUDE": 51.2147648, "LONGITUDE": -0.7989641 }, "geometry": { "type": "Point", "coordinates": [ 483983.0, 146859.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267324, "UPRN": 10091108640, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146846.0, "LATITUDE": 51.2146467, "LONGITUDE": -0.7988526 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216635, "UPRN": 100062353880, "X_COORDINATE": 483996.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2147808, "LONGITUDE": -0.7987776 }, "geometry": { "type": "Point", "coordinates": [ 483996.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217028, "UPRN": 100062354473, "X_COORDINATE": 484006.0, "Y_COORDINATE": 146863.0, "LATITUDE": 51.2147974, "LONGITUDE": -0.798634 }, "geometry": { "type": "Point", "coordinates": [ 484006.0, 146863.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217027, "UPRN": 100062354472, "X_COORDINATE": 484025.0, "Y_COORDINATE": 146864.0, "LATITUDE": 51.2148036, "LONGITUDE": -0.7983618 }, "geometry": { "type": "Point", "coordinates": [ 484025.0, 146864.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268992, "UPRN": 10091110316, "X_COORDINATE": 484027.0, "Y_COORDINATE": 146823.0, "LATITUDE": 51.2144347, "LONGITUDE": -0.7983427 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 146823.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217033, "UPRN": 100062354478, "X_COORDINATE": 484030.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.214614, "LONGITUDE": -0.7982951 }, "geometry": { "type": "Point", "coordinates": [ 484030.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217092, "UPRN": 100062354553, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146855.0, "LATITUDE": 51.2147293, "LONGITUDE": -0.799008 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146855.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217142, "UPRN": 100062354639, "X_COORDINATE": 483971.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2147126, "LONGITUDE": -0.7991373 }, "geometry": { "type": "Point", "coordinates": [ 483971.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217156, "UPRN": 100062354662, "X_COORDINATE": 484016.0, "Y_COORDINATE": 146857.0, "LATITUDE": 51.2147419, "LONGITUDE": -0.7984922 }, "geometry": { "type": "Point", "coordinates": [ 484016.0, 146857.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399716, "UPRN": 100062699650, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146799.0, "LATITUDE": 51.2142277, "LONGITUDE": -0.7992072 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146799.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15855219, "UPRN": 10015085569, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15855615, "UPRN": 10015092793, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15856145, "UPRN": 10015104342, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15856266, "UPRN": 10015107108, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15856506, "UPRN": 10015110966, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15856734, "UPRN": 10015117006, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20693192, "UPRN": 10092866100, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20693032, "UPRN": 10092865930, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20692599, "UPRN": 10092865459, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20691610, "UPRN": 10092864263, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20691133, "UPRN": 10092863566, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20690315, "UPRN": 10092862271, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20689609, "UPRN": 10092860896, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15855213, "UPRN": 10015085429, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15855121, "UPRN": 10015083844, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20670261, "UPRN": 10092761277, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20672115, "UPRN": 10092772457, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20673399, "UPRN": 10092781180, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20673476, "UPRN": 10092781775, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20673667, "UPRN": 10092783150, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20674895, "UPRN": 10092788415, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117221, "UPRN": 10096745623, "X_COORDINATE": 483824.0, "Y_COORDINATE": 146810.0, "LATITUDE": 51.2143476, "LONGITUDE": -0.8012515 }, "geometry": { "type": "Point", "coordinates": [ 483824.0, 146810.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216657, "UPRN": 100062353920, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216683, "UPRN": 100062353956, "X_COORDINATE": 483824.0, "Y_COORDINATE": 146810.0, "LATITUDE": 51.2143476, "LONGITUDE": -0.8012515 }, "geometry": { "type": "Point", "coordinates": [ 483824.0, 146810.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217020, "UPRN": 100062354464, "X_COORDINATE": 483821.0, "Y_COORDINATE": 146806.0, "LATITUDE": 51.2143121, "LONGITUDE": -0.8012953 }, "geometry": { "type": "Point", "coordinates": [ 483821.0, 146806.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15857037, "UPRN": 10015124662, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15857215, "UPRN": 10015131541, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15859293, "UPRN": 10015216417, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 16009160, "UPRN": 10015485357, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 16009169, "UPRN": 10015485443, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 16009204, "UPRN": 10015485927, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 16009214, "UPRN": 10015486113, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 16010794, "UPRN": 10015532509, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20681349, "UPRN": 10092829035, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20689141, "UPRN": 10092859952, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20689068, "UPRN": 10092859815, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20688089, "UPRN": 10092857490, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20688016, "UPRN": 10092857273, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20687672, "UPRN": 10092855957, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20685921, "UPRN": 10092851160, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20685801, "UPRN": 10092850671, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20685393, "UPRN": 10092849087, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20684510, "UPRN": 10092844975, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20684326, "UPRN": 10092844081, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20683992, "UPRN": 10092842533, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20682813, "UPRN": 10092837474, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20681550, "UPRN": 10092830262, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20675110, "UPRN": 10092789884, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20675198, "UPRN": 10092790488, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20676849, "UPRN": 10092803376, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20676872, "UPRN": 10092803549, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20676921, "UPRN": 10092803970, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20678518, "UPRN": 10092813410, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20678535, "UPRN": 10092813523, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20678644, "UPRN": 10092813986, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20679293, "UPRN": 10092817188, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20679666, "UPRN": 10092819345, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20680326, "UPRN": 10092822989, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20680454, "UPRN": 10092824029, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20681053, "UPRN": 10092827345, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.214397, "LONGITUDE": -0.8016797 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446321, "UPRN": 10013892635, "X_COORDINATE": 483917.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.2143789, "LONGITUDE": -0.7999191 }, "geometry": { "type": "Point", "coordinates": [ 483917.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720969, "UPRN": 100061599742, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146818.0, "LATITUDE": 51.2143813, "LONGITUDE": -0.797528 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146818.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720970, "UPRN": 100061599743, "X_COORDINATE": 484080.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.2143549, "LONGITUDE": -0.7975859 }, "geometry": { "type": "Point", "coordinates": [ 484080.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446323, "UPRN": 10013892637, "X_COORDINATE": 483916.0, "Y_COORDINATE": 146817.0, "LATITUDE": 51.214397, "LONGITUDE": -0.799933 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 146817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446322, "UPRN": 10013892636, "X_COORDINATE": 483913.0, "Y_COORDINATE": 146816.0, "LATITUDE": 51.2143885, "LONGITUDE": -0.7999761 }, "geometry": { "type": "Point", "coordinates": [ 483913.0, 146816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216650, "UPRN": 100062353912, "X_COORDINATE": 483916.0, "Y_COORDINATE": 146817.0, "LATITUDE": 51.214397, "LONGITUDE": -0.799933 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 146817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217021, "UPRN": 100062354465, "X_COORDINATE": 483832.0, "Y_COORDINATE": 146815.0, "LATITUDE": 51.2143914, "LONGITUDE": -0.8011358 }, "geometry": { "type": "Point", "coordinates": [ 483832.0, 146815.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217022, "UPRN": 100062354466, "X_COORDINATE": 483836.0, "Y_COORDINATE": 146817.0, "LATITUDE": 51.2144088, "LONGITUDE": -0.8010781 }, "geometry": { "type": "Point", "coordinates": [ 483836.0, 146817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910425, "UPRN": 10094578841, "X_COORDINATE": 484238.0, "Y_COORDINATE": 146865.0, "LATITUDE": 51.2147812, "LONGITUDE": -0.7953126 }, "geometry": { "type": "Point", "coordinates": [ 484238.0, 146865.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910446, "UPRN": 10094578862, "X_COORDINATE": 484238.0, "Y_COORDINATE": 146865.0, "LATITUDE": 51.2147812, "LONGITUDE": -0.7953126 }, "geometry": { "type": "Point", "coordinates": [ 484238.0, 146865.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910424, "UPRN": 10094578840, "X_COORDINATE": 484243.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.2148074, "LONGITUDE": -0.7952404 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910445, "UPRN": 10094578861, "X_COORDINATE": 484243.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.2148074, "LONGITUDE": -0.7952404 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910426, "UPRN": 10094578842, "X_COORDINATE": 484231.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.2148272, "LONGITUDE": -0.7954117 }, "geometry": { "type": "Point", "coordinates": [ 484231.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910447, "UPRN": 10094578863, "X_COORDINATE": 484231.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.2148272, "LONGITUDE": -0.7954117 }, "geometry": { "type": "Point", "coordinates": [ 484231.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910423, "UPRN": 10094578839, "X_COORDINATE": 484248.0, "Y_COORDINATE": 146873.0, "LATITUDE": 51.2148516, "LONGITUDE": -0.7951676 }, "geometry": { "type": "Point", "coordinates": [ 484248.0, 146873.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910444, "UPRN": 10094578860, "X_COORDINATE": 484248.0, "Y_COORDINATE": 146873.0, "LATITUDE": 51.2148516, "LONGITUDE": -0.7951676 }, "geometry": { "type": "Point", "coordinates": [ 484248.0, 146873.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910427, "UPRN": 10094578843, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146877.0, "LATITUDE": 51.2148888, "LONGITUDE": -0.7952812 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146877.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910448, "UPRN": 10094578864, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146877.0, "LATITUDE": 51.2148888, "LONGITUDE": -0.7952812 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146877.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910422, "UPRN": 10094578838, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146878.0, "LATITUDE": 51.2148957, "LONGITUDE": -0.7950806 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146878.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910443, "UPRN": 10094578859, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146878.0, "LATITUDE": 51.2148957, "LONGITUDE": -0.7950806 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146878.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910421, "UPRN": 10094578837, "X_COORDINATE": 484259.0, "Y_COORDINATE": 146881.0, "LATITUDE": 51.2149219, "LONGITUDE": -0.7950083 }, "geometry": { "type": "Point", "coordinates": [ 484259.0, 146881.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910442, "UPRN": 10094578858, "X_COORDINATE": 484259.0, "Y_COORDINATE": 146881.0, "LATITUDE": 51.2149219, "LONGITUDE": -0.7950083 }, "geometry": { "type": "Point", "coordinates": [ 484259.0, 146881.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910428, "UPRN": 10094578844, "X_COORDINATE": 484247.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2149597, "LONGITUDE": -0.7951791 }, "geometry": { "type": "Point", "coordinates": [ 484247.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910449, "UPRN": 10094578865, "X_COORDINATE": 484247.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2149597, "LONGITUDE": -0.7951791 }, "geometry": { "type": "Point", "coordinates": [ 484247.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910420, "UPRN": 10094578836, "X_COORDINATE": 484255.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2149944, "LONGITUDE": -0.7950637 }, "geometry": { "type": "Point", "coordinates": [ 484255.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910441, "UPRN": 10094578857, "X_COORDINATE": 484255.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2149944, "LONGITUDE": -0.7950637 }, "geometry": { "type": "Point", "coordinates": [ 484255.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910429, "UPRN": 10094578845, "X_COORDINATE": 484243.0, "Y_COORDINATE": 146891.0, "LATITUDE": 51.2150142, "LONGITUDE": -0.795235 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 146891.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910450, "UPRN": 10094578866, "X_COORDINATE": 484243.0, "Y_COORDINATE": 146891.0, "LATITUDE": 51.2150142, "LONGITUDE": -0.795235 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 146891.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910455, "UPRN": 10094578871, "X_COORDINATE": 484233.0, "Y_COORDINATE": 146890.0, "LATITUDE": 51.2150067, "LONGITUDE": -0.7953784 }, "geometry": { "type": "Point", "coordinates": [ 484233.0, 146890.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910488, "UPRN": 10094578904, "X_COORDINATE": 484252.0, "Y_COORDINATE": 146877.0, "LATITUDE": 51.214887, "LONGITUDE": -0.7951094 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 146877.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116546, "UPRN": 10096744934, "X_COORDINATE": 484262.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2146698, "LONGITUDE": -0.7949719 }, "geometry": { "type": "Point", "coordinates": [ 484262.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450245, "UPRN": 10013896622, "X_COORDINATE": 483952.07, "Y_COORDINATE": 146304.64, "LATITUDE": 51.2097855, "LONGITUDE": -0.7995363 }, "geometry": { "type": "Point", "coordinates": [ 483952.07, 146304.64000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 31730742, "UPRN": 100061610309, "X_COORDINATE": 483962.0, "Y_COORDINATE": 146280.0, "LATITUDE": 51.2095626, "LONGITUDE": -0.7993999 }, "geometry": { "type": "Point", "coordinates": [ 483962.0, 146280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730743, "UPRN": 100061610310, "X_COORDINATE": 483962.0, "Y_COORDINATE": 146280.0, "LATITUDE": 51.2095626, "LONGITUDE": -0.7993999 }, "geometry": { "type": "Point", "coordinates": [ 483962.0, 146280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730744, "UPRN": 100061610311, "X_COORDINATE": 483970.0, "Y_COORDINATE": 146286.0, "LATITUDE": 51.2096153, "LONGITUDE": -0.799284 }, "geometry": { "type": "Point", "coordinates": [ 483970.0, 146286.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730745, "UPRN": 100061610312, "X_COORDINATE": 483970.0, "Y_COORDINATE": 146286.0, "LATITUDE": 51.2096153, "LONGITUDE": -0.799284 }, "geometry": { "type": "Point", "coordinates": [ 483970.0, 146286.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730746, "UPRN": 100061610313, "X_COORDINATE": 483978.0, "Y_COORDINATE": 146292.0, "LATITUDE": 51.2096681, "LONGITUDE": -0.7991681 }, "geometry": { "type": "Point", "coordinates": [ 483978.0, 146292.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730747, "UPRN": 100061610314, "X_COORDINATE": 483978.0, "Y_COORDINATE": 146292.0, "LATITUDE": 51.2096681, "LONGITUDE": -0.7991681 }, "geometry": { "type": "Point", "coordinates": [ 483978.0, 146292.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730748, "UPRN": 100061610315, "X_COORDINATE": 483987.0, "Y_COORDINATE": 146297.0, "LATITUDE": 51.2097117, "LONGITUDE": -0.7990382 }, "geometry": { "type": "Point", "coordinates": [ 483987.0, 146297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730749, "UPRN": 100061610316, "X_COORDINATE": 483987.0, "Y_COORDINATE": 146297.0, "LATITUDE": 51.2097117, "LONGITUDE": -0.7990382 }, "geometry": { "type": "Point", "coordinates": [ 483987.0, 146297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266620, "UPRN": 10091107933, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146597.0, "LATITUDE": 51.2123945, "LONGITUDE": -0.7975797 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266590, "UPRN": 10091107903, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146597.0, "LATITUDE": 51.2123945, "LONGITUDE": -0.7975797 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266600, "UPRN": 10091107913, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146597.0, "LATITUDE": 51.2123945, "LONGITUDE": -0.7975797 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266619, "UPRN": 10091107932, "X_COORDINATE": 484093.0, "Y_COORDINATE": 146599.0, "LATITUDE": 51.2124112, "LONGITUDE": -0.7974504 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 146599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266599, "UPRN": 10091107912, "X_COORDINATE": 484093.0, "Y_COORDINATE": 146599.0, "LATITUDE": 51.2124112, "LONGITUDE": -0.7974504 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 146599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266634, "UPRN": 10091107947, "X_COORDINATE": 484088.0, "Y_COORDINATE": 146599.0, "LATITUDE": 51.2124119, "LONGITUDE": -0.797522 }, "geometry": { "type": "Point", "coordinates": [ 484088.0, 146599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266621, "UPRN": 10091107934, "X_COORDINATE": 484081.0, "Y_COORDINATE": 146603.0, "LATITUDE": 51.2124489, "LONGITUDE": -0.7976212 }, "geometry": { "type": "Point", "coordinates": [ 484081.0, 146603.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266618, "UPRN": 10091107931, "X_COORDINATE": 484090.0, "Y_COORDINATE": 146607.0, "LATITUDE": 51.2124835, "LONGITUDE": -0.7974915 }, "geometry": { "type": "Point", "coordinates": [ 484090.0, 146607.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266598, "UPRN": 10091107911, "X_COORDINATE": 484090.0, "Y_COORDINATE": 146607.0, "LATITUDE": 51.2124835, "LONGITUDE": -0.7974915 }, "geometry": { "type": "Point", "coordinates": [ 484090.0, 146607.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266633, "UPRN": 10091107946, "X_COORDINATE": 484089.0, "Y_COORDINATE": 146608.0, "LATITUDE": 51.2124927, "LONGITUDE": -0.7975056 }, "geometry": { "type": "Point", "coordinates": [ 484089.0, 146608.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266635, "UPRN": 10091107948, "X_COORDINATE": 484079.0, "Y_COORDINATE": 146608.0, "LATITUDE": 51.2124941, "LONGITUDE": -0.7976487 }, "geometry": { "type": "Point", "coordinates": [ 484079.0, 146608.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266622, "UPRN": 10091107935, "X_COORDINATE": 484078.0, "Y_COORDINATE": 146611.0, "LATITUDE": 51.2125213, "LONGITUDE": -0.7976623 }, "geometry": { "type": "Point", "coordinates": [ 484078.0, 146611.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266601, "UPRN": 10091107914, "X_COORDINATE": 484078.0, "Y_COORDINATE": 146611.0, "LATITUDE": 51.2125213, "LONGITUDE": -0.7976623 }, "geometry": { "type": "Point", "coordinates": [ 484078.0, 146611.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266617, "UPRN": 10091107930, "X_COORDINATE": 484088.0, "Y_COORDINATE": 146613.0, "LATITUDE": 51.2125378, "LONGITUDE": -0.7975187 }, "geometry": { "type": "Point", "coordinates": [ 484088.0, 146613.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266596, "UPRN": 10091107909, "X_COORDINATE": 484088.0, "Y_COORDINATE": 146613.0, "LATITUDE": 51.2125378, "LONGITUDE": -0.7975187 }, "geometry": { "type": "Point", "coordinates": [ 484088.0, 146613.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266623, "UPRN": 10091107936, "X_COORDINATE": 484076.0, "Y_COORDINATE": 146617.0, "LATITUDE": 51.2125755, "LONGITUDE": -0.7976895 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 146617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266602, "UPRN": 10091107915, "X_COORDINATE": 484076.0, "Y_COORDINATE": 146617.0, "LATITUDE": 51.2125755, "LONGITUDE": -0.7976895 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 146617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266636, "UPRN": 10091107949, "X_COORDINATE": 484076.0, "Y_COORDINATE": 146617.0, "LATITUDE": 51.2125755, "LONGITUDE": -0.7976895 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 146617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266616, "UPRN": 10091107929, "X_COORDINATE": 484085.0, "Y_COORDINATE": 146619.0, "LATITUDE": 51.2125921, "LONGITUDE": -0.7975602 }, "geometry": { "type": "Point", "coordinates": [ 484085.0, 146619.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266595, "UPRN": 10091107908, "X_COORDINATE": 484085.0, "Y_COORDINATE": 146619.0, "LATITUDE": 51.2125921, "LONGITUDE": -0.7975602 }, "geometry": { "type": "Point", "coordinates": [ 484085.0, 146619.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266624, "UPRN": 10091107937, "X_COORDINATE": 484066.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126129, "LONGITUDE": -0.7978317 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266603, "UPRN": 10091107916, "X_COORDINATE": 484066.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126129, "LONGITUDE": -0.7978317 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266632, "UPRN": 10091107945, "X_COORDINATE": 484083.0, "Y_COORDINATE": 146623.0, "LATITUDE": 51.2126284, "LONGITUDE": -0.7975879 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 146623.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266615, "UPRN": 10091107928, "X_COORDINATE": 484083.0, "Y_COORDINATE": 146624.0, "LATITUDE": 51.2126374, "LONGITUDE": -0.7975877 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 146624.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266594, "UPRN": 10091107907, "X_COORDINATE": 484083.0, "Y_COORDINATE": 146624.0, "LATITUDE": 51.2126374, "LONGITUDE": -0.7975877 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 146624.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445346, "UPRN": 10013891634, "X_COORDINATE": 484064.0, "Y_COORDINATE": 146576.0, "LATITUDE": 51.2122087, "LONGITUDE": -0.7978709 }, "geometry": { "type": "Point", "coordinates": [ 484064.0, 146576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116389, "UPRN": 10096744771, "X_COORDINATE": 484101.0, "Y_COORDINATE": 146574.0, "LATITUDE": 51.2121852, "LONGITUDE": -0.7973417 }, "geometry": { "type": "Point", "coordinates": [ 484101.0, 146574.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265639, "UPRN": 10091106944, "X_COORDINATE": 484101.0, "Y_COORDINATE": 146574.0, "LATITUDE": 51.2121852, "LONGITUDE": -0.7973417 }, "geometry": { "type": "Point", "coordinates": [ 484101.0, 146574.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445345, "UPRN": 10013891633, "X_COORDINATE": 484068.0, "Y_COORDINATE": 146572.0, "LATITUDE": 51.2121721, "LONGITUDE": -0.7978145 }, "geometry": { "type": "Point", "coordinates": [ 484068.0, 146572.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728004, "UPRN": 100061607277, "X_COORDINATE": 483788.0, "Y_COORDINATE": 146244.0, "LATITUDE": 51.2092644, "LONGITUDE": -0.8018987 }, "geometry": { "type": "Point", "coordinates": [ 483788.0, 146244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728003, "UPRN": 100061607276, "X_COORDINATE": 483794.0, "Y_COORDINATE": 146247.0, "LATITUDE": 51.2092905, "LONGITUDE": -0.8018121 }, "geometry": { "type": "Point", "coordinates": [ 483794.0, 146247.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728002, "UPRN": 100061607275, "X_COORDINATE": 483806.0, "Y_COORDINATE": 146249.0, "LATITUDE": 51.2093068, "LONGITUDE": -0.8016399 }, "geometry": { "type": "Point", "coordinates": [ 483806.0, 146249.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728001, "UPRN": 100061607274, "X_COORDINATE": 483811.0, "Y_COORDINATE": 146250.0, "LATITUDE": 51.209315, "LONGITUDE": -0.8015681 }, "geometry": { "type": "Point", "coordinates": [ 483811.0, 146250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728000, "UPRN": 100061607273, "X_COORDINATE": 483816.0, "Y_COORDINATE": 146255.0, "LATITUDE": 51.2093592, "LONGITUDE": -0.8014954 }, "geometry": { "type": "Point", "coordinates": [ 483816.0, 146255.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727999, "UPRN": 100061607272, "X_COORDINATE": 483819.0, "Y_COORDINATE": 146258.0, "LATITUDE": 51.2093858, "LONGITUDE": -0.8014517 }, "geometry": { "type": "Point", "coordinates": [ 483819.0, 146258.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727998, "UPRN": 100061607271, "X_COORDINATE": 483826.0, "Y_COORDINATE": 146264.0, "LATITUDE": 51.2094387, "LONGITUDE": -0.8013502 }, "geometry": { "type": "Point", "coordinates": [ 483826.0, 146264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727997, "UPRN": 100061607270, "X_COORDINATE": 483829.0, "Y_COORDINATE": 146267.0, "LATITUDE": 51.2094652, "LONGITUDE": -0.8013065 }, "geometry": { "type": "Point", "coordinates": [ 483829.0, 146267.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727996, "UPRN": 100061607269, "X_COORDINATE": 483834.0, "Y_COORDINATE": 146273.0, "LATITUDE": 51.2095184, "LONGITUDE": -0.8012336 }, "geometry": { "type": "Point", "coordinates": [ 483834.0, 146273.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727995, "UPRN": 100061607268, "X_COORDINATE": 483839.0, "Y_COORDINATE": 146277.0, "LATITUDE": 51.2095536, "LONGITUDE": -0.8011611 }, "geometry": { "type": "Point", "coordinates": [ 483839.0, 146277.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727994, "UPRN": 100061607267, "X_COORDINATE": 483841.0, "Y_COORDINATE": 146282.0, "LATITUDE": 51.2095983, "LONGITUDE": -0.8011313 }, "geometry": { "type": "Point", "coordinates": [ 483841.0, 146282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727993, "UPRN": 100061607266, "X_COORDINATE": 483845.0, "Y_COORDINATE": 146287.0, "LATITUDE": 51.2096427, "LONGITUDE": -0.8010729 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 146287.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727992, "UPRN": 100061607265, "X_COORDINATE": 483844.0, "Y_COORDINATE": 146301.0, "LATITUDE": 51.2097687, "LONGITUDE": -0.8010839 }, "geometry": { "type": "Point", "coordinates": [ 483844.0, 146301.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727991, "UPRN": 100061607264, "X_COORDINATE": 483846.0, "Y_COORDINATE": 146302.0, "LATITUDE": 51.2097774, "LONGITUDE": -0.801055 }, "geometry": { "type": "Point", "coordinates": [ 483846.0, 146302.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727990, "UPRN": 100061607263, "X_COORDINATE": 483849.0, "Y_COORDINATE": 146304.0, "LATITUDE": 51.2097949, "LONGITUDE": -0.8010116 }, "geometry": { "type": "Point", "coordinates": [ 483849.0, 146304.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727989, "UPRN": 100061607262, "X_COORDINATE": 483852.0, "Y_COORDINATE": 146306.0, "LATITUDE": 51.2098125, "LONGITUDE": -0.8009682 }, "geometry": { "type": "Point", "coordinates": [ 483852.0, 146306.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728005, "UPRN": 100061607278, "X_COORDINATE": 483784.0, "Y_COORDINATE": 146242.0, "LATITUDE": 51.2092471, "LONGITUDE": -0.8019564 }, "geometry": { "type": "Point", "coordinates": [ 483784.0, 146242.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728006, "UPRN": 100061607279, "X_COORDINATE": 483781.0, "Y_COORDINATE": 146241.0, "LATITUDE": 51.2092385, "LONGITUDE": -0.8019996 }, "geometry": { "type": "Point", "coordinates": [ 483781.0, 146241.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446082, "UPRN": 10013892384, "X_COORDINATE": 483985.66, "Y_COORDINATE": 146679.98, "LATITUDE": 51.213155, "LONGITUDE": -0.7989679 }, "geometry": { "type": "Point", "coordinates": [ 483985.659999999974389, 146679.980000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 20268945, "UPRN": 10091110269, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146680.0, "LATITUDE": 51.2131579, "LONGITUDE": -0.7992349 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268946, "UPRN": 10091110270, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146680.0, "LATITUDE": 51.2131579, "LONGITUDE": -0.7992349 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216665, "UPRN": 100062353931, "X_COORDINATE": 483969.0, "Y_COORDINATE": 146680.0, "LATITUDE": 51.2131576, "LONGITUDE": -0.7992063 }, "geometry": { "type": "Point", "coordinates": [ 483969.0, 146680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722865, "UPRN": 100061601770, "X_COORDINATE": 483988.0, "Y_COORDINATE": 146681.0, "LATITUDE": 51.2131638, "LONGITUDE": -0.7989341 }, "geometry": { "type": "Point", "coordinates": [ 483988.0, 146681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447258, "UPRN": 10013893600, "X_COORDINATE": 483965.0, "Y_COORDINATE": 146686.0, "LATITUDE": 51.2132121, "LONGITUDE": -0.7992622 }, "geometry": { "type": "Point", "coordinates": [ 483965.0, 146686.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451439, "UPRN": 10013898307, "X_COORDINATE": 483989.0, "Y_COORDINATE": 146686.0, "LATITUDE": 51.2132086, "LONGITUDE": -0.7989187 }, "geometry": { "type": "Point", "coordinates": [ 483989.0, 146686.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722864, "UPRN": 100061601769, "X_COORDINATE": 483989.0, "Y_COORDINATE": 146686.0, "LATITUDE": 51.2132086, "LONGITUDE": -0.7989187 }, "geometry": { "type": "Point", "coordinates": [ 483989.0, 146686.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446081, "UPRN": 10013892383, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146691.0, "LATITUDE": 51.2132568, "LONGITUDE": -0.7992324 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722863, "UPRN": 100061601768, "X_COORDINATE": 483984.0, "Y_COORDINATE": 146691.0, "LATITUDE": 51.2132543, "LONGITUDE": -0.7989891 }, "geometry": { "type": "Point", "coordinates": [ 483984.0, 146691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216966, "UPRN": 100062354399, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146691.0, "LATITUDE": 51.2132568, "LONGITUDE": -0.7992324 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216967, "UPRN": 100062354400, "X_COORDINATE": 483965.0, "Y_COORDINATE": 146697.0, "LATITUDE": 51.213311, "LONGITUDE": -0.7992596 }, "geometry": { "type": "Point", "coordinates": [ 483965.0, 146697.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216968, "UPRN": 100062354401, "X_COORDINATE": 483964.0, "Y_COORDINATE": 146701.0, "LATITUDE": 51.2133471, "LONGITUDE": -0.799273 }, "geometry": { "type": "Point", "coordinates": [ 483964.0, 146701.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722855, "UPRN": 100061601759, "X_COORDINATE": 483960.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2134017, "LONGITUDE": -0.7993288 }, "geometry": { "type": "Point", "coordinates": [ 483960.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268574, "UPRN": 10091109897, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268575, "UPRN": 10091109898, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216969, "UPRN": 100062354402, "X_COORDINATE": 483960.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2134017, "LONGITUDE": -0.7993288 }, "geometry": { "type": "Point", "coordinates": [ 483960.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268573, "UPRN": 10091109896, "X_COORDINATE": 483987.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134336, "LONGITUDE": -0.7989414 }, "geometry": { "type": "Point", "coordinates": [ 483987.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722856, "UPRN": 100061601760, "X_COORDINATE": 483958.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2134469, "LONGITUDE": -0.7993563 }, "geometry": { "type": "Point", "coordinates": [ 483958.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216970, "UPRN": 100062354403, "X_COORDINATE": 483958.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2134469, "LONGITUDE": -0.7993563 }, "geometry": { "type": "Point", "coordinates": [ 483958.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265736, "UPRN": 10091107041, "X_COORDINATE": 483979.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135067, "LONGITUDE": -0.7990541 }, "geometry": { "type": "Point", "coordinates": [ 483979.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216857, "UPRN": 100062354178, "X_COORDINATE": 483957.0, "Y_COORDINATE": 146721.0, "LATITUDE": 51.213528, "LONGITUDE": -0.7993685 }, "geometry": { "type": "Point", "coordinates": [ 483957.0, 146721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216858, "UPRN": 100062354179, "X_COORDINATE": 483957.0, "Y_COORDINATE": 146721.0, "LATITUDE": 51.213528, "LONGITUDE": -0.7993685 }, "geometry": { "type": "Point", "coordinates": [ 483957.0, 146721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216971, "UPRN": 100062354404, "X_COORDINATE": 483957.0, "Y_COORDINATE": 146721.0, "LATITUDE": 51.213528, "LONGITUDE": -0.7993685 }, "geometry": { "type": "Point", "coordinates": [ 483957.0, 146721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216991, "UPRN": 100062354424, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146714.0, "LATITUDE": 51.2134616, "LONGITUDE": -0.7990409 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146714.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216992, "UPRN": 100062354425, "X_COORDINATE": 483984.0, "Y_COORDINATE": 146691.0, "LATITUDE": 51.2132543, "LONGITUDE": -0.7989891 }, "geometry": { "type": "Point", "coordinates": [ 483984.0, 146691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217120, "UPRN": 100062354592, "X_COORDINATE": 483981.0, "Y_COORDINATE": 146706.0, "LATITUDE": 51.2133896, "LONGITUDE": -0.7990285 }, "geometry": { "type": "Point", "coordinates": [ 483981.0, 146706.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217127, "UPRN": 100062354612, "X_COORDINATE": 483978.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2135518, "LONGITUDE": -0.7990672 }, "geometry": { "type": "Point", "coordinates": [ 483978.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217136, "UPRN": 100062354629, "X_COORDINATE": 483986.0, "Y_COORDINATE": 146699.0, "LATITUDE": 51.2133259, "LONGITUDE": -0.7989586 }, "geometry": { "type": "Point", "coordinates": [ 483986.0, 146699.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217168, "UPRN": 100062354676, "X_COORDINATE": 483965.0, "Y_COORDINATE": 146686.0, "LATITUDE": 51.2132121, "LONGITUDE": -0.7992622 }, "geometry": { "type": "Point", "coordinates": [ 483965.0, 146686.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217169, "UPRN": 100062354677, "X_COORDINATE": 483979.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135067, "LONGITUDE": -0.7990541 }, "geometry": { "type": "Point", "coordinates": [ 483979.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217170, "UPRN": 100062354678, "X_COORDINATE": 483986.0, "Y_COORDINATE": 146699.0, "LATITUDE": 51.2133259, "LONGITUDE": -0.7989586 }, "geometry": { "type": "Point", "coordinates": [ 483986.0, 146699.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367176, "UPRN": 100062609397, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367177, "UPRN": 100062609398, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367178, "UPRN": 100062609399, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2133987, "LONGITUDE": -0.7990426 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367179, "UPRN": 100062609400, "X_COORDINATE": 483980.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2133628, "LONGITUDE": -0.7990435 }, "geometry": { "type": "Point", "coordinates": [ 483980.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367180, "UPRN": 100062609401, "X_COORDINATE": 483986.0, "Y_COORDINATE": 146699.0, "LATITUDE": 51.2133259, "LONGITUDE": -0.7989586 }, "geometry": { "type": "Point", "coordinates": [ 483986.0, 146699.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727960, "UPRN": 100061607233, "X_COORDINATE": 483961.0, "Y_COORDINATE": 146399.0, "LATITUDE": 51.2106325, "LONGITUDE": -0.7993865 }, "geometry": { "type": "Point", "coordinates": [ 483961.0, 146399.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727958, "UPRN": 100061607231, "X_COORDINATE": 483965.0, "Y_COORDINATE": 146402.0, "LATITUDE": 51.2106589, "LONGITUDE": -0.7993285 }, "geometry": { "type": "Point", "coordinates": [ 483965.0, 146402.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727957, "UPRN": 100061607230, "X_COORDINATE": 483974.0, "Y_COORDINATE": 146403.0, "LATITUDE": 51.2106666, "LONGITUDE": -0.7991995 }, "geometry": { "type": "Point", "coordinates": [ 483974.0, 146403.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727959, "UPRN": 100061607232, "X_COORDINATE": 483957.0, "Y_COORDINATE": 146405.0, "LATITUDE": 51.2106871, "LONGITUDE": -0.7994423 }, "geometry": { "type": "Point", "coordinates": [ 483957.0, 146405.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727955, "UPRN": 100061607228, "X_COORDINATE": 483982.0, "Y_COORDINATE": 146415.0, "LATITUDE": 51.2107733, "LONGITUDE": -0.7990822 }, "geometry": { "type": "Point", "coordinates": [ 483982.0, 146415.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727952, "UPRN": 100061607225, "X_COORDINATE": 483998.0, "Y_COORDINATE": 146424.0, "LATITUDE": 51.2108519, "LONGITUDE": -0.7988511 }, "geometry": { "type": "Point", "coordinates": [ 483998.0, 146424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727966, "UPRN": 100061607239, "X_COORDINATE": 483964.0, "Y_COORDINATE": 146428.0, "LATITUDE": 51.2108928, "LONGITUDE": -0.7993368 }, "geometry": { "type": "Point", "coordinates": [ 483964.0, 146428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727953, "UPRN": 100061607226, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146428.0, "LATITUDE": 51.2108868, "LONGITUDE": -0.7987499 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727968, "UPRN": 100061607241, "X_COORDINATE": 483962.0, "Y_COORDINATE": 146432.0, "LATITUDE": 51.2109291, "LONGITUDE": -0.7993644 }, "geometry": { "type": "Point", "coordinates": [ 483962.0, 146432.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727970, "UPRN": 100061607243, "X_COORDINATE": 483956.0, "Y_COORDINATE": 146440.0, "LATITUDE": 51.2110019, "LONGITUDE": -0.7994485 }, "geometry": { "type": "Point", "coordinates": [ 483956.0, 146440.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727964, "UPRN": 100061607237, "X_COORDINATE": 483969.0, "Y_COORDINATE": 146442.0, "LATITUDE": 51.2110179, "LONGITUDE": -0.7992619 }, "geometry": { "type": "Point", "coordinates": [ 483969.0, 146442.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722866, "UPRN": 100061601771, "X_COORDINATE": 483997.0, "Y_COORDINATE": 146676.0, "LATITUDE": 51.2131175, "LONGITUDE": -0.7988065 }, "geometry": { "type": "Point", "coordinates": [ 483997.0, 146676.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722867, "UPRN": 100061601772, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146677.0, "LATITUDE": 51.2131247, "LONGITUDE": -0.7986345 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913247, "UPRN": 10094581736, "X_COORDINATE": 484020.71, "Y_COORDINATE": 146677.68, "LATITUDE": 51.2131291, "LONGITUDE": -0.7984667 }, "geometry": { "type": "Point", "coordinates": [ 484020.710000000020955, 146677.68 ] } }, -{ "type": "Feature", "properties": { "FID": 15444679, "UPRN": 10013890868, "X_COORDINATE": 484023.0, "Y_COORDINATE": 146679.0, "LATITUDE": 51.2131407, "LONGITUDE": -0.7984336 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 146679.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445649, "UPRN": 10013891942, "X_COORDINATE": 484027.0, "Y_COORDINATE": 146685.0, "LATITUDE": 51.213194, "LONGITUDE": -0.798375 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 146685.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730714, "UPRN": 100061610281, "X_COORDINATE": 484020.0, "Y_COORDINATE": 146378.0, "LATITUDE": 51.2104351, "LONGITUDE": -0.7985469 }, "geometry": { "type": "Point", "coordinates": [ 484020.0, 146378.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730715, "UPRN": 100061610282, "X_COORDINATE": 484020.0, "Y_COORDINATE": 146378.0, "LATITUDE": 51.2104351, "LONGITUDE": -0.7985469 }, "geometry": { "type": "Point", "coordinates": [ 484020.0, 146378.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730716, "UPRN": 100061610283, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146372.0, "LATITUDE": 51.2103822, "LONGITUDE": -0.7986485 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146372.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730717, "UPRN": 100061610284, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146372.0, "LATITUDE": 51.2103822, "LONGITUDE": -0.7986485 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146372.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730718, "UPRN": 100061610285, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146367.0, "LATITUDE": 51.2103384, "LONGITUDE": -0.7987642 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146367.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730719, "UPRN": 100061610286, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146367.0, "LATITUDE": 51.2103384, "LONGITUDE": -0.7987642 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146367.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730720, "UPRN": 100061610287, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146354.0, "LATITUDE": 51.2102245, "LONGITUDE": -0.7990535 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146354.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730721, "UPRN": 100061610288, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146354.0, "LATITUDE": 51.2102245, "LONGITUDE": -0.7990535 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146354.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730722, "UPRN": 100061610289, "X_COORDINATE": 483975.0, "Y_COORDINATE": 146349.0, "LATITUDE": 51.210181, "LONGITUDE": -0.7991978 }, "geometry": { "type": "Point", "coordinates": [ 483975.0, 146349.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730723, "UPRN": 100061610290, "X_COORDINATE": 483975.0, "Y_COORDINATE": 146349.0, "LATITUDE": 51.210181, "LONGITUDE": -0.7991978 }, "geometry": { "type": "Point", "coordinates": [ 483975.0, 146349.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730724, "UPRN": 100061610291, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146344.0, "LATITUDE": 51.2101372, "LONGITUDE": -0.7993134 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146344.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730725, "UPRN": 100061610292, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146344.0, "LATITUDE": 51.2101372, "LONGITUDE": -0.7993134 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146344.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730750, "UPRN": 100061610317, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146317.0, "LATITUDE": 51.2098898, "LONGITUDE": -0.7988617 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146317.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730751, "UPRN": 100061610318, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146317.0, "LATITUDE": 51.2098898, "LONGITUDE": -0.7988617 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146317.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730752, "UPRN": 100061610319, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146322.0, "LATITUDE": 51.2099335, "LONGITUDE": -0.7987461 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730753, "UPRN": 100061610320, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146322.0, "LATITUDE": 51.2099335, "LONGITUDE": -0.7987461 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730754, "UPRN": 100061610321, "X_COORDINATE": 484025.0, "Y_COORDINATE": 146325.0, "LATITUDE": 51.2099579, "LONGITUDE": -0.7984877 }, "geometry": { "type": "Point", "coordinates": [ 484025.0, 146325.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730755, "UPRN": 100061610322, "X_COORDINATE": 484025.0, "Y_COORDINATE": 146325.0, "LATITUDE": 51.2099579, "LONGITUDE": -0.7984877 }, "geometry": { "type": "Point", "coordinates": [ 484025.0, 146325.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216993, "UPRN": 100062354426, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146676.0, "LATITUDE": 51.2131184, "LONGITUDE": -0.7988924 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146676.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216997, "UPRN": 100062354430, "X_COORDINATE": 483997.0, "Y_COORDINATE": 146676.0, "LATITUDE": 51.2131175, "LONGITUDE": -0.7988065 }, "geometry": { "type": "Point", "coordinates": [ 483997.0, 146676.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730740, "UPRN": 100061610307, "X_COORDINATE": 483941.0, "Y_COORDINATE": 146278.0, "LATITUDE": 51.2095477, "LONGITUDE": -0.799701 }, "geometry": { "type": "Point", "coordinates": [ 483941.0, 146278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730741, "UPRN": 100061610308, "X_COORDINATE": 483941.0, "Y_COORDINATE": 146278.0, "LATITUDE": 51.2095477, "LONGITUDE": -0.799701 }, "geometry": { "type": "Point", "coordinates": [ 483941.0, 146278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730738, "UPRN": 100061610305, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146287.0, "LATITUDE": 51.2096296, "LONGITUDE": -0.7997991 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146287.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730739, "UPRN": 100061610306, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146287.0, "LATITUDE": 51.2096296, "LONGITUDE": -0.7997991 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146287.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730736, "UPRN": 100061610303, "X_COORDINATE": 483928.0, "Y_COORDINATE": 146294.0, "LATITUDE": 51.2096934, "LONGITUDE": -0.7998833 }, "geometry": { "type": "Point", "coordinates": [ 483928.0, 146294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730737, "UPRN": 100061610304, "X_COORDINATE": 483928.0, "Y_COORDINATE": 146294.0, "LATITUDE": 51.2096934, "LONGITUDE": -0.7998833 }, "geometry": { "type": "Point", "coordinates": [ 483928.0, 146294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730734, "UPRN": 100061610301, "X_COORDINATE": 483922.0, "Y_COORDINATE": 146303.0, "LATITUDE": 51.2097752, "LONGITUDE": -0.7999671 }, "geometry": { "type": "Point", "coordinates": [ 483922.0, 146303.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730735, "UPRN": 100061610302, "X_COORDINATE": 483922.0, "Y_COORDINATE": 146303.0, "LATITUDE": 51.2097752, "LONGITUDE": -0.7999671 }, "geometry": { "type": "Point", "coordinates": [ 483922.0, 146303.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727988, "UPRN": 100061607261, "X_COORDINATE": 483864.0, "Y_COORDINATE": 146310.0, "LATITUDE": 51.2098467, "LONGITUDE": -0.8007956 }, "geometry": { "type": "Point", "coordinates": [ 483864.0, 146310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727987, "UPRN": 100061607260, "X_COORDINATE": 483868.0, "Y_COORDINATE": 146314.0, "LATITUDE": 51.209882, "LONGITUDE": -0.8007374 }, "geometry": { "type": "Point", "coordinates": [ 483868.0, 146314.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727986, "UPRN": 100061607259, "X_COORDINATE": 483871.0, "Y_COORDINATE": 146318.0, "LATITUDE": 51.2099175, "LONGITUDE": -0.8006935 }, "geometry": { "type": "Point", "coordinates": [ 483871.0, 146318.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730732, "UPRN": 100061610299, "X_COORDINATE": 483927.0, "Y_COORDINATE": 146321.0, "LATITUDE": 51.2099363, "LONGITUDE": -0.7998913 }, "geometry": { "type": "Point", "coordinates": [ 483927.0, 146321.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730733, "UPRN": 100061610300, "X_COORDINATE": 483927.0, "Y_COORDINATE": 146321.0, "LATITUDE": 51.2099363, "LONGITUDE": -0.7998913 }, "geometry": { "type": "Point", "coordinates": [ 483927.0, 146321.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727985, "UPRN": 100061607258, "X_COORDINATE": 483873.0, "Y_COORDINATE": 146324.0, "LATITUDE": 51.2099712, "LONGITUDE": -0.8006635 }, "geometry": { "type": "Point", "coordinates": [ 483873.0, 146324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730730, "UPRN": 100061610297, "X_COORDINATE": 483938.0, "Y_COORDINATE": 146324.0, "LATITUDE": 51.2099617, "LONGITUDE": -0.7997332 }, "geometry": { "type": "Point", "coordinates": [ 483938.0, 146324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730731, "UPRN": 100061610298, "X_COORDINATE": 483938.0, "Y_COORDINATE": 146324.0, "LATITUDE": 51.2099617, "LONGITUDE": -0.7997332 }, "geometry": { "type": "Point", "coordinates": [ 483938.0, 146324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727984, "UPRN": 100061607257, "X_COORDINATE": 483877.0, "Y_COORDINATE": 146327.0, "LATITUDE": 51.2099976, "LONGITUDE": -0.8006055 }, "geometry": { "type": "Point", "coordinates": [ 483877.0, 146327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730728, "UPRN": 100061610295, "X_COORDINATE": 483945.0, "Y_COORDINATE": 146330.0, "LATITUDE": 51.2100146, "LONGITUDE": -0.7996316 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 146330.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730729, "UPRN": 100061610296, "X_COORDINATE": 483945.0, "Y_COORDINATE": 146330.0, "LATITUDE": 51.2100146, "LONGITUDE": -0.7996316 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 146330.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730726, "UPRN": 100061610293, "X_COORDINATE": 483954.0, "Y_COORDINATE": 146337.0, "LATITUDE": 51.2100762, "LONGITUDE": -0.7995011 }, "geometry": { "type": "Point", "coordinates": [ 483954.0, 146337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730727, "UPRN": 100061610294, "X_COORDINATE": 483954.0, "Y_COORDINATE": 146337.0, "LATITUDE": 51.2100762, "LONGITUDE": -0.7995011 }, "geometry": { "type": "Point", "coordinates": [ 483954.0, 146337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727980, "UPRN": 100061607253, "X_COORDINATE": 483858.0, "Y_COORDINATE": 146341.0, "LATITUDE": 51.2101262, "LONGITUDE": -0.8008742 }, "geometry": { "type": "Point", "coordinates": [ 483858.0, 146341.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727983, "UPRN": 100061607256, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146343.0, "LATITUDE": 51.2101408, "LONGITUDE": -0.8005445 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146343.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727978, "UPRN": 100061607251, "X_COORDINATE": 483864.0, "Y_COORDINATE": 146344.0, "LATITUDE": 51.2101523, "LONGITUDE": -0.8007876 }, "geometry": { "type": "Point", "coordinates": [ 483864.0, 146344.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727982, "UPRN": 100061607255, "X_COORDINATE": 483883.0, "Y_COORDINATE": 146346.0, "LATITUDE": 51.2101675, "LONGITUDE": -0.8005152 }, "geometry": { "type": "Point", "coordinates": [ 483883.0, 146346.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727981, "UPRN": 100061607254, "X_COORDINATE": 483885.0, "Y_COORDINATE": 146350.0, "LATITUDE": 51.2102032, "LONGITUDE": -0.8004857 }, "geometry": { "type": "Point", "coordinates": [ 483885.0, 146350.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217131, "UPRN": 100062354618, "X_COORDINATE": 483833.0, "Y_COORDINATE": 146343.0, "LATITUDE": 51.2101479, "LONGITUDE": -0.8012315 }, "geometry": { "type": "Point", "coordinates": [ 483833.0, 146343.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727979, "UPRN": 100061607252, "X_COORDINATE": 483891.0, "Y_COORDINATE": 146356.0, "LATITUDE": 51.2102562, "LONGITUDE": -0.8003984 }, "geometry": { "type": "Point", "coordinates": [ 483891.0, 146356.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727977, "UPRN": 100061607250, "X_COORDINATE": 483894.0, "Y_COORDINATE": 146359.0, "LATITUDE": 51.2102828, "LONGITUDE": -0.8003547 }, "geometry": { "type": "Point", "coordinates": [ 483894.0, 146359.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727976, "UPRN": 100061607249, "X_COORDINATE": 483896.0, "Y_COORDINATE": 146362.0, "LATITUDE": 51.2103094, "LONGITUDE": -0.8003254 }, "geometry": { "type": "Point", "coordinates": [ 483896.0, 146362.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727975, "UPRN": 100061607248, "X_COORDINATE": 483898.0, "Y_COORDINATE": 146365.0, "LATITUDE": 51.2103361, "LONGITUDE": -0.8002961 }, "geometry": { "type": "Point", "coordinates": [ 483898.0, 146365.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727973, "UPRN": 100061607246, "X_COORDINATE": 483901.0, "Y_COORDINATE": 146367.0, "LATITUDE": 51.2103537, "LONGITUDE": -0.8002527 }, "geometry": { "type": "Point", "coordinates": [ 483901.0, 146367.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727972, "UPRN": 100061607245, "X_COORDINATE": 483906.0, "Y_COORDINATE": 146374.0, "LATITUDE": 51.2104159, "LONGITUDE": -0.8001795 }, "geometry": { "type": "Point", "coordinates": [ 483906.0, 146374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727971, "UPRN": 100061607244, "X_COORDINATE": 483921.0, "Y_COORDINATE": 146374.0, "LATITUDE": 51.2104137, "LONGITUDE": -0.7999648 }, "geometry": { "type": "Point", "coordinates": [ 483921.0, 146374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727969, "UPRN": 100061607242, "X_COORDINATE": 483924.0, "Y_COORDINATE": 146377.0, "LATITUDE": 51.2104402, "LONGITUDE": -0.7999212 }, "geometry": { "type": "Point", "coordinates": [ 483924.0, 146377.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727967, "UPRN": 100061607240, "X_COORDINATE": 483928.0, "Y_COORDINATE": 146380.0, "LATITUDE": 51.2104666, "LONGITUDE": -0.7998632 }, "geometry": { "type": "Point", "coordinates": [ 483928.0, 146380.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727965, "UPRN": 100061607238, "X_COORDINATE": 483937.0, "Y_COORDINATE": 146386.0, "LATITUDE": 51.2105192, "LONGITUDE": -0.799733 }, "geometry": { "type": "Point", "coordinates": [ 483937.0, 146386.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727974, "UPRN": 100061607247, "X_COORDINATE": 483895.0, "Y_COORDINATE": 146387.0, "LATITUDE": 51.2105343, "LONGITUDE": -0.8003339 }, "geometry": { "type": "Point", "coordinates": [ 483895.0, 146387.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727963, "UPRN": 100061607236, "X_COORDINATE": 483940.0, "Y_COORDINATE": 146387.0, "LATITUDE": 51.2105277, "LONGITUDE": -0.7996898 }, "geometry": { "type": "Point", "coordinates": [ 483940.0, 146387.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727962, "UPRN": 100061607235, "X_COORDINATE": 483943.0, "Y_COORDINATE": 146390.0, "LATITUDE": 51.2105543, "LONGITUDE": -0.7996462 }, "geometry": { "type": "Point", "coordinates": [ 483943.0, 146390.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727961, "UPRN": 100061607234, "X_COORDINATE": 483947.0, "Y_COORDINATE": 146391.0, "LATITUDE": 51.2105627, "LONGITUDE": -0.7995887 }, "geometry": { "type": "Point", "coordinates": [ 483947.0, 146391.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216863, "UPRN": 100062354186, "X_COORDINATE": 483906.0, "Y_COORDINATE": 146374.0, "LATITUDE": 51.2104159, "LONGITUDE": -0.8001795 }, "geometry": { "type": "Point", "coordinates": [ 483906.0, 146374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216956, "UPRN": 100062354362, "X_COORDINATE": 483882.0, "Y_COORDINATE": 146371.0, "LATITUDE": 51.2103924, "LONGITUDE": -0.8005237 }, "geometry": { "type": "Point", "coordinates": [ 483882.0, 146371.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18071622, "UPRN": 10025744059, "X_COORDINATE": 483843.21, "Y_COORDINATE": 146548.58, "LATITUDE": 51.2119946, "LONGITUDE": -0.8010375 }, "geometry": { "type": "Point", "coordinates": [ 483843.210000000020955, 146548.579999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 20269894, "UPRN": 10091111227, "X_COORDINATE": 483848.0, "Y_COORDINATE": 146694.0, "LATITUDE": 51.2133012, "LONGITUDE": -0.800935 }, "geometry": { "type": "Point", "coordinates": [ 483848.0, 146694.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18029259, "UPRN": 10025644820, "X_COORDINATE": 483869.25, "Y_COORDINATE": 146530.4, "LATITUDE": 51.2118273, "LONGITUDE": -0.800669 }, "geometry": { "type": "Point", "coordinates": [ 483869.25, 146530.4 ] } }, -{ "type": "Feature", "properties": { "FID": 20265606, "UPRN": 10091106911, "X_COORDINATE": 483883.0, "Y_COORDINATE": 146615.0, "LATITUDE": 51.2125859, "LONGITUDE": -0.8004524 }, "geometry": { "type": "Point", "coordinates": [ 483883.0, 146615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116270, "UPRN": 10096744652, "X_COORDINATE": 483883.4, "Y_COORDINATE": 146614.89, "LATITUDE": 51.2125848, "LONGITUDE": -0.8004468 }, "geometry": { "type": "Point", "coordinates": [ 483883.400000000023283, 146614.89000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 15445529, "UPRN": 10013891819, "X_COORDINATE": 483887.0, "Y_COORDINATE": 146639.0, "LATITUDE": 51.212801, "LONGITUDE": -0.8003896 }, "geometry": { "type": "Point", "coordinates": [ 483887.0, 146639.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445530, "UPRN": 10013891820, "X_COORDINATE": 483889.0, "Y_COORDINATE": 146643.0, "LATITUDE": 51.2128367, "LONGITUDE": -0.80036 }, "geometry": { "type": "Point", "coordinates": [ 483889.0, 146643.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450497, "UPRN": 10013896878, "X_COORDINATE": 483897.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2130063, "LONGITUDE": -0.8002411 }, "geometry": { "type": "Point", "coordinates": [ 483897.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447585, "UPRN": 10013893936, "X_COORDINATE": 483899.0, "Y_COORDINATE": 146731.0, "LATITUDE": 51.2136264, "LONGITUDE": -0.8001964 }, "geometry": { "type": "Point", "coordinates": [ 483899.0, 146731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726041, "UPRN": 100061605234, "X_COORDINATE": 483899.0, "Y_COORDINATE": 146656.0, "LATITUDE": 51.2129521, "LONGITUDE": -0.8002139 }, "geometry": { "type": "Point", "coordinates": [ 483899.0, 146656.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449636, "UPRN": 10013896009, "X_COORDINATE": 483900.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136352, "LONGITUDE": -0.8001818 }, "geometry": { "type": "Point", "coordinates": [ 483900.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449561, "UPRN": 10013895934, "X_COORDINATE": 483903.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2130055, "LONGITUDE": -0.8001552 }, "geometry": { "type": "Point", "coordinates": [ 483903.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726042, "UPRN": 100061605235, "X_COORDINATE": 483903.0, "Y_COORDINATE": 146655.0, "LATITUDE": 51.2129425, "LONGITUDE": -0.8001568 }, "geometry": { "type": "Point", "coordinates": [ 483903.0, 146655.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726662, "UPRN": 100061605895, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2136072, "LONGITUDE": -0.8000823 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726663, "UPRN": 100061605896, "X_COORDINATE": 483908.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135711, "LONGITUDE": -0.8000689 }, "geometry": { "type": "Point", "coordinates": [ 483908.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726664, "UPRN": 100061605897, "X_COORDINATE": 483908.0, "Y_COORDINATE": 146721.0, "LATITUDE": 51.2135352, "LONGITUDE": -0.8000699 }, "geometry": { "type": "Point", "coordinates": [ 483908.0, 146721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266050, "UPRN": 10091107360, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146733.0, "LATITUDE": 51.2136429, "LONGITUDE": -0.8000528 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726665, "UPRN": 100061605898, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146716.0, "LATITUDE": 51.2134901, "LONGITUDE": -0.8000567 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146716.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726666, "UPRN": 100061605899, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2134541, "LONGITUDE": -0.8000577 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726667, "UPRN": 100061605900, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2134091, "LONGITUDE": -0.8000588 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116538, "UPRN": 10096744926, "X_COORDINATE": 483909.98, "Y_COORDINATE": 146714.02, "LATITUDE": 51.2134721, "LONGITUDE": -0.8000432 }, "geometry": { "type": "Point", "coordinates": [ 483909.979999999981374, 146714.019999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 31726043, "UPRN": 100061605236, "X_COORDINATE": 483911.0, "Y_COORDINATE": 146654.0, "LATITUDE": 51.2129324, "LONGITUDE": -0.8000426 }, "geometry": { "type": "Point", "coordinates": [ 483911.0, 146654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726669, "UPRN": 100061605902, "X_COORDINATE": 483911.0, "Y_COORDINATE": 146693.0, "LATITUDE": 51.213283, "LONGITUDE": -0.8000335 }, "geometry": { "type": "Point", "coordinates": [ 483911.0, 146693.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726670, "UPRN": 100061605903, "X_COORDINATE": 483913.0, "Y_COORDINATE": 146690.0, "LATITUDE": 51.2132557, "LONGITUDE": -0.8000055 }, "geometry": { "type": "Point", "coordinates": [ 483913.0, 146690.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726671, "UPRN": 100061605904, "X_COORDINATE": 483914.0, "Y_COORDINATE": 146685.0, "LATITUDE": 51.2132106, "LONGITUDE": -0.7999924 }, "geometry": { "type": "Point", "coordinates": [ 483914.0, 146685.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726668, "UPRN": 100061605901, "X_COORDINATE": 483917.0, "Y_COORDINATE": 146698.0, "LATITUDE": 51.2133271, "LONGITUDE": -0.7999464 }, "geometry": { "type": "Point", "coordinates": [ 483917.0, 146698.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730896, "UPRN": 100061610477, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2136055, "LONGITUDE": -0.7999106 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367172, "UPRN": 100062609386, "X_COORDINATE": 483928.0, "Y_COORDINATE": 146794.0, "LATITUDE": 51.2141885, "LONGITUDE": -0.7997666 }, "geometry": { "type": "Point", "coordinates": [ 483928.0, 146794.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367171, "UPRN": 100062609385, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2140983, "LONGITUDE": -0.7997403 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367170, "UPRN": 100062609384, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2140983, "LONGITUDE": -0.7997403 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217171, "UPRN": 100062354679, "X_COORDINATE": 483926.0, "Y_COORDINATE": 146768.0, "LATITUDE": 51.213955, "LONGITUDE": -0.7998013 }, "geometry": { "type": "Point", "coordinates": [ 483926.0, 146768.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217144, "UPRN": 100062354642, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146832.0, "LATITUDE": 51.2145292, "LONGITUDE": -0.7996718 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146832.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217133, "UPRN": 100062354626, "X_COORDINATE": 483943.0, "Y_COORDINATE": 146835.0, "LATITUDE": 51.2145549, "LONGITUDE": -0.7995423 }, "geometry": { "type": "Point", "coordinates": [ 483943.0, 146835.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217126, "UPRN": 100062354607, "X_COORDINATE": 483931.0, "Y_COORDINATE": 146768.0, "LATITUDE": 51.2139543, "LONGITUDE": -0.7997297 }, "geometry": { "type": "Point", "coordinates": [ 483931.0, 146768.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217003, "UPRN": 100062354436, "X_COORDINATE": 483926.0, "Y_COORDINATE": 146768.0, "LATITUDE": 51.213955, "LONGITUDE": -0.7998013 }, "geometry": { "type": "Point", "coordinates": [ 483926.0, 146768.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217002, "UPRN": 100062354435, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146742.0, "LATITUDE": 51.2137214, "LONGITUDE": -0.7998216 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146742.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216984, "UPRN": 100062354417, "X_COORDINATE": 483957.0, "Y_COORDINATE": 146780.0, "LATITUDE": 51.2140584, "LONGITUDE": -0.7993547 }, "geometry": { "type": "Point", "coordinates": [ 483957.0, 146780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216983, "UPRN": 100062354416, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146802.0, "LATITUDE": 51.2142581, "LONGITUDE": -0.7995357 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146802.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216982, "UPRN": 100062354415, "X_COORDINATE": 483939.0, "Y_COORDINATE": 146814.0, "LATITUDE": 51.2143667, "LONGITUDE": -0.7996044 }, "geometry": { "type": "Point", "coordinates": [ 483939.0, 146814.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216981, "UPRN": 100062354414, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146797.0, "LATITUDE": 51.2142119, "LONGITUDE": -0.7994223 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146797.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216978, "UPRN": 100062354411, "X_COORDINATE": 483936.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2139985, "LONGITUDE": -0.7996569 }, "geometry": { "type": "Point", "coordinates": [ 483936.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216977, "UPRN": 100062354410, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146779.0, "LATITUDE": 51.2140528, "LONGITUDE": -0.7996842 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216976, "UPRN": 100062354409, "X_COORDINATE": 483943.0, "Y_COORDINATE": 146762.0, "LATITUDE": 51.2138986, "LONGITUDE": -0.7995593 }, "geometry": { "type": "Point", "coordinates": [ 483943.0, 146762.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216975, "UPRN": 100062354408, "X_COORDINATE": 483947.0, "Y_COORDINATE": 146756.0, "LATITUDE": 51.2138441, "LONGITUDE": -0.7995035 }, "geometry": { "type": "Point", "coordinates": [ 483947.0, 146756.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216893, "UPRN": 100062354248, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146830.0, "LATITUDE": 51.2145118, "LONGITUDE": -0.7997295 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146830.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216859, "UPRN": 100062354180, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146797.0, "LATITUDE": 51.2142119, "LONGITUDE": -0.7994223 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146797.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216663, "UPRN": 100062353928, "X_COORDINATE": 483951.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.2145987, "LONGITUDE": -0.7994266 }, "geometry": { "type": "Point", "coordinates": [ 483951.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445367, "UPRN": 10013891656, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.2140311, "LONGITUDE": -0.7993268 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722860, "UPRN": 100061601765, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.2140311, "LONGITUDE": -0.7993268 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445368, "UPRN": 10013891657, "X_COORDINATE": 483956.0, "Y_COORDINATE": 146782.0, "LATITUDE": 51.2140765, "LONGITUDE": -0.7993686 }, "geometry": { "type": "Point", "coordinates": [ 483956.0, 146782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451506, "UPRN": 10013898374, "X_COORDINATE": 483953.0, "Y_COORDINATE": 146844.0, "LATITUDE": 51.2146343, "LONGITUDE": -0.799397 }, "geometry": { "type": "Point", "coordinates": [ 483953.0, 146844.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729967, "UPRN": 100061609414, "X_COORDINATE": 483953.0, "Y_COORDINATE": 146844.0, "LATITUDE": 51.2146343, "LONGITUDE": -0.799397 }, "geometry": { "type": "Point", "coordinates": [ 483953.0, 146844.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450303, "UPRN": 10013896682, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146776.0, "LATITUDE": 51.2140237, "LONGITUDE": -0.7994845 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146776.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449441, "UPRN": 10013895814, "X_COORDINATE": 483945.0, "Y_COORDINATE": 146781.0, "LATITUDE": 51.2140691, "LONGITUDE": -0.7995263 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 146781.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451408, "UPRN": 10013898276, "X_COORDINATE": 483936.0, "Y_COORDINATE": 146756.0, "LATITUDE": 51.2138457, "LONGITUDE": -0.7996609 }, "geometry": { "type": "Point", "coordinates": [ 483936.0, 146756.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445196, "UPRN": 10013891471, "X_COORDINATE": 483936.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2139985, "LONGITUDE": -0.7996569 }, "geometry": { "type": "Point", "coordinates": [ 483936.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445195, "UPRN": 10013891470, "X_COORDINATE": 483936.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2139985, "LONGITUDE": -0.7996569 }, "geometry": { "type": "Point", "coordinates": [ 483936.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730893, "UPRN": 100061610474, "X_COORDINATE": 483936.0, "Y_COORDINATE": 146756.0, "LATITUDE": 51.2138457, "LONGITUDE": -0.7996609 }, "geometry": { "type": "Point", "coordinates": [ 483936.0, 146756.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443983, "UPRN": 10013890088, "X_COORDINATE": 483931.0, "Y_COORDINATE": 146824.0, "LATITUDE": 51.2144578, "LONGITUDE": -0.7997166 }, "geometry": { "type": "Point", "coordinates": [ 483931.0, 146824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730894, "UPRN": 100061610475, "X_COORDINATE": 483931.0, "Y_COORDINATE": 146752.0, "LATITUDE": 51.2138105, "LONGITUDE": -0.7997334 }, "geometry": { "type": "Point", "coordinates": [ 483931.0, 146752.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216611, "UPRN": 100062353848, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2140983, "LONGITUDE": -0.7997403 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447261, "UPRN": 10013893603, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2140983, "LONGITUDE": -0.7997403 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447262, "UPRN": 10013893604, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2140983, "LONGITUDE": -0.7997403 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730895, "UPRN": 100061610476, "X_COORDINATE": 483930.0, "Y_COORDINATE": 146747.0, "LATITUDE": 51.2137657, "LONGITUDE": -0.7997489 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 146747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446083, "UPRN": 10013892385, "X_COORDINATE": 483929.0, "Y_COORDINATE": 146765.0, "LATITUDE": 51.2139276, "LONGITUDE": -0.799759 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 146765.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446768, "UPRN": 10013893107, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.2146089, "LONGITUDE": -0.8004286 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216686, "UPRN": 100062353959, "X_COORDINATE": 483887.0, "Y_COORDINATE": 146842.0, "LATITUDE": 51.214626, "LONGITUDE": -0.8003422 }, "geometry": { "type": "Point", "coordinates": [ 483887.0, 146842.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449063, "UPRN": 10013895433, "X_COORDINATE": 483924.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.2146296, "LONGITUDE": -0.7998124 }, "geometry": { "type": "Point", "coordinates": [ 483924.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445391, "UPRN": 10013891681, "X_COORDINATE": 483922.0, "Y_COORDINATE": 146846.0, "LATITUDE": 51.2146569, "LONGITUDE": -0.7998403 }, "geometry": { "type": "Point", "coordinates": [ 483922.0, 146846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445392, "UPRN": 10013891682, "X_COORDINATE": 483914.0, "Y_COORDINATE": 146855.0, "LATITUDE": 51.214739, "LONGITUDE": -0.7999527 }, "geometry": { "type": "Point", "coordinates": [ 483914.0, 146855.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910953, "UPRN": 10094579376, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146857.0, "LATITUDE": 51.2147553, "LONGITUDE": -0.7997948 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146857.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910956, "UPRN": 10094579379, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146857.0, "LATITUDE": 51.2147553, "LONGITUDE": -0.7997948 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146857.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731836, "UPRN": 100061611458, "X_COORDINATE": 483894.0, "Y_COORDINATE": 146859.0, "LATITUDE": 51.2147778, "LONGITUDE": -0.8002381 }, "geometry": { "type": "Point", "coordinates": [ 483894.0, 146859.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216959, "UPRN": 100062354389, "X_COORDINATE": 483903.0, "Y_COORDINATE": 146860.0, "LATITUDE": 51.2147855, "LONGITUDE": -0.800109 }, "geometry": { "type": "Point", "coordinates": [ 483903.0, 146860.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445393, "UPRN": 10013891683, "X_COORDINATE": 483911.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2147933, "LONGITUDE": -0.7999942 }, "geometry": { "type": "Point", "coordinates": [ 483911.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911620, "UPRN": 10094580091, "X_COORDINATE": 483923.0, "Y_COORDINATE": 146862.0, "LATITUDE": 51.2148006, "LONGITUDE": -0.7998222 }, "geometry": { "type": "Point", "coordinates": [ 483923.0, 146862.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912538, "UPRN": 10094581016, "X_COORDINATE": 483885.67, "Y_COORDINATE": 146863.96, "LATITUDE": 51.2148237, "LONGITUDE": -0.8003561 }, "geometry": { "type": "Point", "coordinates": [ 483885.669999999983702, 146863.96 ] } }, -{ "type": "Feature", "properties": { "FID": 21910955, "UPRN": 10094579378, "X_COORDINATE": 483923.0, "Y_COORDINATE": 146865.0, "LATITUDE": 51.2148275, "LONGITUDE": -0.7998215 }, "geometry": { "type": "Point", "coordinates": [ 483923.0, 146865.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912543, "UPRN": 10094581021, "X_COORDINATE": 483887.91, "Y_COORDINATE": 146865.31, "LATITUDE": 51.2148355, "LONGITUDE": -0.8003238 }, "geometry": { "type": "Point", "coordinates": [ 483887.909999999974389, 146865.31 ] } }, -{ "type": "Feature", "properties": { "FID": 21910951, "UPRN": 10094579374, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146866.0, "LATITUDE": 51.2148371, "LONGITUDE": -0.7998786 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146866.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910950, "UPRN": 10094579373, "X_COORDINATE": 483916.0, "Y_COORDINATE": 146872.0, "LATITUDE": 51.2148915, "LONGITUDE": -0.7999201 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 146872.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912539, "UPRN": 10094581017, "X_COORDINATE": 483881.88, "Y_COORDINATE": 146872.63, "LATITUDE": 51.2149022, "LONGITUDE": -0.8004084 }, "geometry": { "type": "Point", "coordinates": [ 483881.88, 146872.63 ] } }, -{ "type": "Feature", "properties": { "FID": 15445394, "UPRN": 10013891684, "X_COORDINATE": 483903.0, "Y_COORDINATE": 146874.0, "LATITUDE": 51.2149114, "LONGITUDE": -0.8001057 }, "geometry": { "type": "Point", "coordinates": [ 483903.0, 146874.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912088, "UPRN": 10094580563, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912086, "UPRN": 10094580561, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912085, "UPRN": 10094580560, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116930, "UPRN": 10096745318, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116991, "UPRN": 10096745379, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116992, "UPRN": 10096745380, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217024, "UPRN": 100062354468, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.2146089, "LONGITUDE": -0.8004286 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217025, "UPRN": 100062354469, "X_COORDINATE": 483894.0, "Y_COORDINATE": 146859.0, "LATITUDE": 51.2147778, "LONGITUDE": -0.8002381 }, "geometry": { "type": "Point", "coordinates": [ 483894.0, 146859.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910954, "UPRN": 10094579377, "X_COORDINATE": 483929.0, "Y_COORDINATE": 146860.0, "LATITUDE": 51.2147817, "LONGITUDE": -0.7997368 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 146860.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910952, "UPRN": 10094579375, "X_COORDINATE": 483927.0, "Y_COORDINATE": 146863.0, "LATITUDE": 51.214809, "LONGITUDE": -0.7997648 }, "geometry": { "type": "Point", "coordinates": [ 483927.0, 146863.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722857, "UPRN": 100061601761, "X_COORDINATE": 483955.0, "Y_COORDINATE": 146726.0, "LATITUDE": 51.2135732, "LONGITUDE": -0.799396 }, "geometry": { "type": "Point", "coordinates": [ 483955.0, 146726.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216985, "UPRN": 100062354418, "X_COORDINATE": 483974.0, "Y_COORDINATE": 146726.0, "LATITUDE": 51.2135704, "LONGITUDE": -0.799124 }, "geometry": { "type": "Point", "coordinates": [ 483974.0, 146726.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216614, "UPRN": 100062353851, "X_COORDINATE": 483938.0, "Y_COORDINATE": 146728.0, "LATITUDE": 51.2135937, "LONGITUDE": -0.7996388 }, "geometry": { "type": "Point", "coordinates": [ 483938.0, 146728.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722858, "UPRN": 100061601762, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2136006, "LONGITUDE": -0.7994382 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216972, "UPRN": 100062354405, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146729.0, "LATITUDE": 51.2136006, "LONGITUDE": -0.7994382 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216990, "UPRN": 100062354423, "X_COORDINATE": 483973.0, "Y_COORDINATE": 146731.0, "LATITUDE": 51.2136155, "LONGITUDE": -0.7991372 }, "geometry": { "type": "Point", "coordinates": [ 483973.0, 146731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216973, "UPRN": 100062354406, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146733.0, "LATITUDE": 51.2136372, "LONGITUDE": -0.7994945 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17495405, "UPRN": 10024874618, "X_COORDINATE": 483989.25, "Y_COORDINATE": 146735.55, "LATITUDE": 51.213654, "LONGITUDE": -0.7989035 }, "geometry": { "type": "Point", "coordinates": [ 483989.25, 146735.549999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 31722862, "UPRN": 100061601767, "X_COORDINATE": 483977.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2136689, "LONGITUDE": -0.7990785 }, "geometry": { "type": "Point", "coordinates": [ 483977.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216989, "UPRN": 100062354422, "X_COORDINATE": 483977.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2136689, "LONGITUDE": -0.7990785 }, "geometry": { "type": "Point", "coordinates": [ 483977.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216974, "UPRN": 100062354407, "X_COORDINATE": 483942.0, "Y_COORDINATE": 146744.0, "LATITUDE": 51.2137369, "LONGITUDE": -0.7995778 }, "geometry": { "type": "Point", "coordinates": [ 483942.0, 146744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722861, "UPRN": 100061601766, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138295, "LONGITUDE": -0.7989598 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216988, "UPRN": 100062354421, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138295, "LONGITUDE": -0.7989598 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216987, "UPRN": 100062354420, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146757.0, "LATITUDE": 51.2138466, "LONGITUDE": -0.7988734 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146757.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216986, "UPRN": 100062354419, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146766.0, "LATITUDE": 51.213931, "LONGITUDE": -0.7992149 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146766.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216637, "UPRN": 100062353882, "X_COORDINATE": 483968.0, "Y_COORDINATE": 146774.0, "LATITUDE": 51.2140028, "LONGITUDE": -0.7991987 }, "geometry": { "type": "Point", "coordinates": [ 483968.0, 146774.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217128, "UPRN": 100062354613, "X_COORDINATE": 483970.0, "Y_COORDINATE": 146761.0, "LATITUDE": 51.2138857, "LONGITUDE": -0.7991731 }, "geometry": { "type": "Point", "coordinates": [ 483970.0, 146761.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217165, "UPRN": 100062354673, "X_COORDINATE": 483946.0, "Y_COORDINATE": 146759.0, "LATITUDE": 51.2138712, "LONGITUDE": -0.7995171 }, "geometry": { "type": "Point", "coordinates": [ 483946.0, 146759.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217166, "UPRN": 100062354674, "X_COORDINATE": 483945.0, "Y_COORDINATE": 146750.0, "LATITUDE": 51.2137904, "LONGITUDE": -0.7995335 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 146750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217167, "UPRN": 100062354675, "X_COORDINATE": 483955.0, "Y_COORDINATE": 146726.0, "LATITUDE": 51.2135732, "LONGITUDE": -0.799396 }, "geometry": { "type": "Point", "coordinates": [ 483955.0, 146726.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367174, "UPRN": 100062609390, "X_COORDINATE": 483978.0, "Y_COORDINATE": 146731.0, "LATITUDE": 51.2136148, "LONGITUDE": -0.7990656 }, "geometry": { "type": "Point", "coordinates": [ 483978.0, 146731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367175, "UPRN": 100062609391, "X_COORDINATE": 483968.0, "Y_COORDINATE": 146774.0, "LATITUDE": 51.2140028, "LONGITUDE": -0.7991987 }, "geometry": { "type": "Point", "coordinates": [ 483968.0, 146774.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399503, "UPRN": 100062699275, "X_COORDINATE": 483936.0, "Y_COORDINATE": 146735.0, "LATITUDE": 51.2136569, "LONGITUDE": -0.7996658 }, "geometry": { "type": "Point", "coordinates": [ 483936.0, 146735.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217032, "UPRN": 100062354477, "X_COORDINATE": 484035.0, "Y_COORDINATE": 146846.0, "LATITUDE": 51.2146403, "LONGITUDE": -0.7982228 }, "geometry": { "type": "Point", "coordinates": [ 484035.0, 146846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116404, "UPRN": 10096744786, "X_COORDINATE": 484036.24, "Y_COORDINATE": 146897.49, "LATITUDE": 51.215103, "LONGITUDE": -0.798193 }, "geometry": { "type": "Point", "coordinates": [ 484036.24, 146897.49 ] } }, -{ "type": "Feature", "properties": { "FID": 23116402, "UPRN": 10096744784, "X_COORDINATE": 484037.43, "Y_COORDINATE": 146897.66, "LATITUDE": 51.2151043, "LONGITUDE": -0.798176 }, "geometry": { "type": "Point", "coordinates": [ 484037.43, 146897.66 ] } }, -{ "type": "Feature", "properties": { "FID": 23116403, "UPRN": 10096744785, "X_COORDINATE": 484039.66, "Y_COORDINATE": 146893.06, "LATITUDE": 51.2150627, "LONGITUDE": -0.7981451 }, "geometry": { "type": "Point", "coordinates": [ 484039.659999999974389, 146893.06 ] } }, -{ "type": "Feature", "properties": { "FID": 23116405, "UPRN": 10096744787, "X_COORDINATE": 484040.6, "Y_COORDINATE": 146893.53, "LATITUDE": 51.2150667, "LONGITUDE": -0.7981316 }, "geometry": { "type": "Point", "coordinates": [ 484040.599999999976717, 146893.53 ] } }, -{ "type": "Feature", "properties": { "FID": 31720959, "UPRN": 100061599732, "X_COORDINATE": 484042.0, "Y_COORDINATE": 146830.0, "LATITUDE": 51.2144954, "LONGITUDE": -0.7981264 }, "geometry": { "type": "Point", "coordinates": [ 484042.0, 146830.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217031, "UPRN": 100062354476, "X_COORDINATE": 484042.0, "Y_COORDINATE": 146848.0, "LATITUDE": 51.2146572, "LONGITUDE": -0.7981222 }, "geometry": { "type": "Point", "coordinates": [ 484042.0, 146848.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720977, "UPRN": 100061599750, "X_COORDINATE": 484043.0, "Y_COORDINATE": 146819.0, "LATITUDE": 51.2143964, "LONGITUDE": -0.7981146 }, "geometry": { "type": "Point", "coordinates": [ 484043.0, 146819.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217030, "UPRN": 100062354475, "X_COORDINATE": 484043.0, "Y_COORDINATE": 146864.0, "LATITUDE": 51.2148009, "LONGITUDE": -0.7981041 }, "geometry": { "type": "Point", "coordinates": [ 484043.0, 146864.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720960, "UPRN": 100061599733, "X_COORDINATE": 484045.0, "Y_COORDINATE": 146832.0, "LATITUDE": 51.2145129, "LONGITUDE": -0.798083 }, "geometry": { "type": "Point", "coordinates": [ 484045.0, 146832.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216649, "UPRN": 100062353903, "X_COORDINATE": 484046.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2147735, "LONGITUDE": -0.7980619 }, "geometry": { "type": "Point", "coordinates": [ 484046.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720961, "UPRN": 100061599734, "X_COORDINATE": 484049.0, "Y_COORDINATE": 146834.0, "LATITUDE": 51.2145303, "LONGITUDE": -0.7980252 }, "geometry": { "type": "Point", "coordinates": [ 484049.0, 146834.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720976, "UPRN": 100061599749, "X_COORDINATE": 484052.0, "Y_COORDINATE": 146806.0, "LATITUDE": 51.2142782, "LONGITUDE": -0.7979888 }, "geometry": { "type": "Point", "coordinates": [ 484052.0, 146806.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720962, "UPRN": 100061599735, "X_COORDINATE": 484052.0, "Y_COORDINATE": 146837.0, "LATITUDE": 51.2145569, "LONGITUDE": -0.7979816 }, "geometry": { "type": "Point", "coordinates": [ 484052.0, 146837.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720963, "UPRN": 100061599736, "X_COORDINATE": 484055.0, "Y_COORDINATE": 146839.0, "LATITUDE": 51.2145744, "LONGITUDE": -0.7979382 }, "geometry": { "type": "Point", "coordinates": [ 484055.0, 146839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720975, "UPRN": 100061599748, "X_COORDINATE": 484058.0, "Y_COORDINATE": 146803.0, "LATITUDE": 51.2142503, "LONGITUDE": -0.7979037 }, "geometry": { "type": "Point", "coordinates": [ 484058.0, 146803.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720964, "UPRN": 100061599737, "X_COORDINATE": 484059.0, "Y_COORDINATE": 146841.0, "LATITUDE": 51.2145918, "LONGITUDE": -0.7978805 }, "geometry": { "type": "Point", "coordinates": [ 484059.0, 146841.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720974, "UPRN": 100061599747, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2142677, "LONGITUDE": -0.7978459 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720973, "UPRN": 100061599746, "X_COORDINATE": 484067.0, "Y_COORDINATE": 146808.0, "LATITUDE": 51.2142939, "LONGITUDE": -0.7977737 }, "geometry": { "type": "Point", "coordinates": [ 484067.0, 146808.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720965, "UPRN": 100061599738, "X_COORDINATE": 484067.0, "Y_COORDINATE": 146833.0, "LATITUDE": 51.2145187, "LONGITUDE": -0.7977678 }, "geometry": { "type": "Point", "coordinates": [ 484067.0, 146833.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720966, "UPRN": 100061599739, "X_COORDINATE": 484069.0, "Y_COORDINATE": 146830.0, "LATITUDE": 51.2144914, "LONGITUDE": -0.7977399 }, "geometry": { "type": "Point", "coordinates": [ 484069.0, 146830.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720972, "UPRN": 100061599745, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146811.0, "LATITUDE": 51.2143203, "LONGITUDE": -0.7977157 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146811.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720967, "UPRN": 100061599740, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146826.0, "LATITUDE": 51.2144552, "LONGITUDE": -0.7977122 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720968, "UPRN": 100061599741, "X_COORDINATE": 484074.0, "Y_COORDINATE": 146823.0, "LATITUDE": 51.2144278, "LONGITUDE": -0.79767 }, "geometry": { "type": "Point", "coordinates": [ 484074.0, 146823.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720971, "UPRN": 100061599744, "X_COORDINATE": 484076.0, "Y_COORDINATE": 146812.0, "LATITUDE": 51.2143286, "LONGITUDE": -0.7976439 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 146812.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450891, "UPRN": 10013897340, "X_COORDINATE": 483788.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2152249, "LONGITUDE": -0.8017441 }, "geometry": { "type": "Point", "coordinates": [ 483788.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450890, "UPRN": 10013897339, "X_COORDINATE": 483781.0, "Y_COORDINATE": 146899.0, "LATITUDE": 51.215154, "LONGITUDE": -0.8018462 }, "geometry": { "type": "Point", "coordinates": [ 483781.0, 146899.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450889, "UPRN": 10013897338, "X_COORDINATE": 483784.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2150907, "LONGITUDE": -0.8018049 }, "geometry": { "type": "Point", "coordinates": [ 483784.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450888, "UPRN": 10013897337, "X_COORDINATE": 483800.0, "Y_COORDINATE": 146890.0, "LATITUDE": 51.2150703, "LONGITUDE": -0.8015763 }, "geometry": { "type": "Point", "coordinates": [ 483800.0, 146890.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450537, "UPRN": 10013896920, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.215059, "LONGITUDE": -0.7987131 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449544, "UPRN": 10013895917, "X_COORDINATE": 483838.0, "Y_COORDINATE": 146895.0, "LATITUDE": 51.2151097, "LONGITUDE": -0.8010312 }, "geometry": { "type": "Point", "coordinates": [ 483838.0, 146895.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449515, "UPRN": 10013895888, "X_COORDINATE": 483786.0, "Y_COORDINATE": 146926.0, "LATITUDE": 51.215396, "LONGITUDE": -0.8017683 }, "geometry": { "type": "Point", "coordinates": [ 483786.0, 146926.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448832, "UPRN": 10013895199, "X_COORDINATE": 484267.0, "Y_COORDINATE": 146871.0, "LATITUDE": 51.2148309, "LONGITUDE": -0.7948961 }, "geometry": { "type": "Point", "coordinates": [ 484267.0, 146871.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448586, "UPRN": 10013894946, "X_COORDINATE": 484297.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.215195, "LONGITUDE": -0.7944571 }, "geometry": { "type": "Point", "coordinates": [ 484297.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448105, "UPRN": 10013894464, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146867.0, "LATITUDE": 51.2148355, "LONGITUDE": -0.7988477 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146867.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448104, "UPRN": 10013894463, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146867.0, "LATITUDE": 51.2148355, "LONGITUDE": -0.7988477 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146867.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448085, "UPRN": 10013894444, "X_COORDINATE": 483996.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2147808, "LONGITUDE": -0.7987776 }, "geometry": { "type": "Point", "coordinates": [ 483996.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447977, "UPRN": 10013894336, "X_COORDINATE": 484039.0, "Y_COORDINATE": 146869.0, "LATITUDE": 51.2148464, "LONGITUDE": -0.7981602 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 146869.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447084, "UPRN": 10013893424, "X_COORDINATE": 484093.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.215315, "LONGITUDE": -0.7973748 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447976, "UPRN": 10013894335, "X_COORDINATE": 484039.0, "Y_COORDINATE": 146869.0, "LATITUDE": 51.2148464, "LONGITUDE": -0.7981602 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 146869.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446623, "UPRN": 10013892948, "X_COORDINATE": 484011.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152821, "LONGITUDE": -0.7985498 }, "geometry": { "type": "Point", "coordinates": [ 484011.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446640, "UPRN": 10013892965, "X_COORDINATE": 484010.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152283, "LONGITUDE": -0.7985655 }, "geometry": { "type": "Point", "coordinates": [ 484010.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446625, "UPRN": 10013892950, "X_COORDINATE": 484010.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152283, "LONGITUDE": -0.7985655 }, "geometry": { "type": "Point", "coordinates": [ 484010.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447940, "UPRN": 10013894298, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146865.0, "LATITUDE": 51.2148149, "LONGITUDE": -0.7985905 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146865.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446639, "UPRN": 10013892964, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152644, "LONGITUDE": -0.7985789 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446624, "UPRN": 10013892949, "X_COORDINATE": 484009.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152644, "LONGITUDE": -0.7985789 }, "geometry": { "type": "Point", "coordinates": [ 484009.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446641, "UPRN": 10013892966, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146909.0, "LATITUDE": 51.2152108, "LONGITUDE": -0.7986089 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146909.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446638, "UPRN": 10013892963, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152827, "LONGITUDE": -0.798607 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446622, "UPRN": 10013892947, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152827, "LONGITUDE": -0.798607 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446626, "UPRN": 10013892951, "X_COORDINATE": 484007.0, "Y_COORDINATE": 146909.0, "LATITUDE": 51.2152108, "LONGITUDE": -0.7986089 }, "geometry": { "type": "Point", "coordinates": [ 484007.0, 146909.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450892, "UPRN": 10013897341, "X_COORDINATE": 483790.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2151617, "LONGITUDE": -0.8017171 }, "geometry": { "type": "Point", "coordinates": [ 483790.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451630, "UPRN": 10013898498, "X_COORDINATE": 483793.0, "Y_COORDINATE": 146886.0, "LATITUDE": 51.2150354, "LONGITUDE": -0.8016775 }, "geometry": { "type": "Point", "coordinates": [ 483793.0, 146886.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17497689, "UPRN": 10024877483, "X_COORDINATE": 484045.6, "Y_COORDINATE": 146885.65, "LATITUDE": 51.2149952, "LONGITUDE": -0.7980618 }, "geometry": { "type": "Point", "coordinates": [ 484045.599999999976717, 146885.65 ] } }, -{ "type": "Feature", "properties": { "FID": 15448792, "UPRN": 10013895159, "X_COORDINATE": 484035.0, "Y_COORDINATE": 146817.0, "LATITUDE": 51.2143795, "LONGITUDE": -0.7982296 }, "geometry": { "type": "Point", "coordinates": [ 484035.0, 146817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450957, "UPRN": 10013897407, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146820.0, "LATITUDE": 51.214413, "LONGITUDE": -0.7988587 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146820.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17495404, "UPRN": 10024874617, "X_COORDINATE": 483990.97, "Y_COORDINATE": 146833.96, "LATITUDE": 51.2145385, "LONGITUDE": -0.7988559 }, "geometry": { "type": "Point", "coordinates": [ 483990.96999999997206, 146833.96 ] } }, -{ "type": "Feature", "properties": { "FID": 15451438, "UPRN": 10013898306, "X_COORDINATE": 484030.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.214614, "LONGITUDE": -0.7982951 }, "geometry": { "type": "Point", "coordinates": [ 484030.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451437, "UPRN": 10013898305, "X_COORDINATE": 484030.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.214614, "LONGITUDE": -0.7982951 }, "geometry": { "type": "Point", "coordinates": [ 484030.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450808, "UPRN": 10013897239, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.215059, "LONGITUDE": -0.7987131 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446632, "UPRN": 10013892957, "X_COORDINATE": 483992.0, "Y_COORDINATE": 146901.0, "LATITUDE": 51.215141, "LONGITUDE": -0.7988255 }, "geometry": { "type": "Point", "coordinates": [ 483992.0, 146901.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446631, "UPRN": 10013892956, "X_COORDINATE": 483995.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151496, "LONGITUDE": -0.7987823 }, "geometry": { "type": "Point", "coordinates": [ 483995.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446633, "UPRN": 10013892958, "X_COORDINATE": 483988.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151506, "LONGITUDE": -0.7988825 }, "geometry": { "type": "Point", "coordinates": [ 483988.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446630, "UPRN": 10013892955, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146905.0, "LATITUDE": 51.215176, "LONGITUDE": -0.7987243 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146905.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446643, "UPRN": 10013892968, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146905.0, "LATITUDE": 51.215176, "LONGITUDE": -0.7987243 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146905.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446634, "UPRN": 10013892959, "X_COORDINATE": 483988.0, "Y_COORDINATE": 146905.0, "LATITUDE": 51.2151776, "LONGITUDE": -0.7988818 }, "geometry": { "type": "Point", "coordinates": [ 483988.0, 146905.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446629, "UPRN": 10013892954, "X_COORDINATE": 484002.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151845, "LONGITUDE": -0.7986812 }, "geometry": { "type": "Point", "coordinates": [ 484002.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446642, "UPRN": 10013892967, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.215194, "LONGITUDE": -0.7987239 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446644, "UPRN": 10013892969, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.215194, "LONGITUDE": -0.7987239 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446645, "UPRN": 10013892970, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.215194, "LONGITUDE": -0.7987239 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447804, "UPRN": 10013894159, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.215194, "LONGITUDE": -0.7987239 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446628, "UPRN": 10013892953, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146908.0, "LATITUDE": 51.2152021, "LONGITUDE": -0.7986377 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146908.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446635, "UPRN": 10013892960, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146908.0, "LATITUDE": 51.215205, "LONGITUDE": -0.798924 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146908.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446627, "UPRN": 10013892952, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.215229, "LONGITUDE": -0.798637 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446620, "UPRN": 10013892945, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152657, "LONGITUDE": -0.7987077 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446636, "UPRN": 10013892961, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152657, "LONGITUDE": -0.7987077 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446621, "UPRN": 10013892946, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146916.0, "LATITUDE": 51.215274, "LONGITUDE": -0.7986359 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146916.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446637, "UPRN": 10013892962, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146916.0, "LATITUDE": 51.215274, "LONGITUDE": -0.7986359 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146916.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445238, "UPRN": 10013891518, "X_COORDINATE": 483994.0, "Y_COORDINATE": 146919.0, "LATITUDE": 51.2153026, "LONGITUDE": -0.7987926 }, "geometry": { "type": "Point", "coordinates": [ 483994.0, 146919.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445239, "UPRN": 10013891519, "X_COORDINATE": 483994.0, "Y_COORDINATE": 146919.0, "LATITUDE": 51.2153026, "LONGITUDE": -0.7987926 }, "geometry": { "type": "Point", "coordinates": [ 483994.0, 146919.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444214, "UPRN": 10013890371, "X_COORDINATE": 483982.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2153133, "LONGITUDE": -0.7989642 }, "geometry": { "type": "Point", "coordinates": [ 483982.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450288, "UPRN": 10013896666, "X_COORDINATE": 484148.34, "Y_COORDINATE": 147020.34, "LATITUDE": 51.2161909, "LONGITUDE": -0.7965597 }, "geometry": { "type": "Point", "coordinates": [ 484148.340000000025611, 147020.34 ] } }, -{ "type": "Feature", "properties": { "FID": 15934103, "UPRN": 10015372051, "X_COORDINATE": 484163.65, "Y_COORDINATE": 147221.0, "LATITUDE": 51.2179926, "LONGITUDE": -0.7962935 }, "geometry": { "type": "Point", "coordinates": [ 484163.650000000023283, 147221.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17496169, "UPRN": 10024875564, "X_COORDINATE": 484194.5, "Y_COORDINATE": 147159.35, "LATITUDE": 51.2174338, "LONGITUDE": -0.7958663 }, "geometry": { "type": "Point", "coordinates": [ 484194.5, 147159.35 ] } }, -{ "type": "Feature", "properties": { "FID": 20265946, "UPRN": 10091107252, "X_COORDINATE": 484194.0, "Y_COORDINATE": 147196.0, "LATITUDE": 51.2177634, "LONGITUDE": -0.7958649 }, "geometry": { "type": "Point", "coordinates": [ 484194.0, 147196.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451044, "UPRN": 10013897494, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163437, "LONGITUDE": -0.7959735 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450814, "UPRN": 10013897246, "X_COORDINATE": 484181.0, "Y_COORDINATE": 147113.0, "LATITUDE": 51.2170191, "LONGITUDE": -0.7960705 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 147113.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450589, "UPRN": 10013897012, "X_COORDINATE": 484171.0, "Y_COORDINATE": 147043.0, "LATITUDE": 51.2163913, "LONGITUDE": -0.79623 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 147043.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450470, "UPRN": 10013896850, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147263.0, "LATITUDE": 51.2183631, "LONGITUDE": -0.7955915 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147263.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450274, "UPRN": 10013896652, "X_COORDINATE": 484171.0, "Y_COORDINATE": 147043.0, "LATITUDE": 51.2163913, "LONGITUDE": -0.79623 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 147043.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450039, "UPRN": 10013896415, "X_COORDINATE": 484204.0, "Y_COORDINATE": 147258.0, "LATITUDE": 51.2183193, "LONGITUDE": -0.7957072 }, "geometry": { "type": "Point", "coordinates": [ 484204.0, 147258.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449571, "UPRN": 10013895944, "X_COORDINATE": 484208.0, "Y_COORDINATE": 147157.0, "LATITUDE": 51.2174107, "LONGITUDE": -0.7956736 }, "geometry": { "type": "Point", "coordinates": [ 484208.0, 147157.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448739, "UPRN": 10013895106, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147231.0, "LATITUDE": 51.2180825, "LONGITUDE": -0.7962862 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147231.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444452, "UPRN": 10013890631, "X_COORDINATE": 484191.0, "Y_COORDINATE": 147319.0, "LATITUDE": 51.2188696, "LONGITUDE": -0.795879 }, "geometry": { "type": "Point", "coordinates": [ 484191.0, 147319.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444453, "UPRN": 10013890632, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147324.0, "LATITUDE": 51.2189149, "LONGITUDE": -0.7959065 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444454, "UPRN": 10013890633, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2189601, "LONGITUDE": -0.795934 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116296, "UPRN": 10096744678, "X_COORDINATE": 484234.08, "Y_COORDINATE": 147338.52, "LATITUDE": 51.2190388, "LONGITUDE": -0.7952578 }, "geometry": { "type": "Point", "coordinates": [ 484234.080000000016298, 147338.519999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 31720590, "UPRN": 100061599350, "X_COORDINATE": 484240.0, "Y_COORDINATE": 147298.0, "LATITUDE": 51.2186736, "LONGITUDE": -0.7951825 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 147298.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720591, "UPRN": 100061599351, "X_COORDINATE": 484193.0, "Y_COORDINATE": 147242.0, "LATITUDE": 51.2181771, "LONGITUDE": -0.7958685 }, "geometry": { "type": "Point", "coordinates": [ 484193.0, 147242.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720592, "UPRN": 100061599352, "X_COORDINATE": 484243.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2186912, "LONGITUDE": -0.7951391 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720593, "UPRN": 100061599353, "X_COORDINATE": 484248.0, "Y_COORDINATE": 147304.0, "LATITUDE": 51.2187264, "LONGITUDE": -0.7950666 }, "geometry": { "type": "Point", "coordinates": [ 484248.0, 147304.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720594, "UPRN": 100061599354, "X_COORDINATE": 484251.0, "Y_COORDINATE": 147306.0, "LATITUDE": 51.2187439, "LONGITUDE": -0.7950232 }, "geometry": { "type": "Point", "coordinates": [ 484251.0, 147306.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117045, "UPRN": 10096745433, "X_COORDINATE": 484389.41, "Y_COORDINATE": 147207.72, "LATITUDE": 51.21784, "LONGITUDE": -0.7930649 }, "geometry": { "type": "Point", "coordinates": [ 484389.409999999974389, 147207.72 ] } }, -{ "type": "Feature", "properties": { "FID": 20265799, "UPRN": 10091107105, "X_COORDINATE": 484678.0, "Y_COORDINATE": 147193.0, "LATITUDE": 51.2176649, "LONGITUDE": -0.7889372 }, "geometry": { "type": "Point", "coordinates": [ 484678.0, 147193.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449051, "UPRN": 10013895421, "X_COORDINATE": 484264.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2163866, "LONGITUDE": -0.7948985 }, "geometry": { "type": "Point", "coordinates": [ 484264.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448604, "UPRN": 10013894964, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448603, "UPRN": 10013894963, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448602, "UPRN": 10013894962, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448601, "UPRN": 10013894961, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448600, "UPRN": 10013894960, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448599, "UPRN": 10013894959, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448598, "UPRN": 10013894958, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448597, "UPRN": 10013894957, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448540, "UPRN": 10013894900, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448539, "UPRN": 10013894899, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448538, "UPRN": 10013894898, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117048, "UPRN": 10096745436, "X_COORDINATE": 484392.37, "Y_COORDINATE": 147203.53, "LATITUDE": 51.2178018, "LONGITUDE": -0.7930235 }, "geometry": { "type": "Point", "coordinates": [ 484392.37, 147203.53 ] } }, -{ "type": "Feature", "properties": { "FID": 23117049, "UPRN": 10096745437, "X_COORDINATE": 484389.41, "Y_COORDINATE": 147207.72, "LATITUDE": 51.21784, "LONGITUDE": -0.7930649 }, "geometry": { "type": "Point", "coordinates": [ 484389.409999999974389, 147207.72 ] } }, -{ "type": "Feature", "properties": { "FID": 17779768, "UPRN": 10025232523, "X_COORDINATE": 484356.65, "Y_COORDINATE": 147337.7, "LATITUDE": 51.2190133, "LONGITUDE": -0.7935033 }, "geometry": { "type": "Point", "coordinates": [ 484356.650000000023283, 147337.700000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 20269714, "UPRN": 10091111038, "X_COORDINATE": 484387.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2180226, "LONGITUDE": -0.7930946 }, "geometry": { "type": "Point", "coordinates": [ 484387.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269713, "UPRN": 10091111037, "X_COORDINATE": 484387.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2180226, "LONGITUDE": -0.7930946 }, "geometry": { "type": "Point", "coordinates": [ 484387.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267741, "UPRN": 10091109062, "X_COORDINATE": 484296.0, "Y_COORDINATE": 147192.0, "LATITUDE": 51.2177124, "LONGITUDE": -0.7944057 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 147192.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267739, "UPRN": 10091109060, "X_COORDINATE": 484307.0, "Y_COORDINATE": 147192.0, "LATITUDE": 51.2177108, "LONGITUDE": -0.7942483 }, "geometry": { "type": "Point", "coordinates": [ 484307.0, 147192.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267735, "UPRN": 10091109056, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147196.0, "LATITUDE": 51.2177479, "LONGITUDE": -0.7943619 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147196.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267733, "UPRN": 10091109054, "X_COORDINATE": 484307.0, "Y_COORDINATE": 147192.0, "LATITUDE": 51.2177108, "LONGITUDE": -0.7942483 }, "geometry": { "type": "Point", "coordinates": [ 484307.0, 147192.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267729, "UPRN": 10091109050, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147196.0, "LATITUDE": 51.2177479, "LONGITUDE": -0.7943619 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147196.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267702, "UPRN": 10091109023, "X_COORDINATE": 484342.0, "Y_COORDINATE": 147404.0, "LATITUDE": 51.2196115, "LONGITUDE": -0.7936975 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 147404.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447504, "UPRN": 10013893854, "X_COORDINATE": 484336.0, "Y_COORDINATE": 147238.0, "LATITUDE": 51.2181201, "LONGITUDE": -0.7938223 }, "geometry": { "type": "Point", "coordinates": [ 484336.0, 147238.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446281, "UPRN": 10013892593, "X_COORDINATE": 484355.0, "Y_COORDINATE": 147249.0, "LATITUDE": 51.2182161, "LONGITUDE": -0.7935478 }, "geometry": { "type": "Point", "coordinates": [ 484355.0, 147249.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443971, "UPRN": 10013890074, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179366, "LONGITUDE": -0.7934692 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445343, "UPRN": 10013891631, "X_COORDINATE": 484372.0, "Y_COORDINATE": 147416.0, "LATITUDE": 51.219715, "LONGITUDE": -0.7932652 }, "geometry": { "type": "Point", "coordinates": [ 484372.0, 147416.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448003, "UPRN": 10013894362, "X_COORDINATE": 484345.0, "Y_COORDINATE": 147405.0, "LATITUDE": 51.2196201, "LONGITUDE": -0.7936543 }, "geometry": { "type": "Point", "coordinates": [ 484345.0, 147405.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448006, "UPRN": 10013894365, "X_COORDINATE": 484342.0, "Y_COORDINATE": 147404.0, "LATITUDE": 51.2196115, "LONGITUDE": -0.7936975 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 147404.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448007, "UPRN": 10013894366, "X_COORDINATE": 484338.0, "Y_COORDINATE": 147402.0, "LATITUDE": 51.2195941, "LONGITUDE": -0.7937552 }, "geometry": { "type": "Point", "coordinates": [ 484338.0, 147402.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448005, "UPRN": 10013894364, "X_COORDINATE": 484338.0, "Y_COORDINATE": 147402.0, "LATITUDE": 51.2195941, "LONGITUDE": -0.7937552 }, "geometry": { "type": "Point", "coordinates": [ 484338.0, 147402.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448004, "UPRN": 10013894363, "X_COORDINATE": 484342.0, "Y_COORDINATE": 147396.0, "LATITUDE": 51.2195396, "LONGITUDE": -0.7936994 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 147396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450047, "UPRN": 10013896423, "X_COORDINATE": 484285.0, "Y_COORDINATE": 147346.0, "LATITUDE": 51.2190985, "LONGITUDE": -0.7945271 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 147346.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450217, "UPRN": 10013896594, "X_COORDINATE": 484315.0, "Y_COORDINATE": 147280.0, "LATITUDE": 51.2185007, "LONGITUDE": -0.7941131 }, "geometry": { "type": "Point", "coordinates": [ 484315.0, 147280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450423, "UPRN": 10013896803, "X_COORDINATE": 484370.0, "Y_COORDINATE": 147257.0, "LATITUDE": 51.2182859, "LONGITUDE": -0.7933312 }, "geometry": { "type": "Point", "coordinates": [ 484370.0, 147257.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450940, "UPRN": 10013897390, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147232.0, "LATITUDE": 51.2180583, "LONGITUDE": -0.7930651 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147232.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450106, "UPRN": 10013896482, "X_COORDINATE": 484354.0, "Y_COORDINATE": 147207.0, "LATITUDE": 51.2178387, "LONGITUDE": -0.793572 }, "geometry": { "type": "Point", "coordinates": [ 484354.0, 147207.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451431, "UPRN": 10013898299, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446890, "UPRN": 10013893230, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269716, "UPRN": 10091111040, "X_COORDINATE": 484386.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2180228, "LONGITUDE": -0.7931089 }, "geometry": { "type": "Point", "coordinates": [ 484386.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21266351, "UPRN": 10093682883, "X_COORDINATE": 484285.38, "Y_COORDINATE": 147251.51, "LATITUDE": 51.218249, "LONGITUDE": -0.7945438 }, "geometry": { "type": "Point", "coordinates": [ 484285.38, 147251.51 ] } }, -{ "type": "Feature", "properties": { "FID": 23116542, "UPRN": 10096744930, "X_COORDINATE": 484366.47, "Y_COORDINATE": 147238.91, "LATITUDE": 51.2181237, "LONGITUDE": -0.793386 }, "geometry": { "type": "Point", "coordinates": [ 484366.46999999997206, 147238.91 ] } }, -{ "type": "Feature", "properties": { "FID": 23116543, "UPRN": 10096744931, "X_COORDINATE": 484370.16, "Y_COORDINATE": 147242.11, "LATITUDE": 51.218152, "LONGITUDE": -0.7933324 }, "geometry": { "type": "Point", "coordinates": [ 484370.159999999974389, 147242.10999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 23116547, "UPRN": 10096744935, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117041, "UPRN": 10096745429, "X_COORDINATE": 484388.18, "Y_COORDINATE": 147206.98, "LATITUDE": 51.2178335, "LONGITUDE": -0.7930827 }, "geometry": { "type": "Point", "coordinates": [ 484388.18, 147206.980000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 31720595, "UPRN": 100061599355, "X_COORDINATE": 484258.0, "Y_COORDINATE": 147311.0, "LATITUDE": 51.2187878, "LONGITUDE": -0.7949218 }, "geometry": { "type": "Point", "coordinates": [ 484258.0, 147311.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720596, "UPRN": 100061599356, "X_COORDINATE": 484262.0, "Y_COORDINATE": 147314.0, "LATITUDE": 51.2188142, "LONGITUDE": -0.7948638 }, "geometry": { "type": "Point", "coordinates": [ 484262.0, 147314.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720597, "UPRN": 100061599357, "X_COORDINATE": 484268.0, "Y_COORDINATE": 147319.0, "LATITUDE": 51.2188583, "LONGITUDE": -0.7947768 }, "geometry": { "type": "Point", "coordinates": [ 484268.0, 147319.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720598, "UPRN": 100061599358, "X_COORDINATE": 484271.0, "Y_COORDINATE": 147322.0, "LATITUDE": 51.2188848, "LONGITUDE": -0.7947331 }, "geometry": { "type": "Point", "coordinates": [ 484271.0, 147322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720599, "UPRN": 100061599359, "X_COORDINATE": 484276.0, "Y_COORDINATE": 147324.0, "LATITUDE": 51.2189021, "LONGITUDE": -0.7946611 }, "geometry": { "type": "Point", "coordinates": [ 484276.0, 147324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720600, "UPRN": 100061599360, "X_COORDINATE": 484280.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2189284, "LONGITUDE": -0.7946031 }, "geometry": { "type": "Point", "coordinates": [ 484280.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720601, "UPRN": 100061599361, "X_COORDINATE": 484283.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.218946, "LONGITUDE": -0.7945597 }, "geometry": { "type": "Point", "coordinates": [ 484283.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266558, "UPRN": 10091107871, "X_COORDINATE": 484303.0, "Y_COORDINATE": 147151.0, "LATITUDE": 51.2173428, "LONGITUDE": -0.7943152 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 147151.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18071229, "UPRN": 10025743653, "X_COORDINATE": 484340.17, "Y_COORDINATE": 147157.88, "LATITUDE": 51.2173992, "LONGITUDE": -0.7937815 }, "geometry": { "type": "Point", "coordinates": [ 484340.169999999983702, 147157.88 ] } }, -{ "type": "Feature", "properties": { "FID": 20267737, "UPRN": 10091109058, "X_COORDINATE": 484291.0, "Y_COORDINATE": 147182.0, "LATITUDE": 51.2176233, "LONGITUDE": -0.7944797 }, "geometry": { "type": "Point", "coordinates": [ 484291.0, 147182.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267731, "UPRN": 10091109052, "X_COORDINATE": 484291.0, "Y_COORDINATE": 147182.0, "LATITUDE": 51.2176233, "LONGITUDE": -0.7944797 }, "geometry": { "type": "Point", "coordinates": [ 484291.0, 147182.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267738, "UPRN": 10091109059, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147185.0, "LATITUDE": 51.2176496, "LONGITUDE": -0.7944217 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147185.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267732, "UPRN": 10091109053, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147185.0, "LATITUDE": 51.2176496, "LONGITUDE": -0.7944217 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147185.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267943, "UPRN": 10091109264, "X_COORDINATE": 484293.0, "Y_COORDINATE": 147187.0, "LATITUDE": 51.2176679, "LONGITUDE": -0.7944499 }, "geometry": { "type": "Point", "coordinates": [ 484293.0, 147187.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446887, "UPRN": 10013893227, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446886, "UPRN": 10013893226, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446885, "UPRN": 10013893225, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446884, "UPRN": 10013893224, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446883, "UPRN": 10013893223, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446882, "UPRN": 10013893222, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446881, "UPRN": 10013893221, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446880, "UPRN": 10013893220, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446879, "UPRN": 10013893219, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446878, "UPRN": 10013893218, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446877, "UPRN": 10013893217, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446876, "UPRN": 10013893216, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446108, "UPRN": 10013892410, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443982, "UPRN": 10013890087, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446888, "UPRN": 10013893228, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446889, "UPRN": 10013893229, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2176897, "LONGITUDE": -0.7930747 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726062, "UPRN": 100061605256, "X_COORDINATE": 484134.0, "Y_COORDINATE": 147134.0, "LATITUDE": 51.2172149, "LONGITUDE": -0.7967383 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 147134.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724923, "UPRN": 100061604074, "X_COORDINATE": 484131.0, "Y_COORDINATE": 147191.0, "LATITUDE": 51.2177277, "LONGITUDE": -0.7967679 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 147191.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724914, "UPRN": 100061604065, "X_COORDINATE": 484092.0, "Y_COORDINATE": 147167.0, "LATITUDE": 51.2175177, "LONGITUDE": -0.7973318 }, "geometry": { "type": "Point", "coordinates": [ 484092.0, 147167.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724916, "UPRN": 100061604067, "X_COORDINATE": 484099.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.2175526, "LONGITUDE": -0.7972307 }, "geometry": { "type": "Point", "coordinates": [ 484099.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724918, "UPRN": 100061604069, "X_COORDINATE": 484106.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2175966, "LONGITUDE": -0.7971293 }, "geometry": { "type": "Point", "coordinates": [ 484106.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724919, "UPRN": 100061604070, "X_COORDINATE": 484106.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2175966, "LONGITUDE": -0.7971293 }, "geometry": { "type": "Point", "coordinates": [ 484106.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724921, "UPRN": 100061604072, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147182.0, "LATITUDE": 51.2176492, "LONGITUDE": -0.7969991 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147182.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447836, "UPRN": 10013894191, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447835, "UPRN": 10013894190, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447834, "UPRN": 10013894189, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447833, "UPRN": 10013894188, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447832, "UPRN": 10013894187, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447831, "UPRN": 10013894186, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447830, "UPRN": 10013894185, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447829, "UPRN": 10013894184, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447828, "UPRN": 10013894183, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447827, "UPRN": 10013894182, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447826, "UPRN": 10013894181, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447825, "UPRN": 10013894180, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447824, "UPRN": 10013894179, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447823, "UPRN": 10013894178, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447822, "UPRN": 10013894177, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447837, "UPRN": 10013894192, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269715, "UPRN": 10091111039, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147230.0, "LATITUDE": 51.2180402, "LONGITUDE": -0.7930512 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147230.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117040, "UPRN": 10096745428, "X_COORDINATE": 484391.63, "Y_COORDINATE": 147203.78, "LATITUDE": 51.2178042, "LONGITUDE": -0.793034 }, "geometry": { "type": "Point", "coordinates": [ 484391.63, 147203.78 ] } }, -{ "type": "Feature", "properties": { "FID": 23117044, "UPRN": 10096745432, "X_COORDINATE": 484393.11, "Y_COORDINATE": 147204.27, "LATITUDE": 51.2178084, "LONGITUDE": -0.7930127 }, "geometry": { "type": "Point", "coordinates": [ 484393.10999999998603, 147204.269999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 23117043, "UPRN": 10096745431, "X_COORDINATE": 484400.0, "Y_COORDINATE": 147207.72, "LATITUDE": 51.2178384, "LONGITUDE": -0.7929133 }, "geometry": { "type": "Point", "coordinates": [ 484400.0, 147207.72 ] } }, -{ "type": "Feature", "properties": { "FID": 23117046, "UPRN": 10096745434, "X_COORDINATE": 484400.5, "Y_COORDINATE": 147213.39, "LATITUDE": 51.2178893, "LONGITUDE": -0.7929048 }, "geometry": { "type": "Point", "coordinates": [ 484400.5, 147213.39000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 23117047, "UPRN": 10096745435, "X_COORDINATE": 484400.99, "Y_COORDINATE": 147207.97, "LATITUDE": 51.2178405, "LONGITUDE": -0.7928991 }, "geometry": { "type": "Point", "coordinates": [ 484400.99, 147207.97 ] } }, -{ "type": "Feature", "properties": { "FID": 23117039, "UPRN": 10096745427, "X_COORDINATE": 484401.23, "Y_COORDINATE": 147208.21, "LATITUDE": 51.2178426, "LONGITUDE": -0.7928956 }, "geometry": { "type": "Point", "coordinates": [ 484401.229999999981374, 147208.21 ] } }, -{ "type": "Feature", "properties": { "FID": 23117042, "UPRN": 10096745430, "X_COORDINATE": 484401.73, "Y_COORDINATE": 147213.63, "LATITUDE": 51.2178913, "LONGITUDE": -0.7928871 }, "geometry": { "type": "Point", "coordinates": [ 484401.729999999981374, 147213.63 ] } }, -{ "type": "Feature", "properties": { "FID": 23117038, "UPRN": 10096745426, "X_COORDINATE": 484401.97, "Y_COORDINATE": 147213.63, "LATITUDE": 51.2178912, "LONGITUDE": -0.7928837 }, "geometry": { "type": "Point", "coordinates": [ 484401.96999999997206, 147213.63 ] } }, -{ "type": "Feature", "properties": { "FID": 31724934, "UPRN": 100061604085, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2180598, "LONGITUDE": -0.796702 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724931, "UPRN": 100061604082, "X_COORDINATE": 484117.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179725, "LONGITUDE": -0.796962 }, "geometry": { "type": "Point", "coordinates": [ 484117.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724932, "UPRN": 100061604083, "X_COORDINATE": 484126.0, "Y_COORDINATE": 147223.0, "LATITUDE": 51.2180162, "LONGITUDE": -0.796832 }, "geometry": { "type": "Point", "coordinates": [ 484126.0, 147223.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724933, "UPRN": 100061604084, "X_COORDINATE": 484130.0, "Y_COORDINATE": 147225.0, "LATITUDE": 51.2180336, "LONGITUDE": -0.7967743 }, "geometry": { "type": "Point", "coordinates": [ 484130.0, 147225.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731088, "UPRN": 100061610676, "X_COORDINATE": 484133.0, "Y_COORDINATE": 147261.0, "LATITUDE": 51.2183568, "LONGITUDE": -0.7967229 }, "geometry": { "type": "Point", "coordinates": [ 484133.0, 147261.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731090, "UPRN": 100061610678, "X_COORDINATE": 484130.0, "Y_COORDINATE": 147265.0, "LATITUDE": 51.2183932, "LONGITUDE": -0.7967649 }, "geometry": { "type": "Point", "coordinates": [ 484130.0, 147265.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731092, "UPRN": 100061610680, "X_COORDINATE": 484126.0, "Y_COORDINATE": 147276.0, "LATITUDE": 51.2184926, "LONGITUDE": -0.7968196 }, "geometry": { "type": "Point", "coordinates": [ 484126.0, 147276.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731094, "UPRN": 100061610682, "X_COORDINATE": 484120.0, "Y_COORDINATE": 147282.0, "LATITUDE": 51.2185475, "LONGITUDE": -0.7969041 }, "geometry": { "type": "Point", "coordinates": [ 484120.0, 147282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724926, "UPRN": 100061604077, "X_COORDINATE": 484089.0, "Y_COORDINATE": 147202.0, "LATITUDE": 51.2178328, "LONGITUDE": -0.7973666 }, "geometry": { "type": "Point", "coordinates": [ 484089.0, 147202.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724928, "UPRN": 100061604079, "X_COORDINATE": 484101.0, "Y_COORDINATE": 147209.0, "LATITUDE": 51.217894, "LONGITUDE": -0.7971932 }, "geometry": { "type": "Point", "coordinates": [ 484101.0, 147209.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724930, "UPRN": 100061604081, "X_COORDINATE": 484111.0, "Y_COORDINATE": 147214.0, "LATITUDE": 51.2179375, "LONGITUDE": -0.7970488 }, "geometry": { "type": "Point", "coordinates": [ 484111.0, 147214.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266651, "UPRN": 10091107964, "X_COORDINATE": 484557.0, "Y_COORDINATE": 147272.0, "LATITUDE": 51.2183931, "LONGITUDE": -0.7906507 }, "geometry": { "type": "Point", "coordinates": [ 484557.0, 147272.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447314, "UPRN": 10013893658, "X_COORDINATE": 484598.0, "Y_COORDINATE": 147275.0, "LATITUDE": 51.218414, "LONGITUDE": -0.7900631 }, "geometry": { "type": "Point", "coordinates": [ 484598.0, 147275.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17498486, "UPRN": 10024878454, "X_COORDINATE": 484520.5, "Y_COORDINATE": 147276.05, "LATITUDE": 51.2184349, "LONGITUDE": -0.7911723 }, "geometry": { "type": "Point", "coordinates": [ 484520.5, 147276.049999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 15447327, "UPRN": 10013893671, "X_COORDINATE": 484532.0, "Y_COORDINATE": 147277.0, "LATITUDE": 51.2184417, "LONGITUDE": -0.7910074 }, "geometry": { "type": "Point", "coordinates": [ 484532.0, 147277.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444799, "UPRN": 10013891013, "X_COORDINATE": 484596.0, "Y_COORDINATE": 147280.0, "LATITUDE": 51.2184592, "LONGITUDE": -0.7900906 }, "geometry": { "type": "Point", "coordinates": [ 484596.0, 147280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447250, "UPRN": 10013893592, "X_COORDINATE": 484646.0, "Y_COORDINATE": 147282.0, "LATITUDE": 51.2184698, "LONGITUDE": -0.7893743 }, "geometry": { "type": "Point", "coordinates": [ 484646.0, 147282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447253, "UPRN": 10013893595, "X_COORDINATE": 484646.0, "Y_COORDINATE": 147282.0, "LATITUDE": 51.2184698, "LONGITUDE": -0.7893743 }, "geometry": { "type": "Point", "coordinates": [ 484646.0, 147282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447255, "UPRN": 10013893597, "X_COORDINATE": 484619.0, "Y_COORDINATE": 147288.0, "LATITUDE": 51.2185277, "LONGITUDE": -0.7897594 }, "geometry": { "type": "Point", "coordinates": [ 484619.0, 147288.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451505, "UPRN": 10013898373, "X_COORDINATE": 484684.0, "Y_COORDINATE": 147296.0, "LATITUDE": 51.21859, "LONGITUDE": -0.7888271 }, "geometry": { "type": "Point", "coordinates": [ 484684.0, 147296.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265951, "UPRN": 10091107257, "X_COORDINATE": 484684.0, "Y_COORDINATE": 147296.0, "LATITUDE": 51.21859, "LONGITUDE": -0.7888271 }, "geometry": { "type": "Point", "coordinates": [ 484684.0, 147296.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450081, "UPRN": 10013896457, "X_COORDINATE": 484519.0, "Y_COORDINATE": 147298.0, "LATITUDE": 51.2186324, "LONGITUDE": -0.7911886 }, "geometry": { "type": "Point", "coordinates": [ 484519.0, 147298.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447251, "UPRN": 10013893593, "X_COORDINATE": 484640.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2186325, "LONGITUDE": -0.789456 }, "geometry": { "type": "Point", "coordinates": [ 484640.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447252, "UPRN": 10013893594, "X_COORDINATE": 484640.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2186325, "LONGITUDE": -0.789456 }, "geometry": { "type": "Point", "coordinates": [ 484640.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266007, "UPRN": 10091107316, "X_COORDINATE": 484640.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2186325, "LONGITUDE": -0.789456 }, "geometry": { "type": "Point", "coordinates": [ 484640.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17778843, "UPRN": 10025231389, "X_COORDINATE": 484703.62, "Y_COORDINATE": 147314.63, "LATITUDE": 51.2187546, "LONGITUDE": -0.7885418 }, "geometry": { "type": "Point", "coordinates": [ 484703.62, 147314.63 ] } }, -{ "type": "Feature", "properties": { "FID": 15450082, "UPRN": 10013896458, "X_COORDINATE": 484506.0, "Y_COORDINATE": 147322.0, "LATITUDE": 51.2188501, "LONGITUDE": -0.791369 }, "geometry": { "type": "Point", "coordinates": [ 484506.0, 147322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447509, "UPRN": 10013893859, "X_COORDINATE": 484504.0, "Y_COORDINATE": 147326.0, "LATITUDE": 51.2188864, "LONGITUDE": -0.7913967 }, "geometry": { "type": "Point", "coordinates": [ 484504.0, 147326.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449052, "UPRN": 10013895422, "X_COORDINATE": 484751.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189037, "LONGITUDE": -0.7878595 }, "geometry": { "type": "Point", "coordinates": [ 484751.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449272, "UPRN": 10013895643, "X_COORDINATE": 484662.0, "Y_COORDINATE": 147334.0, "LATITUDE": 51.2189349, "LONGITUDE": -0.7891331 }, "geometry": { "type": "Point", "coordinates": [ 484662.0, 147334.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267189, "UPRN": 10091108505, "X_COORDINATE": 484619.0, "Y_COORDINATE": 147338.0, "LATITUDE": 51.2189772, "LONGITUDE": -0.7897477 }, "geometry": { "type": "Point", "coordinates": [ 484619.0, 147338.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267192, "UPRN": 10091108508, "X_COORDINATE": 484619.0, "Y_COORDINATE": 147338.0, "LATITUDE": 51.2189772, "LONGITUDE": -0.7897477 }, "geometry": { "type": "Point", "coordinates": [ 484619.0, 147338.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267197, "UPRN": 10091108513, "X_COORDINATE": 484618.0, "Y_COORDINATE": 147338.0, "LATITUDE": 51.2189774, "LONGITUDE": -0.789762 }, "geometry": { "type": "Point", "coordinates": [ 484618.0, 147338.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451566, "UPRN": 10013898434, "X_COORDINATE": 484527.0, "Y_COORDINATE": 147340.0, "LATITUDE": 51.2190088, "LONGITUDE": -0.7910642 }, "geometry": { "type": "Point", "coordinates": [ 484527.0, 147340.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267193, "UPRN": 10091108509, "X_COORDINATE": 484627.0, "Y_COORDINATE": 147341.0, "LATITUDE": 51.219003, "LONGITUDE": -0.7896324 }, "geometry": { "type": "Point", "coordinates": [ 484627.0, 147341.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450044, "UPRN": 10013896420, "X_COORDINATE": 484677.0, "Y_COORDINATE": 147343.0, "LATITUDE": 51.2190136, "LONGITUDE": -0.7889162 }, "geometry": { "type": "Point", "coordinates": [ 484677.0, 147343.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267188, "UPRN": 10091108504, "X_COORDINATE": 484631.0, "Y_COORDINATE": 147343.0, "LATITUDE": 51.2190204, "LONGITUDE": -0.7895747 }, "geometry": { "type": "Point", "coordinates": [ 484631.0, 147343.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267194, "UPRN": 10091108510, "X_COORDINATE": 484632.0, "Y_COORDINATE": 147345.0, "LATITUDE": 51.2190382, "LONGITUDE": -0.7895599 }, "geometry": { "type": "Point", "coordinates": [ 484632.0, 147345.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267198, "UPRN": 10091108514, "X_COORDINATE": 484624.0, "Y_COORDINATE": 147341.0, "LATITUDE": 51.2190035, "LONGITUDE": -0.7896754 }, "geometry": { "type": "Point", "coordinates": [ 484624.0, 147341.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267458, "UPRN": 10091108778, "X_COORDINATE": 484620.0, "Y_COORDINATE": 147341.0, "LATITUDE": 51.2190041, "LONGITUDE": -0.7897326 }, "geometry": { "type": "Point", "coordinates": [ 484620.0, 147341.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116372, "UPRN": 10096744754, "X_COORDINATE": 484476.87, "Y_COORDINATE": 147409.7, "LATITUDE": 51.2196429, "LONGITUDE": -0.7917654 }, "geometry": { "type": "Point", "coordinates": [ 484476.87, 147409.700000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 20267457, "UPRN": 10091108777, "X_COORDINATE": 484617.0, "Y_COORDINATE": 147349.0, "LATITUDE": 51.2190764, "LONGITUDE": -0.7897737 }, "geometry": { "type": "Point", "coordinates": [ 484617.0, 147349.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267195, "UPRN": 10091108511, "X_COORDINATE": 484621.0, "Y_COORDINATE": 147352.0, "LATITUDE": 51.2191028, "LONGITUDE": -0.7897157 }, "geometry": { "type": "Point", "coordinates": [ 484621.0, 147352.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267190, "UPRN": 10091108506, "X_COORDINATE": 484621.0, "Y_COORDINATE": 147352.0, "LATITUDE": 51.2191028, "LONGITUDE": -0.7897157 }, "geometry": { "type": "Point", "coordinates": [ 484621.0, 147352.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267196, "UPRN": 10091108512, "X_COORDINATE": 484614.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190948, "LONGITUDE": -0.7898162 }, "geometry": { "type": "Point", "coordinates": [ 484614.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267191, "UPRN": 10091108507, "X_COORDINATE": 484614.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190948, "LONGITUDE": -0.7898162 }, "geometry": { "type": "Point", "coordinates": [ 484614.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447510, "UPRN": 10013893860, "X_COORDINATE": 484587.0, "Y_COORDINATE": 147472.0, "LATITUDE": 51.2201866, "LONGITUDE": -0.7901742 }, "geometry": { "type": "Point", "coordinates": [ 484587.0, 147472.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450083, "UPRN": 10013896459, "X_COORDINATE": 484615.0, "Y_COORDINATE": 147487.0, "LATITUDE": 51.2203174, "LONGITUDE": -0.7897698 }, "geometry": { "type": "Point", "coordinates": [ 484615.0, 147487.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447980, "UPRN": 10013894339, "X_COORDINATE": 484620.0, "Y_COORDINATE": 147440.0, "LATITUDE": 51.2198941, "LONGITUDE": -0.7897093 }, "geometry": { "type": "Point", "coordinates": [ 484620.0, 147440.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447981, "UPRN": 10013894340, "X_COORDINATE": 484620.0, "Y_COORDINATE": 147440.0, "LATITUDE": 51.2198941, "LONGITUDE": -0.7897093 }, "geometry": { "type": "Point", "coordinates": [ 484620.0, 147440.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269458, "UPRN": 10091110782, "X_COORDINATE": 484637.0, "Y_COORDINATE": 147535.0, "LATITUDE": 51.2207456, "LONGITUDE": -0.7894436 }, "geometry": { "type": "Point", "coordinates": [ 484637.0, 147535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269459, "UPRN": 10091110783, "X_COORDINATE": 484639.0, "Y_COORDINATE": 147531.0, "LATITUDE": 51.2207094, "LONGITUDE": -0.7894159 }, "geometry": { "type": "Point", "coordinates": [ 484639.0, 147531.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269460, "UPRN": 10091110784, "X_COORDINATE": 484641.0, "Y_COORDINATE": 147528.0, "LATITUDE": 51.2206821, "LONGITUDE": -0.789388 }, "geometry": { "type": "Point", "coordinates": [ 484641.0, 147528.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269461, "UPRN": 10091110785, "X_COORDINATE": 484645.0, "Y_COORDINATE": 147519.0, "LATITUDE": 51.2206006, "LONGITUDE": -0.7893328 }, "geometry": { "type": "Point", "coordinates": [ 484645.0, 147519.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269462, "UPRN": 10091110786, "X_COORDINATE": 484647.0, "Y_COORDINATE": 147514.0, "LATITUDE": 51.2205553, "LONGITUDE": -0.7893054 }, "geometry": { "type": "Point", "coordinates": [ 484647.0, 147514.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269463, "UPRN": 10091110787, "X_COORDINATE": 484650.0, "Y_COORDINATE": 147507.0, "LATITUDE": 51.220492, "LONGITUDE": -0.7892641 }, "geometry": { "type": "Point", "coordinates": [ 484650.0, 147507.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269464, "UPRN": 10091110788, "X_COORDINATE": 484652.0, "Y_COORDINATE": 147502.0, "LATITUDE": 51.2204467, "LONGITUDE": -0.7892366 }, "geometry": { "type": "Point", "coordinates": [ 484652.0, 147502.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269465, "UPRN": 10091110789, "X_COORDINATE": 484656.0, "Y_COORDINATE": 147494.0, "LATITUDE": 51.2203742, "LONGITUDE": -0.7891812 }, "geometry": { "type": "Point", "coordinates": [ 484656.0, 147494.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269466, "UPRN": 10091110790, "X_COORDINATE": 484658.0, "Y_COORDINATE": 147489.0, "LATITUDE": 51.220329, "LONGITUDE": -0.7891538 }, "geometry": { "type": "Point", "coordinates": [ 484658.0, 147489.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719624, "UPRN": 100061598360, "X_COORDINATE": 484660.0, "Y_COORDINATE": 147543.0, "LATITUDE": 51.2208141, "LONGITUDE": -0.7891124 }, "geometry": { "type": "Point", "coordinates": [ 484660.0, 147543.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18071719, "UPRN": 10025744162, "X_COORDINATE": 484661.7, "Y_COORDINATE": 147601.35, "LATITUDE": 51.2213385, "LONGITUDE": -0.7890744 }, "geometry": { "type": "Point", "coordinates": [ 484661.700000000011642, 147601.35 ] } }, -{ "type": "Feature", "properties": { "FID": 31719623, "UPRN": 100061598359, "X_COORDINATE": 484662.0, "Y_COORDINATE": 147540.0, "LATITUDE": 51.2207869, "LONGITUDE": -0.7890845 }, "geometry": { "type": "Point", "coordinates": [ 484662.0, 147540.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719622, "UPRN": 100061598358, "X_COORDINATE": 484664.0, "Y_COORDINATE": 147537.0, "LATITUDE": 51.2207596, "LONGITUDE": -0.7890566 }, "geometry": { "type": "Point", "coordinates": [ 484664.0, 147537.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719621, "UPRN": 100061598357, "X_COORDINATE": 484667.0, "Y_COORDINATE": 147533.0, "LATITUDE": 51.2207232, "LONGITUDE": -0.7890146 }, "geometry": { "type": "Point", "coordinates": [ 484667.0, 147533.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719620, "UPRN": 100061598356, "X_COORDINATE": 484669.0, "Y_COORDINATE": 147530.0, "LATITUDE": 51.2206959, "LONGITUDE": -0.7889867 }, "geometry": { "type": "Point", "coordinates": [ 484669.0, 147530.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719619, "UPRN": 100061598355, "X_COORDINATE": 484670.0, "Y_COORDINATE": 147519.0, "LATITUDE": 51.2205969, "LONGITUDE": -0.7889749 }, "geometry": { "type": "Point", "coordinates": [ 484670.0, 147519.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719618, "UPRN": 100061598354, "X_COORDINATE": 484672.0, "Y_COORDINATE": 147516.0, "LATITUDE": 51.2205696, "LONGITUDE": -0.788947 }, "geometry": { "type": "Point", "coordinates": [ 484672.0, 147516.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719625, "UPRN": 100061598361, "X_COORDINATE": 484658.0, "Y_COORDINATE": 147546.0, "LATITUDE": 51.2208414, "LONGITUDE": -0.7891404 }, "geometry": { "type": "Point", "coordinates": [ 484658.0, 147546.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719626, "UPRN": 100061598362, "X_COORDINATE": 484654.0, "Y_COORDINATE": 147551.0, "LATITUDE": 51.2208869, "LONGITUDE": -0.7891964 }, "geometry": { "type": "Point", "coordinates": [ 484654.0, 147551.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719627, "UPRN": 100061598363, "X_COORDINATE": 484652.0, "Y_COORDINATE": 147554.0, "LATITUDE": 51.2209142, "LONGITUDE": -0.7892244 }, "geometry": { "type": "Point", "coordinates": [ 484652.0, 147554.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719628, "UPRN": 100061598364, "X_COORDINATE": 484650.0, "Y_COORDINATE": 147557.0, "LATITUDE": 51.2209415, "LONGITUDE": -0.7892523 }, "geometry": { "type": "Point", "coordinates": [ 484650.0, 147557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719629, "UPRN": 100061598365, "X_COORDINATE": 484648.0, "Y_COORDINATE": 147560.0, "LATITUDE": 51.2209687, "LONGITUDE": -0.7892802 }, "geometry": { "type": "Point", "coordinates": [ 484648.0, 147560.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719630, "UPRN": 100061598366, "X_COORDINATE": 484645.0, "Y_COORDINATE": 147566.0, "LATITUDE": 51.2210231, "LONGITUDE": -0.7893218 }, "geometry": { "type": "Point", "coordinates": [ 484645.0, 147566.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719631, "UPRN": 100061598367, "X_COORDINATE": 484643.0, "Y_COORDINATE": 147569.0, "LATITUDE": 51.2210504, "LONGITUDE": -0.7893497 }, "geometry": { "type": "Point", "coordinates": [ 484643.0, 147569.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719632, "UPRN": 100061598368, "X_COORDINATE": 484641.0, "Y_COORDINATE": 147571.0, "LATITUDE": 51.2210687, "LONGITUDE": -0.7893778 }, "geometry": { "type": "Point", "coordinates": [ 484641.0, 147571.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719633, "UPRN": 100061598369, "X_COORDINATE": 484639.0, "Y_COORDINATE": 147575.0, "LATITUDE": 51.2211049, "LONGITUDE": -0.7894055 }, "geometry": { "type": "Point", "coordinates": [ 484639.0, 147575.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719634, "UPRN": 100061598370, "X_COORDINATE": 484620.0, "Y_COORDINATE": 147555.0, "LATITUDE": 51.2209279, "LONGITUDE": -0.7896822 }, "geometry": { "type": "Point", "coordinates": [ 484620.0, 147555.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17496168, "UPRN": 10024875563, "X_COORDINATE": 484723.65, "Y_COORDINATE": 147237.8, "LATITUDE": 51.2180609, "LONGITUDE": -0.7882732 }, "geometry": { "type": "Point", "coordinates": [ 484723.650000000023283, 147237.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 15449454, "UPRN": 10013895827, "X_COORDINATE": 484794.0, "Y_COORDINATE": 147227.0, "LATITUDE": 51.2179534, "LONGITUDE": -0.7872687 }, "geometry": { "type": "Point", "coordinates": [ 484794.0, 147227.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17882274, "UPRN": 10025366224, "X_COORDINATE": 484853.37, "Y_COORDINATE": 147228.64, "LATITUDE": 51.2179593, "LONGITUDE": -0.7864184 }, "geometry": { "type": "Point", "coordinates": [ 484853.37, 147228.64000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 15925250, "UPRN": 10015359141, "X_COORDINATE": 484875.3, "Y_COORDINATE": 147218.68, "LATITUDE": 51.2178665, "LONGITUDE": -0.7861069 }, "geometry": { "type": "Point", "coordinates": [ 484875.299999999988358, 147218.68 ] } }, -{ "type": "Feature", "properties": { "FID": 18029363, "UPRN": 10025644928, "X_COORDINATE": 484897.75, "Y_COORDINATE": 147180.66, "LATITUDE": 51.2175214, "LONGITUDE": -0.7857945 }, "geometry": { "type": "Point", "coordinates": [ 484897.75, 147180.66 ] } }, -{ "type": "Feature", "properties": { "FID": 15448811, "UPRN": 10013895178, "X_COORDINATE": 485119.0, "Y_COORDINATE": 147269.0, "LATITUDE": 51.2182827, "LONGITUDE": -0.7826064 }, "geometry": { "type": "Point", "coordinates": [ 485119.0, 147269.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450861, "UPRN": 10013897298, "X_COORDINATE": 484973.0, "Y_COORDINATE": 147295.0, "LATITUDE": 51.2185381, "LONGITUDE": -0.7846903 }, "geometry": { "type": "Point", "coordinates": [ 484973.0, 147295.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450862, "UPRN": 10013897299, "X_COORDINATE": 484973.0, "Y_COORDINATE": 147295.0, "LATITUDE": 51.2185381, "LONGITUDE": -0.7846903 }, "geometry": { "type": "Point", "coordinates": [ 484973.0, 147295.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266518, "UPRN": 10091107831, "X_COORDINATE": 484973.0, "Y_COORDINATE": 147295.0, "LATITUDE": 51.2185381, "LONGITUDE": -0.7846903 }, "geometry": { "type": "Point", "coordinates": [ 484973.0, 147295.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909604, "UPRN": 10094578019, "X_COORDINATE": 484763.0, "Y_COORDINATE": 147258.0, "LATITUDE": 51.2182367, "LONGITUDE": -0.7877051 }, "geometry": { "type": "Point", "coordinates": [ 484763.0, 147258.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912108, "UPRN": 10094580583, "X_COORDINATE": 484932.96, "Y_COORDINATE": 147261.89, "LATITUDE": 51.2182464, "LONGITUDE": -0.7852713 }, "geometry": { "type": "Point", "coordinates": [ 484932.960000000020955, 147261.89000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 21912109, "UPRN": 10094580584, "X_COORDINATE": 484904.24, "Y_COORDINATE": 147293.04, "LATITUDE": 51.2185307, "LONGITUDE": -0.785675 }, "geometry": { "type": "Point", "coordinates": [ 484904.24, 147293.04 ] } }, -{ "type": "Feature", "properties": { "FID": 21913223, "UPRN": 10094581712, "X_COORDINATE": 485043.19, "Y_COORDINATE": 147286.09, "LATITUDE": 51.2184476, "LONGITUDE": -0.7836876 }, "geometry": { "type": "Point", "coordinates": [ 485043.19, 147286.09 ] } }, -{ "type": "Feature", "properties": { "FID": 20265591, "UPRN": 10091106896, "X_COORDINATE": 484761.0, "Y_COORDINATE": 147190.0, "LATITUDE": 51.2176257, "LONGITUDE": -0.7877498 }, "geometry": { "type": "Point", "coordinates": [ 484761.0, 147190.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451581, "UPRN": 10013898449, "X_COORDINATE": 484867.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2201182, "LONGITUDE": -0.7861666 }, "geometry": { "type": "Point", "coordinates": [ 484867.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444569, "UPRN": 10013890753, "X_COORDINATE": 484868.0, "Y_COORDINATE": 147646.0, "LATITUDE": 51.2217093, "LONGITUDE": -0.7861104 }, "geometry": { "type": "Point", "coordinates": [ 484868.0, 147646.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450073, "UPRN": 10013896449, "X_COORDINATE": 484877.0, "Y_COORDINATE": 147502.0, "LATITUDE": 51.2204133, "LONGITUDE": -0.7860156 }, "geometry": { "type": "Point", "coordinates": [ 484877.0, 147502.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444568, "UPRN": 10013890752, "X_COORDINATE": 484890.0, "Y_COORDINATE": 147601.0, "LATITUDE": 51.2213014, "LONGITUDE": -0.7858061 }, "geometry": { "type": "Point", "coordinates": [ 484890.0, 147601.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444872, "UPRN": 10013891098, "X_COORDINATE": 484890.0, "Y_COORDINATE": 147601.0, "LATITUDE": 51.2213014, "LONGITUDE": -0.7858061 }, "geometry": { "type": "Point", "coordinates": [ 484890.0, 147601.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445133, "UPRN": 10013891375, "X_COORDINATE": 484891.0, "Y_COORDINATE": 147489.0, "LATITUDE": 51.2202944, "LONGITUDE": -0.7858183 }, "geometry": { "type": "Point", "coordinates": [ 484891.0, 147489.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445137, "UPRN": 10013891379, "X_COORDINATE": 484891.0, "Y_COORDINATE": 147489.0, "LATITUDE": 51.2202944, "LONGITUDE": -0.7858183 }, "geometry": { "type": "Point", "coordinates": [ 484891.0, 147489.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15442702, "UPRN": 10013888605, "X_COORDINATE": 484894.0, "Y_COORDINATE": 147355.0, "LATITUDE": 51.2190893, "LONGITUDE": -0.785807 }, "geometry": { "type": "Point", "coordinates": [ 484894.0, 147355.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445132, "UPRN": 10013891373, "X_COORDINATE": 484894.0, "Y_COORDINATE": 147483.0, "LATITUDE": 51.22024, "LONGITUDE": -0.7857767 }, "geometry": { "type": "Point", "coordinates": [ 484894.0, 147483.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445136, "UPRN": 10013891378, "X_COORDINATE": 484894.0, "Y_COORDINATE": 147483.0, "LATITUDE": 51.22024, "LONGITUDE": -0.7857767 }, "geometry": { "type": "Point", "coordinates": [ 484894.0, 147483.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445130, "UPRN": 10013891371, "X_COORDINATE": 484896.0, "Y_COORDINATE": 147495.0, "LATITUDE": 51.2203476, "LONGITUDE": -0.7857453 }, "geometry": { "type": "Point", "coordinates": [ 484896.0, 147495.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445134, "UPRN": 10013891376, "X_COORDINATE": 484896.0, "Y_COORDINATE": 147495.0, "LATITUDE": 51.2203476, "LONGITUDE": -0.7857453 }, "geometry": { "type": "Point", "coordinates": [ 484896.0, 147495.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445131, "UPRN": 10013891372, "X_COORDINATE": 484900.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2202841, "LONGITUDE": -0.7856897 }, "geometry": { "type": "Point", "coordinates": [ 484900.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445135, "UPRN": 10013891377, "X_COORDINATE": 484900.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2202841, "LONGITUDE": -0.7856897 }, "geometry": { "type": "Point", "coordinates": [ 484900.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443506, "UPRN": 10013889554, "X_COORDINATE": 484918.0, "Y_COORDINATE": 147564.0, "LATITUDE": 51.2209646, "LONGITUDE": -0.785414 }, "geometry": { "type": "Point", "coordinates": [ 484918.0, 147564.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449165, "UPRN": 10013895536, "X_COORDINATE": 484927.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190484, "LONGITUDE": -0.7853355 }, "geometry": { "type": "Point", "coordinates": [ 484927.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449166, "UPRN": 10013895537, "X_COORDINATE": 484953.0, "Y_COORDINATE": 147349.0, "LATITUDE": 51.2190266, "LONGITUDE": -0.7849638 }, "geometry": { "type": "Point", "coordinates": [ 484953.0, 147349.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449322, "UPRN": 10013895693, "X_COORDINATE": 484946.0, "Y_COORDINATE": 147719.0, "LATITUDE": 51.2223539, "LONGITUDE": -0.7849765 }, "geometry": { "type": "Point", "coordinates": [ 484946.0, 147719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449763, "UPRN": 10013896138, "X_COORDINATE": 484946.0, "Y_COORDINATE": 147582.0, "LATITUDE": 51.2211223, "LONGITUDE": -0.7850089 }, "geometry": { "type": "Point", "coordinates": [ 484946.0, 147582.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17498483, "UPRN": 10024878451, "X_COORDINATE": 484935.7, "Y_COORDINATE": 147539.75, "LATITUDE": 51.220744, "LONGITUDE": -0.7851664 }, "geometry": { "type": "Point", "coordinates": [ 484935.700000000011642, 147539.75 ] } }, -{ "type": "Feature", "properties": { "FID": 20266444, "UPRN": 10091107757, "X_COORDINATE": 484781.0, "Y_COORDINATE": 147816.0, "LATITUDE": 51.2232505, "LONGITUDE": -0.7873158 }, "geometry": { "type": "Point", "coordinates": [ 484781.0, 147816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266445, "UPRN": 10091107758, "X_COORDINATE": 484784.0, "Y_COORDINATE": 147814.0, "LATITUDE": 51.2232321, "LONGITUDE": -0.7872733 }, "geometry": { "type": "Point", "coordinates": [ 484784.0, 147814.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266446, "UPRN": 10091107759, "X_COORDINATE": 484806.0, "Y_COORDINATE": 147820.0, "LATITUDE": 51.2232827, "LONGITUDE": -0.7869569 }, "geometry": { "type": "Point", "coordinates": [ 484806.0, 147820.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267935, "UPRN": 10091109256, "X_COORDINATE": 484839.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.219502, "LONGITUDE": -0.7865837 }, "geometry": { "type": "Point", "coordinates": [ 484839.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267936, "UPRN": 10091109257, "X_COORDINATE": 484835.0, "Y_COORDINATE": 147396.0, "LATITUDE": 51.2194666, "LONGITUDE": -0.7866419 }, "geometry": { "type": "Point", "coordinates": [ 484835.0, 147396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267937, "UPRN": 10091109258, "X_COORDINATE": 484831.0, "Y_COORDINATE": 147392.0, "LATITUDE": 51.2194313, "LONGITUDE": -0.7867001 }, "geometry": { "type": "Point", "coordinates": [ 484831.0, 147392.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267938, "UPRN": 10091109259, "X_COORDINATE": 484825.0, "Y_COORDINATE": 147388.0, "LATITUDE": 51.2193962, "LONGITUDE": -0.7867869 }, "geometry": { "type": "Point", "coordinates": [ 484825.0, 147388.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267939, "UPRN": 10091109260, "X_COORDINATE": 484821.0, "Y_COORDINATE": 147385.0, "LATITUDE": 51.2193698, "LONGITUDE": -0.7868449 }, "geometry": { "type": "Point", "coordinates": [ 484821.0, 147385.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909368, "UPRN": 10094577781, "X_COORDINATE": 484867.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2201182, "LONGITUDE": -0.7861666 }, "geometry": { "type": "Point", "coordinates": [ 484867.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912151, "UPRN": 10094580626, "X_COORDINATE": 484926.65, "Y_COORDINATE": 147574.88, "LATITUDE": 51.2210612, "LONGITUDE": -0.7852876 }, "geometry": { "type": "Point", "coordinates": [ 484926.650000000023283, 147574.88 ] } }, -{ "type": "Feature", "properties": { "FID": 20269194, "UPRN": 10091110518, "X_COORDINATE": 484789.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2197522, "LONGITUDE": -0.7872931 }, "geometry": { "type": "Point", "coordinates": [ 484789.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449784, "UPRN": 10013896159, "X_COORDINATE": 484799.0, "Y_COORDINATE": 147437.0, "LATITUDE": 51.2198406, "LONGITUDE": -0.7871476 }, "geometry": { "type": "Point", "coordinates": [ 484799.0, 147437.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450516, "UPRN": 10013896899, "X_COORDINATE": 485063.0, "Y_COORDINATE": 147576.0, "LATITUDE": 51.221051, "LONGITUDE": -0.7833354 }, "geometry": { "type": "Point", "coordinates": [ 485063.0, 147576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449279, "UPRN": 10013895650, "X_COORDINATE": 485209.0, "Y_COORDINATE": 147583.0, "LATITUDE": 51.2210921, "LONGITUDE": -0.7812436 }, "geometry": { "type": "Point", "coordinates": [ 485209.0, 147583.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450903, "UPRN": 10013897352, "X_COORDINATE": 485152.0, "Y_COORDINATE": 147594.0, "LATITUDE": 51.2211995, "LONGITUDE": -0.782057 }, "geometry": { "type": "Point", "coordinates": [ 485152.0, 147594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450519, "UPRN": 10013896902, "X_COORDINATE": 485094.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.221397, "LONGITUDE": -0.7828823 }, "geometry": { "type": "Point", "coordinates": [ 485094.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266477, "UPRN": 10091107790, "X_COORDINATE": 484971.0, "Y_COORDINATE": 147617.0, "LATITUDE": 51.2214332, "LONGITUDE": -0.7846427 }, "geometry": { "type": "Point", "coordinates": [ 484971.0, 147617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18043585, "UPRN": 10025677902, "X_COORDINATE": 484961.56, "Y_COORDINATE": 147646.8, "LATITUDE": 51.2217025, "LONGITUDE": -0.7847708 }, "geometry": { "type": "Point", "coordinates": [ 484961.56, 147646.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 15449321, "UPRN": 10013895692, "X_COORDINATE": 484965.0, "Y_COORDINATE": 147651.0, "LATITUDE": 51.2217398, "LONGITUDE": -0.7847206 }, "geometry": { "type": "Point", "coordinates": [ 484965.0, 147651.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450815, "UPRN": 10013897247, "X_COORDINATE": 485008.0, "Y_COORDINATE": 147666.0, "LATITUDE": 51.2218683, "LONGITUDE": -0.7841015 }, "geometry": { "type": "Point", "coordinates": [ 485008.0, 147666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265605, "UPRN": 10091106910, "X_COORDINATE": 484959.0, "Y_COORDINATE": 147695.0, "LATITUDE": 51.2221363, "LONGITUDE": -0.7847961 }, "geometry": { "type": "Point", "coordinates": [ 484959.0, 147695.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15933363, "UPRN": 10015370927, "X_COORDINATE": 484966.49, "Y_COORDINATE": 147700.98, "LATITUDE": 51.2221889, "LONGITUDE": -0.7846874 }, "geometry": { "type": "Point", "coordinates": [ 484966.49, 147700.980000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 20266993, "UPRN": 10091108308, "X_COORDINATE": 485168.0, "Y_COORDINATE": 147719.0, "LATITUDE": 51.2223209, "LONGITUDE": -0.7817983 }, "geometry": { "type": "Point", "coordinates": [ 485168.0, 147719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266994, "UPRN": 10091108309, "X_COORDINATE": 485186.0, "Y_COORDINATE": 147726.0, "LATITUDE": 51.2223811, "LONGITUDE": -0.781539 }, "geometry": { "type": "Point", "coordinates": [ 485186.0, 147726.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450942, "UPRN": 10013897392, "X_COORDINATE": 484972.0, "Y_COORDINATE": 147739.0, "LATITUDE": 51.2225299, "LONGITUDE": -0.7845996 }, "geometry": { "type": "Point", "coordinates": [ 484972.0, 147739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17497711, "UPRN": 10024877511, "X_COORDINATE": 485048.4, "Y_COORDINATE": 147746.42, "LATITUDE": 51.2225852, "LONGITUDE": -0.783504 }, "geometry": { "type": "Point", "coordinates": [ 485048.400000000023283, 147746.420000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 20266375, "UPRN": 10091107687, "X_COORDINATE": 485065.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.222588, "LONGITUDE": -0.7832663 }, "geometry": { "type": "Point", "coordinates": [ 485065.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267044, "UPRN": 10091108360, "X_COORDINATE": 485041.0, "Y_COORDINATE": 147750.0, "LATITUDE": 51.2226185, "LONGITUDE": -0.7836091 }, "geometry": { "type": "Point", "coordinates": [ 485041.0, 147750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267045, "UPRN": 10091108361, "X_COORDINATE": 485041.0, "Y_COORDINATE": 147750.0, "LATITUDE": 51.2226185, "LONGITUDE": -0.7836091 }, "geometry": { "type": "Point", "coordinates": [ 485041.0, 147750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267046, "UPRN": 10091108362, "X_COORDINATE": 485041.0, "Y_COORDINATE": 147750.0, "LATITUDE": 51.2226185, "LONGITUDE": -0.7836091 }, "geometry": { "type": "Point", "coordinates": [ 485041.0, 147750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910805, "UPRN": 10094579228, "X_COORDINATE": 485010.0, "Y_COORDINATE": 147562.0, "LATITUDE": 51.220933, "LONGITUDE": -0.7840974 }, "geometry": { "type": "Point", "coordinates": [ 485010.0, 147562.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116262, "UPRN": 10096744644, "X_COORDINATE": 484959.04, "Y_COORDINATE": 147695.31, "LATITUDE": 51.222139, "LONGITUDE": -0.7847954 }, "geometry": { "type": "Point", "coordinates": [ 484959.039999999979045, 147695.31 ] } }, -{ "type": "Feature", "properties": { "FID": 23116313, "UPRN": 10096744695, "X_COORDINATE": 485168.49, "Y_COORDINATE": 147718.65, "LATITUDE": 51.2223177, "LONGITUDE": -0.7817914 }, "geometry": { "type": "Point", "coordinates": [ 485168.49, 147718.65 ] } }, -{ "type": "Feature", "properties": { "FID": 23116330, "UPRN": 10096744712, "X_COORDINATE": 485171.2, "Y_COORDINATE": 147597.57, "LATITUDE": 51.2212288, "LONGITUDE": -0.7817813 }, "geometry": { "type": "Point", "coordinates": [ 485171.200000000011642, 147597.57 ] } }, -{ "type": "Feature", "properties": { "FID": 23116508, "UPRN": 10096744896, "X_COORDINATE": 485077.18, "Y_COORDINATE": 147780.37, "LATITUDE": 51.2228862, "LONGITUDE": -0.783084 }, "geometry": { "type": "Point", "coordinates": [ 485077.18, 147780.37 ] } }, -{ "type": "Feature", "properties": { "FID": 23116510, "UPRN": 10096744898, "X_COORDINATE": 485101.32, "Y_COORDINATE": 147777.91, "LATITUDE": 51.2228604, "LONGITUDE": -0.782739 }, "geometry": { "type": "Point", "coordinates": [ 485101.32, 147777.91 ] } }, -{ "type": "Feature", "properties": { "FID": 23116511, "UPRN": 10096744899, "X_COORDINATE": 485124.96, "Y_COORDINATE": 147779.39, "LATITUDE": 51.2228702, "LONGITUDE": -0.7824002 }, "geometry": { "type": "Point", "coordinates": [ 485124.960000000020955, 147779.39000000001397 ] } }, -{ "type": "Feature", "properties": { "FID": 23116512, "UPRN": 10096744900, "X_COORDINATE": 485199.34, "Y_COORDINATE": 147691.21, "LATITUDE": 51.2220664, "LONGITUDE": -0.7813562 }, "geometry": { "type": "Point", "coordinates": [ 485199.340000000025611, 147691.21 ] } }, -{ "type": "Feature", "properties": { "FID": 23116513, "UPRN": 10096744901, "X_COORDINATE": 485246.39, "Y_COORDINATE": 147671.75, "LATITUDE": 51.2218844, "LONGITUDE": -0.7806873 }, "geometry": { "type": "Point", "coordinates": [ 485246.39000000001397, 147671.75 ] } }, -{ "type": "Feature", "properties": { "FID": 23116515, "UPRN": 10096744903, "X_COORDINATE": 485247.87, "Y_COORDINATE": 147636.78, "LATITUDE": 51.2215698, "LONGITUDE": -0.7806744 }, "geometry": { "type": "Point", "coordinates": [ 485247.87, 147636.78 ] } }, -{ "type": "Feature", "properties": { "FID": 23116544, "UPRN": 10096744932, "X_COORDINATE": 485177.71, "Y_COORDINATE": 147579.09, "LATITUDE": 51.2210616, "LONGITUDE": -0.7816925 }, "geometry": { "type": "Point", "coordinates": [ 485177.710000000020955, 147579.09 ] } }, -{ "type": "Feature", "properties": { "FID": 23116545, "UPRN": 10096744933, "X_COORDINATE": 485170.81, "Y_COORDINATE": 147614.8, "LATITUDE": 51.2213837, "LONGITUDE": -0.7817828 }, "geometry": { "type": "Point", "coordinates": [ 485170.81, 147614.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 15451406, "UPRN": 10013898274, "X_COORDINATE": 484996.0, "Y_COORDINATE": 147817.0, "LATITUDE": 51.2232275, "LONGITUDE": -0.7842375 }, "geometry": { "type": "Point", "coordinates": [ 484996.0, 147817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449914, "UPRN": 10013896289, "X_COORDINATE": 485150.0, "Y_COORDINATE": 147861.0, "LATITUDE": 51.2236002, "LONGITUDE": -0.7820223 }, "geometry": { "type": "Point", "coordinates": [ 485150.0, 147861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18029499, "UPRN": 10025645073, "X_COORDINATE": 485025.12, "Y_COORDINATE": 147812.69, "LATITUDE": 51.2231845, "LONGITUDE": -0.7838216 }, "geometry": { "type": "Point", "coordinates": [ 485025.12, 147812.69 ] } }, -{ "type": "Feature", "properties": { "FID": 20269902, "UPRN": 10091111235, "X_COORDINATE": 485025.0, "Y_COORDINATE": 147801.0, "LATITUDE": 51.2230794, "LONGITUDE": -0.7838261 }, "geometry": { "type": "Point", "coordinates": [ 485025.0, 147801.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116509, "UPRN": 10096744897, "X_COORDINATE": 485089.99, "Y_COORDINATE": 147825.45, "LATITUDE": 51.2232895, "LONGITUDE": -0.7828899 }, "geometry": { "type": "Point", "coordinates": [ 485089.99, 147825.450000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 20266100, "UPRN": 10091107410, "X_COORDINATE": 485111.0, "Y_COORDINATE": 147324.0, "LATITUDE": 51.2187783, "LONGITUDE": -0.7827079 }, "geometry": { "type": "Point", "coordinates": [ 485111.0, 147324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17501627, "UPRN": 10024882356, "X_COORDINATE": 485022.23, "Y_COORDINATE": 147351.58, "LATITUDE": 51.2190395, "LONGITUDE": -0.7839721 }, "geometry": { "type": "Point", "coordinates": [ 485022.229999999981374, 147351.579999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 17771467, "UPRN": 10025222474, "X_COORDINATE": 485152.4, "Y_COORDINATE": 147352.43, "LATITUDE": 51.2190277, "LONGITUDE": -0.7821085 }, "geometry": { "type": "Point", "coordinates": [ 485152.400000000023283, 147352.43 ] } }, -{ "type": "Feature", "properties": { "FID": 15449270, "UPRN": 10013895641, "X_COORDINATE": 484978.0, "Y_COORDINATE": 147355.0, "LATITUDE": 51.2190768, "LONGITUDE": -0.7846045 }, "geometry": { "type": "Point", "coordinates": [ 484978.0, 147355.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450641, "UPRN": 10013897067, "X_COORDINATE": 484985.0, "Y_COORDINATE": 147357.0, "LATITUDE": 51.2190937, "LONGITUDE": -0.7845038 }, "geometry": { "type": "Point", "coordinates": [ 484985.0, 147357.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450803, "UPRN": 10013897233, "X_COORDINATE": 484984.0, "Y_COORDINATE": 147361.0, "LATITUDE": 51.2191298, "LONGITUDE": -0.7845172 }, "geometry": { "type": "Point", "coordinates": [ 484984.0, 147361.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265603, "UPRN": 10091106908, "X_COORDINATE": 485132.0, "Y_COORDINATE": 147381.0, "LATITUDE": 51.2192876, "LONGITUDE": -0.7823938 }, "geometry": { "type": "Point", "coordinates": [ 485132.0, 147381.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18029307, "UPRN": 10025644870, "X_COORDINATE": 485029.98, "Y_COORDINATE": 147387.29, "LATITUDE": 51.2193594, "LONGITUDE": -0.7838527 }, "geometry": { "type": "Point", "coordinates": [ 485029.979999999981374, 147387.29 ] } }, -{ "type": "Feature", "properties": { "FID": 17492415, "UPRN": 10024870894, "X_COORDINATE": 485115.18, "Y_COORDINATE": 147399.37, "LATITUDE": 51.2194553, "LONGITUDE": -0.7826302 }, "geometry": { "type": "Point", "coordinates": [ 485115.18, 147399.37 ] } }, -{ "type": "Feature", "properties": { "FID": 20267678, "UPRN": 10091108999, "X_COORDINATE": 485150.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195456, "LONGITUDE": -0.7821292 }, "geometry": { "type": "Point", "coordinates": [ 485150.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267679, "UPRN": 10091109000, "X_COORDINATE": 485157.0, "Y_COORDINATE": 147411.0, "LATITUDE": 51.2195536, "LONGITUDE": -0.7820288 }, "geometry": { "type": "Point", "coordinates": [ 485157.0, 147411.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267079, "UPRN": 10091108395, "X_COORDINATE": 485173.0, "Y_COORDINATE": 147413.0, "LATITUDE": 51.2195692, "LONGITUDE": -0.7817993 }, "geometry": { "type": "Point", "coordinates": [ 485173.0, 147413.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267680, "UPRN": 10091109001, "X_COORDINATE": 485163.0, "Y_COORDINATE": 147413.0, "LATITUDE": 51.2195707, "LONGITUDE": -0.7819424 }, "geometry": { "type": "Point", "coordinates": [ 485163.0, 147413.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267681, "UPRN": 10091109002, "X_COORDINATE": 485169.0, "Y_COORDINATE": 147414.0, "LATITUDE": 51.2195788, "LONGITUDE": -0.7818563 }, "geometry": { "type": "Point", "coordinates": [ 485169.0, 147414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267682, "UPRN": 10091109003, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147416.0, "LATITUDE": 51.2195959, "LONGITUDE": -0.7817699 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147416.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450626, "UPRN": 10013897050, "X_COORDINATE": 484997.0, "Y_COORDINATE": 147426.0, "LATITUDE": 51.2197123, "LONGITUDE": -0.7843157 }, "geometry": { "type": "Point", "coordinates": [ 484997.0, 147426.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450621, "UPRN": 10013897044, "X_COORDINATE": 485029.0, "Y_COORDINATE": 147446.0, "LATITUDE": 51.2198873, "LONGITUDE": -0.7838529 }, "geometry": { "type": "Point", "coordinates": [ 485029.0, 147446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450623, "UPRN": 10013897046, "X_COORDINATE": 485078.0, "Y_COORDINATE": 147484.0, "LATITUDE": 51.2202216, "LONGITUDE": -0.7831424 }, "geometry": { "type": "Point", "coordinates": [ 485078.0, 147484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17771465, "UPRN": 10025222472, "X_COORDINATE": 485186.15, "Y_COORDINATE": 147495.25, "LATITUDE": 51.2203067, "LONGITUDE": -0.7815915 }, "geometry": { "type": "Point", "coordinates": [ 485186.150000000023283, 147495.25 ] } }, -{ "type": "Feature", "properties": { "FID": 15450624, "UPRN": 10013897047, "X_COORDINATE": 485101.0, "Y_COORDINATE": 147509.0, "LATITUDE": 51.220443, "LONGITUDE": -0.7828072 }, "geometry": { "type": "Point", "coordinates": [ 485101.0, 147509.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450622, "UPRN": 10013897045, "X_COORDINATE": 485139.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204643, "LONGITUDE": -0.7822625 }, "geometry": { "type": "Point", "coordinates": [ 485139.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265660, "UPRN": 10091106965, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267683, "UPRN": 10091109004, "X_COORDINATE": 485181.0, "Y_COORDINATE": 147417.0, "LATITUDE": 51.219604, "LONGITUDE": -0.7816838 }, "geometry": { "type": "Point", "coordinates": [ 485181.0, 147417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267684, "UPRN": 10091109005, "X_COORDINATE": 485187.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.219621, "LONGITUDE": -0.7815974 }, "geometry": { "type": "Point", "coordinates": [ 485187.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267685, "UPRN": 10091109006, "X_COORDINATE": 485193.0, "Y_COORDINATE": 147421.0, "LATITUDE": 51.2196381, "LONGITUDE": -0.7815111 }, "geometry": { "type": "Point", "coordinates": [ 485193.0, 147421.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267686, "UPRN": 10091109007, "X_COORDINATE": 485198.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2196464, "LONGITUDE": -0.7814393 }, "geometry": { "type": "Point", "coordinates": [ 485198.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267687, "UPRN": 10091109008, "X_COORDINATE": 485153.0, "Y_COORDINATE": 147393.0, "LATITUDE": 51.2193924, "LONGITUDE": -0.7820903 }, "geometry": { "type": "Point", "coordinates": [ 485153.0, 147393.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913105, "UPRN": 10094581592, "X_COORDINATE": 485116.21, "Y_COORDINATE": 147356.76, "LATITUDE": 51.219072, "LONGITUDE": -0.7826256 }, "geometry": { "type": "Point", "coordinates": [ 485116.210000000020955, 147356.76 ] } }, -{ "type": "Feature", "properties": { "FID": 23116514, "UPRN": 10096744902, "X_COORDINATE": 485187.76, "Y_COORDINATE": 147515.23, "LATITUDE": 51.220486, "LONGITUDE": -0.7815637 }, "geometry": { "type": "Point", "coordinates": [ 485187.76, 147515.230000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 23116516, "UPRN": 10096744904, "X_COORDINATE": 485221.99, "Y_COORDINATE": 147524.09, "LATITUDE": 51.2205606, "LONGITUDE": -0.7810716 }, "geometry": { "type": "Point", "coordinates": [ 485221.99, 147524.09 ] } }, -{ "type": "Feature", "properties": { "FID": 23117175, "UPRN": 10096745577, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117176, "UPRN": 10096745578, "X_COORDINATE": 484992.0, "Y_COORDINATE": 147542.0, "LATITUDE": 51.2207559, "LONGITUDE": -0.7843598 }, "geometry": { "type": "Point", "coordinates": [ 484992.0, 147542.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117194, "UPRN": 10096745596, "X_COORDINATE": 485224.71, "Y_COORDINATE": 147423.53, "LATITUDE": 51.2196561, "LONGITUDE": -0.7810565 }, "geometry": { "type": "Point", "coordinates": [ 485224.710000000020955, 147423.53 ] } }, -{ "type": "Feature", "properties": { "FID": 23117201, "UPRN": 10096745603, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117202, "UPRN": 10096745604, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117203, "UPRN": 10096745605, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117204, "UPRN": 10096745606, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17492416, "UPRN": 10024870895, "X_COORDINATE": 485269.21, "Y_COORDINATE": 147477.63, "LATITUDE": 51.2201359, "LONGITUDE": -0.7804067 }, "geometry": { "type": "Point", "coordinates": [ 485269.210000000020955, 147477.63 ] } }, -{ "type": "Feature", "properties": { "FID": 20267041, "UPRN": 10091108357, "X_COORDINATE": 485279.0, "Y_COORDINATE": 147562.0, "LATITUDE": 51.2208929, "LONGITUDE": -0.7802465 }, "geometry": { "type": "Point", "coordinates": [ 485279.0, 147562.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267040, "UPRN": 10091108356, "X_COORDINATE": 485280.0, "Y_COORDINATE": 147685.0, "LATITUDE": 51.2219985, "LONGITUDE": -0.780203 }, "geometry": { "type": "Point", "coordinates": [ 485280.0, 147685.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267039, "UPRN": 10091108355, "X_COORDINATE": 485286.0, "Y_COORDINATE": 147682.0, "LATITUDE": 51.2219707, "LONGITUDE": -0.7801178 }, "geometry": { "type": "Point", "coordinates": [ 485286.0, 147682.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267038, "UPRN": 10091108354, "X_COORDINATE": 485291.0, "Y_COORDINATE": 147678.0, "LATITUDE": 51.221934, "LONGITUDE": -0.7800472 }, "geometry": { "type": "Point", "coordinates": [ 485291.0, 147678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267037, "UPRN": 10091108353, "X_COORDINATE": 485296.0, "Y_COORDINATE": 147675.0, "LATITUDE": 51.2219062, "LONGITUDE": -0.7799763 }, "geometry": { "type": "Point", "coordinates": [ 485296.0, 147675.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267025, "UPRN": 10091108341, "X_COORDINATE": 485300.0, "Y_COORDINATE": 147607.0, "LATITUDE": 51.2212943, "LONGITUDE": -0.7799352 }, "geometry": { "type": "Point", "coordinates": [ 485300.0, 147607.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267036, "UPRN": 10091108352, "X_COORDINATE": 485301.0, "Y_COORDINATE": 147671.0, "LATITUDE": 51.2218695, "LONGITUDE": -0.7799057 }, "geometry": { "type": "Point", "coordinates": [ 485301.0, 147671.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18072348, "UPRN": 10025744827, "X_COORDINATE": 485301.41, "Y_COORDINATE": 147551.41, "LATITUDE": 51.2207943, "LONGITUDE": -0.7799282 }, "geometry": { "type": "Point", "coordinates": [ 485301.409999999974389, 147551.41 ] } }, -{ "type": "Feature", "properties": { "FID": 18058273, "UPRN": 10025711637, "X_COORDINATE": 485301.79, "Y_COORDINATE": 147517.09, "LATITUDE": 51.2204858, "LONGITUDE": -0.7799309 }, "geometry": { "type": "Point", "coordinates": [ 485301.789999999979045, 147517.09 ] } }, -{ "type": "Feature", "properties": { "FID": 20267026, "UPRN": 10091108342, "X_COORDINATE": 485302.0, "Y_COORDINATE": 147612.0, "LATITUDE": 51.221339, "LONGITUDE": -0.7799053 }, "geometry": { "type": "Point", "coordinates": [ 485302.0, 147612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267027, "UPRN": 10091108343, "X_COORDINATE": 485305.0, "Y_COORDINATE": 147617.0, "LATITUDE": 51.2213835, "LONGITUDE": -0.7798612 }, "geometry": { "type": "Point", "coordinates": [ 485305.0, 147617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267035, "UPRN": 10091108351, "X_COORDINATE": 485306.0, "Y_COORDINATE": 147668.0, "LATITUDE": 51.2218418, "LONGITUDE": -0.7798348 }, "geometry": { "type": "Point", "coordinates": [ 485306.0, 147668.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267028, "UPRN": 10091108344, "X_COORDINATE": 485307.0, "Y_COORDINATE": 147621.0, "LATITUDE": 51.2214191, "LONGITUDE": -0.7798316 }, "geometry": { "type": "Point", "coordinates": [ 485307.0, 147621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267029, "UPRN": 10091108345, "X_COORDINATE": 485309.0, "Y_COORDINATE": 147625.0, "LATITUDE": 51.2214548, "LONGITUDE": -0.7798021 }, "geometry": { "type": "Point", "coordinates": [ 485309.0, 147625.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267034, "UPRN": 10091108350, "X_COORDINATE": 485309.0, "Y_COORDINATE": 147663.0, "LATITUDE": 51.2217964, "LONGITUDE": -0.779793 }, "geometry": { "type": "Point", "coordinates": [ 485309.0, 147663.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267033, "UPRN": 10091108349, "X_COORDINATE": 485311.0, "Y_COORDINATE": 147658.0, "LATITUDE": 51.2217512, "LONGITUDE": -0.7797656 }, "geometry": { "type": "Point", "coordinates": [ 485311.0, 147658.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267030, "UPRN": 10091108346, "X_COORDINATE": 485312.0, "Y_COORDINATE": 147630.0, "LATITUDE": 51.2214993, "LONGITUDE": -0.7797579 }, "geometry": { "type": "Point", "coordinates": [ 485312.0, 147630.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267031, "UPRN": 10091108347, "X_COORDINATE": 485314.0, "Y_COORDINATE": 147634.0, "LATITUDE": 51.221535, "LONGITUDE": -0.7797283 }, "geometry": { "type": "Point", "coordinates": [ 485314.0, 147634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267032, "UPRN": 10091108348, "X_COORDINATE": 485316.0, "Y_COORDINATE": 147638.0, "LATITUDE": 51.2215706, "LONGITUDE": -0.7796988 }, "geometry": { "type": "Point", "coordinates": [ 485316.0, 147638.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18030290, "UPRN": 10025645910, "X_COORDINATE": 485323.64, "Y_COORDINATE": 147520.81, "LATITUDE": 51.2205159, "LONGITUDE": -0.7796172 }, "geometry": { "type": "Point", "coordinates": [ 485323.64000000001397, 147520.81 ] } }, -{ "type": "Feature", "properties": { "FID": 15449122, "UPRN": 10013895493, "X_COORDINATE": 485363.0, "Y_COORDINATE": 147559.0, "LATITUDE": 51.2208534, "LONGITUDE": -0.7790447 }, "geometry": { "type": "Point", "coordinates": [ 485363.0, 147559.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450337, "UPRN": 10013896716, "X_COORDINATE": 485365.0, "Y_COORDINATE": 147684.0, "LATITUDE": 51.2219768, "LONGITUDE": -0.7789863 }, "geometry": { "type": "Point", "coordinates": [ 485365.0, 147684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267024, "UPRN": 10091108340, "X_COORDINATE": 485365.0, "Y_COORDINATE": 147684.0, "LATITUDE": 51.2219768, "LONGITUDE": -0.7789863 }, "geometry": { "type": "Point", "coordinates": [ 485365.0, 147684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268240, "UPRN": 10091109562, "X_COORDINATE": 485279.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2213694, "LONGITUDE": -0.7802339 }, "geometry": { "type": "Point", "coordinates": [ 485279.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909596, "UPRN": 10094578011, "X_COORDINATE": 485323.0, "Y_COORDINATE": 147522.0, "LATITUDE": 51.2205267, "LONGITUDE": -0.7796261 }, "geometry": { "type": "Point", "coordinates": [ 485323.0, 147522.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448986, "UPRN": 10013895353, "X_COORDINATE": 484410.0, "Y_COORDINATE": 147230.0, "LATITUDE": 51.2180372, "LONGITUDE": -0.7927649 }, "geometry": { "type": "Point", "coordinates": [ 484410.0, 147230.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15937989, "UPRN": 10015377676, "X_COORDINATE": 484410.9, "Y_COORDINATE": 147235.8, "LATITUDE": 51.2180892, "LONGITUDE": -0.7927507 }, "geometry": { "type": "Point", "coordinates": [ 484410.900000000023283, 147235.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 15447296, "UPRN": 10013893639, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.217857, "LONGITUDE": -0.7927267 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447297, "UPRN": 10013893640, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.217857, "LONGITUDE": -0.7927267 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447503, "UPRN": 10013893853, "X_COORDINATE": 484414.0, "Y_COORDINATE": 147232.0, "LATITUDE": 51.2180546, "LONGITUDE": -0.7927072 }, "geometry": { "type": "Point", "coordinates": [ 484414.0, 147232.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116539, "UPRN": 10096744927, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450045, "UPRN": 10013896421, "X_COORDINATE": 484471.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.2183339, "LONGITUDE": -0.7918837 }, "geometry": { "type": "Point", "coordinates": [ 484471.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447312, "UPRN": 10013893655, "X_COORDINATE": 484490.0, "Y_COORDINATE": 147260.0, "LATITUDE": 51.2182951, "LONGITUDE": -0.7916127 }, "geometry": { "type": "Point", "coordinates": [ 484490.0, 147260.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267659, "UPRN": 10091108980, "X_COORDINATE": 484567.0, "Y_COORDINATE": 147248.0, "LATITUDE": 51.2181758, "LONGITUDE": -0.7905132 }, "geometry": { "type": "Point", "coordinates": [ 484567.0, 147248.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265798, "UPRN": 10091107104, "X_COORDINATE": 484626.0, "Y_COORDINATE": 147197.0, "LATITUDE": 51.2177086, "LONGITUDE": -0.7896807 }, "geometry": { "type": "Point", "coordinates": [ 484626.0, 147197.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451468, "UPRN": 10013898336, "X_COORDINATE": 484631.0, "Y_COORDINATE": 147251.0, "LATITUDE": 51.2181933, "LONGITUDE": -0.7895964 }, "geometry": { "type": "Point", "coordinates": [ 484631.0, 147251.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447254, "UPRN": 10013893596, "X_COORDINATE": 484636.0, "Y_COORDINATE": 147239.0, "LATITUDE": 51.2180847, "LONGITUDE": -0.7895276 }, "geometry": { "type": "Point", "coordinates": [ 484636.0, 147239.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451469, "UPRN": 10013898337, "X_COORDINATE": 484646.0, "Y_COORDINATE": 147240.0, "LATITUDE": 51.2180922, "LONGITUDE": -0.7893842 }, "geometry": { "type": "Point", "coordinates": [ 484646.0, 147240.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18069783, "UPRN": 10025741310, "X_COORDINATE": 484648.02, "Y_COORDINATE": 147194.76, "LATITUDE": 51.2176852, "LONGITUDE": -0.789366 }, "geometry": { "type": "Point", "coordinates": [ 484648.020000000018626, 147194.76 ] } }, -{ "type": "Feature", "properties": { "FID": 18028382, "UPRN": 10025642980, "X_COORDINATE": 484682.96, "Y_COORDINATE": 147193.04, "LATITUDE": 51.2176646, "LONGITUDE": -0.7888662 }, "geometry": { "type": "Point", "coordinates": [ 484682.960000000020955, 147193.04 ] } }, -{ "type": "Feature", "properties": { "FID": 23117208, "UPRN": 10096745610, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147213.0, "LATITUDE": 51.2178637, "LONGITUDE": -0.7907648 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147213.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719617, "UPRN": 100061598353, "X_COORDINATE": 484675.0, "Y_COORDINATE": 147509.0, "LATITUDE": 51.2205062, "LONGITUDE": -0.7889057 }, "geometry": { "type": "Point", "coordinates": [ 484675.0, 147509.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719616, "UPRN": 100061598352, "X_COORDINATE": 484677.0, "Y_COORDINATE": 147505.0, "LATITUDE": 51.22047, "LONGITUDE": -0.788878 }, "geometry": { "type": "Point", "coordinates": [ 484677.0, 147505.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719615, "UPRN": 100061598351, "X_COORDINATE": 484679.0, "Y_COORDINATE": 147498.0, "LATITUDE": 51.2204068, "LONGITUDE": -0.788851 }, "geometry": { "type": "Point", "coordinates": [ 484679.0, 147498.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719614, "UPRN": 100061598350, "X_COORDINATE": 484681.0, "Y_COORDINATE": 147494.0, "LATITUDE": 51.2203705, "LONGITUDE": -0.7888234 }, "geometry": { "type": "Point", "coordinates": [ 484681.0, 147494.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719613, "UPRN": 100061598349, "X_COORDINATE": 484683.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2203163, "LONGITUDE": -0.7887961 }, "geometry": { "type": "Point", "coordinates": [ 484683.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719612, "UPRN": 100061598348, "X_COORDINATE": 484685.0, "Y_COORDINATE": 147483.0, "LATITUDE": 51.220271, "LONGITUDE": -0.7887687 }, "geometry": { "type": "Point", "coordinates": [ 484685.0, 147483.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719611, "UPRN": 100061598347, "X_COORDINATE": 484689.0, "Y_COORDINATE": 147476.0, "LATITUDE": 51.2202075, "LONGITUDE": -0.7887131 }, "geometry": { "type": "Point", "coordinates": [ 484689.0, 147476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719610, "UPRN": 100061598346, "X_COORDINATE": 484691.0, "Y_COORDINATE": 147472.0, "LATITUDE": 51.2201712, "LONGITUDE": -0.7886854 }, "geometry": { "type": "Point", "coordinates": [ 484691.0, 147472.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719609, "UPRN": 100061598345, "X_COORDINATE": 484693.0, "Y_COORDINATE": 147468.0, "LATITUDE": 51.220135, "LONGITUDE": -0.7886577 }, "geometry": { "type": "Point", "coordinates": [ 484693.0, 147468.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719608, "UPRN": 100061598344, "X_COORDINATE": 484694.0, "Y_COORDINATE": 147464.0, "LATITUDE": 51.2200989, "LONGITUDE": -0.7886443 }, "geometry": { "type": "Point", "coordinates": [ 484694.0, 147464.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719607, "UPRN": 100061598343, "X_COORDINATE": 484696.0, "Y_COORDINATE": 147460.0, "LATITUDE": 51.2200626, "LONGITUDE": -0.7886166 }, "geometry": { "type": "Point", "coordinates": [ 484696.0, 147460.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719606, "UPRN": 100061598342, "X_COORDINATE": 484701.0, "Y_COORDINATE": 147452.0, "LATITUDE": 51.21999, "LONGITUDE": -0.7885469 }, "geometry": { "type": "Point", "coordinates": [ 484701.0, 147452.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719605, "UPRN": 100061598341, "X_COORDINATE": 484704.0, "Y_COORDINATE": 147444.0, "LATITUDE": 51.2199176, "LONGITUDE": -0.7885059 }, "geometry": { "type": "Point", "coordinates": [ 484704.0, 147444.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719604, "UPRN": 100061598340, "X_COORDINATE": 484706.0, "Y_COORDINATE": 147440.0, "LATITUDE": 51.2198813, "LONGITUDE": -0.7884782 }, "geometry": { "type": "Point", "coordinates": [ 484706.0, 147440.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719603, "UPRN": 100061598339, "X_COORDINATE": 484710.0, "Y_COORDINATE": 147435.0, "LATITUDE": 51.2198358, "LONGITUDE": -0.7884221 }, "geometry": { "type": "Point", "coordinates": [ 484710.0, 147435.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719602, "UPRN": 100061598338, "X_COORDINATE": 484713.0, "Y_COORDINATE": 147432.0, "LATITUDE": 51.2198084, "LONGITUDE": -0.7883799 }, "geometry": { "type": "Point", "coordinates": [ 484713.0, 147432.0 ] } }, -{ "type": "Feature", "properties": { "FID": 16142397, "UPRN": 10015842627, "X_COORDINATE": 484727.47, "Y_COORDINATE": 147367.76, "LATITUDE": 51.2192287, "LONGITUDE": -0.7881879 }, "geometry": { "type": "Point", "coordinates": [ 484727.46999999997206, 147367.76 ] } }, -{ "type": "Feature", "properties": { "FID": 15450427, "UPRN": 10013896807, "X_COORDINATE": 484759.0, "Y_COORDINATE": 147514.0, "LATITUDE": 51.2205387, "LONGITUDE": -0.787702 }, "geometry": { "type": "Point", "coordinates": [ 484759.0, 147514.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445240, "UPRN": 10013891520, "X_COORDINATE": 483997.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.2153291, "LONGITUDE": -0.798749 }, "geometry": { "type": "Point", "coordinates": [ 483997.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910960, "UPRN": 10094579383, "X_COORDINATE": 483832.0, "Y_COORDINATE": 147144.0, "LATITUDE": 51.2173491, "LONGITUDE": -0.801059 }, "geometry": { "type": "Point", "coordinates": [ 483832.0, 147144.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447385, "UPRN": 10013893731, "X_COORDINATE": 483934.0, "Y_COORDINATE": 147156.0, "LATITUDE": 51.2174421, "LONGITUDE": -0.7995961 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 147156.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911757, "UPRN": 10094580229, "X_COORDINATE": 483842.0, "Y_COORDINATE": 147221.0, "LATITUDE": 51.2180399, "LONGITUDE": -0.8008979 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 147221.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911759, "UPRN": 10094580231, "X_COORDINATE": 483845.0, "Y_COORDINATE": 147226.0, "LATITUDE": 51.2180844, "LONGITUDE": -0.8008538 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 147226.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911758, "UPRN": 10094580230, "X_COORDINATE": 483849.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2181018, "LONGITUDE": -0.8007961 }, "geometry": { "type": "Point", "coordinates": [ 483849.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911756, "UPRN": 10094580228, "X_COORDINATE": 483842.0, "Y_COORDINATE": 147229.0, "LATITUDE": 51.2181118, "LONGITUDE": -0.8008961 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 147229.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721934, "UPRN": 100061600743, "X_COORDINATE": 483836.0, "Y_COORDINATE": 147192.0, "LATITUDE": 51.2177801, "LONGITUDE": -0.8009906 }, "geometry": { "type": "Point", "coordinates": [ 483836.0, 147192.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721936, "UPRN": 100061600745, "X_COORDINATE": 483796.0, "Y_COORDINATE": 147206.0, "LATITUDE": 51.2179118, "LONGITUDE": -0.8015599 }, "geometry": { "type": "Point", "coordinates": [ 483796.0, 147206.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721937, "UPRN": 100061600746, "X_COORDINATE": 483871.0, "Y_COORDINATE": 147136.0, "LATITUDE": 51.2172715, "LONGITUDE": -0.8005026 }, "geometry": { "type": "Point", "coordinates": [ 483871.0, 147136.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909905, "UPRN": 10094578321, "X_COORDINATE": 483785.0, "Y_COORDINATE": 147098.0, "LATITUDE": 51.2169425, "LONGITUDE": -0.8017426 }, "geometry": { "type": "Point", "coordinates": [ 483785.0, 147098.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913249, "UPRN": 10094581738, "X_COORDINATE": 483842.74, "Y_COORDINATE": 146866.6, "LATITUDE": 51.2148537, "LONGITUDE": -0.80097 }, "geometry": { "type": "Point", "coordinates": [ 483842.74, 146866.6 ] } }, -{ "type": "Feature", "properties": { "FID": 21913038, "UPRN": 10094581525, "X_COORDINATE": 483855.61, "Y_COORDINATE": 146867.85, "LATITUDE": 51.214863, "LONGITUDE": -0.8007855 }, "geometry": { "type": "Point", "coordinates": [ 483855.60999999998603, 146867.85 ] } }, -{ "type": "Feature", "properties": { "FID": 21913039, "UPRN": 10094581526, "X_COORDINATE": 483857.24, "Y_COORDINATE": 146871.24, "LATITUDE": 51.2148933, "LONGITUDE": -0.8007614 }, "geometry": { "type": "Point", "coordinates": [ 483857.24, 146871.24 ] } }, -{ "type": "Feature", "properties": { "FID": 21913248, "UPRN": 10094581737, "X_COORDINATE": 483838.33, "Y_COORDINATE": 146873.75, "LATITUDE": 51.2149186, "LONGITUDE": -0.8010315 }, "geometry": { "type": "Point", "coordinates": [ 483838.330000000016298, 146873.75 ] } }, -{ "type": "Feature", "properties": { "FID": 21913040, "UPRN": 10094581527, "X_COORDINATE": 483860.49, "Y_COORDINATE": 146873.95, "LATITUDE": 51.2149172, "LONGITUDE": -0.8007142 }, "geometry": { "type": "Point", "coordinates": [ 483860.49, 146873.950000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 15451629, "UPRN": 10013898497, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149704, "LONGITUDE": -0.8014787 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265405, "UPRN": 10091106710, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149704, "LONGITUDE": -0.8014787 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913041, "UPRN": 10094581528, "X_COORDINATE": 483849.65, "Y_COORDINATE": 146886.55, "LATITUDE": 51.215032, "LONGITUDE": -0.8008664 }, "geometry": { "type": "Point", "coordinates": [ 483849.650000000023283, 146886.549999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 20268482, "UPRN": 10091109805, "X_COORDINATE": 483825.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150577, "LONGITUDE": -0.8012187 }, "geometry": { "type": "Point", "coordinates": [ 483825.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913042, "UPRN": 10094581529, "X_COORDINATE": 483848.02, "Y_COORDINATE": 146890.48, "LATITUDE": 51.2150676, "LONGITUDE": -0.8008889 }, "geometry": { "type": "Point", "coordinates": [ 483848.020000000018626, 146890.480000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 20268481, "UPRN": 10091109804, "X_COORDINATE": 483830.0, "Y_COORDINATE": 146891.0, "LATITUDE": 51.2150749, "LONGITUDE": -0.8011467 }, "geometry": { "type": "Point", "coordinates": [ 483830.0, 146891.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913043, "UPRN": 10094581530, "X_COORDINATE": 483846.12, "Y_COORDINATE": 146893.72, "LATITUDE": 51.215097, "LONGITUDE": -0.8009153 }, "geometry": { "type": "Point", "coordinates": [ 483846.12, 146893.72 ] } }, -{ "type": "Feature", "properties": { "FID": 20268487, "UPRN": 10091109810, "X_COORDINATE": 483830.0, "Y_COORDINATE": 146899.0, "LATITUDE": 51.2151468, "LONGITUDE": -0.8011448 }, "geometry": { "type": "Point", "coordinates": [ 483830.0, 146899.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268484, "UPRN": 10091109807, "X_COORDINATE": 483815.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.215158, "LONGITUDE": -0.8013593 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268483, "UPRN": 10091109806, "X_COORDINATE": 483822.0, "Y_COORDINATE": 146903.0, "LATITUDE": 51.215184, "LONGITUDE": -0.8012584 }, "geometry": { "type": "Point", "coordinates": [ 483822.0, 146903.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268485, "UPRN": 10091109808, "X_COORDINATE": 483812.0, "Y_COORDINATE": 146909.0, "LATITUDE": 51.2152394, "LONGITUDE": -0.8014001 }, "geometry": { "type": "Point", "coordinates": [ 483812.0, 146909.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268486, "UPRN": 10091109809, "X_COORDINATE": 483818.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152565, "LONGITUDE": -0.8013138 }, "geometry": { "type": "Point", "coordinates": [ 483818.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269467, "UPRN": 10091110791, "X_COORDINATE": 483798.0, "Y_COORDINATE": 146913.0, "LATITUDE": 51.2152774, "LONGITUDE": -0.8015996 }, "geometry": { "type": "Point", "coordinates": [ 483798.0, 146913.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446845, "UPRN": 10013893185, "X_COORDINATE": 483798.0, "Y_COORDINATE": 146913.0, "LATITUDE": 51.2152774, "LONGITUDE": -0.8015996 }, "geometry": { "type": "Point", "coordinates": [ 483798.0, 146913.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446846, "UPRN": 10013893186, "X_COORDINATE": 483798.0, "Y_COORDINATE": 146913.0, "LATITUDE": 51.2152774, "LONGITUDE": -0.8015996 }, "geometry": { "type": "Point", "coordinates": [ 483798.0, 146913.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445475, "UPRN": 10013891765, "X_COORDINATE": 483853.0, "Y_COORDINATE": 146918.0, "LATITUDE": 51.2153143, "LONGITUDE": -0.8008112 }, "geometry": { "type": "Point", "coordinates": [ 483853.0, 146918.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216629, "UPRN": 100062353871, "X_COORDINATE": 483820.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.2151034, "LONGITUDE": -0.8012891 }, "geometry": { "type": "Point", "coordinates": [ 483820.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216630, "UPRN": 100062353872, "X_COORDINATE": 483805.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152674, "LONGITUDE": -0.8014996 }, "geometry": { "type": "Point", "coordinates": [ 483805.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216634, "UPRN": 100062353879, "X_COORDINATE": 483811.0, "Y_COORDINATE": 146871.0, "LATITUDE": 51.2148979, "LONGITUDE": -0.8014233 }, "geometry": { "type": "Point", "coordinates": [ 483811.0, 146871.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216639, "UPRN": 100062353886, "X_COORDINATE": 483824.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2152107, "LONGITUDE": -0.8012291 }, "geometry": { "type": "Point", "coordinates": [ 483824.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217076, "UPRN": 100062354531, "X_COORDINATE": 483816.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152658, "LONGITUDE": -0.8013422 }, "geometry": { "type": "Point", "coordinates": [ 483816.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217077, "UPRN": 100062354535, "X_COORDINATE": 483831.0, "Y_COORDINATE": 146881.0, "LATITUDE": 51.2149849, "LONGITUDE": -0.8011347 }, "geometry": { "type": "Point", "coordinates": [ 483831.0, 146881.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217078, "UPRN": 100062354536, "X_COORDINATE": 483824.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2150848, "LONGITUDE": -0.8012323 }, "geometry": { "type": "Point", "coordinates": [ 483824.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217079, "UPRN": 100062354537, "X_COORDINATE": 483798.0, "Y_COORDINATE": 146890.0, "LATITUDE": 51.2150706, "LONGITUDE": -0.801605 }, "geometry": { "type": "Point", "coordinates": [ 483798.0, 146890.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217080, "UPRN": 100062354538, "X_COORDINATE": 483805.0, "Y_COORDINATE": 146881.0, "LATITUDE": 51.2149887, "LONGITUDE": -0.8015069 }, "geometry": { "type": "Point", "coordinates": [ 483805.0, 146881.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217081, "UPRN": 100062354539, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146877.0, "LATITUDE": 51.2149524, "LONGITUDE": -0.8014792 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146877.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217082, "UPRN": 100062354540, "X_COORDINATE": 483801.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2150252, "LONGITUDE": -0.8015632 }, "geometry": { "type": "Point", "coordinates": [ 483801.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217117, "UPRN": 100062354589, "X_COORDINATE": 483798.0, "Y_COORDINATE": 146913.0, "LATITUDE": 51.2152774, "LONGITUDE": -0.8015996 }, "geometry": { "type": "Point", "coordinates": [ 483798.0, 146913.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217149, "UPRN": 100062354655, "X_COORDINATE": 483831.0, "Y_COORDINATE": 146872.0, "LATITUDE": 51.214904, "LONGITUDE": -0.8011368 }, "geometry": { "type": "Point", "coordinates": [ 483831.0, 146872.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217154, "UPRN": 100062354660, "X_COORDINATE": 483828.0, "Y_COORDINATE": 146888.0, "LATITUDE": 51.2150482, "LONGITUDE": -0.801176 }, "geometry": { "type": "Point", "coordinates": [ 483828.0, 146888.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912542, "UPRN": 10094581020, "X_COORDINATE": 483871.92, "Y_COORDINATE": 146895.52, "LATITUDE": 51.2151094, "LONGITUDE": -0.8005456 }, "geometry": { "type": "Point", "coordinates": [ 483871.919999999983702, 146895.519999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 21913214, "UPRN": 10094581703, "X_COORDINATE": 483872.57, "Y_COORDINATE": 146902.29, "LATITUDE": 51.2151702, "LONGITUDE": -0.8005347 }, "geometry": { "type": "Point", "coordinates": [ 483872.57, 146902.29 ] } }, -{ "type": "Feature", "properties": { "FID": 21912541, "UPRN": 10094581019, "X_COORDINATE": 483875.58, "Y_COORDINATE": 146888.07, "LATITUDE": 51.2150419, "LONGITUDE": -0.8004949 }, "geometry": { "type": "Point", "coordinates": [ 483875.580000000016298, 146888.07 ] } }, -{ "type": "Feature", "properties": { "FID": 21912084, "UPRN": 10094580559, "X_COORDINATE": 483878.56, "Y_COORDINATE": 146880.01, "LATITUDE": 51.214969, "LONGITUDE": -0.8004542 }, "geometry": { "type": "Point", "coordinates": [ 483878.56, 146880.01 ] } }, -{ "type": "Feature", "properties": { "FID": 21912540, "UPRN": 10094581018, "X_COORDINATE": 483879.78, "Y_COORDINATE": 146879.4, "LATITUDE": 51.2149633, "LONGITUDE": -0.8004368 }, "geometry": { "type": "Point", "coordinates": [ 483879.78000000002794, 146879.4 ] } }, -{ "type": "Feature", "properties": { "FID": 32216608, "UPRN": 100062353842, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117232, "UPRN": 10096745634, "X_COORDINATE": 483881.0, "Y_COORDINATE": 146875.0, "LATITUDE": 51.2149236, "LONGITUDE": -0.8004204 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 146875.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445396, "UPRN": 10013891686, "X_COORDINATE": 483893.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2151466, "LONGITUDE": -0.8002428 }, "geometry": { "type": "Point", "coordinates": [ 483893.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445395, "UPRN": 10013891685, "X_COORDINATE": 483899.0, "Y_COORDINATE": 146881.0, "LATITUDE": 51.2149749, "LONGITUDE": -0.8001613 }, "geometry": { "type": "Point", "coordinates": [ 483899.0, 146881.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910947, "UPRN": 10094579370, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2150726, "LONGITUDE": -0.8000443 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910948, "UPRN": 10094579371, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2150094, "LONGITUDE": -0.8000173 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910949, "UPRN": 10094579372, "X_COORDINATE": 483913.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149549, "LONGITUDE": -0.7999614 }, "geometry": { "type": "Point", "coordinates": [ 483913.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911621, "UPRN": 10094580092, "X_COORDINATE": 483913.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150448, "LONGITUDE": -0.7999591 }, "geometry": { "type": "Point", "coordinates": [ 483913.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910946, "UPRN": 10094579369, "X_COORDINATE": 483915.0, "Y_COORDINATE": 146898.0, "LATITUDE": 51.2151254, "LONGITUDE": -0.7999284 }, "geometry": { "type": "Point", "coordinates": [ 483915.0, 146898.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217163, "UPRN": 100062354671, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.2148569, "LONGITUDE": -0.8000499 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910295, "UPRN": 10094578711, "X_COORDINATE": 484326.0, "Y_COORDINATE": 146883.0, "LATITUDE": 51.21493, "LONGITUDE": -0.7940488 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 146883.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910306, "UPRN": 10094578722, "X_COORDINATE": 484326.0, "Y_COORDINATE": 146883.0, "LATITUDE": 51.21493, "LONGITUDE": -0.7940488 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 146883.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910294, "UPRN": 10094578710, "X_COORDINATE": 484333.0, "Y_COORDINATE": 146887.0, "LATITUDE": 51.214965, "LONGITUDE": -0.7939477 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 146887.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910305, "UPRN": 10094578721, "X_COORDINATE": 484333.0, "Y_COORDINATE": 146887.0, "LATITUDE": 51.214965, "LONGITUDE": -0.7939477 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 146887.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910296, "UPRN": 10094578712, "X_COORDINATE": 484317.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.2150303, "LONGITUDE": -0.794175 }, "geometry": { "type": "Point", "coordinates": [ 484317.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910307, "UPRN": 10094578723, "X_COORDINATE": 484317.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.2150303, "LONGITUDE": -0.794175 }, "geometry": { "type": "Point", "coordinates": [ 484317.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910293, "UPRN": 10094578709, "X_COORDINATE": 484324.0, "Y_COORDINATE": 146898.0, "LATITUDE": 51.2150652, "LONGITUDE": -0.7940739 }, "geometry": { "type": "Point", "coordinates": [ 484324.0, 146898.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910304, "UPRN": 10094578720, "X_COORDINATE": 484324.0, "Y_COORDINATE": 146898.0, "LATITUDE": 51.2150652, "LONGITUDE": -0.7940739 }, "geometry": { "type": "Point", "coordinates": [ 484324.0, 146898.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910297, "UPRN": 10094578713, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2150851, "LONGITUDE": -0.7942595 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910308, "UPRN": 10094578724, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2150851, "LONGITUDE": -0.7942595 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910292, "UPRN": 10094578708, "X_COORDINATE": 484317.0, "Y_COORDINATE": 146905.0, "LATITUDE": 51.2151291, "LONGITUDE": -0.7941725 }, "geometry": { "type": "Point", "coordinates": [ 484317.0, 146905.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910303, "UPRN": 10094578719, "X_COORDINATE": 484317.0, "Y_COORDINATE": 146905.0, "LATITUDE": 51.2151291, "LONGITUDE": -0.7941725 }, "geometry": { "type": "Point", "coordinates": [ 484317.0, 146905.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910298, "UPRN": 10094578714, "X_COORDINATE": 484305.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2151489, "LONGITUDE": -0.7943438 }, "geometry": { "type": "Point", "coordinates": [ 484305.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910302, "UPRN": 10094578718, "X_COORDINATE": 484309.0, "Y_COORDINATE": 146910.0, "LATITUDE": 51.2151753, "LONGITUDE": -0.7942858 }, "geometry": { "type": "Point", "coordinates": [ 484309.0, 146910.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910291, "UPRN": 10094578707, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.215184, "LONGITUDE": -0.7942569 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910312, "UPRN": 10094578728, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.215184, "LONGITUDE": -0.7942569 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910313, "UPRN": 10094578729, "X_COORDINATE": 484317.0, "Y_COORDINATE": 146905.0, "LATITUDE": 51.2151291, "LONGITUDE": -0.7941725 }, "geometry": { "type": "Point", "coordinates": [ 484317.0, 146905.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910314, "UPRN": 10094578730, "X_COORDINATE": 484324.0, "Y_COORDINATE": 146898.0, "LATITUDE": 51.2150652, "LONGITUDE": -0.7940739 }, "geometry": { "type": "Point", "coordinates": [ 484324.0, 146898.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910315, "UPRN": 10094578731, "X_COORDINATE": 484333.0, "Y_COORDINATE": 146887.0, "LATITUDE": 51.214965, "LONGITUDE": -0.7939477 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 146887.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910316, "UPRN": 10094578732, "X_COORDINATE": 484326.0, "Y_COORDINATE": 146883.0, "LATITUDE": 51.21493, "LONGITUDE": -0.7940488 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 146883.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910317, "UPRN": 10094578733, "X_COORDINATE": 484317.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.2150303, "LONGITUDE": -0.794175 }, "geometry": { "type": "Point", "coordinates": [ 484317.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910318, "UPRN": 10094578734, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2150851, "LONGITUDE": -0.7942595 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910319, "UPRN": 10094578735, "X_COORDINATE": 484305.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2151489, "LONGITUDE": -0.7943438 }, "geometry": { "type": "Point", "coordinates": [ 484305.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910322, "UPRN": 10094578738, "X_COORDINATE": 484327.0, "Y_COORDINATE": 146887.0, "LATITUDE": 51.2149658, "LONGITUDE": -0.7940335 }, "geometry": { "type": "Point", "coordinates": [ 484327.0, 146887.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910433, "UPRN": 10094578849, "X_COORDINATE": 484213.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150366, "LONGITUDE": -0.7956639 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910419, "UPRN": 10094578835, "X_COORDINATE": 484249.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2150583, "LONGITUDE": -0.7951479 }, "geometry": { "type": "Point", "coordinates": [ 484249.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910440, "UPRN": 10094578856, "X_COORDINATE": 484249.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2150583, "LONGITUDE": -0.7951479 }, "geometry": { "type": "Point", "coordinates": [ 484249.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910430, "UPRN": 10094578846, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146899.0, "LATITUDE": 51.2150872, "LONGITUDE": -0.7953333 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146899.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910432, "UPRN": 10094578848, "X_COORDINATE": 484221.0, "Y_COORDINATE": 146899.0, "LATITUDE": 51.2150894, "LONGITUDE": -0.795548 }, "geometry": { "type": "Point", "coordinates": [ 484221.0, 146899.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910451, "UPRN": 10094578867, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146899.0, "LATITUDE": 51.2150872, "LONGITUDE": -0.7953333 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146899.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910413, "UPRN": 10094578829, "X_COORDINATE": 484208.0, "Y_COORDINATE": 146901.0, "LATITUDE": 51.2151093, "LONGITUDE": -0.7957336 }, "geometry": { "type": "Point", "coordinates": [ 484208.0, 146901.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910434, "UPRN": 10094578850, "X_COORDINATE": 484208.0, "Y_COORDINATE": 146901.0, "LATITUDE": 51.2151093, "LONGITUDE": -0.7957336 }, "geometry": { "type": "Point", "coordinates": [ 484208.0, 146901.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910418, "UPRN": 10094578834, "X_COORDINATE": 484241.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151493, "LONGITUDE": -0.7952601 }, "geometry": { "type": "Point", "coordinates": [ 484241.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910414, "UPRN": 10094578830, "X_COORDINATE": 484215.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151532, "LONGITUDE": -0.7956323 }, "geometry": { "type": "Point", "coordinates": [ 484215.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910431, "UPRN": 10094578847, "X_COORDINATE": 484230.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.215151, "LONGITUDE": -0.7954176 }, "geometry": { "type": "Point", "coordinates": [ 484230.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910435, "UPRN": 10094578851, "X_COORDINATE": 484215.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151532, "LONGITUDE": -0.7956323 }, "geometry": { "type": "Point", "coordinates": [ 484215.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910439, "UPRN": 10094578855, "X_COORDINATE": 484241.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151493, "LONGITUDE": -0.7952601 }, "geometry": { "type": "Point", "coordinates": [ 484241.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910452, "UPRN": 10094578868, "X_COORDINATE": 484230.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.215151, "LONGITUDE": -0.7954176 }, "geometry": { "type": "Point", "coordinates": [ 484230.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910417, "UPRN": 10094578833, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.215204, "LONGITUDE": -0.7953303 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910415, "UPRN": 10094578831, "X_COORDINATE": 484222.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152061, "LONGITUDE": -0.7955307 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910436, "UPRN": 10094578852, "X_COORDINATE": 484222.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152061, "LONGITUDE": -0.7955307 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910438, "UPRN": 10094578854, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.215204, "LONGITUDE": -0.7953303 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910416, "UPRN": 10094578832, "X_COORDINATE": 484231.0, "Y_COORDINATE": 146919.0, "LATITUDE": 51.2152677, "LONGITUDE": -0.7954002 }, "geometry": { "type": "Point", "coordinates": [ 484231.0, 146919.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910437, "UPRN": 10094578853, "X_COORDINATE": 484231.0, "Y_COORDINATE": 146919.0, "LATITUDE": 51.2152677, "LONGITUDE": -0.7954002 }, "geometry": { "type": "Point", "coordinates": [ 484231.0, 146919.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910453, "UPRN": 10094578869, "X_COORDINATE": 484221.0, "Y_COORDINATE": 146899.0, "LATITUDE": 51.2150894, "LONGITUDE": -0.795548 }, "geometry": { "type": "Point", "coordinates": [ 484221.0, 146899.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910454, "UPRN": 10094578870, "X_COORDINATE": 484213.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150366, "LONGITUDE": -0.7956639 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910457, "UPRN": 10094578873, "X_COORDINATE": 484202.0, "Y_COORDINATE": 146910.0, "LATITUDE": 51.2151911, "LONGITUDE": -0.7958174 }, "geometry": { "type": "Point", "coordinates": [ 484202.0, 146910.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910458, "UPRN": 10094578874, "X_COORDINATE": 484194.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2152821, "LONGITUDE": -0.7959296 }, "geometry": { "type": "Point", "coordinates": [ 484194.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117258, "UPRN": 10096745664, "X_COORDINATE": 484227.69, "Y_COORDINATE": 146916.98, "LATITUDE": 51.21525, "LONGITUDE": -0.795448 }, "geometry": { "type": "Point", "coordinates": [ 484227.69, 146916.980000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 23117259, "UPRN": 10096745665, "X_COORDINATE": 484219.88, "Y_COORDINATE": 146909.35, "LATITUDE": 51.2151826, "LONGITUDE": -0.7955616 }, "geometry": { "type": "Point", "coordinates": [ 484219.88, 146909.35 ] } }, -{ "type": "Feature", "properties": { "FID": 23117260, "UPRN": 10096745666, "X_COORDINATE": 484211.49, "Y_COORDINATE": 146903.01, "LATITUDE": 51.2151268, "LONGITUDE": -0.7956832 }, "geometry": { "type": "Point", "coordinates": [ 484211.49, 146903.01 ] } }, -{ "type": "Feature", "properties": { "FID": 31721938, "UPRN": 100061600747, "X_COORDINATE": 483914.0, "Y_COORDINATE": 146935.0, "LATITUDE": 51.2154582, "LONGITUDE": -0.799934 }, "geometry": { "type": "Point", "coordinates": [ 483914.0, 146935.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445245, "UPRN": 10013891528, "X_COORDINATE": 483919.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2153226, "LONGITUDE": -0.799866 }, "geometry": { "type": "Point", "coordinates": [ 483919.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216656, "UPRN": 100062353919, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146937.0, "LATITUDE": 51.2154732, "LONGITUDE": -0.7996473 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146937.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217107, "UPRN": 100062354575, "X_COORDINATE": 483937.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2154008, "LONGITUDE": -0.7996062 }, "geometry": { "type": "Point", "coordinates": [ 483937.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367160, "UPRN": 100062609332, "X_COORDINATE": 483939.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.2153376, "LONGITUDE": -0.7995792 }, "geometry": { "type": "Point", "coordinates": [ 483939.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446844, "UPRN": 10013893184, "X_COORDINATE": 483942.0, "Y_COORDINATE": 146921.0, "LATITUDE": 51.2153282, "LONGITUDE": -0.7995365 }, "geometry": { "type": "Point", "coordinates": [ 483942.0, 146921.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216655, "UPRN": 100062353918, "X_COORDINATE": 483942.0, "Y_COORDINATE": 146921.0, "LATITUDE": 51.2153282, "LONGITUDE": -0.7995365 }, "geometry": { "type": "Point", "coordinates": [ 483942.0, 146921.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267861, "UPRN": 10091109182, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152374, "LONGITUDE": -0.799453 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267860, "UPRN": 10091109181, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152374, "LONGITUDE": -0.799453 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20614127, "UPRN": 10091795724, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152374, "LONGITUDE": -0.799453 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216654, "UPRN": 100062353917, "X_COORDINATE": 483948.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152374, "LONGITUDE": -0.799453 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267912, "UPRN": 10091109233, "X_COORDINATE": 483973.0, "Y_COORDINATE": 146914.0, "LATITUDE": 51.2152607, "LONGITUDE": -0.7990944 }, "geometry": { "type": "Point", "coordinates": [ 483973.0, 146914.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216658, "UPRN": 100062353922, "X_COORDINATE": 483984.0, "Y_COORDINATE": 146934.0, "LATITUDE": 51.2154389, "LONGITUDE": -0.7989323 }, "geometry": { "type": "Point", "coordinates": [ 483984.0, 146934.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268168, "UPRN": 10091109489, "X_COORDINATE": 483988.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2151956, "LONGITUDE": -0.7988813 }, "geometry": { "type": "Point", "coordinates": [ 483988.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268173, "UPRN": 10091109494, "X_COORDINATE": 483998.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2151941, "LONGITUDE": -0.7987382 }, "geometry": { "type": "Point", "coordinates": [ 483998.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216660, "UPRN": 100062353924, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.215194, "LONGITUDE": -0.7987239 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268170, "UPRN": 10091109491, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146906.0, "LATITUDE": 51.2151848, "LONGITUDE": -0.7987098 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146906.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267616, "UPRN": 10091108937, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146909.0, "LATITUDE": 51.2152118, "LONGITUDE": -0.7987091 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146909.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445241, "UPRN": 10013891521, "X_COORDINATE": 484001.0, "Y_COORDINATE": 146923.0, "LATITUDE": 51.2153375, "LONGITUDE": -0.7986915 }, "geometry": { "type": "Point", "coordinates": [ 484001.0, 146923.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217141, "UPRN": 100062354636, "X_COORDINATE": 484002.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152385, "LONGITUDE": -0.7986798 }, "geometry": { "type": "Point", "coordinates": [ 484002.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268176, "UPRN": 10091109497, "X_COORDINATE": 484003.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152293, "LONGITUDE": -0.7986657 }, "geometry": { "type": "Point", "coordinates": [ 484003.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268172, "UPRN": 10091109493, "X_COORDINATE": 484003.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152653, "LONGITUDE": -0.7986647 }, "geometry": { "type": "Point", "coordinates": [ 484003.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268174, "UPRN": 10091109495, "X_COORDINATE": 484003.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152653, "LONGITUDE": -0.7986647 }, "geometry": { "type": "Point", "coordinates": [ 484003.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445242, "UPRN": 10013891522, "X_COORDINATE": 484006.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153727, "LONGITUDE": -0.798619 }, "geometry": { "type": "Point", "coordinates": [ 484006.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268171, "UPRN": 10091109492, "X_COORDINATE": 484008.0, "Y_COORDINATE": 146910.0, "LATITUDE": 51.2152196, "LONGITUDE": -0.7985943 }, "geometry": { "type": "Point", "coordinates": [ 484008.0, 146910.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268175, "UPRN": 10091109496, "X_COORDINATE": 484008.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152286, "LONGITUDE": -0.7985941 }, "geometry": { "type": "Point", "coordinates": [ 484008.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216909, "UPRN": 100062354287, "X_COORDINATE": 484008.0, "Y_COORDINATE": 146914.0, "LATITUDE": 51.2152556, "LONGITUDE": -0.7985934 }, "geometry": { "type": "Point", "coordinates": [ 484008.0, 146914.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367161, "UPRN": 100062609334, "X_COORDINATE": 483934.0, "Y_COORDINATE": 146937.0, "LATITUDE": 51.2154732, "LONGITUDE": -0.7996473 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 146937.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367164, "UPRN": 100062609339, "X_COORDINATE": 483979.0, "Y_COORDINATE": 146941.0, "LATITUDE": 51.2155026, "LONGITUDE": -0.7990022 }, "geometry": { "type": "Point", "coordinates": [ 483979.0, 146941.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367165, "UPRN": 100062609343, "X_COORDINATE": 483982.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2153133, "LONGITUDE": -0.7989642 }, "geometry": { "type": "Point", "coordinates": [ 483982.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367166, "UPRN": 100062609345, "X_COORDINATE": 483985.0, "Y_COORDINATE": 146914.0, "LATITUDE": 51.2152589, "LONGITUDE": -0.7989226 }, "geometry": { "type": "Point", "coordinates": [ 483985.0, 146914.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367257, "UPRN": 100062609584, "X_COORDINATE": 483999.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.215194, "LONGITUDE": -0.7987239 }, "geometry": { "type": "Point", "coordinates": [ 483999.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910299, "UPRN": 10094578715, "X_COORDINATE": 484300.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2151946, "LONGITUDE": -0.7944142 }, "geometry": { "type": "Point", "coordinates": [ 484300.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910309, "UPRN": 10094578725, "X_COORDINATE": 484300.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2151946, "LONGITUDE": -0.7944142 }, "geometry": { "type": "Point", "coordinates": [ 484300.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910320, "UPRN": 10094578736, "X_COORDINATE": 484300.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2151946, "LONGITUDE": -0.7944142 }, "geometry": { "type": "Point", "coordinates": [ 484300.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910321, "UPRN": 10094578737, "X_COORDINATE": 484302.0, "Y_COORDINATE": 146914.0, "LATITUDE": 51.2152123, "LONGITUDE": -0.7943851 }, "geometry": { "type": "Point", "coordinates": [ 484302.0, 146914.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910290, "UPRN": 10094578706, "X_COORDINATE": 484307.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152385, "LONGITUDE": -0.7943128 }, "geometry": { "type": "Point", "coordinates": [ 484307.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910301, "UPRN": 10094578717, "X_COORDINATE": 484307.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152385, "LONGITUDE": -0.7943128 }, "geometry": { "type": "Point", "coordinates": [ 484307.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910311, "UPRN": 10094578727, "X_COORDINATE": 484307.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152385, "LONGITUDE": -0.7943128 }, "geometry": { "type": "Point", "coordinates": [ 484307.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910289, "UPRN": 10094578705, "X_COORDINATE": 484296.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2152671, "LONGITUDE": -0.7944695 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910300, "UPRN": 10094578716, "X_COORDINATE": 484296.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2152671, "LONGITUDE": -0.7944695 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910310, "UPRN": 10094578726, "X_COORDINATE": 484296.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2152671, "LONGITUDE": -0.7944695 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910237, "UPRN": 10094578653, "X_COORDINATE": 484289.0, "Y_COORDINATE": 146928.0, "LATITUDE": 51.2153401, "LONGITUDE": -0.7945679 }, "geometry": { "type": "Point", "coordinates": [ 484289.0, 146928.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910244, "UPRN": 10094578660, "X_COORDINATE": 484289.0, "Y_COORDINATE": 146928.0, "LATITUDE": 51.2153401, "LONGITUDE": -0.7945679 }, "geometry": { "type": "Point", "coordinates": [ 484289.0, 146928.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910236, "UPRN": 10094578652, "X_COORDINATE": 484293.0, "Y_COORDINATE": 146932.0, "LATITUDE": 51.2153754, "LONGITUDE": -0.7945097 }, "geometry": { "type": "Point", "coordinates": [ 484293.0, 146932.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910243, "UPRN": 10094578659, "X_COORDINATE": 484293.0, "Y_COORDINATE": 146932.0, "LATITUDE": 51.2153754, "LONGITUDE": -0.7945097 }, "geometry": { "type": "Point", "coordinates": [ 484293.0, 146932.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910249, "UPRN": 10094578665, "X_COORDINATE": 484287.0, "Y_COORDINATE": 146933.0, "LATITUDE": 51.2153853, "LONGITUDE": -0.7945953 }, "geometry": { "type": "Point", "coordinates": [ 484287.0, 146933.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910238, "UPRN": 10094578654, "X_COORDINATE": 484283.0, "Y_COORDINATE": 146934.0, "LATITUDE": 51.2153949, "LONGITUDE": -0.7946523 }, "geometry": { "type": "Point", "coordinates": [ 484283.0, 146934.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910245, "UPRN": 10094578661, "X_COORDINATE": 484283.0, "Y_COORDINATE": 146934.0, "LATITUDE": 51.2153949, "LONGITUDE": -0.7946523 }, "geometry": { "type": "Point", "coordinates": [ 484283.0, 146934.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910239, "UPRN": 10094578655, "X_COORDINATE": 484287.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2154302, "LONGITUDE": -0.7945941 }, "geometry": { "type": "Point", "coordinates": [ 484287.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910246, "UPRN": 10094578662, "X_COORDINATE": 484287.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2154302, "LONGITUDE": -0.7945941 }, "geometry": { "type": "Point", "coordinates": [ 484287.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910233, "UPRN": 10094578649, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146941.0, "LATITUDE": 51.2154549, "LONGITUDE": -0.7943644 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146941.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910235, "UPRN": 10094578651, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146941.0, "LATITUDE": 51.2154549, "LONGITUDE": -0.7943644 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146941.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910242, "UPRN": 10094578658, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146941.0, "LATITUDE": 51.2154549, "LONGITUDE": -0.7943644 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146941.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910240, "UPRN": 10094578656, "X_COORDINATE": 484293.0, "Y_COORDINATE": 146943.0, "LATITUDE": 51.2154743, "LONGITUDE": -0.7945071 }, "geometry": { "type": "Point", "coordinates": [ 484293.0, 146943.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910247, "UPRN": 10094578663, "X_COORDINATE": 484293.0, "Y_COORDINATE": 146943.0, "LATITUDE": 51.2154743, "LONGITUDE": -0.7945071 }, "geometry": { "type": "Point", "coordinates": [ 484293.0, 146943.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910248, "UPRN": 10094578664, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146943.0, "LATITUDE": 51.2154728, "LONGITUDE": -0.7943639 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146943.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910241, "UPRN": 10094578657, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146948.0, "LATITUDE": 51.2155178, "LONGITUDE": -0.7943628 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146948.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910234, "UPRN": 10094578650, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146948.0, "LATITUDE": 51.2155178, "LONGITUDE": -0.7943628 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146948.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910232, "UPRN": 10094578648, "X_COORDINATE": 484303.0, "Y_COORDINATE": 146948.0, "LATITUDE": 51.2155178, "LONGITUDE": -0.7943628 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 146948.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910485, "UPRN": 10094578901, "X_COORDINATE": 484289.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.21543, "LONGITUDE": -0.7945655 }, "geometry": { "type": "Point", "coordinates": [ 484289.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910258, "UPRN": 10094578674, "X_COORDINATE": 484342.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153232, "LONGITUDE": -0.7938094 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910271, "UPRN": 10094578687, "X_COORDINATE": 484342.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153232, "LONGITUDE": -0.7938094 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910284, "UPRN": 10094578700, "X_COORDINATE": 484342.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153232, "LONGITUDE": -0.7938094 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910257, "UPRN": 10094578673, "X_COORDINATE": 484349.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2153402, "LONGITUDE": -0.7937088 }, "geometry": { "type": "Point", "coordinates": [ 484349.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910270, "UPRN": 10094578686, "X_COORDINATE": 484349.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2153402, "LONGITUDE": -0.7937088 }, "geometry": { "type": "Point", "coordinates": [ 484349.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910283, "UPRN": 10094578699, "X_COORDINATE": 484349.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2153402, "LONGITUDE": -0.7937088 }, "geometry": { "type": "Point", "coordinates": [ 484349.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910256, "UPRN": 10094578672, "X_COORDINATE": 484347.0, "Y_COORDINATE": 146936.0, "LATITUDE": 51.2154034, "LONGITUDE": -0.7937358 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 146936.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910269, "UPRN": 10094578685, "X_COORDINATE": 484347.0, "Y_COORDINATE": 146936.0, "LATITUDE": 51.2154034, "LONGITUDE": -0.7937358 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 146936.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910282, "UPRN": 10094578698, "X_COORDINATE": 484347.0, "Y_COORDINATE": 146936.0, "LATITUDE": 51.2154034, "LONGITUDE": -0.7937358 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 146936.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910259, "UPRN": 10094578675, "X_COORDINATE": 484333.0, "Y_COORDINATE": 146939.0, "LATITUDE": 51.2154325, "LONGITUDE": -0.7939355 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 146939.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910272, "UPRN": 10094578688, "X_COORDINATE": 484333.0, "Y_COORDINATE": 146939.0, "LATITUDE": 51.2154325, "LONGITUDE": -0.7939355 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 146939.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910285, "UPRN": 10094578701, "X_COORDINATE": 484333.0, "Y_COORDINATE": 146939.0, "LATITUDE": 51.2154325, "LONGITUDE": -0.7939355 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 146939.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910255, "UPRN": 10094578671, "X_COORDINATE": 484342.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154401, "LONGITUDE": -0.7938064 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910268, "UPRN": 10094578684, "X_COORDINATE": 484342.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154401, "LONGITUDE": -0.7938064 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910281, "UPRN": 10094578697, "X_COORDINATE": 484342.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154401, "LONGITUDE": -0.7938064 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910254, "UPRN": 10094578670, "X_COORDINATE": 484339.0, "Y_COORDINATE": 146945.0, "LATITUDE": 51.2154855, "LONGITUDE": -0.7938482 }, "geometry": { "type": "Point", "coordinates": [ 484339.0, 146945.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910267, "UPRN": 10094578683, "X_COORDINATE": 484339.0, "Y_COORDINATE": 146945.0, "LATITUDE": 51.2154855, "LONGITUDE": -0.7938482 }, "geometry": { "type": "Point", "coordinates": [ 484339.0, 146945.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910280, "UPRN": 10094578696, "X_COORDINATE": 484339.0, "Y_COORDINATE": 146945.0, "LATITUDE": 51.2154855, "LONGITUDE": -0.7938482 }, "geometry": { "type": "Point", "coordinates": [ 484339.0, 146945.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266889, "UPRN": 10091108204, "X_COORDINATE": 484108.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2154566, "LONGITUDE": -0.7971564 }, "geometry": { "type": "Point", "coordinates": [ 484108.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445953, "UPRN": 10013892251, "X_COORDINATE": 484146.0, "Y_COORDINATE": 146941.0, "LATITUDE": 51.215478, "LONGITUDE": -0.7966117 }, "geometry": { "type": "Point", "coordinates": [ 484146.0, 146941.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910224, "UPRN": 10094578640, "X_COORDINATE": 484179.0, "Y_COORDINATE": 146945.0, "LATITUDE": 51.2155091, "LONGITUDE": -0.7961384 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 146945.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910216, "UPRN": 10094578632, "X_COORDINATE": 484179.0, "Y_COORDINATE": 146945.0, "LATITUDE": 51.2155091, "LONGITUDE": -0.7961384 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 146945.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910231, "UPRN": 10094578647, "X_COORDINATE": 484167.0, "Y_COORDINATE": 146946.0, "LATITUDE": 51.2155199, "LONGITUDE": -0.79631 }, "geometry": { "type": "Point", "coordinates": [ 484167.0, 146946.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910223, "UPRN": 10094578639, "X_COORDINATE": 484167.0, "Y_COORDINATE": 146946.0, "LATITUDE": 51.2155199, "LONGITUDE": -0.79631 }, "geometry": { "type": "Point", "coordinates": [ 484167.0, 146946.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910462, "UPRN": 10094578878, "X_COORDINATE": 484180.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155269, "LONGITUDE": -0.7961237 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445366, "UPRN": 10013891655, "X_COORDINATE": 484137.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155333, "LONGITUDE": -0.7967392 }, "geometry": { "type": "Point", "coordinates": [ 484137.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910230, "UPRN": 10094578646, "X_COORDINATE": 484171.0, "Y_COORDINATE": 146949.0, "LATITUDE": 51.2155462, "LONGITUDE": -0.796252 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 146949.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910222, "UPRN": 10094578638, "X_COORDINATE": 484171.0, "Y_COORDINATE": 146949.0, "LATITUDE": 51.2155462, "LONGITUDE": -0.796252 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 146949.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910225, "UPRN": 10094578641, "X_COORDINATE": 484186.0, "Y_COORDINATE": 146950.0, "LATITUDE": 51.215553, "LONGITUDE": -0.7960371 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 146950.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910217, "UPRN": 10094578633, "X_COORDINATE": 484186.0, "Y_COORDINATE": 146950.0, "LATITUDE": 51.215553, "LONGITUDE": -0.7960371 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 146950.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445365, "UPRN": 10013891654, "X_COORDINATE": 484134.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.2155697, "LONGITUDE": -0.7967812 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910221, "UPRN": 10094578637, "X_COORDINATE": 484176.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155815, "LONGITUDE": -0.7961795 }, "geometry": { "type": "Point", "coordinates": [ 484176.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910229, "UPRN": 10094578645, "X_COORDINATE": 484176.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155815, "LONGITUDE": -0.7961795 }, "geometry": { "type": "Point", "coordinates": [ 484176.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270254, "UPRN": 10091111591, "X_COORDINATE": 484183.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2155894, "LONGITUDE": -0.7960791 }, "geometry": { "type": "Point", "coordinates": [ 484183.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446739, "UPRN": 10013893075, "X_COORDINATE": 484131.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2156061, "LONGITUDE": -0.7968232 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910463, "UPRN": 10094578879, "X_COORDINATE": 484179.0, "Y_COORDINATE": 146956.0, "LATITUDE": 51.215608, "LONGITUDE": -0.7961359 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 146956.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910228, "UPRN": 10094578644, "X_COORDINATE": 484181.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2156167, "LONGITUDE": -0.796107 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910220, "UPRN": 10094578636, "X_COORDINATE": 484181.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2156167, "LONGITUDE": -0.796107 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446180, "UPRN": 10013892485, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146958.0, "LATITUDE": 51.2156363, "LONGITUDE": -0.7971374 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146958.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445364, "UPRN": 10013891653, "X_COORDINATE": 484128.0, "Y_COORDINATE": 146959.0, "LATITUDE": 51.2156425, "LONGITUDE": -0.7968652 }, "geometry": { "type": "Point", "coordinates": [ 484128.0, 146959.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910227, "UPRN": 10094578643, "X_COORDINATE": 484189.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156784, "LONGITUDE": -0.7959908 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910219, "UPRN": 10094578635, "X_COORDINATE": 484189.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156784, "LONGITUDE": -0.7959908 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445363, "UPRN": 10013891652, "X_COORDINATE": 484123.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156882, "LONGITUDE": -0.7969356 }, "geometry": { "type": "Point", "coordinates": [ 484123.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216883, "UPRN": 100062354231, "X_COORDINATE": 484104.0, "Y_COORDINATE": 146942.0, "LATITUDE": 51.2154932, "LONGITUDE": -0.7972127 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 146942.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217005, "UPRN": 100062354438, "X_COORDINATE": 484113.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156716, "LONGITUDE": -0.7970792 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217039, "UPRN": 100062354490, "X_COORDINATE": 484107.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154747, "LONGITUDE": -0.7971702 }, "geometry": { "type": "Point", "coordinates": [ 484107.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217040, "UPRN": 100062354491, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2154565, "LONGITUDE": -0.7971421 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399512, "UPRN": 100062699288, "X_COORDINATE": 484123.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156882, "LONGITUDE": -0.7969356 }, "geometry": { "type": "Point", "coordinates": [ 484123.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910385, "UPRN": 10094578801, "X_COORDINATE": 484258.0, "Y_COORDINATE": 146968.0, "LATITUDE": 51.2157042, "LONGITUDE": -0.7950022 }, "geometry": { "type": "Point", "coordinates": [ 484258.0, 146968.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910393, "UPRN": 10094578809, "X_COORDINATE": 484261.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156678, "LONGITUDE": -0.7949602 }, "geometry": { "type": "Point", "coordinates": [ 484261.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910384, "UPRN": 10094578800, "X_COORDINATE": 484261.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156678, "LONGITUDE": -0.7949602 }, "geometry": { "type": "Point", "coordinates": [ 484261.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910383, "UPRN": 10094578799, "X_COORDINATE": 484266.0, "Y_COORDINATE": 146959.0, "LATITUDE": 51.2156221, "LONGITUDE": -0.7948898 }, "geometry": { "type": "Point", "coordinates": [ 484266.0, 146959.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910392, "UPRN": 10094578808, "X_COORDINATE": 484267.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.215604, "LONGITUDE": -0.794876 }, "geometry": { "type": "Point", "coordinates": [ 484267.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910382, "UPRN": 10094578798, "X_COORDINATE": 484270.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2155766, "LONGITUDE": -0.7948337 }, "geometry": { "type": "Point", "coordinates": [ 484270.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910381, "UPRN": 10094578797, "X_COORDINATE": 484272.71, "Y_COORDINATE": 146952.15, "LATITUDE": 51.2155596, "LONGITUDE": -0.7947954 }, "geometry": { "type": "Point", "coordinates": [ 484272.710000000020955, 146952.15 ] } }, -{ "type": "Feature", "properties": { "FID": 21910391, "UPRN": 10094578807, "X_COORDINATE": 484275.0, "Y_COORDINATE": 146949.0, "LATITUDE": 51.2155309, "LONGITUDE": -0.7947633 }, "geometry": { "type": "Point", "coordinates": [ 484275.0, 146949.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910380, "UPRN": 10094578796, "X_COORDINATE": 484275.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2161782, "LONGITUDE": -0.7947465 }, "geometry": { "type": "Point", "coordinates": [ 484275.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910376, "UPRN": 10094578792, "X_COORDINATE": 484275.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2161782, "LONGITUDE": -0.7947465 }, "geometry": { "type": "Point", "coordinates": [ 484275.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910372, "UPRN": 10094578788, "X_COORDINATE": 484275.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2161782, "LONGITUDE": -0.7947465 }, "geometry": { "type": "Point", "coordinates": [ 484275.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910368, "UPRN": 10094578784, "X_COORDINATE": 484275.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2161782, "LONGITUDE": -0.7947465 }, "geometry": { "type": "Point", "coordinates": [ 484275.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910379, "UPRN": 10094578795, "X_COORDINATE": 484284.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161679, "LONGITUDE": -0.7946179 }, "geometry": { "type": "Point", "coordinates": [ 484284.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910375, "UPRN": 10094578791, "X_COORDINATE": 484284.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161679, "LONGITUDE": -0.7946179 }, "geometry": { "type": "Point", "coordinates": [ 484284.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910371, "UPRN": 10094578787, "X_COORDINATE": 484284.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161679, "LONGITUDE": -0.7946179 }, "geometry": { "type": "Point", "coordinates": [ 484284.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910367, "UPRN": 10094578783, "X_COORDINATE": 484284.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161679, "LONGITUDE": -0.7946179 }, "geometry": { "type": "Point", "coordinates": [ 484284.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910378, "UPRN": 10094578794, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2160853, "LONGITUDE": -0.7944625 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910374, "UPRN": 10094578790, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2160853, "LONGITUDE": -0.7944625 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910370, "UPRN": 10094578786, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2160853, "LONGITUDE": -0.7944625 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910366, "UPRN": 10094578782, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2160853, "LONGITUDE": -0.7944625 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910377, "UPRN": 10094578793, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160308, "LONGITUDE": -0.7944067 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910373, "UPRN": 10094578789, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160308, "LONGITUDE": -0.7944067 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910369, "UPRN": 10094578785, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160308, "LONGITUDE": -0.7944067 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910365, "UPRN": 10094578781, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160308, "LONGITUDE": -0.7944067 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910483, "UPRN": 10094578899, "X_COORDINATE": 484258.0, "Y_COORDINATE": 146971.0, "LATITUDE": 51.2157312, "LONGITUDE": -0.7950015 }, "geometry": { "type": "Point", "coordinates": [ 484258.0, 146971.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910484, "UPRN": 10094578900, "X_COORDINATE": 484268.0, "Y_COORDINATE": 146963.0, "LATITUDE": 51.2156578, "LONGITUDE": -0.7948603 }, "geometry": { "type": "Point", "coordinates": [ 484268.0, 146963.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910486, "UPRN": 10094578902, "X_COORDINATE": 484274.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.215585, "LONGITUDE": -0.7947762 }, "geometry": { "type": "Point", "coordinates": [ 484274.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910489, "UPRN": 10094578905, "X_COORDINATE": 484270.0, "Y_COORDINATE": 146945.92, "LATITUDE": 51.215504, "LONGITUDE": -0.7948356 }, "geometry": { "type": "Point", "coordinates": [ 484270.0, 146945.920000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 21910814, "UPRN": 10094579237, "X_COORDINATE": 484295.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2162831, "LONGITUDE": -0.7944573 }, "geometry": { "type": "Point", "coordinates": [ 484295.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910260, "UPRN": 10094578676, "X_COORDINATE": 484326.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155054, "LONGITUDE": -0.7940338 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910273, "UPRN": 10094578689, "X_COORDINATE": 484326.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155054, "LONGITUDE": -0.7940338 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910286, "UPRN": 10094578702, "X_COORDINATE": 484326.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155054, "LONGITUDE": -0.7940338 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910253, "UPRN": 10094578669, "X_COORDINATE": 484335.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.21554, "LONGITUDE": -0.793904 }, "geometry": { "type": "Point", "coordinates": [ 484335.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910266, "UPRN": 10094578682, "X_COORDINATE": 484335.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.21554, "LONGITUDE": -0.793904 }, "geometry": { "type": "Point", "coordinates": [ 484335.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910279, "UPRN": 10094578695, "X_COORDINATE": 484335.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.21554, "LONGITUDE": -0.793904 }, "geometry": { "type": "Point", "coordinates": [ 484335.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910261, "UPRN": 10094578677, "X_COORDINATE": 484320.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155782, "LONGITUDE": -0.7941178 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910252, "UPRN": 10094578668, "X_COORDINATE": 484331.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155766, "LONGITUDE": -0.7939603 }, "geometry": { "type": "Point", "coordinates": [ 484331.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910265, "UPRN": 10094578681, "X_COORDINATE": 484331.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155766, "LONGITUDE": -0.7939603 }, "geometry": { "type": "Point", "coordinates": [ 484331.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910274, "UPRN": 10094578690, "X_COORDINATE": 484320.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155782, "LONGITUDE": -0.7941178 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910278, "UPRN": 10094578694, "X_COORDINATE": 484331.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155766, "LONGITUDE": -0.7939603 }, "geometry": { "type": "Point", "coordinates": [ 484331.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910287, "UPRN": 10094578703, "X_COORDINATE": 484320.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155782, "LONGITUDE": -0.7941178 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910262, "UPRN": 10094578678, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146956.0, "LATITUDE": 51.2155885, "LONGITUDE": -0.7942464 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146956.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910275, "UPRN": 10094578691, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146956.0, "LATITUDE": 51.2155885, "LONGITUDE": -0.7942464 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146956.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910288, "UPRN": 10094578704, "X_COORDINATE": 484311.0, "Y_COORDINATE": 146956.0, "LATITUDE": 51.2155885, "LONGITUDE": -0.7942464 }, "geometry": { "type": "Point", "coordinates": [ 484311.0, 146956.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910251, "UPRN": 10094578667, "X_COORDINATE": 484327.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156221, "LONGITUDE": -0.7940164 }, "geometry": { "type": "Point", "coordinates": [ 484327.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910264, "UPRN": 10094578680, "X_COORDINATE": 484327.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156221, "LONGITUDE": -0.7940164 }, "geometry": { "type": "Point", "coordinates": [ 484327.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910277, "UPRN": 10094578693, "X_COORDINATE": 484327.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156221, "LONGITUDE": -0.7940164 }, "geometry": { "type": "Point", "coordinates": [ 484327.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910250, "UPRN": 10094578666, "X_COORDINATE": 484320.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.2156771, "LONGITUDE": -0.7941152 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910263, "UPRN": 10094578679, "X_COORDINATE": 484320.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.2156771, "LONGITUDE": -0.7941152 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910276, "UPRN": 10094578692, "X_COORDINATE": 484320.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.2156771, "LONGITUDE": -0.7941152 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910815, "UPRN": 10094579238, "X_COORDINATE": 484318.0, "Y_COORDINATE": 146968.0, "LATITUDE": 51.2156954, "LONGITUDE": -0.7941434 }, "geometry": { "type": "Point", "coordinates": [ 484318.0, 146968.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447206, "UPRN": 10013893547, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155644, "LONGITUDE": -0.7997738 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447205, "UPRN": 10013893546, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155644, "LONGITUDE": -0.7997738 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449542, "UPRN": 10013895915, "X_COORDINATE": 483871.0, "Y_COORDINATE": 146951.0, "LATITUDE": 51.2156083, "LONGITUDE": -0.8005458 }, "geometry": { "type": "Point", "coordinates": [ 483871.0, 146951.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721941, "UPRN": 100061600750, "X_COORDINATE": 483902.0, "Y_COORDINATE": 146961.0, "LATITUDE": 51.2156937, "LONGITUDE": -0.8000997 }, "geometry": { "type": "Point", "coordinates": [ 483902.0, 146961.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721943, "UPRN": 100061600752, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158814, "LONGITUDE": -0.7999946 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721942, "UPRN": 100061600751, "X_COORDINATE": 483909.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158814, "LONGITUDE": -0.7999946 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721944, "UPRN": 100061600753, "X_COORDINATE": 483908.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.2159175, "LONGITUDE": -0.800008 }, "geometry": { "type": "Point", "coordinates": [ 483908.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447937, "UPRN": 10013894294, "X_COORDINATE": 483946.0, "Y_COORDINATE": 146988.0, "LATITUDE": 51.2159299, "LONGITUDE": -0.7994636 }, "geometry": { "type": "Point", "coordinates": [ 483946.0, 146988.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721945, "UPRN": 100061600754, "X_COORDINATE": 483908.0, "Y_COORDINATE": 146991.0, "LATITUDE": 51.2159625, "LONGITUDE": -0.8000068 }, "geometry": { "type": "Point", "coordinates": [ 483908.0, 146991.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721946, "UPRN": 100061600755, "X_COORDINATE": 483907.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2160076, "LONGITUDE": -0.80002 }, "geometry": { "type": "Point", "coordinates": [ 483907.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721947, "UPRN": 100061600756, "X_COORDINATE": 483904.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.216044, "LONGITUDE": -0.800062 }, "geometry": { "type": "Point", "coordinates": [ 483904.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270016, "UPRN": 10091111351, "X_COORDINATE": 483910.0, "Y_COORDINATE": 147001.0, "LATITUDE": 51.2160521, "LONGITUDE": -0.7999759 }, "geometry": { "type": "Point", "coordinates": [ 483910.0, 147001.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721948, "UPRN": 100061600757, "X_COORDINATE": 483899.0, "Y_COORDINATE": 147006.0, "LATITUDE": 51.2160987, "LONGITUDE": -0.8001322 }, "geometry": { "type": "Point", "coordinates": [ 483899.0, 147006.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721949, "UPRN": 100061600758, "X_COORDINATE": 483896.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2161261, "LONGITUDE": -0.8001744 }, "geometry": { "type": "Point", "coordinates": [ 483896.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721950, "UPRN": 100061600759, "X_COORDINATE": 483893.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161895, "LONGITUDE": -0.8002157 }, "geometry": { "type": "Point", "coordinates": [ 483893.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721981, "UPRN": 100061600790, "X_COORDINATE": 483935.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161293, "LONGITUDE": -0.7996159 }, "geometry": { "type": "Point", "coordinates": [ 483935.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721982, "UPRN": 100061600791, "X_COORDINATE": 483938.0, "Y_COORDINATE": 147002.0, "LATITUDE": 51.216057, "LONGITUDE": -0.7995748 }, "geometry": { "type": "Point", "coordinates": [ 483938.0, 147002.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721983, "UPRN": 100061600792, "X_COORDINATE": 483940.0, "Y_COORDINATE": 146999.0, "LATITUDE": 51.2160297, "LONGITUDE": -0.7995469 }, "geometry": { "type": "Point", "coordinates": [ 483940.0, 146999.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721984, "UPRN": 100061600793, "X_COORDINATE": 483946.0, "Y_COORDINATE": 146988.0, "LATITUDE": 51.2159299, "LONGITUDE": -0.7994636 }, "geometry": { "type": "Point", "coordinates": [ 483946.0, 146988.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725872, "UPRN": 100061605063, "X_COORDINATE": 483889.0, "Y_COORDINATE": 146976.0, "LATITUDE": 51.2158304, "LONGITUDE": -0.8002823 }, "geometry": { "type": "Point", "coordinates": [ 483889.0, 146976.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725874, "UPRN": 100061605065, "X_COORDINATE": 483886.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2158129, "LONGITUDE": -0.8003257 }, "geometry": { "type": "Point", "coordinates": [ 483886.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725876, "UPRN": 100061605067, "X_COORDINATE": 483882.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.2157955, "LONGITUDE": -0.8003834 }, "geometry": { "type": "Point", "coordinates": [ 483882.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725879, "UPRN": 100061605070, "X_COORDINATE": 483878.0, "Y_COORDINATE": 146970.0, "LATITUDE": 51.2157781, "LONGITUDE": -0.8004412 }, "geometry": { "type": "Point", "coordinates": [ 483878.0, 146970.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725881, "UPRN": 100061605072, "X_COORDINATE": 483876.0, "Y_COORDINATE": 146968.0, "LATITUDE": 51.2157604, "LONGITUDE": -0.8004703 }, "geometry": { "type": "Point", "coordinates": [ 483876.0, 146968.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725883, "UPRN": 100061605074, "X_COORDINATE": 483872.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.215743, "LONGITUDE": -0.800528 }, "geometry": { "type": "Point", "coordinates": [ 483872.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725885, "UPRN": 100061605076, "X_COORDINATE": 483868.0, "Y_COORDINATE": 146966.0, "LATITUDE": 51.2157436, "LONGITUDE": -0.8005852 }, "geometry": { "type": "Point", "coordinates": [ 483868.0, 146966.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216633, "UPRN": 100062353877, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146947.0, "LATITUDE": 51.2155644, "LONGITUDE": -0.7997738 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146947.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216647, "UPRN": 100062353898, "X_COORDINATE": 483872.15, "Y_COORDINATE": 147004.11, "LATITUDE": 51.2160856, "LONGITUDE": -0.8005169 }, "geometry": { "type": "Point", "coordinates": [ 483872.150000000023283, 147004.10999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 32216694, "UPRN": 100062353968, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146994.0, "LATITUDE": 51.2159842, "LONGITUDE": -0.7994908 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146994.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216939, "UPRN": 100062354335, "X_COORDINATE": 483866.0, "Y_COORDINATE": 146976.0, "LATITUDE": 51.2158338, "LONGITUDE": -0.8006115 }, "geometry": { "type": "Point", "coordinates": [ 483866.0, 146976.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216940, "UPRN": 100062354336, "X_COORDINATE": 483880.0, "Y_COORDINATE": 146983.0, "LATITUDE": 51.2158947, "LONGITUDE": -0.8004095 }, "geometry": { "type": "Point", "coordinates": [ 483880.0, 146983.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216943, "UPRN": 100062354339, "X_COORDINATE": 483866.0, "Y_COORDINATE": 147002.0, "LATITUDE": 51.2160676, "LONGITUDE": -0.8006055 }, "geometry": { "type": "Point", "coordinates": [ 483866.0, 147002.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367162, "UPRN": 100062609335, "X_COORDINATE": 483900.0, "Y_COORDINATE": 146981.0, "LATITUDE": 51.2158738, "LONGITUDE": -0.8001237 }, "geometry": { "type": "Point", "coordinates": [ 483900.0, 146981.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367163, "UPRN": 100062609336, "X_COORDINATE": 483901.0, "Y_COORDINATE": 147003.0, "LATITUDE": 51.2160714, "LONGITUDE": -0.8001042 }, "geometry": { "type": "Point", "coordinates": [ 483901.0, 147003.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399755, "UPRN": 100062699712, "X_COORDINATE": 483866.0, "Y_COORDINATE": 146976.0, "LATITUDE": 51.2158338, "LONGITUDE": -0.8006115 }, "geometry": { "type": "Point", "coordinates": [ 483866.0, 146976.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910218, "UPRN": 10094578634, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155971, "LONGITUDE": -0.79595 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910226, "UPRN": 10094578642, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2155971, "LONGITUDE": -0.79595 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910327, "UPRN": 10094578743, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156753, "LONGITUDE": -0.7956902 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910340, "UPRN": 10094578756, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2156753, "LONGITUDE": -0.7956902 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910326, "UPRN": 10094578742, "X_COORDINATE": 484215.0, "Y_COORDINATE": 146969.0, "LATITUDE": 51.2157196, "LONGITUDE": -0.7956175 }, "geometry": { "type": "Point", "coordinates": [ 484215.0, 146969.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910339, "UPRN": 10094578755, "X_COORDINATE": 484215.0, "Y_COORDINATE": 146969.0, "LATITUDE": 51.2157196, "LONGITUDE": -0.7956175 }, "geometry": { "type": "Point", "coordinates": [ 484215.0, 146969.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910341, "UPRN": 10094578757, "X_COORDINATE": 484202.0, "Y_COORDINATE": 146971.0, "LATITUDE": 51.2157395, "LONGITUDE": -0.7958031 }, "geometry": { "type": "Point", "coordinates": [ 484202.0, 146971.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910328, "UPRN": 10094578744, "X_COORDINATE": 484202.0, "Y_COORDINATE": 146971.0, "LATITUDE": 51.2157395, "LONGITUDE": -0.7958031 }, "geometry": { "type": "Point", "coordinates": [ 484202.0, 146971.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910325, "UPRN": 10094578741, "X_COORDINATE": 484220.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.2157458, "LONGITUDE": -0.7955452 }, "geometry": { "type": "Point", "coordinates": [ 484220.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910338, "UPRN": 10094578754, "X_COORDINATE": 484220.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.2157458, "LONGITUDE": -0.7955452 }, "geometry": { "type": "Point", "coordinates": [ 484220.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910324, "UPRN": 10094578740, "X_COORDINATE": 484226.0, "Y_COORDINATE": 146978.0, "LATITUDE": 51.2157988, "LONGITUDE": -0.7954579 }, "geometry": { "type": "Point", "coordinates": [ 484226.0, 146978.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910337, "UPRN": 10094578753, "X_COORDINATE": 484226.0, "Y_COORDINATE": 146978.0, "LATITUDE": 51.2157988, "LONGITUDE": -0.7954579 }, "geometry": { "type": "Point", "coordinates": [ 484226.0, 146978.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910342, "UPRN": 10094578758, "X_COORDINATE": 484196.0, "Y_COORDINATE": 146979.0, "LATITUDE": 51.2158123, "LONGITUDE": -0.7958871 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 146979.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910329, "UPRN": 10094578745, "X_COORDINATE": 484196.0, "Y_COORDINATE": 146979.0, "LATITUDE": 51.2158123, "LONGITUDE": -0.7958871 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 146979.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910343, "UPRN": 10094578759, "X_COORDINATE": 484190.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158671, "LONGITUDE": -0.7959716 }, "geometry": { "type": "Point", "coordinates": [ 484190.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910323, "UPRN": 10094578739, "X_COORDINATE": 484222.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158624, "LONGITUDE": -0.7955135 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910330, "UPRN": 10094578746, "X_COORDINATE": 484190.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158671, "LONGITUDE": -0.7959716 }, "geometry": { "type": "Point", "coordinates": [ 484190.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910336, "UPRN": 10094578752, "X_COORDINATE": 484222.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158624, "LONGITUDE": -0.7955135 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910456, "UPRN": 10094578872, "X_COORDINATE": 484191.0, "Y_COORDINATE": 146956.0, "LATITUDE": 51.2156062, "LONGITUDE": -0.7959641 }, "geometry": { "type": "Point", "coordinates": [ 484191.0, 146956.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910464, "UPRN": 10094578880, "X_COORDINATE": 484180.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2157697, "LONGITUDE": -0.7961173 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910475, "UPRN": 10094578891, "X_COORDINATE": 484200.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158386, "LONGITUDE": -0.7958292 }, "geometry": { "type": "Point", "coordinates": [ 484200.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910476, "UPRN": 10094578892, "X_COORDINATE": 484207.0, "Y_COORDINATE": 146976.0, "LATITUDE": 51.2157837, "LONGITUDE": -0.7957304 }, "geometry": { "type": "Point", "coordinates": [ 484207.0, 146976.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910477, "UPRN": 10094578893, "X_COORDINATE": 484213.0, "Y_COORDINATE": 146969.0, "LATITUDE": 51.2157199, "LONGITUDE": -0.7956461 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 146969.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910479, "UPRN": 10094578895, "X_COORDINATE": 484223.25, "Y_COORDINATE": 146950.46, "LATITUDE": 51.2155517, "LONGITUDE": -0.7955038 }, "geometry": { "type": "Point", "coordinates": [ 484223.25, 146950.46 ] } }, -{ "type": "Feature", "properties": { "FID": 21910480, "UPRN": 10094578896, "X_COORDINATE": 484232.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2156092, "LONGITUDE": -0.795377 }, "geometry": { "type": "Point", "coordinates": [ 484232.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910487, "UPRN": 10094578903, "X_COORDINATE": 484222.0, "Y_COORDINATE": 146981.0, "LATITUDE": 51.2158264, "LONGITUDE": -0.7955145 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 146981.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910490, "UPRN": 10094578906, "X_COORDINATE": 484227.52, "Y_COORDINATE": 146951.92, "LATITUDE": 51.2155642, "LONGITUDE": -0.7954423 }, "geometry": { "type": "Point", "coordinates": [ 484227.520000000018626, 146951.920000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 21910816, "UPRN": 10094579239, "X_COORDINATE": 484206.2, "Y_COORDINATE": 146956.77, "LATITUDE": 51.2156109, "LONGITUDE": -0.7957463 }, "geometry": { "type": "Point", "coordinates": [ 484206.200000000011642, 146956.769999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 23117312, "UPRN": 10096745896, "X_COORDINATE": 484176.25, "Y_COORDINATE": 146979.1, "LATITUDE": 51.2158161, "LONGITUDE": -0.7961698 }, "geometry": { "type": "Point", "coordinates": [ 484176.25, 146979.1 ] } }, -{ "type": "Feature", "properties": { "FID": 23117314, "UPRN": 10096745898, "X_COORDINATE": 484178.48, "Y_COORDINATE": 146976.38, "LATITUDE": 51.2157913, "LONGITUDE": -0.7961385 }, "geometry": { "type": "Point", "coordinates": [ 484178.479999999981374, 146976.38 ] } }, -{ "type": "Feature", "properties": { "FID": 23117315, "UPRN": 10096745899, "X_COORDINATE": 484183.03, "Y_COORDINATE": 146971.18, "LATITUDE": 51.2157439, "LONGITUDE": -0.7960746 }, "geometry": { "type": "Point", "coordinates": [ 484183.03000000002794, 146971.18 ] } }, -{ "type": "Feature", "properties": { "FID": 15449078, "UPRN": 10013895449, "X_COORDINATE": 484083.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2156041, "LONGITUDE": -0.7975105 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450023, "UPRN": 10013896399, "X_COORDINATE": 484083.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2156041, "LONGITUDE": -0.7975105 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450141, "UPRN": 10013896517, "X_COORDINATE": 484083.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2156041, "LONGITUDE": -0.7975105 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266150, "UPRN": 10091107460, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156791, "LONGITUDE": -0.7978092 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447810, "UPRN": 10013894165, "X_COORDINATE": 484047.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2157083, "LONGITUDE": -0.7980232 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443615, "UPRN": 10013889668, "X_COORDINATE": 484047.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2157083, "LONGITUDE": -0.7980232 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443614, "UPRN": 10013889667, "X_COORDINATE": 484047.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2157083, "LONGITUDE": -0.7980232 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443612, "UPRN": 10013889665, "X_COORDINATE": 484047.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2157083, "LONGITUDE": -0.7980232 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443613, "UPRN": 10013889666, "X_COORDINATE": 484047.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2157083, "LONGITUDE": -0.7980232 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912112, "UPRN": 10094580587, "X_COORDINATE": 483999.14, "Y_COORDINATE": 146970.48, "LATITUDE": 51.2157646, "LONGITUDE": -0.798707 }, "geometry": { "type": "Point", "coordinates": [ 483999.14000000001397, 146970.480000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 21912111, "UPRN": 10094580586, "X_COORDINATE": 484000.9, "Y_COORDINATE": 146970.61, "LATITUDE": 51.2157655, "LONGITUDE": -0.7986818 }, "geometry": { "type": "Point", "coordinates": [ 484000.900000000023283, 146970.60999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 21912110, "UPRN": 10094580585, "X_COORDINATE": 483999.81, "Y_COORDINATE": 146971.97, "LATITUDE": 51.2157779, "LONGITUDE": -0.7986971 }, "geometry": { "type": "Point", "coordinates": [ 483999.81, 146971.97 ] } }, -{ "type": "Feature", "properties": { "FID": 20268977, "UPRN": 10091110301, "X_COORDINATE": 484013.0, "Y_COORDINATE": 146983.0, "LATITUDE": 51.2158751, "LONGITUDE": -0.7985057 }, "geometry": { "type": "Point", "coordinates": [ 484013.0, 146983.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266468, "UPRN": 10091107781, "X_COORDINATE": 484001.0, "Y_COORDINATE": 146989.0, "LATITUDE": 51.2159309, "LONGITUDE": -0.7986761 }, "geometry": { "type": "Point", "coordinates": [ 484001.0, 146989.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17497687, "UPRN": 10024877480, "X_COORDINATE": 484059.77, "Y_COORDINATE": 146996.31, "LATITUDE": 51.2159879, "LONGITUDE": -0.7978331 }, "geometry": { "type": "Point", "coordinates": [ 484059.770000000018626, 146996.31 ] } }, -{ "type": "Feature", "properties": { "FID": 15450043, "UPRN": 10013896419, "X_COORDINATE": 484041.0, "Y_COORDINATE": 147002.0, "LATITUDE": 51.2160418, "LONGITUDE": -0.7981005 }, "geometry": { "type": "Point", "coordinates": [ 484041.0, 147002.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447204, "UPRN": 10013893545, "X_COORDINATE": 484017.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160723, "LONGITUDE": -0.7984433 }, "geometry": { "type": "Point", "coordinates": [ 484017.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447203, "UPRN": 10013893544, "X_COORDINATE": 484017.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160723, "LONGITUDE": -0.7984433 }, "geometry": { "type": "Point", "coordinates": [ 484017.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447702, "UPRN": 10013894053, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2161074, "LONGITUDE": -0.7983565 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447701, "UPRN": 10013894052, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2161074, "LONGITUDE": -0.7983565 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450041, "UPRN": 10013896417, "X_COORDINATE": 484028.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161696, "LONGITUDE": -0.7982833 }, "geometry": { "type": "Point", "coordinates": [ 484028.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216612, "UPRN": 100062353849, "X_COORDINATE": 484065.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2156338, "LONGITUDE": -0.7977674 }, "geometry": { "type": "Point", "coordinates": [ 484065.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216661, "UPRN": 100062353925, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146944.0, "LATITUDE": 51.2155187, "LONGITUDE": -0.7979423 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146944.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216916, "UPRN": 100062354298, "X_COORDINATE": 484053.0, "Y_COORDINATE": 146944.0, "LATITUDE": 51.2155187, "LONGITUDE": -0.7979423 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 146944.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217143, "UPRN": 100062354641, "X_COORDINATE": 484059.0, "Y_COORDINATE": 146948.0, "LATITUDE": 51.2155537, "LONGITUDE": -0.7978554 }, "geometry": { "type": "Point", "coordinates": [ 484059.0, 146948.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367155, "UPRN": 100062609325, "X_COORDINATE": 484041.0, "Y_COORDINATE": 146984.0, "LATITUDE": 51.21588, "LONGITUDE": -0.7981047 }, "geometry": { "type": "Point", "coordinates": [ 484041.0, 146984.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367248, "UPRN": 100062609564, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156791, "LONGITUDE": -0.7978092 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367249, "UPRN": 100062609566, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156791, "LONGITUDE": -0.7978092 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910394, "UPRN": 10094578810, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146973.0, "LATITUDE": 51.2157498, "LONGITUDE": -0.7950583 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146973.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910386, "UPRN": 10094578802, "X_COORDINATE": 484253.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2157589, "LONGITUDE": -0.7950724 }, "geometry": { "type": "Point", "coordinates": [ 484253.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910395, "UPRN": 10094578811, "X_COORDINATE": 484251.0, "Y_COORDINATE": 146976.0, "LATITUDE": 51.2157772, "LONGITUDE": -0.7951005 }, "geometry": { "type": "Point", "coordinates": [ 484251.0, 146976.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910387, "UPRN": 10094578803, "X_COORDINATE": 484249.0, "Y_COORDINATE": 146979.0, "LATITUDE": 51.2158044, "LONGITUDE": -0.7951285 }, "geometry": { "type": "Point", "coordinates": [ 484249.0, 146979.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910482, "UPRN": 10094578898, "X_COORDINATE": 484250.0, "Y_COORDINATE": 146983.0, "LATITUDE": 51.2158403, "LONGITUDE": -0.7951132 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 146983.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910388, "UPRN": 10094578804, "X_COORDINATE": 484244.0, "Y_COORDINATE": 146984.0, "LATITUDE": 51.2158501, "LONGITUDE": -0.7951989 }, "geometry": { "type": "Point", "coordinates": [ 484244.0, 146984.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910396, "UPRN": 10094578812, "X_COORDINATE": 484244.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158591, "LONGITUDE": -0.7951986 }, "geometry": { "type": "Point", "coordinates": [ 484244.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910389, "UPRN": 10094578805, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146989.0, "LATITUDE": 51.2158957, "LONGITUDE": -0.795255 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146989.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910478, "UPRN": 10094578894, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146991.0, "LATITUDE": 51.2159181, "LONGITUDE": -0.7956839 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146991.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910481, "UPRN": 10094578897, "X_COORDINATE": 484241.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159315, "LONGITUDE": -0.7952397 }, "geometry": { "type": "Point", "coordinates": [ 484241.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910397, "UPRN": 10094578813, "X_COORDINATE": 484237.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159321, "LONGITUDE": -0.795297 }, "geometry": { "type": "Point", "coordinates": [ 484237.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910390, "UPRN": 10094578806, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146994.0, "LATITUDE": 51.2159412, "LONGITUDE": -0.795311 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146994.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910410, "UPRN": 10094578826, "X_COORDINATE": 484222.0, "Y_COORDINATE": 147012.0, "LATITUDE": 51.2161051, "LONGITUDE": -0.7955072 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 147012.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910405, "UPRN": 10094578821, "X_COORDINATE": 484222.0, "Y_COORDINATE": 147012.0, "LATITUDE": 51.2161051, "LONGITUDE": -0.7955072 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 147012.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910400, "UPRN": 10094578816, "X_COORDINATE": 484222.0, "Y_COORDINATE": 147012.0, "LATITUDE": 51.2161051, "LONGITUDE": -0.7955072 }, "geometry": { "type": "Point", "coordinates": [ 484222.0, 147012.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443611, "UPRN": 10013889664, "X_COORDINATE": 484227.0, "Y_COORDINATE": 147015.0, "LATITUDE": 51.2161313, "LONGITUDE": -0.7954349 }, "geometry": { "type": "Point", "coordinates": [ 484227.0, 147015.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910409, "UPRN": 10094578825, "X_COORDINATE": 484228.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161402, "LONGITUDE": -0.7954204 }, "geometry": { "type": "Point", "coordinates": [ 484228.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910404, "UPRN": 10094578820, "X_COORDINATE": 484228.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161402, "LONGITUDE": -0.7954204 }, "geometry": { "type": "Point", "coordinates": [ 484228.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910399, "UPRN": 10094578815, "X_COORDINATE": 484228.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161402, "LONGITUDE": -0.7954204 }, "geometry": { "type": "Point", "coordinates": [ 484228.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910411, "UPRN": 10094578827, "X_COORDINATE": 484216.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161599, "LONGITUDE": -0.7955917 }, "geometry": { "type": "Point", "coordinates": [ 484216.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910406, "UPRN": 10094578822, "X_COORDINATE": 484216.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161599, "LONGITUDE": -0.7955917 }, "geometry": { "type": "Point", "coordinates": [ 484216.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910401, "UPRN": 10094578817, "X_COORDINATE": 484216.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161599, "LONGITUDE": -0.7955917 }, "geometry": { "type": "Point", "coordinates": [ 484216.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216666, "UPRN": 100062353933, "X_COORDINATE": 484131.0, "Y_COORDINATE": 146869.0, "LATITUDE": 51.2148329, "LONGITUDE": -0.7968433 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 146869.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729032, "UPRN": 100061608461, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149241, "LONGITUDE": -0.7969698 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729031, "UPRN": 100061608460, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146884.0, "LATITUDE": 51.2149697, "LONGITUDE": -0.7970259 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146884.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399984, "UPRN": 100062700112, "X_COORDINATE": 484116.0, "Y_COORDINATE": 146886.0, "LATITUDE": 51.214988, "LONGITUDE": -0.797054 }, "geometry": { "type": "Point", "coordinates": [ 484116.0, 146886.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729030, "UPRN": 100061608459, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150152, "LONGITUDE": -0.797082 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729029, "UPRN": 100061608458, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150519, "LONGITUDE": -0.7971526 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399988, "UPRN": 100062700120, "X_COORDINATE": 484109.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150519, "LONGITUDE": -0.7971526 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217006, "UPRN": 100062354439, "X_COORDINATE": 484115.0, "Y_COORDINATE": 146969.0, "LATITUDE": 51.2157343, "LONGITUDE": -0.7970489 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 146969.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217111, "UPRN": 100062354579, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146976.0, "LATITUDE": 51.2157968, "LONGITUDE": -0.7970043 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146976.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447230, "UPRN": 10013893571, "X_COORDINATE": 484120.0, "Y_COORDINATE": 146978.0, "LATITUDE": 51.2158145, "LONGITUDE": -0.7969752 }, "geometry": { "type": "Point", "coordinates": [ 484120.0, 146978.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722922, "UPRN": 100061601827, "X_COORDINATE": 484134.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158484, "LONGITUDE": -0.7967739 }, "geometry": { "type": "Point", "coordinates": [ 484134.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445661, "UPRN": 10013891954, "X_COORDINATE": 484131.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158758, "LONGITUDE": -0.7968161 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445660, "UPRN": 10013891953, "X_COORDINATE": 484131.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158758, "LONGITUDE": -0.7968161 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448886, "UPRN": 10013895253, "X_COORDINATE": 484113.0, "Y_COORDINATE": 146987.0, "LATITUDE": 51.2158964, "LONGITUDE": -0.7970733 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 146987.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367182, "UPRN": 100062609405, "X_COORDINATE": 484127.23, "Y_COORDINATE": 146990.26, "LATITUDE": 51.2159236, "LONGITUDE": -0.7968689 }, "geometry": { "type": "Point", "coordinates": [ 484127.229999999981374, 146990.26 ] } }, -{ "type": "Feature", "properties": { "FID": 32399989, "UPRN": 100062700121, "X_COORDINATE": 484114.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150152, "LONGITUDE": -0.797082 }, "geometry": { "type": "Point", "coordinates": [ 484114.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399990, "UPRN": 100062700122, "X_COORDINATE": 484118.0, "Y_COORDINATE": 146884.0, "LATITUDE": 51.2149697, "LONGITUDE": -0.7970259 }, "geometry": { "type": "Point", "coordinates": [ 484118.0, 146884.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399991, "UPRN": 100062700123, "X_COORDINATE": 484122.0, "Y_COORDINATE": 146879.0, "LATITUDE": 51.2149241, "LONGITUDE": -0.7969698 }, "geometry": { "type": "Point", "coordinates": [ 484122.0, 146879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910111, "UPRN": 10094578527, "X_COORDINATE": 484077.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158567, "LONGITUDE": -0.7975898 }, "geometry": { "type": "Point", "coordinates": [ 484077.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910110, "UPRN": 10094578526, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.2158917, "LONGITUDE": -0.7974887 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910055, "UPRN": 10094578471, "X_COORDINATE": 484084.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.2158917, "LONGITUDE": -0.7974887 }, "geometry": { "type": "Point", "coordinates": [ 484084.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910044, "UPRN": 10094578460, "X_COORDINATE": 484074.0, "Y_COORDINATE": 146987.0, "LATITUDE": 51.2159021, "LONGITUDE": -0.7976316 }, "geometry": { "type": "Point", "coordinates": [ 484074.0, 146987.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910112, "UPRN": 10094578528, "X_COORDINATE": 484073.0, "Y_COORDINATE": 146989.0, "LATITUDE": 51.2159203, "LONGITUDE": -0.7976454 }, "geometry": { "type": "Point", "coordinates": [ 484073.0, 146989.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910109, "UPRN": 10094578525, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159536, "LONGITUDE": -0.7973868 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910054, "UPRN": 10094578470, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159536, "LONGITUDE": -0.7973868 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910113, "UPRN": 10094578529, "X_COORDINATE": 484069.0, "Y_COORDINATE": 146994.0, "LATITUDE": 51.2159658, "LONGITUDE": -0.7977015 }, "geometry": { "type": "Point", "coordinates": [ 484069.0, 146994.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910056, "UPRN": 10094578472, "X_COORDINATE": 484069.0, "Y_COORDINATE": 146994.0, "LATITUDE": 51.2159658, "LONGITUDE": -0.7977015 }, "geometry": { "type": "Point", "coordinates": [ 484069.0, 146994.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910116, "UPRN": 10094578532, "X_COORDINATE": 484077.0, "Y_COORDINATE": 146998.0, "LATITUDE": 51.2160006, "LONGITUDE": -0.7975861 }, "geometry": { "type": "Point", "coordinates": [ 484077.0, 146998.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910059, "UPRN": 10094578475, "X_COORDINATE": 484077.0, "Y_COORDINATE": 146998.0, "LATITUDE": 51.2160006, "LONGITUDE": -0.7975861 }, "geometry": { "type": "Point", "coordinates": [ 484077.0, 146998.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910114, "UPRN": 10094578530, "X_COORDINATE": 484066.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160202, "LONGITUDE": -0.7977431 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910045, "UPRN": 10094578461, "X_COORDINATE": 484087.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160171, "LONGITUDE": -0.7974425 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910057, "UPRN": 10094578473, "X_COORDINATE": 484066.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160202, "LONGITUDE": -0.7977431 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910165, "UPRN": 10094578581, "X_COORDINATE": 484099.0, "Y_COORDINATE": 147002.0, "LATITUDE": 51.2160333, "LONGITUDE": -0.7972702 }, "geometry": { "type": "Point", "coordinates": [ 484099.0, 147002.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910123, "UPRN": 10094578539, "X_COORDINATE": 484099.0, "Y_COORDINATE": 147002.0, "LATITUDE": 51.2160333, "LONGITUDE": -0.7972702 }, "geometry": { "type": "Point", "coordinates": [ 484099.0, 147002.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910068, "UPRN": 10094578484, "X_COORDINATE": 484099.0, "Y_COORDINATE": 147002.0, "LATITUDE": 51.2160333, "LONGITUDE": -0.7972702 }, "geometry": { "type": "Point", "coordinates": [ 484099.0, 147002.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910115, "UPRN": 10094578531, "X_COORDINATE": 484072.0, "Y_COORDINATE": 147003.0, "LATITUDE": 51.2160463, "LONGITUDE": -0.7976565 }, "geometry": { "type": "Point", "coordinates": [ 484072.0, 147003.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910058, "UPRN": 10094578474, "X_COORDINATE": 484072.0, "Y_COORDINATE": 147003.0, "LATITUDE": 51.2160463, "LONGITUDE": -0.7976565 }, "geometry": { "type": "Point", "coordinates": [ 484072.0, 147003.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910046, "UPRN": 10094578462, "X_COORDINATE": 484094.0, "Y_COORDINATE": 147007.0, "LATITUDE": 51.216079, "LONGITUDE": -0.7973406 }, "geometry": { "type": "Point", "coordinates": [ 484094.0, 147007.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910166, "UPRN": 10094578582, "X_COORDINATE": 484102.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161048, "LONGITUDE": -0.7972254 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910124, "UPRN": 10094578540, "X_COORDINATE": 484102.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161048, "LONGITUDE": -0.7972254 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910069, "UPRN": 10094578485, "X_COORDINATE": 484102.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161048, "LONGITUDE": -0.7972254 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910060, "UPRN": 10094578476, "X_COORDINATE": 484076.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161086, "LONGITUDE": -0.7975976 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448569, "UPRN": 10013894929, "X_COORDINATE": 484091.0, "Y_COORDINATE": 146999.0, "LATITUDE": 51.2160075, "LONGITUDE": -0.7973854 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 146999.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122773, "UPRN": 100062162631, "X_COORDINATE": 484075.71, "Y_COORDINATE": 146891.15, "LATITUDE": 51.2150402, "LONGITUDE": -0.7976295 }, "geometry": { "type": "Point", "coordinates": [ 484075.710000000020955, 146891.15 ] } }, -{ "type": "Feature", "properties": { "FID": 32216662, "UPRN": 100062353926, "X_COORDINATE": 484087.0, "Y_COORDINATE": 146929.0, "LATITUDE": 51.2153788, "LONGITUDE": -0.7974591 }, "geometry": { "type": "Point", "coordinates": [ 484087.0, 146929.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216849, "UPRN": 100062354168, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153632, "LONGITUDE": -0.7976886 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216954, "UPRN": 100062354359, "X_COORDINATE": 484079.0, "Y_COORDINATE": 146926.0, "LATITUDE": 51.215353, "LONGITUDE": -0.7975743 }, "geometry": { "type": "Point", "coordinates": [ 484079.0, 146926.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217034, "UPRN": 100062354484, "X_COORDINATE": 484093.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.215315, "LONGITUDE": -0.7973748 }, "geometry": { "type": "Point", "coordinates": [ 484093.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217125, "UPRN": 100062354606, "X_COORDINATE": 484066.0, "Y_COORDINATE": 146992.0, "LATITUDE": 51.2159483, "LONGITUDE": -0.7977449 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 146992.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217137, "UPRN": 100062354630, "X_COORDINATE": 484102.0, "Y_COORDINATE": 146944.0, "LATITUDE": 51.2155114, "LONGITUDE": -0.7972409 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 146944.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367247, "UPRN": 100062609563, "X_COORDINATE": 484066.0, "Y_COORDINATE": 146950.0, "LATITUDE": 51.2155707, "LONGITUDE": -0.7977548 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 146950.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367250, "UPRN": 100062609567, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153632, "LONGITUDE": -0.7976886 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367251, "UPRN": 100062609568, "X_COORDINATE": 484071.0, "Y_COORDINATE": 146927.0, "LATITUDE": 51.2153632, "LONGITUDE": -0.7976886 }, "geometry": { "type": "Point", "coordinates": [ 484071.0, 146927.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910465, "UPRN": 10094578881, "X_COORDINATE": 484173.0, "Y_COORDINATE": 146983.0, "LATITUDE": 51.2158516, "LONGITUDE": -0.7962154 }, "geometry": { "type": "Point", "coordinates": [ 484173.0, 146983.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910474, "UPRN": 10094578890, "X_COORDINATE": 484196.0, "Y_COORDINATE": 146987.0, "LATITUDE": 51.2158842, "LONGITUDE": -0.7958853 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 146987.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270262, "UPRN": 10091111599, "X_COORDINATE": 484166.0, "Y_COORDINATE": 146988.0, "LATITUDE": 51.2158976, "LONGITUDE": -0.7963144 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 146988.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910335, "UPRN": 10094578751, "X_COORDINATE": 484197.0, "Y_COORDINATE": 146990.0, "LATITUDE": 51.215911, "LONGITUDE": -0.7958702 }, "geometry": { "type": "Point", "coordinates": [ 484197.0, 146990.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910331, "UPRN": 10094578747, "X_COORDINATE": 484186.0, "Y_COORDINATE": 146990.0, "LATITUDE": 51.2159126, "LONGITUDE": -0.7960277 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 146990.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910344, "UPRN": 10094578760, "X_COORDINATE": 484186.0, "Y_COORDINATE": 146990.0, "LATITUDE": 51.2159126, "LONGITUDE": -0.7960277 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 146990.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910356, "UPRN": 10094578772, "X_COORDINATE": 484197.0, "Y_COORDINATE": 146990.0, "LATITUDE": 51.215911, "LONGITUDE": -0.7958702 }, "geometry": { "type": "Point", "coordinates": [ 484197.0, 146990.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910473, "UPRN": 10094578889, "X_COORDINATE": 484191.0, "Y_COORDINATE": 146991.0, "LATITUDE": 51.2159209, "LONGITUDE": -0.7959559 }, "geometry": { "type": "Point", "coordinates": [ 484191.0, 146991.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910466, "UPRN": 10094578882, "X_COORDINATE": 484164.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159428, "LONGITUDE": -0.7963419 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270258, "UPRN": 10091111595, "X_COORDINATE": 484189.0, "Y_COORDINATE": 146994.0, "LATITUDE": 51.2159481, "LONGITUDE": -0.7959838 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 146994.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910334, "UPRN": 10094578750, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159657, "LONGITUDE": -0.7959404 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910332, "UPRN": 10094578748, "X_COORDINATE": 484180.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159674, "LONGITUDE": -0.7961122 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910345, "UPRN": 10094578761, "X_COORDINATE": 484180.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159674, "LONGITUDE": -0.7961122 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910355, "UPRN": 10094578771, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159657, "LONGITUDE": -0.7959404 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910472, "UPRN": 10094578888, "X_COORDINATE": 484187.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159664, "LONGITUDE": -0.796012 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910333, "UPRN": 10094578749, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147001.0, "LATITUDE": 51.2160114, "LONGITUDE": -0.7960108 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147001.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910354, "UPRN": 10094578770, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147001.0, "LATITUDE": 51.2160114, "LONGITUDE": -0.7960108 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147001.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910471, "UPRN": 10094578887, "X_COORDINATE": 484183.0, "Y_COORDINATE": 147001.0, "LATITUDE": 51.216012, "LONGITUDE": -0.7960681 }, "geometry": { "type": "Point", "coordinates": [ 484183.0, 147001.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910467, "UPRN": 10094578883, "X_COORDINATE": 484154.0, "Y_COORDINATE": 147003.0, "LATITUDE": 51.2160342, "LONGITUDE": -0.7964827 }, "geometry": { "type": "Point", "coordinates": [ 484154.0, 147003.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910346, "UPRN": 10094578762, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147004.0, "LATITUDE": 51.2160403, "LONGITUDE": -0.7961962 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147004.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910357, "UPRN": 10094578773, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147004.0, "LATITUDE": 51.2160403, "LONGITUDE": -0.7961962 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147004.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117310, "UPRN": 10096745894, "X_COORDINATE": 484164.87, "Y_COORDINATE": 146991.92, "LATITUDE": 51.215933, "LONGITUDE": -0.7963297 }, "geometry": { "type": "Point", "coordinates": [ 484164.87, 146991.920000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 23117311, "UPRN": 10096745895, "X_COORDINATE": 484160.53, "Y_COORDINATE": 146996.9, "LATITUDE": 51.2159784, "LONGITUDE": -0.7963907 }, "geometry": { "type": "Point", "coordinates": [ 484160.53000000002794, 146996.9 ] } }, -{ "type": "Feature", "properties": { "FID": 23117313, "UPRN": 10096745897, "X_COORDINATE": 484169.75, "Y_COORDINATE": 146985.6, "LATITUDE": 51.2158755, "LONGITUDE": -0.7962613 }, "geometry": { "type": "Point", "coordinates": [ 484169.75, 146985.6 ] } }, -{ "type": "Feature", "properties": { "FID": 21910470, "UPRN": 10094578886, "X_COORDINATE": 484177.0, "Y_COORDINATE": 147008.0, "LATITUDE": 51.2160758, "LONGITUDE": -0.7961523 }, "geometry": { "type": "Point", "coordinates": [ 484177.0, 147008.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910353, "UPRN": 10094578769, "X_COORDINATE": 484181.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2160842, "LONGITUDE": -0.7960948 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910364, "UPRN": 10094578780, "X_COORDINATE": 484181.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2160842, "LONGITUDE": -0.7960948 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910347, "UPRN": 10094578763, "X_COORDINATE": 484167.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2161042, "LONGITUDE": -0.7962947 }, "geometry": { "type": "Point", "coordinates": [ 484167.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910358, "UPRN": 10094578774, "X_COORDINATE": 484167.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2161042, "LONGITUDE": -0.7962947 }, "geometry": { "type": "Point", "coordinates": [ 484167.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910469, "UPRN": 10094578885, "X_COORDINATE": 484171.0, "Y_COORDINATE": 147014.0, "LATITUDE": 51.2161306, "LONGITUDE": -0.7962368 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 147014.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910348, "UPRN": 10094578764, "X_COORDINATE": 484162.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161499, "LONGITUDE": -0.7963651 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910352, "UPRN": 10094578768, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161481, "LONGITUDE": -0.7961934 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910359, "UPRN": 10094578775, "X_COORDINATE": 484162.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161499, "LONGITUDE": -0.7963651 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910363, "UPRN": 10094578779, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161481, "LONGITUDE": -0.7961934 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910468, "UPRN": 10094578884, "X_COORDINATE": 484166.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161853, "LONGITUDE": -0.796307 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910349, "UPRN": 10094578765, "X_COORDINATE": 484165.0, "Y_COORDINATE": 147022.0, "LATITUDE": 51.2162034, "LONGITUDE": -0.7963208 }, "geometry": { "type": "Point", "coordinates": [ 484165.0, 147022.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910360, "UPRN": 10094578776, "X_COORDINATE": 484165.0, "Y_COORDINATE": 147022.0, "LATITUDE": 51.2162034, "LONGITUDE": -0.7963208 }, "geometry": { "type": "Point", "coordinates": [ 484165.0, 147022.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910351, "UPRN": 10094578767, "X_COORDINATE": 484180.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162102, "LONGITUDE": -0.7961058 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910362, "UPRN": 10094578778, "X_COORDINATE": 484180.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162102, "LONGITUDE": -0.7961058 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910350, "UPRN": 10094578766, "X_COORDINATE": 484170.0, "Y_COORDINATE": 147026.0, "LATITUDE": 51.2162386, "LONGITUDE": -0.7962483 }, "geometry": { "type": "Point", "coordinates": [ 484170.0, 147026.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910361, "UPRN": 10094578777, "X_COORDINATE": 484170.0, "Y_COORDINATE": 147026.0, "LATITUDE": 51.2162386, "LONGITUDE": -0.7962483 }, "geometry": { "type": "Point", "coordinates": [ 484170.0, 147026.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912093, "UPRN": 10094580568, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912094, "UPRN": 10094580569, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912095, "UPRN": 10094580570, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912096, "UPRN": 10094580571, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447310, "UPRN": 10013893653, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117394, "UPRN": 10096745978, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910061, "UPRN": 10094578477, "X_COORDINATE": 484083.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161705, "LONGITUDE": -0.7974957 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910167, "UPRN": 10094578583, "X_COORDINATE": 484095.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161777, "LONGITUDE": -0.7973237 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910125, "UPRN": 10094578541, "X_COORDINATE": 484095.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161777, "LONGITUDE": -0.7973237 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910070, "UPRN": 10094578486, "X_COORDINATE": 484095.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161777, "LONGITUDE": -0.7973237 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910129, "UPRN": 10094578545, "X_COORDINATE": 484105.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161943, "LONGITUDE": -0.7971801 }, "geometry": { "type": "Point", "coordinates": [ 484105.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910074, "UPRN": 10094578490, "X_COORDINATE": 484105.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161943, "LONGITUDE": -0.7971801 }, "geometry": { "type": "Point", "coordinates": [ 484105.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910168, "UPRN": 10094578584, "X_COORDINATE": 484091.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162233, "LONGITUDE": -0.7973798 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910126, "UPRN": 10094578542, "X_COORDINATE": 484091.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162233, "LONGITUDE": -0.7973798 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910071, "UPRN": 10094578487, "X_COORDINATE": 484091.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162233, "LONGITUDE": -0.7973798 }, "geometry": { "type": "Point", "coordinates": [ 484091.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910128, "UPRN": 10094578544, "X_COORDINATE": 484102.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162396, "LONGITUDE": -0.7972219 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910073, "UPRN": 10094578489, "X_COORDINATE": 484102.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162396, "LONGITUDE": -0.7972219 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910170, "UPRN": 10094578586, "X_COORDINATE": 484102.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162396, "LONGITUDE": -0.7972219 }, "geometry": { "type": "Point", "coordinates": [ 484102.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910169, "UPRN": 10094578585, "X_COORDINATE": 484098.0, "Y_COORDINATE": 147031.0, "LATITUDE": 51.2162942, "LONGITUDE": -0.7972778 }, "geometry": { "type": "Point", "coordinates": [ 484098.0, 147031.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910127, "UPRN": 10094578543, "X_COORDINATE": 484098.0, "Y_COORDINATE": 147031.0, "LATITUDE": 51.2162942, "LONGITUDE": -0.7972778 }, "geometry": { "type": "Point", "coordinates": [ 484098.0, 147031.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910072, "UPRN": 10094578488, "X_COORDINATE": 484098.0, "Y_COORDINATE": 147031.0, "LATITUDE": 51.2162942, "LONGITUDE": -0.7972778 }, "geometry": { "type": "Point", "coordinates": [ 484098.0, 147031.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265590, "UPRN": 10091106895, "X_COORDINATE": 484053.0, "Y_COORDINATE": 147051.0, "LATITUDE": 51.2164806, "LONGITUDE": -0.7979172 }, "geometry": { "type": "Point", "coordinates": [ 484053.0, 147051.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910171, "UPRN": 10094578587, "X_COORDINATE": 484105.0, "Y_COORDINATE": 147020.0, "LATITUDE": 51.2161943, "LONGITUDE": -0.7971801 }, "geometry": { "type": "Point", "coordinates": [ 484105.0, 147020.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910192, "UPRN": 10094578608, "X_COORDINATE": 484112.0, "Y_COORDINATE": 147043.0, "LATITUDE": 51.2164, "LONGITUDE": -0.7970745 }, "geometry": { "type": "Point", "coordinates": [ 484112.0, 147043.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216615, "UPRN": 100062353853, "X_COORDINATE": 484036.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162673, "LONGITUDE": -0.7981662 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910117, "UPRN": 10094578533, "X_COORDINATE": 484108.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161668, "LONGITUDE": -0.7971379 }, "geometry": { "type": "Point", "coordinates": [ 484108.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910062, "UPRN": 10094578478, "X_COORDINATE": 484108.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161668, "LONGITUDE": -0.7971379 }, "geometry": { "type": "Point", "coordinates": [ 484108.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910408, "UPRN": 10094578824, "X_COORDINATE": 484237.0, "Y_COORDINATE": 147024.0, "LATITUDE": 51.2162108, "LONGITUDE": -0.7952897 }, "geometry": { "type": "Point", "coordinates": [ 484237.0, 147024.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910403, "UPRN": 10094578819, "X_COORDINATE": 484237.0, "Y_COORDINATE": 147024.0, "LATITUDE": 51.2162108, "LONGITUDE": -0.7952897 }, "geometry": { "type": "Point", "coordinates": [ 484237.0, 147024.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910398, "UPRN": 10094578814, "X_COORDINATE": 484237.0, "Y_COORDINATE": 147024.0, "LATITUDE": 51.2162108, "LONGITUDE": -0.7952897 }, "geometry": { "type": "Point", "coordinates": [ 484237.0, 147024.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910412, "UPRN": 10094578828, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162234, "LONGITUDE": -0.7956473 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910407, "UPRN": 10094578823, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162234, "LONGITUDE": -0.7956473 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910402, "UPRN": 10094578818, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162234, "LONGITUDE": -0.7956473 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447747, "UPRN": 10013894100, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447748, "UPRN": 10013894101, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447749, "UPRN": 10013894102, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448537, "UPRN": 10013894897, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163707, "LONGITUDE": -0.7950994 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446787, "UPRN": 10013893126, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446786, "UPRN": 10013893125, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913075, "UPRN": 10094581562, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21913074, "UPRN": 10094581561, "X_COORDINATE": 484220.56, "Y_COORDINATE": 147065.83, "LATITUDE": 51.2165893, "LONGITUDE": -0.7955152 }, "geometry": { "type": "Point", "coordinates": [ 484220.56, 147065.829999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 21912265, "UPRN": 10094580740, "X_COORDINATE": 484220.6, "Y_COORDINATE": 147076.9, "LATITUDE": 51.2166888, "LONGITUDE": -0.7955121 }, "geometry": { "type": "Point", "coordinates": [ 484220.599999999976717, 147076.9 ] } }, -{ "type": "Feature", "properties": { "FID": 21912263, "UPRN": 10094580738, "X_COORDINATE": 484222.35, "Y_COORDINATE": 147079.88, "LATITUDE": 51.2167153, "LONGITUDE": -0.7954863 }, "geometry": { "type": "Point", "coordinates": [ 484222.349999999976717, 147079.88 ] } }, -{ "type": "Feature", "properties": { "FID": 21912264, "UPRN": 10094580739, "X_COORDINATE": 484217.21, "Y_COORDINATE": 147081.37, "LATITUDE": 51.2167295, "LONGITUDE": -0.7955595 }, "geometry": { "type": "Point", "coordinates": [ 484217.210000000020955, 147081.37 ] } }, -{ "type": "Feature", "properties": { "FID": 21912262, "UPRN": 10094580737, "X_COORDINATE": 484218.56, "Y_COORDINATE": 147082.93, "LATITUDE": 51.2167433, "LONGITUDE": -0.7955398 }, "geometry": { "type": "Point", "coordinates": [ 484218.56, 147082.93 ] } }, -{ "type": "Feature", "properties": { "FID": 15447311, "UPRN": 10013893654, "X_COORDINATE": 484221.0, "Y_COORDINATE": 147079.0, "LATITUDE": 51.2167076, "LONGITUDE": -0.7955058 }, "geometry": { "type": "Point", "coordinates": [ 484221.0, 147079.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450459, "UPRN": 10013896839, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147107.0, "LATITUDE": 51.2169606, "LONGITUDE": -0.7956281 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147107.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447309, "UPRN": 10013893652, "X_COORDINATE": 484207.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165838, "LONGITUDE": -0.7957095 }, "geometry": { "type": "Point", "coordinates": [ 484207.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447308, "UPRN": 10013893651, "X_COORDINATE": 484204.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165483, "LONGITUDE": -0.7957534 }, "geometry": { "type": "Point", "coordinates": [ 484204.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447307, "UPRN": 10013893650, "X_COORDINATE": 484201.0, "Y_COORDINATE": 147059.0, "LATITUDE": 51.2165307, "LONGITUDE": -0.7957968 }, "geometry": { "type": "Point", "coordinates": [ 484201.0, 147059.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117055, "UPRN": 10096745443, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117056, "UPRN": 10096745444, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447986, "UPRN": 10013894345, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447126, "UPRN": 10013893466, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447127, "UPRN": 10013893467, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447128, "UPRN": 10013893468, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447129, "UPRN": 10013893469, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447130, "UPRN": 10013893470, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447131, "UPRN": 10013893471, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447132, "UPRN": 10013893472, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447133, "UPRN": 10013893473, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447134, "UPRN": 10013893474, "X_COORDINATE": 484227.0, "Y_COORDINATE": 147131.0, "LATITUDE": 51.2171742, "LONGITUDE": -0.7954078 }, "geometry": { "type": "Point", "coordinates": [ 484227.0, 147131.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910083, "UPRN": 10094578499, "X_COORDINATE": 484121.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164436, "LONGITUDE": -0.7969445 }, "geometry": { "type": "Point", "coordinates": [ 484121.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910138, "UPRN": 10094578554, "X_COORDINATE": 484121.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164436, "LONGITUDE": -0.7969445 }, "geometry": { "type": "Point", "coordinates": [ 484121.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910177, "UPRN": 10094578593, "X_COORDINATE": 484121.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164436, "LONGITUDE": -0.7969445 }, "geometry": { "type": "Point", "coordinates": [ 484121.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910082, "UPRN": 10094578498, "X_COORDINATE": 484125.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164071, "LONGITUDE": -0.7968882 }, "geometry": { "type": "Point", "coordinates": [ 484125.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910137, "UPRN": 10094578553, "X_COORDINATE": 484125.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164071, "LONGITUDE": -0.7968882 }, "geometry": { "type": "Point", "coordinates": [ 484125.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910176, "UPRN": 10094578592, "X_COORDINATE": 484125.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164071, "LONGITUDE": -0.7968882 }, "geometry": { "type": "Point", "coordinates": [ 484125.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910084, "UPRN": 10094578500, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147054.0, "LATITUDE": 51.2164964, "LONGITUDE": -0.7968286 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147054.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910139, "UPRN": 10094578555, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147054.0, "LATITUDE": 51.2164964, "LONGITUDE": -0.7968286 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147054.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910178, "UPRN": 10094578594, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147054.0, "LATITUDE": 51.2164964, "LONGITUDE": -0.7968286 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147054.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910081, "UPRN": 10094578497, "X_COORDINATE": 484130.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163614, "LONGITUDE": -0.7968178 }, "geometry": { "type": "Point", "coordinates": [ 484130.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910136, "UPRN": 10094578552, "X_COORDINATE": 484130.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163614, "LONGITUDE": -0.7968178 }, "geometry": { "type": "Point", "coordinates": [ 484130.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910175, "UPRN": 10094578591, "X_COORDINATE": 484130.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163614, "LONGITUDE": -0.7968178 }, "geometry": { "type": "Point", "coordinates": [ 484130.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910085, "UPRN": 10094578501, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164416, "LONGITUDE": -0.7967441 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910140, "UPRN": 10094578556, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164416, "LONGITUDE": -0.7967441 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910179, "UPRN": 10094578595, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164416, "LONGITUDE": -0.7967441 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910086, "UPRN": 10094578502, "X_COORDINATE": 484138.0, "Y_COORDINATE": 147063.0, "LATITUDE": 51.216576, "LONGITUDE": -0.7966977 }, "geometry": { "type": "Point", "coordinates": [ 484138.0, 147063.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910075, "UPRN": 10094578491, "X_COORDINATE": 484140.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163869, "LONGITUDE": -0.796674 }, "geometry": { "type": "Point", "coordinates": [ 484140.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910130, "UPRN": 10094578546, "X_COORDINATE": 484140.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163869, "LONGITUDE": -0.796674 }, "geometry": { "type": "Point", "coordinates": [ 484140.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910172, "UPRN": 10094578588, "X_COORDINATE": 484140.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2163869, "LONGITUDE": -0.796674 }, "geometry": { "type": "Point", "coordinates": [ 484140.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910078, "UPRN": 10094578494, "X_COORDINATE": 484141.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2163058, "LONGITUDE": -0.7966618 }, "geometry": { "type": "Point", "coordinates": [ 484141.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910133, "UPRN": 10094578549, "X_COORDINATE": 484141.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2163058, "LONGITUDE": -0.7966618 }, "geometry": { "type": "Point", "coordinates": [ 484141.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910173, "UPRN": 10094578589, "X_COORDINATE": 484141.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2163058, "LONGITUDE": -0.7966618 }, "geometry": { "type": "Point", "coordinates": [ 484141.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910087, "UPRN": 10094578503, "X_COORDINATE": 484142.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2166024, "LONGITUDE": -0.7966397 }, "geometry": { "type": "Point", "coordinates": [ 484142.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116157, "UPRN": 10096744539, "X_COORDINATE": 484099.54, "Y_COORDINATE": 147066.88, "LATITUDE": 51.2166165, "LONGITUDE": -0.7972473 }, "geometry": { "type": "Point", "coordinates": [ 484099.539999999979045, 147066.88 ] } }, -{ "type": "Feature", "properties": { "FID": 31722041, "UPRN": 100061600852, "X_COORDINATE": 484128.0, "Y_COORDINATE": 147099.0, "LATITUDE": 51.2169011, "LONGITUDE": -0.7968324 }, "geometry": { "type": "Point", "coordinates": [ 484128.0, 147099.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722042, "UPRN": 100061600853, "X_COORDINATE": 484130.0, "Y_COORDINATE": 147090.0, "LATITUDE": 51.2168199, "LONGITUDE": -0.7968059 }, "geometry": { "type": "Point", "coordinates": [ 484130.0, 147090.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722043, "UPRN": 100061600854, "X_COORDINATE": 484119.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167316, "LONGITUDE": -0.7969657 }, "geometry": { "type": "Point", "coordinates": [ 484119.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722044, "UPRN": 100061600855, "X_COORDINATE": 484113.0, "Y_COORDINATE": 147079.0, "LATITUDE": 51.2167235, "LONGITUDE": -0.7970518 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 147079.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722045, "UPRN": 100061600856, "X_COORDINATE": 484103.0, "Y_COORDINATE": 147067.0, "LATITUDE": 51.2166171, "LONGITUDE": -0.7971978 }, "geometry": { "type": "Point", "coordinates": [ 484103.0, 147067.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722046, "UPRN": 100061600857, "X_COORDINATE": 484103.0, "Y_COORDINATE": 147067.0, "LATITUDE": 51.2166171, "LONGITUDE": -0.7971978 }, "geometry": { "type": "Point", "coordinates": [ 484103.0, 147067.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722047, "UPRN": 100061600858, "X_COORDINATE": 484095.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2166093, "LONGITUDE": -0.7973125 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722048, "UPRN": 100061600859, "X_COORDINATE": 484095.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2166093, "LONGITUDE": -0.7973125 }, "geometry": { "type": "Point", "coordinates": [ 484095.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726063, "UPRN": 100061605257, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147130.0, "LATITUDE": 51.2171796, "LONGITUDE": -0.7968108 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147130.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726064, "UPRN": 100061605258, "X_COORDINATE": 484125.0, "Y_COORDINATE": 147127.0, "LATITUDE": 51.2171533, "LONGITUDE": -0.7968688 }, "geometry": { "type": "Point", "coordinates": [ 484125.0, 147127.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726065, "UPRN": 100061605259, "X_COORDINATE": 484104.0, "Y_COORDINATE": 147118.0, "LATITUDE": 51.2170754, "LONGITUDE": -0.7971715 }, "geometry": { "type": "Point", "coordinates": [ 484104.0, 147118.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726066, "UPRN": 100061605260, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147124.0, "LATITUDE": 51.2171278, "LONGITUDE": -0.7970126 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147124.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216880, "UPRN": 100062354225, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147124.0, "LATITUDE": 51.2171278, "LONGITUDE": -0.7970126 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147124.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720576, "UPRN": 100061599336, "X_COORDINATE": 484042.0, "Y_COORDINATE": 147036.0, "LATITUDE": 51.2163474, "LONGITUDE": -0.7980782 }, "geometry": { "type": "Point", "coordinates": [ 484042.0, 147036.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720577, "UPRN": 100061599337, "X_COORDINATE": 484046.0, "Y_COORDINATE": 147037.0, "LATITUDE": 51.2163558, "LONGITUDE": -0.7980207 }, "geometry": { "type": "Point", "coordinates": [ 484046.0, 147037.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720578, "UPRN": 100061599338, "X_COORDINATE": 484048.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163735, "LONGITUDE": -0.7979916 }, "geometry": { "type": "Point", "coordinates": [ 484048.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720579, "UPRN": 100061599339, "X_COORDINATE": 484036.0, "Y_COORDINATE": 147046.0, "LATITUDE": 51.2164381, "LONGITUDE": -0.7981617 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 147046.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720588, "UPRN": 100061599348, "X_COORDINATE": 484018.0, "Y_COORDINATE": 147047.0, "LATITUDE": 51.2164498, "LONGITUDE": -0.7984192 }, "geometry": { "type": "Point", "coordinates": [ 484018.0, 147047.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720580, "UPRN": 100061599340, "X_COORDINATE": 484038.0, "Y_COORDINATE": 147049.0, "LATITUDE": 51.2164648, "LONGITUDE": -0.7981324 }, "geometry": { "type": "Point", "coordinates": [ 484038.0, 147049.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720581, "UPRN": 100061599341, "X_COORDINATE": 484042.0, "Y_COORDINATE": 147050.0, "LATITUDE": 51.2164732, "LONGITUDE": -0.7980749 }, "geometry": { "type": "Point", "coordinates": [ 484042.0, 147050.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720589, "UPRN": 100061599349, "X_COORDINATE": 484016.0, "Y_COORDINATE": 147051.0, "LATITUDE": 51.216486, "LONGITUDE": -0.7984469 }, "geometry": { "type": "Point", "coordinates": [ 484016.0, 147051.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720587, "UPRN": 100061599347, "X_COORDINATE": 484024.0, "Y_COORDINATE": 147054.0, "LATITUDE": 51.2165118, "LONGITUDE": -0.7983316 }, "geometry": { "type": "Point", "coordinates": [ 484024.0, 147054.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447391, "UPRN": 10013893737, "X_COORDINATE": 484039.0, "Y_COORDINATE": 147057.0, "LATITUDE": 51.2165366, "LONGITUDE": -0.7981162 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 147057.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720586, "UPRN": 100061599346, "X_COORDINATE": 484027.0, "Y_COORDINATE": 147057.0, "LATITUDE": 51.2165384, "LONGITUDE": -0.798288 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 147057.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720585, "UPRN": 100061599345, "X_COORDINATE": 484030.0, "Y_COORDINATE": 147059.0, "LATITUDE": 51.2165559, "LONGITUDE": -0.7982446 }, "geometry": { "type": "Point", "coordinates": [ 484030.0, 147059.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444864, "UPRN": 10013891089, "X_COORDINATE": 484012.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165765, "LONGITUDE": -0.7985018 }, "geometry": { "type": "Point", "coordinates": [ 484012.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720584, "UPRN": 100061599344, "X_COORDINATE": 484033.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165734, "LONGITUDE": -0.7982012 }, "geometry": { "type": "Point", "coordinates": [ 484033.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720583, "UPRN": 100061599343, "X_COORDINATE": 484025.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166555, "LONGITUDE": -0.7983136 }, "geometry": { "type": "Point", "coordinates": [ 484025.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720582, "UPRN": 100061599342, "X_COORDINATE": 484023.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.2166828, "LONGITUDE": -0.7983415 }, "geometry": { "type": "Point", "coordinates": [ 484023.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116158, "UPRN": 10096744540, "X_COORDINATE": 484075.16, "Y_COORDINATE": 147087.32, "LATITUDE": 51.2168039, "LONGITUDE": -0.7975915 }, "geometry": { "type": "Point", "coordinates": [ 484075.159999999974389, 147087.32 ] } }, -{ "type": "Feature", "properties": { "FID": 23116159, "UPRN": 10096744541, "X_COORDINATE": 484087.97, "Y_COORDINATE": 147087.81, "LATITUDE": 51.2168064, "LONGITUDE": -0.797408 }, "geometry": { "type": "Point", "coordinates": [ 484087.96999999997206, 147087.81 ] } }, -{ "type": "Feature", "properties": { "FID": 15448916, "UPRN": 10013895283, "X_COORDINATE": 484081.0, "Y_COORDINATE": 147118.0, "LATITUDE": 51.2170788, "LONGITUDE": -0.7975007 }, "geometry": { "type": "Point", "coordinates": [ 484081.0, 147118.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722049, "UPRN": 100061600860, "X_COORDINATE": 484079.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2166925, "LONGITUDE": -0.7975394 }, "geometry": { "type": "Point", "coordinates": [ 484079.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722050, "UPRN": 100061600861, "X_COORDINATE": 484079.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2166925, "LONGITUDE": -0.7975394 }, "geometry": { "type": "Point", "coordinates": [ 484079.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722051, "UPRN": 100061600862, "X_COORDINATE": 484077.0, "Y_COORDINATE": 147083.0, "LATITUDE": 51.2167648, "LONGITUDE": -0.7975662 }, "geometry": { "type": "Point", "coordinates": [ 484077.0, 147083.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722052, "UPRN": 100061600863, "X_COORDINATE": 484077.0, "Y_COORDINATE": 147083.0, "LATITUDE": 51.2167648, "LONGITUDE": -0.7975662 }, "geometry": { "type": "Point", "coordinates": [ 484077.0, 147083.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722053, "UPRN": 100061600864, "X_COORDINATE": 484076.0, "Y_COORDINATE": 147091.0, "LATITUDE": 51.2168368, "LONGITUDE": -0.7975786 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 147091.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722054, "UPRN": 100061600865, "X_COORDINATE": 484076.0, "Y_COORDINATE": 147091.0, "LATITUDE": 51.2168368, "LONGITUDE": -0.7975786 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 147091.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722055, "UPRN": 100061600866, "X_COORDINATE": 484075.0, "Y_COORDINATE": 147099.0, "LATITUDE": 51.2169089, "LONGITUDE": -0.7975911 }, "geometry": { "type": "Point", "coordinates": [ 484075.0, 147099.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722056, "UPRN": 100061600867, "X_COORDINATE": 484075.0, "Y_COORDINATE": 147099.0, "LATITUDE": 51.2169089, "LONGITUDE": -0.7975911 }, "geometry": { "type": "Point", "coordinates": [ 484075.0, 147099.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724901, "UPRN": 100061604052, "X_COORDINATE": 484028.0, "Y_COORDINATE": 147130.0, "LATITUDE": 51.2171945, "LONGITUDE": -0.7982566 }, "geometry": { "type": "Point", "coordinates": [ 484028.0, 147130.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122544, "UPRN": 100062162151, "X_COORDINATE": 484019.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2171239, "LONGITUDE": -0.7983873 }, "geometry": { "type": "Point", "coordinates": [ 484019.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122545, "UPRN": 100062162152, "X_COORDINATE": 484019.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2171239, "LONGITUDE": -0.7983873 }, "geometry": { "type": "Point", "coordinates": [ 484019.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216846, "UPRN": 100062354161, "X_COORDINATE": 484019.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2171239, "LONGITUDE": -0.7983873 }, "geometry": { "type": "Point", "coordinates": [ 484019.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367154, "UPRN": 100062609324, "X_COORDINATE": 484036.0, "Y_COORDINATE": 147098.0, "LATITUDE": 51.2169056, "LONGITUDE": -0.7981496 }, "geometry": { "type": "Point", "coordinates": [ 484036.0, 147098.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445631, "UPRN": 10013891924, "X_COORDINATE": 483929.0, "Y_COORDINATE": 146950.0, "LATITUDE": 51.2155908, "LONGITUDE": -0.7997158 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 146950.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721940, "UPRN": 100061600749, "X_COORDINATE": 483925.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.2156364, "LONGITUDE": -0.7997719 }, "geometry": { "type": "Point", "coordinates": [ 483925.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268779, "UPRN": 10091110102, "X_COORDINATE": 483924.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2156545, "LONGITUDE": -0.7997857 }, "geometry": { "type": "Point", "coordinates": [ 483924.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721939, "UPRN": 100061600748, "X_COORDINATE": 483921.0, "Y_COORDINATE": 146962.0, "LATITUDE": 51.2156999, "LONGITUDE": -0.7998275 }, "geometry": { "type": "Point", "coordinates": [ 483921.0, 146962.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445124, "UPRN": 10013891362, "X_COORDINATE": 483965.0, "Y_COORDINATE": 146964.0, "LATITUDE": 51.2157114, "LONGITUDE": -0.7991972 }, "geometry": { "type": "Point", "coordinates": [ 483965.0, 146964.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444217, "UPRN": 10013890375, "X_COORDINATE": 483955.0, "Y_COORDINATE": 146970.0, "LATITUDE": 51.2157668, "LONGITUDE": -0.799339 }, "geometry": { "type": "Point", "coordinates": [ 483955.0, 146970.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444215, "UPRN": 10013890373, "X_COORDINATE": 483951.0, "Y_COORDINATE": 146980.0, "LATITUDE": 51.2158573, "LONGITUDE": -0.7993939 }, "geometry": { "type": "Point", "coordinates": [ 483951.0, 146980.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445362, "UPRN": 10013891651, "X_COORDINATE": 483993.0, "Y_COORDINATE": 146982.0, "LATITUDE": 51.2158691, "LONGITUDE": -0.7987922 }, "geometry": { "type": "Point", "coordinates": [ 483993.0, 146982.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444216, "UPRN": 10013890374, "X_COORDINATE": 483966.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.215909, "LONGITUDE": -0.7991778 }, "geometry": { "type": "Point", "coordinates": [ 483966.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266467, "UPRN": 10091107780, "X_COORDINATE": 484001.0, "Y_COORDINATE": 146989.0, "LATITUDE": 51.2159309, "LONGITUDE": -0.7986761 }, "geometry": { "type": "Point", "coordinates": [ 484001.0, 146989.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267427, "UPRN": 10091108744, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146991.0, "LATITUDE": 51.2159572, "LONGITUDE": -0.7994915 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146991.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447380, "UPRN": 10013893725, "X_COORDINATE": 483998.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.2165516, "LONGITUDE": -0.7987029 }, "geometry": { "type": "Point", "coordinates": [ 483998.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720575, "UPRN": 100061599335, "X_COORDINATE": 483977.0, "Y_COORDINATE": 147074.0, "LATITUDE": 51.2166985, "LONGITUDE": -0.7989998 }, "geometry": { "type": "Point", "coordinates": [ 483977.0, 147074.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265968, "UPRN": 10091107274, "X_COORDINATE": 483940.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167579, "LONGITUDE": -0.799528 }, "geometry": { "type": "Point", "coordinates": [ 483940.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265967, "UPRN": 10091107273, "X_COORDINATE": 483940.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167579, "LONGITUDE": -0.799528 }, "geometry": { "type": "Point", "coordinates": [ 483940.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446826, "UPRN": 10013893166, "X_COORDINATE": 483945.0, "Y_COORDINATE": 147081.0, "LATITUDE": 51.2167662, "LONGITUDE": -0.7994562 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 147081.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446827, "UPRN": 10013893167, "X_COORDINATE": 483945.0, "Y_COORDINATE": 147081.0, "LATITUDE": 51.2167662, "LONGITUDE": -0.7994562 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 147081.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450830, "UPRN": 10013897266, "X_COORDINATE": 483921.0, "Y_COORDINATE": 147083.0, "LATITUDE": 51.2167877, "LONGITUDE": -0.7997993 }, "geometry": { "type": "Point", "coordinates": [ 483921.0, 147083.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265966, "UPRN": 10091107272, "X_COORDINATE": 483950.0, "Y_COORDINATE": 147087.0, "LATITUDE": 51.2168194, "LONGITUDE": -0.7993832 }, "geometry": { "type": "Point", "coordinates": [ 483950.0, 147087.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265965, "UPRN": 10091107271, "X_COORDINATE": 483950.0, "Y_COORDINATE": 147087.0, "LATITUDE": 51.2168194, "LONGITUDE": -0.7993832 }, "geometry": { "type": "Point", "coordinates": [ 483950.0, 147087.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448737, "UPRN": 10013895104, "X_COORDINATE": 483968.0, "Y_COORDINATE": 147106.0, "LATITUDE": 51.2169876, "LONGITUDE": -0.7991211 }, "geometry": { "type": "Point", "coordinates": [ 483968.0, 147106.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266119, "UPRN": 10091107429, "X_COORDINATE": 483916.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2170311, "LONGITUDE": -0.7998645 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721978, "UPRN": 100061600787, "X_COORDINATE": 483918.0, "Y_COORDINATE": 147042.0, "LATITUDE": 51.2164195, "LONGITUDE": -0.7998518 }, "geometry": { "type": "Point", "coordinates": [ 483918.0, 147042.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721979, "UPRN": 100061600788, "X_COORDINATE": 483922.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.216338, "LONGITUDE": -0.7997966 }, "geometry": { "type": "Point", "coordinates": [ 483922.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721980, "UPRN": 100061600789, "X_COORDINATE": 483930.0, "Y_COORDINATE": 147022.0, "LATITUDE": 51.216238, "LONGITUDE": -0.7996847 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 147022.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721985, "UPRN": 100061600794, "X_COORDINATE": 483955.0, "Y_COORDINATE": 146968.0, "LATITUDE": 51.2157488, "LONGITUDE": -0.7993394 }, "geometry": { "type": "Point", "coordinates": [ 483955.0, 146968.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216687, "UPRN": 100062353961, "X_COORDINATE": 483934.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.216588, "LONGITUDE": -0.7996183 }, "geometry": { "type": "Point", "coordinates": [ 483934.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216688, "UPRN": 100062353962, "X_COORDINATE": 483937.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.2165606, "LONGITUDE": -0.7995761 }, "geometry": { "type": "Point", "coordinates": [ 483937.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216689, "UPRN": 100062353963, "X_COORDINATE": 483927.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.2166969, "LONGITUDE": -0.7997157 }, "geometry": { "type": "Point", "coordinates": [ 483927.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216690, "UPRN": 100062353964, "X_COORDINATE": 483929.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166696, "LONGITUDE": -0.7996878 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216691, "UPRN": 100062353965, "X_COORDINATE": 483930.0, "Y_COORDINATE": 147067.0, "LATITUDE": 51.2166425, "LONGITUDE": -0.7996742 }, "geometry": { "type": "Point", "coordinates": [ 483930.0, 147067.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216692, "UPRN": 100062353966, "X_COORDINATE": 483932.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2166153, "LONGITUDE": -0.7996462 }, "geometry": { "type": "Point", "coordinates": [ 483932.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216962, "UPRN": 100062354394, "X_COORDINATE": 483950.0, "Y_COORDINATE": 146978.0, "LATITUDE": 51.2158395, "LONGITUDE": -0.7994087 }, "geometry": { "type": "Point", "coordinates": [ 483950.0, 146978.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216963, "UPRN": 100062354395, "X_COORDINATE": 483967.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2156212, "LONGITUDE": -0.7991709 }, "geometry": { "type": "Point", "coordinates": [ 483967.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217102, "UPRN": 100062354567, "X_COORDINATE": 483982.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164641, "LONGITUDE": -0.7989343 }, "geometry": { "type": "Point", "coordinates": [ 483982.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721962, "UPRN": 100061600771, "X_COORDINATE": 483830.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2166122, "LONGITUDE": -0.8011068 }, "geometry": { "type": "Point", "coordinates": [ 483830.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216845, "UPRN": 100062354155, "X_COORDINATE": 483836.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163596, "LONGITUDE": -0.8010274 }, "geometry": { "type": "Point", "coordinates": [ 483836.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216944, "UPRN": 100062354340, "X_COORDINATE": 483842.0, "Y_COORDINATE": 147037.0, "LATITUDE": 51.2163857, "LONGITUDE": -0.8009409 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 147037.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725891, "UPRN": 100061605082, "X_COORDINATE": 483845.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162774, "LONGITUDE": -0.8009007 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446077, "UPRN": 10013892379, "X_COORDINATE": 483845.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162774, "LONGITUDE": -0.8009007 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446076, "UPRN": 10013892378, "X_COORDINATE": 483845.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162774, "LONGITUDE": -0.8009007 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122270, "UPRN": 100062161747, "X_COORDINATE": 483857.0, "Y_COORDINATE": 147069.0, "LATITUDE": 51.2166712, "LONGITUDE": -0.8007187 }, "geometry": { "type": "Point", "coordinates": [ 483857.0, 147069.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216948, "UPRN": 100062354351, "X_COORDINATE": 483857.0, "Y_COORDINATE": 147069.0, "LATITUDE": 51.2166712, "LONGITUDE": -0.8007187 }, "geometry": { "type": "Point", "coordinates": [ 483857.0, 147069.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217085, "UPRN": 100062354543, "X_COORDINATE": 483857.0, "Y_COORDINATE": 147069.0, "LATITUDE": 51.2166712, "LONGITUDE": -0.8007187 }, "geometry": { "type": "Point", "coordinates": [ 483857.0, 147069.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217086, "UPRN": 100062354544, "X_COORDINATE": 483857.0, "Y_COORDINATE": 147069.0, "LATITUDE": 51.2166712, "LONGITUDE": -0.8007187 }, "geometry": { "type": "Point", "coordinates": [ 483857.0, 147069.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910495, "UPRN": 10094578911, "X_COORDINATE": 483860.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2166258, "LONGITUDE": -0.8006769 }, "geometry": { "type": "Point", "coordinates": [ 483860.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448022, "UPRN": 10013894381, "X_COORDINATE": 483862.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165986, "LONGITUDE": -0.800649 }, "geometry": { "type": "Point", "coordinates": [ 483862.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122267, "UPRN": 100062161744, "X_COORDINATE": 483862.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165986, "LONGITUDE": -0.800649 }, "geometry": { "type": "Point", "coordinates": [ 483862.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122268, "UPRN": 100062161745, "X_COORDINATE": 483862.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165986, "LONGITUDE": -0.800649 }, "geometry": { "type": "Point", "coordinates": [ 483862.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122269, "UPRN": 100062161746, "X_COORDINATE": 483862.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165986, "LONGITUDE": -0.800649 }, "geometry": { "type": "Point", "coordinates": [ 483862.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910494, "UPRN": 10094578910, "X_COORDINATE": 483863.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.2165714, "LONGITUDE": -0.8006353 }, "geometry": { "type": "Point", "coordinates": [ 483863.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446750, "UPRN": 10013893089, "X_COORDINATE": 483864.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2164005, "LONGITUDE": -0.8006255 }, "geometry": { "type": "Point", "coordinates": [ 483864.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217000, "UPRN": 100062354433, "X_COORDINATE": 483864.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2164005, "LONGITUDE": -0.8006255 }, "geometry": { "type": "Point", "coordinates": [ 483864.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721961, "UPRN": 100061600770, "X_COORDINATE": 483865.0, "Y_COORDINATE": 147052.0, "LATITUDE": 51.2165172, "LONGITUDE": -0.8006081 }, "geometry": { "type": "Point", "coordinates": [ 483865.0, 147052.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721960, "UPRN": 100061600769, "X_COORDINATE": 483867.0, "Y_COORDINATE": 147049.0, "LATITUDE": 51.2164899, "LONGITUDE": -0.8005802 }, "geometry": { "type": "Point", "coordinates": [ 483867.0, 147049.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446079, "UPRN": 10013892381, "X_COORDINATE": 483867.0, "Y_COORDINATE": 147049.0, "LATITUDE": 51.2164899, "LONGITUDE": -0.8005802 }, "geometry": { "type": "Point", "coordinates": [ 483867.0, 147049.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721959, "UPRN": 100061600768, "X_COORDINATE": 483870.0, "Y_COORDINATE": 147043.0, "LATITUDE": 51.2164356, "LONGITUDE": -0.8005386 }, "geometry": { "type": "Point", "coordinates": [ 483870.0, 147043.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721958, "UPRN": 100061600767, "X_COORDINATE": 483870.0, "Y_COORDINATE": 147043.0, "LATITUDE": 51.2164356, "LONGITUDE": -0.8005386 }, "geometry": { "type": "Point", "coordinates": [ 483870.0, 147043.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721957, "UPRN": 100061600766, "X_COORDINATE": 483870.0, "Y_COORDINATE": 147043.0, "LATITUDE": 51.2164356, "LONGITUDE": -0.8005386 }, "geometry": { "type": "Point", "coordinates": [ 483870.0, 147043.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399435, "UPRN": 100062699141, "X_COORDINATE": 483854.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2167256, "LONGITUDE": -0.8007602 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399436, "UPRN": 100062699144, "X_COORDINATE": 483853.0, "Y_COORDINATE": 147052.0, "LATITUDE": 51.216519, "LONGITUDE": -0.8007799 }, "geometry": { "type": "Point", "coordinates": [ 483853.0, 147052.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910493, "UPRN": 10094578909, "X_COORDINATE": 483853.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167707, "LONGITUDE": -0.8007734 }, "geometry": { "type": "Point", "coordinates": [ 483853.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721963, "UPRN": 100061600772, "X_COORDINATE": 483851.0, "Y_COORDINATE": 147084.0, "LATITUDE": 51.2168069, "LONGITUDE": -0.8008011 }, "geometry": { "type": "Point", "coordinates": [ 483851.0, 147084.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721974, "UPRN": 100061600783, "X_COORDINATE": 483897.0, "Y_COORDINATE": 147085.0, "LATITUDE": 51.2168092, "LONGITUDE": -0.8001424 }, "geometry": { "type": "Point", "coordinates": [ 483897.0, 147085.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450491, "UPRN": 10013896872, "X_COORDINATE": 483869.0, "Y_COORDINATE": 147086.0, "LATITUDE": 51.2168223, "LONGITUDE": -0.8005429 }, "geometry": { "type": "Point", "coordinates": [ 483869.0, 147086.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721964, "UPRN": 100061600773, "X_COORDINATE": 483850.0, "Y_COORDINATE": 147087.0, "LATITUDE": 51.2168341, "LONGITUDE": -0.8008147 }, "geometry": { "type": "Point", "coordinates": [ 483850.0, 147087.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721973, "UPRN": 100061600782, "X_COORDINATE": 483892.0, "Y_COORDINATE": 147088.0, "LATITUDE": 51.2168369, "LONGITUDE": -0.8002132 }, "geometry": { "type": "Point", "coordinates": [ 483892.0, 147088.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721965, "UPRN": 100061600774, "X_COORDINATE": 483847.0, "Y_COORDINATE": 147091.0, "LATITUDE": 51.2168705, "LONGITUDE": -0.8008567 }, "geometry": { "type": "Point", "coordinates": [ 483847.0, 147091.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721972, "UPRN": 100061600781, "X_COORDINATE": 483891.0, "Y_COORDINATE": 147094.0, "LATITUDE": 51.216891, "LONGITUDE": -0.8002261 }, "geometry": { "type": "Point", "coordinates": [ 483891.0, 147094.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721966, "UPRN": 100061600775, "X_COORDINATE": 483844.0, "Y_COORDINATE": 147095.0, "LATITUDE": 51.2169069, "LONGITUDE": -0.8008987 }, "geometry": { "type": "Point", "coordinates": [ 483844.0, 147095.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721967, "UPRN": 100061600776, "X_COORDINATE": 483840.0, "Y_COORDINATE": 147100.0, "LATITUDE": 51.2169524, "LONGITUDE": -0.8009548 }, "geometry": { "type": "Point", "coordinates": [ 483840.0, 147100.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721971, "UPRN": 100061600780, "X_COORDINATE": 483889.0, "Y_COORDINATE": 147101.0, "LATITUDE": 51.2169542, "LONGITUDE": -0.8002531 }, "geometry": { "type": "Point", "coordinates": [ 483889.0, 147101.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721968, "UPRN": 100061600777, "X_COORDINATE": 483838.0, "Y_COORDINATE": 147106.0, "LATITUDE": 51.2170066, "LONGITUDE": -0.800982 }, "geometry": { "type": "Point", "coordinates": [ 483838.0, 147106.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449354, "UPRN": 10013895727, "X_COORDINATE": 483968.0, "Y_COORDINATE": 147106.0, "LATITUDE": 51.2169876, "LONGITUDE": -0.7991211 }, "geometry": { "type": "Point", "coordinates": [ 483968.0, 147106.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721970, "UPRN": 100061600779, "X_COORDINATE": 483881.0, "Y_COORDINATE": 147109.0, "LATITUDE": 51.2170273, "LONGITUDE": -0.8003658 }, "geometry": { "type": "Point", "coordinates": [ 483881.0, 147109.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721969, "UPRN": 100061600778, "X_COORDINATE": 483832.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2170435, "LONGITUDE": -0.801067 }, "geometry": { "type": "Point", "coordinates": [ 483832.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448892, "UPRN": 10013895259, "X_COORDINATE": 483854.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2170402, "LONGITUDE": -0.800752 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721933, "UPRN": 100061600742, "X_COORDINATE": 483876.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2171449, "LONGITUDE": -0.8004343 }, "geometry": { "type": "Point", "coordinates": [ 483876.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17501591, "UPRN": 10024882309, "X_COORDINATE": 483808.55, "Y_COORDINATE": 147131.7, "LATITUDE": 51.217242, "LONGITUDE": -0.8013976 }, "geometry": { "type": "Point", "coordinates": [ 483808.549999999988358, 147131.700000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 31724899, "UPRN": 100061604050, "X_COORDINATE": 483968.0, "Y_COORDINATE": 147121.0, "LATITUDE": 51.2171224, "LONGITUDE": -0.7991176 }, "geometry": { "type": "Point", "coordinates": [ 483968.0, 147121.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724900, "UPRN": 100061604051, "X_COORDINATE": 483973.0, "Y_COORDINATE": 147125.0, "LATITUDE": 51.2171576, "LONGITUDE": -0.7990451 }, "geometry": { "type": "Point", "coordinates": [ 483973.0, 147125.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724902, "UPRN": 100061604053, "X_COORDINATE": 483978.0, "Y_COORDINATE": 147128.0, "LATITUDE": 51.2171839, "LONGITUDE": -0.7989728 }, "geometry": { "type": "Point", "coordinates": [ 483978.0, 147128.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724905, "UPRN": 100061604056, "X_COORDINATE": 483982.0, "Y_COORDINATE": 147131.0, "LATITUDE": 51.2172102, "LONGITUDE": -0.7989149 }, "geometry": { "type": "Point", "coordinates": [ 483982.0, 147131.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727528, "UPRN": 100061606792, "X_COORDINATE": 483916.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167614, "LONGITUDE": -0.7998715 }, "geometry": { "type": "Point", "coordinates": [ 483916.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727529, "UPRN": 100061606793, "X_COORDINATE": 483928.0, "Y_COORDINATE": 147088.0, "LATITUDE": 51.2168316, "LONGITUDE": -0.7996979 }, "geometry": { "type": "Point", "coordinates": [ 483928.0, 147088.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727530, "UPRN": 100061606794, "X_COORDINATE": 483935.0, "Y_COORDINATE": 147092.0, "LATITUDE": 51.2168665, "LONGITUDE": -0.7995968 }, "geometry": { "type": "Point", "coordinates": [ 483935.0, 147092.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727531, "UPRN": 100061606795, "X_COORDINATE": 483944.0, "Y_COORDINATE": 147101.0, "LATITUDE": 51.2169461, "LONGITUDE": -0.7994658 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 147101.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727532, "UPRN": 100061606796, "X_COORDINATE": 483951.0, "Y_COORDINATE": 147106.0, "LATITUDE": 51.21699, "LONGITUDE": -0.7993645 }, "geometry": { "type": "Point", "coordinates": [ 483951.0, 147106.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727533, "UPRN": 100061606797, "X_COORDINATE": 483948.0, "Y_COORDINATE": 147104.0, "LATITUDE": 51.2169725, "LONGITUDE": -0.7994079 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 147104.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727534, "UPRN": 100061606798, "X_COORDINATE": 483954.0, "Y_COORDINATE": 147108.0, "LATITUDE": 51.2170076, "LONGITUDE": -0.799321 }, "geometry": { "type": "Point", "coordinates": [ 483954.0, 147108.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727535, "UPRN": 100061606799, "X_COORDINATE": 483959.0, "Y_COORDINATE": 147112.0, "LATITUDE": 51.2170428, "LONGITUDE": -0.7992485 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 147112.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727536, "UPRN": 100061606800, "X_COORDINATE": 483948.0, "Y_COORDINATE": 147125.0, "LATITUDE": 51.2171613, "LONGITUDE": -0.799403 }, "geometry": { "type": "Point", "coordinates": [ 483948.0, 147125.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727537, "UPRN": 100061606801, "X_COORDINATE": 483946.0, "Y_COORDINATE": 147127.0, "LATITUDE": 51.2171796, "LONGITUDE": -0.7994311 }, "geometry": { "type": "Point", "coordinates": [ 483946.0, 147127.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216616, "UPRN": 100062353854, "X_COORDINATE": 483945.0, "Y_COORDINATE": 147081.0, "LATITUDE": 51.2167662, "LONGITUDE": -0.7994562 }, "geometry": { "type": "Point", "coordinates": [ 483945.0, 147081.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449307, "UPRN": 10013895678, "X_COORDINATE": 483839.0, "Y_COORDINATE": 146930.0, "LATITUDE": 51.2154242, "LONGITUDE": -0.8010088 }, "geometry": { "type": "Point", "coordinates": [ 483839.0, 146930.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449543, "UPRN": 10013895916, "X_COORDINATE": 483841.0, "Y_COORDINATE": 146931.0, "LATITUDE": 51.2154329, "LONGITUDE": -0.8009799 }, "geometry": { "type": "Point", "coordinates": [ 483841.0, 146931.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449545, "UPRN": 10013895918, "X_COORDINATE": 483841.0, "Y_COORDINATE": 146931.0, "LATITUDE": 51.2154329, "LONGITUDE": -0.8009799 }, "geometry": { "type": "Point", "coordinates": [ 483841.0, 146931.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17501587, "UPRN": 10024882305, "X_COORDINATE": 483856.1, "Y_COORDINATE": 146936.7, "LATITUDE": 51.2154819, "LONGITUDE": -0.8007624 }, "geometry": { "type": "Point", "coordinates": [ 483856.099999999976717, 146936.700000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 31725873, "UPRN": 100061605064, "X_COORDINATE": 483823.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2155165, "LONGITUDE": -0.8012355 }, "geometry": { "type": "Point", "coordinates": [ 483823.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725875, "UPRN": 100061605066, "X_COORDINATE": 483820.0, "Y_COORDINATE": 146946.0, "LATITUDE": 51.2155709, "LONGITUDE": -0.801277 }, "geometry": { "type": "Point", "coordinates": [ 483820.0, 146946.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725877, "UPRN": 100061605068, "X_COORDINATE": 483815.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2156345, "LONGITUDE": -0.8013469 }, "geometry": { "type": "Point", "coordinates": [ 483815.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725898, "UPRN": 100061605089, "X_COORDINATE": 483855.0, "Y_COORDINATE": 146967.0, "LATITUDE": 51.2157545, "LONGITUDE": -0.8007711 }, "geometry": { "type": "Point", "coordinates": [ 483855.0, 146967.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725897, "UPRN": 100061605088, "X_COORDINATE": 483850.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.2158002, "LONGITUDE": -0.8008415 }, "geometry": { "type": "Point", "coordinates": [ 483850.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725878, "UPRN": 100061605069, "X_COORDINATE": 483807.0, "Y_COORDINATE": 146978.0, "LATITUDE": 51.2158604, "LONGITUDE": -0.8014556 }, "geometry": { "type": "Point", "coordinates": [ 483807.0, 146978.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725896, "UPRN": 100061605087, "X_COORDINATE": 483847.0, "Y_COORDINATE": 146978.0, "LATITUDE": 51.2158546, "LONGITUDE": -0.800883 }, "geometry": { "type": "Point", "coordinates": [ 483847.0, 146978.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725895, "UPRN": 100061605086, "X_COORDINATE": 483843.0, "Y_COORDINATE": 146983.0, "LATITUDE": 51.2159001, "LONGITUDE": -0.8009391 }, "geometry": { "type": "Point", "coordinates": [ 483843.0, 146983.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725880, "UPRN": 100061605071, "X_COORDINATE": 483803.0, "Y_COORDINATE": 146987.0, "LATITUDE": 51.2159419, "LONGITUDE": -0.8015108 }, "geometry": { "type": "Point", "coordinates": [ 483803.0, 146987.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725894, "UPRN": 100061605085, "X_COORDINATE": 483842.0, "Y_COORDINATE": 146988.0, "LATITUDE": 51.2159452, "LONGITUDE": -0.8009523 }, "geometry": { "type": "Point", "coordinates": [ 483842.0, 146988.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725893, "UPRN": 100061605084, "X_COORDINATE": 483841.0, "Y_COORDINATE": 146993.0, "LATITUDE": 51.2159903, "LONGITUDE": -0.8009654 }, "geometry": { "type": "Point", "coordinates": [ 483841.0, 146993.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725892, "UPRN": 100061605083, "X_COORDINATE": 483836.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.216018, "LONGITUDE": -0.8010363 }, "geometry": { "type": "Point", "coordinates": [ 483836.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725888, "UPRN": 100061605079, "X_COORDINATE": 483853.0, "Y_COORDINATE": 147001.0, "LATITUDE": 51.2160605, "LONGITUDE": -0.8007918 }, "geometry": { "type": "Point", "coordinates": [ 483853.0, 147001.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725890, "UPRN": 100061605081, "X_COORDINATE": 483852.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160966, "LONGITUDE": -0.8008052 }, "geometry": { "type": "Point", "coordinates": [ 483852.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725889, "UPRN": 100061605080, "X_COORDINATE": 483848.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2161331, "LONGITUDE": -0.8008615 }, "geometry": { "type": "Point", "coordinates": [ 483848.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725899, "UPRN": 100061605090, "X_COORDINATE": 483859.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.215646, "LONGITUDE": -0.8007166 }, "geometry": { "type": "Point", "coordinates": [ 483859.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725900, "UPRN": 100061605091, "X_COORDINATE": 483838.0, "Y_COORDINATE": 146961.0, "LATITUDE": 51.2157031, "LONGITUDE": -0.8010158 }, "geometry": { "type": "Point", "coordinates": [ 483838.0, 146961.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725901, "UPRN": 100061605092, "X_COORDINATE": 483835.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2157395, "LONGITUDE": -0.8010579 }, "geometry": { "type": "Point", "coordinates": [ 483835.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725902, "UPRN": 100061605093, "X_COORDINATE": 483831.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.215803, "LONGITUDE": -0.8011135 }, "geometry": { "type": "Point", "coordinates": [ 483831.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725903, "UPRN": 100061605094, "X_COORDINATE": 483831.0, "Y_COORDINATE": 146972.0, "LATITUDE": 51.215803, "LONGITUDE": -0.8011135 }, "geometry": { "type": "Point", "coordinates": [ 483831.0, 146972.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725904, "UPRN": 100061605095, "X_COORDINATE": 483811.0, "Y_COORDINATE": 147024.0, "LATITUDE": 51.2162734, "LONGITUDE": -0.8013876 }, "geometry": { "type": "Point", "coordinates": [ 483811.0, 147024.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725905, "UPRN": 100061605096, "X_COORDINATE": 483805.0, "Y_COORDINATE": 147041.0, "LATITUDE": 51.2164271, "LONGITUDE": -0.8014696 }, "geometry": { "type": "Point", "coordinates": [ 483805.0, 147041.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725908, "UPRN": 100061605099, "X_COORDINATE": 483812.0, "Y_COORDINATE": 146963.0, "LATITUDE": 51.2157249, "LONGITUDE": -0.8013875 }, "geometry": { "type": "Point", "coordinates": [ 483812.0, 146963.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122581, "UPRN": 100062162221, "X_COORDINATE": 483844.0, "Y_COORDINATE": 146952.0, "LATITUDE": 51.2156213, "LONGITUDE": -0.8009321 }, "geometry": { "type": "Point", "coordinates": [ 483844.0, 146952.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216941, "UPRN": 100062354337, "X_COORDINATE": 483853.0, "Y_COORDINATE": 146994.0, "LATITUDE": 51.2159975, "LONGITUDE": -0.8007934 }, "geometry": { "type": "Point", "coordinates": [ 483853.0, 146994.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216942, "UPRN": 100062354338, "X_COORDINATE": 483859.0, "Y_COORDINATE": 146997.0, "LATITUDE": 51.2160236, "LONGITUDE": -0.8007068 }, "geometry": { "type": "Point", "coordinates": [ 483859.0, 146997.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216945, "UPRN": 100062354341, "X_COORDINATE": 483829.0, "Y_COORDINATE": 147030.0, "LATITUDE": 51.2163247, "LONGITUDE": -0.8011286 }, "geometry": { "type": "Point", "coordinates": [ 483829.0, 147030.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721956, "UPRN": 100061600765, "X_COORDINATE": 483875.0, "Y_COORDINATE": 147041.0, "LATITUDE": 51.2164168, "LONGITUDE": -0.8004675 }, "geometry": { "type": "Point", "coordinates": [ 483875.0, 147041.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721955, "UPRN": 100061600764, "X_COORDINATE": 483877.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163896, "LONGITUDE": -0.8004396 }, "geometry": { "type": "Point", "coordinates": [ 483877.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721954, "UPRN": 100061600763, "X_COORDINATE": 483880.0, "Y_COORDINATE": 147035.0, "LATITUDE": 51.2163622, "LONGITUDE": -0.8003974 }, "geometry": { "type": "Point", "coordinates": [ 483880.0, 147035.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721953, "UPRN": 100061600762, "X_COORDINATE": 483883.0, "Y_COORDINATE": 147031.0, "LATITUDE": 51.2163258, "LONGITUDE": -0.8003554 }, "geometry": { "type": "Point", "coordinates": [ 483883.0, 147031.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721952, "UPRN": 100061600761, "X_COORDINATE": 483885.0, "Y_COORDINATE": 147028.0, "LATITUDE": 51.2162985, "LONGITUDE": -0.8003274 }, "geometry": { "type": "Point", "coordinates": [ 483885.0, 147028.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721951, "UPRN": 100061600760, "X_COORDINATE": 483887.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162712, "LONGITUDE": -0.8002995 }, "geometry": { "type": "Point", "coordinates": [ 483887.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449786, "UPRN": 10013896161, "X_COORDINATE": 483887.0, "Y_COORDINATE": 147055.0, "LATITUDE": 51.2165409, "LONGITUDE": -0.8002925 }, "geometry": { "type": "Point", "coordinates": [ 483887.0, 147055.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216693, "UPRN": 100062353967, "X_COORDINATE": 483898.0, "Y_COORDINATE": 147074.0, "LATITUDE": 51.2167101, "LONGITUDE": -0.8001306 }, "geometry": { "type": "Point", "coordinates": [ 483898.0, 147074.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721975, "UPRN": 100061600784, "X_COORDINATE": 483906.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2166011, "LONGITUDE": -0.8000189 }, "geometry": { "type": "Point", "coordinates": [ 483906.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15893704, "UPRN": 10015313589, "X_COORDINATE": 483908.35, "Y_COORDINATE": 147037.85, "LATITUDE": 51.2163836, "LONGITUDE": -0.7999909 }, "geometry": { "type": "Point", "coordinates": [ 483908.349999999976717, 147037.85 ] } }, -{ "type": "Feature", "properties": { "FID": 21909381, "UPRN": 10094577795, "X_COORDINATE": 483909.0, "Y_COORDINATE": 147036.0, "LATITUDE": 51.2163669, "LONGITUDE": -0.799982 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 147036.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909380, "UPRN": 10094577794, "X_COORDINATE": 483909.0, "Y_COORDINATE": 147036.0, "LATITUDE": 51.2163669, "LONGITUDE": -0.799982 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 147036.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17498505, "UPRN": 10024878477, "X_COORDINATE": 483909.05, "Y_COORDINATE": 147036.55, "LATITUDE": 51.2163718, "LONGITUDE": -0.7999812 }, "geometry": { "type": "Point", "coordinates": [ 483909.049999999988358, 147036.549999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 31721976, "UPRN": 100061600785, "X_COORDINATE": 483910.0, "Y_COORDINATE": 147057.0, "LATITUDE": 51.2165556, "LONGITUDE": -0.7999628 }, "geometry": { "type": "Point", "coordinates": [ 483910.0, 147057.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217001, "UPRN": 100062354434, "X_COORDINATE": 483912.0, "Y_COORDINATE": 147078.0, "LATITUDE": 51.2167441, "LONGITUDE": -0.7999293 }, "geometry": { "type": "Point", "coordinates": [ 483912.0, 147078.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721977, "UPRN": 100061600786, "X_COORDINATE": 483914.0, "Y_COORDINATE": 147048.0, "LATITUDE": 51.2164741, "LONGITUDE": -0.7999076 }, "geometry": { "type": "Point", "coordinates": [ 483914.0, 147048.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367222, "UPRN": 100062609509, "X_COORDINATE": 483909.0, "Y_COORDINATE": 147076.0, "LATITUDE": 51.2167265, "LONGITUDE": -0.7999727 }, "geometry": { "type": "Point", "coordinates": [ 483909.0, 147076.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910945, "UPRN": 10094579368, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150437, "LONGITUDE": -0.7998589 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729966, "UPRN": 100061609413, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.2148729, "LONGITUDE": -0.7998633 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267703, "UPRN": 10091109024, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.2148729, "LONGITUDE": -0.7998633 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216915, "UPRN": 100062354295, "X_COORDINATE": 483920.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.2148729, "LONGITUDE": -0.7998633 }, "geometry": { "type": "Point", "coordinates": [ 483920.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269456, "UPRN": 10091110780, "X_COORDINATE": 483929.0, "Y_COORDINATE": 146888.0, "LATITUDE": 51.2150334, "LONGITUDE": -0.7997303 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 146888.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444009, "UPRN": 10013890127, "X_COORDINATE": 483929.0, "Y_COORDINATE": 146888.0, "LATITUDE": 51.2150334, "LONGITUDE": -0.7997303 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 146888.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444008, "UPRN": 10013890126, "X_COORDINATE": 483929.0, "Y_COORDINATE": 146888.0, "LATITUDE": 51.2150334, "LONGITUDE": -0.7997303 }, "geometry": { "type": "Point", "coordinates": [ 483929.0, 146888.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122771, "UPRN": 100062162629, "X_COORDINATE": 483933.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.214853, "LONGITUDE": -0.7996777 }, "geometry": { "type": "Point", "coordinates": [ 483933.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122772, "UPRN": 100062162630, "X_COORDINATE": 483933.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.214853, "LONGITUDE": -0.7996777 }, "geometry": { "type": "Point", "coordinates": [ 483933.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217108, "UPRN": 100062354576, "X_COORDINATE": 483940.0, "Y_COORDINATE": 146867.0, "LATITUDE": 51.214843, "LONGITUDE": -0.7995777 }, "geometry": { "type": "Point", "coordinates": [ 483940.0, 146867.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217072, "UPRN": 100062354526, "X_COORDINATE": 483942.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151574, "LONGITUDE": -0.7995409 }, "geometry": { "type": "Point", "coordinates": [ 483942.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267008, "UPRN": 10091108324, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2151031, "LONGITUDE": -0.7995137 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217121, "UPRN": 100062354601, "X_COORDINATE": 483944.0, "Y_COORDINATE": 146872.0, "LATITUDE": 51.2148874, "LONGITUDE": -0.7995193 }, "geometry": { "type": "Point", "coordinates": [ 483944.0, 146872.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267006, "UPRN": 10091108322, "X_COORDINATE": 483952.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.215102, "LONGITUDE": -0.7993992 }, "geometry": { "type": "Point", "coordinates": [ 483952.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267007, "UPRN": 10091108323, "X_COORDINATE": 483954.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151556, "LONGITUDE": -0.7993692 }, "geometry": { "type": "Point", "coordinates": [ 483954.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448469, "UPRN": 10013894829, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.215074, "LONGITUDE": -0.7992997 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267010, "UPRN": 10091108326, "X_COORDINATE": 483959.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.215083, "LONGITUDE": -0.7992995 }, "geometry": { "type": "Point", "coordinates": [ 483959.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15451409, "UPRN": 10013898277, "X_COORDINATE": 483960.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2150019, "LONGITUDE": -0.7992873 }, "geometry": { "type": "Point", "coordinates": [ 483960.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267009, "UPRN": 10091108325, "X_COORDINATE": 483961.0, "Y_COORDINATE": 146890.0, "LATITUDE": 51.2150467, "LONGITUDE": -0.7992718 }, "geometry": { "type": "Point", "coordinates": [ 483961.0, 146890.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267011, "UPRN": 10091108327, "X_COORDINATE": 483963.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2150644, "LONGITUDE": -0.7992427 }, "geometry": { "type": "Point", "coordinates": [ 483963.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216659, "UPRN": 100062353923, "X_COORDINATE": 483966.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.215001, "LONGITUDE": -0.7992014 }, "geometry": { "type": "Point", "coordinates": [ 483966.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20268169, "UPRN": 10091109490, "X_COORDINATE": 483991.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151502, "LONGITUDE": -0.7988395 }, "geometry": { "type": "Point", "coordinates": [ 483991.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267398, "UPRN": 10091108715, "X_COORDINATE": 483993.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.2148442, "LONGITUDE": -0.7988189 }, "geometry": { "type": "Point", "coordinates": [ 483993.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216854, "UPRN": 100062354174, "X_COORDINATE": 484000.0, "Y_COORDINATE": 146871.0, "LATITUDE": 51.2148702, "LONGITUDE": -0.798718 }, "geometry": { "type": "Point", "coordinates": [ 484000.0, 146871.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216892, "UPRN": 100062354247, "X_COORDINATE": 484005.0, "Y_COORDINATE": 146876.0, "LATITUDE": 51.2149144, "LONGITUDE": -0.7986452 }, "geometry": { "type": "Point", "coordinates": [ 484005.0, 146876.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217029, "UPRN": 100062354474, "X_COORDINATE": 484038.05, "Y_COORDINATE": 146868.46, "LATITUDE": 51.2148417, "LONGITUDE": -0.7981739 }, "geometry": { "type": "Point", "coordinates": [ 484038.049999999988358, 146868.46 ] } }, -{ "type": "Feature", "properties": { "FID": 32217132, "UPRN": 100062354619, "X_COORDINATE": 483954.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151556, "LONGITUDE": -0.7993692 }, "geometry": { "type": "Point", "coordinates": [ 483954.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217157, "UPRN": 100062354663, "X_COORDINATE": 484021.0, "Y_COORDINATE": 146871.0, "LATITUDE": 51.2148671, "LONGITUDE": -0.7984174 }, "geometry": { "type": "Point", "coordinates": [ 484021.0, 146871.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217162, "UPRN": 100062354670, "X_COORDINATE": 483960.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2150019, "LONGITUDE": -0.7992873 }, "geometry": { "type": "Point", "coordinates": [ 483960.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217164, "UPRN": 100062354672, "X_COORDINATE": 483933.0, "Y_COORDINATE": 146868.0, "LATITUDE": 51.214853, "LONGITUDE": -0.7996777 }, "geometry": { "type": "Point", "coordinates": [ 483933.0, 146868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216853, "UPRN": 100062354172, "X_COORDINATE": 484017.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150295, "LONGITUDE": -0.7984704 }, "geometry": { "type": "Point", "coordinates": [ 484017.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216910, "UPRN": 100062354289, "X_COORDINATE": 484018.0, "Y_COORDINATE": 146917.0, "LATITUDE": 51.2152811, "LONGITUDE": -0.7984496 }, "geometry": { "type": "Point", "coordinates": [ 484018.0, 146917.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216911, "UPRN": 100062354290, "X_COORDINATE": 484022.0, "Y_COORDINATE": 146920.0, "LATITUDE": 51.2153074, "LONGITUDE": -0.7983916 }, "geometry": { "type": "Point", "coordinates": [ 484022.0, 146920.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216852, "UPRN": 100062354171, "X_COORDINATE": 484025.0, "Y_COORDINATE": 146887.0, "LATITUDE": 51.2150103, "LONGITUDE": -0.7983564 }, "geometry": { "type": "Point", "coordinates": [ 484025.0, 146887.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216851, "UPRN": 100062354170, "X_COORDINATE": 484027.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.215073, "LONGITUDE": -0.7983261 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911848, "UPRN": 10094580321, "X_COORDINATE": 484033.0, "Y_COORDINATE": 146886.0, "LATITUDE": 51.2150002, "LONGITUDE": -0.7982421 }, "geometry": { "type": "Point", "coordinates": [ 484033.0, 146886.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217130, "UPRN": 100062354617, "X_COORDINATE": 484039.0, "Y_COORDINATE": 146893.0, "LATITUDE": 51.2150622, "LONGITUDE": -0.7981546 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 146893.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216847, "UPRN": 100062354166, "X_COORDINATE": 484042.0, "Y_COORDINATE": 146934.0, "LATITUDE": 51.2154304, "LONGITUDE": -0.798102 }, "geometry": { "type": "Point", "coordinates": [ 484042.0, 146934.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217155, "UPRN": 100062354661, "X_COORDINATE": 484042.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151427, "LONGITUDE": -0.7981095 }, "geometry": { "type": "Point", "coordinates": [ 484042.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216641, "UPRN": 100062353890, "X_COORDINATE": 484047.0, "Y_COORDINATE": 146912.0, "LATITUDE": 51.2152318, "LONGITUDE": -0.7980356 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 146912.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216848, "UPRN": 100062354167, "X_COORDINATE": 484048.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2154654, "LONGITUDE": -0.7980152 }, "geometry": { "type": "Point", "coordinates": [ 484048.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217088, "UPRN": 100062354549, "X_COORDINATE": 484055.0, "Y_COORDINATE": 146913.0, "LATITUDE": 51.2152397, "LONGITUDE": -0.7979209 }, "geometry": { "type": "Point", "coordinates": [ 484055.0, 146913.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216850, "UPRN": 100062354169, "X_COORDINATE": 484062.0, "Y_COORDINATE": 146922.0, "LATITUDE": 51.2153195, "LONGITUDE": -0.7978186 }, "geometry": { "type": "Point", "coordinates": [ 484062.0, 146922.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367252, "UPRN": 100062609570, "X_COORDINATE": 484049.0, "Y_COORDINATE": 146902.0, "LATITUDE": 51.2151417, "LONGITUDE": -0.7980093 }, "geometry": { "type": "Point", "coordinates": [ 484049.0, 146902.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367253, "UPRN": 100062609571, "X_COORDINATE": 484040.82, "Y_COORDINATE": 146892.32, "LATITUDE": 51.2150558, "LONGITUDE": -0.7981287 }, "geometry": { "type": "Point", "coordinates": [ 484040.82, 146892.32 ] } }, -{ "type": "Feature", "properties": { "FID": 32367254, "UPRN": 100062609572, "X_COORDINATE": 484039.83, "Y_COORDINATE": 146891.33, "LATITUDE": 51.2150471, "LONGITUDE": -0.7981431 }, "geometry": { "type": "Point", "coordinates": [ 484039.830000000016298, 146891.329999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 32367255, "UPRN": 100062609573, "X_COORDINATE": 484027.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.215073, "LONGITUDE": -0.7983261 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367256, "UPRN": 100062609574, "X_COORDINATE": 484027.0, "Y_COORDINATE": 146894.0, "LATITUDE": 51.215073, "LONGITUDE": -0.7983261 }, "geometry": { "type": "Point", "coordinates": [ 484027.0, 146894.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910067, "UPRN": 10094578483, "X_COORDINATE": 484109.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160139, "LONGITUDE": -0.7971276 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910122, "UPRN": 10094578538, "X_COORDINATE": 484109.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160139, "LONGITUDE": -0.7971276 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910164, "UPRN": 10094578580, "X_COORDINATE": 484109.0, "Y_COORDINATE": 147000.0, "LATITUDE": 51.2160139, "LONGITUDE": -0.7971276 }, "geometry": { "type": "Point", "coordinates": [ 484109.0, 147000.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910163, "UPRN": 10094578579, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147006.0, "LATITUDE": 51.2160669, "LONGITUDE": -0.7970403 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147006.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910121, "UPRN": 10094578537, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147006.0, "LATITUDE": 51.2160669, "LONGITUDE": -0.7970403 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147006.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910066, "UPRN": 10094578482, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147006.0, "LATITUDE": 51.2160669, "LONGITUDE": -0.7970403 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147006.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910162, "UPRN": 10094578578, "X_COORDINATE": 484120.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161021, "LONGITUDE": -0.7969678 }, "geometry": { "type": "Point", "coordinates": [ 484120.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910120, "UPRN": 10094578536, "X_COORDINATE": 484120.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161021, "LONGITUDE": -0.7969678 }, "geometry": { "type": "Point", "coordinates": [ 484120.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910065, "UPRN": 10094578481, "X_COORDINATE": 484120.0, "Y_COORDINATE": 147010.0, "LATITUDE": 51.2161021, "LONGITUDE": -0.7969678 }, "geometry": { "type": "Point", "coordinates": [ 484120.0, 147010.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910161, "UPRN": 10094578577, "X_COORDINATE": 484113.0, "Y_COORDINATE": 147015.0, "LATITUDE": 51.2161481, "LONGITUDE": -0.7970668 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 147015.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910118, "UPRN": 10094578534, "X_COORDINATE": 484113.0, "Y_COORDINATE": 147015.0, "LATITUDE": 51.2161481, "LONGITUDE": -0.7970668 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 147015.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910047, "UPRN": 10094578463, "X_COORDINATE": 484115.0, "Y_COORDINATE": 147015.0, "LATITUDE": 51.2161478, "LONGITUDE": -0.7970382 }, "geometry": { "type": "Point", "coordinates": [ 484115.0, 147015.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910063, "UPRN": 10094578479, "X_COORDINATE": 484113.0, "Y_COORDINATE": 147015.0, "LATITUDE": 51.2161481, "LONGITUDE": -0.7970668 }, "geometry": { "type": "Point", "coordinates": [ 484113.0, 147015.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399523, "UPRN": 100062699301, "X_COORDINATE": 484117.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161655, "LONGITUDE": -0.7970091 }, "geometry": { "type": "Point", "coordinates": [ 484117.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910160, "UPRN": 10094578576, "X_COORDINATE": 484108.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161668, "LONGITUDE": -0.7971379 }, "geometry": { "type": "Point", "coordinates": [ 484108.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910119, "UPRN": 10094578535, "X_COORDINATE": 484124.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161645, "LONGITUDE": -0.7969089 }, "geometry": { "type": "Point", "coordinates": [ 484124.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910064, "UPRN": 10094578480, "X_COORDINATE": 484124.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161645, "LONGITUDE": -0.7969089 }, "geometry": { "type": "Point", "coordinates": [ 484124.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443962, "UPRN": 10013890058, "X_COORDINATE": 484127.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2162, "LONGITUDE": -0.796865 }, "geometry": { "type": "Point", "coordinates": [ 484127.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910135, "UPRN": 10094578551, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147022.0, "LATITUDE": 51.2162087, "LONGITUDE": -0.7968361 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147022.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910080, "UPRN": 10094578496, "X_COORDINATE": 484129.0, "Y_COORDINATE": 147022.0, "LATITUDE": 51.2162087, "LONGITUDE": -0.7968361 }, "geometry": { "type": "Point", "coordinates": [ 484129.0, 147022.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266419, "UPRN": 10091107731, "X_COORDINATE": 484125.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2162363, "LONGITUDE": -0.7968927 }, "geometry": { "type": "Point", "coordinates": [ 484125.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910048, "UPRN": 10094578464, "X_COORDINATE": 484131.0, "Y_COORDINATE": 147026.0, "LATITUDE": 51.2162444, "LONGITUDE": -0.7968066 }, "geometry": { "type": "Point", "coordinates": [ 484131.0, 147026.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910174, "UPRN": 10094578590, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162528, "LONGITUDE": -0.7967491 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910134, "UPRN": 10094578550, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162528, "LONGITUDE": -0.7967491 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910079, "UPRN": 10094578495, "X_COORDINATE": 484135.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162528, "LONGITUDE": -0.7967491 }, "geometry": { "type": "Point", "coordinates": [ 484135.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727750, "UPRN": 100061607017, "X_COORDINATE": 483557.0, "Y_COORDINATE": 146524.0, "LATITUDE": 51.2118155, "LONGITUDE": -0.8051397 }, "geometry": { "type": "Point", "coordinates": [ 483557.0, 146524.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727749, "UPRN": 100061607016, "X_COORDINATE": 483593.0, "Y_COORDINATE": 146492.0, "LATITUDE": 51.2115226, "LONGITUDE": -0.8046319 }, "geometry": { "type": "Point", "coordinates": [ 483593.0, 146492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727748, "UPRN": 100061607015, "X_COORDINATE": 483557.0, "Y_COORDINATE": 146520.0, "LATITUDE": 51.2117795, "LONGITUDE": -0.8051407 }, "geometry": { "type": "Point", "coordinates": [ 483557.0, 146520.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727747, "UPRN": 100061607014, "X_COORDINATE": 483597.0, "Y_COORDINATE": 146492.0, "LATITUDE": 51.211522, "LONGITUDE": -0.8045747 }, "geometry": { "type": "Point", "coordinates": [ 483597.0, 146492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727746, "UPRN": 100061607013, "X_COORDINATE": 483557.0, "Y_COORDINATE": 146516.0, "LATITUDE": 51.2117436, "LONGITUDE": -0.8051416 }, "geometry": { "type": "Point", "coordinates": [ 483557.0, 146516.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727745, "UPRN": 100061607012, "X_COORDINATE": 483601.0, "Y_COORDINATE": 146492.0, "LATITUDE": 51.2115214, "LONGITUDE": -0.8045174 }, "geometry": { "type": "Point", "coordinates": [ 483601.0, 146492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727744, "UPRN": 100061607011, "X_COORDINATE": 483555.0, "Y_COORDINATE": 146512.0, "LATITUDE": 51.2117079, "LONGITUDE": -0.8051712 }, "geometry": { "type": "Point", "coordinates": [ 483555.0, 146512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727743, "UPRN": 100061607010, "X_COORDINATE": 483603.0, "Y_COORDINATE": 146461.0, "LATITUDE": 51.2112424, "LONGITUDE": -0.804496 }, "geometry": { "type": "Point", "coordinates": [ 483603.0, 146461.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727742, "UPRN": 100061607009, "X_COORDINATE": 483555.0, "Y_COORDINATE": 146508.0, "LATITUDE": 51.211672, "LONGITUDE": -0.8051721 }, "geometry": { "type": "Point", "coordinates": [ 483555.0, 146508.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727741, "UPRN": 100061607008, "X_COORDINATE": 483599.0, "Y_COORDINATE": 146460.0, "LATITUDE": 51.211234, "LONGITUDE": -0.8045535 }, "geometry": { "type": "Point", "coordinates": [ 483599.0, 146460.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727740, "UPRN": 100061607007, "X_COORDINATE": 483594.0, "Y_COORDINATE": 146460.0, "LATITUDE": 51.2112347, "LONGITUDE": -0.804625 }, "geometry": { "type": "Point", "coordinates": [ 483594.0, 146460.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722669, "UPRN": 100061601568, "X_COORDINATE": 483602.0, "Y_COORDINATE": 146418.0, "LATITUDE": 51.210856, "LONGITUDE": -0.8045203 }, "geometry": { "type": "Point", "coordinates": [ 483602.0, 146418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722668, "UPRN": 100061601567, "X_COORDINATE": 483555.0, "Y_COORDINATE": 146456.0, "LATITUDE": 51.2112045, "LONGITUDE": -0.8051842 }, "geometry": { "type": "Point", "coordinates": [ 483555.0, 146456.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722665, "UPRN": 100061601564, "X_COORDINATE": 483604.0, "Y_COORDINATE": 146427.0, "LATITUDE": 51.2109366, "LONGITUDE": -0.8044896 }, "geometry": { "type": "Point", "coordinates": [ 483604.0, 146427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722663, "UPRN": 100061601562, "X_COORDINATE": 483604.0, "Y_COORDINATE": 146430.0, "LATITUDE": 51.2109636, "LONGITUDE": -0.8044889 }, "geometry": { "type": "Point", "coordinates": [ 483604.0, 146430.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722667, "UPRN": 100061601566, "X_COORDINATE": 483602.0, "Y_COORDINATE": 146422.0, "LATITUDE": 51.2108919, "LONGITUDE": -0.8045194 }, "geometry": { "type": "Point", "coordinates": [ 483602.0, 146422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722661, "UPRN": 100061601560, "X_COORDINATE": 483586.0, "Y_COORDINATE": 146426.0, "LATITUDE": 51.2109302, "LONGITUDE": -0.8047474 }, "geometry": { "type": "Point", "coordinates": [ 483586.0, 146426.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722659, "UPRN": 100061601558, "X_COORDINATE": 483581.0, "Y_COORDINATE": 146425.0, "LATITUDE": 51.210922, "LONGITUDE": -0.8048192 }, "geometry": { "type": "Point", "coordinates": [ 483581.0, 146425.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722657, "UPRN": 100061601556, "X_COORDINATE": 483574.0, "Y_COORDINATE": 146427.0, "LATITUDE": 51.210941, "LONGITUDE": -0.804919 }, "geometry": { "type": "Point", "coordinates": [ 483574.0, 146427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722655, "UPRN": 100061601554, "X_COORDINATE": 483565.0, "Y_COORDINATE": 146426.0, "LATITUDE": 51.2109333, "LONGITUDE": -0.805048 }, "geometry": { "type": "Point", "coordinates": [ 483565.0, 146426.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722666, "UPRN": 100061601565, "X_COORDINATE": 483550.0, "Y_COORDINATE": 146455.0, "LATITUDE": 51.2111962, "LONGITUDE": -0.805256 }, "geometry": { "type": "Point", "coordinates": [ 483550.0, 146455.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722649, "UPRN": 100061601548, "X_COORDINATE": 483549.0, "Y_COORDINATE": 146419.0, "LATITUDE": 51.2108727, "LONGITUDE": -0.8052786 }, "geometry": { "type": "Point", "coordinates": [ 483549.0, 146419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722651, "UPRN": 100061601550, "X_COORDINATE": 483548.0, "Y_COORDINATE": 146424.0, "LATITUDE": 51.2109178, "LONGITUDE": -0.8052918 }, "geometry": { "type": "Point", "coordinates": [ 483548.0, 146424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722664, "UPRN": 100061601563, "X_COORDINATE": 483545.0, "Y_COORDINATE": 146454.0, "LATITUDE": 51.2111879, "LONGITUDE": -0.8053278 }, "geometry": { "type": "Point", "coordinates": [ 483545.0, 146454.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722653, "UPRN": 100061601552, "X_COORDINATE": 483544.0, "Y_COORDINATE": 146427.0, "LATITUDE": 51.2109454, "LONGITUDE": -0.8053484 }, "geometry": { "type": "Point", "coordinates": [ 483544.0, 146427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722662, "UPRN": 100061601561, "X_COORDINATE": 483540.0, "Y_COORDINATE": 146453.0, "LATITUDE": 51.2111797, "LONGITUDE": -0.8053996 }, "geometry": { "type": "Point", "coordinates": [ 483540.0, 146453.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722660, "UPRN": 100061601559, "X_COORDINATE": 483534.0, "Y_COORDINATE": 146453.0, "LATITUDE": 51.2111806, "LONGITUDE": -0.8054854 }, "geometry": { "type": "Point", "coordinates": [ 483534.0, 146453.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722654, "UPRN": 100061601553, "X_COORDINATE": 483513.0, "Y_COORDINATE": 146431.0, "LATITUDE": 51.2109859, "LONGITUDE": -0.8057911 }, "geometry": { "type": "Point", "coordinates": [ 483513.0, 146431.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722650, "UPRN": 100061601549, "X_COORDINATE": 483512.0, "Y_COORDINATE": 146423.0, "LATITUDE": 51.2109141, "LONGITUDE": -0.8058073 }, "geometry": { "type": "Point", "coordinates": [ 483512.0, 146423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722652, "UPRN": 100061601551, "X_COORDINATE": 483512.0, "Y_COORDINATE": 146426.0, "LATITUDE": 51.210941, "LONGITUDE": -0.8058066 }, "geometry": { "type": "Point", "coordinates": [ 483512.0, 146426.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722648, "UPRN": 100061601547, "X_COORDINATE": 483511.0, "Y_COORDINATE": 146418.0, "LATITUDE": 51.2108693, "LONGITUDE": -0.8058228 }, "geometry": { "type": "Point", "coordinates": [ 483511.0, 146418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722656, "UPRN": 100061601555, "X_COORDINATE": 483509.0, "Y_COORDINATE": 146435.0, "LATITUDE": 51.2110224, "LONGITUDE": -0.8058474 }, "geometry": { "type": "Point", "coordinates": [ 483509.0, 146435.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722658, "UPRN": 100061601557, "X_COORDINATE": 483509.0, "Y_COORDINATE": 146439.0, "LATITUDE": 51.2110584, "LONGITUDE": -0.8058465 }, "geometry": { "type": "Point", "coordinates": [ 483509.0, 146439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720035, "UPRN": 100061598786, "X_COORDINATE": 483447.0, "Y_COORDINATE": 146420.0, "LATITUDE": 51.2108966, "LONGITUDE": -0.8067383 }, "geometry": { "type": "Point", "coordinates": [ 483447.0, 146420.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727751, "UPRN": 100061607018, "X_COORDINATE": 483586.0, "Y_COORDINATE": 146520.0, "LATITUDE": 51.2117753, "LONGITUDE": -0.8047256 }, "geometry": { "type": "Point", "coordinates": [ 483586.0, 146520.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727752, "UPRN": 100061607019, "X_COORDINATE": 483593.0, "Y_COORDINATE": 146522.0, "LATITUDE": 51.2117923, "LONGITUDE": -0.8046249 }, "geometry": { "type": "Point", "coordinates": [ 483593.0, 146522.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727753, "UPRN": 100061607020, "X_COORDINATE": 483600.0, "Y_COORDINATE": 146523.0, "LATITUDE": 51.2118002, "LONGITUDE": -0.8045245 }, "geometry": { "type": "Point", "coordinates": [ 483600.0, 146523.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727754, "UPRN": 100061607021, "X_COORDINATE": 483607.0, "Y_COORDINATE": 146524.0, "LATITUDE": 51.2118082, "LONGITUDE": -0.8044241 }, "geometry": { "type": "Point", "coordinates": [ 483607.0, 146524.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731799, "UPRN": 100061611420, "X_COORDINATE": 483434.0, "Y_COORDINATE": 146550.0, "LATITUDE": 51.2120672, "LONGITUDE": -0.8068942 }, "geometry": { "type": "Point", "coordinates": [ 483434.0, 146550.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731800, "UPRN": 100061611421, "X_COORDINATE": 483428.0, "Y_COORDINATE": 146556.0, "LATITUDE": 51.212122, "LONGITUDE": -0.8069787 }, "geometry": { "type": "Point", "coordinates": [ 483428.0, 146556.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731798, "UPRN": 100061611419, "X_COORDINATE": 483429.0, "Y_COORDINATE": 146559.0, "LATITUDE": 51.2121489, "LONGITUDE": -0.8069637 }, "geometry": { "type": "Point", "coordinates": [ 483429.0, 146559.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726514, "UPRN": 100061605723, "X_COORDINATE": 483494.0, "Y_COORDINATE": 146564.0, "LATITUDE": 51.2121843, "LONGITUDE": -0.8060322 }, "geometry": { "type": "Point", "coordinates": [ 483494.0, 146564.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726513, "UPRN": 100061605722, "X_COORDINATE": 483497.0, "Y_COORDINATE": 146565.0, "LATITUDE": 51.2121929, "LONGITUDE": -0.805989 }, "geometry": { "type": "Point", "coordinates": [ 483497.0, 146565.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726512, "UPRN": 100061605721, "X_COORDINATE": 483500.0, "Y_COORDINATE": 146567.0, "LATITUDE": 51.2122104, "LONGITUDE": -0.8059456 }, "geometry": { "type": "Point", "coordinates": [ 483500.0, 146567.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726511, "UPRN": 100061605720, "X_COORDINATE": 483503.0, "Y_COORDINATE": 146569.0, "LATITUDE": 51.212228, "LONGITUDE": -0.8059022 }, "geometry": { "type": "Point", "coordinates": [ 483503.0, 146569.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726510, "UPRN": 100061605719, "X_COORDINATE": 483507.0, "Y_COORDINATE": 146571.0, "LATITUDE": 51.2122454, "LONGITUDE": -0.8058445 }, "geometry": { "type": "Point", "coordinates": [ 483507.0, 146571.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122926, "UPRN": 100062162902, "X_COORDINATE": 483483.0, "Y_COORDINATE": 146572.0, "LATITUDE": 51.2122578, "LONGITUDE": -0.8061878 }, "geometry": { "type": "Point", "coordinates": [ 483483.0, 146572.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726520, "UPRN": 100061605729, "X_COORDINATE": 483488.0, "Y_COORDINATE": 146573.0, "LATITUDE": 51.2122661, "LONGITUDE": -0.806116 }, "geometry": { "type": "Point", "coordinates": [ 483488.0, 146573.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726519, "UPRN": 100061605728, "X_COORDINATE": 483491.0, "Y_COORDINATE": 146574.0, "LATITUDE": 51.2122747, "LONGITUDE": -0.8060728 }, "geometry": { "type": "Point", "coordinates": [ 483491.0, 146574.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726518, "UPRN": 100061605727, "X_COORDINATE": 483494.0, "Y_COORDINATE": 146576.0, "LATITUDE": 51.2122922, "LONGITUDE": -0.8060294 }, "geometry": { "type": "Point", "coordinates": [ 483494.0, 146576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122914, "UPRN": 100062162873, "X_COORDINATE": 483448.0, "Y_COORDINATE": 146576.0, "LATITUDE": 51.2122989, "LONGITUDE": -0.8066878 }, "geometry": { "type": "Point", "coordinates": [ 483448.0, 146576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726517, "UPRN": 100061605726, "X_COORDINATE": 483497.0, "Y_COORDINATE": 146578.0, "LATITUDE": 51.2123097, "LONGITUDE": -0.805986 }, "geometry": { "type": "Point", "coordinates": [ 483497.0, 146578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122925, "UPRN": 100062162901, "X_COORDINATE": 483480.0, "Y_COORDINATE": 146578.0, "LATITUDE": 51.2123122, "LONGITUDE": -0.8062293 }, "geometry": { "type": "Point", "coordinates": [ 483480.0, 146578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726516, "UPRN": 100061605725, "X_COORDINATE": 483500.0, "Y_COORDINATE": 146579.0, "LATITUDE": 51.2123183, "LONGITUDE": -0.8059428 }, "geometry": { "type": "Point", "coordinates": [ 483500.0, 146579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122913, "UPRN": 100062162872, "X_COORDINATE": 483453.0, "Y_COORDINATE": 146579.0, "LATITUDE": 51.2123252, "LONGITUDE": -0.8066155 }, "geometry": { "type": "Point", "coordinates": [ 483453.0, 146579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726515, "UPRN": 100061605724, "X_COORDINATE": 483503.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2123358, "LONGITUDE": -0.8058994 }, "geometry": { "type": "Point", "coordinates": [ 483503.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122912, "UPRN": 100062162871, "X_COORDINATE": 483457.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2123426, "LONGITUDE": -0.8065578 }, "geometry": { "type": "Point", "coordinates": [ 483457.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216613, "UPRN": 100062353850, "X_COORDINATE": 483445.0, "Y_COORDINATE": 146557.0, "LATITUDE": 51.2121285, "LONGITUDE": -0.8067351 }, "geometry": { "type": "Point", "coordinates": [ 483445.0, 146557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216675, "UPRN": 100062353947, "X_COORDINATE": 483424.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2123474, "LONGITUDE": -0.8070302 }, "geometry": { "type": "Point", "coordinates": [ 483424.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400142, "UPRN": 100062700392, "X_COORDINATE": 483457.0, "Y_COORDINATE": 146581.0, "LATITUDE": 51.2123426, "LONGITUDE": -0.8065578 }, "geometry": { "type": "Point", "coordinates": [ 483457.0, 146581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217089, "UPRN": 100062354550, "X_COORDINATE": 483728.0, "Y_COORDINATE": 146738.0, "LATITUDE": 51.2137144, "LONGITUDE": -0.8026424 }, "geometry": { "type": "Point", "coordinates": [ 483728.0, 146738.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216839, "UPRN": 100062354142, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146748.0, "LATITUDE": 51.2137968, "LONGITUDE": -0.80191 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146748.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216672, "UPRN": 100062353944, "X_COORDINATE": 483757.0, "Y_COORDINATE": 146752.0, "LATITUDE": 51.213836, "LONGITUDE": -0.802224 }, "geometry": { "type": "Point", "coordinates": [ 483757.0, 146752.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731769, "UPRN": 100061611389, "X_COORDINATE": 483766.0, "Y_COORDINATE": 146757.0, "LATITUDE": 51.2138796, "LONGITUDE": -0.802094 }, "geometry": { "type": "Point", "coordinates": [ 483766.0, 146757.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731768, "UPRN": 100061611388, "X_COORDINATE": 483771.0, "Y_COORDINATE": 146758.0, "LATITUDE": 51.2138879, "LONGITUDE": -0.8020222 }, "geometry": { "type": "Point", "coordinates": [ 483771.0, 146758.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122901, "UPRN": 100062162843, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146762.0, "LATITUDE": 51.2139227, "LONGITUDE": -0.8019068 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146762.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122902, "UPRN": 100062162844, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146762.0, "LATITUDE": 51.2139227, "LONGITUDE": -0.8019068 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146762.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216670, "UPRN": 100062353942, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146762.0, "LATITUDE": 51.2139227, "LONGITUDE": -0.8019068 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146762.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216838, "UPRN": 100062354141, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146762.0, "LATITUDE": 51.2139227, "LONGITUDE": -0.8019068 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146762.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216671, "UPRN": 100062353943, "X_COORDINATE": 483778.0, "Y_COORDINATE": 146764.0, "LATITUDE": 51.2139408, "LONGITUDE": -0.8019206 }, "geometry": { "type": "Point", "coordinates": [ 483778.0, 146764.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367258, "UPRN": 100062609587, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216681, "UPRN": 100062353954, "X_COORDINATE": 483732.0, "Y_COORDINATE": 146771.0, "LATITUDE": 51.2140105, "LONGITUDE": -0.8025774 }, "geometry": { "type": "Point", "coordinates": [ 483732.0, 146771.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216620, "UPRN": 100062353861, "X_COORDINATE": 483738.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140276, "LONGITUDE": -0.8024911 }, "geometry": { "type": "Point", "coordinates": [ 483738.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217110, "UPRN": 100062354578, "X_COORDINATE": 483743.0, "Y_COORDINATE": 146775.0, "LATITUDE": 51.2140448, "LONGITUDE": -0.802419 }, "geometry": { "type": "Point", "coordinates": [ 483743.0, 146775.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216610, "UPRN": 100062353847, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140708, "LONGITUDE": -0.8023181 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216623, "UPRN": 100062353864, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140708, "LONGITUDE": -0.8023181 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217017, "UPRN": 100062354460, "X_COORDINATE": 483758.0, "Y_COORDINATE": 146786.0, "LATITUDE": 51.2141415, "LONGITUDE": -0.8022018 }, "geometry": { "type": "Point", "coordinates": [ 483758.0, 146786.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731831, "UPRN": 100061611453, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146791.0, "LATITUDE": 51.2141834, "LONGITUDE": -0.8019 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146791.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731830, "UPRN": 100061611452, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146800.0, "LATITUDE": 51.2142685, "LONGITUDE": -0.802313 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146800.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217119, "UPRN": 100062354591, "X_COORDINATE": 483750.0, "Y_COORDINATE": 146800.0, "LATITUDE": 51.2142685, "LONGITUDE": -0.802313 }, "geometry": { "type": "Point", "coordinates": [ 483750.0, 146800.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122906, "UPRN": 100062162851, "X_COORDINATE": 483766.0, "Y_COORDINATE": 146803.0, "LATITUDE": 51.2142932, "LONGITUDE": -0.8020833 }, "geometry": { "type": "Point", "coordinates": [ 483766.0, 146803.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216644, "UPRN": 100062353895, "X_COORDINATE": 483735.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2143157, "LONGITUDE": -0.8025266 }, "geometry": { "type": "Point", "coordinates": [ 483735.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367259, "UPRN": 100062609588, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367261, "UPRN": 100062609590, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367284, "UPRN": 100062609649, "X_COORDINATE": 483738.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2140276, "LONGITUDE": -0.8024911 }, "geometry": { "type": "Point", "coordinates": [ 483738.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367285, "UPRN": 100062609650, "X_COORDINATE": 483743.0, "Y_COORDINATE": 146775.0, "LATITUDE": 51.2140448, "LONGITUDE": -0.802419 }, "geometry": { "type": "Point", "coordinates": [ 483743.0, 146775.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367286, "UPRN": 100062609651, "X_COORDINATE": 483738.0, "Y_COORDINATE": 146780.0, "LATITUDE": 51.2140905, "LONGITUDE": -0.8024894 }, "geometry": { "type": "Point", "coordinates": [ 483738.0, 146780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367287, "UPRN": 100062609652, "X_COORDINATE": 483755.0, "Y_COORDINATE": 146779.0, "LATITUDE": 51.214079, "LONGITUDE": -0.8022463 }, "geometry": { "type": "Point", "coordinates": [ 483755.0, 146779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367288, "UPRN": 100062609653, "X_COORDINATE": 483758.0, "Y_COORDINATE": 146786.0, "LATITUDE": 51.2141415, "LONGITUDE": -0.8022018 }, "geometry": { "type": "Point", "coordinates": [ 483758.0, 146786.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400058, "UPRN": 100062700244, "X_COORDINATE": 483721.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2140031, "LONGITUDE": -0.8027351 }, "geometry": { "type": "Point", "coordinates": [ 483721.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731785, "UPRN": 100061611405, "X_COORDINATE": 483560.0, "Y_COORDINATE": 146657.0, "LATITUDE": 51.2130108, "LONGITUDE": -0.8050659 }, "geometry": { "type": "Point", "coordinates": [ 483560.0, 146657.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731817, "UPRN": 100061611438, "X_COORDINATE": 483529.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130872, "LONGITUDE": -0.8055077 }, "geometry": { "type": "Point", "coordinates": [ 483529.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731818, "UPRN": 100061611439, "X_COORDINATE": 483529.0, "Y_COORDINATE": 146665.0, "LATITUDE": 51.2130872, "LONGITUDE": -0.8055077 }, "geometry": { "type": "Point", "coordinates": [ 483529.0, 146665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731783, "UPRN": 100061611403, "X_COORDINATE": 483573.0, "Y_COORDINATE": 146666.0, "LATITUDE": 51.2130898, "LONGITUDE": -0.8048777 }, "geometry": { "type": "Point", "coordinates": [ 483573.0, 146666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731812, "UPRN": 100061611433, "X_COORDINATE": 483473.0, "Y_COORDINATE": 146669.0, "LATITUDE": 51.2131314, "LONGITUDE": -0.8063084 }, "geometry": { "type": "Point", "coordinates": [ 483473.0, 146669.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731784, "UPRN": 100061611404, "X_COORDINATE": 483580.0, "Y_COORDINATE": 146670.0, "LATITUDE": 51.2131247, "LONGITUDE": -0.8047766 }, "geometry": { "type": "Point", "coordinates": [ 483580.0, 146670.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727866, "UPRN": 100061607136, "X_COORDINATE": 483483.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.2132108, "LONGITUDE": -0.8061631 }, "geometry": { "type": "Point", "coordinates": [ 483483.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731782, "UPRN": 100061611402, "X_COORDINATE": 483608.0, "Y_COORDINATE": 146683.0, "LATITUDE": 51.2132375, "LONGITUDE": -0.8043728 }, "geometry": { "type": "Point", "coordinates": [ 483608.0, 146683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727862, "UPRN": 100061607132, "X_COORDINATE": 483511.0, "Y_COORDINATE": 146690.0, "LATITUDE": 51.2133146, "LONGITUDE": -0.8057596 }, "geometry": { "type": "Point", "coordinates": [ 483511.0, 146690.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731780, "UPRN": 100061611400, "X_COORDINATE": 483618.0, "Y_COORDINATE": 146691.0, "LATITUDE": 51.2133079, "LONGITUDE": -0.8042278 }, "geometry": { "type": "Point", "coordinates": [ 483618.0, 146691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731781, "UPRN": 100061611401, "X_COORDINATE": 483614.0, "Y_COORDINATE": 146691.0, "LATITUDE": 51.2133085, "LONGITUDE": -0.8042851 }, "geometry": { "type": "Point", "coordinates": [ 483614.0, 146691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731779, "UPRN": 100061611399, "X_COORDINATE": 483621.0, "Y_COORDINATE": 146693.0, "LATITUDE": 51.2133255, "LONGITUDE": -0.8041844 }, "geometry": { "type": "Point", "coordinates": [ 483621.0, 146693.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731777, "UPRN": 100061611397, "X_COORDINATE": 483625.0, "Y_COORDINATE": 146694.0, "LATITUDE": 51.2133339, "LONGITUDE": -0.8041269 }, "geometry": { "type": "Point", "coordinates": [ 483625.0, 146694.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727863, "UPRN": 100061607133, "X_COORDINATE": 483530.0, "Y_COORDINATE": 146698.0, "LATITUDE": 51.2133837, "LONGITUDE": -0.8054858 }, "geometry": { "type": "Point", "coordinates": [ 483530.0, 146698.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731778, "UPRN": 100061611398, "X_COORDINATE": 483630.0, "Y_COORDINATE": 146699.0, "LATITUDE": 51.2133781, "LONGITUDE": -0.8040542 }, "geometry": { "type": "Point", "coordinates": [ 483630.0, 146699.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722259, "UPRN": 100061601073, "X_COORDINATE": 483568.0, "Y_COORDINATE": 146700.0, "LATITUDE": 51.2133962, "LONGITUDE": -0.8049414 }, "geometry": { "type": "Point", "coordinates": [ 483568.0, 146700.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731774, "UPRN": 100061611394, "X_COORDINATE": 483637.0, "Y_COORDINATE": 146700.0, "LATITUDE": 51.2133861, "LONGITUDE": -0.8039537 }, "geometry": { "type": "Point", "coordinates": [ 483637.0, 146700.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731775, "UPRN": 100061611395, "X_COORDINATE": 483640.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.2134126, "LONGITUDE": -0.8039101 }, "geometry": { "type": "Point", "coordinates": [ 483640.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731776, "UPRN": 100061611396, "X_COORDINATE": 483644.0, "Y_COORDINATE": 146703.0, "LATITUDE": 51.213412, "LONGITUDE": -0.8038529 }, "geometry": { "type": "Point", "coordinates": [ 483644.0, 146703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727864, "UPRN": 100061607134, "X_COORDINATE": 483525.0, "Y_COORDINATE": 146704.0, "LATITUDE": 51.2134384, "LONGITUDE": -0.8055559 }, "geometry": { "type": "Point", "coordinates": [ 483525.0, 146704.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727865, "UPRN": 100061607135, "X_COORDINATE": 483525.0, "Y_COORDINATE": 146704.0, "LATITUDE": 51.2134384, "LONGITUDE": -0.8055559 }, "geometry": { "type": "Point", "coordinates": [ 483525.0, 146704.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722260, "UPRN": 100061601074, "X_COORDINATE": 483570.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2134588, "LONGITUDE": -0.8049111 }, "geometry": { "type": "Point", "coordinates": [ 483570.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731770, "UPRN": 100061611390, "X_COORDINATE": 483659.0, "Y_COORDINATE": 146707.0, "LATITUDE": 51.2134458, "LONGITUDE": -0.8036372 }, "geometry": { "type": "Point", "coordinates": [ 483659.0, 146707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731772, "UPRN": 100061611392, "X_COORDINATE": 483650.0, "Y_COORDINATE": 146709.0, "LATITUDE": 51.2134651, "LONGITUDE": -0.8037656 }, "geometry": { "type": "Point", "coordinates": [ 483650.0, 146709.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722261, "UPRN": 100061601075, "X_COORDINATE": 483567.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2135042, "LONGITUDE": -0.8049529 }, "geometry": { "type": "Point", "coordinates": [ 483567.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731771, "UPRN": 100061611391, "X_COORDINATE": 483653.0, "Y_COORDINATE": 146712.0, "LATITUDE": 51.2134916, "LONGITUDE": -0.8037219 }, "geometry": { "type": "Point", "coordinates": [ 483653.0, 146712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731819, "UPRN": 100061611440, "X_COORDINATE": 483540.0, "Y_COORDINATE": 146677.0, "LATITUDE": 51.2131935, "LONGITUDE": -0.8053475 }, "geometry": { "type": "Point", "coordinates": [ 483540.0, 146677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731820, "UPRN": 100061611441, "X_COORDINATE": 483545.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.2132018, "LONGITUDE": -0.8052757 }, "geometry": { "type": "Point", "coordinates": [ 483545.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731821, "UPRN": 100061611442, "X_COORDINATE": 483548.0, "Y_COORDINATE": 146680.0, "LATITUDE": 51.2132193, "LONGITUDE": -0.8052323 }, "geometry": { "type": "Point", "coordinates": [ 483548.0, 146680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216638, "UPRN": 100062353883, "X_COORDINATE": 483672.0, "Y_COORDINATE": 146711.0, "LATITUDE": 51.2134798, "LONGITUDE": -0.8034502 }, "geometry": { "type": "Point", "coordinates": [ 483672.0, 146711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216674, "UPRN": 100062353946, "X_COORDINATE": 483597.0, "Y_COORDINATE": 146681.0, "LATITUDE": 51.2132211, "LONGITUDE": -0.8045307 }, "geometry": { "type": "Point", "coordinates": [ 483597.0, 146681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216676, "UPRN": 100062353948, "X_COORDINATE": 483551.0, "Y_COORDINATE": 146684.0, "LATITUDE": 51.2132548, "LONGITUDE": -0.8051884 }, "geometry": { "type": "Point", "coordinates": [ 483551.0, 146684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216677, "UPRN": 100062353950, "X_COORDINATE": 483595.0, "Y_COORDINATE": 146708.0, "LATITUDE": 51.2134641, "LONGITUDE": -0.8045531 }, "geometry": { "type": "Point", "coordinates": [ 483595.0, 146708.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217016, "UPRN": 100062354459, "X_COORDINATE": 483509.0, "Y_COORDINATE": 146664.0, "LATITUDE": 51.2130811, "LONGITUDE": -0.8057942 }, "geometry": { "type": "Point", "coordinates": [ 483509.0, 146664.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217018, "UPRN": 100062354462, "X_COORDINATE": 483586.0, "Y_COORDINATE": 146702.0, "LATITUDE": 51.2134115, "LONGITUDE": -0.8046833 }, "geometry": { "type": "Point", "coordinates": [ 483586.0, 146702.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217106, "UPRN": 100062354574, "X_COORDINATE": 483609.0, "Y_COORDINATE": 146687.0, "LATITUDE": 51.2132733, "LONGITUDE": -0.8043575 }, "geometry": { "type": "Point", "coordinates": [ 483609.0, 146687.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217145, "UPRN": 100062354643, "X_COORDINATE": 483545.0, "Y_COORDINATE": 146678.0, "LATITUDE": 51.2132018, "LONGITUDE": -0.8052757 }, "geometry": { "type": "Point", "coordinates": [ 483545.0, 146678.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367280, "UPRN": 100062609640, "X_COORDINATE": 483608.0, "Y_COORDINATE": 146683.0, "LATITUDE": 51.2132375, "LONGITUDE": -0.8043728 }, "geometry": { "type": "Point", "coordinates": [ 483608.0, 146683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216914, "UPRN": 100062354294, "X_COORDINATE": 483521.0, "Y_COORDINATE": 146630.0, "LATITUDE": 51.2127737, "LONGITUDE": -0.8056304 }, "geometry": { "type": "Point", "coordinates": [ 483521.0, 146630.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726521, "UPRN": 100061605730, "X_COORDINATE": 483523.0, "Y_COORDINATE": 146590.0, "LATITUDE": 51.2124138, "LONGITUDE": -0.8056111 }, "geometry": { "type": "Point", "coordinates": [ 483523.0, 146590.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731794, "UPRN": 100061611415, "X_COORDINATE": 483526.0, "Y_COORDINATE": 146635.0, "LATITUDE": 51.2128179, "LONGITUDE": -0.8055577 }, "geometry": { "type": "Point", "coordinates": [ 483526.0, 146635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731793, "UPRN": 100061611414, "X_COORDINATE": 483527.0, "Y_COORDINATE": 146622.0, "LATITUDE": 51.2127009, "LONGITUDE": -0.8055464 }, "geometry": { "type": "Point", "coordinates": [ 483527.0, 146622.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122592, "UPRN": 100062162236, "X_COORDINATE": 483528.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126918, "LONGITUDE": -0.8055323 }, "geometry": { "type": "Point", "coordinates": [ 483528.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122593, "UPRN": 100062162237, "X_COORDINATE": 483528.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126918, "LONGITUDE": -0.8055323 }, "geometry": { "type": "Point", "coordinates": [ 483528.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726498, "UPRN": 100061605707, "X_COORDINATE": 483530.0, "Y_COORDINATE": 146614.0, "LATITUDE": 51.2126286, "LONGITUDE": -0.8055053 }, "geometry": { "type": "Point", "coordinates": [ 483530.0, 146614.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726499, "UPRN": 100061605708, "X_COORDINATE": 483532.0, "Y_COORDINATE": 146610.0, "LATITUDE": 51.2125923, "LONGITUDE": -0.8054776 }, "geometry": { "type": "Point", "coordinates": [ 483532.0, 146610.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726500, "UPRN": 100061605709, "X_COORDINATE": 483533.0, "Y_COORDINATE": 146604.0, "LATITUDE": 51.2125382, "LONGITUDE": -0.8054647 }, "geometry": { "type": "Point", "coordinates": [ 483533.0, 146604.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731792, "UPRN": 100061611413, "X_COORDINATE": 483533.0, "Y_COORDINATE": 146641.0, "LATITUDE": 51.2128709, "LONGITUDE": -0.8054561 }, "geometry": { "type": "Point", "coordinates": [ 483533.0, 146641.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726509, "UPRN": 100061605718, "X_COORDINATE": 483534.0, "Y_COORDINATE": 146579.0, "LATITUDE": 51.2123133, "LONGITUDE": -0.8054562 }, "geometry": { "type": "Point", "coordinates": [ 483534.0, 146579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726507, "UPRN": 100061605716, "X_COORDINATE": 483535.0, "Y_COORDINATE": 146575.0, "LATITUDE": 51.2122772, "LONGITUDE": -0.8054428 }, "geometry": { "type": "Point", "coordinates": [ 483535.0, 146575.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731789, "UPRN": 100061611410, "X_COORDINATE": 483536.0, "Y_COORDINATE": 146644.0, "LATITUDE": 51.2128974, "LONGITUDE": -0.8054124 }, "geometry": { "type": "Point", "coordinates": [ 483536.0, 146644.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726501, "UPRN": 100061605710, "X_COORDINATE": 483538.0, "Y_COORDINATE": 146607.0, "LATITUDE": 51.2125645, "LONGITUDE": -0.8053924 }, "geometry": { "type": "Point", "coordinates": [ 483538.0, 146607.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731791, "UPRN": 100061611412, "X_COORDINATE": 483539.0, "Y_COORDINATE": 146622.0, "LATITUDE": 51.2126992, "LONGITUDE": -0.8053746 }, "geometry": { "type": "Point", "coordinates": [ 483539.0, 146622.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217093, "UPRN": 100062354555, "X_COORDINATE": 483542.0, "Y_COORDINATE": 146645.0, "LATITUDE": 51.2129055, "LONGITUDE": -0.8053263 }, "geometry": { "type": "Point", "coordinates": [ 483542.0, 146645.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731790, "UPRN": 100061611411, "X_COORDINATE": 483545.0, "Y_COORDINATE": 146626.0, "LATITUDE": 51.2127343, "LONGITUDE": -0.8052878 }, "geometry": { "type": "Point", "coordinates": [ 483545.0, 146626.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731786, "UPRN": 100061611406, "X_COORDINATE": 483550.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2129403, "LONGITUDE": -0.8052109 }, "geometry": { "type": "Point", "coordinates": [ 483550.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731787, "UPRN": 100061611407, "X_COORDINATE": 483550.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2129403, "LONGITUDE": -0.8052109 }, "geometry": { "type": "Point", "coordinates": [ 483550.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731788, "UPRN": 100061611409, "X_COORDINATE": 483550.0, "Y_COORDINATE": 146649.0, "LATITUDE": 51.2129403, "LONGITUDE": -0.8052109 }, "geometry": { "type": "Point", "coordinates": [ 483550.0, 146649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399801, "UPRN": 100062699779, "X_COORDINATE": 483528.0, "Y_COORDINATE": 146621.0, "LATITUDE": 51.2126918, "LONGITUDE": -0.8055323 }, "geometry": { "type": "Point", "coordinates": [ 483528.0, 146621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722263, "UPRN": 100061601077, "X_COORDINATE": 483559.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2136222, "LONGITUDE": -0.8050644 }, "geometry": { "type": "Point", "coordinates": [ 483559.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722262, "UPRN": 100061601076, "X_COORDINATE": 483562.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135679, "LONGITUDE": -0.8050228 }, "geometry": { "type": "Point", "coordinates": [ 483562.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723711, "UPRN": 100061602687, "X_COORDINATE": 483562.0, "Y_COORDINATE": 146764.0, "LATITUDE": 51.2139724, "LONGITUDE": -0.8050124 }, "geometry": { "type": "Point", "coordinates": [ 483562.0, 146764.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723712, "UPRN": 100061602688, "X_COORDINATE": 483573.0, "Y_COORDINATE": 146746.0, "LATITUDE": 51.213809, "LONGITUDE": -0.8048591 }, "geometry": { "type": "Point", "coordinates": [ 483573.0, 146746.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216648, "UPRN": 100062353901, "X_COORDINATE": 483586.0, "Y_COORDINATE": 146733.0, "LATITUDE": 51.2136902, "LONGITUDE": -0.8046761 }, "geometry": { "type": "Point", "coordinates": [ 483586.0, 146733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723706, "UPRN": 100061602682, "X_COORDINATE": 483589.0, "Y_COORDINATE": 146797.0, "LATITUDE": 51.2142651, "LONGITUDE": -0.8046182 }, "geometry": { "type": "Point", "coordinates": [ 483589.0, 146797.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723708, "UPRN": 100061602684, "X_COORDINATE": 483593.0, "Y_COORDINATE": 146774.0, "LATITUDE": 51.2140578, "LONGITUDE": -0.8045663 }, "geometry": { "type": "Point", "coordinates": [ 483593.0, 146774.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723713, "UPRN": 100061602690, "X_COORDINATE": 483599.0, "Y_COORDINATE": 146777.0, "LATITUDE": 51.2140839, "LONGITUDE": -0.8044798 }, "geometry": { "type": "Point", "coordinates": [ 483599.0, 146777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122437, "UPRN": 100062161983, "X_COORDINATE": 483604.0, "Y_COORDINATE": 146781.0, "LATITUDE": 51.2141191, "LONGITUDE": -0.8044073 }, "geometry": { "type": "Point", "coordinates": [ 483604.0, 146781.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723710, "UPRN": 100061602686, "X_COORDINATE": 483605.0, "Y_COORDINATE": 146735.0, "LATITUDE": 51.2137054, "LONGITUDE": -0.8044036 }, "geometry": { "type": "Point", "coordinates": [ 483605.0, 146735.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731825, "UPRN": 100061611446, "X_COORDINATE": 483606.0, "Y_COORDINATE": 146801.0, "LATITUDE": 51.2142986, "LONGITUDE": -0.804374 }, "geometry": { "type": "Point", "coordinates": [ 483606.0, 146801.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122904, "UPRN": 100062162848, "X_COORDINATE": 483606.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135614, "LONGITUDE": -0.804393 }, "geometry": { "type": "Point", "coordinates": [ 483606.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122905, "UPRN": 100062162849, "X_COORDINATE": 483606.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135614, "LONGITUDE": -0.804393 }, "geometry": { "type": "Point", "coordinates": [ 483606.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216678, "UPRN": 100062353951, "X_COORDINATE": 483606.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135614, "LONGITUDE": -0.804393 }, "geometry": { "type": "Point", "coordinates": [ 483606.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216844, "UPRN": 100062354153, "X_COORDINATE": 483606.0, "Y_COORDINATE": 146719.0, "LATITUDE": 51.2135614, "LONGITUDE": -0.804393 }, "geometry": { "type": "Point", "coordinates": [ 483606.0, 146719.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216679, "UPRN": 100062353952, "X_COORDINATE": 483612.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2136055, "LONGITUDE": -0.804306 }, "geometry": { "type": "Point", "coordinates": [ 483612.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216652, "UPRN": 100062353914, "X_COORDINATE": 483622.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.213604, "LONGITUDE": -0.8041629 }, "geometry": { "type": "Point", "coordinates": [ 483622.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216680, "UPRN": 100062353953, "X_COORDINATE": 483622.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.213604, "LONGITUDE": -0.8041629 }, "geometry": { "type": "Point", "coordinates": [ 483622.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723378, "UPRN": 100061602321, "X_COORDINATE": 483623.0, "Y_COORDINATE": 146744.0, "LATITUDE": 51.2137837, "LONGITUDE": -0.8041439 }, "geometry": { "type": "Point", "coordinates": [ 483623.0, 146744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723377, "UPRN": 100061602320, "X_COORDINATE": 483624.0, "Y_COORDINATE": 146740.0, "LATITUDE": 51.2137476, "LONGITUDE": -0.8041305 }, "geometry": { "type": "Point", "coordinates": [ 483624.0, 146740.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723376, "UPRN": 100061602319, "X_COORDINATE": 483626.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2137203, "LONGITUDE": -0.8041026 }, "geometry": { "type": "Point", "coordinates": [ 483626.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731822, "UPRN": 100061611443, "X_COORDINATE": 483630.0, "Y_COORDINATE": 146728.0, "LATITUDE": 51.2136388, "LONGITUDE": -0.8040474 }, "geometry": { "type": "Point", "coordinates": [ 483630.0, 146728.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731823, "UPRN": 100061611444, "X_COORDINATE": 483630.0, "Y_COORDINATE": 146728.0, "LATITUDE": 51.2136388, "LONGITUDE": -0.8040474 }, "geometry": { "type": "Point", "coordinates": [ 483630.0, 146728.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731824, "UPRN": 100061611445, "X_COORDINATE": 483636.0, "Y_COORDINATE": 146731.0, "LATITUDE": 51.2136649, "LONGITUDE": -0.8039608 }, "geometry": { "type": "Point", "coordinates": [ 483636.0, 146731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217094, "UPRN": 100062354556, "X_COORDINATE": 483598.0, "Y_COORDINATE": 146739.0, "LATITUDE": 51.2137424, "LONGITUDE": -0.8045029 }, "geometry": { "type": "Point", "coordinates": [ 483598.0, 146739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217095, "UPRN": 100062354557, "X_COORDINATE": 483596.0, "Y_COORDINATE": 146743.0, "LATITUDE": 51.2137787, "LONGITUDE": -0.8045306 }, "geometry": { "type": "Point", "coordinates": [ 483596.0, 146743.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217096, "UPRN": 100062354558, "X_COORDINATE": 483592.0, "Y_COORDINATE": 146749.0, "LATITUDE": 51.2138332, "LONGITUDE": -0.8045865 }, "geometry": { "type": "Point", "coordinates": [ 483592.0, 146749.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217097, "UPRN": 100062354559, "X_COORDINATE": 483589.0, "Y_COORDINATE": 146753.0, "LATITUDE": 51.2138696, "LONGITUDE": -0.8046285 }, "geometry": { "type": "Point", "coordinates": [ 483589.0, 146753.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217098, "UPRN": 100062354560, "X_COORDINATE": 483586.0, "Y_COORDINATE": 146759.0, "LATITUDE": 51.213924, "LONGITUDE": -0.80467 }, "geometry": { "type": "Point", "coordinates": [ 483586.0, 146759.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217099, "UPRN": 100062354561, "X_COORDINATE": 483584.0, "Y_COORDINATE": 146763.0, "LATITUDE": 51.2139602, "LONGITUDE": -0.8046977 }, "geometry": { "type": "Point", "coordinates": [ 483584.0, 146763.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367282, "UPRN": 100062609645, "X_COORDINATE": 483622.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.213604, "LONGITUDE": -0.8041629 }, "geometry": { "type": "Point", "coordinates": [ 483622.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399579, "UPRN": 100062699384, "X_COORDINATE": 483598.0, "Y_COORDINATE": 146739.0, "LATITUDE": 51.2137424, "LONGITUDE": -0.8045029 }, "geometry": { "type": "Point", "coordinates": [ 483598.0, 146739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399938, "UPRN": 100062700021, "X_COORDINATE": 483546.0, "Y_COORDINATE": 146797.0, "LATITUDE": 51.2142714, "LONGITUDE": -0.8052337 }, "geometry": { "type": "Point", "coordinates": [ 483546.0, 146797.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122927, "UPRN": 100062162903, "X_COORDINATE": 483460.0, "Y_COORDINATE": 146585.0, "LATITUDE": 51.2123781, "LONGITUDE": -0.8065139 }, "geometry": { "type": "Point", "coordinates": [ 483460.0, 146585.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122924, "UPRN": 100062162900, "X_COORDINATE": 483467.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212404, "LONGITUDE": -0.8064131 }, "geometry": { "type": "Point", "coordinates": [ 483467.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731796, "UPRN": 100061611417, "X_COORDINATE": 483468.0, "Y_COORDINATE": 146591.0, "LATITUDE": 51.2124309, "LONGITUDE": -0.806398 }, "geometry": { "type": "Point", "coordinates": [ 483468.0, 146591.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731806, "UPRN": 100061611427, "X_COORDINATE": 483434.0, "Y_COORDINATE": 146591.0, "LATITUDE": 51.2124358, "LONGITUDE": -0.8068847 }, "geometry": { "type": "Point", "coordinates": [ 483434.0, 146591.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731797, "UPRN": 100061611418, "X_COORDINATE": 483471.0, "Y_COORDINATE": 146593.0, "LATITUDE": 51.2124484, "LONGITUDE": -0.8063546 }, "geometry": { "type": "Point", "coordinates": [ 483471.0, 146593.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122928, "UPRN": 100062162904, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122929, "UPRN": 100062162905, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122930, "UPRN": 100062162906, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122931, "UPRN": 100062162907, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731805, "UPRN": 100061611426, "X_COORDINATE": 483441.0, "Y_COORDINATE": 146599.0, "LATITUDE": 51.2125067, "LONGITUDE": -0.8067826 }, "geometry": { "type": "Point", "coordinates": [ 483441.0, 146599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731845, "UPRN": 100061611469, "X_COORDINATE": 483432.0, "Y_COORDINATE": 146608.0, "LATITUDE": 51.2125889, "LONGITUDE": -0.8069094 }, "geometry": { "type": "Point", "coordinates": [ 483432.0, 146608.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731807, "UPRN": 100061611428, "X_COORDINATE": 483458.0, "Y_COORDINATE": 146613.0, "LATITUDE": 51.2126301, "LONGITUDE": -0.8065361 }, "geometry": { "type": "Point", "coordinates": [ 483458.0, 146613.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731795, "UPRN": 100061611416, "X_COORDINATE": 483516.0, "Y_COORDINATE": 146615.0, "LATITUDE": 51.2126396, "LONGITUDE": -0.8057054 }, "geometry": { "type": "Point", "coordinates": [ 483516.0, 146615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731808, "UPRN": 100061611429, "X_COORDINATE": 483461.0, "Y_COORDINATE": 146616.0, "LATITUDE": 51.2126566, "LONGITUDE": -0.8064924 }, "geometry": { "type": "Point", "coordinates": [ 483461.0, 146616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731809, "UPRN": 100061611430, "X_COORDINATE": 483466.0, "Y_COORDINATE": 146620.0, "LATITUDE": 51.2126919, "LONGITUDE": -0.8064199 }, "geometry": { "type": "Point", "coordinates": [ 483466.0, 146620.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731811, "UPRN": 100061611432, "X_COORDINATE": 483482.0, "Y_COORDINATE": 146633.0, "LATITUDE": 51.2128064, "LONGITUDE": -0.8061879 }, "geometry": { "type": "Point", "coordinates": [ 483482.0, 146633.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731810, "UPRN": 100061611431, "X_COORDINATE": 483445.0, "Y_COORDINATE": 146642.0, "LATITUDE": 51.2128927, "LONGITUDE": -0.8067154 }, "geometry": { "type": "Point", "coordinates": [ 483445.0, 146642.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731813, "UPRN": 100061611434, "X_COORDINATE": 483499.0, "Y_COORDINATE": 146643.0, "LATITUDE": 51.2128938, "LONGITUDE": -0.8059423 }, "geometry": { "type": "Point", "coordinates": [ 483499.0, 146643.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731814, "UPRN": 100061611435, "X_COORDINATE": 483503.0, "Y_COORDINATE": 146647.0, "LATITUDE": 51.2129292, "LONGITUDE": -0.8058841 }, "geometry": { "type": "Point", "coordinates": [ 483503.0, 146647.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731815, "UPRN": 100061611436, "X_COORDINATE": 483507.0, "Y_COORDINATE": 146650.0, "LATITUDE": 51.2129556, "LONGITUDE": -0.8058261 }, "geometry": { "type": "Point", "coordinates": [ 483507.0, 146650.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731816, "UPRN": 100061611437, "X_COORDINATE": 483510.0, "Y_COORDINATE": 146652.0, "LATITUDE": 51.2129731, "LONGITUDE": -0.8057827 }, "geometry": { "type": "Point", "coordinates": [ 483510.0, 146652.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122932, "UPRN": 100062162908, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122933, "UPRN": 100062162909, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122934, "UPRN": 100062162910, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122935, "UPRN": 100062162911, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122936, "UPRN": 100062162912, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122937, "UPRN": 100062162913, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216840, "UPRN": 100062354148, "X_COORDINATE": 483485.0, "Y_COORDINATE": 146634.0, "LATITUDE": 51.2128149, "LONGITUDE": -0.8061447 }, "geometry": { "type": "Point", "coordinates": [ 483485.0, 146634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216841, "UPRN": 100062354149, "X_COORDINATE": 483481.0, "Y_COORDINATE": 146635.0, "LATITUDE": 51.2128245, "LONGITUDE": -0.8062018 }, "geometry": { "type": "Point", "coordinates": [ 483481.0, 146635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216842, "UPRN": 100062354150, "X_COORDINATE": 483481.0, "Y_COORDINATE": 146635.0, "LATITUDE": 51.2128245, "LONGITUDE": -0.8062018 }, "geometry": { "type": "Point", "coordinates": [ 483481.0, 146635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216843, "UPRN": 100062354151, "X_COORDINATE": 483481.0, "Y_COORDINATE": 146635.0, "LATITUDE": 51.2128245, "LONGITUDE": -0.8062018 }, "geometry": { "type": "Point", "coordinates": [ 483481.0, 146635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217101, "UPRN": 100062354563, "X_COORDINATE": 483504.0, "Y_COORDINATE": 146620.0, "LATITUDE": 51.2126863, "LONGITUDE": -0.805876 }, "geometry": { "type": "Point", "coordinates": [ 483504.0, 146620.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367281, "UPRN": 100062609641, "X_COORDINATE": 483499.0, "Y_COORDINATE": 146616.0, "LATITUDE": 51.2126511, "LONGITUDE": -0.8059485 }, "geometry": { "type": "Point", "coordinates": [ 483499.0, 146616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400141, "UPRN": 100062700391, "X_COORDINATE": 483467.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212404, "LONGITUDE": -0.8064131 }, "geometry": { "type": "Point", "coordinates": [ 483467.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400144, "UPRN": 100062700395, "X_COORDINATE": 483496.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124537, "LONGITUDE": -0.8059966 }, "geometry": { "type": "Point", "coordinates": [ 483496.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216673, "UPRN": 100062353945, "X_COORDINATE": 483711.0, "Y_COORDINATE": 146733.0, "LATITUDE": 51.2136719, "LONGITUDE": -0.8028869 }, "geometry": { "type": "Point", "coordinates": [ 483711.0, 146733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216949, "UPRN": 100062354352, "X_COORDINATE": 483645.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136906, "LONGITUDE": -0.8038313 }, "geometry": { "type": "Point", "coordinates": [ 483645.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216651, "UPRN": 100062353913, "X_COORDINATE": 483654.0, "Y_COORDINATE": 146737.0, "LATITUDE": 51.2137162, "LONGITUDE": -0.8037018 }, "geometry": { "type": "Point", "coordinates": [ 483654.0, 146737.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731826, "UPRN": 100061611447, "X_COORDINATE": 483664.0, "Y_COORDINATE": 146741.0, "LATITUDE": 51.2137507, "LONGITUDE": -0.8035577 }, "geometry": { "type": "Point", "coordinates": [ 483664.0, 146741.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731827, "UPRN": 100061611448, "X_COORDINATE": 483673.0, "Y_COORDINATE": 146744.0, "LATITUDE": 51.2137764, "LONGITUDE": -0.8034282 }, "geometry": { "type": "Point", "coordinates": [ 483673.0, 146744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731828, "UPRN": 100061611449, "X_COORDINATE": 483680.0, "Y_COORDINATE": 146751.0, "LATITUDE": 51.2138383, "LONGITUDE": -0.8033264 }, "geometry": { "type": "Point", "coordinates": [ 483680.0, 146751.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731829, "UPRN": 100061611450, "X_COORDINATE": 483685.0, "Y_COORDINATE": 146752.0, "LATITUDE": 51.2138465, "LONGITUDE": -0.8032546 }, "geometry": { "type": "Point", "coordinates": [ 483685.0, 146752.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216897, "UPRN": 100062354263, "X_COORDINATE": 483671.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2141453, "LONGITUDE": -0.8034473 }, "geometry": { "type": "Point", "coordinates": [ 483671.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216898, "UPRN": 100062354264, "X_COORDINATE": 483665.0, "Y_COORDINATE": 146790.0, "LATITUDE": 51.2141911, "LONGITUDE": -0.803532 }, "geometry": { "type": "Point", "coordinates": [ 483665.0, 146790.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216896, "UPRN": 100062354262, "X_COORDINATE": 483677.0, "Y_COORDINATE": 146790.0, "LATITUDE": 51.2141893, "LONGITUDE": -0.8033603 }, "geometry": { "type": "Point", "coordinates": [ 483677.0, 146790.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216895, "UPRN": 100062354261, "X_COORDINATE": 483682.0, "Y_COORDINATE": 146793.0, "LATITUDE": 51.2142156, "LONGITUDE": -0.803288 }, "geometry": { "type": "Point", "coordinates": [ 483682.0, 146793.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216950, "UPRN": 100062354354, "X_COORDINATE": 483714.0, "Y_COORDINATE": 146803.0, "LATITUDE": 51.2143008, "LONGITUDE": -0.8028276 }, "geometry": { "type": "Point", "coordinates": [ 483714.0, 146803.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216899, "UPRN": 100062354265, "X_COORDINATE": 483667.0, "Y_COORDINATE": 146804.0, "LATITUDE": 51.2143167, "LONGITUDE": -0.8035001 }, "geometry": { "type": "Point", "coordinates": [ 483667.0, 146804.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216900, "UPRN": 100062354266, "X_COORDINATE": 483665.0, "Y_COORDINATE": 146810.0, "LATITUDE": 51.2143709, "LONGITUDE": -0.8035274 }, "geometry": { "type": "Point", "coordinates": [ 483665.0, 146810.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216951, "UPRN": 100062354355, "X_COORDINATE": 483708.73, "Y_COORDINATE": 146814.05, "LATITUDE": 51.2144009, "LONGITUDE": -0.8029005 }, "geometry": { "type": "Point", "coordinates": [ 483708.729999999981374, 146814.049999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 32216952, "UPRN": 100062354356, "X_COORDINATE": 483706.0, "Y_COORDINATE": 146819.0, "LATITUDE": 51.2144458, "LONGITUDE": -0.8029384 }, "geometry": { "type": "Point", "coordinates": [ 483706.0, 146819.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216953, "UPRN": 100062354357, "X_COORDINATE": 483703.0, "Y_COORDINATE": 146826.0, "LATITUDE": 51.2145092, "LONGITUDE": -0.8029797 }, "geometry": { "type": "Point", "coordinates": [ 483703.0, 146826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216908, "UPRN": 100062354274, "X_COORDINATE": 483707.0, "Y_COORDINATE": 146833.0, "LATITUDE": 51.2145715, "LONGITUDE": -0.8029208 }, "geometry": { "type": "Point", "coordinates": [ 483707.0, 146833.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216907, "UPRN": 100062354273, "X_COORDINATE": 483705.0, "Y_COORDINATE": 146836.0, "LATITUDE": 51.2145988, "LONGITUDE": -0.8029488 }, "geometry": { "type": "Point", "coordinates": [ 483705.0, 146836.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216906, "UPRN": 100062354272, "X_COORDINATE": 483703.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.214635, "LONGITUDE": -0.8029764 }, "geometry": { "type": "Point", "coordinates": [ 483703.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216905, "UPRN": 100062354271, "X_COORDINATE": 483701.0, "Y_COORDINATE": 146843.0, "LATITUDE": 51.2146623, "LONGITUDE": -0.8030044 }, "geometry": { "type": "Point", "coordinates": [ 483701.0, 146843.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216904, "UPRN": 100062354270, "X_COORDINATE": 483700.0, "Y_COORDINATE": 146846.0, "LATITUDE": 51.2146894, "LONGITUDE": -0.803018 }, "geometry": { "type": "Point", "coordinates": [ 483700.0, 146846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216903, "UPRN": 100062354269, "X_COORDINATE": 483698.0, "Y_COORDINATE": 146850.0, "LATITUDE": 51.2147257, "LONGITUDE": -0.8030457 }, "geometry": { "type": "Point", "coordinates": [ 483698.0, 146850.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730222, "UPRN": 100061609699, "X_COORDINATE": 483645.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2147604, "LONGITUDE": -0.8038036 }, "geometry": { "type": "Point", "coordinates": [ 483645.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730223, "UPRN": 100061609700, "X_COORDINATE": 483645.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2147604, "LONGITUDE": -0.8038036 }, "geometry": { "type": "Point", "coordinates": [ 483645.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216901, "UPRN": 100062354267, "X_COORDINATE": 483695.0, "Y_COORDINATE": 146854.0, "LATITUDE": 51.2147621, "LONGITUDE": -0.8030877 }, "geometry": { "type": "Point", "coordinates": [ 483695.0, 146854.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216902, "UPRN": 100062354268, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146861.0, "LATITUDE": 51.2148254, "LONGITUDE": -0.803129 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146861.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217153, "UPRN": 100062354659, "X_COORDINATE": 483711.32, "Y_COORDINATE": 146809.15, "LATITUDE": 51.2143565, "LONGITUDE": -0.8028645 }, "geometry": { "type": "Point", "coordinates": [ 483711.32, 146809.15 ] } }, -{ "type": "Feature", "properties": { "FID": 32367260, "UPRN": 100062609589, "X_COORDINATE": 483712.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2141303, "LONGITUDE": -0.8028607 }, "geometry": { "type": "Point", "coordinates": [ 483712.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367262, "UPRN": 100062609591, "X_COORDINATE": 483712.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2141303, "LONGITUDE": -0.8028607 }, "geometry": { "type": "Point", "coordinates": [ 483712.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367263, "UPRN": 100062609592, "X_COORDINATE": 483682.0, "Y_COORDINATE": 146837.0, "LATITUDE": 51.2146111, "LONGITUDE": -0.8032777 }, "geometry": { "type": "Point", "coordinates": [ 483682.0, 146837.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367264, "UPRN": 100062609593, "X_COORDINATE": 483712.0, "Y_COORDINATE": 146784.0, "LATITUDE": 51.2141303, "LONGITUDE": -0.8028607 }, "geometry": { "type": "Point", "coordinates": [ 483712.0, 146784.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367283, "UPRN": 100062609648, "X_COORDINATE": 483692.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138725, "LONGITUDE": -0.8031537 }, "geometry": { "type": "Point", "coordinates": [ 483692.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400055, "UPRN": 100062700241, "X_COORDINATE": 483682.0, "Y_COORDINATE": 146793.0, "LATITUDE": 51.2142156, "LONGITUDE": -0.803288 }, "geometry": { "type": "Point", "coordinates": [ 483682.0, 146793.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400056, "UPRN": 100062700242, "X_COORDINATE": 483703.0, "Y_COORDINATE": 146826.0, "LATITUDE": 51.2145092, "LONGITUDE": -0.8029797 }, "geometry": { "type": "Point", "coordinates": [ 483703.0, 146826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400059, "UPRN": 100062700245, "X_COORDINATE": 483695.0, "Y_COORDINATE": 146854.0, "LATITUDE": 51.2147621, "LONGITUDE": -0.8030877 }, "geometry": { "type": "Point", "coordinates": [ 483695.0, 146854.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730224, "UPRN": 100061609701, "X_COORDINATE": 483641.0, "Y_COORDINATE": 146863.0, "LATITUDE": 51.2148509, "LONGITUDE": -0.8038586 }, "geometry": { "type": "Point", "coordinates": [ 483641.0, 146863.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216934, "UPRN": 100062354321, "X_COORDINATE": 483592.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150918, "LONGITUDE": -0.8045539 }, "geometry": { "type": "Point", "coordinates": [ 483592.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216935, "UPRN": 100062354322, "X_COORDINATE": 483592.0, "Y_COORDINATE": 146889.0, "LATITUDE": 51.2150918, "LONGITUDE": -0.8045539 }, "geometry": { "type": "Point", "coordinates": [ 483592.0, 146889.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216932, "UPRN": 100062354319, "X_COORDINATE": 483598.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2151179, "LONGITUDE": -0.8044673 }, "geometry": { "type": "Point", "coordinates": [ 483598.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216933, "UPRN": 100062354320, "X_COORDINATE": 483598.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2151179, "LONGITUDE": -0.8044673 }, "geometry": { "type": "Point", "coordinates": [ 483598.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216924, "UPRN": 100062354311, "X_COORDINATE": 483621.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2151505, "LONGITUDE": -0.8041372 }, "geometry": { "type": "Point", "coordinates": [ 483621.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216925, "UPRN": 100062354312, "X_COORDINATE": 483621.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2151505, "LONGITUDE": -0.8041372 }, "geometry": { "type": "Point", "coordinates": [ 483621.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216930, "UPRN": 100062354317, "X_COORDINATE": 483605.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2151528, "LONGITUDE": -0.8043662 }, "geometry": { "type": "Point", "coordinates": [ 483605.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216931, "UPRN": 100062354318, "X_COORDINATE": 483605.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2151528, "LONGITUDE": -0.8043662 }, "geometry": { "type": "Point", "coordinates": [ 483605.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216928, "UPRN": 100062354315, "X_COORDINATE": 483611.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2151879, "LONGITUDE": -0.8042794 }, "geometry": { "type": "Point", "coordinates": [ 483611.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216929, "UPRN": 100062354316, "X_COORDINATE": 483611.0, "Y_COORDINATE": 146900.0, "LATITUDE": 51.2151879, "LONGITUDE": -0.8042794 }, "geometry": { "type": "Point", "coordinates": [ 483611.0, 146900.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216926, "UPRN": 100062354313, "X_COORDINATE": 483617.0, "Y_COORDINATE": 146904.0, "LATITUDE": 51.215223, "LONGITUDE": -0.8041926 }, "geometry": { "type": "Point", "coordinates": [ 483617.0, 146904.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216927, "UPRN": 100062354314, "X_COORDINATE": 483617.0, "Y_COORDINATE": 146904.0, "LATITUDE": 51.215223, "LONGITUDE": -0.8041926 }, "geometry": { "type": "Point", "coordinates": [ 483617.0, 146904.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400057, "UPRN": 100062700243, "X_COORDINATE": 483621.0, "Y_COORDINATE": 146896.0, "LATITUDE": 51.2151505, "LONGITUDE": -0.8041372 }, "geometry": { "type": "Point", "coordinates": [ 483621.0, 146896.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216645, "UPRN": 100062353896, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367212, "UPRN": 100062609491, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367213, "UPRN": 100062609492, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367214, "UPRN": 100062609493, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367215, "UPRN": 100062609494, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367216, "UPRN": 100062609495, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367217, "UPRN": 100062609496, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726502, "UPRN": 100061605711, "X_COORDINATE": 483557.0, "Y_COORDINATE": 146559.0, "LATITUDE": 51.2121302, "LONGITUDE": -0.8051316 }, "geometry": { "type": "Point", "coordinates": [ 483557.0, 146559.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726503, "UPRN": 100061605712, "X_COORDINATE": 483563.0, "Y_COORDINATE": 146561.0, "LATITUDE": 51.2121473, "LONGITUDE": -0.8050453 }, "geometry": { "type": "Point", "coordinates": [ 483563.0, 146561.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726504, "UPRN": 100061605713, "X_COORDINATE": 483570.0, "Y_COORDINATE": 146564.0, "LATITUDE": 51.2121732, "LONGITUDE": -0.8049444 }, "geometry": { "type": "Point", "coordinates": [ 483570.0, 146564.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122903, "UPRN": 100062162847, "X_COORDINATE": 483576.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2126039, "LONGITUDE": -0.8048473 }, "geometry": { "type": "Point", "coordinates": [ 483576.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726505, "UPRN": 100061605714, "X_COORDINATE": 483584.0, "Y_COORDINATE": 146568.0, "LATITUDE": 51.2122071, "LONGITUDE": -0.8047431 }, "geometry": { "type": "Point", "coordinates": [ 483584.0, 146568.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726506, "UPRN": 100061605715, "X_COORDINATE": 483591.0, "Y_COORDINATE": 146570.0, "LATITUDE": 51.2122241, "LONGITUDE": -0.8046424 }, "geometry": { "type": "Point", "coordinates": [ 483591.0, 146570.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726508, "UPRN": 100061605717, "X_COORDINATE": 483598.0, "Y_COORDINATE": 146572.0, "LATITUDE": 51.212241, "LONGITUDE": -0.8045417 }, "geometry": { "type": "Point", "coordinates": [ 483598.0, 146572.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720845, "UPRN": 100061599613, "X_COORDINATE": 483635.0, "Y_COORDINATE": 146595.0, "LATITUDE": 51.2124424, "LONGITUDE": -0.8040068 }, "geometry": { "type": "Point", "coordinates": [ 483635.0, 146595.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720846, "UPRN": 100061599614, "X_COORDINATE": 483643.0, "Y_COORDINATE": 146594.0, "LATITUDE": 51.2124322, "LONGITUDE": -0.8038925 }, "geometry": { "type": "Point", "coordinates": [ 483643.0, 146594.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720847, "UPRN": 100061599615, "X_COORDINATE": 483646.0, "Y_COORDINATE": 146569.0, "LATITUDE": 51.212207, "LONGITUDE": -0.8038554 }, "geometry": { "type": "Point", "coordinates": [ 483646.0, 146569.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720848, "UPRN": 100061599617, "X_COORDINATE": 483657.0, "Y_COORDINATE": 146632.0, "LATITUDE": 51.2127718, "LONGITUDE": -0.8036833 }, "geometry": { "type": "Point", "coordinates": [ 483657.0, 146632.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122244, "UPRN": 100062161621, "X_COORDINATE": 483667.0, "Y_COORDINATE": 146576.0, "LATITUDE": 51.2122669, "LONGITUDE": -0.8035532 }, "geometry": { "type": "Point", "coordinates": [ 483667.0, 146576.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731773, "UPRN": 100061611393, "X_COORDINATE": 483676.0, "Y_COORDINATE": 146643.0, "LATITUDE": 51.2128679, "LONGITUDE": -0.8034088 }, "geometry": { "type": "Point", "coordinates": [ 483676.0, 146643.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367218, "UPRN": 100062609498, "X_COORDINATE": 483556.0, "Y_COORDINATE": 146588.0, "LATITUDE": 51.212391, "LONGITUDE": -0.8051392 }, "geometry": { "type": "Point", "coordinates": [ 483556.0, 146588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719929, "UPRN": 100061598678, "X_COORDINATE": 483722.0, "Y_COORDINATE": 146819.0, "LATITUDE": 51.2144435, "LONGITUDE": -0.8027094 }, "geometry": { "type": "Point", "coordinates": [ 483722.0, 146819.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719928, "UPRN": 100061598677, "X_COORDINATE": 483719.0, "Y_COORDINATE": 146823.0, "LATITUDE": 51.2144799, "LONGITUDE": -0.8027514 }, "geometry": { "type": "Point", "coordinates": [ 483719.0, 146823.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719927, "UPRN": 100061598676, "X_COORDINATE": 483718.0, "Y_COORDINATE": 146828.0, "LATITUDE": 51.214525, "LONGITUDE": -0.8027645 }, "geometry": { "type": "Point", "coordinates": [ 483718.0, 146828.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719930, "UPRN": 100061598679, "X_COORDINATE": 483731.0, "Y_COORDINATE": 146833.0, "LATITUDE": 51.214568, "LONGITUDE": -0.8025773 }, "geometry": { "type": "Point", "coordinates": [ 483731.0, 146833.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719931, "UPRN": 100061598680, "X_COORDINATE": 483735.0, "Y_COORDINATE": 146835.0, "LATITUDE": 51.2145854, "LONGITUDE": -0.8025196 }, "geometry": { "type": "Point", "coordinates": [ 483735.0, 146835.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31719932, "UPRN": 100061598681, "X_COORDINATE": 483739.0, "Y_COORDINATE": 146838.0, "LATITUDE": 51.2146118, "LONGITUDE": -0.8024616 }, "geometry": { "type": "Point", "coordinates": [ 483739.0, 146838.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217026, "UPRN": 100062354471, "X_COORDINATE": 483718.0, "Y_COORDINATE": 146840.0, "LATITUDE": 51.2146328, "LONGITUDE": -0.8027617 }, "geometry": { "type": "Point", "coordinates": [ 483718.0, 146840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367209, "UPRN": 100062609482, "X_COORDINATE": 483722.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.214902, "LONGITUDE": -0.8026975 }, "geometry": { "type": "Point", "coordinates": [ 483722.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367210, "UPRN": 100062609483, "X_COORDINATE": 483722.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.214902, "LONGITUDE": -0.8026975 }, "geometry": { "type": "Point", "coordinates": [ 483722.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216627, "UPRN": 100062353869, "X_COORDINATE": 483779.0, "Y_COORDINATE": 146915.0, "LATITUDE": 51.2152982, "LONGITUDE": -0.8018711 }, "geometry": { "type": "Point", "coordinates": [ 483779.0, 146915.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725882, "UPRN": 100061605073, "X_COORDINATE": 483797.0, "Y_COORDINATE": 146997.0, "LATITUDE": 51.2160327, "LONGITUDE": -0.8015943 }, "geometry": { "type": "Point", "coordinates": [ 483797.0, 146997.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267438, "UPRN": 10091108758, "X_COORDINATE": 483788.0, "Y_COORDINATE": 147009.0, "LATITUDE": 51.2161419, "LONGITUDE": -0.8017204 }, "geometry": { "type": "Point", "coordinates": [ 483788.0, 147009.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725884, "UPRN": 100061605075, "X_COORDINATE": 483792.0, "Y_COORDINATE": 147011.0, "LATITUDE": 51.2161593, "LONGITUDE": -0.8016626 }, "geometry": { "type": "Point", "coordinates": [ 483792.0, 147011.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725886, "UPRN": 100061605077, "X_COORDINATE": 483787.0, "Y_COORDINATE": 147022.0, "LATITUDE": 51.2162589, "LONGITUDE": -0.8017316 }, "geometry": { "type": "Point", "coordinates": [ 483787.0, 147022.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725887, "UPRN": 100061605078, "X_COORDINATE": 483782.0, "Y_COORDINATE": 147034.0, "LATITUDE": 51.2163676, "LONGITUDE": -0.8018004 }, "geometry": { "type": "Point", "coordinates": [ 483782.0, 147034.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449575, "UPRN": 10013895948, "X_COORDINATE": 483791.0, "Y_COORDINATE": 147045.0, "LATITUDE": 51.2164651, "LONGITUDE": -0.801669 }, "geometry": { "type": "Point", "coordinates": [ 483791.0, 147045.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725906, "UPRN": 100061605097, "X_COORDINATE": 483766.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2166126, "LONGITUDE": -0.8020232 }, "geometry": { "type": "Point", "coordinates": [ 483766.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725907, "UPRN": 100061605098, "X_COORDINATE": 483789.0, "Y_COORDINATE": 147082.0, "LATITUDE": 51.2167981, "LONGITUDE": -0.801689 }, "geometry": { "type": "Point", "coordinates": [ 483789.0, 147082.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399434, "UPRN": 100062699140, "X_COORDINATE": 483760.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2185644, "LONGITUDE": -0.8020585 }, "geometry": { "type": "Point", "coordinates": [ 483760.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399742, "UPRN": 100062699693, "X_COORDINATE": 483722.0, "Y_COORDINATE": 146870.0, "LATITUDE": 51.214902, "LONGITUDE": -0.8026975 }, "geometry": { "type": "Point", "coordinates": [ 483722.0, 146870.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31721935, "UPRN": 100061600744, "X_COORDINATE": 483707.84, "Y_COORDINATE": 147166.61, "LATITUDE": 51.2175706, "LONGITUDE": -0.8028311 }, "geometry": { "type": "Point", "coordinates": [ 483707.840000000025611, 147166.60999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 32122263, "UPRN": 100062161738, "X_COORDINATE": 483766.0, "Y_COORDINATE": 147152.0, "LATITUDE": 51.2174307, "LONGITUDE": -0.8020019 }, "geometry": { "type": "Point", "coordinates": [ 483766.0, 147152.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122262, "UPRN": 100062161737, "X_COORDINATE": 483773.0, "Y_COORDINATE": 147150.0, "LATITUDE": 51.2174117, "LONGITUDE": -0.8019022 }, "geometry": { "type": "Point", "coordinates": [ 483773.0, 147150.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122261, "UPRN": 100062161736, "X_COORDINATE": 483781.0, "Y_COORDINATE": 147147.0, "LATITUDE": 51.2173836, "LONGITUDE": -0.8017884 }, "geometry": { "type": "Point", "coordinates": [ 483781.0, 147147.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122260, "UPRN": 100062161735, "X_COORDINATE": 483787.0, "Y_COORDINATE": 147145.0, "LATITUDE": 51.2173647, "LONGITUDE": -0.801703 }, "geometry": { "type": "Point", "coordinates": [ 483787.0, 147145.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399432, "UPRN": 100062699138, "X_COORDINATE": 483787.0, "Y_COORDINATE": 147145.0, "LATITUDE": 51.2173647, "LONGITUDE": -0.801703 }, "geometry": { "type": "Point", "coordinates": [ 483787.0, 147145.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122265, "UPRN": 100062161740, "X_COORDINATE": 483844.0, "Y_COORDINATE": 147230.0, "LATITUDE": 51.2181205, "LONGITUDE": -0.8008672 }, "geometry": { "type": "Point", "coordinates": [ 483844.0, 147230.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122266, "UPRN": 100062161741, "X_COORDINATE": 483845.0, "Y_COORDINATE": 147226.0, "LATITUDE": 51.2180844, "LONGITUDE": -0.8008538 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 147226.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399433, "UPRN": 100062699139, "X_COORDINATE": 483845.0, "Y_COORDINATE": 147226.0, "LATITUDE": 51.2180844, "LONGITUDE": -0.8008538 }, "geometry": { "type": "Point", "coordinates": [ 483845.0, 147226.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122264, "UPRN": 100062161739, "X_COORDINATE": 483846.0, "Y_COORDINATE": 147223.0, "LATITUDE": 51.2180573, "LONGITUDE": -0.8008402 }, "geometry": { "type": "Point", "coordinates": [ 483846.0, 147223.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122259, "UPRN": 100062161734, "X_COORDINATE": 483854.0, "Y_COORDINATE": 147159.0, "LATITUDE": 51.2174808, "LONGITUDE": -0.8007406 }, "geometry": { "type": "Point", "coordinates": [ 483854.0, 147159.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724907, "UPRN": 100061604058, "X_COORDINATE": 483990.0, "Y_COORDINATE": 147137.0, "LATITUDE": 51.217263, "LONGITUDE": -0.7987989 }, "geometry": { "type": "Point", "coordinates": [ 483990.0, 147137.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724909, "UPRN": 100061604060, "X_COORDINATE": 483997.0, "Y_COORDINATE": 147145.0, "LATITUDE": 51.2173339, "LONGITUDE": -0.7986969 }, "geometry": { "type": "Point", "coordinates": [ 483997.0, 147145.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724911, "UPRN": 100061604062, "X_COORDINATE": 484008.0, "Y_COORDINATE": 147155.0, "LATITUDE": 51.2174222, "LONGITUDE": -0.7985371 }, "geometry": { "type": "Point", "coordinates": [ 484008.0, 147155.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724913, "UPRN": 100061604064, "X_COORDINATE": 484024.0, "Y_COORDINATE": 147166.0, "LATITUDE": 51.2175187, "LONGITUDE": -0.7983055 }, "geometry": { "type": "Point", "coordinates": [ 484024.0, 147166.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724904, "UPRN": 100061604055, "X_COORDINATE": 484038.0, "Y_COORDINATE": 147136.0, "LATITUDE": 51.217247, "LONGITUDE": -0.7981121 }, "geometry": { "type": "Point", "coordinates": [ 484038.0, 147136.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724915, "UPRN": 100061604066, "X_COORDINATE": 484039.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2176064, "LONGITUDE": -0.7980884 }, "geometry": { "type": "Point", "coordinates": [ 484039.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724903, "UPRN": 100061604054, "X_COORDINATE": 484047.0, "Y_COORDINATE": 147140.0, "LATITUDE": 51.2172816, "LONGITUDE": -0.7979823 }, "geometry": { "type": "Point", "coordinates": [ 484047.0, 147140.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724917, "UPRN": 100061604068, "X_COORDINATE": 484048.0, "Y_COORDINATE": 147181.0, "LATITUDE": 51.2176501, "LONGITUDE": -0.7979584 }, "geometry": { "type": "Point", "coordinates": [ 484048.0, 147181.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724906, "UPRN": 100061604057, "X_COORDINATE": 484052.0, "Y_COORDINATE": 147147.0, "LATITUDE": 51.2173438, "LONGITUDE": -0.7979091 }, "geometry": { "type": "Point", "coordinates": [ 484052.0, 147147.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724920, "UPRN": 100061604071, "X_COORDINATE": 484055.0, "Y_COORDINATE": 147186.0, "LATITUDE": 51.217694, "LONGITUDE": -0.797857 }, "geometry": { "type": "Point", "coordinates": [ 484055.0, 147186.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724908, "UPRN": 100061604059, "X_COORDINATE": 484063.0, "Y_COORDINATE": 147154.0, "LATITUDE": 51.2174051, "LONGITUDE": -0.79775 }, "geometry": { "type": "Point", "coordinates": [ 484063.0, 147154.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724922, "UPRN": 100061604073, "X_COORDINATE": 484066.0, "Y_COORDINATE": 147193.0, "LATITUDE": 51.2177553, "LONGITUDE": -0.7976979 }, "geometry": { "type": "Point", "coordinates": [ 484066.0, 147193.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724910, "UPRN": 100061604061, "X_COORDINATE": 484073.0, "Y_COORDINATE": 147160.0, "LATITUDE": 51.2174576, "LONGITUDE": -0.7976054 }, "geometry": { "type": "Point", "coordinates": [ 484073.0, 147160.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724924, "UPRN": 100061604075, "X_COORDINATE": 484076.0, "Y_COORDINATE": 147197.0, "LATITUDE": 51.2177898, "LONGITUDE": -0.7975538 }, "geometry": { "type": "Point", "coordinates": [ 484076.0, 147197.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724912, "UPRN": 100061604063, "X_COORDINATE": 484083.0, "Y_COORDINATE": 147165.0, "LATITUDE": 51.2175011, "LONGITUDE": -0.7974611 }, "geometry": { "type": "Point", "coordinates": [ 484083.0, 147165.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17775147, "UPRN": 10025226905, "X_COORDINATE": 483708.99, "Y_COORDINATE": 147258.71, "LATITUDE": 51.2183984, "LONGITUDE": -0.8027932 }, "geometry": { "type": "Point", "coordinates": [ 483708.99, 147258.71 ] } }, -{ "type": "Feature", "properties": { "FID": 31722274, "UPRN": 100061601088, "X_COORDINATE": 483510.0, "Y_COORDINATE": 146748.0, "LATITUDE": 51.2138362, "LONGITUDE": -0.8057604 }, "geometry": { "type": "Point", "coordinates": [ 483510.0, 146748.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722278, "UPRN": 100061601092, "X_COORDINATE": 483511.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136922, "LONGITUDE": -0.8057498 }, "geometry": { "type": "Point", "coordinates": [ 483511.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722277, "UPRN": 100061601091, "X_COORDINATE": 483511.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136922, "LONGITUDE": -0.8057498 }, "geometry": { "type": "Point", "coordinates": [ 483511.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722273, "UPRN": 100061601087, "X_COORDINATE": 483513.0, "Y_COORDINATE": 146754.0, "LATITUDE": 51.2138897, "LONGITUDE": -0.8057161 }, "geometry": { "type": "Point", "coordinates": [ 483513.0, 146754.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722276, "UPRN": 100061601090, "X_COORDINATE": 483517.0, "Y_COORDINATE": 146735.0, "LATITUDE": 51.2137183, "LONGITUDE": -0.8056632 }, "geometry": { "type": "Point", "coordinates": [ 483517.0, 146735.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722275, "UPRN": 100061601089, "X_COORDINATE": 483517.0, "Y_COORDINATE": 146735.0, "LATITUDE": 51.2137183, "LONGITUDE": -0.8056632 }, "geometry": { "type": "Point", "coordinates": [ 483517.0, 146735.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722272, "UPRN": 100061601086, "X_COORDINATE": 483519.0, "Y_COORDINATE": 146757.0, "LATITUDE": 51.2139158, "LONGITUDE": -0.8056295 }, "geometry": { "type": "Point", "coordinates": [ 483519.0, 146757.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722271, "UPRN": 100061601085, "X_COORDINATE": 483525.0, "Y_COORDINATE": 146761.0, "LATITUDE": 51.2139509, "LONGITUDE": -0.8055427 }, "geometry": { "type": "Point", "coordinates": [ 483525.0, 146761.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722270, "UPRN": 100061601084, "X_COORDINATE": 483531.0, "Y_COORDINATE": 146764.0, "LATITUDE": 51.213977, "LONGITUDE": -0.8054561 }, "geometry": { "type": "Point", "coordinates": [ 483531.0, 146764.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722269, "UPRN": 100061601083, "X_COORDINATE": 483537.0, "Y_COORDINATE": 146763.0, "LATITUDE": 51.2139671, "LONGITUDE": -0.8053705 }, "geometry": { "type": "Point", "coordinates": [ 483537.0, 146763.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722268, "UPRN": 100061601082, "X_COORDINATE": 483541.0, "Y_COORDINATE": 146757.0, "LATITUDE": 51.2139126, "LONGITUDE": -0.8053146 }, "geometry": { "type": "Point", "coordinates": [ 483541.0, 146757.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722267, "UPRN": 100061601081, "X_COORDINATE": 483545.0, "Y_COORDINATE": 146750.0, "LATITUDE": 51.213849, "LONGITUDE": -0.805259 }, "geometry": { "type": "Point", "coordinates": [ 483545.0, 146750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722266, "UPRN": 100061601080, "X_COORDINATE": 483548.0, "Y_COORDINATE": 146744.0, "LATITUDE": 51.2137947, "LONGITUDE": -0.8052174 }, "geometry": { "type": "Point", "coordinates": [ 483548.0, 146744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722265, "UPRN": 100061601079, "X_COORDINATE": 483552.0, "Y_COORDINATE": 146738.0, "LATITUDE": 51.2137401, "LONGITUDE": -0.8051616 }, "geometry": { "type": "Point", "coordinates": [ 483552.0, 146738.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722264, "UPRN": 100061601078, "X_COORDINATE": 483555.0, "Y_COORDINATE": 146732.0, "LATITUDE": 51.2136858, "LONGITUDE": -0.80512 }, "geometry": { "type": "Point", "coordinates": [ 483555.0, 146732.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723707, "UPRN": 100061602683, "X_COORDINATE": 483549.0, "Y_COORDINATE": 146779.0, "LATITUDE": 51.2141092, "LONGITUDE": -0.805195 }, "geometry": { "type": "Point", "coordinates": [ 483549.0, 146779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723709, "UPRN": 100061602685, "X_COORDINATE": 483555.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.2140184, "LONGITUDE": -0.8051114 }, "geometry": { "type": "Point", "coordinates": [ 483555.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720026, "UPRN": 100061598777, "X_COORDINATE": 483423.0, "Y_COORDINATE": 146444.0, "LATITUDE": 51.2111159, "LONGITUDE": -0.8070763 }, "geometry": { "type": "Point", "coordinates": [ 483423.0, 146444.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720027, "UPRN": 100061598778, "X_COORDINATE": 483426.0, "Y_COORDINATE": 146441.0, "LATITUDE": 51.2110885, "LONGITUDE": -0.807034 }, "geometry": { "type": "Point", "coordinates": [ 483426.0, 146441.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720028, "UPRN": 100061598779, "X_COORDINATE": 483429.0, "Y_COORDINATE": 146439.0, "LATITUDE": 51.21107, "LONGITUDE": -0.8069915 }, "geometry": { "type": "Point", "coordinates": [ 483429.0, 146439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720029, "UPRN": 100061598780, "X_COORDINATE": 483431.0, "Y_COORDINATE": 146436.0, "LATITUDE": 51.2110428, "LONGITUDE": -0.8069636 }, "geometry": { "type": "Point", "coordinates": [ 483431.0, 146436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720030, "UPRN": 100061598781, "X_COORDINATE": 483434.0, "Y_COORDINATE": 146433.0, "LATITUDE": 51.2110154, "LONGITUDE": -0.8069214 }, "geometry": { "type": "Point", "coordinates": [ 483434.0, 146433.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720031, "UPRN": 100061598782, "X_COORDINATE": 483437.0, "Y_COORDINATE": 146431.0, "LATITUDE": 51.210997, "LONGITUDE": -0.8068789 }, "geometry": { "type": "Point", "coordinates": [ 483437.0, 146431.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720032, "UPRN": 100061598783, "X_COORDINATE": 483439.0, "Y_COORDINATE": 146428.0, "LATITUDE": 51.2109697, "LONGITUDE": -0.806851 }, "geometry": { "type": "Point", "coordinates": [ 483439.0, 146428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720033, "UPRN": 100061598784, "X_COORDINATE": 483442.0, "Y_COORDINATE": 146425.0, "LATITUDE": 51.2109423, "LONGITUDE": -0.8068087 }, "geometry": { "type": "Point", "coordinates": [ 483442.0, 146425.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31720034, "UPRN": 100061598785, "X_COORDINATE": 483445.0, "Y_COORDINATE": 146423.0, "LATITUDE": 51.2109239, "LONGITUDE": -0.8067663 }, "geometry": { "type": "Point", "coordinates": [ 483445.0, 146423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722647, "UPRN": 100061601546, "X_COORDINATE": 483483.0, "Y_COORDINATE": 146406.0, "LATITUDE": 51.2107655, "LONGITUDE": -0.8062263 }, "geometry": { "type": "Point", "coordinates": [ 483483.0, 146406.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722646, "UPRN": 100061601545, "X_COORDINATE": 483480.0, "Y_COORDINATE": 146410.0, "LATITUDE": 51.2108019, "LONGITUDE": -0.8062683 }, "geometry": { "type": "Point", "coordinates": [ 483480.0, 146410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722645, "UPRN": 100061601544, "X_COORDINATE": 483478.0, "Y_COORDINATE": 146414.0, "LATITUDE": 51.2108381, "LONGITUDE": -0.806296 }, "geometry": { "type": "Point", "coordinates": [ 483478.0, 146414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722644, "UPRN": 100061601543, "X_COORDINATE": 483471.0, "Y_COORDINATE": 146415.0, "LATITUDE": 51.2108481, "LONGITUDE": -0.806396 }, "geometry": { "type": "Point", "coordinates": [ 483471.0, 146415.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722643, "UPRN": 100061601542, "X_COORDINATE": 483464.0, "Y_COORDINATE": 146409.0, "LATITUDE": 51.2107952, "LONGITUDE": -0.8064976 }, "geometry": { "type": "Point", "coordinates": [ 483464.0, 146409.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722642, "UPRN": 100061601541, "X_COORDINATE": 483461.0, "Y_COORDINATE": 146406.0, "LATITUDE": 51.2107687, "LONGITUDE": -0.8065412 }, "geometry": { "type": "Point", "coordinates": [ 483461.0, 146406.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731801, "UPRN": 100061611422, "X_COORDINATE": 483406.0, "Y_COORDINATE": 146535.0, "LATITUDE": 51.2119365, "LONGITUDE": -0.8072985 }, "geometry": { "type": "Point", "coordinates": [ 483406.0, 146535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731802, "UPRN": 100061611423, "X_COORDINATE": 483398.0, "Y_COORDINATE": 146515.0, "LATITUDE": 51.2117578, "LONGITUDE": -0.8074176 }, "geometry": { "type": "Point", "coordinates": [ 483398.0, 146515.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731803, "UPRN": 100061611424, "X_COORDINATE": 483396.0, "Y_COORDINATE": 146512.0, "LATITUDE": 51.2117311, "LONGITUDE": -0.8074469 }, "geometry": { "type": "Point", "coordinates": [ 483396.0, 146512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122923, "UPRN": 100062162899, "X_COORDINATE": 483421.0, "Y_COORDINATE": 146535.0, "LATITUDE": 51.2119343, "LONGITUDE": -0.8070838 }, "geometry": { "type": "Point", "coordinates": [ 483421.0, 146535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217123, "UPRN": 100062354604, "X_COORDINATE": 483399.0, "Y_COORDINATE": 146559.0, "LATITUDE": 51.2121532, "LONGITUDE": -0.8073931 }, "geometry": { "type": "Point", "coordinates": [ 483399.0, 146559.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367291, "UPRN": 100062609661, "X_COORDINATE": 483415.0, "Y_COORDINATE": 146547.0, "LATITUDE": 51.212043, "LONGITUDE": -0.8071669 }, "geometry": { "type": "Point", "coordinates": [ 483415.0, 146547.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400145, "UPRN": 100062700396, "X_COORDINATE": 483419.0, "Y_COORDINATE": 146539.0, "LATITUDE": 51.2119705, "LONGITUDE": -0.8071115 }, "geometry": { "type": "Point", "coordinates": [ 483419.0, 146539.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731804, "UPRN": 100061611425, "X_COORDINATE": 483299.0, "Y_COORDINATE": 146433.0, "LATITUDE": 51.2110351, "LONGITUDE": -0.8088536 }, "geometry": { "type": "Point", "coordinates": [ 483299.0, 146433.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728008, "UPRN": 100061607281, "X_COORDINATE": 483755.0, "Y_COORDINATE": 146213.0, "LATITUDE": 51.2089906, "LONGITUDE": -0.8023782 }, "geometry": { "type": "Point", "coordinates": [ 483755.0, 146213.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728007, "UPRN": 100061607280, "X_COORDINATE": 483770.0, "Y_COORDINATE": 146225.0, "LATITUDE": 51.2090963, "LONGITUDE": -0.8021607 }, "geometry": { "type": "Point", "coordinates": [ 483770.0, 146225.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216617, "UPRN": 100062353857, "X_COORDINATE": 483395.0, "Y_COORDINATE": 146340.0, "LATITUDE": 51.210185, "LONGITUDE": -0.8075011 }, "geometry": { "type": "Point", "coordinates": [ 483395.0, 146340.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367169, "UPRN": 100062609358, "X_COORDINATE": 483324.0, "Y_COORDINATE": 146395.0, "LATITUDE": 51.2106898, "LONGITUDE": -0.8085046 }, "geometry": { "type": "Point", "coordinates": [ 483324.0, 146395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399498, "UPRN": 100062699262, "X_COORDINATE": 483371.0, "Y_COORDINATE": 146436.0, "LATITUDE": 51.2110515, "LONGITUDE": -0.8078224 }, "geometry": { "type": "Point", "coordinates": [ 483371.0, 146436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18021391, "UPRN": 10025634296, "X_COORDINATE": 484135.82, "Y_COORDINATE": 146706.52, "LATITUDE": 51.2133715, "LONGITUDE": -0.7968123 }, "geometry": { "type": "Point", "coordinates": [ 484135.82, 146706.519999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 31730846, "UPRN": 100061610425, "X_COORDINATE": 484158.0, "Y_COORDINATE": 146750.0, "LATITUDE": 51.2137591, "LONGITUDE": -0.7964847 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 146750.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730847, "UPRN": 100061610426, "X_COORDINATE": 484161.0, "Y_COORDINATE": 146753.0, "LATITUDE": 51.2137856, "LONGITUDE": -0.796441 }, "geometry": { "type": "Point", "coordinates": [ 484161.0, 146753.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730845, "UPRN": 100061610424, "X_COORDINATE": 484164.0, "Y_COORDINATE": 146755.0, "LATITUDE": 51.2138032, "LONGITUDE": -0.7963976 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 146755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18099109, "UPRN": 10026046369, "X_COORDINATE": 484166.25, "Y_COORDINATE": 146721.33, "LATITUDE": 51.2135001, "LONGITUDE": -0.7963733 }, "geometry": { "type": "Point", "coordinates": [ 484166.25, 146721.329999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 31730844, "UPRN": 100061610423, "X_COORDINATE": 484167.0, "Y_COORDINATE": 146758.0, "LATITUDE": 51.2138297, "LONGITUDE": -0.796354 }, "geometry": { "type": "Point", "coordinates": [ 484167.0, 146758.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730843, "UPRN": 100061610422, "X_COORDINATE": 484169.0, "Y_COORDINATE": 146760.0, "LATITUDE": 51.2138474, "LONGITUDE": -0.7963249 }, "geometry": { "type": "Point", "coordinates": [ 484169.0, 146760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730842, "UPRN": 100061610421, "X_COORDINATE": 484173.0, "Y_COORDINATE": 146763.0, "LATITUDE": 51.2138738, "LONGITUDE": -0.7962669 }, "geometry": { "type": "Point", "coordinates": [ 484173.0, 146763.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730841, "UPRN": 100061610420, "X_COORDINATE": 484176.0, "Y_COORDINATE": 146766.0, "LATITUDE": 51.2139003, "LONGITUDE": -0.7962233 }, "geometry": { "type": "Point", "coordinates": [ 484176.0, 146766.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730840, "UPRN": 100061610419, "X_COORDINATE": 484180.0, "Y_COORDINATE": 146769.0, "LATITUDE": 51.2139267, "LONGITUDE": -0.7961653 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 146769.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730839, "UPRN": 100061610418, "X_COORDINATE": 484183.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2139622, "LONGITUDE": -0.7961215 }, "geometry": { "type": "Point", "coordinates": [ 484183.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265789, "UPRN": 10091107095, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265788, "UPRN": 10091107094, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447294, "UPRN": 10013893637, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447295, "UPRN": 10013893638, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217037, "UPRN": 100062354487, "X_COORDINATE": 484201.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140674, "LONGITUDE": -0.795861 }, "geometry": { "type": "Point", "coordinates": [ 484201.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217150, "UPRN": 100062354656, "X_COORDINATE": 484220.0, "Y_COORDINATE": 146761.0, "LATITUDE": 51.2138489, "LONGITUDE": -0.7955947 }, "geometry": { "type": "Point", "coordinates": [ 484220.0, 146761.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267368, "UPRN": 10091108685, "X_COORDINATE": 484228.0, "Y_COORDINATE": 146727.0, "LATITUDE": 51.213542, "LONGITUDE": -0.7954881 }, "geometry": { "type": "Point", "coordinates": [ 484228.0, 146727.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267374, "UPRN": 10091108691, "X_COORDINATE": 484228.0, "Y_COORDINATE": 146727.0, "LATITUDE": 51.213542, "LONGITUDE": -0.7954881 }, "geometry": { "type": "Point", "coordinates": [ 484228.0, 146727.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446646, "UPRN": 10013892971, "X_COORDINATE": 484229.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2135149, "LONGITUDE": -0.7954745 }, "geometry": { "type": "Point", "coordinates": [ 484229.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267380, "UPRN": 10091108697, "X_COORDINATE": 484229.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2135149, "LONGITUDE": -0.7954745 }, "geometry": { "type": "Point", "coordinates": [ 484229.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446648, "UPRN": 10013892973, "X_COORDINATE": 484229.0, "Y_COORDINATE": 146724.0, "LATITUDE": 51.2135149, "LONGITUDE": -0.7954745 }, "geometry": { "type": "Point", "coordinates": [ 484229.0, 146724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267369, "UPRN": 10091108686, "X_COORDINATE": 484232.0, "Y_COORDINATE": 146722.0, "LATITUDE": 51.2134965, "LONGITUDE": -0.795432 }, "geometry": { "type": "Point", "coordinates": [ 484232.0, 146722.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267375, "UPRN": 10091108692, "X_COORDINATE": 484232.0, "Y_COORDINATE": 146722.0, "LATITUDE": 51.2134965, "LONGITUDE": -0.795432 }, "geometry": { "type": "Point", "coordinates": [ 484232.0, 146722.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367240, "UPRN": 100062609544, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367241, "UPRN": 100062609545, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399987, "UPRN": 100062700118, "X_COORDINATE": 484192.0, "Y_COORDINATE": 146785.0, "LATITUDE": 51.2140688, "LONGITUDE": -0.7959898 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 146785.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448066, "UPRN": 10013894425, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147127.0, "LATITUDE": 51.2171388, "LONGITUDE": -0.795466 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147127.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726061, "UPRN": 100061605255, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147136.0, "LATITUDE": 51.2172321, "LONGITUDE": -0.7966663 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147136.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726060, "UPRN": 100061605254, "X_COORDINATE": 484143.0, "Y_COORDINATE": 147138.0, "LATITUDE": 51.2172495, "LONGITUDE": -0.7966086 }, "geometry": { "type": "Point", "coordinates": [ 484143.0, 147138.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726059, "UPRN": 100061605253, "X_COORDINATE": 484150.0, "Y_COORDINATE": 147140.0, "LATITUDE": 51.2172664, "LONGITUDE": -0.7965079 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 147140.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726057, "UPRN": 100061605251, "X_COORDINATE": 484162.0, "Y_COORDINATE": 147142.0, "LATITUDE": 51.2172827, "LONGITUDE": -0.7963356 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 147142.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726058, "UPRN": 100061605252, "X_COORDINATE": 484154.0, "Y_COORDINATE": 147143.0, "LATITUDE": 51.2172928, "LONGITUDE": -0.7964499 }, "geometry": { "type": "Point", "coordinates": [ 484154.0, 147143.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726056, "UPRN": 100061605250, "X_COORDINATE": 484166.0, "Y_COORDINATE": 147144.0, "LATITUDE": 51.2173, "LONGITUDE": -0.7962779 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 147144.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726055, "UPRN": 100061605249, "X_COORDINATE": 484176.0, "Y_COORDINATE": 147144.0, "LATITUDE": 51.2172986, "LONGITUDE": -0.7961348 }, "geometry": { "type": "Point", "coordinates": [ 484176.0, 147144.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726054, "UPRN": 100061605248, "X_COORDINATE": 484181.0, "Y_COORDINATE": 147145.0, "LATITUDE": 51.2173068, "LONGITUDE": -0.796063 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 147145.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726053, "UPRN": 100061605247, "X_COORDINATE": 484185.0, "Y_COORDINATE": 147145.0, "LATITUDE": 51.2173062, "LONGITUDE": -0.7960057 }, "geometry": { "type": "Point", "coordinates": [ 484185.0, 147145.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726052, "UPRN": 100061605246, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147145.0, "LATITUDE": 51.2173057, "LONGITUDE": -0.7959484 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147145.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216961, "UPRN": 100062354392, "X_COORDINATE": 484186.0, "Y_COORDINATE": 147169.0, "LATITUDE": 51.2175219, "LONGITUDE": -0.7959858 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 147169.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267061, "UPRN": 10091108377, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147170.0, "LATITUDE": 51.217527, "LONGITUDE": -0.7956133 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147170.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265942, "UPRN": 10091107248, "X_COORDINATE": 484212.0, "Y_COORDINATE": 147170.0, "LATITUDE": 51.217527, "LONGITUDE": -0.7956133 }, "geometry": { "type": "Point", "coordinates": [ 484212.0, 147170.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265943, "UPRN": 10091107249, "X_COORDINATE": 484210.0, "Y_COORDINATE": 147174.0, "LATITUDE": 51.2175633, "LONGITUDE": -0.795641 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 147174.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446268, "UPRN": 10013892580, "X_COORDINATE": 484208.0, "Y_COORDINATE": 147181.0, "LATITUDE": 51.2176265, "LONGITUDE": -0.795668 }, "geometry": { "type": "Point", "coordinates": [ 484208.0, 147181.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265944, "UPRN": 10091107250, "X_COORDINATE": 484205.0, "Y_COORDINATE": 147182.0, "LATITUDE": 51.2176359, "LONGITUDE": -0.7957107 }, "geometry": { "type": "Point", "coordinates": [ 484205.0, 147182.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265945, "UPRN": 10091107251, "X_COORDINATE": 484203.0, "Y_COORDINATE": 147186.0, "LATITUDE": 51.2176722, "LONGITUDE": -0.7957384 }, "geometry": { "type": "Point", "coordinates": [ 484203.0, 147186.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731086, "UPRN": 100061610674, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147189.0, "LATITUDE": 51.2177034, "LONGITUDE": -0.7961529 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147189.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724925, "UPRN": 100061604076, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147195.0, "LATITUDE": 51.2177625, "LONGITUDE": -0.7966525 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147195.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724927, "UPRN": 100061604078, "X_COORDINATE": 484147.0, "Y_COORDINATE": 147202.0, "LATITUDE": 51.2178243, "LONGITUDE": -0.7965363 }, "geometry": { "type": "Point", "coordinates": [ 484147.0, 147202.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724929, "UPRN": 100061604080, "X_COORDINATE": 484162.0, "Y_COORDINATE": 147205.0, "LATITUDE": 51.217849, "LONGITUDE": -0.7963209 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 147205.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731087, "UPRN": 100061610675, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147208.0, "LATITUDE": 51.217872, "LONGITUDE": -0.7959337 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147208.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731089, "UPRN": 100061610677, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147212.0, "LATITUDE": 51.2179083, "LONGITUDE": -0.7959614 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147212.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731091, "UPRN": 100061610679, "X_COORDINATE": 484184.0, "Y_COORDINATE": 147219.0, "LATITUDE": 51.2179717, "LONGITUDE": -0.7960027 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 147219.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731093, "UPRN": 100061610681, "X_COORDINATE": 484182.0, "Y_COORDINATE": 147222.0, "LATITUDE": 51.2179989, "LONGITUDE": -0.7960306 }, "geometry": { "type": "Point", "coordinates": [ 484182.0, 147222.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217124, "UPRN": 100062354605, "X_COORDINATE": 484164.62, "Y_COORDINATE": 146795.31, "LATITUDE": 51.2141655, "LONGITUDE": -0.7963793 }, "geometry": { "type": "Point", "coordinates": [ 484164.62, 146795.31 ] } }, -{ "type": "Feature", "properties": { "FID": 32217122, "UPRN": 100062354603, "X_COORDINATE": 484169.0, "Y_COORDINATE": 146798.0, "LATITUDE": 51.214189, "LONGITUDE": -0.796316 }, "geometry": { "type": "Point", "coordinates": [ 484169.0, 146798.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217008, "UPRN": 100062354441, "X_COORDINATE": 484143.0, "Y_COORDINATE": 146995.0, "LATITUDE": 51.2159639, "LONGITUDE": -0.796642 }, "geometry": { "type": "Point", "coordinates": [ 484143.0, 146995.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217007, "UPRN": 100062354440, "X_COORDINATE": 484138.0, "Y_COORDINATE": 146989.0, "LATITUDE": 51.2159107, "LONGITUDE": -0.796715 }, "geometry": { "type": "Point", "coordinates": [ 484138.0, 146989.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216946, "UPRN": 100062354346, "X_COORDINATE": 484157.0, "Y_COORDINATE": 146911.0, "LATITUDE": 51.2152067, "LONGITUDE": -0.7964613 }, "geometry": { "type": "Point", "coordinates": [ 484157.0, 146911.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216632, "UPRN": 100062353876, "X_COORDINATE": 484150.0, "Y_COORDINATE": 146845.0, "LATITUDE": 51.2146144, "LONGITUDE": -0.796577 }, "geometry": { "type": "Point", "coordinates": [ 484150.0, 146845.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122294, "UPRN": 100062161818, "X_COORDINATE": 484157.0, "Y_COORDINATE": 146995.0, "LATITUDE": 51.2159618, "LONGITUDE": -0.7964416 }, "geometry": { "type": "Point", "coordinates": [ 484157.0, 146995.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731421, "UPRN": 100061611021, "X_COORDINATE": 484158.0, "Y_COORDINATE": 146764.0, "LATITUDE": 51.213885, "LONGITUDE": -0.7964814 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 146764.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731420, "UPRN": 100061611020, "X_COORDINATE": 484156.0, "Y_COORDINATE": 146767.0, "LATITUDE": 51.2139122, "LONGITUDE": -0.7965093 }, "geometry": { "type": "Point", "coordinates": [ 484156.0, 146767.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731419, "UPRN": 100061611019, "X_COORDINATE": 484154.0, "Y_COORDINATE": 146770.0, "LATITUDE": 51.2139395, "LONGITUDE": -0.7965373 }, "geometry": { "type": "Point", "coordinates": [ 484154.0, 146770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731418, "UPRN": 100061611018, "X_COORDINATE": 484151.0, "Y_COORDINATE": 146773.0, "LATITUDE": 51.2139669, "LONGITUDE": -0.7965795 }, "geometry": { "type": "Point", "coordinates": [ 484151.0, 146773.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731417, "UPRN": 100061611017, "X_COORDINATE": 484148.0, "Y_COORDINATE": 146776.0, "LATITUDE": 51.2139943, "LONGITUDE": -0.7966217 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 146776.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731416, "UPRN": 100061611016, "X_COORDINATE": 484146.0, "Y_COORDINATE": 146778.0, "LATITUDE": 51.2140126, "LONGITUDE": -0.7966499 }, "geometry": { "type": "Point", "coordinates": [ 484146.0, 146778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910185, "UPRN": 10094578601, "X_COORDINATE": 484151.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.216664, "LONGITUDE": -0.7965093 }, "geometry": { "type": "Point", "coordinates": [ 484151.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910148, "UPRN": 10094578564, "X_COORDINATE": 484151.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.216664, "LONGITUDE": -0.7965093 }, "geometry": { "type": "Point", "coordinates": [ 484151.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910095, "UPRN": 10094578511, "X_COORDINATE": 484151.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.216664, "LONGITUDE": -0.7965093 }, "geometry": { "type": "Point", "coordinates": [ 484151.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910184, "UPRN": 10094578600, "X_COORDINATE": 484155.0, "Y_COORDINATE": 147068.0, "LATITUDE": 51.2166184, "LONGITUDE": -0.7964532 }, "geometry": { "type": "Point", "coordinates": [ 484155.0, 147068.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910147, "UPRN": 10094578563, "X_COORDINATE": 484155.0, "Y_COORDINATE": 147068.0, "LATITUDE": 51.2166184, "LONGITUDE": -0.7964532 }, "geometry": { "type": "Point", "coordinates": [ 484155.0, 147068.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910094, "UPRN": 10094578510, "X_COORDINATE": 484155.0, "Y_COORDINATE": 147068.0, "LATITUDE": 51.2166184, "LONGITUDE": -0.7964532 }, "geometry": { "type": "Point", "coordinates": [ 484155.0, 147068.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910183, "UPRN": 10094578599, "X_COORDINATE": 484159.0, "Y_COORDINATE": 147063.0, "LATITUDE": 51.2165729, "LONGITUDE": -0.7963971 }, "geometry": { "type": "Point", "coordinates": [ 484159.0, 147063.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910146, "UPRN": 10094578562, "X_COORDINATE": 484159.0, "Y_COORDINATE": 147063.0, "LATITUDE": 51.2165729, "LONGITUDE": -0.7963971 }, "geometry": { "type": "Point", "coordinates": [ 484159.0, 147063.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910093, "UPRN": 10094578509, "X_COORDINATE": 484159.0, "Y_COORDINATE": 147063.0, "LATITUDE": 51.2165729, "LONGITUDE": -0.7963971 }, "geometry": { "type": "Point", "coordinates": [ 484159.0, 147063.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910050, "UPRN": 10094578466, "X_COORDINATE": 484158.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.216555, "LONGITUDE": -0.7964119 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910182, "UPRN": 10094578598, "X_COORDINATE": 484158.0, "Y_COORDINATE": 147049.0, "LATITUDE": 51.2164472, "LONGITUDE": -0.7964147 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 147049.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910145, "UPRN": 10094578561, "X_COORDINATE": 484158.0, "Y_COORDINATE": 147049.0, "LATITUDE": 51.2164472, "LONGITUDE": -0.7964147 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 147049.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910092, "UPRN": 10094578508, "X_COORDINATE": 484158.0, "Y_COORDINATE": 147049.0, "LATITUDE": 51.2164472, "LONGITUDE": -0.7964147 }, "geometry": { "type": "Point", "coordinates": [ 484158.0, 147049.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910131, "UPRN": 10094578547, "X_COORDINATE": 484152.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164031, "LONGITUDE": -0.7965017 }, "geometry": { "type": "Point", "coordinates": [ 484152.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910076, "UPRN": 10094578492, "X_COORDINATE": 484152.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164031, "LONGITUDE": -0.7965017 }, "geometry": { "type": "Point", "coordinates": [ 484152.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910049, "UPRN": 10094578465, "X_COORDINATE": 484149.0, "Y_COORDINATE": 147044.0, "LATITUDE": 51.2164035, "LONGITUDE": -0.7965447 }, "geometry": { "type": "Point", "coordinates": [ 484149.0, 147044.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910132, "UPRN": 10094578548, "X_COORDINATE": 484148.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163587, "LONGITUDE": -0.7965602 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910077, "UPRN": 10094578493, "X_COORDINATE": 484148.0, "Y_COORDINATE": 147039.0, "LATITUDE": 51.2163587, "LONGITUDE": -0.7965602 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 147039.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443794, "UPRN": 10013889874, "X_COORDINATE": 484162.0, "Y_COORDINATE": 147024.0, "LATITUDE": 51.2162218, "LONGITUDE": -0.7963633 }, "geometry": { "type": "Point", "coordinates": [ 484162.0, 147024.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722923, "UPRN": 100061601828, "X_COORDINATE": 484143.0, "Y_COORDINATE": 146995.0, "LATITUDE": 51.2159639, "LONGITUDE": -0.796642 }, "geometry": { "type": "Point", "coordinates": [ 484143.0, 146995.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731415, "UPRN": 100061611015, "X_COORDINATE": 484143.0, "Y_COORDINATE": 146781.0, "LATITUDE": 51.21404, "LONGITUDE": -0.7966921 }, "geometry": { "type": "Point", "coordinates": [ 484143.0, 146781.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367188, "UPRN": 100062609422, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147056.0, "LATITUDE": 51.2165129, "LONGITUDE": -0.796685 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147056.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728699, "UPRN": 100061608022, "X_COORDINATE": 484153.0, "Y_COORDINATE": 146432.0, "LATITUDE": 51.210901, "LONGITUDE": -0.7966307 }, "geometry": { "type": "Point", "coordinates": [ 484153.0, 146432.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728700, "UPRN": 100061608023, "X_COORDINATE": 484171.0, "Y_COORDINATE": 146448.0, "LATITUDE": 51.2110422, "LONGITUDE": -0.7963693 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 146448.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728702, "UPRN": 100061608025, "X_COORDINATE": 484174.0, "Y_COORDINATE": 146488.0, "LATITUDE": 51.2114013, "LONGITUDE": -0.796317 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 146488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122251, "UPRN": 100062161725, "X_COORDINATE": 484148.0, "Y_COORDINATE": 146523.0, "LATITUDE": 51.2117198, "LONGITUDE": -0.796681 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 146523.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217004, "UPRN": 100062354437, "X_COORDINATE": 484148.0, "Y_COORDINATE": 146553.0, "LATITUDE": 51.2119895, "LONGITUDE": -0.7966739 }, "geometry": { "type": "Point", "coordinates": [ 484148.0, 146553.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910153, "UPRN": 10094578569, "X_COORDINATE": 484193.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167207, "LONGITUDE": -0.7959064 }, "geometry": { "type": "Point", "coordinates": [ 484193.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910149, "UPRN": 10094578565, "X_COORDINATE": 484159.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167257, "LONGITUDE": -0.7963931 }, "geometry": { "type": "Point", "coordinates": [ 484159.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910102, "UPRN": 10094578518, "X_COORDINATE": 484193.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167207, "LONGITUDE": -0.7959064 }, "geometry": { "type": "Point", "coordinates": [ 484193.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910096, "UPRN": 10094578512, "X_COORDINATE": 484159.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167257, "LONGITUDE": -0.7963931 }, "geometry": { "type": "Point", "coordinates": [ 484159.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910098, "UPRN": 10094578514, "X_COORDINATE": 484166.0, "Y_COORDINATE": 147085.0, "LATITUDE": 51.2167696, "LONGITUDE": -0.7962917 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 147085.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910152, "UPRN": 10094578568, "X_COORDINATE": 484198.0, "Y_COORDINATE": 147086.0, "LATITUDE": 51.2167739, "LONGITUDE": -0.7958334 }, "geometry": { "type": "Point", "coordinates": [ 484198.0, 147086.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910101, "UPRN": 10094578517, "X_COORDINATE": 484198.0, "Y_COORDINATE": 147086.0, "LATITUDE": 51.2167739, "LONGITUDE": -0.7958334 }, "geometry": { "type": "Point", "coordinates": [ 484198.0, 147086.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910052, "UPRN": 10094578468, "X_COORDINATE": 484184.0, "Y_COORDINATE": 147086.0, "LATITUDE": 51.216776, "LONGITUDE": -0.7960338 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 147086.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910155, "UPRN": 10094578571, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147089.0, "LATITUDE": 51.2168022, "LONGITUDE": -0.7959616 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147089.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910104, "UPRN": 10094578520, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147089.0, "LATITUDE": 51.2168022, "LONGITUDE": -0.7959616 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147089.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910099, "UPRN": 10094578515, "X_COORDINATE": 484173.0, "Y_COORDINATE": 147092.0, "LATITUDE": 51.2168315, "LONGITUDE": -0.7961899 }, "geometry": { "type": "Point", "coordinates": [ 484173.0, 147092.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910151, "UPRN": 10094578567, "X_COORDINATE": 484201.0, "Y_COORDINATE": 147093.0, "LATITUDE": 51.2168364, "LONGITUDE": -0.7957888 }, "geometry": { "type": "Point", "coordinates": [ 484201.0, 147093.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910100, "UPRN": 10094578516, "X_COORDINATE": 484201.0, "Y_COORDINATE": 147093.0, "LATITUDE": 51.2168364, "LONGITUDE": -0.7957888 }, "geometry": { "type": "Point", "coordinates": [ 484201.0, 147093.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910156, "UPRN": 10094578572, "X_COORDINATE": 484184.0, "Y_COORDINATE": 147094.0, "LATITUDE": 51.2168479, "LONGITUDE": -0.796032 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 147094.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910105, "UPRN": 10094578521, "X_COORDINATE": 484184.0, "Y_COORDINATE": 147094.0, "LATITUDE": 51.2168479, "LONGITUDE": -0.796032 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 147094.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910053, "UPRN": 10094578469, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147098.0, "LATITUDE": 51.2168822, "LONGITUDE": -0.7958736 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147098.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910157, "UPRN": 10094578573, "X_COORDINATE": 484180.0, "Y_COORDINATE": 147099.0, "LATITUDE": 51.2168934, "LONGITUDE": -0.796088 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 147099.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910106, "UPRN": 10094578522, "X_COORDINATE": 484180.0, "Y_COORDINATE": 147099.0, "LATITUDE": 51.2168934, "LONGITUDE": -0.796088 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 147099.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910108, "UPRN": 10094578524, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147100.0, "LATITUDE": 51.2169002, "LONGITUDE": -0.7958731 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147100.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910159, "UPRN": 10094578575, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147100.0, "LATITUDE": 51.2169002, "LONGITUDE": -0.7958731 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147100.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910158, "UPRN": 10094578574, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147103.0, "LATITUDE": 51.2169284, "LONGITUDE": -0.7959869 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147103.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910107, "UPRN": 10094578523, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147103.0, "LATITUDE": 51.2169284, "LONGITUDE": -0.7959869 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147103.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443800, "UPRN": 10013889881, "X_COORDINATE": 484166.0, "Y_COORDINATE": 147114.0, "LATITUDE": 51.2170303, "LONGITUDE": -0.7962849 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 147114.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910186, "UPRN": 10094578602, "X_COORDINATE": 484159.0, "Y_COORDINATE": 147080.0, "LATITUDE": 51.2167257, "LONGITUDE": -0.7963931 }, "geometry": { "type": "Point", "coordinates": [ 484159.0, 147080.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910188, "UPRN": 10094578604, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147089.0, "LATITUDE": 51.2168022, "LONGITUDE": -0.7959616 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147089.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910189, "UPRN": 10094578605, "X_COORDINATE": 484184.0, "Y_COORDINATE": 147094.0, "LATITUDE": 51.2168479, "LONGITUDE": -0.796032 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 147094.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910190, "UPRN": 10094578606, "X_COORDINATE": 484180.0, "Y_COORDINATE": 147099.0, "LATITUDE": 51.2168934, "LONGITUDE": -0.796088 }, "geometry": { "type": "Point", "coordinates": [ 484180.0, 147099.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910191, "UPRN": 10094578607, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147103.0, "LATITUDE": 51.2169284, "LONGITUDE": -0.7959869 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147103.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216622, "UPRN": 100062353863, "X_COORDINATE": 484221.0, "Y_COORDINATE": 147079.0, "LATITUDE": 51.2167076, "LONGITUDE": -0.7955058 }, "geometry": { "type": "Point", "coordinates": [ 484221.0, 147079.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445169, "UPRN": 10013891413, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163437, "LONGITUDE": -0.7959735 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445170, "UPRN": 10013891414, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163437, "LONGITUDE": -0.7959735 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447720, "UPRN": 10013894072, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163437, "LONGITUDE": -0.7959735 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910144, "UPRN": 10094578560, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147056.0, "LATITUDE": 51.2165092, "LONGITUDE": -0.7963272 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147056.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910091, "UPRN": 10094578507, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147056.0, "LATITUDE": 51.2165092, "LONGITUDE": -0.7963272 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147056.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910143, "UPRN": 10094578559, "X_COORDINATE": 484170.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2165623, "LONGITUDE": -0.7962399 }, "geometry": { "type": "Point", "coordinates": [ 484170.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910090, "UPRN": 10094578506, "X_COORDINATE": 484170.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2165623, "LONGITUDE": -0.7962399 }, "geometry": { "type": "Point", "coordinates": [ 484170.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910142, "UPRN": 10094578558, "X_COORDINATE": 484175.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2165975, "LONGITUDE": -0.7961673 }, "geometry": { "type": "Point", "coordinates": [ 484175.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910089, "UPRN": 10094578505, "X_COORDINATE": 484175.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2165975, "LONGITUDE": -0.7961673 }, "geometry": { "type": "Point", "coordinates": [ 484175.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447313, "UPRN": 10013893656, "X_COORDINATE": 484163.0, "Y_COORDINATE": 147070.0, "LATITUDE": 51.2166352, "LONGITUDE": -0.7963382 }, "geometry": { "type": "Point", "coordinates": [ 484163.0, 147070.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910141, "UPRN": 10094578557, "X_COORDINATE": 484181.0, "Y_COORDINATE": 147072.0, "LATITUDE": 51.2166505, "LONGITUDE": -0.7960801 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 147072.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910088, "UPRN": 10094578504, "X_COORDINATE": 484181.0, "Y_COORDINATE": 147072.0, "LATITUDE": 51.2166505, "LONGITUDE": -0.7960801 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 147072.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910150, "UPRN": 10094578566, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.216662, "LONGITUDE": -0.7963232 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910097, "UPRN": 10094578513, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.216662, "LONGITUDE": -0.7963232 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910154, "UPRN": 10094578570, "X_COORDINATE": 484186.0, "Y_COORDINATE": 147077.0, "LATITUDE": 51.2166948, "LONGITUDE": -0.7960073 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 147077.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910103, "UPRN": 10094578519, "X_COORDINATE": 484186.0, "Y_COORDINATE": 147077.0, "LATITUDE": 51.2166948, "LONGITUDE": -0.7960073 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 147077.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910051, "UPRN": 10094578467, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147077.0, "LATITUDE": 51.2166965, "LONGITUDE": -0.7961791 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147077.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910180, "UPRN": 10094578596, "X_COORDINATE": 484175.0, "Y_COORDINATE": 147066.0, "LATITUDE": 51.2165975, "LONGITUDE": -0.7961673 }, "geometry": { "type": "Point", "coordinates": [ 484175.0, 147066.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910181, "UPRN": 10094578597, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147056.0, "LATITUDE": 51.2165092, "LONGITUDE": -0.7963272 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147056.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910187, "UPRN": 10094578603, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147073.0, "LATITUDE": 51.216662, "LONGITUDE": -0.7963232 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147073.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217075, "UPRN": 100062354529, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147038.0, "LATITUDE": 51.2163437, "LONGITUDE": -0.7959735 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147038.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728701, "UPRN": 100061608024, "X_COORDINATE": 484195.0, "Y_COORDINATE": 146503.0, "LATITUDE": 51.2115331, "LONGITUDE": -0.7960129 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 146503.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447211, "UPRN": 10013893552, "X_COORDINATE": 484213.0, "Y_COORDINATE": 146553.0, "LATITUDE": 51.2119799, "LONGITUDE": -0.7957436 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 146553.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122119, "UPRN": 100062161419, "X_COORDINATE": 484213.0, "Y_COORDINATE": 146553.0, "LATITUDE": 51.2119799, "LONGITUDE": -0.7957436 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 146553.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122126, "UPRN": 100062161426, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146592.0, "LATITUDE": 51.2123266, "LONGITUDE": -0.795348 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122125, "UPRN": 100062161425, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146592.0, "LATITUDE": 51.2123266, "LONGITUDE": -0.795348 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266136, "UPRN": 10091107446, "X_COORDINATE": 484188.0, "Y_COORDINATE": 146599.0, "LATITUDE": 51.2123972, "LONGITUDE": -0.7960906 }, "geometry": { "type": "Point", "coordinates": [ 484188.0, 146599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122130, "UPRN": 100062161430, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122129, "UPRN": 100062161429, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122128, "UPRN": 100062161428, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122127, "UPRN": 100062161427, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122120, "UPRN": 100062161420, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122121, "UPRN": 100062161421, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122122, "UPRN": 100062161422, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122123, "UPRN": 100062161423, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122124, "UPRN": 100062161424, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122131, "UPRN": 100062161431, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122132, "UPRN": 100062161432, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146592.0, "LATITUDE": 51.2123266, "LONGITUDE": -0.795348 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122133, "UPRN": 100062161433, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146592.0, "LATITUDE": 51.2123266, "LONGITUDE": -0.795348 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122134, "UPRN": 100062161434, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146592.0, "LATITUDE": 51.2123266, "LONGITUDE": -0.795348 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399362, "UPRN": 100062699027, "X_COORDINATE": 484225.0, "Y_COORDINATE": 146612.0, "LATITUDE": 51.2125086, "LONGITUDE": -0.795558 }, "geometry": { "type": "Point", "coordinates": [ 484225.0, 146612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216881, "UPRN": 100062354227, "X_COORDINATE": 484186.0, "Y_COORDINATE": 146804.0, "LATITUDE": 51.2142405, "LONGITUDE": -0.7960713 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 146804.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216695, "UPRN": 100062353972, "X_COORDINATE": 484191.0, "Y_COORDINATE": 146802.0, "LATITUDE": 51.2142217, "LONGITUDE": -0.7960002 }, "geometry": { "type": "Point", "coordinates": [ 484191.0, 146802.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217074, "UPRN": 100062354528, "X_COORDINATE": 484191.0, "Y_COORDINATE": 146795.0, "LATITUDE": 51.2141588, "LONGITUDE": -0.7960018 }, "geometry": { "type": "Point", "coordinates": [ 484191.0, 146795.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217036, "UPRN": 100062354486, "X_COORDINATE": 484195.0, "Y_COORDINATE": 146791.0, "LATITUDE": 51.2141223, "LONGITUDE": -0.7959455 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 146791.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448831, "UPRN": 10013895198, "X_COORDINATE": 484197.0, "Y_COORDINATE": 146813.0, "LATITUDE": 51.2143197, "LONGITUDE": -0.7959117 }, "geometry": { "type": "Point", "coordinates": [ 484197.0, 146813.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443796, "UPRN": 10013889877, "X_COORDINATE": 484198.0, "Y_COORDINATE": 146829.0, "LATITUDE": 51.2144634, "LONGITUDE": -0.7958936 }, "geometry": { "type": "Point", "coordinates": [ 484198.0, 146829.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216882, "UPRN": 100062354229, "X_COORDINATE": 484220.0, "Y_COORDINATE": 146820.0, "LATITUDE": 51.2143793, "LONGITUDE": -0.7955808 }, "geometry": { "type": "Point", "coordinates": [ 484220.0, 146820.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270264, "UPRN": 10091111601, "X_COORDINATE": 484233.0, "Y_COORDINATE": 146892.0, "LATITUDE": 51.2150247, "LONGITUDE": -0.7953779 }, "geometry": { "type": "Point", "coordinates": [ 484233.0, 146892.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267328, "UPRN": 10091108644, "X_COORDINATE": 484243.0, "Y_COORDINATE": 146826.0, "LATITUDE": 51.2144298, "LONGITUDE": -0.7952502 }, "geometry": { "type": "Point", "coordinates": [ 484243.0, 146826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217056, "UPRN": 100062354508, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146842.0, "LATITUDE": 51.2145721, "LONGITUDE": -0.795089 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146842.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217044, "UPRN": 100062354496, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146842.0, "LATITUDE": 51.2145721, "LONGITUDE": -0.795089 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146842.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217067, "UPRN": 100062354519, "X_COORDINATE": 484257.0, "Y_COORDINATE": 146839.0, "LATITUDE": 51.2145446, "LONGITUDE": -0.7950468 }, "geometry": { "type": "Point", "coordinates": [ 484257.0, 146839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217053, "UPRN": 100062354505, "X_COORDINATE": 484258.0, "Y_COORDINATE": 146850.0, "LATITUDE": 51.2146434, "LONGITUDE": -0.7950299 }, "geometry": { "type": "Point", "coordinates": [ 484258.0, 146850.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217057, "UPRN": 100062354509, "X_COORDINATE": 484259.0, "Y_COORDINATE": 146836.0, "LATITUDE": 51.2145174, "LONGITUDE": -0.7950189 }, "geometry": { "type": "Point", "coordinates": [ 484259.0, 146836.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217045, "UPRN": 100062354497, "X_COORDINATE": 484259.0, "Y_COORDINATE": 146836.0, "LATITUDE": 51.2145174, "LONGITUDE": -0.7950189 }, "geometry": { "type": "Point", "coordinates": [ 484259.0, 146836.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217065, "UPRN": 100062354517, "X_COORDINATE": 484260.0, "Y_COORDINATE": 146852.0, "LATITUDE": 51.2146611, "LONGITUDE": -0.7950008 }, "geometry": { "type": "Point", "coordinates": [ 484260.0, 146852.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217068, "UPRN": 100062354520, "X_COORDINATE": 484261.0, "Y_COORDINATE": 146834.0, "LATITUDE": 51.2144991, "LONGITUDE": -0.7949907 }, "geometry": { "type": "Point", "coordinates": [ 484261.0, 146834.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217054, "UPRN": 100062354506, "X_COORDINATE": 484262.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2146698, "LONGITUDE": -0.7949719 }, "geometry": { "type": "Point", "coordinates": [ 484262.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217042, "UPRN": 100062354494, "X_COORDINATE": 484262.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2146698, "LONGITUDE": -0.7949719 }, "geometry": { "type": "Point", "coordinates": [ 484262.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217058, "UPRN": 100062354510, "X_COORDINATE": 484263.0, "Y_COORDINATE": 146831.0, "LATITUDE": 51.2144718, "LONGITUDE": -0.7949628 }, "geometry": { "type": "Point", "coordinates": [ 484263.0, 146831.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217046, "UPRN": 100062354498, "X_COORDINATE": 484263.0, "Y_COORDINATE": 146831.0, "LATITUDE": 51.2144718, "LONGITUDE": -0.7949628 }, "geometry": { "type": "Point", "coordinates": [ 484263.0, 146831.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217134, "UPRN": 100062354627, "X_COORDINATE": 484233.0, "Y_COORDINATE": 146808.0, "LATITUDE": 51.2142695, "LONGITUDE": -0.7953976 }, "geometry": { "type": "Point", "coordinates": [ 484233.0, 146808.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217146, "UPRN": 100062354645, "X_COORDINATE": 484190.0, "Y_COORDINATE": 146805.0, "LATITUDE": 51.2142489, "LONGITUDE": -0.7960138 }, "geometry": { "type": "Point", "coordinates": [ 484190.0, 146805.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217158, "UPRN": 100062354665, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146801.0, "LATITUDE": 51.2142055, "LONGITUDE": -0.795299 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146801.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450272, "UPRN": 10013896649, "X_COORDINATE": 484219.0, "Y_COORDINATE": 146786.0, "LATITUDE": 51.2140738, "LONGITUDE": -0.7956031 }, "geometry": { "type": "Point", "coordinates": [ 484219.0, 146786.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447386, "UPRN": 10013893732, "X_COORDINATE": 484217.0, "Y_COORDINATE": 146788.0, "LATITUDE": 51.214092, "LONGITUDE": -0.7956313 }, "geometry": { "type": "Point", "coordinates": [ 484217.0, 146788.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367237, "UPRN": 100062609537, "X_COORDINATE": 484181.0, "Y_COORDINATE": 146808.0, "LATITUDE": 51.2142772, "LONGITUDE": -0.7961419 }, "geometry": { "type": "Point", "coordinates": [ 484181.0, 146808.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399418, "UPRN": 100062699118, "X_COORDINATE": 484262.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2146698, "LONGITUDE": -0.7949719 }, "geometry": { "type": "Point", "coordinates": [ 484262.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448067, "UPRN": 10013894426, "X_COORDINATE": 484229.0, "Y_COORDINATE": 147133.0, "LATITUDE": 51.2171919, "LONGITUDE": -0.7953787 }, "geometry": { "type": "Point", "coordinates": [ 484229.0, 147133.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450309, "UPRN": 10013896688, "X_COORDINATE": 484231.0, "Y_COORDINATE": 147169.0, "LATITUDE": 51.2175152, "LONGITUDE": -0.7953416 }, "geometry": { "type": "Point", "coordinates": [ 484231.0, 147169.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722942, "UPRN": 100061601847, "X_COORDINATE": 484234.0, "Y_COORDINATE": 147147.0, "LATITUDE": 51.217317, "LONGITUDE": -0.7953038 }, "geometry": { "type": "Point", "coordinates": [ 484234.0, 147147.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729135, "UPRN": 100061608569, "X_COORDINATE": 484247.0, "Y_COORDINATE": 147195.0, "LATITUDE": 51.2177466, "LONGITUDE": -0.7951065 }, "geometry": { "type": "Point", "coordinates": [ 484247.0, 147195.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267945, "UPRN": 10091109266, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147154.0, "LATITUDE": 51.2173776, "LONGITUDE": -0.7950731 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147154.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267946, "UPRN": 10091109267, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147154.0, "LATITUDE": 51.2173776, "LONGITUDE": -0.7950731 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147154.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447485, "UPRN": 10013893835, "X_COORDINATE": 484263.0, "Y_COORDINATE": 147132.0, "LATITUDE": 51.2171779, "LONGITUDE": -0.7948922 }, "geometry": { "type": "Point", "coordinates": [ 484263.0, 147132.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267944, "UPRN": 10091109265, "X_COORDINATE": 484264.0, "Y_COORDINATE": 147160.0, "LATITUDE": 51.2174294, "LONGITUDE": -0.7948713 }, "geometry": { "type": "Point", "coordinates": [ 484264.0, 147160.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265765, "UPRN": 10091107070, "X_COORDINATE": 484270.0, "Y_COORDINATE": 147130.0, "LATITUDE": 51.2171589, "LONGITUDE": -0.7947925 }, "geometry": { "type": "Point", "coordinates": [ 484270.0, 147130.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267728, "UPRN": 10091109049, "X_COORDINATE": 484276.0, "Y_COORDINATE": 147183.0, "LATITUDE": 51.2176345, "LONGITUDE": -0.7946941 }, "geometry": { "type": "Point", "coordinates": [ 484276.0, 147183.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267734, "UPRN": 10091109055, "X_COORDINATE": 484276.0, "Y_COORDINATE": 147183.0, "LATITUDE": 51.2176345, "LONGITUDE": -0.7946941 }, "geometry": { "type": "Point", "coordinates": [ 484276.0, 147183.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267730, "UPRN": 10091109051, "X_COORDINATE": 484278.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2175712, "LONGITUDE": -0.7946672 }, "geometry": { "type": "Point", "coordinates": [ 484278.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267736, "UPRN": 10091109057, "X_COORDINATE": 484278.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2175712, "LONGITUDE": -0.7946672 }, "geometry": { "type": "Point", "coordinates": [ 484278.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267740, "UPRN": 10091109061, "X_COORDINATE": 484281.0, "Y_COORDINATE": 147182.0, "LATITUDE": 51.2176247, "LONGITUDE": -0.7946228 }, "geometry": { "type": "Point", "coordinates": [ 484281.0, 147182.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730411, "UPRN": 100061609933, "X_COORDINATE": 484238.0, "Y_COORDINATE": 147215.0, "LATITUDE": 51.2179277, "LONGITUDE": -0.7952306 }, "geometry": { "type": "Point", "coordinates": [ 484238.0, 147215.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730412, "UPRN": 100061609934, "X_COORDINATE": 484238.0, "Y_COORDINATE": 147254.0, "LATITUDE": 51.2182784, "LONGITUDE": -0.7952215 }, "geometry": { "type": "Point", "coordinates": [ 484238.0, 147254.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730413, "UPRN": 100061609935, "X_COORDINATE": 484242.0, "Y_COORDINATE": 147223.0, "LATITUDE": 51.2179991, "LONGITUDE": -0.7951715 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 147223.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730414, "UPRN": 100061609936, "X_COORDINATE": 484242.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.2182957, "LONGITUDE": -0.7951637 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730415, "UPRN": 100061609937, "X_COORDINATE": 484246.0, "Y_COORDINATE": 147225.0, "LATITUDE": 51.2180165, "LONGITUDE": -0.7951137 }, "geometry": { "type": "Point", "coordinates": [ 484246.0, 147225.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730416, "UPRN": 100061609938, "X_COORDINATE": 484250.0, "Y_COORDINATE": 147259.0, "LATITUDE": 51.2183215, "LONGITUDE": -0.7950485 }, "geometry": { "type": "Point", "coordinates": [ 484250.0, 147259.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730417, "UPRN": 100061609939, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147229.0, "LATITUDE": 51.2180515, "LONGITUDE": -0.7950269 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147229.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730418, "UPRN": 100061609940, "X_COORDINATE": 484254.0, "Y_COORDINATE": 147262.0, "LATITUDE": 51.2183479, "LONGITUDE": -0.7949905 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 147262.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730419, "UPRN": 100061609941, "X_COORDINATE": 484257.0, "Y_COORDINATE": 147232.0, "LATITUDE": 51.2180778, "LONGITUDE": -0.7949546 }, "geometry": { "type": "Point", "coordinates": [ 484257.0, 147232.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730420, "UPRN": 100061609942, "X_COORDINATE": 484261.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.2183649, "LONGITUDE": -0.7948899 }, "geometry": { "type": "Point", "coordinates": [ 484261.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730421, "UPRN": 100061609943, "X_COORDINATE": 484267.0, "Y_COORDINATE": 147234.0, "LATITUDE": 51.2180943, "LONGITUDE": -0.794811 }, "geometry": { "type": "Point", "coordinates": [ 484267.0, 147234.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730423, "UPRN": 100061609945, "X_COORDINATE": 484279.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2181824, "LONGITUDE": -0.7946369 }, "geometry": { "type": "Point", "coordinates": [ 484279.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730425, "UPRN": 100061609947, "X_COORDINATE": 484283.0, "Y_COORDINATE": 147246.0, "LATITUDE": 51.2181998, "LONGITUDE": -0.7945792 }, "geometry": { "type": "Point", "coordinates": [ 484283.0, 147246.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730422, "UPRN": 100061609944, "X_COORDINATE": 484265.0, "Y_COORDINATE": 147267.0, "LATITUDE": 51.2183912, "LONGITUDE": -0.7948319 }, "geometry": { "type": "Point", "coordinates": [ 484265.0, 147267.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730424, "UPRN": 100061609946, "X_COORDINATE": 484269.0, "Y_COORDINATE": 147269.0, "LATITUDE": 51.2184086, "LONGITUDE": -0.7947742 }, "geometry": { "type": "Point", "coordinates": [ 484269.0, 147269.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730426, "UPRN": 100061609948, "X_COORDINATE": 484272.0, "Y_COORDINATE": 147271.0, "LATITUDE": 51.2184262, "LONGITUDE": -0.7947308 }, "geometry": { "type": "Point", "coordinates": [ 484272.0, 147271.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122296, "UPRN": 100062161820, "X_COORDINATE": 484227.0, "Y_COORDINATE": 147131.0, "LATITUDE": 51.2171742, "LONGITUDE": -0.7954078 }, "geometry": { "type": "Point", "coordinates": [ 484227.0, 147131.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216621, "UPRN": 100062353862, "X_COORDINATE": 484252.0, "Y_COORDINATE": 147123.0, "LATITUDE": 51.2170986, "LONGITUDE": -0.7950518 }, "geometry": { "type": "Point", "coordinates": [ 484252.0, 147123.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216668, "UPRN": 100062353937, "X_COORDINATE": 484303.0, "Y_COORDINATE": 147151.0, "LATITUDE": 51.2173428, "LONGITUDE": -0.7943152 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 147151.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217012, "UPRN": 100062354452, "X_COORDINATE": 484234.0, "Y_COORDINATE": 147147.0, "LATITUDE": 51.217317, "LONGITUDE": -0.7953038 }, "geometry": { "type": "Point", "coordinates": [ 484234.0, 147147.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217090, "UPRN": 100062354551, "X_COORDINATE": 484257.0, "Y_COORDINATE": 147111.0, "LATITUDE": 51.21699, "LONGITUDE": -0.794983 }, "geometry": { "type": "Point", "coordinates": [ 484257.0, 147111.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217118, "UPRN": 100062354590, "X_COORDINATE": 484259.0, "Y_COORDINATE": 147128.0, "LATITUDE": 51.2171425, "LONGITUDE": -0.7949504 }, "geometry": { "type": "Point", "coordinates": [ 484259.0, 147128.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367183, "UPRN": 100062609406, "X_COORDINATE": 484268.0, "Y_COORDINATE": 147135.0, "LATITUDE": 51.2172041, "LONGITUDE": -0.7948199 }, "geometry": { "type": "Point", "coordinates": [ 484268.0, 147135.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122320, "UPRN": 100062161847, "X_COORDINATE": 484421.0, "Y_COORDINATE": 147225.0, "LATITUDE": 51.2179906, "LONGITUDE": -0.7926086 }, "geometry": { "type": "Point", "coordinates": [ 484421.0, 147225.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122292, "UPRN": 100062161816, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179366, "LONGITUDE": -0.7934692 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729796, "UPRN": 100061609239, "X_COORDINATE": 484307.0, "Y_COORDINATE": 147261.0, "LATITUDE": 51.2183311, "LONGITUDE": -0.7942321 }, "geometry": { "type": "Point", "coordinates": [ 484307.0, 147261.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729794, "UPRN": 100061609237, "X_COORDINATE": 484310.0, "Y_COORDINATE": 147257.0, "LATITUDE": 51.2182947, "LONGITUDE": -0.7941901 }, "geometry": { "type": "Point", "coordinates": [ 484310.0, 147257.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729792, "UPRN": 100061609235, "X_COORDINATE": 484312.0, "Y_COORDINATE": 147252.0, "LATITUDE": 51.2182495, "LONGITUDE": -0.7941626 }, "geometry": { "type": "Point", "coordinates": [ 484312.0, 147252.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729790, "UPRN": 100061609233, "X_COORDINATE": 484316.0, "Y_COORDINATE": 147246.0, "LATITUDE": 51.2181949, "LONGITUDE": -0.7941068 }, "geometry": { "type": "Point", "coordinates": [ 484316.0, 147246.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729788, "UPRN": 100061609231, "X_COORDINATE": 484318.0, "Y_COORDINATE": 147242.0, "LATITUDE": 51.2181587, "LONGITUDE": -0.7940791 }, "geometry": { "type": "Point", "coordinates": [ 484318.0, 147242.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729786, "UPRN": 100061609229, "X_COORDINATE": 484321.0, "Y_COORDINATE": 147238.0, "LATITUDE": 51.2181223, "LONGITUDE": -0.7940371 }, "geometry": { "type": "Point", "coordinates": [ 484321.0, 147238.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729784, "UPRN": 100061609227, "X_COORDINATE": 484323.0, "Y_COORDINATE": 147235.0, "LATITUDE": 51.218095, "LONGITUDE": -0.7940091 }, "geometry": { "type": "Point", "coordinates": [ 484323.0, 147235.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722955, "UPRN": 100061601860, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147263.0, "LATITUDE": 51.2183368, "LONGITUDE": -0.7930435 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147263.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722954, "UPRN": 100061601859, "X_COORDINATE": 484392.0, "Y_COORDINATE": 147259.0, "LATITUDE": 51.2183006, "LONGITUDE": -0.7930158 }, "geometry": { "type": "Point", "coordinates": [ 484392.0, 147259.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722953, "UPRN": 100061601858, "X_COORDINATE": 484394.0, "Y_COORDINATE": 147255.0, "LATITUDE": 51.2182643, "LONGITUDE": -0.7929881 }, "geometry": { "type": "Point", "coordinates": [ 484394.0, 147255.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722952, "UPRN": 100061601857, "X_COORDINATE": 484396.0, "Y_COORDINATE": 147252.0, "LATITUDE": 51.2182371, "LONGITUDE": -0.7929602 }, "geometry": { "type": "Point", "coordinates": [ 484396.0, 147252.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722951, "UPRN": 100061601856, "X_COORDINATE": 484398.0, "Y_COORDINATE": 147249.0, "LATITUDE": 51.2182098, "LONGITUDE": -0.7929322 }, "geometry": { "type": "Point", "coordinates": [ 484398.0, 147249.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722950, "UPRN": 100061601855, "X_COORDINATE": 484401.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2181644, "LONGITUDE": -0.7928905 }, "geometry": { "type": "Point", "coordinates": [ 484401.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722949, "UPRN": 100061601854, "X_COORDINATE": 484402.0, "Y_COORDINATE": 147239.0, "LATITUDE": 51.2181193, "LONGITUDE": -0.7928773 }, "geometry": { "type": "Point", "coordinates": [ 484402.0, 147239.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722931, "UPRN": 100061601836, "X_COORDINATE": 484443.0, "Y_COORDINATE": 147236.0, "LATITUDE": 51.2180863, "LONGITUDE": -0.7922911 }, "geometry": { "type": "Point", "coordinates": [ 484443.0, 147236.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722930, "UPRN": 100061601835, "X_COORDINATE": 484443.0, "Y_COORDINATE": 147236.0, "LATITUDE": 51.2180863, "LONGITUDE": -0.7922911 }, "geometry": { "type": "Point", "coordinates": [ 484443.0, 147236.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722929, "UPRN": 100061601834, "X_COORDINATE": 484438.0, "Y_COORDINATE": 147233.0, "LATITUDE": 51.21806, "LONGITUDE": -0.7923634 }, "geometry": { "type": "Point", "coordinates": [ 484438.0, 147233.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722928, "UPRN": 100061601833, "X_COORDINATE": 484438.0, "Y_COORDINATE": 147233.0, "LATITUDE": 51.21806, "LONGITUDE": -0.7923634 }, "geometry": { "type": "Point", "coordinates": [ 484438.0, 147233.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722927, "UPRN": 100061601832, "X_COORDINATE": 484429.0, "Y_COORDINATE": 147229.0, "LATITUDE": 51.2180254, "LONGITUDE": -0.7924932 }, "geometry": { "type": "Point", "coordinates": [ 484429.0, 147229.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722926, "UPRN": 100061601831, "X_COORDINATE": 484424.0, "Y_COORDINATE": 147227.0, "LATITUDE": 51.2180082, "LONGITUDE": -0.7925652 }, "geometry": { "type": "Point", "coordinates": [ 484424.0, 147227.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722932, "UPRN": 100061601837, "X_COORDINATE": 484389.0, "Y_COORDINATE": 147232.0, "LATITUDE": 51.2180583, "LONGITUDE": -0.7930651 }, "geometry": { "type": "Point", "coordinates": [ 484389.0, 147232.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722933, "UPRN": 100061601838, "X_COORDINATE": 484385.0, "Y_COORDINATE": 147229.0, "LATITUDE": 51.2180319, "LONGITUDE": -0.793123 }, "geometry": { "type": "Point", "coordinates": [ 484385.0, 147229.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722934, "UPRN": 100061601839, "X_COORDINATE": 484383.0, "Y_COORDINATE": 147227.0, "LATITUDE": 51.2180142, "LONGITUDE": -0.7931521 }, "geometry": { "type": "Point", "coordinates": [ 484383.0, 147227.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722935, "UPRN": 100061601840, "X_COORDINATE": 484355.0, "Y_COORDINATE": 147215.0, "LATITUDE": 51.2179105, "LONGITUDE": -0.7935558 }, "geometry": { "type": "Point", "coordinates": [ 484355.0, 147215.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122293, "UPRN": 100062161817, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179366, "LONGITUDE": -0.7934692 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122315, "UPRN": 100062161842, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147241.0, "LATITUDE": 51.2181427, "LONGITUDE": -0.7934065 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147241.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122316, "UPRN": 100062161843, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147241.0, "LATITUDE": 51.2181427, "LONGITUDE": -0.7934065 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147241.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122317, "UPRN": 100062161844, "X_COORDINATE": 484370.0, "Y_COORDINATE": 147243.0, "LATITUDE": 51.21816, "LONGITUDE": -0.7933345 }, "geometry": { "type": "Point", "coordinates": [ 484370.0, 147243.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122318, "UPRN": 100062161845, "X_COORDINATE": 484370.0, "Y_COORDINATE": 147243.0, "LATITUDE": 51.21816, "LONGITUDE": -0.7933345 }, "geometry": { "type": "Point", "coordinates": [ 484370.0, 147243.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122319, "UPRN": 100062161846, "X_COORDINATE": 484417.0, "Y_COORDINATE": 147223.0, "LATITUDE": 51.2179732, "LONGITUDE": -0.7926664 }, "geometry": { "type": "Point", "coordinates": [ 484417.0, 147223.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122337, "UPRN": 100062161864, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147240.0, "LATITUDE": 51.2181212, "LONGITUDE": -0.79219 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147240.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216609, "UPRN": 100062353843, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.217857, "LONGITUDE": -0.7927267 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217151, "UPRN": 100062354657, "X_COORDINATE": 484322.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.2175198, "LONGITUDE": -0.7940385 }, "geometry": { "type": "Point", "coordinates": [ 484322.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722941, "UPRN": 100061601846, "X_COORDINATE": 484323.0, "Y_COORDINATE": 147194.0, "LATITUDE": 51.2177264, "LONGITUDE": -0.7940188 }, "geometry": { "type": "Point", "coordinates": [ 484323.0, 147194.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270256, "UPRN": 10091111593, "X_COORDINATE": 484336.0, "Y_COORDINATE": 146949.0, "LATITUDE": 51.2155219, "LONGITUDE": -0.7938902 }, "geometry": { "type": "Point", "coordinates": [ 484336.0, 146949.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731898, "UPRN": 100061611523, "X_COORDINATE": 484417.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155459, "LONGITUDE": -0.7927298 }, "geometry": { "type": "Point", "coordinates": [ 484417.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731897, "UPRN": 100061611522, "X_COORDINATE": 484417.0, "Y_COORDINATE": 146953.0, "LATITUDE": 51.2155459, "LONGITUDE": -0.7927298 }, "geometry": { "type": "Point", "coordinates": [ 484417.0, 146953.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731896, "UPRN": 100061611521, "X_COORDINATE": 484423.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.215554, "LONGITUDE": -0.7926437 }, "geometry": { "type": "Point", "coordinates": [ 484423.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731895, "UPRN": 100061611520, "X_COORDINATE": 484423.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.215554, "LONGITUDE": -0.7926437 }, "geometry": { "type": "Point", "coordinates": [ 484423.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731894, "UPRN": 100061611519, "X_COORDINATE": 484430.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.215562, "LONGITUDE": -0.7925432 }, "geometry": { "type": "Point", "coordinates": [ 484430.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731893, "UPRN": 100061611518, "X_COORDINATE": 484437.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2155789, "LONGITUDE": -0.7924426 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731892, "UPRN": 100061611517, "X_COORDINATE": 484437.0, "Y_COORDINATE": 146957.0, "LATITUDE": 51.2155789, "LONGITUDE": -0.7924426 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 146957.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731884, "UPRN": 100061611509, "X_COORDINATE": 484409.0, "Y_COORDINATE": 146971.0, "LATITUDE": 51.2157089, "LONGITUDE": -0.7928401 }, "geometry": { "type": "Point", "coordinates": [ 484409.0, 146971.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731882, "UPRN": 100061611507, "X_COORDINATE": 484408.0, "Y_COORDINATE": 146979.0, "LATITUDE": 51.215781, "LONGITUDE": -0.7928525 }, "geometry": { "type": "Point", "coordinates": [ 484408.0, 146979.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731880, "UPRN": 100061611505, "X_COORDINATE": 484409.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.2158438, "LONGITUDE": -0.7928365 }, "geometry": { "type": "Point", "coordinates": [ 484409.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731876, "UPRN": 100061611501, "X_COORDINATE": 484409.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.2158438, "LONGITUDE": -0.7928365 }, "geometry": { "type": "Point", "coordinates": [ 484409.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731872, "UPRN": 100061611497, "X_COORDINATE": 484409.0, "Y_COORDINATE": 146986.0, "LATITUDE": 51.2158438, "LONGITUDE": -0.7928365 }, "geometry": { "type": "Point", "coordinates": [ 484409.0, 146986.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731878, "UPRN": 100061611503, "X_COORDINATE": 484411.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159334, "LONGITUDE": -0.7928056 }, "geometry": { "type": "Point", "coordinates": [ 484411.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731874, "UPRN": 100061611499, "X_COORDINATE": 484411.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159334, "LONGITUDE": -0.7928056 }, "geometry": { "type": "Point", "coordinates": [ 484411.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731870, "UPRN": 100061611495, "X_COORDINATE": 484411.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159334, "LONGITUDE": -0.7928056 }, "geometry": { "type": "Point", "coordinates": [ 484411.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731868, "UPRN": 100061611493, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147004.0, "LATITUDE": 51.216005, "LONGITUDE": -0.7927751 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147004.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731867, "UPRN": 100061611492, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147004.0, "LATITUDE": 51.216005, "LONGITUDE": -0.7927751 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147004.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731865, "UPRN": 100061611490, "X_COORDINATE": 484426.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161289, "LONGITUDE": -0.7925857 }, "geometry": { "type": "Point", "coordinates": [ 484426.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731863, "UPRN": 100061611488, "X_COORDINATE": 484426.0, "Y_COORDINATE": 147018.0, "LATITUDE": 51.2161289, "LONGITUDE": -0.7925857 }, "geometry": { "type": "Point", "coordinates": [ 484426.0, 147018.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731860, "UPRN": 100061611485, "X_COORDINATE": 484424.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2161922, "LONGITUDE": -0.7926127 }, "geometry": { "type": "Point", "coordinates": [ 484424.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731862, "UPRN": 100061611487, "X_COORDINATE": 484424.0, "Y_COORDINATE": 147025.0, "LATITUDE": 51.2161922, "LONGITUDE": -0.7926127 }, "geometry": { "type": "Point", "coordinates": [ 484424.0, 147025.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731856, "UPRN": 100061611481, "X_COORDINATE": 484421.0, "Y_COORDINATE": 147032.0, "LATITUDE": 51.2162555, "LONGITUDE": -0.792654 }, "geometry": { "type": "Point", "coordinates": [ 484421.0, 147032.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731858, "UPRN": 100061611483, "X_COORDINATE": 484421.0, "Y_COORDINATE": 147032.0, "LATITUDE": 51.2162555, "LONGITUDE": -0.792654 }, "geometry": { "type": "Point", "coordinates": [ 484421.0, 147032.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450375, "UPRN": 10013896754, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2162622, "LONGITUDE": -0.7924247 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731854, "UPRN": 100061611479, "X_COORDINATE": 484418.0, "Y_COORDINATE": 147037.0, "LATITUDE": 51.2163009, "LONGITUDE": -0.7926957 }, "geometry": { "type": "Point", "coordinates": [ 484418.0, 147037.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731852, "UPRN": 100061611477, "X_COORDINATE": 484418.0, "Y_COORDINATE": 147037.0, "LATITUDE": 51.2163009, "LONGITUDE": -0.7926957 }, "geometry": { "type": "Point", "coordinates": [ 484418.0, 147037.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266986, "UPRN": 10091108301, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147065.0, "LATITUDE": 51.2165592, "LONGITUDE": -0.793319 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147065.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217100, "UPRN": 100062354562, "X_COORDINATE": 484358.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.21613, "LONGITUDE": -0.7935593 }, "geometry": { "type": "Point", "coordinates": [ 484358.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217129, "UPRN": 100062354616, "X_COORDINATE": 484364.0, "Y_COORDINATE": 146958.0, "LATITUDE": 51.2155987, "LONGITUDE": -0.7934873 }, "geometry": { "type": "Point", "coordinates": [ 484364.0, 146958.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21912750, "UPRN": 10094581228, "X_COORDINATE": 484402.0, "Y_COORDINATE": 146874.0, "LATITUDE": 51.2148379, "LONGITUDE": -0.792963 }, "geometry": { "type": "Point", "coordinates": [ 484402.0, 146874.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731861, "UPRN": 100061611486, "X_COORDINATE": 484448.0, "Y_COORDINATE": 146998.0, "LATITUDE": 51.2159459, "LONGITUDE": -0.7922755 }, "geometry": { "type": "Point", "coordinates": [ 484448.0, 146998.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731866, "UPRN": 100061611491, "X_COORDINATE": 484448.0, "Y_COORDINATE": 146998.0, "LATITUDE": 51.2159459, "LONGITUDE": -0.7922755 }, "geometry": { "type": "Point", "coordinates": [ 484448.0, 146998.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731851, "UPRN": 100061611476, "X_COORDINATE": 484449.0, "Y_COORDINATE": 147033.0, "LATITUDE": 51.2162604, "LONGITUDE": -0.7922529 }, "geometry": { "type": "Point", "coordinates": [ 484449.0, 147033.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731859, "UPRN": 100061611484, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147008.0, "LATITUDE": 51.2160355, "LONGITUDE": -0.7922445 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147008.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731857, "UPRN": 100061611482, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147016.0, "LATITUDE": 51.2161074, "LONGITUDE": -0.7922426 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147016.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731855, "UPRN": 100061611480, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147021.0, "LATITUDE": 51.2161524, "LONGITUDE": -0.7922414 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147021.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911749, "UPRN": 10094580221, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147075.0, "LATITUDE": 51.2166378, "LONGITUDE": -0.7922287 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147075.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731853, "UPRN": 100061611478, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147027.0, "LATITUDE": 51.2162063, "LONGITUDE": -0.79224 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147027.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731864, "UPRN": 100061611489, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147008.0, "LATITUDE": 51.2160355, "LONGITUDE": -0.7922445 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147008.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731869, "UPRN": 100061611494, "X_COORDINATE": 484450.0, "Y_COORDINATE": 147008.0, "LATITUDE": 51.2160355, "LONGITUDE": -0.7922445 }, "geometry": { "type": "Point", "coordinates": [ 484450.0, 147008.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17499284, "UPRN": 10024879444, "X_COORDINATE": 484482.9, "Y_COORDINATE": 147089.8, "LATITUDE": 51.216766, "LONGITUDE": -0.7917543 }, "geometry": { "type": "Point", "coordinates": [ 484482.900000000023283, 147089.799999999988358 ] } }, -{ "type": "Feature", "properties": { "FID": 20270210, "UPRN": 10091111547, "X_COORDINATE": 484485.0, "Y_COORDINATE": 147088.0, "LATITUDE": 51.2167495, "LONGITUDE": -0.7917247 }, "geometry": { "type": "Point", "coordinates": [ 484485.0, 147088.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23116541, "UPRN": 10096744929, "X_COORDINATE": 484490.48, "Y_COORDINATE": 147061.62, "LATITUDE": 51.2165116, "LONGITUDE": -0.7916524 }, "geometry": { "type": "Point", "coordinates": [ 484490.479999999981374, 147061.62 ] } }, -{ "type": "Feature", "properties": { "FID": 20269232, "UPRN": 10091110556, "X_COORDINATE": 484500.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2169451, "LONGITUDE": -0.7915048 }, "geometry": { "type": "Point", "coordinates": [ 484500.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269233, "UPRN": 10091110557, "X_COORDINATE": 484500.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2169451, "LONGITUDE": -0.7915048 }, "geometry": { "type": "Point", "coordinates": [ 484500.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269169, "UPRN": 10091110493, "X_COORDINATE": 484504.0, "Y_COORDINATE": 147164.0, "LATITUDE": 51.21743, "LONGITUDE": -0.7914348 }, "geometry": { "type": "Point", "coordinates": [ 484504.0, 147164.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117093, "UPRN": 10096745494, "X_COORDINATE": 484519.46, "Y_COORDINATE": 147072.76, "LATITUDE": 51.2166074, "LONGITUDE": -0.791235 }, "geometry": { "type": "Point", "coordinates": [ 484519.460000000020955, 147072.76 ] } }, -{ "type": "Feature", "properties": { "FID": 17498485, "UPRN": 10024878453, "X_COORDINATE": 484599.61, "Y_COORDINATE": 147046.67, "LATITUDE": 51.216361, "LONGITUDE": -0.7900938 }, "geometry": { "type": "Point", "coordinates": [ 484599.60999999998603, 147046.670000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 31731871, "UPRN": 100061611496, "X_COORDINATE": 484448.0, "Y_COORDINATE": 146998.0, "LATITUDE": 51.2159459, "LONGITUDE": -0.7922755 }, "geometry": { "type": "Point", "coordinates": [ 484448.0, 146998.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731887, "UPRN": 100061611512, "X_COORDINATE": 484444.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156049, "LONGITUDE": -0.7923417 }, "geometry": { "type": "Point", "coordinates": [ 484444.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731888, "UPRN": 100061611513, "X_COORDINATE": 484444.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156049, "LONGITUDE": -0.7923417 }, "geometry": { "type": "Point", "coordinates": [ 484444.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731890, "UPRN": 100061611515, "X_COORDINATE": 484444.0, "Y_COORDINATE": 146960.0, "LATITUDE": 51.2156049, "LONGITUDE": -0.7923417 }, "geometry": { "type": "Point", "coordinates": [ 484444.0, 146960.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21911750, "UPRN": 10094580222, "X_COORDINATE": 484436.0, "Y_COORDINATE": 147078.0, "LATITUDE": 51.2166669, "LONGITUDE": -0.7924284 }, "geometry": { "type": "Point", "coordinates": [ 484436.0, 147078.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216888, "UPRN": 100062354241, "X_COORDINATE": 484438.0, "Y_COORDINATE": 147108.0, "LATITUDE": 51.2169363, "LONGITUDE": -0.7923928 }, "geometry": { "type": "Point", "coordinates": [ 484438.0, 147108.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216889, "UPRN": 100062354242, "X_COORDINATE": 484444.0, "Y_COORDINATE": 147111.0, "LATITUDE": 51.2169624, "LONGITUDE": -0.7923062 }, "geometry": { "type": "Point", "coordinates": [ 484444.0, 147111.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18070337, "UPRN": 10025741897, "X_COORDINATE": 484574.88, "Y_COORDINATE": 147170.75, "LATITUDE": 51.2174802, "LONGITUDE": -0.7904186 }, "geometry": { "type": "Point", "coordinates": [ 484574.88, 147170.75 ] } }, -{ "type": "Feature", "properties": { "FID": 18056301, "UPRN": 10025708729, "X_COORDINATE": 484711.31, "Y_COORDINATE": 147185.26, "LATITUDE": 51.2175904, "LONGITUDE": -0.7884622 }, "geometry": { "type": "Point", "coordinates": [ 484711.31, 147185.26 ] } }, -{ "type": "Feature", "properties": { "FID": 20265604, "UPRN": 10091106909, "X_COORDINATE": 484743.0, "Y_COORDINATE": 147114.0, "LATITUDE": 51.2169451, "LONGITUDE": -0.7880254 }, "geometry": { "type": "Point", "coordinates": [ 484743.0, 147114.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17492408, "UPRN": 10024870887, "X_COORDINATE": 484280.96, "Y_COORDINATE": 146630.98, "LATITUDE": 51.212671, "LONGITUDE": -0.7947526 }, "geometry": { "type": "Point", "coordinates": [ 484280.960000000020955, 146630.980000000010477 ] } }, -{ "type": "Feature", "properties": { "FID": 32122150, "UPRN": 100062161450, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122149, "UPRN": 100062161449, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122148, "UPRN": 100062161448, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122147, "UPRN": 100062161447, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122146, "UPRN": 100062161446, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122145, "UPRN": 100062161445, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122144, "UPRN": 100062161444, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122143, "UPRN": 100062161443, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122142, "UPRN": 100062161442, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122141, "UPRN": 100062161441, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122140, "UPRN": 100062161440, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122139, "UPRN": 100062161439, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122138, "UPRN": 100062161438, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122137, "UPRN": 100062161437, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122136, "UPRN": 100062161436, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122135, "UPRN": 100062161435, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122151, "UPRN": 100062161451, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122152, "UPRN": 100062161452, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122153, "UPRN": 100062161453, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122154, "UPRN": 100062161454, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122155, "UPRN": 100062161455, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122156, "UPRN": 100062161456, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122157, "UPRN": 100062161457, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265581, "UPRN": 10091106886, "X_COORDINATE": 484257.0, "Y_COORDINATE": 146684.0, "LATITUDE": 51.2131512, "LONGITUDE": -0.7950831 }, "geometry": { "type": "Point", "coordinates": [ 484257.0, 146684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122158, "UPRN": 100062161458, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122159, "UPRN": 100062161459, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122160, "UPRN": 100062161460, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122161, "UPRN": 100062161461, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122162, "UPRN": 100062161462, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122163, "UPRN": 100062161463, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399363, "UPRN": 100062699028, "X_COORDINATE": 484254.0, "Y_COORDINATE": 146631.0, "LATITUDE": 51.2126751, "LONGITUDE": -0.7951385 }, "geometry": { "type": "Point", "coordinates": [ 484254.0, 146631.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399985, "UPRN": 100062700114, "X_COORDINATE": 484272.0, "Y_COORDINATE": 146656.0, "LATITUDE": 51.2128972, "LONGITUDE": -0.794875 }, "geometry": { "type": "Point", "coordinates": [ 484272.0, 146656.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17492407, "UPRN": 10024870885, "X_COORDINATE": 484280.2, "Y_COORDINATE": 146719.85, "LATITUDE": 51.2134701, "LONGITUDE": -0.7947426 }, "geometry": { "type": "Point", "coordinates": [ 484280.200000000011642, 146719.85 ] } }, -{ "type": "Feature", "properties": { "FID": 20267376, "UPRN": 10091108693, "X_COORDINATE": 484245.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135215, "LONGITUDE": -0.7952453 }, "geometry": { "type": "Point", "coordinates": [ 484245.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267370, "UPRN": 10091108687, "X_COORDINATE": 484245.0, "Y_COORDINATE": 146725.0, "LATITUDE": 51.2135215, "LONGITUDE": -0.7952453 }, "geometry": { "type": "Point", "coordinates": [ 484245.0, 146725.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267377, "UPRN": 10091108694, "X_COORDINATE": 484251.0, "Y_COORDINATE": 146731.0, "LATITUDE": 51.2135746, "LONGITUDE": -0.795158 }, "geometry": { "type": "Point", "coordinates": [ 484251.0, 146731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267371, "UPRN": 10091108688, "X_COORDINATE": 484251.0, "Y_COORDINATE": 146731.0, "LATITUDE": 51.2135746, "LONGITUDE": -0.795158 }, "geometry": { "type": "Point", "coordinates": [ 484251.0, 146731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269112, "UPRN": 10091110436, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136029, "LONGITUDE": -0.7952861 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267381, "UPRN": 10091108698, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136029, "LONGITUDE": -0.7952861 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446649, "UPRN": 10013892974, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136029, "LONGITUDE": -0.7952861 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446647, "UPRN": 10013892972, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136029, "LONGITUDE": -0.7952861 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267379, "UPRN": 10091108696, "X_COORDINATE": 484234.0, "Y_COORDINATE": 146739.0, "LATITUDE": 51.213649, "LONGITUDE": -0.7953994 }, "geometry": { "type": "Point", "coordinates": [ 484234.0, 146739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267373, "UPRN": 10091108690, "X_COORDINATE": 484234.0, "Y_COORDINATE": 146739.0, "LATITUDE": 51.213649, "LONGITUDE": -0.7953994 }, "geometry": { "type": "Point", "coordinates": [ 484234.0, 146739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267378, "UPRN": 10091108695, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146744.0, "LATITUDE": 51.2136931, "LONGITUDE": -0.7953124 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267372, "UPRN": 10091108689, "X_COORDINATE": 484240.0, "Y_COORDINATE": 146744.0, "LATITUDE": 51.2136931, "LONGITUDE": -0.7953124 }, "geometry": { "type": "Point", "coordinates": [ 484240.0, 146744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265615, "UPRN": 10091106920, "X_COORDINATE": 484267.0, "Y_COORDINATE": 146751.0, "LATITUDE": 51.213752, "LONGITUDE": -0.7949243 }, "geometry": { "type": "Point", "coordinates": [ 484267.0, 146751.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15450385, "UPRN": 10013896764, "X_COORDINATE": 484241.0, "Y_COORDINATE": 146759.0, "LATITUDE": 51.2138278, "LONGITUDE": -0.7952946 }, "geometry": { "type": "Point", "coordinates": [ 484241.0, 146759.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216667, "UPRN": 100062353934, "X_COORDINATE": 484242.0, "Y_COORDINATE": 146734.0, "LATITUDE": 51.2136029, "LONGITUDE": -0.7952861 }, "geometry": { "type": "Point", "coordinates": [ 484242.0, 146734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217038, "UPRN": 100062354488, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146740.0, "LATITUDE": 51.2136577, "LONGITUDE": -0.7953706 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146740.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217041, "UPRN": 100062354492, "X_COORDINATE": 484239.0, "Y_COORDINATE": 146736.0, "LATITUDE": 51.2136213, "LONGITUDE": -0.7953286 }, "geometry": { "type": "Point", "coordinates": [ 484239.0, 146736.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367235, "UPRN": 100062609532, "X_COORDINATE": 484236.0, "Y_COORDINATE": 146739.0, "LATITUDE": 51.2136487, "LONGITUDE": -0.7953708 }, "geometry": { "type": "Point", "coordinates": [ 484236.0, 146739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367238, "UPRN": 100062609538, "X_COORDINATE": 484235.0, "Y_COORDINATE": 146745.0, "LATITUDE": 51.2137028, "LONGITUDE": -0.7953837 }, "geometry": { "type": "Point", "coordinates": [ 484235.0, 146745.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367239, "UPRN": 100062609539, "X_COORDINATE": 484247.0, "Y_COORDINATE": 146727.0, "LATITUDE": 51.2135392, "LONGITUDE": -0.7952162 }, "geometry": { "type": "Point", "coordinates": [ 484247.0, 146727.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446182, "UPRN": 10013892487, "X_COORDINATE": 484298.0, "Y_COORDINATE": 146666.0, "LATITUDE": 51.2129833, "LONGITUDE": -0.7945005 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 146666.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269255, "UPRN": 10091110579, "X_COORDINATE": 484358.0, "Y_COORDINATE": 146775.0, "LATITUDE": 51.2139544, "LONGITUDE": -0.7936161 }, "geometry": { "type": "Point", "coordinates": [ 484358.0, 146775.0 ] } }, -{ "type": "Feature", "properties": { "FID": 17496183, "UPRN": 10024875581, "X_COORDINATE": 484302.52, "Y_COORDINATE": 146820.26, "LATITUDE": 51.2143695, "LONGITUDE": -0.7943996 }, "geometry": { "type": "Point", "coordinates": [ 484302.520000000018626, 146820.26 ] } }, -{ "type": "Feature", "properties": { "FID": 31729033, "UPRN": 100061608462, "X_COORDINATE": 484310.0, "Y_COORDINATE": 146883.0, "LATITUDE": 51.2149324, "LONGITUDE": -0.7942778 }, "geometry": { "type": "Point", "coordinates": [ 484310.0, 146883.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270257, "UPRN": 10091111594, "X_COORDINATE": 484316.0, "Y_COORDINATE": 146907.0, "LATITUDE": 51.2151473, "LONGITUDE": -0.7941863 }, "geometry": { "type": "Point", "coordinates": [ 484316.0, 146907.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270255, "UPRN": 10091111592, "X_COORDINATE": 484297.0, "Y_COORDINATE": 146942.0, "LATITUDE": 51.2154647, "LONGITUDE": -0.7944501 }, "geometry": { "type": "Point", "coordinates": [ 484297.0, 146942.0 ] } }, -{ "type": "Feature", "properties": { "FID": 18112998, "UPRN": 10026089541, "X_COORDINATE": 484370.08, "Y_COORDINATE": 146973.26, "LATITUDE": 51.215735, "LONGITUDE": -0.7933966 }, "geometry": { "type": "Point", "coordinates": [ 484370.080000000016298, 146973.26 ] } }, -{ "type": "Feature", "properties": { "FID": 32216618, "UPRN": 100062353858, "X_COORDINATE": 484297.0, "Y_COORDINATE": 146650.0, "LATITUDE": 51.2128396, "LONGITUDE": -0.7945185 }, "geometry": { "type": "Point", "coordinates": [ 484297.0, 146650.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400012, "UPRN": 100062700179, "X_COORDINATE": 484340.0, "Y_COORDINATE": 147250.0, "LATITUDE": 51.2182274, "LONGITUDE": -0.7937623 }, "geometry": { "type": "Point", "coordinates": [ 484340.0, 147250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399525, "UPRN": 100062699303, "X_COORDINATE": 484359.0, "Y_COORDINATE": 147231.0, "LATITUDE": 51.2180537, "LONGITUDE": -0.7934947 }, "geometry": { "type": "Point", "coordinates": [ 484359.0, 147231.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399524, "UPRN": 100062699302, "X_COORDINATE": 484373.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2181685, "LONGITUDE": -0.7932913 }, "geometry": { "type": "Point", "coordinates": [ 484373.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399520, "UPRN": 100062699298, "X_COORDINATE": 484417.0, "Y_COORDINATE": 147223.0, "LATITUDE": 51.2179732, "LONGITUDE": -0.7926664 }, "geometry": { "type": "Point", "coordinates": [ 484417.0, 147223.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399518, "UPRN": 100062699296, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147241.0, "LATITUDE": 51.2181427, "LONGITUDE": -0.7934065 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147241.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399500, "UPRN": 100062699271, "X_COORDINATE": 484419.0, "Y_COORDINATE": 147139.0, "LATITUDE": 51.2172178, "LONGITUDE": -0.7926575 }, "geometry": { "type": "Point", "coordinates": [ 484419.0, 147139.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399482, "UPRN": 100062699236, "X_COORDINATE": 484402.0, "Y_COORDINATE": 147239.0, "LATITUDE": 51.2181193, "LONGITUDE": -0.7928773 }, "geometry": { "type": "Point", "coordinates": [ 484402.0, 147239.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217173, "UPRN": 100062354683, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147218.0, "LATITUDE": 51.2179366, "LONGITUDE": -0.7934692 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147218.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217010, "UPRN": 100062354450, "X_COORDINATE": 484344.0, "Y_COORDINATE": 147180.0, "LATITUDE": 51.2175975, "LONGITUDE": -0.7937214 }, "geometry": { "type": "Point", "coordinates": [ 484344.0, 147180.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217009, "UPRN": 100062354449, "X_COORDINATE": 484328.0, "Y_COORDINATE": 147174.0, "LATITUDE": 51.2175459, "LONGITUDE": -0.7939519 }, "geometry": { "type": "Point", "coordinates": [ 484328.0, 147174.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216885, "UPRN": 100062354238, "X_COORDINATE": 484408.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2170666, "LONGITUDE": -0.7928189 }, "geometry": { "type": "Point", "coordinates": [ 484408.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216864, "UPRN": 100062354189, "X_COORDINATE": 484385.0, "Y_COORDINATE": 147229.0, "LATITUDE": 51.2180319, "LONGITUDE": -0.793123 }, "geometry": { "type": "Point", "coordinates": [ 484385.0, 147229.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216631, "UPRN": 100062353873, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147210.0, "LATITUDE": 51.2178604, "LONGITUDE": -0.7930559 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147210.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122726, "UPRN": 100062162584, "X_COORDINATE": 484340.0, "Y_COORDINATE": 147250.0, "LATITUDE": 51.2182274, "LONGITUDE": -0.7937623 }, "geometry": { "type": "Point", "coordinates": [ 484340.0, 147250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122725, "UPRN": 100062162583, "X_COORDINATE": 484344.0, "Y_COORDINATE": 147247.0, "LATITUDE": 51.2181998, "LONGITUDE": -0.7937057 }, "geometry": { "type": "Point", "coordinates": [ 484344.0, 147247.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122350, "UPRN": 100062161877, "X_COORDINATE": 484353.0, "Y_COORDINATE": 147242.0, "LATITUDE": 51.2181535, "LONGITUDE": -0.7935781 }, "geometry": { "type": "Point", "coordinates": [ 484353.0, 147242.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122346, "UPRN": 100062161873, "X_COORDINATE": 484376.0, "Y_COORDINATE": 147255.0, "LATITUDE": 51.218267, "LONGITUDE": -0.7932458 }, "geometry": { "type": "Point", "coordinates": [ 484376.0, 147255.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122345, "UPRN": 100062161872, "X_COORDINATE": 484379.0, "Y_COORDINATE": 147250.0, "LATITUDE": 51.2182216, "LONGITUDE": -0.793204 }, "geometry": { "type": "Point", "coordinates": [ 484379.0, 147250.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122344, "UPRN": 100062161871, "X_COORDINATE": 484373.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2181685, "LONGITUDE": -0.7932913 }, "geometry": { "type": "Point", "coordinates": [ 484373.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122349, "UPRN": 100062161876, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147238.0, "LATITUDE": 51.2181184, "LONGITUDE": -0.7936649 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147238.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122348, "UPRN": 100062161875, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147238.0, "LATITUDE": 51.2181184, "LONGITUDE": -0.7936649 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147238.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122347, "UPRN": 100062161874, "X_COORDINATE": 484359.0, "Y_COORDINATE": 147231.0, "LATITUDE": 51.2180537, "LONGITUDE": -0.7934947 }, "geometry": { "type": "Point", "coordinates": [ 484359.0, 147231.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722936, "UPRN": 100061601841, "X_COORDINATE": 484349.0, "Y_COORDINATE": 147211.0, "LATITUDE": 51.2178754, "LONGITUDE": -0.7936426 }, "geometry": { "type": "Point", "coordinates": [ 484349.0, 147211.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722937, "UPRN": 100061601842, "X_COORDINATE": 484345.0, "Y_COORDINATE": 147209.0, "LATITUDE": 51.217858, "LONGITUDE": -0.7937003 }, "geometry": { "type": "Point", "coordinates": [ 484345.0, 147209.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722938, "UPRN": 100061601843, "X_COORDINATE": 484340.0, "Y_COORDINATE": 147205.0, "LATITUDE": 51.2178228, "LONGITUDE": -0.7937728 }, "geometry": { "type": "Point", "coordinates": [ 484340.0, 147205.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722939, "UPRN": 100061601844, "X_COORDINATE": 484335.0, "Y_COORDINATE": 147202.0, "LATITUDE": 51.2177966, "LONGITUDE": -0.7938451 }, "geometry": { "type": "Point", "coordinates": [ 484335.0, 147202.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722940, "UPRN": 100061601845, "X_COORDINATE": 484329.0, "Y_COORDINATE": 147199.0, "LATITUDE": 51.2177705, "LONGITUDE": -0.7939317 }, "geometry": { "type": "Point", "coordinates": [ 484329.0, 147199.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722925, "UPRN": 100061601830, "X_COORDINATE": 484350.0, "Y_COORDINATE": 147186.0, "LATITUDE": 51.2176505, "LONGITUDE": -0.7936341 }, "geometry": { "type": "Point", "coordinates": [ 484350.0, 147186.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117300, "UPRN": 10096745884, "X_COORDINATE": 484344.0, "Y_COORDINATE": 147180.0, "LATITUDE": 51.2175975, "LONGITUDE": -0.7937214 }, "geometry": { "type": "Point", "coordinates": [ 484344.0, 147180.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117301, "UPRN": 10096745885, "X_COORDINATE": 484344.0, "Y_COORDINATE": 147180.0, "LATITUDE": 51.2175975, "LONGITUDE": -0.7937214 }, "geometry": { "type": "Point", "coordinates": [ 484344.0, 147180.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117302, "UPRN": 10096745886, "X_COORDINATE": 484344.0, "Y_COORDINATE": 147180.0, "LATITUDE": 51.2175975, "LONGITUDE": -0.7937214 }, "geometry": { "type": "Point", "coordinates": [ 484344.0, 147180.0 ] } }, -{ "type": "Feature", "properties": { "FID": 23117303, "UPRN": 10096745887, "X_COORDINATE": 484344.0, "Y_COORDINATE": 147180.0, "LATITUDE": 51.2175975, "LONGITUDE": -0.7937214 }, "geometry": { "type": "Point", "coordinates": [ 484344.0, 147180.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722924, "UPRN": 100061601829, "X_COORDINATE": 484333.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2175631, "LONGITUDE": -0.7938798 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449905, "UPRN": 10013896280, "X_COORDINATE": 484394.0, "Y_COORDINATE": 147153.0, "LATITUDE": 51.2173473, "LONGITUDE": -0.793012 }, "geometry": { "type": "Point", "coordinates": [ 484394.0, 147153.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445694, "UPRN": 10013891990, "X_COORDINATE": 484346.0, "Y_COORDINATE": 147140.0, "LATITUDE": 51.2172376, "LONGITUDE": -0.7937022 }, "geometry": { "type": "Point", "coordinates": [ 484346.0, 147140.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445695, "UPRN": 10013891991, "X_COORDINATE": 484346.0, "Y_COORDINATE": 147140.0, "LATITUDE": 51.2172376, "LONGITUDE": -0.7937022 }, "geometry": { "type": "Point", "coordinates": [ 484346.0, 147140.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445692, "UPRN": 10013891988, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147122.0, "LATITUDE": 51.2170787, "LONGITUDE": -0.7939927 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147122.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445693, "UPRN": 10013891989, "X_COORDINATE": 484360.0, "Y_COORDINATE": 147120.0, "LATITUDE": 51.2170557, "LONGITUDE": -0.7935065 }, "geometry": { "type": "Point", "coordinates": [ 484360.0, 147120.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449642, "UPRN": 10013896015, "X_COORDINATE": 484384.0, "Y_COORDINATE": 147104.0, "LATITUDE": 51.2169083, "LONGITUDE": -0.7931667 }, "geometry": { "type": "Point", "coordinates": [ 484384.0, 147104.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122336, "UPRN": 100062161863, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122335, "UPRN": 100062161862, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122334, "UPRN": 100062161861, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122333, "UPRN": 100062161860, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122332, "UPRN": 100062161859, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122331, "UPRN": 100062161858, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122330, "UPRN": 100062161857, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122329, "UPRN": 100062161856, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122328, "UPRN": 100062161855, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122327, "UPRN": 100062161854, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122326, "UPRN": 100062161853, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122325, "UPRN": 100062161852, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122324, "UPRN": 100062161851, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122323, "UPRN": 100062161850, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122322, "UPRN": 100062161849, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122321, "UPRN": 100062161848, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216887, "UPRN": 100062354240, "X_COORDINATE": 484429.0, "Y_COORDINATE": 147103.0, "LATITUDE": 51.2168927, "LONGITUDE": -0.7925228 }, "geometry": { "type": "Point", "coordinates": [ 484429.0, 147103.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216890, "UPRN": 100062354243, "X_COORDINATE": 484429.0, "Y_COORDINATE": 147091.0, "LATITUDE": 51.2167848, "LONGITUDE": -0.7925256 }, "geometry": { "type": "Point", "coordinates": [ 484429.0, 147091.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399521, "UPRN": 100062699299, "X_COORDINATE": 484437.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183569, "LONGITUDE": -0.79237 }, "geometry": { "type": "Point", "coordinates": [ 484437.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731095, "UPRN": 100061610683, "X_COORDINATE": 484179.0, "Y_COORDINATE": 147229.0, "LATITUDE": 51.2180623, "LONGITUDE": -0.7960719 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 147229.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724935, "UPRN": 100061604086, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147231.0, "LATITUDE": 51.2180862, "LONGITUDE": -0.796644 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147231.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731096, "UPRN": 100061610684, "X_COORDINATE": 484177.0, "Y_COORDINATE": 147232.0, "LATITUDE": 51.2180896, "LONGITUDE": -0.7960998 }, "geometry": { "type": "Point", "coordinates": [ 484177.0, 147232.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724936, "UPRN": 100061604087, "X_COORDINATE": 484143.0, "Y_COORDINATE": 147234.0, "LATITUDE": 51.2181125, "LONGITUDE": -0.7965861 }, "geometry": { "type": "Point", "coordinates": [ 484143.0, 147234.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729134, "UPRN": 100061608568, "X_COORDINATE": 484205.0, "Y_COORDINATE": 147234.0, "LATITUDE": 51.2181034, "LONGITUDE": -0.7956985 }, "geometry": { "type": "Point", "coordinates": [ 484205.0, 147234.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724937, "UPRN": 100061604088, "X_COORDINATE": 484147.0, "Y_COORDINATE": 147236.0, "LATITUDE": 51.2181299, "LONGITUDE": -0.7965283 }, "geometry": { "type": "Point", "coordinates": [ 484147.0, 147236.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724938, "UPRN": 100061604089, "X_COORDINATE": 484151.0, "Y_COORDINATE": 147238.0, "LATITUDE": 51.2181473, "LONGITUDE": -0.7964706 }, "geometry": { "type": "Point", "coordinates": [ 484151.0, 147238.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731097, "UPRN": 100061610685, "X_COORDINATE": 484166.0, "Y_COORDINATE": 147245.0, "LATITUDE": 51.2182081, "LONGITUDE": -0.7962543 }, "geometry": { "type": "Point", "coordinates": [ 484166.0, 147245.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31730410, "UPRN": 100061609932, "X_COORDINATE": 484224.0, "Y_COORDINATE": 147247.0, "LATITUDE": 51.2182175, "LONGITUDE": -0.7954235 }, "geometry": { "type": "Point", "coordinates": [ 484224.0, 147247.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731098, "UPRN": 100061610686, "X_COORDINATE": 484164.0, "Y_COORDINATE": 147249.0, "LATITUDE": 51.2182443, "LONGITUDE": -0.7962819 }, "geometry": { "type": "Point", "coordinates": [ 484164.0, 147249.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732878, "UPRN": 100061612572, "X_COORDINATE": 484198.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.2183742, "LONGITUDE": -0.7957917 }, "geometry": { "type": "Point", "coordinates": [ 484198.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731099, "UPRN": 100061610687, "X_COORDINATE": 484154.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2183986, "LONGITUDE": -0.7964211 }, "geometry": { "type": "Point", "coordinates": [ 484154.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732880, "UPRN": 100061612574, "X_COORDINATE": 484196.0, "Y_COORDINATE": 147268.0, "LATITUDE": 51.2184104, "LONGITUDE": -0.7958194 }, "geometry": { "type": "Point", "coordinates": [ 484196.0, 147268.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731100, "UPRN": 100061610688, "X_COORDINATE": 484151.0, "Y_COORDINATE": 147271.0, "LATITUDE": 51.218444, "LONGITUDE": -0.7964629 }, "geometry": { "type": "Point", "coordinates": [ 484151.0, 147271.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270259, "UPRN": 10091111596, "X_COORDINATE": 484277.0, "Y_COORDINATE": 146990.0, "LATITUDE": 51.2158992, "LONGITUDE": -0.7947251 }, "geometry": { "type": "Point", "coordinates": [ 484277.0, 146990.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722945, "UPRN": 100061601850, "X_COORDINATE": 484239.0, "Y_COORDINATE": 146996.0, "LATITUDE": 51.2159588, "LONGITUDE": -0.7952676 }, "geometry": { "type": "Point", "coordinates": [ 484239.0, 146996.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270260, "UPRN": 10091111597, "X_COORDINATE": 484292.0, "Y_COORDINATE": 147017.0, "LATITUDE": 51.2161397, "LONGITUDE": -0.794504 }, "geometry": { "type": "Point", "coordinates": [ 484292.0, 147017.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270263, "UPRN": 10091111600, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147023.0, "LATITUDE": 51.2162038, "LONGITUDE": -0.7954903 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147023.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20269028, "UPRN": 10091110352, "X_COORDINATE": 484213.0, "Y_COORDINATE": 147051.0, "LATITUDE": 51.216457, "LONGITUDE": -0.7956269 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 147051.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266843, "UPRN": 10091108157, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266842, "UPRN": 10091108156, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266047, "UPRN": 10091107357, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266035, "UPRN": 10091107345, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265993, "UPRN": 10091107302, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267881, "UPRN": 10091109202, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216696, "UPRN": 100062353976, "X_COORDINATE": 484195.0, "Y_COORDINATE": 147053.0, "LATITUDE": 51.2164777, "LONGITUDE": -0.7958841 }, "geometry": { "type": "Point", "coordinates": [ 484195.0, 147053.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216697, "UPRN": 100062353977, "X_COORDINATE": 484205.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2165571, "LONGITUDE": -0.7957389 }, "geometry": { "type": "Point", "coordinates": [ 484205.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216698, "UPRN": 100062353978, "X_COORDINATE": 484205.0, "Y_COORDINATE": 147062.0, "LATITUDE": 51.2165571, "LONGITUDE": -0.7957389 }, "geometry": { "type": "Point", "coordinates": [ 484205.0, 147062.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266814, "UPRN": 10091108128, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266813, "UPRN": 10091108127, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265791, "UPRN": 10091107097, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265792, "UPRN": 10091107098, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265793, "UPRN": 10091107099, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265794, "UPRN": 10091107100, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265795, "UPRN": 10091107101, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265796, "UPRN": 10091107102, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265797, "UPRN": 10091107103, "X_COORDINATE": 484223.0, "Y_COORDINATE": 147064.0, "LATITUDE": 51.2165724, "LONGITUDE": -0.7954807 }, "geometry": { "type": "Point", "coordinates": [ 484223.0, 147064.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267657, "UPRN": 10091108978, "X_COORDINATE": 484213.0, "Y_COORDINATE": 147071.0, "LATITUDE": 51.2166368, "LONGITUDE": -0.7956222 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 147071.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20267658, "UPRN": 10091108979, "X_COORDINATE": 484213.0, "Y_COORDINATE": 147071.0, "LATITUDE": 51.2166368, "LONGITUDE": -0.7956222 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 147071.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216699, "UPRN": 100062353979, "X_COORDINATE": 484213.0, "Y_COORDINATE": 147071.0, "LATITUDE": 51.2166368, "LONGITUDE": -0.7956222 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 147071.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20270261, "UPRN": 10091111598, "X_COORDINATE": 484274.0, "Y_COORDINATE": 146955.0, "LATITUDE": 51.215585, "LONGITUDE": -0.7947762 }, "geometry": { "type": "Point", "coordinates": [ 484274.0, 146955.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216958, "UPRN": 100062354370, "X_COORDINATE": 484286.0, "Y_COORDINATE": 146946.0, "LATITUDE": 51.2155023, "LONGITUDE": -0.7946066 }, "geometry": { "type": "Point", "coordinates": [ 484286.0, 146946.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216957, "UPRN": 100062354369, "X_COORDINATE": 484279.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154494, "LONGITUDE": -0.7947082 }, "geometry": { "type": "Point", "coordinates": [ 484279.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216960, "UPRN": 100062354390, "X_COORDINATE": 484188.0, "Y_COORDINATE": 146938.0, "LATITUDE": 51.2154448, "LONGITUDE": -0.7960112 }, "geometry": { "type": "Point", "coordinates": [ 484188.0, 146938.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266005, "UPRN": 10091107314, "X_COORDINATE": 484270.0, "Y_COORDINATE": 146934.0, "LATITUDE": 51.2153968, "LONGITUDE": -0.7948384 }, "geometry": { "type": "Point", "coordinates": [ 484270.0, 146934.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217116, "UPRN": 100062354587, "X_COORDINATE": 484210.0, "Y_COORDINATE": 146954.0, "LATITUDE": 51.2155854, "LONGITUDE": -0.7956926 }, "geometry": { "type": "Point", "coordinates": [ 484210.0, 146954.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367184, "UPRN": 100062609412, "X_COORDINATE": 484186.0, "Y_COORDINATE": 147005.0, "LATITUDE": 51.2160475, "LONGITUDE": -0.7960242 }, "geometry": { "type": "Point", "coordinates": [ 484186.0, 147005.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367185, "UPRN": 100062609413, "X_COORDINATE": 484259.0, "Y_COORDINATE": 146968.0, "LATITUDE": 51.2157041, "LONGITUDE": -0.7949879 }, "geometry": { "type": "Point", "coordinates": [ 484259.0, 146968.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399511, "UPRN": 100062699286, "X_COORDINATE": 484279.0, "Y_COORDINATE": 146940.0, "LATITUDE": 51.2154494, "LONGITUDE": -0.7947082 }, "geometry": { "type": "Point", "coordinates": [ 484279.0, 146940.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217066, "UPRN": 100062354518, "X_COORDINATE": 484264.0, "Y_COORDINATE": 146855.0, "LATITUDE": 51.2146875, "LONGITUDE": -0.7949428 }, "geometry": { "type": "Point", "coordinates": [ 484264.0, 146855.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217055, "UPRN": 100062354507, "X_COORDINATE": 484266.0, "Y_COORDINATE": 146857.0, "LATITUDE": 51.2147051, "LONGITUDE": -0.7949137 }, "geometry": { "type": "Point", "coordinates": [ 484266.0, 146857.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217043, "UPRN": 100062354495, "X_COORDINATE": 484266.0, "Y_COORDINATE": 146857.0, "LATITUDE": 51.2147051, "LONGITUDE": -0.7949137 }, "geometry": { "type": "Point", "coordinates": [ 484266.0, 146857.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217052, "UPRN": 100062354504, "X_COORDINATE": 484271.0, "Y_COORDINATE": 146863.0, "LATITUDE": 51.2147583, "LONGITUDE": -0.7948408 }, "geometry": { "type": "Point", "coordinates": [ 484271.0, 146863.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217059, "UPRN": 100062354511, "X_COORDINATE": 484276.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2146947, "LONGITUDE": -0.7947708 }, "geometry": { "type": "Point", "coordinates": [ 484276.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217047, "UPRN": 100062354499, "X_COORDINATE": 484276.0, "Y_COORDINATE": 146856.0, "LATITUDE": 51.2146947, "LONGITUDE": -0.7947708 }, "geometry": { "type": "Point", "coordinates": [ 484276.0, 146856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217069, "UPRN": 100062354521, "X_COORDINATE": 484277.0, "Y_COORDINATE": 146854.0, "LATITUDE": 51.2146766, "LONGITUDE": -0.794757 }, "geometry": { "type": "Point", "coordinates": [ 484277.0, 146854.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217060, "UPRN": 100062354512, "X_COORDINATE": 484279.0, "Y_COORDINATE": 146852.0, "LATITUDE": 51.2146583, "LONGITUDE": -0.7947288 }, "geometry": { "type": "Point", "coordinates": [ 484279.0, 146852.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217048, "UPRN": 100062354500, "X_COORDINATE": 484279.0, "Y_COORDINATE": 146852.0, "LATITUDE": 51.2146583, "LONGITUDE": -0.7947288 }, "geometry": { "type": "Point", "coordinates": [ 484279.0, 146852.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217070, "UPRN": 100062354522, "X_COORDINATE": 484281.0, "Y_COORDINATE": 146850.0, "LATITUDE": 51.21464, "LONGITUDE": -0.7947007 }, "geometry": { "type": "Point", "coordinates": [ 484281.0, 146850.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217061, "UPRN": 100062354513, "X_COORDINATE": 484283.0, "Y_COORDINATE": 146848.0, "LATITUDE": 51.2146217, "LONGITUDE": -0.7946725 }, "geometry": { "type": "Point", "coordinates": [ 484283.0, 146848.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217049, "UPRN": 100062354501, "X_COORDINATE": 484283.0, "Y_COORDINATE": 146848.0, "LATITUDE": 51.2146217, "LONGITUDE": -0.7946725 }, "geometry": { "type": "Point", "coordinates": [ 484283.0, 146848.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217062, "UPRN": 100062354514, "X_COORDINATE": 484284.0, "Y_COORDINATE": 146862.0, "LATITUDE": 51.2147474, "LONGITUDE": -0.7946549 }, "geometry": { "type": "Point", "coordinates": [ 484284.0, 146862.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217050, "UPRN": 100062354502, "X_COORDINATE": 484285.0, "Y_COORDINATE": 146860.0, "LATITUDE": 51.2147293, "LONGITUDE": -0.7946411 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 146860.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21910031, "UPRN": 10094578447, "X_COORDINATE": 484285.0, "Y_COORDINATE": 146885.0, "LATITUDE": 51.2149541, "LONGITUDE": -0.7946352 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 146885.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217063, "UPRN": 100062354515, "X_COORDINATE": 484287.0, "Y_COORDINATE": 146858.0, "LATITUDE": 51.214711, "LONGITUDE": -0.7946129 }, "geometry": { "type": "Point", "coordinates": [ 484287.0, 146858.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217071, "UPRN": 100062354523, "X_COORDINATE": 484287.0, "Y_COORDINATE": 146858.0, "LATITUDE": 51.214711, "LONGITUDE": -0.7946129 }, "geometry": { "type": "Point", "coordinates": [ 484287.0, 146858.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217051, "UPRN": 100062354503, "X_COORDINATE": 484289.0, "Y_COORDINATE": 146855.0, "LATITUDE": 51.2146838, "LONGITUDE": -0.794585 }, "geometry": { "type": "Point", "coordinates": [ 484289.0, 146855.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217064, "UPRN": 100062354516, "X_COORDINATE": 484291.0, "Y_COORDINATE": 146853.0, "LATITUDE": 51.2146655, "LONGITUDE": -0.7945568 }, "geometry": { "type": "Point", "coordinates": [ 484291.0, 146853.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449349, "UPRN": 10013895721, "X_COORDINATE": 484282.0, "Y_COORDINATE": 146619.0, "LATITUDE": 51.2125631, "LONGITUDE": -0.7947405 }, "geometry": { "type": "Point", "coordinates": [ 484282.0, 146619.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446183, "UPRN": 10013892488, "X_COORDINATE": 484284.0, "Y_COORDINATE": 146679.0, "LATITUDE": 51.2131022, "LONGITUDE": -0.7946978 }, "geometry": { "type": "Point", "coordinates": [ 484284.0, 146679.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367233, "UPRN": 100062609530, "X_COORDINATE": 484285.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2129493, "LONGITUDE": -0.7946875 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367234, "UPRN": 100062609531, "X_COORDINATE": 484285.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2129493, "LONGITUDE": -0.7946875 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367236, "UPRN": 100062609533, "X_COORDINATE": 484285.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2129493, "LONGITUDE": -0.7946875 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399986, "UPRN": 100062700116, "X_COORDINATE": 484285.0, "Y_COORDINATE": 146662.0, "LATITUDE": 51.2129493, "LONGITUDE": -0.7946875 }, "geometry": { "type": "Point", "coordinates": [ 484285.0, 146662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722946, "UPRN": 100061601851, "X_COORDINATE": 484453.0, "Y_COORDINATE": 147286.0, "LATITUDE": 51.2185343, "LONGITUDE": -0.7921362 }, "geometry": { "type": "Point", "coordinates": [ 484453.0, 147286.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122338, "UPRN": 100062161865, "X_COORDINATE": 484454.0, "Y_COORDINATE": 147242.0, "LATITUDE": 51.2181386, "LONGITUDE": -0.7921322 }, "geometry": { "type": "Point", "coordinates": [ 484454.0, 147242.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122339, "UPRN": 100062161866, "X_COORDINATE": 484457.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2181561, "LONGITUDE": -0.7920888 }, "geometry": { "type": "Point", "coordinates": [ 484457.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122340, "UPRN": 100062161867, "X_COORDINATE": 484460.0, "Y_COORDINATE": 147246.0, "LATITUDE": 51.2181737, "LONGITUDE": -0.7920454 }, "geometry": { "type": "Point", "coordinates": [ 484460.0, 147246.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122341, "UPRN": 100062161868, "X_COORDINATE": 484463.0, "Y_COORDINATE": 147248.0, "LATITUDE": 51.2181912, "LONGITUDE": -0.792002 }, "geometry": { "type": "Point", "coordinates": [ 484463.0, 147248.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122342, "UPRN": 100062161869, "X_COORDINATE": 484467.0, "Y_COORDINATE": 147249.0, "LATITUDE": 51.2181996, "LONGITUDE": -0.7919445 }, "geometry": { "type": "Point", "coordinates": [ 484467.0, 147249.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122343, "UPRN": 100062161870, "X_COORDINATE": 484471.0, "Y_COORDINATE": 147251.0, "LATITUDE": 51.218217, "LONGITUDE": -0.7918868 }, "geometry": { "type": "Point", "coordinates": [ 484471.0, 147251.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122290, "UPRN": 100062161813, "X_COORDINATE": 484479.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.2182608, "LONGITUDE": -0.7917711 }, "geometry": { "type": "Point", "coordinates": [ 484479.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122291, "UPRN": 100062161814, "X_COORDINATE": 484479.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.2182608, "LONGITUDE": -0.7917711 }, "geometry": { "type": "Point", "coordinates": [ 484479.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729666, "UPRN": 100061609107, "X_COORDINATE": 484481.0, "Y_COORDINATE": 147346.0, "LATITUDE": 51.2190696, "LONGITUDE": -0.7917213 }, "geometry": { "type": "Point", "coordinates": [ 484481.0, 147346.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216894, "UPRN": 100062354259, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147247.0, "LATITUDE": 51.2181793, "LONGITUDE": -0.7917159 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147247.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729665, "UPRN": 100061609106, "X_COORDINATE": 484485.0, "Y_COORDINATE": 147333.0, "LATITUDE": 51.2189521, "LONGITUDE": -0.7916671 }, "geometry": { "type": "Point", "coordinates": [ 484485.0, 147333.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729664, "UPRN": 100061609105, "X_COORDINATE": 484488.0, "Y_COORDINATE": 147326.0, "LATITUDE": 51.2188887, "LONGITUDE": -0.7916258 }, "geometry": { "type": "Point", "coordinates": [ 484488.0, 147326.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216947, "UPRN": 100062354348, "X_COORDINATE": 484490.0, "Y_COORDINATE": 147260.0, "LATITUDE": 51.2182951, "LONGITUDE": -0.7916127 }, "geometry": { "type": "Point", "coordinates": [ 484490.0, 147260.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216624, "UPRN": 100062353865, "X_COORDINATE": 484496.0, "Y_COORDINATE": 147227.0, "LATITUDE": 51.2179975, "LONGITUDE": -0.7915345 }, "geometry": { "type": "Point", "coordinates": [ 484496.0, 147227.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722944, "UPRN": 100061601849, "X_COORDINATE": 484497.0, "Y_COORDINATE": 147265.0, "LATITUDE": 51.218339, "LONGITUDE": -0.7915113 }, "geometry": { "type": "Point", "coordinates": [ 484497.0, 147265.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722943, "UPRN": 100061601848, "X_COORDINATE": 484502.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218626, "LONGITUDE": -0.7914322 }, "geometry": { "type": "Point", "coordinates": [ 484502.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722947, "UPRN": 100061601852, "X_COORDINATE": 484504.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.218347, "LONGITUDE": -0.7914108 }, "geometry": { "type": "Point", "coordinates": [ 484504.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722948, "UPRN": 100061601853, "X_COORDINATE": 484511.0, "Y_COORDINATE": 147269.0, "LATITUDE": 51.2183729, "LONGITUDE": -0.7913099 }, "geometry": { "type": "Point", "coordinates": [ 484511.0, 147269.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217112, "UPRN": 100062354580, "X_COORDINATE": 484485.0, "Y_COORDINATE": 147222.0, "LATITUDE": 51.2179542, "LONGITUDE": -0.7916932 }, "geometry": { "type": "Point", "coordinates": [ 484485.0, 147222.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217138, "UPRN": 100062354631, "X_COORDINATE": 484502.0, "Y_COORDINATE": 147231.0, "LATITUDE": 51.2180326, "LONGITUDE": -0.7914477 }, "geometry": { "type": "Point", "coordinates": [ 484502.0, 147231.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217159, "UPRN": 100062354667, "X_COORDINATE": 484491.0, "Y_COORDINATE": 147224.0, "LATITUDE": 51.2179713, "LONGITUDE": -0.7916068 }, "geometry": { "type": "Point", "coordinates": [ 484491.0, 147224.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217160, "UPRN": 100062354668, "X_COORDINATE": 484480.0, "Y_COORDINATE": 147219.0, "LATITUDE": 51.217928, "LONGITUDE": -0.7917655 }, "geometry": { "type": "Point", "coordinates": [ 484480.0, 147219.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399501, "UPRN": 100062699272, "X_COORDINATE": 484485.0, "Y_COORDINATE": 147222.0, "LATITUDE": 51.2179542, "LONGITUDE": -0.7916932 }, "geometry": { "type": "Point", "coordinates": [ 484485.0, 147222.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399513, "UPRN": 100062699290, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399516, "UPRN": 100062699293, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399522, "UPRN": 100062699300, "X_COORDINATE": 484479.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.2182608, "LONGITUDE": -0.7917711 }, "geometry": { "type": "Point", "coordinates": [ 484479.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731891, "UPRN": 100061611516, "X_COORDINATE": 484453.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2156485, "LONGITUDE": -0.7922117 }, "geometry": { "type": "Point", "coordinates": [ 484453.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731889, "UPRN": 100061611514, "X_COORDINATE": 484453.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2156485, "LONGITUDE": -0.7922117 }, "geometry": { "type": "Point", "coordinates": [ 484453.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731886, "UPRN": 100061611511, "X_COORDINATE": 484453.0, "Y_COORDINATE": 146965.0, "LATITUDE": 51.2156485, "LONGITUDE": -0.7922117 }, "geometry": { "type": "Point", "coordinates": [ 484453.0, 146965.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731885, "UPRN": 100061611510, "X_COORDINATE": 484459.0, "Y_COORDINATE": 146968.0, "LATITUDE": 51.2156746, "LONGITUDE": -0.7921251 }, "geometry": { "type": "Point", "coordinates": [ 484459.0, 146968.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731883, "UPRN": 100061611508, "X_COORDINATE": 484464.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2157278, "LONGITUDE": -0.7920521 }, "geometry": { "type": "Point", "coordinates": [ 484464.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731881, "UPRN": 100061611506, "X_COORDINATE": 484464.0, "Y_COORDINATE": 146974.0, "LATITUDE": 51.2157278, "LONGITUDE": -0.7920521 }, "geometry": { "type": "Point", "coordinates": [ 484464.0, 146974.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731879, "UPRN": 100061611504, "X_COORDINATE": 484469.0, "Y_COORDINATE": 146979.0, "LATITUDE": 51.215772, "LONGITUDE": -0.7919793 }, "geometry": { "type": "Point", "coordinates": [ 484469.0, 146979.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731877, "UPRN": 100061611502, "X_COORDINATE": 484469.0, "Y_COORDINATE": 146979.0, "LATITUDE": 51.215772, "LONGITUDE": -0.7919793 }, "geometry": { "type": "Point", "coordinates": [ 484469.0, 146979.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731875, "UPRN": 100061611500, "X_COORDINATE": 484473.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158253, "LONGITUDE": -0.7919207 }, "geometry": { "type": "Point", "coordinates": [ 484473.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731873, "UPRN": 100061611498, "X_COORDINATE": 484473.0, "Y_COORDINATE": 146985.0, "LATITUDE": 51.2158253, "LONGITUDE": -0.7919207 }, "geometry": { "type": "Point", "coordinates": [ 484473.0, 146985.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122595, "UPRN": 100062162239, "X_COORDINATE": 484505.0, "Y_COORDINATE": 147007.0, "LATITUDE": 51.2160184, "LONGITUDE": -0.7914574 }, "geometry": { "type": "Point", "coordinates": [ 484505.0, 147007.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216891, "UPRN": 100062354244, "X_COORDINATE": 484514.0, "Y_COORDINATE": 147013.0, "LATITUDE": 51.216071, "LONGITUDE": -0.7913272 }, "geometry": { "type": "Point", "coordinates": [ 484514.0, 147013.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15449903, "UPRN": 10013896278, "X_COORDINATE": 484454.0, "Y_COORDINATE": 147054.0, "LATITUDE": 51.2164484, "LONGITUDE": -0.7921764 }, "geometry": { "type": "Point", "coordinates": [ 484454.0, 147054.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122598, "UPRN": 100062162242, "X_COORDINATE": 484477.0, "Y_COORDINATE": 147051.02, "LATITUDE": 51.2164183, "LONGITUDE": -0.7918479 }, "geometry": { "type": "Point", "coordinates": [ 484477.0, 147051.019999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 32122609, "UPRN": 100062162253, "X_COORDINATE": 484480.79, "Y_COORDINATE": 147049.12, "LATITUDE": 51.2164006, "LONGITUDE": -0.7917941 }, "geometry": { "type": "Point", "coordinates": [ 484480.789999999979045, 147049.12 ] } }, -{ "type": "Feature", "properties": { "FID": 15448087, "UPRN": 10013894446, "X_COORDINATE": 484481.0, "Y_COORDINATE": 147134.0, "LATITUDE": 51.2171637, "LONGITUDE": -0.7917711 }, "geometry": { "type": "Point", "coordinates": [ 484481.0, 147134.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122621, "UPRN": 100062162265, "X_COORDINATE": 484481.04, "Y_COORDINATE": 147051.09, "LATITUDE": 51.2164183, "LONGITUDE": -0.79179 }, "geometry": { "type": "Point", "coordinates": [ 484481.039999999979045, 147051.09 ] } }, -{ "type": "Feature", "properties": { "FID": 32122597, "UPRN": 100062162241, "X_COORDINATE": 484481.43, "Y_COORDINATE": 147045.61, "LATITUDE": 51.216369, "LONGITUDE": -0.7917858 }, "geometry": { "type": "Point", "coordinates": [ 484481.43, 147045.60999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 32122599, "UPRN": 100062162243, "X_COORDINATE": 484482.91, "Y_COORDINATE": 147051.02, "LATITUDE": 51.2164174, "LONGITUDE": -0.7917633 }, "geometry": { "type": "Point", "coordinates": [ 484482.909999999974389, 147051.019999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 32122596, "UPRN": 100062162240, "X_COORDINATE": 484484.88, "Y_COORDINATE": 147038.71, "LATITUDE": 51.2163064, "LONGITUDE": -0.791738 }, "geometry": { "type": "Point", "coordinates": [ 484484.88, 147038.71 ] } }, -{ "type": "Feature", "properties": { "FID": 32122610, "UPRN": 100062162254, "X_COORDINATE": 484485.72, "Y_COORDINATE": 147054.29, "LATITUDE": 51.2164464, "LONGITUDE": -0.7917223 }, "geometry": { "type": "Point", "coordinates": [ 484485.71999999997206, 147054.29 ] } }, -{ "type": "Feature", "properties": { "FID": 32122622, "UPRN": 100062162266, "X_COORDINATE": 484487.69, "Y_COORDINATE": 147056.01, "LATITUDE": 51.2164615, "LONGITUDE": -0.7916937 }, "geometry": { "type": "Point", "coordinates": [ 484487.69, 147056.01 ] } }, -{ "type": "Feature", "properties": { "FID": 32122600, "UPRN": 100062162244, "X_COORDINATE": 484487.84, "Y_COORDINATE": 147054.47, "LATITUDE": 51.2164477, "LONGITUDE": -0.7916919 }, "geometry": { "type": "Point", "coordinates": [ 484487.840000000025611, 147054.47 ] } }, -{ "type": "Feature", "properties": { "FID": 32122611, "UPRN": 100062162255, "X_COORDINATE": 484493.85, "Y_COORDINATE": 147060.94, "LATITUDE": 51.216505, "LONGITUDE": -0.7916044 }, "geometry": { "type": "Point", "coordinates": [ 484493.849999999976717, 147060.94 ] } }, -{ "type": "Feature", "properties": { "FID": 32122601, "UPRN": 100062162245, "X_COORDINATE": 484494.24, "Y_COORDINATE": 147059.4, "LATITUDE": 51.216491, "LONGITUDE": -0.7915991 }, "geometry": { "type": "Point", "coordinates": [ 484494.24, 147059.4 ] } }, -{ "type": "Feature", "properties": { "FID": 32122612, "UPRN": 100062162256, "X_COORDINATE": 484498.28, "Y_COORDINATE": 147062.91, "LATITUDE": 51.216522, "LONGITUDE": -0.7915405 }, "geometry": { "type": "Point", "coordinates": [ 484498.28000000002794, 147062.91 ] } }, -{ "type": "Feature", "properties": { "FID": 32122602, "UPRN": 100062162246, "X_COORDINATE": 484499.66, "Y_COORDINATE": 147064.82, "LATITUDE": 51.216539, "LONGITUDE": -0.7915203 }, "geometry": { "type": "Point", "coordinates": [ 484499.659999999974389, 147064.82 ] } }, -{ "type": "Feature", "properties": { "FID": 23117192, "UPRN": 10096745594, "X_COORDINATE": 484500.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2169451, "LONGITUDE": -0.7915048 }, "geometry": { "type": "Point", "coordinates": [ 484500.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122613, "UPRN": 100062162257, "X_COORDINATE": 484502.47, "Y_COORDINATE": 147067.59, "LATITUDE": 51.2165635, "LONGITUDE": -0.7914794 }, "geometry": { "type": "Point", "coordinates": [ 484502.46999999997206, 147067.59 ] } }, -{ "type": "Feature", "properties": { "FID": 32122623, "UPRN": 100062162267, "X_COORDINATE": 484496.55, "Y_COORDINATE": 147060.45, "LATITUDE": 51.2165001, "LONGITUDE": -0.7915658 }, "geometry": { "type": "Point", "coordinates": [ 484496.549999999988358, 147060.450000000011642 ] } }, -{ "type": "Feature", "properties": { "FID": 32122624, "UPRN": 100062162268, "X_COORDINATE": 484502.71, "Y_COORDINATE": 147067.1, "LATITUDE": 51.216559, "LONGITUDE": -0.7914761 }, "geometry": { "type": "Point", "coordinates": [ 484502.710000000020955, 147067.1 ] } }, -{ "type": "Feature", "properties": { "FID": 32216625, "UPRN": 100062353866, "X_COORDINATE": 484488.0, "Y_COORDINATE": 147138.0, "LATITUDE": 51.2171986, "LONGITUDE": -0.79167 }, "geometry": { "type": "Point", "coordinates": [ 484488.0, 147138.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216866, "UPRN": 100062354199, "X_COORDINATE": 484500.0, "Y_COORDINATE": 147110.0, "LATITUDE": 51.2169451, "LONGITUDE": -0.7915048 }, "geometry": { "type": "Point", "coordinates": [ 484500.0, 147110.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216867, "UPRN": 100062354200, "X_COORDINATE": 484479.0, "Y_COORDINATE": 147147.0, "LATITUDE": 51.2172808, "LONGITUDE": -0.7917967 }, "geometry": { "type": "Point", "coordinates": [ 484479.0, 147147.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216868, "UPRN": 100062354202, "X_COORDINATE": 484472.0, "Y_COORDINATE": 147160.0, "LATITUDE": 51.2173987, "LONGITUDE": -0.7918938 }, "geometry": { "type": "Point", "coordinates": [ 484472.0, 147160.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216886, "UPRN": 100062354239, "X_COORDINATE": 484463.0, "Y_COORDINATE": 147082.0, "LATITUDE": 51.2166988, "LONGITUDE": -0.792041 }, "geometry": { "type": "Point", "coordinates": [ 484463.0, 147082.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217139, "UPRN": 100062354633, "X_COORDINATE": 484501.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.2174933, "LONGITUDE": -0.7914761 }, "geometry": { "type": "Point", "coordinates": [ 484501.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217140, "UPRN": 100062354634, "X_COORDINATE": 484457.0, "Y_COORDINATE": 147077.0, "LATITUDE": 51.2166548, "LONGITUDE": -0.7921281 }, "geometry": { "type": "Point", "coordinates": [ 484457.0, 147077.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399812, "UPRN": 100062699802, "X_COORDINATE": 484490.0, "Y_COORDINATE": 147061.0, "LATITUDE": 51.2165061, "LONGITUDE": -0.7916595 }, "geometry": { "type": "Point", "coordinates": [ 484490.0, 147061.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122603, "UPRN": 100062162247, "X_COORDINATE": 484505.57, "Y_COORDINATE": 147071.22, "LATITUDE": 51.2165956, "LONGITUDE": -0.7914342 }, "geometry": { "type": "Point", "coordinates": [ 484505.57, 147071.22 ] } }, -{ "type": "Feature", "properties": { "FID": 32122614, "UPRN": 100062162258, "X_COORDINATE": 484507.64, "Y_COORDINATE": 147070.54, "LATITUDE": 51.2165892, "LONGITUDE": -0.7914047 }, "geometry": { "type": "Point", "coordinates": [ 484507.64000000001397, 147070.54 ] } }, -{ "type": "Feature", "properties": { "FID": 15451612, "UPRN": 10013898480, "X_COORDINATE": 484509.0, "Y_COORDINATE": 147165.0, "LATITUDE": 51.2174382, "LONGITUDE": -0.791363 }, "geometry": { "type": "Point", "coordinates": [ 484509.0, 147165.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122615, "UPRN": 100062162259, "X_COORDINATE": 484511.09, "Y_COORDINATE": 147073.5, "LATITUDE": 51.2166153, "LONGITUDE": -0.7913546 }, "geometry": { "type": "Point", "coordinates": [ 484511.090000000025611, 147073.5 ] } }, -{ "type": "Feature", "properties": { "FID": 32122604, "UPRN": 100062162248, "X_COORDINATE": 484513.95, "Y_COORDINATE": 147077.13, "LATITUDE": 51.2166475, "LONGITUDE": -0.7913128 }, "geometry": { "type": "Point", "coordinates": [ 484513.950000000011642, 147077.13 ] } }, -{ "type": "Feature", "properties": { "FID": 15448086, "UPRN": 10013894445, "X_COORDINATE": 484515.0, "Y_COORDINATE": 147124.0, "LATITUDE": 51.2170687, "LONGITUDE": -0.7912868 }, "geometry": { "type": "Point", "coordinates": [ 484515.0, 147124.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122616, "UPRN": 100062162260, "X_COORDINATE": 484517.98, "Y_COORDINATE": 147073.75, "LATITUDE": 51.2166165, "LONGITUDE": -0.7912559 }, "geometry": { "type": "Point", "coordinates": [ 484517.979999999981374, 147073.75 ] } }, -{ "type": "Feature", "properties": { "FID": 32122608, "UPRN": 100062162252, "X_COORDINATE": 484522.81, "Y_COORDINATE": 147050.53, "LATITUDE": 51.2164071, "LONGITUDE": -0.7911923 }, "geometry": { "type": "Point", "coordinates": [ 484522.81, 147050.53 ] } }, -{ "type": "Feature", "properties": { "FID": 32122620, "UPRN": 100062162264, "X_COORDINATE": 484522.91, "Y_COORDINATE": 147051.33, "LATITUDE": 51.2164143, "LONGITUDE": -0.7911906 }, "geometry": { "type": "Point", "coordinates": [ 484522.909999999974389, 147051.329999999987194 ] } }, -{ "type": "Feature", "properties": { "FID": 32122605, "UPRN": 100062162249, "X_COORDINATE": 484525.77, "Y_COORDINATE": 147065.31, "LATITUDE": 51.2165395, "LONGITUDE": -0.7911464 }, "geometry": { "type": "Point", "coordinates": [ 484525.770000000018626, 147065.31 ] } }, -{ "type": "Feature", "properties": { "FID": 32122617, "UPRN": 100062162261, "X_COORDINATE": 484526.6, "Y_COORDINATE": 147063.4, "LATITUDE": 51.2165222, "LONGITUDE": -0.791135 }, "geometry": { "type": "Point", "coordinates": [ 484526.599999999976717, 147063.4 ] } }, -{ "type": "Feature", "properties": { "FID": 15447281, "UPRN": 10013893624, "X_COORDINATE": 484528.0, "Y_COORDINATE": 147135.0, "LATITUDE": 51.2171657, "LONGITUDE": -0.7910981 }, "geometry": { "type": "Point", "coordinates": [ 484528.0, 147135.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122607, "UPRN": 100062162251, "X_COORDINATE": 484528.04, "Y_COORDINATE": 147053.86, "LATITUDE": 51.2164362, "LONGITUDE": -0.7911166 }, "geometry": { "type": "Point", "coordinates": [ 484528.039999999979045, 147053.85999999998603 ] } }, -{ "type": "Feature", "properties": { "FID": 32122619, "UPRN": 100062162263, "X_COORDINATE": 484528.08, "Y_COORDINATE": 147055.27, "LATITUDE": 51.2164489, "LONGITUDE": -0.7911157 }, "geometry": { "type": "Point", "coordinates": [ 484528.080000000016298, 147055.269999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 32122606, "UPRN": 100062162250, "X_COORDINATE": 484531.68, "Y_COORDINATE": 147057.92, "LATITUDE": 51.2164722, "LONGITUDE": -0.7910636 }, "geometry": { "type": "Point", "coordinates": [ 484531.68, 147057.920000000012806 ] } }, -{ "type": "Feature", "properties": { "FID": 32122618, "UPRN": 100062162262, "X_COORDINATE": 484532.51, "Y_COORDINATE": 147058.97, "LATITUDE": 51.2164815, "LONGITUDE": -0.7910514 }, "geometry": { "type": "Point", "coordinates": [ 484532.51, 147058.97 ] } }, -{ "type": "Feature", "properties": { "FID": 20265992, "UPRN": 10091107301, "X_COORDINATE": 484542.0, "Y_COORDINATE": 147148.0, "LATITUDE": 51.2172805, "LONGITUDE": -0.7908946 }, "geometry": { "type": "Point", "coordinates": [ 484542.0, 147148.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265991, "UPRN": 10091107300, "X_COORDINATE": 484542.0, "Y_COORDINATE": 147148.0, "LATITUDE": 51.2172805, "LONGITUDE": -0.7908946 }, "geometry": { "type": "Point", "coordinates": [ 484542.0, 147148.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909934, "UPRN": 10094578350, "X_COORDINATE": 484542.0, "Y_COORDINATE": 147148.0, "LATITUDE": 51.2172805, "LONGITUDE": -0.7908946 }, "geometry": { "type": "Point", "coordinates": [ 484542.0, 147148.0 ] } }, -{ "type": "Feature", "properties": { "FID": 21909933, "UPRN": 10094578349, "X_COORDINATE": 484542.0, "Y_COORDINATE": 147148.0, "LATITUDE": 51.2172805, "LONGITUDE": -0.7908946 }, "geometry": { "type": "Point", "coordinates": [ 484542.0, 147148.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443907, "UPRN": 10013889995, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147100.0, "LATITUDE": 51.2168478, "LONGITUDE": -0.7907914 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147100.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20266017, "UPRN": 10091107326, "X_COORDINATE": 484605.0, "Y_COORDINATE": 147165.0, "LATITUDE": 51.217424, "LONGITUDE": -0.7899888 }, "geometry": { "type": "Point", "coordinates": [ 484605.0, 147165.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446558, "UPRN": 10013892878, "X_COORDINATE": 484625.0, "Y_COORDINATE": 147058.0, "LATITUDE": 51.2164591, "LONGITUDE": -0.7897277 }, "geometry": { "type": "Point", "coordinates": [ 484625.0, 147058.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122625, "UPRN": 100062162269, "X_COORDINATE": 484507.39, "Y_COORDINATE": 147072.27, "LATITUDE": 51.2166048, "LONGITUDE": -0.7914079 }, "geometry": { "type": "Point", "coordinates": [ 484507.39000000001397, 147072.269999999989523 ] } }, -{ "type": "Feature", "properties": { "FID": 32122626, "UPRN": 100062162270, "X_COORDINATE": 484512.56, "Y_COORDINATE": 147075.22, "LATITUDE": 51.2166306, "LONGITUDE": -0.7913332 }, "geometry": { "type": "Point", "coordinates": [ 484512.56, 147075.22 ] } }, -{ "type": "Feature", "properties": { "FID": 32216636, "UPRN": 100062353881, "X_COORDINATE": 484557.0, "Y_COORDINATE": 147163.0, "LATITUDE": 51.2174131, "LONGITUDE": -0.7906764 }, "geometry": { "type": "Point", "coordinates": [ 484557.0, 147163.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216865, "UPRN": 100062354198, "X_COORDINATE": 484511.0, "Y_COORDINATE": 147119.0, "LATITUDE": 51.2170244, "LONGITUDE": -0.7913452 }, "geometry": { "type": "Point", "coordinates": [ 484511.0, 147119.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216869, "UPRN": 100062354203, "X_COORDINATE": 484514.0, "Y_COORDINATE": 147174.0, "LATITUDE": 51.2175184, "LONGITUDE": -0.7912893 }, "geometry": { "type": "Point", "coordinates": [ 484514.0, 147174.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216870, "UPRN": 100062354204, "X_COORDINATE": 484552.0, "Y_COORDINATE": 147157.0, "LATITUDE": 51.2173599, "LONGITUDE": -0.7907494 }, "geometry": { "type": "Point", "coordinates": [ 484552.0, 147157.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216871, "UPRN": 100062354205, "X_COORDINATE": 484523.0, "Y_COORDINATE": 147169.0, "LATITUDE": 51.2174721, "LONGITUDE": -0.7911617 }, "geometry": { "type": "Point", "coordinates": [ 484523.0, 147169.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216872, "UPRN": 100062354206, "X_COORDINATE": 484515.0, "Y_COORDINATE": 147168.0, "LATITUDE": 51.2174643, "LONGITUDE": -0.7912764 }, "geometry": { "type": "Point", "coordinates": [ 484515.0, 147168.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216873, "UPRN": 100062354207, "X_COORDINATE": 484542.0, "Y_COORDINATE": 147148.0, "LATITUDE": 51.2172805, "LONGITUDE": -0.7908946 }, "geometry": { "type": "Point", "coordinates": [ 484542.0, 147148.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216874, "UPRN": 100062354208, "X_COORDINATE": 484537.0, "Y_COORDINATE": 147143.0, "LATITUDE": 51.2172363, "LONGITUDE": -0.7909674 }, "geometry": { "type": "Point", "coordinates": [ 484537.0, 147143.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216875, "UPRN": 100062354209, "X_COORDINATE": 484527.0, "Y_COORDINATE": 147134.0, "LATITUDE": 51.2171569, "LONGITUDE": -0.7911127 }, "geometry": { "type": "Point", "coordinates": [ 484527.0, 147134.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216876, "UPRN": 100062354210, "X_COORDINATE": 484521.0, "Y_COORDINATE": 147129.0, "LATITUDE": 51.2171128, "LONGITUDE": -0.7911997 }, "geometry": { "type": "Point", "coordinates": [ 484521.0, 147129.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216877, "UPRN": 100062354211, "X_COORDINATE": 484515.0, "Y_COORDINATE": 147124.0, "LATITUDE": 51.2170687, "LONGITUDE": -0.7912868 }, "geometry": { "type": "Point", "coordinates": [ 484515.0, 147124.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217113, "UPRN": 100062354582, "X_COORDINATE": 484520.0, "Y_COORDINATE": 147176.0, "LATITUDE": 51.2175355, "LONGITUDE": -0.791203 }, "geometry": { "type": "Point", "coordinates": [ 484520.0, 147176.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217161, "UPRN": 100062354669, "X_COORDINATE": 484506.0, "Y_COORDINATE": 147173.0, "LATITUDE": 51.2175106, "LONGITUDE": -0.7914041 }, "geometry": { "type": "Point", "coordinates": [ 484506.0, 147173.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399502, "UPRN": 100062699273, "X_COORDINATE": 484531.0, "Y_COORDINATE": 147138.0, "LATITUDE": 51.2171922, "LONGITUDE": -0.7910545 }, "geometry": { "type": "Point", "coordinates": [ 484531.0, 147138.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729282, "UPRN": 100061608719, "X_COORDINATE": 484583.0, "Y_COORDINATE": 147529.0, "LATITUDE": 51.2206997, "LONGITUDE": -0.7902181 }, "geometry": { "type": "Point", "coordinates": [ 484583.0, 147529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729281, "UPRN": 100061608718, "X_COORDINATE": 484585.0, "Y_COORDINATE": 147525.0, "LATITUDE": 51.2206634, "LONGITUDE": -0.7901904 }, "geometry": { "type": "Point", "coordinates": [ 484585.0, 147525.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729280, "UPRN": 100061608717, "X_COORDINATE": 484588.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2206, "LONGITUDE": -0.7901491 }, "geometry": { "type": "Point", "coordinates": [ 484588.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729279, "UPRN": 100061608716, "X_COORDINATE": 484590.0, "Y_COORDINATE": 147514.0, "LATITUDE": 51.2205638, "LONGITUDE": -0.7901214 }, "geometry": { "type": "Point", "coordinates": [ 484590.0, 147514.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729278, "UPRN": 100061608715, "X_COORDINATE": 484593.0, "Y_COORDINATE": 147507.0, "LATITUDE": 51.2205004, "LONGITUDE": -0.7900801 }, "geometry": { "type": "Point", "coordinates": [ 484593.0, 147507.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729277, "UPRN": 100061608714, "X_COORDINATE": 484595.0, "Y_COORDINATE": 147503.0, "LATITUDE": 51.2204642, "LONGITUDE": -0.7900524 }, "geometry": { "type": "Point", "coordinates": [ 484595.0, 147503.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399515, "UPRN": 100062699292, "X_COORDINATE": 484596.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189267, "LONGITUDE": -0.7900783 }, "geometry": { "type": "Point", "coordinates": [ 484596.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729276, "UPRN": 100061608713, "X_COORDINATE": 484597.0, "Y_COORDINATE": 147495.0, "LATITUDE": 51.2203919, "LONGITUDE": -0.7900256 }, "geometry": { "type": "Point", "coordinates": [ 484597.0, 147495.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399514, "UPRN": 100062699291, "X_COORDINATE": 484602.0, "Y_COORDINATE": 147333.0, "LATITUDE": 51.2189348, "LONGITUDE": -0.7899922 }, "geometry": { "type": "Point", "coordinates": [ 484602.0, 147333.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399510, "UPRN": 100062699285, "X_COORDINATE": 484606.0, "Y_COORDINATE": 147335.0, "LATITUDE": 51.2189522, "LONGITUDE": -0.7899345 }, "geometry": { "type": "Point", "coordinates": [ 484606.0, 147335.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729262, "UPRN": 100061608699, "X_COORDINATE": 484629.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.219704, "LONGITUDE": -0.7895854 }, "geometry": { "type": "Point", "coordinates": [ 484629.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729261, "UPRN": 100061608698, "X_COORDINATE": 484631.0, "Y_COORDINATE": 147413.0, "LATITUDE": 51.2196497, "LONGITUDE": -0.7895582 }, "geometry": { "type": "Point", "coordinates": [ 484631.0, 147413.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729260, "UPRN": 100061608697, "X_COORDINATE": 484632.0, "Y_COORDINATE": 147409.0, "LATITUDE": 51.2196136, "LONGITUDE": -0.7895448 }, "geometry": { "type": "Point", "coordinates": [ 484632.0, 147409.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729259, "UPRN": 100061608696, "X_COORDINATE": 484634.0, "Y_COORDINATE": 147405.0, "LATITUDE": 51.2195774, "LONGITUDE": -0.7895172 }, "geometry": { "type": "Point", "coordinates": [ 484634.0, 147405.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729258, "UPRN": 100061608695, "X_COORDINATE": 484636.0, "Y_COORDINATE": 147401.0, "LATITUDE": 51.2195411, "LONGITUDE": -0.7894895 }, "geometry": { "type": "Point", "coordinates": [ 484636.0, 147401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729257, "UPRN": 100061608694, "X_COORDINATE": 484639.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194867, "LONGITUDE": -0.7894479 }, "geometry": { "type": "Point", "coordinates": [ 484639.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729256, "UPRN": 100061608693, "X_COORDINATE": 484640.0, "Y_COORDINATE": 147392.0, "LATITUDE": 51.2194596, "LONGITUDE": -0.7894343 }, "geometry": { "type": "Point", "coordinates": [ 484640.0, 147392.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729255, "UPRN": 100061608692, "X_COORDINATE": 484642.0, "Y_COORDINATE": 147388.0, "LATITUDE": 51.2194233, "LONGITUDE": -0.7894066 }, "geometry": { "type": "Point", "coordinates": [ 484642.0, 147388.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729254, "UPRN": 100061608691, "X_COORDINATE": 484643.0, "Y_COORDINATE": 147385.0, "LATITUDE": 51.2193962, "LONGITUDE": -0.789393 }, "geometry": { "type": "Point", "coordinates": [ 484643.0, 147385.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729283, "UPRN": 100061608720, "X_COORDINATE": 484643.0, "Y_COORDINATE": 147362.0, "LATITUDE": 51.2191894, "LONGITUDE": -0.7893984 }, "geometry": { "type": "Point", "coordinates": [ 484643.0, 147362.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729253, "UPRN": 100061608690, "X_COORDINATE": 484644.0, "Y_COORDINATE": 147382.0, "LATITUDE": 51.2193691, "LONGITUDE": -0.7893794 }, "geometry": { "type": "Point", "coordinates": [ 484644.0, 147382.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729251, "UPRN": 100061608688, "X_COORDINATE": 484645.0, "Y_COORDINATE": 147378.0, "LATITUDE": 51.219333, "LONGITUDE": -0.789366 }, "geometry": { "type": "Point", "coordinates": [ 484645.0, 147378.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729249, "UPRN": 100061608686, "X_COORDINATE": 484647.0, "Y_COORDINATE": 147374.0, "LATITUDE": 51.2192967, "LONGITUDE": -0.7893384 }, "geometry": { "type": "Point", "coordinates": [ 484647.0, 147374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729247, "UPRN": 100061608684, "X_COORDINATE": 484649.0, "Y_COORDINATE": 147370.0, "LATITUDE": 51.2192605, "LONGITUDE": -0.7893107 }, "geometry": { "type": "Point", "coordinates": [ 484649.0, 147370.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729250, "UPRN": 100061608687, "X_COORDINATE": 484660.0, "Y_COORDINATE": 147423.0, "LATITUDE": 51.2197353, "LONGITUDE": -0.7891407 }, "geometry": { "type": "Point", "coordinates": [ 484660.0, 147423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729248, "UPRN": 100061608685, "X_COORDINATE": 484662.0, "Y_COORDINATE": 147418.0, "LATITUDE": 51.2196901, "LONGITUDE": -0.7891133 }, "geometry": { "type": "Point", "coordinates": [ 484662.0, 147418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399517, "UPRN": 100062699295, "X_COORDINATE": 484574.0, "Y_COORDINATE": 147328.0, "LATITUDE": 51.218894, "LONGITUDE": -0.7903942 }, "geometry": { "type": "Point", "coordinates": [ 484574.0, 147328.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399526, "UPRN": 100062699304, "X_COORDINATE": 484611.0, "Y_COORDINATE": 147337.0, "LATITUDE": 51.2189694, "LONGITUDE": -0.7898624 }, "geometry": { "type": "Point", "coordinates": [ 484611.0, 147337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217103, "UPRN": 100062354568, "X_COORDINATE": 484593.0, "Y_COORDINATE": 147241.0, "LATITUDE": 51.218109, "LONGITUDE": -0.7901427 }, "geometry": { "type": "Point", "coordinates": [ 484593.0, 147241.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722813, "UPRN": 100061601716, "X_COORDINATE": 484733.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179714, "LONGITUDE": -0.7881417 }, "geometry": { "type": "Point", "coordinates": [ 484733.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722812, "UPRN": 100061601715, "X_COORDINATE": 484738.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179707, "LONGITUDE": -0.7880701 }, "geometry": { "type": "Point", "coordinates": [ 484738.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722818, "UPRN": 100061601721, "X_COORDINATE": 484740.0, "Y_COORDINATE": 147255.0, "LATITUDE": 51.2182131, "LONGITUDE": -0.7880351 }, "geometry": { "type": "Point", "coordinates": [ 484740.0, 147255.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722816, "UPRN": 100061601719, "X_COORDINATE": 484740.0, "Y_COORDINATE": 147255.0, "LATITUDE": 51.2182131, "LONGITUDE": -0.7880351 }, "geometry": { "type": "Point", "coordinates": [ 484740.0, 147255.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722814, "UPRN": 100061601717, "X_COORDINATE": 484740.0, "Y_COORDINATE": 147255.0, "LATITUDE": 51.2182131, "LONGITUDE": -0.7880351 }, "geometry": { "type": "Point", "coordinates": [ 484740.0, 147255.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722815, "UPRN": 100061601718, "X_COORDINATE": 484740.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.218294, "LONGITUDE": -0.788033 }, "geometry": { "type": "Point", "coordinates": [ 484740.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722817, "UPRN": 100061601720, "X_COORDINATE": 484740.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.218294, "LONGITUDE": -0.788033 }, "geometry": { "type": "Point", "coordinates": [ 484740.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722819, "UPRN": 100061601722, "X_COORDINATE": 484740.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.218294, "LONGITUDE": -0.788033 }, "geometry": { "type": "Point", "coordinates": [ 484740.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722811, "UPRN": 100061601714, "X_COORDINATE": 484743.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179699, "LONGITUDE": -0.7879985 }, "geometry": { "type": "Point", "coordinates": [ 484743.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722810, "UPRN": 100061601713, "X_COORDINATE": 484748.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179692, "LONGITUDE": -0.7879269 }, "geometry": { "type": "Point", "coordinates": [ 484748.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722809, "UPRN": 100061601712, "X_COORDINATE": 484755.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179682, "LONGITUDE": -0.7878267 }, "geometry": { "type": "Point", "coordinates": [ 484755.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722808, "UPRN": 100061601711, "X_COORDINATE": 484761.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179673, "LONGITUDE": -0.7877409 }, "geometry": { "type": "Point", "coordinates": [ 484761.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722807, "UPRN": 100061601710, "X_COORDINATE": 484766.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179665, "LONGITUDE": -0.7876693 }, "geometry": { "type": "Point", "coordinates": [ 484766.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722800, "UPRN": 100061601703, "X_COORDINATE": 484768.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.218218, "LONGITUDE": -0.787634 }, "geometry": { "type": "Point", "coordinates": [ 484768.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722806, "UPRN": 100061601709, "X_COORDINATE": 484773.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179655, "LONGITUDE": -0.7875691 }, "geometry": { "type": "Point", "coordinates": [ 484773.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722801, "UPRN": 100061601704, "X_COORDINATE": 484773.0, "Y_COORDINATE": 147256.0, "LATITUDE": 51.2182172, "LONGITUDE": -0.7875625 }, "geometry": { "type": "Point", "coordinates": [ 484773.0, 147256.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722805, "UPRN": 100061601708, "X_COORDINATE": 484778.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.2179648, "LONGITUDE": -0.7874975 }, "geometry": { "type": "Point", "coordinates": [ 484778.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722802, "UPRN": 100061601705, "X_COORDINATE": 484778.0, "Y_COORDINATE": 147257.0, "LATITUDE": 51.2182255, "LONGITUDE": -0.7874907 }, "geometry": { "type": "Point", "coordinates": [ 484778.0, 147257.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722804, "UPRN": 100061601707, "X_COORDINATE": 484783.0, "Y_COORDINATE": 147228.0, "LATITUDE": 51.217964, "LONGITUDE": -0.7874259 }, "geometry": { "type": "Point", "coordinates": [ 484783.0, 147228.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722803, "UPRN": 100061601706, "X_COORDINATE": 484783.0, "Y_COORDINATE": 147257.0, "LATITUDE": 51.2182247, "LONGITUDE": -0.7874191 }, "geometry": { "type": "Point", "coordinates": [ 484783.0, 147257.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217104, "UPRN": 100062354569, "X_COORDINATE": 484537.0, "Y_COORDINATE": 147265.0, "LATITUDE": 51.2183331, "LONGITUDE": -0.7909387 }, "geometry": { "type": "Point", "coordinates": [ 484537.0, 147265.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217105, "UPRN": 100062354571, "X_COORDINATE": 484574.0, "Y_COORDINATE": 147276.0, "LATITUDE": 51.2184265, "LONGITUDE": -0.7904064 }, "geometry": { "type": "Point", "coordinates": [ 484574.0, 147276.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217114, "UPRN": 100062354585, "X_COORDINATE": 484523.0, "Y_COORDINATE": 147234.0, "LATITUDE": 51.2180565, "LONGITUDE": -0.7911464 }, "geometry": { "type": "Point", "coordinates": [ 484523.0, 147234.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367186, "UPRN": 100062609416, "X_COORDINATE": 484543.0, "Y_COORDINATE": 147239.0, "LATITUDE": 51.2180985, "LONGITUDE": -0.7908589 }, "geometry": { "type": "Point", "coordinates": [ 484543.0, 147239.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367187, "UPRN": 100062609417, "X_COORDINATE": 484543.0, "Y_COORDINATE": 147239.0, "LATITUDE": 51.2180985, "LONGITUDE": -0.7908589 }, "geometry": { "type": "Point", "coordinates": [ 484543.0, 147239.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399519, "UPRN": 100062699297, "X_COORDINATE": 484553.0, "Y_COORDINATE": 147246.0, "LATITUDE": 51.2181599, "LONGITUDE": -0.7907141 }, "geometry": { "type": "Point", "coordinates": [ 484553.0, 147246.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725358, "UPRN": 100061604528, "X_COORDINATE": 484799.0, "Y_COORDINATE": 147261.0, "LATITUDE": 51.2182583, "LONGITUDE": -0.7871891 }, "geometry": { "type": "Point", "coordinates": [ 484799.0, 147261.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725359, "UPRN": 100061604529, "X_COORDINATE": 484805.0, "Y_COORDINATE": 147262.0, "LATITUDE": 51.2182664, "LONGITUDE": -0.787103 }, "geometry": { "type": "Point", "coordinates": [ 484805.0, 147262.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725361, "UPRN": 100061604531, "X_COORDINATE": 484815.0, "Y_COORDINATE": 147263.0, "LATITUDE": 51.2182739, "LONGITUDE": -0.7869596 }, "geometry": { "type": "Point", "coordinates": [ 484815.0, 147263.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725360, "UPRN": 100061604530, "X_COORDINATE": 484810.0, "Y_COORDINATE": 147263.0, "LATITUDE": 51.2182747, "LONGITUDE": -0.7870312 }, "geometry": { "type": "Point", "coordinates": [ 484810.0, 147263.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725362, "UPRN": 100061604532, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147264.0, "LATITUDE": 51.2182817, "LONGITUDE": -0.7868448 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147264.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722824, "UPRN": 100061601727, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147270.0, "LATITUDE": 51.2183481, "LONGITUDE": -0.7880459 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147270.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722822, "UPRN": 100061601725, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147270.0, "LATITUDE": 51.2183481, "LONGITUDE": -0.7880459 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147270.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722820, "UPRN": 100061601723, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147270.0, "LATITUDE": 51.2183481, "LONGITUDE": -0.7880459 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147270.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722799, "UPRN": 100061601702, "X_COORDINATE": 484769.0, "Y_COORDINATE": 147273.0, "LATITUDE": 51.2183706, "LONGITUDE": -0.7876157 }, "geometry": { "type": "Point", "coordinates": [ 484769.0, 147273.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722798, "UPRN": 100061601701, "X_COORDINATE": 484769.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184156, "LONGITUDE": -0.7876145 }, "geometry": { "type": "Point", "coordinates": [ 484769.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722825, "UPRN": 100061601728, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147280.0, "LATITUDE": 51.218438, "LONGITUDE": -0.7880435 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722823, "UPRN": 100061601726, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147280.0, "LATITUDE": 51.218438, "LONGITUDE": -0.7880435 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722821, "UPRN": 100061601724, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147280.0, "LATITUDE": 51.218438, "LONGITUDE": -0.7880435 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722797, "UPRN": 100061601700, "X_COORDINATE": 484769.0, "Y_COORDINATE": 147283.0, "LATITUDE": 51.2184605, "LONGITUDE": -0.7876134 }, "geometry": { "type": "Point", "coordinates": [ 484769.0, 147283.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447403, "UPRN": 10013893749, "X_COORDINATE": 484732.0, "Y_COORDINATE": 147286.0, "LATITUDE": 51.218493, "LONGITUDE": -0.7881423 }, "geometry": { "type": "Point", "coordinates": [ 484732.0, 147286.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722796, "UPRN": 100061601699, "X_COORDINATE": 484769.0, "Y_COORDINATE": 147288.0, "LATITUDE": 51.2185055, "LONGITUDE": -0.7876122 }, "geometry": { "type": "Point", "coordinates": [ 484769.0, 147288.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722826, "UPRN": 100061601729, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2185549, "LONGITUDE": -0.7880405 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722828, "UPRN": 100061601731, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2185549, "LONGITUDE": -0.7880405 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722830, "UPRN": 100061601733, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2185549, "LONGITUDE": -0.7880405 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722795, "UPRN": 100061601698, "X_COORDINATE": 484767.0, "Y_COORDINATE": 147295.0, "LATITUDE": 51.2185687, "LONGITUDE": -0.7876392 }, "geometry": { "type": "Point", "coordinates": [ 484767.0, 147295.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722794, "UPRN": 100061601697, "X_COORDINATE": 484767.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2186137, "LONGITUDE": -0.787638 }, "geometry": { "type": "Point", "coordinates": [ 484767.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722827, "UPRN": 100061601730, "X_COORDINATE": 484738.0, "Y_COORDINATE": 147301.0, "LATITUDE": 51.218627, "LONGITUDE": -0.7880529 }, "geometry": { "type": "Point", "coordinates": [ 484738.0, 147301.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722829, "UPRN": 100061601732, "X_COORDINATE": 484738.0, "Y_COORDINATE": 147301.0, "LATITUDE": 51.218627, "LONGITUDE": -0.7880529 }, "geometry": { "type": "Point", "coordinates": [ 484738.0, 147301.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722831, "UPRN": 100061601734, "X_COORDINATE": 484738.0, "Y_COORDINATE": 147301.0, "LATITUDE": 51.218627, "LONGITUDE": -0.7880529 }, "geometry": { "type": "Point", "coordinates": [ 484738.0, 147301.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722793, "UPRN": 100061601696, "X_COORDINATE": 484767.0, "Y_COORDINATE": 147306.0, "LATITUDE": 51.2186676, "LONGITUDE": -0.7876366 }, "geometry": { "type": "Point", "coordinates": [ 484767.0, 147306.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31722792, "UPRN": 100061601695, "X_COORDINATE": 484767.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187036, "LONGITUDE": -0.7876356 }, "geometry": { "type": "Point", "coordinates": [ 484767.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724490, "UPRN": 100061603612, "X_COORDINATE": 484819.0, "Y_COORDINATE": 147323.0, "LATITUDE": 51.2188127, "LONGITUDE": -0.7868882 }, "geometry": { "type": "Point", "coordinates": [ 484819.0, 147323.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724487, "UPRN": 100061603609, "X_COORDINATE": 484811.0, "Y_COORDINATE": 147322.0, "LATITUDE": 51.2188049, "LONGITUDE": -0.7870029 }, "geometry": { "type": "Point", "coordinates": [ 484811.0, 147322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724489, "UPRN": 100061603611, "X_COORDINATE": 484815.0, "Y_COORDINATE": 147322.0, "LATITUDE": 51.2188043, "LONGITUDE": -0.7869457 }, "geometry": { "type": "Point", "coordinates": [ 484815.0, 147322.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399632, "UPRN": 100062699468, "X_COORDINATE": 484719.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187107, "LONGITUDE": -0.7883227 }, "geometry": { "type": "Point", "coordinates": [ 484719.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217405, "UPRN": 100062355208, "X_COORDINATE": 484799.0, "Y_COORDINATE": 147464.0, "LATITUDE": 51.2200833, "LONGITUDE": -0.7871412 }, "geometry": { "type": "Point", "coordinates": [ 484799.0, 147464.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724486, "UPRN": 100061603608, "X_COORDINATE": 484801.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190671, "LONGITUDE": -0.7871392 }, "geometry": { "type": "Point", "coordinates": [ 484801.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724488, "UPRN": 100061603610, "X_COORDINATE": 484810.0, "Y_COORDINATE": 147353.0, "LATITUDE": 51.2190838, "LONGITUDE": -0.7870099 }, "geometry": { "type": "Point", "coordinates": [ 484810.0, 147353.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448374, "UPRN": 10013894733, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446166, "UPRN": 10013892470, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446165, "UPRN": 10013892469, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446164, "UPRN": 10013892468, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443986, "UPRN": 10013890092, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147396.0, "LATITUDE": 51.2194684, "LONGITUDE": -0.7868137 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367196, "UPRN": 100062609457, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367197, "UPRN": 100062609458, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147397.0, "LATITUDE": 51.2194774, "LONGITUDE": -0.7868134 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147397.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367198, "UPRN": 100062609459, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367199, "UPRN": 100062609460, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446740, "UPRN": 10013893078, "X_COORDINATE": 484837.0, "Y_COORDINATE": 147358.0, "LATITUDE": 51.2191247, "LONGITUDE": -0.7866222 }, "geometry": { "type": "Point", "coordinates": [ 484837.0, 147358.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217403, "UPRN": 100062355206, "X_COORDINATE": 484843.0, "Y_COORDINATE": 147458.0, "LATITUDE": 51.2200228, "LONGITUDE": -0.7865127 }, "geometry": { "type": "Point", "coordinates": [ 484843.0, 147458.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367200, "UPRN": 100062609461, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367201, "UPRN": 100062609462, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367202, "UPRN": 100062609463, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2194594, "LONGITUDE": -0.7868139 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725366, "UPRN": 100061604536, "X_COORDINATE": 484845.0, "Y_COORDINATE": 147268.0, "LATITUDE": 51.2183144, "LONGITUDE": -0.786529 }, "geometry": { "type": "Point", "coordinates": [ 484845.0, 147268.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725365, "UPRN": 100061604535, "X_COORDINATE": 484840.0, "Y_COORDINATE": 147267.0, "LATITUDE": 51.2183062, "LONGITUDE": -0.7866008 }, "geometry": { "type": "Point", "coordinates": [ 484840.0, 147267.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725364, "UPRN": 100061604534, "X_COORDINATE": 484834.0, "Y_COORDINATE": 147266.0, "LATITUDE": 51.2182981, "LONGITUDE": -0.7866869 }, "geometry": { "type": "Point", "coordinates": [ 484834.0, 147266.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31725363, "UPRN": 100061604533, "X_COORDINATE": 484829.0, "Y_COORDINATE": 147265.0, "LATITUDE": 51.2182898, "LONGITUDE": -0.7867587 }, "geometry": { "type": "Point", "coordinates": [ 484829.0, 147265.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443144, "UPRN": 10013889112, "X_COORDINATE": 484824.0, "Y_COORDINATE": 147199.0, "LATITUDE": 51.2176972, "LONGITUDE": -0.7868459 }, "geometry": { "type": "Point", "coordinates": [ 484824.0, 147199.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448031, "UPRN": 10013894390, "X_COORDINATE": 484967.0, "Y_COORDINATE": 147199.0, "LATITUDE": 51.217676, "LONGITUDE": -0.7847988 }, "geometry": { "type": "Point", "coordinates": [ 484967.0, 147199.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448032, "UPRN": 10013894391, "X_COORDINATE": 484957.0, "Y_COORDINATE": 147196.0, "LATITUDE": 51.2176505, "LONGITUDE": -0.7849427 }, "geometry": { "type": "Point", "coordinates": [ 484957.0, 147196.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443696, "UPRN": 10013889755, "X_COORDINATE": 484917.0, "Y_COORDINATE": 147189.0, "LATITUDE": 51.2175935, "LONGITUDE": -0.7855169 }, "geometry": { "type": "Point", "coordinates": [ 484917.0, 147189.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443741, "UPRN": 10013889817, "X_COORDINATE": 484987.0, "Y_COORDINATE": 147205.0, "LATITUDE": 51.2177269, "LONGITUDE": -0.7845111 }, "geometry": { "type": "Point", "coordinates": [ 484987.0, 147205.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367207, "UPRN": 100062609480, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147231.0, "LATITUDE": 51.217985, "LONGITUDE": -0.7868526 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147231.0 ] } }, -{ "type": "Feature", "properties": { "FID": 20265638, "UPRN": 10091106943, "X_COORDINATE": 484846.0, "Y_COORDINATE": 147161.0, "LATITUDE": 51.2173523, "LONGITUDE": -0.7865399 }, "geometry": { "type": "Point", "coordinates": [ 484846.0, 147161.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448033, "UPRN": 10013894392, "X_COORDINATE": 484895.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.217435, "LONGITUDE": -0.7858361 }, "geometry": { "type": "Point", "coordinates": [ 484895.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217512, "UPRN": 100062355413, "X_COORDINATE": 484894.0, "Y_COORDINATE": 147171.0, "LATITUDE": 51.2174351, "LONGITUDE": -0.7858504 }, "geometry": { "type": "Point", "coordinates": [ 484894.0, 147171.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217510, "UPRN": 100062355409, "X_COORDINATE": 485031.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2185115, "LONGITUDE": -0.7838605 }, "geometry": { "type": "Point", "coordinates": [ 485031.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444903, "UPRN": 10013891129, "X_COORDINATE": 484991.0, "Y_COORDINATE": 147380.0, "LATITUDE": 51.2192996, "LONGITUDE": -0.7844125 }, "geometry": { "type": "Point", "coordinates": [ 484991.0, 147380.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444905, "UPRN": 10013891131, "X_COORDINATE": 484991.0, "Y_COORDINATE": 147380.0, "LATITUDE": 51.2192996, "LONGITUDE": -0.7844125 }, "geometry": { "type": "Point", "coordinates": [ 484991.0, 147380.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444907, "UPRN": 10013891133, "X_COORDINATE": 484991.0, "Y_COORDINATE": 147380.0, "LATITUDE": 51.2192996, "LONGITUDE": -0.7844125 }, "geometry": { "type": "Point", "coordinates": [ 484991.0, 147380.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444904, "UPRN": 10013891130, "X_COORDINATE": 484999.0, "Y_COORDINATE": 147384.0, "LATITUDE": 51.2193344, "LONGITUDE": -0.784297 }, "geometry": { "type": "Point", "coordinates": [ 484999.0, 147384.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444906, "UPRN": 10013891132, "X_COORDINATE": 484999.0, "Y_COORDINATE": 147384.0, "LATITUDE": 51.2193344, "LONGITUDE": -0.784297 }, "geometry": { "type": "Point", "coordinates": [ 484999.0, 147384.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444908, "UPRN": 10013891134, "X_COORDINATE": 484999.0, "Y_COORDINATE": 147384.0, "LATITUDE": 51.2193344, "LONGITUDE": -0.784297 }, "geometry": { "type": "Point", "coordinates": [ 484999.0, 147384.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444909, "UPRN": 10013891135, "X_COORDINATE": 485009.0, "Y_COORDINATE": 147389.0, "LATITUDE": 51.2193778, "LONGITUDE": -0.7841527 }, "geometry": { "type": "Point", "coordinates": [ 485009.0, 147389.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444916, "UPRN": 10013891142, "X_COORDINATE": 484988.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.2194799, "LONGITUDE": -0.7844507 }, "geometry": { "type": "Point", "coordinates": [ 484988.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444913, "UPRN": 10013891139, "X_COORDINATE": 484988.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.2194799, "LONGITUDE": -0.7844507 }, "geometry": { "type": "Point", "coordinates": [ 484988.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444921, "UPRN": 10013891147, "X_COORDINATE": 484999.0, "Y_COORDINATE": 147407.0, "LATITUDE": 51.2195412, "LONGITUDE": -0.7842916 }, "geometry": { "type": "Point", "coordinates": [ 484999.0, 147407.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444925, "UPRN": 10013891151, "X_COORDINATE": 484999.0, "Y_COORDINATE": 147407.0, "LATITUDE": 51.2195412, "LONGITUDE": -0.7842916 }, "geometry": { "type": "Point", "coordinates": [ 484999.0, 147407.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444897, "UPRN": 10013891123, "X_COORDINATE": 485039.0, "Y_COORDINATE": 147407.0, "LATITUDE": 51.2195352, "LONGITUDE": -0.783719 }, "geometry": { "type": "Point", "coordinates": [ 485039.0, 147407.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444910, "UPRN": 10013891136, "X_COORDINATE": 485005.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195672, "LONGITUDE": -0.784205 }, "geometry": { "type": "Point", "coordinates": [ 485005.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444920, "UPRN": 10013891146, "X_COORDINATE": 485005.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195672, "LONGITUDE": -0.784205 }, "geometry": { "type": "Point", "coordinates": [ 485005.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444924, "UPRN": 10013891150, "X_COORDINATE": 485005.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195672, "LONGITUDE": -0.784205 }, "geometry": { "type": "Point", "coordinates": [ 485005.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444898, "UPRN": 10013891124, "X_COORDINATE": 485036.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195626, "LONGITUDE": -0.7837612 }, "geometry": { "type": "Point", "coordinates": [ 485036.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444899, "UPRN": 10013891125, "X_COORDINATE": 485034.0, "Y_COORDINATE": 147414.0, "LATITUDE": 51.2195989, "LONGITUDE": -0.7837889 }, "geometry": { "type": "Point", "coordinates": [ 485034.0, 147414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444919, "UPRN": 10013891145, "X_COORDINATE": 485003.0, "Y_COORDINATE": 147417.0, "LATITUDE": 51.2196305, "LONGITUDE": -0.7842319 }, "geometry": { "type": "Point", "coordinates": [ 485003.0, 147417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444923, "UPRN": 10013891149, "X_COORDINATE": 485003.0, "Y_COORDINATE": 147417.0, "LATITUDE": 51.2196305, "LONGITUDE": -0.7842319 }, "geometry": { "type": "Point", "coordinates": [ 485003.0, 147417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444927, "UPRN": 10013891153, "X_COORDINATE": 485003.0, "Y_COORDINATE": 147417.0, "LATITUDE": 51.2196305, "LONGITUDE": -0.7842319 }, "geometry": { "type": "Point", "coordinates": [ 485003.0, 147417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444900, "UPRN": 10013891126, "X_COORDINATE": 485030.0, "Y_COORDINATE": 147418.0, "LATITUDE": 51.2196354, "LONGITUDE": -0.7838452 }, "geometry": { "type": "Point", "coordinates": [ 485030.0, 147418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444901, "UPRN": 10013891127, "X_COORDINATE": 485027.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2196718, "LONGITUDE": -0.7838872 }, "geometry": { "type": "Point", "coordinates": [ 485027.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444902, "UPRN": 10013891128, "X_COORDINATE": 485024.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2197172, "LONGITUDE": -0.783929 }, "geometry": { "type": "Point", "coordinates": [ 485024.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445012, "UPRN": 10013891239, "X_COORDINATE": 485025.0, "Y_COORDINATE": 147432.0, "LATITUDE": 51.219762, "LONGITUDE": -0.7839135 }, "geometry": { "type": "Point", "coordinates": [ 485025.0, 147432.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399633, "UPRN": 100062699469, "X_COORDINATE": 485079.0, "Y_COORDINATE": 147244.0, "LATITUDE": 51.2180639, "LONGITUDE": -0.7831849 }, "geometry": { "type": "Point", "coordinates": [ 485079.0, 147244.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217392, "UPRN": 100062355186, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2204888, "LONGITUDE": -0.7846246 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447325, "UPRN": 10013893669, "X_COORDINATE": 484971.0, "Y_COORDINATE": 147529.0, "LATITUDE": 51.2206421, "LONGITUDE": -0.7846635 }, "geometry": { "type": "Point", "coordinates": [ 484971.0, 147529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447324, "UPRN": 10013893668, "X_COORDINATE": 484992.0, "Y_COORDINATE": 147542.0, "LATITUDE": 51.2207559, "LONGITUDE": -0.7843598 }, "geometry": { "type": "Point", "coordinates": [ 484992.0, 147542.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217416, "UPRN": 100062355260, "X_COORDINATE": 484966.0, "Y_COORDINATE": 147597.0, "LATITUDE": 51.2212542, "LONGITUDE": -0.784719 }, "geometry": { "type": "Point", "coordinates": [ 484966.0, 147597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217417, "UPRN": 100062355261, "X_COORDINATE": 484968.0, "Y_COORDINATE": 147600.0, "LATITUDE": 51.2212809, "LONGITUDE": -0.7846897 }, "geometry": { "type": "Point", "coordinates": [ 484968.0, 147600.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217418, "UPRN": 100062355262, "X_COORDINATE": 484970.0, "Y_COORDINATE": 147604.0, "LATITUDE": 51.2213165, "LONGITUDE": -0.7846601 }, "geometry": { "type": "Point", "coordinates": [ 484970.0, 147604.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217521, "UPRN": 100062355430, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217522, "UPRN": 100062355431, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217523, "UPRN": 100062355432, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217517, "UPRN": 100062355421, "X_COORDINATE": 484914.0, "Y_COORDINATE": 147757.0, "LATITUDE": 51.2227003, "LONGITUDE": -0.7854257 }, "geometry": { "type": "Point", "coordinates": [ 484914.0, 147757.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217486, "UPRN": 100062355359, "X_COORDINATE": 485030.0, "Y_COORDINATE": 147760.0, "LATITUDE": 51.22271, "LONGITUDE": -0.7837642 }, "geometry": { "type": "Point", "coordinates": [ 485030.0, 147760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446391, "UPRN": 10013892706, "X_COORDINATE": 485030.0, "Y_COORDINATE": 147760.0, "LATITUDE": 51.22271, "LONGITUDE": -0.7837642 }, "geometry": { "type": "Point", "coordinates": [ 485030.0, 147760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446392, "UPRN": 10013892707, "X_COORDINATE": 485030.0, "Y_COORDINATE": 147760.0, "LATITUDE": 51.22271, "LONGITUDE": -0.7837642 }, "geometry": { "type": "Point", "coordinates": [ 485030.0, 147760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728270, "UPRN": 100061607555, "X_COORDINATE": 485030.0, "Y_COORDINATE": 147760.0, "LATITUDE": 51.22271, "LONGITUDE": -0.7837642 }, "geometry": { "type": "Point", "coordinates": [ 485030.0, 147760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217407, "UPRN": 100062355211, "X_COORDINATE": 485030.0, "Y_COORDINATE": 147760.0, "LATITUDE": 51.22271, "LONGITUDE": -0.7837642 }, "geometry": { "type": "Point", "coordinates": [ 485030.0, 147760.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217524, "UPRN": 100062355433, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217525, "UPRN": 100062355434, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399646, "UPRN": 100062699490, "X_COORDINATE": 484966.0, "Y_COORDINATE": 147597.0, "LATITUDE": 51.2212542, "LONGITUDE": -0.784719 }, "geometry": { "type": "Point", "coordinates": [ 484966.0, 147597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399950, "UPRN": 100062700052, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217516, "UPRN": 100062355420, "X_COORDINATE": 484850.0, "Y_COORDINATE": 147356.0, "LATITUDE": 51.2191048, "LONGITUDE": -0.7864366 }, "geometry": { "type": "Point", "coordinates": [ 484850.0, 147356.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723667, "UPRN": 100061602643, "X_COORDINATE": 484863.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.2194984, "LONGITUDE": -0.7862401 }, "geometry": { "type": "Point", "coordinates": [ 484863.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724491, "UPRN": 100061603613, "X_COORDINATE": 484869.0, "Y_COORDINATE": 147357.0, "LATITUDE": 51.219111, "LONGITUDE": -0.7861644 }, "geometry": { "type": "Point", "coordinates": [ 484869.0, 147357.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723668, "UPRN": 100061602644, "X_COORDINATE": 484874.0, "Y_COORDINATE": 147392.0, "LATITUDE": 51.2194249, "LONGITUDE": -0.7860845 }, "geometry": { "type": "Point", "coordinates": [ 484874.0, 147392.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724494, "UPRN": 100061603616, "X_COORDINATE": 484879.0, "Y_COORDINATE": 147350.0, "LATITUDE": 51.2190466, "LONGITUDE": -0.7860229 }, "geometry": { "type": "Point", "coordinates": [ 484879.0, 147350.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724493, "UPRN": 100061603615, "X_COORDINATE": 484879.0, "Y_COORDINATE": 147350.0, "LATITUDE": 51.2190466, "LONGITUDE": -0.7860229 }, "geometry": { "type": "Point", "coordinates": [ 484879.0, 147350.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724496, "UPRN": 100061603618, "X_COORDINATE": 484884.0, "Y_COORDINATE": 147352.0, "LATITUDE": 51.2190638, "LONGITUDE": -0.7859508 }, "geometry": { "type": "Point", "coordinates": [ 484884.0, 147352.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723669, "UPRN": 100061602645, "X_COORDINATE": 484887.0, "Y_COORDINATE": 147389.0, "LATITUDE": 51.219396, "LONGITUDE": -0.7858991 }, "geometry": { "type": "Point", "coordinates": [ 484887.0, 147389.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724498, "UPRN": 100061603620, "X_COORDINATE": 484889.0, "Y_COORDINATE": 147354.0, "LATITUDE": 51.219081, "LONGITUDE": -0.7858788 }, "geometry": { "type": "Point", "coordinates": [ 484889.0, 147354.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724500, "UPRN": 100061603622, "X_COORDINATE": 484902.0, "Y_COORDINATE": 147354.0, "LATITUDE": 51.2190791, "LONGITUDE": -0.7856927 }, "geometry": { "type": "Point", "coordinates": [ 484902.0, 147354.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724502, "UPRN": 100061603624, "X_COORDINATE": 484906.0, "Y_COORDINATE": 147355.0, "LATITUDE": 51.2190875, "LONGITUDE": -0.7856352 }, "geometry": { "type": "Point", "coordinates": [ 484906.0, 147355.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724504, "UPRN": 100061603626, "X_COORDINATE": 484910.0, "Y_COORDINATE": 147355.0, "LATITUDE": 51.2190869, "LONGITUDE": -0.7855779 }, "geometry": { "type": "Point", "coordinates": [ 484910.0, 147355.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724506, "UPRN": 100061603628, "X_COORDINATE": 484913.0, "Y_COORDINATE": 147356.0, "LATITUDE": 51.2190954, "LONGITUDE": -0.7855347 }, "geometry": { "type": "Point", "coordinates": [ 484913.0, 147356.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724508, "UPRN": 100061603630, "X_COORDINATE": 484917.0, "Y_COORDINATE": 147356.0, "LATITUDE": 51.2190949, "LONGITUDE": -0.7854775 }, "geometry": { "type": "Point", "coordinates": [ 484917.0, 147356.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445664, "UPRN": 10013891957, "X_COORDINATE": 484920.0, "Y_COORDINATE": 147386.0, "LATITUDE": 51.2193641, "LONGITUDE": -0.7854274 }, "geometry": { "type": "Point", "coordinates": [ 484920.0, 147386.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724509, "UPRN": 100061603631, "X_COORDINATE": 484921.0, "Y_COORDINATE": 147357.0, "LATITUDE": 51.2191032, "LONGITUDE": -0.78542 }, "geometry": { "type": "Point", "coordinates": [ 484921.0, 147357.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724510, "UPRN": 100061603632, "X_COORDINATE": 484932.0, "Y_COORDINATE": 147360.0, "LATITUDE": 51.2191286, "LONGITUDE": -0.7852618 }, "geometry": { "type": "Point", "coordinates": [ 484932.0, 147360.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724512, "UPRN": 100061603634, "X_COORDINATE": 484938.0, "Y_COORDINATE": 147361.0, "LATITUDE": 51.2191367, "LONGITUDE": -0.7851757 }, "geometry": { "type": "Point", "coordinates": [ 484938.0, 147361.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443799, "UPRN": 10013889880, "X_COORDINATE": 484960.0, "Y_COORDINATE": 147347.0, "LATITUDE": 51.2190075, "LONGITUDE": -0.7848641 }, "geometry": { "type": "Point", "coordinates": [ 484960.0, 147347.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445436, "UPRN": 10013891726, "X_COORDINATE": 484960.0, "Y_COORDINATE": 147375.0, "LATITUDE": 51.2192593, "LONGITUDE": -0.7848574 }, "geometry": { "type": "Point", "coordinates": [ 484960.0, 147375.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444917, "UPRN": 10013891143, "X_COORDINATE": 484982.0, "Y_COORDINATE": 147394.0, "LATITUDE": 51.2194268, "LONGITUDE": -0.784538 }, "geometry": { "type": "Point", "coordinates": [ 484982.0, 147394.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444914, "UPRN": 10013891140, "X_COORDINATE": 484982.0, "Y_COORDINATE": 147394.0, "LATITUDE": 51.2194268, "LONGITUDE": -0.784538 }, "geometry": { "type": "Point", "coordinates": [ 484982.0, 147394.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444911, "UPRN": 10013891137, "X_COORDINATE": 484982.0, "Y_COORDINATE": 147394.0, "LATITUDE": 51.2194268, "LONGITUDE": -0.784538 }, "geometry": { "type": "Point", "coordinates": [ 484982.0, 147394.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444918, "UPRN": 10013891144, "X_COORDINATE": 484984.0, "Y_COORDINATE": 147406.0, "LATITUDE": 51.2195344, "LONGITUDE": -0.7845065 }, "geometry": { "type": "Point", "coordinates": [ 484984.0, 147406.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444915, "UPRN": 10013891141, "X_COORDINATE": 484984.0, "Y_COORDINATE": 147406.0, "LATITUDE": 51.2195344, "LONGITUDE": -0.7845065 }, "geometry": { "type": "Point", "coordinates": [ 484984.0, 147406.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444912, "UPRN": 10013891138, "X_COORDINATE": 484984.0, "Y_COORDINATE": 147406.0, "LATITUDE": 51.2195344, "LONGITUDE": -0.7845065 }, "geometry": { "type": "Point", "coordinates": [ 484984.0, 147406.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399637, "UPRN": 100062699475, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217402, "UPRN": 100062355205, "X_COORDINATE": 484710.0, "Y_COORDINATE": 147348.0, "LATITUDE": 51.2190537, "LONGITUDE": -0.7884426 }, "geometry": { "type": "Point", "coordinates": [ 484710.0, 147348.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444832, "UPRN": 10013891057, "X_COORDINATE": 484726.0, "Y_COORDINATE": 147403.0, "LATITUDE": 51.2195457, "LONGITUDE": -0.7882006 }, "geometry": { "type": "Point", "coordinates": [ 484726.0, 147403.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444828, "UPRN": 10013891053, "X_COORDINATE": 484726.0, "Y_COORDINATE": 147403.0, "LATITUDE": 51.2195457, "LONGITUDE": -0.7882006 }, "geometry": { "type": "Point", "coordinates": [ 484726.0, 147403.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448648, "UPRN": 10013895014, "X_COORDINATE": 484726.0, "Y_COORDINATE": 147373.0, "LATITUDE": 51.219276, "LONGITUDE": -0.7882077 }, "geometry": { "type": "Point", "coordinates": [ 484726.0, 147373.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444834, "UPRN": 10013891059, "X_COORDINATE": 484728.0, "Y_COORDINATE": 147399.0, "LATITUDE": 51.2195095, "LONGITUDE": -0.7881729 }, "geometry": { "type": "Point", "coordinates": [ 484728.0, 147399.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444833, "UPRN": 10013891058, "X_COORDINATE": 484729.0, "Y_COORDINATE": 147408.0, "LATITUDE": 51.2195902, "LONGITUDE": -0.7881565 }, "geometry": { "type": "Point", "coordinates": [ 484729.0, 147408.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444829, "UPRN": 10013891054, "X_COORDINATE": 484729.0, "Y_COORDINATE": 147408.0, "LATITUDE": 51.2195902, "LONGITUDE": -0.7881565 }, "geometry": { "type": "Point", "coordinates": [ 484729.0, 147408.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217404, "UPRN": 100062355207, "X_COORDINATE": 484729.0, "Y_COORDINATE": 147396.0, "LATITUDE": 51.2194824, "LONGITUDE": -0.7881593 }, "geometry": { "type": "Point", "coordinates": [ 484729.0, 147396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447279, "UPRN": 10013893622, "X_COORDINATE": 484730.0, "Y_COORDINATE": 147397.0, "LATITUDE": 51.2194912, "LONGITUDE": -0.7881448 }, "geometry": { "type": "Point", "coordinates": [ 484730.0, 147397.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444830, "UPRN": 10013891055, "X_COORDINATE": 484730.0, "Y_COORDINATE": 147397.0, "LATITUDE": 51.2194912, "LONGITUDE": -0.7881448 }, "geometry": { "type": "Point", "coordinates": [ 484730.0, 147397.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444826, "UPRN": 10013891051, "X_COORDINATE": 484730.0, "Y_COORDINATE": 147397.0, "LATITUDE": 51.2194912, "LONGITUDE": -0.7881448 }, "geometry": { "type": "Point", "coordinates": [ 484730.0, 147397.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444835, "UPRN": 10013891060, "X_COORDINATE": 484733.0, "Y_COORDINATE": 147401.0, "LATITUDE": 51.2195267, "LONGITUDE": -0.7881009 }, "geometry": { "type": "Point", "coordinates": [ 484733.0, 147401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444827, "UPRN": 10013891052, "X_COORDINATE": 484736.0, "Y_COORDINATE": 147401.0, "LATITUDE": 51.2195263, "LONGITUDE": -0.7880579 }, "geometry": { "type": "Point", "coordinates": [ 484736.0, 147401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444831, "UPRN": 10013891056, "X_COORDINATE": 484736.0, "Y_COORDINATE": 147401.0, "LATITUDE": 51.2195263, "LONGITUDE": -0.7880579 }, "geometry": { "type": "Point", "coordinates": [ 484736.0, 147401.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448353, "UPRN": 10013894712, "X_COORDINATE": 484972.0, "Y_COORDINATE": 147612.0, "LATITUDE": 51.2213881, "LONGITUDE": -0.7846296 }, "geometry": { "type": "Point", "coordinates": [ 484972.0, 147612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448354, "UPRN": 10013894713, "X_COORDINATE": 484974.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2214238, "LONGITUDE": -0.7846 }, "geometry": { "type": "Point", "coordinates": [ 484974.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443810, "UPRN": 10013889891, "X_COORDINATE": 484965.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2214251, "LONGITUDE": -0.7847289 }, "geometry": { "type": "Point", "coordinates": [ 484965.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448355, "UPRN": 10013894714, "X_COORDINATE": 484976.0, "Y_COORDINATE": 147627.0, "LATITUDE": 51.2215224, "LONGITUDE": -0.7845688 }, "geometry": { "type": "Point", "coordinates": [ 484976.0, 147627.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448356, "UPRN": 10013894715, "X_COORDINATE": 484978.0, "Y_COORDINATE": 147632.0, "LATITUDE": 51.2215671, "LONGITUDE": -0.784539 }, "geometry": { "type": "Point", "coordinates": [ 484978.0, 147632.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448357, "UPRN": 10013894716, "X_COORDINATE": 484981.0, "Y_COORDINATE": 147635.0, "LATITUDE": 51.2215936, "LONGITUDE": -0.7844953 }, "geometry": { "type": "Point", "coordinates": [ 484981.0, 147635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448358, "UPRN": 10013894717, "X_COORDINATE": 484983.0, "Y_COORDINATE": 147640.0, "LATITUDE": 51.2216382, "LONGITUDE": -0.7844655 }, "geometry": { "type": "Point", "coordinates": [ 484983.0, 147640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443811, "UPRN": 10013889892, "X_COORDINATE": 484962.0, "Y_COORDINATE": 147646.0, "LATITUDE": 51.2216953, "LONGITUDE": -0.7847647 }, "geometry": { "type": "Point", "coordinates": [ 484962.0, 147646.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448361, "UPRN": 10013894720, "X_COORDINATE": 484996.0, "Y_COORDINATE": 147653.0, "LATITUDE": 51.2217532, "LONGITUDE": -0.7842763 }, "geometry": { "type": "Point", "coordinates": [ 484996.0, 147653.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448360, "UPRN": 10013894719, "X_COORDINATE": 484992.0, "Y_COORDINATE": 147654.0, "LATITUDE": 51.2217628, "LONGITUDE": -0.7843333 }, "geometry": { "type": "Point", "coordinates": [ 484992.0, 147654.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448359, "UPRN": 10013894718, "X_COORDINATE": 484990.0, "Y_COORDINATE": 147656.0, "LATITUDE": 51.221781, "LONGITUDE": -0.7843615 }, "geometry": { "type": "Point", "coordinates": [ 484990.0, 147656.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724732, "UPRN": 100061603869, "X_COORDINATE": 484950.0, "Y_COORDINATE": 147665.0, "LATITUDE": 51.2218679, "LONGITUDE": -0.784932 }, "geometry": { "type": "Point", "coordinates": [ 484950.0, 147665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724733, "UPRN": 100061603870, "X_COORDINATE": 484946.0, "Y_COORDINATE": 147674.0, "LATITUDE": 51.2219494, "LONGITUDE": -0.7849872 }, "geometry": { "type": "Point", "coordinates": [ 484946.0, 147674.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444570, "UPRN": 10013890754, "X_COORDINATE": 484851.0, "Y_COORDINATE": 147679.0, "LATITUDE": 51.2220085, "LONGITUDE": -0.786346 }, "geometry": { "type": "Point", "coordinates": [ 484851.0, 147679.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724734, "UPRN": 100061603871, "X_COORDINATE": 484942.0, "Y_COORDINATE": 147683.0, "LATITUDE": 51.2220309, "LONGITUDE": -0.7850423 }, "geometry": { "type": "Point", "coordinates": [ 484942.0, 147683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724735, "UPRN": 100061603872, "X_COORDINATE": 484938.0, "Y_COORDINATE": 147692.0, "LATITUDE": 51.2221124, "LONGITUDE": -0.7850974 }, "geometry": { "type": "Point", "coordinates": [ 484938.0, 147692.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724736, "UPRN": 100061603873, "X_COORDINATE": 484934.0, "Y_COORDINATE": 147703.0, "LATITUDE": 51.2222119, "LONGITUDE": -0.7851521 }, "geometry": { "type": "Point", "coordinates": [ 484934.0, 147703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724737, "UPRN": 100061603874, "X_COORDINATE": 484930.0, "Y_COORDINATE": 147711.0, "LATITUDE": 51.2222844, "LONGITUDE": -0.7852075 }, "geometry": { "type": "Point", "coordinates": [ 484930.0, 147711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724692, "UPRN": 100061603827, "X_COORDINATE": 485013.0, "Y_COORDINATE": 147718.0, "LATITUDE": 51.222335, "LONGITUDE": -0.7840176 }, "geometry": { "type": "Point", "coordinates": [ 485013.0, 147718.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724738, "UPRN": 100061603875, "X_COORDINATE": 484925.0, "Y_COORDINATE": 147721.0, "LATITUDE": 51.222375, "LONGITUDE": -0.7852767 }, "geometry": { "type": "Point", "coordinates": [ 484925.0, 147721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724739, "UPRN": 100061603876, "X_COORDINATE": 484921.0, "Y_COORDINATE": 147729.0, "LATITUDE": 51.2224476, "LONGITUDE": -0.7853321 }, "geometry": { "type": "Point", "coordinates": [ 484921.0, 147729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724694, "UPRN": 100061603829, "X_COORDINATE": 485017.0, "Y_COORDINATE": 147731.0, "LATITUDE": 51.2224513, "LONGITUDE": -0.7839572 }, "geometry": { "type": "Point", "coordinates": [ 485017.0, 147731.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724695, "UPRN": 100061603830, "X_COORDINATE": 484972.0, "Y_COORDINATE": 147739.0, "LATITUDE": 51.2225299, "LONGITUDE": -0.7845996 }, "geometry": { "type": "Point", "coordinates": [ 484972.0, 147739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724740, "UPRN": 100061603877, "X_COORDINATE": 484925.0, "Y_COORDINATE": 147741.0, "LATITUDE": 51.2225549, "LONGITUDE": -0.785272 }, "geometry": { "type": "Point", "coordinates": [ 484925.0, 147741.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724741, "UPRN": 100061603878, "X_COORDINATE": 484934.0, "Y_COORDINATE": 147744.0, "LATITUDE": 51.2225805, "LONGITUDE": -0.7851424 }, "geometry": { "type": "Point", "coordinates": [ 484934.0, 147744.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724743, "UPRN": 100061603880, "X_COORDINATE": 484950.0, "Y_COORDINATE": 147741.0, "LATITUDE": 51.2225511, "LONGITUDE": -0.784914 }, "geometry": { "type": "Point", "coordinates": [ 484950.0, 147741.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724744, "UPRN": 100061603881, "X_COORDINATE": 484954.0, "Y_COORDINATE": 147733.0, "LATITUDE": 51.2224786, "LONGITUDE": -0.7848587 }, "geometry": { "type": "Point", "coordinates": [ 484954.0, 147733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724745, "UPRN": 100061603882, "X_COORDINATE": 484961.0, "Y_COORDINATE": 147723.0, "LATITUDE": 51.2223877, "LONGITUDE": -0.7847608 }, "geometry": { "type": "Point", "coordinates": [ 484961.0, 147723.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724746, "UPRN": 100061603883, "X_COORDINATE": 484965.0, "Y_COORDINATE": 147716.0, "LATITUDE": 51.2223242, "LONGITUDE": -0.7847052 }, "geometry": { "type": "Point", "coordinates": [ 484965.0, 147716.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726429, "UPRN": 100061605637, "X_COORDINATE": 485011.0, "Y_COORDINATE": 147695.0, "LATITUDE": 51.2221285, "LONGITUDE": -0.7840516 }, "geometry": { "type": "Point", "coordinates": [ 485011.0, 147695.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726430, "UPRN": 100061605638, "X_COORDINATE": 485017.0, "Y_COORDINATE": 147676.0, "LATITUDE": 51.2219568, "LONGITUDE": -0.7839702 }, "geometry": { "type": "Point", "coordinates": [ 485017.0, 147676.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726431, "UPRN": 100061605639, "X_COORDINATE": 485020.0, "Y_COORDINATE": 147670.0, "LATITUDE": 51.2219024, "LONGITUDE": -0.7839287 }, "geometry": { "type": "Point", "coordinates": [ 485020.0, 147670.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31726432, "UPRN": 100061605640, "X_COORDINATE": 485015.0, "Y_COORDINATE": 147680.0, "LATITUDE": 51.2219931, "LONGITUDE": -0.7839979 }, "geometry": { "type": "Point", "coordinates": [ 485015.0, 147680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724503, "UPRN": 100061603625, "X_COORDINATE": 484855.0, "Y_COORDINATE": 147325.0, "LATITUDE": 51.2188254, "LONGITUDE": -0.7863723 }, "geometry": { "type": "Point", "coordinates": [ 484855.0, 147325.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724501, "UPRN": 100061603623, "X_COORDINATE": 484850.0, "Y_COORDINATE": 147325.0, "LATITUDE": 51.2188261, "LONGITUDE": -0.7864439 }, "geometry": { "type": "Point", "coordinates": [ 484850.0, 147325.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724505, "UPRN": 100061603627, "X_COORDINATE": 484860.0, "Y_COORDINATE": 147326.0, "LATITUDE": 51.2188336, "LONGITUDE": -0.7863005 }, "geometry": { "type": "Point", "coordinates": [ 484860.0, 147326.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724507, "UPRN": 100061603629, "X_COORDINATE": 484866.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188417, "LONGITUDE": -0.7862144 }, "geometry": { "type": "Point", "coordinates": [ 484866.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723661, "UPRN": 100061602637, "X_COORDINATE": 484910.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195814, "LONGITUDE": -0.7855649 }, "geometry": { "type": "Point", "coordinates": [ 484910.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444922, "UPRN": 10013891148, "X_COORDINATE": 484995.0, "Y_COORDINATE": 147413.0, "LATITUDE": 51.2195957, "LONGITUDE": -0.7843474 }, "geometry": { "type": "Point", "coordinates": [ 484995.0, 147413.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444926, "UPRN": 10013891152, "X_COORDINATE": 484995.0, "Y_COORDINATE": 147413.0, "LATITUDE": 51.2195957, "LONGITUDE": -0.7843474 }, "geometry": { "type": "Point", "coordinates": [ 484995.0, 147413.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444928, "UPRN": 10013891154, "X_COORDINATE": 484995.0, "Y_COORDINATE": 147413.0, "LATITUDE": 51.2195957, "LONGITUDE": -0.7843474 }, "geometry": { "type": "Point", "coordinates": [ 484995.0, 147413.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723666, "UPRN": 100061602642, "X_COORDINATE": 484859.0, "Y_COORDINATE": 147414.0, "LATITUDE": 51.2196249, "LONGITUDE": -0.7862941 }, "geometry": { "type": "Point", "coordinates": [ 484859.0, 147414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723662, "UPRN": 100061602638, "X_COORDINATE": 484902.0, "Y_COORDINATE": 147416.0, "LATITUDE": 51.2196365, "LONGITUDE": -0.785678 }, "geometry": { "type": "Point", "coordinates": [ 484902.0, 147416.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724661, "UPRN": 100061603796, "X_COORDINATE": 484804.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.219705, "LONGITUDE": -0.7870795 }, "geometry": { "type": "Point", "coordinates": [ 484804.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723663, "UPRN": 100061602639, "X_COORDINATE": 484893.0, "Y_COORDINATE": 147425.0, "LATITUDE": 51.2197187, "LONGITUDE": -0.7858047 }, "geometry": { "type": "Point", "coordinates": [ 484893.0, 147425.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724663, "UPRN": 100061603798, "X_COORDINATE": 484808.0, "Y_COORDINATE": 147426.0, "LATITUDE": 51.2197403, "LONGITUDE": -0.7870213 }, "geometry": { "type": "Point", "coordinates": [ 484808.0, 147426.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723665, "UPRN": 100061602641, "X_COORDINATE": 484866.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2197407, "LONGITUDE": -0.7861908 }, "geometry": { "type": "Point", "coordinates": [ 484866.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724499, "UPRN": 100061603621, "X_COORDINATE": 484845.0, "Y_COORDINATE": 147324.0, "LATITUDE": 51.2188179, "LONGITUDE": -0.7865157 }, "geometry": { "type": "Point", "coordinates": [ 484845.0, 147324.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724492, "UPRN": 100061603614, "X_COORDINATE": 484824.0, "Y_COORDINATE": 147323.0, "LATITUDE": 51.218812, "LONGITUDE": -0.7868166 }, "geometry": { "type": "Point", "coordinates": [ 484824.0, 147323.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724495, "UPRN": 100061603617, "X_COORDINATE": 484828.0, "Y_COORDINATE": 147323.0, "LATITUDE": 51.2188114, "LONGITUDE": -0.7867593 }, "geometry": { "type": "Point", "coordinates": [ 484828.0, 147323.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724497, "UPRN": 100061603619, "X_COORDINATE": 484839.0, "Y_COORDINATE": 147323.0, "LATITUDE": 51.2188098, "LONGITUDE": -0.7866019 }, "geometry": { "type": "Point", "coordinates": [ 484839.0, 147323.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122498, "UPRN": 100062162097, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122499, "UPRN": 100062162098, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122500, "UPRN": 100062162099, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122501, "UPRN": 100062162100, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122502, "UPRN": 100062162101, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122503, "UPRN": 100062162102, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122504, "UPRN": 100062162103, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122505, "UPRN": 100062162104, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122506, "UPRN": 100062162105, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122507, "UPRN": 100062162106, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122508, "UPRN": 100062162107, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122509, "UPRN": 100062162108, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122510, "UPRN": 100062162109, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122511, "UPRN": 100062162110, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2188536, "LONGITUDE": -0.785627 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122512, "UPRN": 100062162111, "X_COORDINATE": 484882.0, "Y_COORDINATE": 147326.0, "LATITUDE": 51.2188303, "LONGITUDE": -0.7859856 }, "geometry": { "type": "Point", "coordinates": [ 484882.0, 147326.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122513, "UPRN": 100062162112, "X_COORDINATE": 484876.0, "Y_COORDINATE": 147325.0, "LATITUDE": 51.2188222, "LONGITUDE": -0.7860717 }, "geometry": { "type": "Point", "coordinates": [ 484876.0, 147325.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122514, "UPRN": 100062162113, "X_COORDINATE": 484882.0, "Y_COORDINATE": 147326.0, "LATITUDE": 51.2188303, "LONGITUDE": -0.7859856 }, "geometry": { "type": "Point", "coordinates": [ 484882.0, 147326.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122515, "UPRN": 100062162114, "X_COORDINATE": 484876.0, "Y_COORDINATE": 147325.0, "LATITUDE": 51.2188222, "LONGITUDE": -0.7860717 }, "geometry": { "type": "Point", "coordinates": [ 484876.0, 147325.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731105, "UPRN": 100061610693, "X_COORDINATE": 484136.0, "Y_COORDINATE": 147298.0, "LATITUDE": 51.2186889, "LONGITUDE": -0.7966713 }, "geometry": { "type": "Point", "coordinates": [ 484136.0, 147298.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731104, "UPRN": 100061610692, "X_COORDINATE": 484139.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186525, "LONGITUDE": -0.7966293 }, "geometry": { "type": "Point", "coordinates": [ 484139.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731103, "UPRN": 100061610691, "X_COORDINATE": 484142.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2186161, "LONGITUDE": -0.7965873 }, "geometry": { "type": "Point", "coordinates": [ 484142.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731102, "UPRN": 100061610690, "X_COORDINATE": 484145.0, "Y_COORDINATE": 147286.0, "LATITUDE": 51.2185797, "LONGITUDE": -0.7965453 }, "geometry": { "type": "Point", "coordinates": [ 484145.0, 147286.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31731101, "UPRN": 100061610689, "X_COORDINATE": 484147.0, "Y_COORDINATE": 147282.0, "LATITUDE": 51.2185435, "LONGITUDE": -0.7965176 }, "geometry": { "type": "Point", "coordinates": [ 484147.0, 147282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732896, "UPRN": 100061612590, "X_COORDINATE": 484172.0, "Y_COORDINATE": 147313.0, "LATITUDE": 51.2188185, "LONGITUDE": -0.7961524 }, "geometry": { "type": "Point", "coordinates": [ 484172.0, 147313.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732895, "UPRN": 100061612589, "X_COORDINATE": 484174.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187912, "LONGITUDE": -0.7961245 }, "geometry": { "type": "Point", "coordinates": [ 484174.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732894, "UPRN": 100061612588, "X_COORDINATE": 484175.0, "Y_COORDINATE": 147307.0, "LATITUDE": 51.2187641, "LONGITUDE": -0.7961109 }, "geometry": { "type": "Point", "coordinates": [ 484175.0, 147307.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732893, "UPRN": 100061612587, "X_COORDINATE": 484177.0, "Y_COORDINATE": 147303.0, "LATITUDE": 51.2187279, "LONGITUDE": -0.7960832 }, "geometry": { "type": "Point", "coordinates": [ 484177.0, 147303.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732892, "UPRN": 100061612586, "X_COORDINATE": 484179.0, "Y_COORDINATE": 147300.0, "LATITUDE": 51.2187006, "LONGITUDE": -0.7960553 }, "geometry": { "type": "Point", "coordinates": [ 484179.0, 147300.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732891, "UPRN": 100061612585, "X_COORDINATE": 484182.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2186372, "LONGITUDE": -0.796014 }, "geometry": { "type": "Point", "coordinates": [ 484182.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732888, "UPRN": 100061612582, "X_COORDINATE": 484184.0, "Y_COORDINATE": 147289.0, "LATITUDE": 51.218601, "LONGITUDE": -0.7959863 }, "geometry": { "type": "Point", "coordinates": [ 484184.0, 147289.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732889, "UPRN": 100061612583, "X_COORDINATE": 484187.0, "Y_COORDINATE": 147284.0, "LATITUDE": 51.2185556, "LONGITUDE": -0.7959445 }, "geometry": { "type": "Point", "coordinates": [ 484187.0, 147284.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732886, "UPRN": 100061612580, "X_COORDINATE": 484189.0, "Y_COORDINATE": 147280.0, "LATITUDE": 51.2185193, "LONGITUDE": -0.7959168 }, "geometry": { "type": "Point", "coordinates": [ 484189.0, 147280.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732884, "UPRN": 100061612578, "X_COORDINATE": 484192.0, "Y_COORDINATE": 147276.0, "LATITUDE": 51.2184829, "LONGITUDE": -0.7958748 }, "geometry": { "type": "Point", "coordinates": [ 484192.0, 147276.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732882, "UPRN": 100061612576, "X_COORDINATE": 484194.0, "Y_COORDINATE": 147272.0, "LATITUDE": 51.2184467, "LONGITUDE": -0.7958471 }, "geometry": { "type": "Point", "coordinates": [ 484194.0, 147272.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732890, "UPRN": 100061612584, "X_COORDINATE": 484203.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.218787, "LONGITUDE": -0.7957094 }, "geometry": { "type": "Point", "coordinates": [ 484203.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732887, "UPRN": 100061612581, "X_COORDINATE": 484206.0, "Y_COORDINATE": 147303.0, "LATITUDE": 51.2187236, "LONGITUDE": -0.7956681 }, "geometry": { "type": "Point", "coordinates": [ 484206.0, 147303.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732885, "UPRN": 100061612579, "X_COORDINATE": 484208.0, "Y_COORDINATE": 147299.0, "LATITUDE": 51.2186873, "LONGITUDE": -0.7956404 }, "geometry": { "type": "Point", "coordinates": [ 484208.0, 147299.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732883, "UPRN": 100061612577, "X_COORDINATE": 484211.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.218633, "LONGITUDE": -0.7955988 }, "geometry": { "type": "Point", "coordinates": [ 484211.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732881, "UPRN": 100061612575, "X_COORDINATE": 484213.0, "Y_COORDINATE": 147289.0, "LATITUDE": 51.2185967, "LONGITUDE": -0.7955711 }, "geometry": { "type": "Point", "coordinates": [ 484213.0, 147289.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732879, "UPRN": 100061612573, "X_COORDINATE": 484219.0, "Y_COORDINATE": 147284.0, "LATITUDE": 51.2185509, "LONGITUDE": -0.7954864 }, "geometry": { "type": "Point", "coordinates": [ 484219.0, 147284.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732897, "UPRN": 100061612591, "X_COORDINATE": 484171.0, "Y_COORDINATE": 147317.0, "LATITUDE": 51.2188546, "LONGITUDE": -0.7961658 }, "geometry": { "type": "Point", "coordinates": [ 484171.0, 147317.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732898, "UPRN": 100061612592, "X_COORDINATE": 484169.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188819, "LONGITUDE": -0.7961937 }, "geometry": { "type": "Point", "coordinates": [ 484169.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445006, "UPRN": 10013891233, "X_COORDINATE": 485096.0, "Y_COORDINATE": 147556.0, "LATITUDE": 51.2208662, "LONGITUDE": -0.7828677 }, "geometry": { "type": "Point", "coordinates": [ 485096.0, 147556.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445007, "UPRN": 10013891234, "X_COORDINATE": 485098.0, "Y_COORDINATE": 147552.0, "LATITUDE": 51.22083, "LONGITUDE": -0.78284 }, "geometry": { "type": "Point", "coordinates": [ 485098.0, 147552.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445008, "UPRN": 10013891235, "X_COORDINATE": 485100.0, "Y_COORDINATE": 147548.0, "LATITUDE": 51.2207937, "LONGITUDE": -0.7828123 }, "geometry": { "type": "Point", "coordinates": [ 485100.0, 147548.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445009, "UPRN": 10013891236, "X_COORDINATE": 485102.0, "Y_COORDINATE": 147544.0, "LATITUDE": 51.2207575, "LONGITUDE": -0.7827846 }, "geometry": { "type": "Point", "coordinates": [ 485102.0, 147544.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444958, "UPRN": 10013891184, "X_COORDINATE": 485104.0, "Y_COORDINATE": 147458.0, "LATITUDE": 51.219984, "LONGITUDE": -0.7827764 }, "geometry": { "type": "Point", "coordinates": [ 485104.0, 147458.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445010, "UPRN": 10013891237, "X_COORDINATE": 485105.0, "Y_COORDINATE": 147540.0, "LATITUDE": 51.2207211, "LONGITUDE": -0.7827426 }, "geometry": { "type": "Point", "coordinates": [ 485105.0, 147540.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444957, "UPRN": 10013891183, "X_COORDINATE": 485106.0, "Y_COORDINATE": 147461.0, "LATITUDE": 51.2200107, "LONGITUDE": -0.782747 }, "geometry": { "type": "Point", "coordinates": [ 485106.0, 147461.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445011, "UPRN": 10013891238, "X_COORDINATE": 485107.0, "Y_COORDINATE": 147535.0, "LATITUDE": 51.2206758, "LONGITUDE": -0.7827152 }, "geometry": { "type": "Point", "coordinates": [ 485107.0, 147535.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444956, "UPRN": 10013891182, "X_COORDINATE": 485109.0, "Y_COORDINATE": 147465.0, "LATITUDE": 51.2200462, "LONGITUDE": -0.7827031 }, "geometry": { "type": "Point", "coordinates": [ 485109.0, 147465.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444955, "UPRN": 10013891181, "X_COORDINATE": 485113.0, "Y_COORDINATE": 147470.0, "LATITUDE": 51.2200906, "LONGITUDE": -0.7826447 }, "geometry": { "type": "Point", "coordinates": [ 485113.0, 147470.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444981, "UPRN": 10013891207, "X_COORDINATE": 485113.0, "Y_COORDINATE": 147515.0, "LATITUDE": 51.2204951, "LONGITUDE": -0.782634 }, "geometry": { "type": "Point", "coordinates": [ 485113.0, 147515.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444984, "UPRN": 10013891210, "X_COORDINATE": 485116.0, "Y_COORDINATE": 147558.0, "LATITUDE": 51.2208812, "LONGITUDE": -0.7825809 }, "geometry": { "type": "Point", "coordinates": [ 485116.0, 147558.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444982, "UPRN": 10013891208, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205215, "LONGITUDE": -0.7825761 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445003, "UPRN": 10013891230, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147477.0, "LATITUDE": 51.2201529, "LONGITUDE": -0.7825858 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147477.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445004, "UPRN": 10013891231, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147477.0, "LATITUDE": 51.2201529, "LONGITUDE": -0.7825858 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147477.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445005, "UPRN": 10013891232, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147477.0, "LATITUDE": 51.2201529, "LONGITUDE": -0.7825858 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147477.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444999, "UPRN": 10013891226, "X_COORDINATE": 485127.0, "Y_COORDINATE": 147484.0, "LATITUDE": 51.2202143, "LONGITUDE": -0.782441 }, "geometry": { "type": "Point", "coordinates": [ 485127.0, 147484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445001, "UPRN": 10013891228, "X_COORDINATE": 485127.0, "Y_COORDINATE": 147484.0, "LATITUDE": 51.2202143, "LONGITUDE": -0.782441 }, "geometry": { "type": "Point", "coordinates": [ 485127.0, 147484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445002, "UPRN": 10013891229, "X_COORDINATE": 485130.0, "Y_COORDINATE": 147486.0, "LATITUDE": 51.2202319, "LONGITUDE": -0.7823975 }, "geometry": { "type": "Point", "coordinates": [ 485130.0, 147486.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445000, "UPRN": 10013891227, "X_COORDINATE": 485132.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2202496, "LONGITUDE": -0.7823684 }, "geometry": { "type": "Point", "coordinates": [ 485132.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444997, "UPRN": 10013891224, "X_COORDINATE": 485127.0, "Y_COORDINATE": 147484.0, "LATITUDE": 51.2202143, "LONGITUDE": -0.782441 }, "geometry": { "type": "Point", "coordinates": [ 485127.0, 147484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444938, "UPRN": 10013891164, "X_COORDINATE": 485167.0, "Y_COORDINATE": 147487.0, "LATITUDE": 51.2202353, "LONGITUDE": -0.7818676 }, "geometry": { "type": "Point", "coordinates": [ 485167.0, 147487.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444996, "UPRN": 10013891223, "X_COORDINATE": 485132.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2202496, "LONGITUDE": -0.7823684 }, "geometry": { "type": "Point", "coordinates": [ 485132.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444998, "UPRN": 10013891225, "X_COORDINATE": 485132.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2202496, "LONGITUDE": -0.7823684 }, "geometry": { "type": "Point", "coordinates": [ 485132.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444995, "UPRN": 10013891222, "X_COORDINATE": 485138.0, "Y_COORDINATE": 147492.0, "LATITUDE": 51.2202846, "LONGITUDE": -0.7822816 }, "geometry": { "type": "Point", "coordinates": [ 485138.0, 147492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444937, "UPRN": 10013891163, "X_COORDINATE": 485166.0, "Y_COORDINATE": 147493.0, "LATITUDE": 51.2202894, "LONGITUDE": -0.7818805 }, "geometry": { "type": "Point", "coordinates": [ 485166.0, 147493.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444936, "UPRN": 10013891162, "X_COORDINATE": 485164.0, "Y_COORDINATE": 147496.0, "LATITUDE": 51.2203167, "LONGITUDE": -0.7819084 }, "geometry": { "type": "Point", "coordinates": [ 485164.0, 147496.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444935, "UPRN": 10013891161, "X_COORDINATE": 485162.0, "Y_COORDINATE": 147502.0, "LATITUDE": 51.2203709, "LONGITUDE": -0.7819357 }, "geometry": { "type": "Point", "coordinates": [ 485162.0, 147502.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444934, "UPRN": 10013891160, "X_COORDINATE": 485160.0, "Y_COORDINATE": 147506.0, "LATITUDE": 51.2204072, "LONGITUDE": -0.7819633 }, "geometry": { "type": "Point", "coordinates": [ 485160.0, 147506.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444933, "UPRN": 10013891159, "X_COORDINATE": 485158.0, "Y_COORDINATE": 147510.0, "LATITUDE": 51.2204435, "LONGITUDE": -0.781991 }, "geometry": { "type": "Point", "coordinates": [ 485158.0, 147510.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444932, "UPRN": 10013891158, "X_COORDINATE": 485155.0, "Y_COORDINATE": 147515.0, "LATITUDE": 51.2204889, "LONGITUDE": -0.7820328 }, "geometry": { "type": "Point", "coordinates": [ 485155.0, 147515.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444983, "UPRN": 10013891209, "X_COORDINATE": 485121.0, "Y_COORDINATE": 147520.0, "LATITUDE": 51.2205389, "LONGITUDE": -0.7825183 }, "geometry": { "type": "Point", "coordinates": [ 485121.0, 147520.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444994, "UPRN": 10013891221, "X_COORDINATE": 485148.0, "Y_COORDINATE": 147530.0, "LATITUDE": 51.2206248, "LONGITUDE": -0.7821294 }, "geometry": { "type": "Point", "coordinates": [ 485148.0, 147530.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444993, "UPRN": 10013891220, "X_COORDINATE": 485146.0, "Y_COORDINATE": 147534.0, "LATITUDE": 51.220661, "LONGITUDE": -0.7821571 }, "geometry": { "type": "Point", "coordinates": [ 485146.0, 147534.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444992, "UPRN": 10013891219, "X_COORDINATE": 485145.0, "Y_COORDINATE": 147538.0, "LATITUDE": 51.2206971, "LONGITUDE": -0.7821705 }, "geometry": { "type": "Point", "coordinates": [ 485145.0, 147538.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444991, "UPRN": 10013891218, "X_COORDINATE": 485143.0, "Y_COORDINATE": 147542.0, "LATITUDE": 51.2207334, "LONGITUDE": -0.7821982 }, "geometry": { "type": "Point", "coordinates": [ 485143.0, 147542.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444990, "UPRN": 10013891217, "X_COORDINATE": 485141.0, "Y_COORDINATE": 147547.0, "LATITUDE": 51.2207786, "LONGITUDE": -0.7822256 }, "geometry": { "type": "Point", "coordinates": [ 485141.0, 147547.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444989, "UPRN": 10013891216, "X_COORDINATE": 485139.0, "Y_COORDINATE": 147550.0, "LATITUDE": 51.2208059, "LONGITUDE": -0.7822535 }, "geometry": { "type": "Point", "coordinates": [ 485139.0, 147550.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444985, "UPRN": 10013891211, "X_COORDINATE": 485120.0, "Y_COORDINATE": 147561.0, "LATITUDE": 51.2209076, "LONGITUDE": -0.7825229 }, "geometry": { "type": "Point", "coordinates": [ 485120.0, 147561.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444986, "UPRN": 10013891212, "X_COORDINATE": 485125.0, "Y_COORDINATE": 147563.0, "LATITUDE": 51.2209249, "LONGITUDE": -0.7824509 }, "geometry": { "type": "Point", "coordinates": [ 485125.0, 147563.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444987, "UPRN": 10013891213, "X_COORDINATE": 485130.0, "Y_COORDINATE": 147566.0, "LATITUDE": 51.2209511, "LONGITUDE": -0.7823786 }, "geometry": { "type": "Point", "coordinates": [ 485130.0, 147566.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447489, "UPRN": 10013893839, "X_COORDINATE": 485163.0, "Y_COORDINATE": 147567.0, "LATITUDE": 51.2209552, "LONGITUDE": -0.7819059 }, "geometry": { "type": "Point", "coordinates": [ 485163.0, 147567.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444988, "UPRN": 10013891214, "X_COORDINATE": 485134.0, "Y_COORDINATE": 147568.0, "LATITUDE": 51.2209685, "LONGITUDE": -0.7823208 }, "geometry": { "type": "Point", "coordinates": [ 485134.0, 147568.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444561, "UPRN": 10013890745, "X_COORDINATE": 485137.0, "Y_COORDINATE": 147571.0, "LATITUDE": 51.220995, "LONGITUDE": -0.7822772 }, "geometry": { "type": "Point", "coordinates": [ 485137.0, 147571.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728244, "UPRN": 100061607529, "X_COORDINATE": 485185.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205114, "LONGITUDE": -0.7816026 }, "geometry": { "type": "Point", "coordinates": [ 485185.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728238, "UPRN": 100061607523, "X_COORDINATE": 485185.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205114, "LONGITUDE": -0.7816026 }, "geometry": { "type": "Point", "coordinates": [ 485185.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728232, "UPRN": 100061607517, "X_COORDINATE": 485185.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205114, "LONGITUDE": -0.7816026 }, "geometry": { "type": "Point", "coordinates": [ 485185.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728226, "UPRN": 100061607511, "X_COORDINATE": 485187.0, "Y_COORDINATE": 147551.0, "LATITUDE": 51.2208077, "LONGITUDE": -0.7815661 }, "geometry": { "type": "Point", "coordinates": [ 485187.0, 147551.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728242, "UPRN": 100061607527, "X_COORDINATE": 485188.0, "Y_COORDINATE": 147508.0, "LATITUDE": 51.220421, "LONGITUDE": -0.781562 }, "geometry": { "type": "Point", "coordinates": [ 485188.0, 147508.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728236, "UPRN": 100061607521, "X_COORDINATE": 485188.0, "Y_COORDINATE": 147508.0, "LATITUDE": 51.220421, "LONGITUDE": -0.781562 }, "geometry": { "type": "Point", "coordinates": [ 485188.0, 147508.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728224, "UPRN": 100061607509, "X_COORDINATE": 485188.0, "Y_COORDINATE": 147558.0, "LATITUDE": 51.2208705, "LONGITUDE": -0.7815502 }, "geometry": { "type": "Point", "coordinates": [ 485188.0, 147558.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728230, "UPRN": 100061607515, "X_COORDINATE": 485188.0, "Y_COORDINATE": 147508.0, "LATITUDE": 51.220421, "LONGITUDE": -0.781562 }, "geometry": { "type": "Point", "coordinates": [ 485188.0, 147508.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728240, "UPRN": 100061607525, "X_COORDINATE": 485197.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205096, "LONGITUDE": -0.7814308 }, "geometry": { "type": "Point", "coordinates": [ 485197.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728234, "UPRN": 100061607519, "X_COORDINATE": 485197.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205096, "LONGITUDE": -0.7814308 }, "geometry": { "type": "Point", "coordinates": [ 485197.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728228, "UPRN": 100061607513, "X_COORDINATE": 485197.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205096, "LONGITUDE": -0.7814308 }, "geometry": { "type": "Point", "coordinates": [ 485197.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724511, "UPRN": 100061603633, "X_COORDINATE": 485205.0, "Y_COORDINATE": 147486.0, "LATITUDE": 51.2202207, "LONGITUDE": -0.7813239 }, "geometry": { "type": "Point", "coordinates": [ 485205.0, 147486.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728263, "UPRN": 100061607548, "X_COORDINATE": 485213.0, "Y_COORDINATE": 147523.0, "LATITUDE": 51.2205521, "LONGITUDE": -0.7812006 }, "geometry": { "type": "Point", "coordinates": [ 485213.0, 147523.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728262, "UPRN": 100061607547, "X_COORDINATE": 485218.0, "Y_COORDINATE": 147513.0, "LATITUDE": 51.2204615, "LONGITUDE": -0.7811314 }, "geometry": { "type": "Point", "coordinates": [ 485218.0, 147513.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728265, "UPRN": 100061607550, "X_COORDINATE": 485218.0, "Y_COORDINATE": 147513.0, "LATITUDE": 51.2204615, "LONGITUDE": -0.7811314 }, "geometry": { "type": "Point", "coordinates": [ 485218.0, 147513.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728259, "UPRN": 100061607544, "X_COORDINATE": 485222.0, "Y_COORDINATE": 147557.0, "LATITUDE": 51.2208565, "LONGITUDE": -0.7810637 }, "geometry": { "type": "Point", "coordinates": [ 485222.0, 147557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728260, "UPRN": 100061607545, "X_COORDINATE": 485222.0, "Y_COORDINATE": 147549.0, "LATITUDE": 51.2207845, "LONGITUDE": -0.7810656 }, "geometry": { "type": "Point", "coordinates": [ 485222.0, 147549.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728261, "UPRN": 100061607546, "X_COORDINATE": 485226.0, "Y_COORDINATE": 147524.0, "LATITUDE": 51.2205592, "LONGITUDE": -0.7810142 }, "geometry": { "type": "Point", "coordinates": [ 485226.0, 147524.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728264, "UPRN": 100061607549, "X_COORDINATE": 485226.0, "Y_COORDINATE": 147524.0, "LATITUDE": 51.2205592, "LONGITUDE": -0.7810142 }, "geometry": { "type": "Point", "coordinates": [ 485226.0, 147524.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447549, "UPRN": 10013893899, "X_COORDINATE": 485232.0, "Y_COORDINATE": 147540.0, "LATITUDE": 51.2207021, "LONGITUDE": -0.7809245 }, "geometry": { "type": "Point", "coordinates": [ 485232.0, 147540.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728266, "UPRN": 100061607551, "X_COORDINATE": 485213.0, "Y_COORDINATE": 147523.0, "LATITUDE": 51.2205521, "LONGITUDE": -0.7812006 }, "geometry": { "type": "Point", "coordinates": [ 485213.0, 147523.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728267, "UPRN": 100061607552, "X_COORDINATE": 485226.0, "Y_COORDINATE": 147524.0, "LATITUDE": 51.2205592, "LONGITUDE": -0.7810142 }, "geometry": { "type": "Point", "coordinates": [ 485226.0, 147524.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728268, "UPRN": 100061607553, "X_COORDINATE": 485218.0, "Y_COORDINATE": 147513.0, "LATITUDE": 51.2204615, "LONGITUDE": -0.7811314 }, "geometry": { "type": "Point", "coordinates": [ 485218.0, 147513.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728269, "UPRN": 100061607554, "X_COORDINATE": 485213.0, "Y_COORDINATE": 147523.0, "LATITUDE": 51.2205521, "LONGITUDE": -0.7812006 }, "geometry": { "type": "Point", "coordinates": [ 485213.0, 147523.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217509, "UPRN": 100062355407, "X_COORDINATE": 485231.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2196864, "LONGITUDE": -0.7809657 }, "geometry": { "type": "Point", "coordinates": [ 485231.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724680, "UPRN": 100061603815, "X_COORDINATE": 484852.0, "Y_COORDINATE": 147507.0, "LATITUDE": 51.220462, "LONGITUDE": -0.7863723 }, "geometry": { "type": "Point", "coordinates": [ 484852.0, 147507.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724684, "UPRN": 100061603819, "X_COORDINATE": 484857.0, "Y_COORDINATE": 147510.0, "LATITUDE": 51.2204882, "LONGITUDE": -0.7863 }, "geometry": { "type": "Point", "coordinates": [ 484857.0, 147510.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447326, "UPRN": 10013893670, "X_COORDINATE": 484935.0, "Y_COORDINATE": 147513.0, "LATITUDE": 51.2205036, "LONGITUDE": -0.7851827 }, "geometry": { "type": "Point", "coordinates": [ 484935.0, 147513.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724682, "UPRN": 100061603817, "X_COORDINATE": 484879.0, "Y_COORDINATE": 147529.0, "LATITUDE": 51.2206558, "LONGITUDE": -0.7859806 }, "geometry": { "type": "Point", "coordinates": [ 484879.0, 147529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729540, "UPRN": 100061608981, "X_COORDINATE": 484841.0, "Y_COORDINATE": 147532.0, "LATITUDE": 51.2206884, "LONGITUDE": -0.7865239 }, "geometry": { "type": "Point", "coordinates": [ 484841.0, 147532.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724683, "UPRN": 100061603818, "X_COORDINATE": 484884.0, "Y_COORDINATE": 147533.0, "LATITUDE": 51.220691, "LONGITUDE": -0.7859081 }, "geometry": { "type": "Point", "coordinates": [ 484884.0, 147533.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724686, "UPRN": 100061603821, "X_COORDINATE": 484896.0, "Y_COORDINATE": 147540.0, "LATITUDE": 51.2207522, "LONGITUDE": -0.7857346 }, "geometry": { "type": "Point", "coordinates": [ 484896.0, 147540.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729542, "UPRN": 100061608983, "X_COORDINATE": 484835.0, "Y_COORDINATE": 147543.0, "LATITUDE": 51.2207882, "LONGITUDE": -0.7866072 }, "geometry": { "type": "Point", "coordinates": [ 484835.0, 147543.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724688, "UPRN": 100061603823, "X_COORDINATE": 484903.0, "Y_COORDINATE": 147545.0, "LATITUDE": 51.2207961, "LONGITUDE": -0.7856332 }, "geometry": { "type": "Point", "coordinates": [ 484903.0, 147545.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724690, "UPRN": 100061603825, "X_COORDINATE": 484908.0, "Y_COORDINATE": 147549.0, "LATITUDE": 51.2208313, "LONGITUDE": -0.7855607 }, "geometry": { "type": "Point", "coordinates": [ 484908.0, 147549.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724691, "UPRN": 100061603826, "X_COORDINATE": 484915.0, "Y_COORDINATE": 147560.0, "LATITUDE": 51.2209291, "LONGITUDE": -0.7854579 }, "geometry": { "type": "Point", "coordinates": [ 484915.0, 147560.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729541, "UPRN": 100061608982, "X_COORDINATE": 484858.0, "Y_COORDINATE": 147561.0, "LATITUDE": 51.2209466, "LONGITUDE": -0.7862737 }, "geometry": { "type": "Point", "coordinates": [ 484858.0, 147561.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729543, "UPRN": 100061608984, "X_COORDINATE": 484854.0, "Y_COORDINATE": 147568.0, "LATITUDE": 51.2210101, "LONGITUDE": -0.7863293 }, "geometry": { "type": "Point", "coordinates": [ 484854.0, 147568.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724693, "UPRN": 100061603828, "X_COORDINATE": 484928.0, "Y_COORDINATE": 147578.0, "LATITUDE": 51.221089, "LONGITUDE": -0.7852675 }, "geometry": { "type": "Point", "coordinates": [ 484928.0, 147578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729544, "UPRN": 100061608985, "X_COORDINATE": 484832.0, "Y_COORDINATE": 147547.0, "LATITUDE": 51.2208246, "LONGITUDE": -0.7866492 }, "geometry": { "type": "Point", "coordinates": [ 484832.0, 147547.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729545, "UPRN": 100061608986, "X_COORDINATE": 484849.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210918, "LONGITUDE": -0.7863987 }, "geometry": { "type": "Point", "coordinates": [ 484849.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729546, "UPRN": 100061608987, "X_COORDINATE": 484828.0, "Y_COORDINATE": 147557.0, "LATITUDE": 51.2209151, "LONGITUDE": -0.7867041 }, "geometry": { "type": "Point", "coordinates": [ 484828.0, 147557.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729547, "UPRN": 100061608988, "X_COORDINATE": 484844.0, "Y_COORDINATE": 147585.0, "LATITUDE": 51.2211644, "LONGITUDE": -0.7864684 }, "geometry": { "type": "Point", "coordinates": [ 484844.0, 147585.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729548, "UPRN": 100061608989, "X_COORDINATE": 484822.0, "Y_COORDINATE": 147568.0, "LATITUDE": 51.2210149, "LONGITUDE": -0.7867874 }, "geometry": { "type": "Point", "coordinates": [ 484822.0, 147568.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729551, "UPRN": 100061608992, "X_COORDINATE": 484818.0, "Y_COORDINATE": 147575.0, "LATITUDE": 51.2210784, "LONGITUDE": -0.786843 }, "geometry": { "type": "Point", "coordinates": [ 484818.0, 147575.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729553, "UPRN": 100061608994, "X_COORDINATE": 484814.0, "Y_COORDINATE": 147584.0, "LATITUDE": 51.2211599, "LONGITUDE": -0.7868981 }, "geometry": { "type": "Point", "coordinates": [ 484814.0, 147584.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729555, "UPRN": 100061608996, "X_COORDINATE": 484809.0, "Y_COORDINATE": 147593.0, "LATITUDE": 51.2212415, "LONGITUDE": -0.7869676 }, "geometry": { "type": "Point", "coordinates": [ 484809.0, 147593.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729557, "UPRN": 100061608998, "X_COORDINATE": 484806.0, "Y_COORDINATE": 147597.0, "LATITUDE": 51.221278, "LONGITUDE": -0.7870096 }, "geometry": { "type": "Point", "coordinates": [ 484806.0, 147597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729559, "UPRN": 100061609000, "X_COORDINATE": 484800.0, "Y_COORDINATE": 147608.0, "LATITUDE": 51.2213777, "LONGITUDE": -0.7870929 }, "geometry": { "type": "Point", "coordinates": [ 484800.0, 147608.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729561, "UPRN": 100061609002, "X_COORDINATE": 484796.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2214502, "LONGITUDE": -0.7871483 }, "geometry": { "type": "Point", "coordinates": [ 484796.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729563, "UPRN": 100061609004, "X_COORDINATE": 484792.0, "Y_COORDINATE": 147624.0, "LATITUDE": 51.2215228, "LONGITUDE": -0.7872036 }, "geometry": { "type": "Point", "coordinates": [ 484792.0, 147624.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729565, "UPRN": 100061609006, "X_COORDINATE": 484788.0, "Y_COORDINATE": 147632.0, "LATITUDE": 51.2215953, "LONGITUDE": -0.787259 }, "geometry": { "type": "Point", "coordinates": [ 484788.0, 147632.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729567, "UPRN": 100061609008, "X_COORDINATE": 484783.0, "Y_COORDINATE": 147640.0, "LATITUDE": 51.2216679, "LONGITUDE": -0.7873287 }, "geometry": { "type": "Point", "coordinates": [ 484783.0, 147640.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729569, "UPRN": 100061609010, "X_COORDINATE": 484778.0, "Y_COORDINATE": 147650.0, "LATITUDE": 51.2217586, "LONGITUDE": -0.7873979 }, "geometry": { "type": "Point", "coordinates": [ 484778.0, 147650.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729571, "UPRN": 100061609012, "X_COORDINATE": 484768.0, "Y_COORDINATE": 147668.0, "LATITUDE": 51.2219219, "LONGITUDE": -0.7875368 }, "geometry": { "type": "Point", "coordinates": [ 484768.0, 147668.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727504, "UPRN": 100061606768, "X_COORDINATE": 484727.0, "Y_COORDINATE": 147550.0, "LATITUDE": 51.2208671, "LONGITUDE": -0.7881516 }, "geometry": { "type": "Point", "coordinates": [ 484727.0, 147550.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727507, "UPRN": 100061606771, "X_COORDINATE": 484725.0, "Y_COORDINATE": 147554.0, "LATITUDE": 51.2209034, "LONGITUDE": -0.7881793 }, "geometry": { "type": "Point", "coordinates": [ 484725.0, 147554.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727499, "UPRN": 100061606763, "X_COORDINATE": 484750.0, "Y_COORDINATE": 147555.0, "LATITUDE": 51.2209087, "LONGITUDE": -0.7878212 }, "geometry": { "type": "Point", "coordinates": [ 484750.0, 147555.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727501, "UPRN": 100061606765, "X_COORDINATE": 484749.0, "Y_COORDINATE": 147559.0, "LATITUDE": 51.2209448, "LONGITUDE": -0.7878346 }, "geometry": { "type": "Point", "coordinates": [ 484749.0, 147559.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727506, "UPRN": 100061606770, "X_COORDINATE": 484715.0, "Y_COORDINATE": 147560.0, "LATITUDE": 51.2209588, "LONGITUDE": -0.7883211 }, "geometry": { "type": "Point", "coordinates": [ 484715.0, 147560.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727503, "UPRN": 100061606767, "X_COORDINATE": 484745.0, "Y_COORDINATE": 147567.0, "LATITUDE": 51.2210173, "LONGITUDE": -0.7878899 }, "geometry": { "type": "Point", "coordinates": [ 484745.0, 147567.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727505, "UPRN": 100061606769, "X_COORDINATE": 484743.0, "Y_COORDINATE": 147570.0, "LATITUDE": 51.2210446, "LONGITUDE": -0.7879179 }, "geometry": { "type": "Point", "coordinates": [ 484743.0, 147570.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727509, "UPRN": 100061606773, "X_COORDINATE": 484712.0, "Y_COORDINATE": 147575.0, "LATITUDE": 51.2210941, "LONGITUDE": -0.7883605 }, "geometry": { "type": "Point", "coordinates": [ 484712.0, 147575.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727508, "UPRN": 100061606772, "X_COORDINATE": 484739.0, "Y_COORDINATE": 147578.0, "LATITUDE": 51.2211171, "LONGITUDE": -0.7879732 }, "geometry": { "type": "Point", "coordinates": [ 484739.0, 147578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727510, "UPRN": 100061606774, "X_COORDINATE": 484737.0, "Y_COORDINATE": 147582.0, "LATITUDE": 51.2211533, "LONGITUDE": -0.7880009 }, "geometry": { "type": "Point", "coordinates": [ 484737.0, 147582.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727511, "UPRN": 100061606775, "X_COORDINATE": 484711.0, "Y_COORDINATE": 147583.0, "LATITUDE": 51.2211662, "LONGITUDE": -0.7883729 }, "geometry": { "type": "Point", "coordinates": [ 484711.0, 147583.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727513, "UPRN": 100061606777, "X_COORDINATE": 484708.0, "Y_COORDINATE": 147588.0, "LATITUDE": 51.2212116, "LONGITUDE": -0.7884147 }, "geometry": { "type": "Point", "coordinates": [ 484708.0, 147588.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727512, "UPRN": 100061606776, "X_COORDINATE": 484730.0, "Y_COORDINATE": 147595.0, "LATITUDE": 51.2212712, "LONGITUDE": -0.7880981 }, "geometry": { "type": "Point", "coordinates": [ 484730.0, 147595.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727514, "UPRN": 100061606778, "X_COORDINATE": 484724.0, "Y_COORDINATE": 147606.0, "LATITUDE": 51.221371, "LONGITUDE": -0.7881814 }, "geometry": { "type": "Point", "coordinates": [ 484724.0, 147606.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727515, "UPRN": 100061606779, "X_COORDINATE": 484705.0, "Y_COORDINATE": 147593.0, "LATITUDE": 51.221257, "LONGITUDE": -0.7884564 }, "geometry": { "type": "Point", "coordinates": [ 484705.0, 147593.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727516, "UPRN": 100061606780, "X_COORDINATE": 484721.0, "Y_COORDINATE": 147611.0, "LATITUDE": 51.2214164, "LONGITUDE": -0.7882231 }, "geometry": { "type": "Point", "coordinates": [ 484721.0, 147611.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727517, "UPRN": 100061606781, "X_COORDINATE": 484703.0, "Y_COORDINATE": 147596.0, "LATITUDE": 51.2212842, "LONGITUDE": -0.7884844 }, "geometry": { "type": "Point", "coordinates": [ 484703.0, 147596.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727518, "UPRN": 100061606782, "X_COORDINATE": 484719.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2214617, "LONGITUDE": -0.7882506 }, "geometry": { "type": "Point", "coordinates": [ 484719.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727519, "UPRN": 100061606783, "X_COORDINATE": 484701.0, "Y_COORDINATE": 147599.0, "LATITUDE": 51.2213115, "LONGITUDE": -0.7885123 }, "geometry": { "type": "Point", "coordinates": [ 484701.0, 147599.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727520, "UPRN": 100061606784, "X_COORDINATE": 484717.0, "Y_COORDINATE": 147619.0, "LATITUDE": 51.2214889, "LONGITUDE": -0.7882785 }, "geometry": { "type": "Point", "coordinates": [ 484717.0, 147619.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727521, "UPRN": 100061606785, "X_COORDINATE": 484699.0, "Y_COORDINATE": 147603.0, "LATITUDE": 51.2213478, "LONGITUDE": -0.78854 }, "geometry": { "type": "Point", "coordinates": [ 484699.0, 147603.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727522, "UPRN": 100061606786, "X_COORDINATE": 484714.0, "Y_COORDINATE": 147626.0, "LATITUDE": 51.2215523, "LONGITUDE": -0.7883198 }, "geometry": { "type": "Point", "coordinates": [ 484714.0, 147626.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727523, "UPRN": 100061606787, "X_COORDINATE": 484698.0, "Y_COORDINATE": 147608.0, "LATITUDE": 51.2213929, "LONGITUDE": -0.7885531 }, "geometry": { "type": "Point", "coordinates": [ 484698.0, 147608.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727524, "UPRN": 100061606788, "X_COORDINATE": 484713.0, "Y_COORDINATE": 147629.0, "LATITUDE": 51.2215794, "LONGITUDE": -0.7883334 }, "geometry": { "type": "Point", "coordinates": [ 484713.0, 147629.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727525, "UPRN": 100061606789, "X_COORDINATE": 484696.0, "Y_COORDINATE": 147611.0, "LATITUDE": 51.2214201, "LONGITUDE": -0.788581 }, "geometry": { "type": "Point", "coordinates": [ 484696.0, 147611.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727526, "UPRN": 100061606790, "X_COORDINATE": 484693.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2214565, "LONGITUDE": -0.788623 }, "geometry": { "type": "Point", "coordinates": [ 484693.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727527, "UPRN": 100061606791, "X_COORDINATE": 484692.0, "Y_COORDINATE": 147618.0, "LATITUDE": 51.2214837, "LONGITUDE": -0.7886367 }, "geometry": { "type": "Point", "coordinates": [ 484692.0, 147618.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729252, "UPRN": 100061608689, "X_COORDINATE": 484615.0, "Y_COORDINATE": 147541.0, "LATITUDE": 51.2208028, "LONGITUDE": -0.7897571 }, "geometry": { "type": "Point", "coordinates": [ 484615.0, 147541.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728214, "UPRN": 100061607499, "X_COORDINATE": 485199.0, "Y_COORDINATE": 147638.0, "LATITUDE": 51.2215881, "LONGITUDE": -0.7813737 }, "geometry": { "type": "Point", "coordinates": [ 485199.0, 147638.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447487, "UPRN": 10013893837, "X_COORDINATE": 485177.0, "Y_COORDINATE": 147644.0, "LATITUDE": 51.2216453, "LONGITUDE": -0.7816873 }, "geometry": { "type": "Point", "coordinates": [ 485177.0, 147644.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728212, "UPRN": 100061607497, "X_COORDINATE": 485200.0, "Y_COORDINATE": 147645.0, "LATITUDE": 51.2216509, "LONGITUDE": -0.7813577 }, "geometry": { "type": "Point", "coordinates": [ 485200.0, 147645.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447490, "UPRN": 10013893840, "X_COORDINATE": 485255.0, "Y_COORDINATE": 147649.0, "LATITUDE": 51.2216786, "LONGITUDE": -0.7805694 }, "geometry": { "type": "Point", "coordinates": [ 485255.0, 147649.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728210, "UPRN": 100061607495, "X_COORDINATE": 485200.0, "Y_COORDINATE": 147652.0, "LATITUDE": 51.2217138, "LONGITUDE": -0.7813561 }, "geometry": { "type": "Point", "coordinates": [ 485200.0, 147652.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728196, "UPRN": 100061607481, "X_COORDINATE": 485148.0, "Y_COORDINATE": 147660.0, "LATITUDE": 51.2217935, "LONGITUDE": -0.7820986 }, "geometry": { "type": "Point", "coordinates": [ 485148.0, 147660.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728223, "UPRN": 100061607508, "X_COORDINATE": 485241.0, "Y_COORDINATE": 147662.0, "LATITUDE": 51.2217976, "LONGITUDE": -0.7807668 }, "geometry": { "type": "Point", "coordinates": [ 485241.0, 147662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728229, "UPRN": 100061607514, "X_COORDINATE": 485241.0, "Y_COORDINATE": 147662.0, "LATITUDE": 51.2217976, "LONGITUDE": -0.7807668 }, "geometry": { "type": "Point", "coordinates": [ 485241.0, 147662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728235, "UPRN": 100061607520, "X_COORDINATE": 485241.0, "Y_COORDINATE": 147662.0, "LATITUDE": 51.2217976, "LONGITUDE": -0.7807668 }, "geometry": { "type": "Point", "coordinates": [ 485241.0, 147662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728198, "UPRN": 100061607483, "X_COORDINATE": 485161.0, "Y_COORDINATE": 147668.0, "LATITUDE": 51.2218634, "LONGITUDE": -0.7819106 }, "geometry": { "type": "Point", "coordinates": [ 485161.0, 147668.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447550, "UPRN": 10013893900, "X_COORDINATE": 485196.0, "Y_COORDINATE": 147669.0, "LATITUDE": 51.2218672, "LONGITUDE": -0.7814093 }, "geometry": { "type": "Point", "coordinates": [ 485196.0, 147669.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728200, "UPRN": 100061607485, "X_COORDINATE": 485168.0, "Y_COORDINATE": 147672.0, "LATITUDE": 51.2218984, "LONGITUDE": -0.7818095 }, "geometry": { "type": "Point", "coordinates": [ 485168.0, 147672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728225, "UPRN": 100061607510, "X_COORDINATE": 485235.0, "Y_COORDINATE": 147672.0, "LATITUDE": 51.2218884, "LONGITUDE": -0.7808503 }, "geometry": { "type": "Point", "coordinates": [ 485235.0, 147672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728231, "UPRN": 100061607516, "X_COORDINATE": 485235.0, "Y_COORDINATE": 147672.0, "LATITUDE": 51.2218884, "LONGITUDE": -0.7808503 }, "geometry": { "type": "Point", "coordinates": [ 485235.0, 147672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728237, "UPRN": 100061607522, "X_COORDINATE": 485235.0, "Y_COORDINATE": 147672.0, "LATITUDE": 51.2218884, "LONGITUDE": -0.7808503 }, "geometry": { "type": "Point", "coordinates": [ 485235.0, 147672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728219, "UPRN": 100061607504, "X_COORDINATE": 485250.0, "Y_COORDINATE": 147673.0, "LATITUDE": 51.2218951, "LONGITUDE": -0.7806353 }, "geometry": { "type": "Point", "coordinates": [ 485250.0, 147673.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728227, "UPRN": 100061607512, "X_COORDINATE": 485250.0, "Y_COORDINATE": 147673.0, "LATITUDE": 51.2218951, "LONGITUDE": -0.7806353 }, "geometry": { "type": "Point", "coordinates": [ 485250.0, 147673.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728233, "UPRN": 100061607518, "X_COORDINATE": 485250.0, "Y_COORDINATE": 147673.0, "LATITUDE": 51.2218951, "LONGITUDE": -0.7806353 }, "geometry": { "type": "Point", "coordinates": [ 485250.0, 147673.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728239, "UPRN": 100061607524, "X_COORDINATE": 485247.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.2215629, "LONGITUDE": -0.780687 }, "geometry": { "type": "Point", "coordinates": [ 485247.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728241, "UPRN": 100061607526, "X_COORDINATE": 485239.0, "Y_COORDINATE": 147625.0, "LATITUDE": 51.2214652, "LONGITUDE": -0.7808042 }, "geometry": { "type": "Point", "coordinates": [ 485239.0, 147625.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728243, "UPRN": 100061607528, "X_COORDINATE": 485233.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.221565, "LONGITUDE": -0.7808875 }, "geometry": { "type": "Point", "coordinates": [ 485233.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728245, "UPRN": 100061607530, "X_COORDINATE": 485247.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.2215629, "LONGITUDE": -0.780687 }, "geometry": { "type": "Point", "coordinates": [ 485247.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728246, "UPRN": 100061607531, "X_COORDINATE": 485239.0, "Y_COORDINATE": 147625.0, "LATITUDE": 51.2214652, "LONGITUDE": -0.7808042 }, "geometry": { "type": "Point", "coordinates": [ 485239.0, 147625.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728247, "UPRN": 100061607532, "X_COORDINATE": 485233.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.221565, "LONGITUDE": -0.7808875 }, "geometry": { "type": "Point", "coordinates": [ 485233.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728248, "UPRN": 100061607533, "X_COORDINATE": 485247.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.2215629, "LONGITUDE": -0.780687 }, "geometry": { "type": "Point", "coordinates": [ 485247.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728249, "UPRN": 100061607534, "X_COORDINATE": 485239.0, "Y_COORDINATE": 147625.0, "LATITUDE": 51.2214652, "LONGITUDE": -0.7808042 }, "geometry": { "type": "Point", "coordinates": [ 485239.0, 147625.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728250, "UPRN": 100061607535, "X_COORDINATE": 485233.0, "Y_COORDINATE": 147636.0, "LATITUDE": 51.221565, "LONGITUDE": -0.7808875 }, "geometry": { "type": "Point", "coordinates": [ 485233.0, 147636.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728251, "UPRN": 100061607536, "X_COORDINATE": 485228.0, "Y_COORDINATE": 147613.0, "LATITUDE": 51.221359, "LONGITUDE": -0.7809645 }, "geometry": { "type": "Point", "coordinates": [ 485228.0, 147613.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728252, "UPRN": 100061607537, "X_COORDINATE": 485227.0, "Y_COORDINATE": 147606.0, "LATITUDE": 51.2212962, "LONGITUDE": -0.7809805 }, "geometry": { "type": "Point", "coordinates": [ 485227.0, 147606.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728253, "UPRN": 100061607538, "X_COORDINATE": 485225.0, "Y_COORDINATE": 147600.0, "LATITUDE": 51.2212426, "LONGITUDE": -0.7810105 }, "geometry": { "type": "Point", "coordinates": [ 485225.0, 147600.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728254, "UPRN": 100061607539, "X_COORDINATE": 485224.0, "Y_COORDINATE": 147593.0, "LATITUDE": 51.2211798, "LONGITUDE": -0.7810265 }, "geometry": { "type": "Point", "coordinates": [ 485224.0, 147593.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728255, "UPRN": 100061607540, "X_COORDINATE": 485223.0, "Y_COORDINATE": 147586.0, "LATITUDE": 51.221117, "LONGITUDE": -0.7810425 }, "geometry": { "type": "Point", "coordinates": [ 485223.0, 147586.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728256, "UPRN": 100061607541, "X_COORDINATE": 485222.0, "Y_COORDINATE": 147579.0, "LATITUDE": 51.2210542, "LONGITUDE": -0.7810584 }, "geometry": { "type": "Point", "coordinates": [ 485222.0, 147579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728257, "UPRN": 100061607542, "X_COORDINATE": 485223.0, "Y_COORDINATE": 147571.0, "LATITUDE": 51.2209822, "LONGITUDE": -0.781046 }, "geometry": { "type": "Point", "coordinates": [ 485223.0, 147571.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728258, "UPRN": 100061607543, "X_COORDINATE": 485220.0, "Y_COORDINATE": 147564.0, "LATITUDE": 51.2209197, "LONGITUDE": -0.7810906 }, "geometry": { "type": "Point", "coordinates": [ 485220.0, 147564.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724535, "UPRN": 100061603660, "X_COORDINATE": 485187.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210415, "LONGITUDE": -0.78156 }, "geometry": { "type": "Point", "coordinates": [ 485187.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724534, "UPRN": 100061603659, "X_COORDINATE": 485187.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210415, "LONGITUDE": -0.78156 }, "geometry": { "type": "Point", "coordinates": [ 485187.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724533, "UPRN": 100061603658, "X_COORDINATE": 485192.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210407, "LONGITUDE": -0.7814884 }, "geometry": { "type": "Point", "coordinates": [ 485192.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724532, "UPRN": 100061603657, "X_COORDINATE": 485192.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210407, "LONGITUDE": -0.7814884 }, "geometry": { "type": "Point", "coordinates": [ 485192.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724531, "UPRN": 100061603656, "X_COORDINATE": 485198.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210398, "LONGITUDE": -0.7814025 }, "geometry": { "type": "Point", "coordinates": [ 485198.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724530, "UPRN": 100061603655, "X_COORDINATE": 485198.0, "Y_COORDINATE": 147577.0, "LATITUDE": 51.2210398, "LONGITUDE": -0.7814025 }, "geometry": { "type": "Point", "coordinates": [ 485198.0, 147577.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724537, "UPRN": 100061603662, "X_COORDINATE": 485180.0, "Y_COORDINATE": 147578.0, "LATITUDE": 51.2210515, "LONGITUDE": -0.78166 }, "geometry": { "type": "Point", "coordinates": [ 485180.0, 147578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724536, "UPRN": 100061603661, "X_COORDINATE": 485180.0, "Y_COORDINATE": 147578.0, "LATITUDE": 51.2210515, "LONGITUDE": -0.78166 }, "geometry": { "type": "Point", "coordinates": [ 485180.0, 147578.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724541, "UPRN": 100061603666, "X_COORDINATE": 485169.0, "Y_COORDINATE": 147579.0, "LATITUDE": 51.2210621, "LONGITUDE": -0.7818172 }, "geometry": { "type": "Point", "coordinates": [ 485169.0, 147579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724540, "UPRN": 100061603665, "X_COORDINATE": 485169.0, "Y_COORDINATE": 147579.0, "LATITUDE": 51.2210621, "LONGITUDE": -0.7818172 }, "geometry": { "type": "Point", "coordinates": [ 485169.0, 147579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724539, "UPRN": 100061603664, "X_COORDINATE": 485174.0, "Y_COORDINATE": 147579.0, "LATITUDE": 51.2210614, "LONGITUDE": -0.7817456 }, "geometry": { "type": "Point", "coordinates": [ 485174.0, 147579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724538, "UPRN": 100061603663, "X_COORDINATE": 485174.0, "Y_COORDINATE": 147579.0, "LATITUDE": 51.2210614, "LONGITUDE": -0.7817456 }, "geometry": { "type": "Point", "coordinates": [ 485174.0, 147579.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724543, "UPRN": 100061603668, "X_COORDINATE": 485163.0, "Y_COORDINATE": 147580.0, "LATITUDE": 51.221072, "LONGITUDE": -0.7819028 }, "geometry": { "type": "Point", "coordinates": [ 485163.0, 147580.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724542, "UPRN": 100061603667, "X_COORDINATE": 485163.0, "Y_COORDINATE": 147580.0, "LATITUDE": 51.221072, "LONGITUDE": -0.7819028 }, "geometry": { "type": "Point", "coordinates": [ 485163.0, 147580.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724545, "UPRN": 100061603670, "X_COORDINATE": 485156.0, "Y_COORDINATE": 147581.0, "LATITUDE": 51.2210821, "LONGITUDE": -0.7820028 }, "geometry": { "type": "Point", "coordinates": [ 485156.0, 147581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724544, "UPRN": 100061603669, "X_COORDINATE": 485156.0, "Y_COORDINATE": 147581.0, "LATITUDE": 51.2210821, "LONGITUDE": -0.7820028 }, "geometry": { "type": "Point", "coordinates": [ 485156.0, 147581.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724547, "UPRN": 100061603672, "X_COORDINATE": 485151.0, "Y_COORDINATE": 147583.0, "LATITUDE": 51.2211008, "LONGITUDE": -0.7820739 }, "geometry": { "type": "Point", "coordinates": [ 485151.0, 147583.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724546, "UPRN": 100061603671, "X_COORDINATE": 485151.0, "Y_COORDINATE": 147583.0, "LATITUDE": 51.2211008, "LONGITUDE": -0.7820739 }, "geometry": { "type": "Point", "coordinates": [ 485151.0, 147583.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724549, "UPRN": 100061603674, "X_COORDINATE": 485157.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2213876, "LONGITUDE": -0.7819804 }, "geometry": { "type": "Point", "coordinates": [ 485157.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724550, "UPRN": 100061603675, "X_COORDINATE": 485157.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2213876, "LONGITUDE": -0.7819804 }, "geometry": { "type": "Point", "coordinates": [ 485157.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724551, "UPRN": 100061603676, "X_COORDINATE": 485163.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2213867, "LONGITUDE": -0.7818945 }, "geometry": { "type": "Point", "coordinates": [ 485163.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724552, "UPRN": 100061603677, "X_COORDINATE": 485163.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2213867, "LONGITUDE": -0.7818945 }, "geometry": { "type": "Point", "coordinates": [ 485163.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724556, "UPRN": 100061603681, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147612.0, "LATITUDE": 51.2213579, "LONGITUDE": -0.7817235 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724553, "UPRN": 100061603678, "X_COORDINATE": 485169.0, "Y_COORDINATE": 147612.0, "LATITUDE": 51.2213588, "LONGITUDE": -0.7818094 }, "geometry": { "type": "Point", "coordinates": [ 485169.0, 147612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724554, "UPRN": 100061603679, "X_COORDINATE": 485169.0, "Y_COORDINATE": 147612.0, "LATITUDE": 51.2213588, "LONGITUDE": -0.7818094 }, "geometry": { "type": "Point", "coordinates": [ 485169.0, 147612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724555, "UPRN": 100061603680, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147612.0, "LATITUDE": 51.2213579, "LONGITUDE": -0.7817235 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147612.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724558, "UPRN": 100061603683, "X_COORDINATE": 485180.0, "Y_COORDINATE": 147611.0, "LATITUDE": 51.2213482, "LONGITUDE": -0.7816521 }, "geometry": { "type": "Point", "coordinates": [ 485180.0, 147611.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724557, "UPRN": 100061603682, "X_COORDINATE": 485180.0, "Y_COORDINATE": 147611.0, "LATITUDE": 51.2213482, "LONGITUDE": -0.7816521 }, "geometry": { "type": "Point", "coordinates": [ 485180.0, 147611.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724548, "UPRN": 100061603673, "X_COORDINATE": 485143.0, "Y_COORDINATE": 147603.0, "LATITUDE": 51.2212818, "LONGITUDE": -0.7821837 }, "geometry": { "type": "Point", "coordinates": [ 485143.0, 147603.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728216, "UPRN": 100061607501, "X_COORDINATE": 485198.0, "Y_COORDINATE": 147630.0, "LATITUDE": 51.2215163, "LONGITUDE": -0.7813899 }, "geometry": { "type": "Point", "coordinates": [ 485198.0, 147630.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728218, "UPRN": 100061607503, "X_COORDINATE": 485196.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2213907, "LONGITUDE": -0.7814219 }, "geometry": { "type": "Point", "coordinates": [ 485196.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728220, "UPRN": 100061607505, "X_COORDINATE": 485195.0, "Y_COORDINATE": 147590.0, "LATITUDE": 51.2211572, "LONGITUDE": -0.7814424 }, "geometry": { "type": "Point", "coordinates": [ 485195.0, 147590.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728221, "UPRN": 100061607506, "X_COORDINATE": 485196.0, "Y_COORDINATE": 147597.0, "LATITUDE": 51.2212199, "LONGITUDE": -0.7814264 }, "geometry": { "type": "Point", "coordinates": [ 485196.0, 147597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728222, "UPRN": 100061607507, "X_COORDINATE": 485195.0, "Y_COORDINATE": 147610.0, "LATITUDE": 51.221337, "LONGITUDE": -0.7814376 }, "geometry": { "type": "Point", "coordinates": [ 485195.0, 147610.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728131, "UPRN": 100061607416, "X_COORDINATE": 485083.0, "Y_COORDINATE": 147735.0, "LATITUDE": 51.2224774, "LONGITUDE": -0.7830114 }, "geometry": { "type": "Point", "coordinates": [ 485083.0, 147735.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728132, "UPRN": 100061607417, "X_COORDINATE": 485079.0, "Y_COORDINATE": 147740.0, "LATITUDE": 51.222523, "LONGITUDE": -0.7830675 }, "geometry": { "type": "Point", "coordinates": [ 485079.0, 147740.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728172, "UPRN": 100061607457, "X_COORDINATE": 485143.0, "Y_COORDINATE": 147742.0, "LATITUDE": 51.2225314, "LONGITUDE": -0.7821508 }, "geometry": { "type": "Point", "coordinates": [ 485143.0, 147742.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728170, "UPRN": 100061607455, "X_COORDINATE": 485150.0, "Y_COORDINATE": 147746.0, "LATITUDE": 51.2225663, "LONGITUDE": -0.7820496 }, "geometry": { "type": "Point", "coordinates": [ 485150.0, 147746.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728168, "UPRN": 100061607453, "X_COORDINATE": 485160.0, "Y_COORDINATE": 147755.0, "LATITUDE": 51.2226457, "LONGITUDE": -0.7819043 }, "geometry": { "type": "Point", "coordinates": [ 485160.0, 147755.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728146, "UPRN": 100061607431, "X_COORDINATE": 485097.0, "Y_COORDINATE": 147777.0, "LATITUDE": 51.2228529, "LONGITUDE": -0.782801 }, "geometry": { "type": "Point", "coordinates": [ 485097.0, 147777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728148, "UPRN": 100061607433, "X_COORDINATE": 485097.0, "Y_COORDINATE": 147777.0, "LATITUDE": 51.2228529, "LONGITUDE": -0.782801 }, "geometry": { "type": "Point", "coordinates": [ 485097.0, 147777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728150, "UPRN": 100061607435, "X_COORDINATE": 485104.0, "Y_COORDINATE": 147777.0, "LATITUDE": 51.2228519, "LONGITUDE": -0.7827008 }, "geometry": { "type": "Point", "coordinates": [ 485104.0, 147777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728152, "UPRN": 100061607437, "X_COORDINATE": 485104.0, "Y_COORDINATE": 147777.0, "LATITUDE": 51.2228519, "LONGITUDE": -0.7827008 }, "geometry": { "type": "Point", "coordinates": [ 485104.0, 147777.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728154, "UPRN": 100061607439, "X_COORDINATE": 485120.0, "Y_COORDINATE": 147779.0, "LATITUDE": 51.2228675, "LONGITUDE": -0.7824713 }, "geometry": { "type": "Point", "coordinates": [ 485120.0, 147779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728156, "UPRN": 100061607441, "X_COORDINATE": 485120.0, "Y_COORDINATE": 147779.0, "LATITUDE": 51.2228675, "LONGITUDE": -0.7824713 }, "geometry": { "type": "Point", "coordinates": [ 485120.0, 147779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728138, "UPRN": 100061607423, "X_COORDINATE": 485073.0, "Y_COORDINATE": 147780.0, "LATITUDE": 51.2228834, "LONGITUDE": -0.7831439 }, "geometry": { "type": "Point", "coordinates": [ 485073.0, 147780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728140, "UPRN": 100061607425, "X_COORDINATE": 485073.0, "Y_COORDINATE": 147780.0, "LATITUDE": 51.2228834, "LONGITUDE": -0.7831439 }, "geometry": { "type": "Point", "coordinates": [ 485073.0, 147780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728142, "UPRN": 100061607427, "X_COORDINATE": 485082.0, "Y_COORDINATE": 147780.0, "LATITUDE": 51.2228821, "LONGITUDE": -0.7830151 }, "geometry": { "type": "Point", "coordinates": [ 485082.0, 147780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728144, "UPRN": 100061607429, "X_COORDINATE": 485082.0, "Y_COORDINATE": 147780.0, "LATITUDE": 51.2228821, "LONGITUDE": -0.7830151 }, "geometry": { "type": "Point", "coordinates": [ 485082.0, 147780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728158, "UPRN": 100061607443, "X_COORDINATE": 485128.0, "Y_COORDINATE": 147780.0, "LATITUDE": 51.2228753, "LONGITUDE": -0.7823565 }, "geometry": { "type": "Point", "coordinates": [ 485128.0, 147780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728160, "UPRN": 100061607445, "X_COORDINATE": 485128.0, "Y_COORDINATE": 147780.0, "LATITUDE": 51.2228753, "LONGITUDE": -0.7823565 }, "geometry": { "type": "Point", "coordinates": [ 485128.0, 147780.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728162, "UPRN": 100061607447, "X_COORDINATE": 485144.0, "Y_COORDINATE": 147782.0, "LATITUDE": 51.2228909, "LONGITUDE": -0.782127 }, "geometry": { "type": "Point", "coordinates": [ 485144.0, 147782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728164, "UPRN": 100061607449, "X_COORDINATE": 485151.0, "Y_COORDINATE": 147782.0, "LATITUDE": 51.2228898, "LONGITUDE": -0.7820268 }, "geometry": { "type": "Point", "coordinates": [ 485151.0, 147782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728136, "UPRN": 100061607421, "X_COORDINATE": 485060.0, "Y_COORDINATE": 147783.0, "LATITUDE": 51.2229124, "LONGITUDE": -0.7833293 }, "geometry": { "type": "Point", "coordinates": [ 485060.0, 147783.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728174, "UPRN": 100061607459, "X_COORDINATE": 485131.0, "Y_COORDINATE": 147739.0, "LATITUDE": 51.2225062, "LONGITUDE": -0.7823233 }, "geometry": { "type": "Point", "coordinates": [ 485131.0, 147739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728176, "UPRN": 100061607461, "X_COORDINATE": 485124.0, "Y_COORDINATE": 147735.0, "LATITUDE": 51.2224713, "LONGITUDE": -0.7824244 }, "geometry": { "type": "Point", "coordinates": [ 485124.0, 147735.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728178, "UPRN": 100061607463, "X_COORDINATE": 485112.0, "Y_COORDINATE": 147729.0, "LATITUDE": 51.2224191, "LONGITUDE": -0.7825977 }, "geometry": { "type": "Point", "coordinates": [ 485112.0, 147729.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728180, "UPRN": 100061607465, "X_COORDINATE": 485109.0, "Y_COORDINATE": 147722.0, "LATITUDE": 51.2223567, "LONGITUDE": -0.7826423 }, "geometry": { "type": "Point", "coordinates": [ 485109.0, 147722.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728182, "UPRN": 100061607467, "X_COORDINATE": 485106.0, "Y_COORDINATE": 147707.0, "LATITUDE": 51.2222223, "LONGITUDE": -0.7826888 }, "geometry": { "type": "Point", "coordinates": [ 485106.0, 147707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728184, "UPRN": 100061607469, "X_COORDINATE": 485108.0, "Y_COORDINATE": 147702.0, "LATITUDE": 51.222177, "LONGITUDE": -0.7826613 }, "geometry": { "type": "Point", "coordinates": [ 485108.0, 147702.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728186, "UPRN": 100061607471, "X_COORDINATE": 485113.0, "Y_COORDINATE": 147689.0, "LATITUDE": 51.2220594, "LONGITUDE": -0.7825928 }, "geometry": { "type": "Point", "coordinates": [ 485113.0, 147689.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728188, "UPRN": 100061607473, "X_COORDINATE": 485115.0, "Y_COORDINATE": 147684.0, "LATITUDE": 51.2220141, "LONGITUDE": -0.7825654 }, "geometry": { "type": "Point", "coordinates": [ 485115.0, 147684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728190, "UPRN": 100061607475, "X_COORDINATE": 485125.0, "Y_COORDINATE": 147675.0, "LATITUDE": 51.2219317, "LONGITUDE": -0.7824243 }, "geometry": { "type": "Point", "coordinates": [ 485125.0, 147675.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728192, "UPRN": 100061607477, "X_COORDINATE": 485129.0, "Y_COORDINATE": 147668.0, "LATITUDE": 51.2218682, "LONGITUDE": -0.7823687 }, "geometry": { "type": "Point", "coordinates": [ 485129.0, 147668.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728194, "UPRN": 100061607479, "X_COORDINATE": 485142.0, "Y_COORDINATE": 147662.0, "LATITUDE": 51.2218123, "LONGITUDE": -0.782184 }, "geometry": { "type": "Point", "coordinates": [ 485142.0, 147662.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122683, "UPRN": 100062162407, "X_COORDINATE": 485035.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2225924, "LONGITUDE": -0.7836957 }, "geometry": { "type": "Point", "coordinates": [ 485035.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728134, "UPRN": 100061607419, "X_COORDINATE": 485053.0, "Y_COORDINATE": 147782.0, "LATITUDE": 51.2229044, "LONGITUDE": -0.7834298 }, "geometry": { "type": "Point", "coordinates": [ 485053.0, 147782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728202, "UPRN": 100061607487, "X_COORDINATE": 485178.0, "Y_COORDINATE": 147681.0, "LATITUDE": 51.2219778, "LONGITUDE": -0.7816642 }, "geometry": { "type": "Point", "coordinates": [ 485178.0, 147681.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728208, "UPRN": 100061607493, "X_COORDINATE": 485184.0, "Y_COORDINATE": 147685.0, "LATITUDE": 51.2220129, "LONGITUDE": -0.7815773 }, "geometry": { "type": "Point", "coordinates": [ 485184.0, 147685.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728205, "UPRN": 100061607490, "X_COORDINATE": 485197.0, "Y_COORDINATE": 147690.0, "LATITUDE": 51.2220559, "LONGITUDE": -0.78139 }, "geometry": { "type": "Point", "coordinates": [ 485197.0, 147690.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728204, "UPRN": 100061607489, "X_COORDINATE": 485197.0, "Y_COORDINATE": 147690.0, "LATITUDE": 51.2220559, "LONGITUDE": -0.78139 }, "geometry": { "type": "Point", "coordinates": [ 485197.0, 147690.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728207, "UPRN": 100061607492, "X_COORDINATE": 485203.0, "Y_COORDINATE": 147691.0, "LATITUDE": 51.222064, "LONGITUDE": -0.7813039 }, "geometry": { "type": "Point", "coordinates": [ 485203.0, 147691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728206, "UPRN": 100061607491, "X_COORDINATE": 485203.0, "Y_COORDINATE": 147691.0, "LATITUDE": 51.222064, "LONGITUDE": -0.7813039 }, "geometry": { "type": "Point", "coordinates": [ 485203.0, 147691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447491, "UPRN": 10013893841, "X_COORDINATE": 485262.0, "Y_COORDINATE": 147692.0, "LATITUDE": 51.2220641, "LONGITUDE": -0.780459 }, "geometry": { "type": "Point", "coordinates": [ 485262.0, 147692.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728209, "UPRN": 100061607494, "X_COORDINATE": 485236.0, "Y_COORDINATE": 147703.0, "LATITUDE": 51.2221669, "LONGITUDE": -0.7808286 }, "geometry": { "type": "Point", "coordinates": [ 485236.0, 147703.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728213, "UPRN": 100061607498, "X_COORDINATE": 485250.0, "Y_COORDINATE": 147706.0, "LATITUDE": 51.2221918, "LONGITUDE": -0.7806275 }, "geometry": { "type": "Point", "coordinates": [ 485250.0, 147706.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728211, "UPRN": 100061607496, "X_COORDINATE": 485242.0, "Y_COORDINATE": 147706.0, "LATITUDE": 51.222193, "LONGITUDE": -0.780742 }, "geometry": { "type": "Point", "coordinates": [ 485242.0, 147706.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728215, "UPRN": 100061607500, "X_COORDINATE": 485257.0, "Y_COORDINATE": 147707.0, "LATITUDE": 51.2221997, "LONGITUDE": -0.780527 }, "geometry": { "type": "Point", "coordinates": [ 485257.0, 147707.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728217, "UPRN": 100061607502, "X_COORDINATE": 485263.0, "Y_COORDINATE": 147711.0, "LATITUDE": 51.2222348, "LONGITUDE": -0.7804402 }, "geometry": { "type": "Point", "coordinates": [ 485263.0, 147711.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728203, "UPRN": 100061607488, "X_COORDINATE": 485226.0, "Y_COORDINATE": 147721.0, "LATITUDE": 51.2223302, "LONGITUDE": -0.7809675 }, "geometry": { "type": "Point", "coordinates": [ 485226.0, 147721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728201, "UPRN": 100061607486, "X_COORDINATE": 485222.0, "Y_COORDINATE": 147727.0, "LATITUDE": 51.2223848, "LONGITUDE": -0.7810233 }, "geometry": { "type": "Point", "coordinates": [ 485222.0, 147727.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728199, "UPRN": 100061607484, "X_COORDINATE": 485220.0, "Y_COORDINATE": 147734.0, "LATITUDE": 51.222448, "LONGITUDE": -0.7810503 }, "geometry": { "type": "Point", "coordinates": [ 485220.0, 147734.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728197, "UPRN": 100061607482, "X_COORDINATE": 485218.0, "Y_COORDINATE": 147739.0, "LATITUDE": 51.2224932, "LONGITUDE": -0.7810778 }, "geometry": { "type": "Point", "coordinates": [ 485218.0, 147739.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728195, "UPRN": 100061607480, "X_COORDINATE": 485215.0, "Y_COORDINATE": 147745.0, "LATITUDE": 51.2225476, "LONGITUDE": -0.7811193 }, "geometry": { "type": "Point", "coordinates": [ 485215.0, 147745.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728166, "UPRN": 100061607451, "X_COORDINATE": 485166.0, "Y_COORDINATE": 147759.0, "LATITUDE": 51.2226808, "LONGITUDE": -0.7818175 }, "geometry": { "type": "Point", "coordinates": [ 485166.0, 147759.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447488, "UPRN": 10013893838, "X_COORDINATE": 485233.0, "Y_COORDINATE": 147761.0, "LATITUDE": 51.2226888, "LONGITUDE": -0.7808578 }, "geometry": { "type": "Point", "coordinates": [ 485233.0, 147761.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444443, "UPRN": 10013890622, "X_COORDINATE": 485172.0, "Y_COORDINATE": 147761.0, "LATITUDE": 51.2226979, "LONGITUDE": -0.7817311 }, "geometry": { "type": "Point", "coordinates": [ 485172.0, 147761.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728193, "UPRN": 100061607478, "X_COORDINATE": 485221.0, "Y_COORDINATE": 147764.0, "LATITUDE": 51.2227176, "LONGITUDE": -0.7810289 }, "geometry": { "type": "Point", "coordinates": [ 485221.0, 147764.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728191, "UPRN": 100061607476, "X_COORDINATE": 485217.0, "Y_COORDINATE": 147770.0, "LATITUDE": 51.2227721, "LONGITUDE": -0.7810847 }, "geometry": { "type": "Point", "coordinates": [ 485217.0, 147770.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728151, "UPRN": 100061607436, "X_COORDINATE": 485137.0, "Y_COORDINATE": 147813.0, "LATITUDE": 51.2231706, "LONGITUDE": -0.7822198 }, "geometry": { "type": "Point", "coordinates": [ 485137.0, 147813.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728147, "UPRN": 100061607432, "X_COORDINATE": 485107.0, "Y_COORDINATE": 147816.0, "LATITUDE": 51.223202, "LONGITUDE": -0.7826486 }, "geometry": { "type": "Point", "coordinates": [ 485107.0, 147816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728149, "UPRN": 100061607434, "X_COORDINATE": 485115.0, "Y_COORDINATE": 147816.0, "LATITUDE": 51.2232008, "LONGITUDE": -0.7825341 }, "geometry": { "type": "Point", "coordinates": [ 485115.0, 147816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728135, "UPRN": 100061607420, "X_COORDINATE": 485065.0, "Y_COORDINATE": 147817.0, "LATITUDE": 51.2232173, "LONGITUDE": -0.7832497 }, "geometry": { "type": "Point", "coordinates": [ 485065.0, 147817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728137, "UPRN": 100061607422, "X_COORDINATE": 485072.0, "Y_COORDINATE": 147817.0, "LATITUDE": 51.2232162, "LONGITUDE": -0.7831495 }, "geometry": { "type": "Point", "coordinates": [ 485072.0, 147817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728153, "UPRN": 100061607438, "X_COORDINATE": 485142.0, "Y_COORDINATE": 147819.0, "LATITUDE": 51.2232238, "LONGITUDE": -0.7821468 }, "geometry": { "type": "Point", "coordinates": [ 485142.0, 147819.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728139, "UPRN": 100061607424, "X_COORDINATE": 485086.0, "Y_COORDINATE": 147824.0, "LATITUDE": 51.2232771, "LONGITUDE": -0.7829474 }, "geometry": { "type": "Point", "coordinates": [ 485086.0, 147824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728141, "UPRN": 100061607426, "X_COORDINATE": 485086.0, "Y_COORDINATE": 147824.0, "LATITUDE": 51.2232771, "LONGITUDE": -0.7829474 }, "geometry": { "type": "Point", "coordinates": [ 485086.0, 147824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728143, "UPRN": 100061607428, "X_COORDINATE": 485094.0, "Y_COORDINATE": 147824.0, "LATITUDE": 51.2232759, "LONGITUDE": -0.7828328 }, "geometry": { "type": "Point", "coordinates": [ 485094.0, 147824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728145, "UPRN": 100061607430, "X_COORDINATE": 485094.0, "Y_COORDINATE": 147824.0, "LATITUDE": 51.2232759, "LONGITUDE": -0.7828328 }, "geometry": { "type": "Point", "coordinates": [ 485094.0, 147824.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728155, "UPRN": 100061607440, "X_COORDINATE": 485136.0, "Y_COORDINATE": 147839.0, "LATITUDE": 51.2234045, "LONGITUDE": -0.782228 }, "geometry": { "type": "Point", "coordinates": [ 485136.0, 147839.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728157, "UPRN": 100061607442, "X_COORDINATE": 485133.0, "Y_COORDINATE": 147846.0, "LATITUDE": 51.2234679, "LONGITUDE": -0.7822693 }, "geometry": { "type": "Point", "coordinates": [ 485133.0, 147846.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728171, "UPRN": 100061607456, "X_COORDINATE": 485173.0, "Y_COORDINATE": 147856.0, "LATITUDE": 51.2235518, "LONGITUDE": -0.7816943 }, "geometry": { "type": "Point", "coordinates": [ 485173.0, 147856.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728159, "UPRN": 100061607444, "X_COORDINATE": 485130.0, "Y_COORDINATE": 147860.0, "LATITUDE": 51.2235942, "LONGITUDE": -0.7823089 }, "geometry": { "type": "Point", "coordinates": [ 485130.0, 147860.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728161, "UPRN": 100061607446, "X_COORDINATE": 485132.0, "Y_COORDINATE": 147868.0, "LATITUDE": 51.2236658, "LONGITUDE": -0.7822784 }, "geometry": { "type": "Point", "coordinates": [ 485132.0, 147868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728169, "UPRN": 100061607454, "X_COORDINATE": 485168.0, "Y_COORDINATE": 147868.0, "LATITUDE": 51.2236604, "LONGITUDE": -0.781763 }, "geometry": { "type": "Point", "coordinates": [ 485168.0, 147868.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728167, "UPRN": 100061607452, "X_COORDINATE": 485164.0, "Y_COORDINATE": 147874.0, "LATITUDE": 51.223715, "LONGITUDE": -0.7818188 }, "geometry": { "type": "Point", "coordinates": [ 485164.0, 147874.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728163, "UPRN": 100061607448, "X_COORDINATE": 485142.0, "Y_COORDINATE": 147878.0, "LATITUDE": 51.2237542, "LONGITUDE": -0.7821329 }, "geometry": { "type": "Point", "coordinates": [ 485142.0, 147878.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728165, "UPRN": 100061607450, "X_COORDINATE": 485149.0, "Y_COORDINATE": 147879.0, "LATITUDE": 51.2237621, "LONGITUDE": -0.7820324 }, "geometry": { "type": "Point", "coordinates": [ 485149.0, 147879.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443877, "UPRN": 10013889963, "X_COORDINATE": 485088.0, "Y_COORDINATE": 147919.0, "LATITUDE": 51.2241308, "LONGITUDE": -0.7828962 }, "geometry": { "type": "Point", "coordinates": [ 485088.0, 147919.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728173, "UPRN": 100061607458, "X_COORDINATE": 485173.0, "Y_COORDINATE": 147849.0, "LATITUDE": 51.2234889, "LONGITUDE": -0.7816959 }, "geometry": { "type": "Point", "coordinates": [ 485173.0, 147849.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728175, "UPRN": 100061607460, "X_COORDINATE": 485190.0, "Y_COORDINATE": 147840.0, "LATITUDE": 51.2234054, "LONGITUDE": -0.7814547 }, "geometry": { "type": "Point", "coordinates": [ 485190.0, 147840.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728177, "UPRN": 100061607462, "X_COORDINATE": 485192.0, "Y_COORDINATE": 147833.0, "LATITUDE": 51.2233422, "LONGITUDE": -0.7814277 }, "geometry": { "type": "Point", "coordinates": [ 485192.0, 147833.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728179, "UPRN": 100061607464, "X_COORDINATE": 485178.0, "Y_COORDINATE": 147818.0, "LATITUDE": 51.2232094, "LONGITUDE": -0.7816317 }, "geometry": { "type": "Point", "coordinates": [ 485178.0, 147818.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728181, "UPRN": 100061607466, "X_COORDINATE": 485180.0, "Y_COORDINATE": 147810.0, "LATITUDE": 51.2231372, "LONGITUDE": -0.7816049 }, "geometry": { "type": "Point", "coordinates": [ 485180.0, 147810.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728183, "UPRN": 100061607468, "X_COORDINATE": 485185.0, "Y_COORDINATE": 147798.0, "LATITUDE": 51.2230286, "LONGITUDE": -0.7815362 }, "geometry": { "type": "Point", "coordinates": [ 485185.0, 147798.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728185, "UPRN": 100061607470, "X_COORDINATE": 485188.0, "Y_COORDINATE": 147791.0, "LATITUDE": 51.2229652, "LONGITUDE": -0.7814949 }, "geometry": { "type": "Point", "coordinates": [ 485188.0, 147791.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728187, "UPRN": 100061607472, "X_COORDINATE": 485196.0, "Y_COORDINATE": 147782.0, "LATITUDE": 51.2228831, "LONGITUDE": -0.7813825 }, "geometry": { "type": "Point", "coordinates": [ 485196.0, 147782.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728189, "UPRN": 100061607474, "X_COORDINATE": 485200.0, "Y_COORDINATE": 147775.0, "LATITUDE": 51.2228196, "LONGITUDE": -0.7813269 }, "geometry": { "type": "Point", "coordinates": [ 485200.0, 147775.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728130, "UPRN": 100061607415, "X_COORDINATE": 485047.0, "Y_COORDINATE": 147817.0, "LATITUDE": 51.22322, "LONGITUDE": -0.7835074 }, "geometry": { "type": "Point", "coordinates": [ 485047.0, 147817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31728133, "UPRN": 100061607418, "X_COORDINATE": 485053.0, "Y_COORDINATE": 147816.0, "LATITUDE": 51.2232101, "LONGITUDE": -0.7834217 }, "geometry": { "type": "Point", "coordinates": [ 485053.0, 147816.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217500, "UPRN": 100062355387, "X_COORDINATE": 485041.0, "Y_COORDINATE": 147834.0, "LATITUDE": 51.2233737, "LONGITUDE": -0.7835893 }, "geometry": { "type": "Point", "coordinates": [ 485041.0, 147834.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729550, "UPRN": 100061608991, "X_COORDINATE": 484841.0, "Y_COORDINATE": 147592.0, "LATITUDE": 51.2212278, "LONGITUDE": -0.7865097 }, "geometry": { "type": "Point", "coordinates": [ 484841.0, 147592.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727427, "UPRN": 100061606690, "X_COORDINATE": 484922.0, "Y_COORDINATE": 147597.0, "LATITUDE": 51.2212607, "LONGITUDE": -0.7853489 }, "geometry": { "type": "Point", "coordinates": [ 484922.0, 147597.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729549, "UPRN": 100061608990, "X_COORDINATE": 484838.0, "Y_COORDINATE": 147600.0, "LATITUDE": 51.2213002, "LONGITUDE": -0.7865508 }, "geometry": { "type": "Point", "coordinates": [ 484838.0, 147600.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727429, "UPRN": 100061606692, "X_COORDINATE": 484919.0, "Y_COORDINATE": 147604.0, "LATITUDE": 51.2213241, "LONGITUDE": -0.7853902 }, "geometry": { "type": "Point", "coordinates": [ 484919.0, 147604.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729552, "UPRN": 100061608993, "X_COORDINATE": 484833.0, "Y_COORDINATE": 147608.0, "LATITUDE": 51.2213728, "LONGITUDE": -0.7866205 }, "geometry": { "type": "Point", "coordinates": [ 484833.0, 147608.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727431, "UPRN": 100061606694, "X_COORDINATE": 484914.0, "Y_COORDINATE": 147615.0, "LATITUDE": 51.2214237, "LONGITUDE": -0.7854592 }, "geometry": { "type": "Point", "coordinates": [ 484914.0, 147615.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729554, "UPRN": 100061608995, "X_COORDINATE": 484828.0, "Y_COORDINATE": 147616.0, "LATITUDE": 51.2214455, "LONGITUDE": -0.7866902 }, "geometry": { "type": "Point", "coordinates": [ 484828.0, 147616.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727428, "UPRN": 100061606691, "X_COORDINATE": 484944.0, "Y_COORDINATE": 147617.0, "LATITUDE": 51.2214373, "LONGITUDE": -0.7850293 }, "geometry": { "type": "Point", "coordinates": [ 484944.0, 147617.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727433, "UPRN": 100061606696, "X_COORDINATE": 484910.0, "Y_COORDINATE": 147621.0, "LATITUDE": 51.2214783, "LONGITUDE": -0.7855151 }, "geometry": { "type": "Point", "coordinates": [ 484910.0, 147621.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729556, "UPRN": 100061608997, "X_COORDINATE": 484825.0, "Y_COORDINATE": 147624.0, "LATITUDE": 51.2215179, "LONGITUDE": -0.7867312 }, "geometry": { "type": "Point", "coordinates": [ 484825.0, 147624.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727430, "UPRN": 100061606693, "X_COORDINATE": 484940.0, "Y_COORDINATE": 147625.0, "LATITUDE": 51.2215098, "LONGITUDE": -0.7850846 }, "geometry": { "type": "Point", "coordinates": [ 484940.0, 147625.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727435, "UPRN": 100061606698, "X_COORDINATE": 484907.0, "Y_COORDINATE": 147632.0, "LATITUDE": 51.2215776, "LONGITUDE": -0.7855554 }, "geometry": { "type": "Point", "coordinates": [ 484907.0, 147632.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729558, "UPRN": 100061608999, "X_COORDINATE": 484818.0, "Y_COORDINATE": 147634.0, "LATITUDE": 51.2216088, "LONGITUDE": -0.7868291 }, "geometry": { "type": "Point", "coordinates": [ 484818.0, 147634.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727432, "UPRN": 100061606695, "X_COORDINATE": 484936.0, "Y_COORDINATE": 147635.0, "LATITUDE": 51.2216003, "LONGITUDE": -0.7851395 }, "geometry": { "type": "Point", "coordinates": [ 484936.0, 147635.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727437, "UPRN": 100061606700, "X_COORDINATE": 484904.0, "Y_COORDINATE": 147638.0, "LATITUDE": 51.221632, "LONGITUDE": -0.7855969 }, "geometry": { "type": "Point", "coordinates": [ 484904.0, 147638.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729560, "UPRN": 100061609001, "X_COORDINATE": 484814.0, "Y_COORDINATE": 147642.0, "LATITUDE": 51.2216813, "LONGITUDE": -0.7868844 }, "geometry": { "type": "Point", "coordinates": [ 484814.0, 147642.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727434, "UPRN": 100061606697, "X_COORDINATE": 484933.0, "Y_COORDINATE": 147642.0, "LATITUDE": 51.2216636, "LONGITUDE": -0.7851808 }, "geometry": { "type": "Point", "coordinates": [ 484933.0, 147642.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729562, "UPRN": 100061609003, "X_COORDINATE": 484809.0, "Y_COORDINATE": 147653.0, "LATITUDE": 51.221781, "LONGITUDE": -0.7869534 }, "geometry": { "type": "Point", "coordinates": [ 484809.0, 147653.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727439, "UPRN": 100061606702, "X_COORDINATE": 484893.0, "Y_COORDINATE": 147656.0, "LATITUDE": 51.2217954, "LONGITUDE": -0.7857502 }, "geometry": { "type": "Point", "coordinates": [ 484893.0, 147656.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729564, "UPRN": 100061609005, "X_COORDINATE": 484804.0, "Y_COORDINATE": 147660.0, "LATITUDE": 51.2218446, "LONGITUDE": -0.7870234 }, "geometry": { "type": "Point", "coordinates": [ 484804.0, 147660.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727436, "UPRN": 100061606699, "X_COORDINATE": 484922.0, "Y_COORDINATE": 147665.0, "LATITUDE": 51.2218721, "LONGITUDE": -0.7853329 }, "geometry": { "type": "Point", "coordinates": [ 484922.0, 147665.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729566, "UPRN": 100061609007, "X_COORDINATE": 484801.0, "Y_COORDINATE": 147667.0, "LATITUDE": 51.221908, "LONGITUDE": -0.7870646 }, "geometry": { "type": "Point", "coordinates": [ 484801.0, 147667.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727441, "UPRN": 100061606704, "X_COORDINATE": 484888.0, "Y_COORDINATE": 147672.0, "LATITUDE": 51.22194, "LONGITUDE": -0.785818 }, "geometry": { "type": "Point", "coordinates": [ 484888.0, 147672.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729568, "UPRN": 100061609009, "X_COORDINATE": 484796.0, "Y_COORDINATE": 147677.0, "LATITUDE": 51.2219986, "LONGITUDE": -0.7871339 }, "geometry": { "type": "Point", "coordinates": [ 484796.0, 147677.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727438, "UPRN": 100061606701, "X_COORDINATE": 484915.0, "Y_COORDINATE": 147680.0, "LATITUDE": 51.2220079, "LONGITUDE": -0.7854295 }, "geometry": { "type": "Point", "coordinates": [ 484915.0, 147680.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727443, "UPRN": 100061606706, "X_COORDINATE": 484878.0, "Y_COORDINATE": 147683.0, "LATITUDE": 51.2220404, "LONGITUDE": -0.7859585 }, "geometry": { "type": "Point", "coordinates": [ 484878.0, 147683.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729570, "UPRN": 100061609011, "X_COORDINATE": 484791.0, "Y_COORDINATE": 147684.0, "LATITUDE": 51.2220623, "LONGITUDE": -0.7872038 }, "geometry": { "type": "Point", "coordinates": [ 484791.0, 147684.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122304, "UPRN": 100062161831, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122303, "UPRN": 100062161830, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122302, "UPRN": 100062161829, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122301, "UPRN": 100062161828, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122300, "UPRN": 100062161827, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122297, "UPRN": 100062161821, "X_COORDINATE": 484508.0, "Y_COORDINATE": 147299.0, "LATITUDE": 51.218643, "LONGITUDE": -0.7913458 }, "geometry": { "type": "Point", "coordinates": [ 484508.0, 147299.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729677, "UPRN": 100061609118, "X_COORDINATE": 484403.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.2195666, "LONGITUDE": -0.7928252 }, "geometry": { "type": "Point", "coordinates": [ 484403.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729676, "UPRN": 100061609117, "X_COORDINATE": 484412.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.2195652, "LONGITUDE": -0.7926964 }, "geometry": { "type": "Point", "coordinates": [ 484412.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729678, "UPRN": 100061609119, "X_COORDINATE": 484418.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2191238, "LONGITUDE": -0.792622 }, "geometry": { "type": "Point", "coordinates": [ 484418.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729675, "UPRN": 100061609116, "X_COORDINATE": 484421.0, "Y_COORDINATE": 147397.0, "LATITUDE": 51.2195369, "LONGITUDE": -0.7925682 }, "geometry": { "type": "Point", "coordinates": [ 484421.0, 147397.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729679, "UPRN": 100061609120, "X_COORDINATE": 484421.0, "Y_COORDINATE": 147346.0, "LATITUDE": 51.2190784, "LONGITUDE": -0.7925802 }, "geometry": { "type": "Point", "coordinates": [ 484421.0, 147346.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729674, "UPRN": 100061609115, "X_COORDINATE": 484427.0, "Y_COORDINATE": 147395.0, "LATITUDE": 51.2195181, "LONGITUDE": -0.7924828 }, "geometry": { "type": "Point", "coordinates": [ 484427.0, 147395.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729680, "UPRN": 100061609121, "X_COORDINATE": 484427.0, "Y_COORDINATE": 147337.0, "LATITUDE": 51.2189966, "LONGITUDE": -0.7924964 }, "geometry": { "type": "Point", "coordinates": [ 484427.0, 147337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729681, "UPRN": 100061609122, "X_COORDINATE": 484429.0, "Y_COORDINATE": 147333.0, "LATITUDE": 51.2189604, "LONGITUDE": -0.7924687 }, "geometry": { "type": "Point", "coordinates": [ 484429.0, 147333.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729682, "UPRN": 100061609123, "X_COORDINATE": 484431.0, "Y_COORDINATE": 147321.0, "LATITUDE": 51.2188522, "LONGITUDE": -0.7924429 }, "geometry": { "type": "Point", "coordinates": [ 484431.0, 147321.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729683, "UPRN": 100061609124, "X_COORDINATE": 484433.0, "Y_COORDINATE": 147316.0, "LATITUDE": 51.218807, "LONGITUDE": -0.7924155 }, "geometry": { "type": "Point", "coordinates": [ 484433.0, 147316.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729684, "UPRN": 100061609125, "X_COORDINATE": 484439.0, "Y_COORDINATE": 147305.0, "LATITUDE": 51.2187072, "LONGITUDE": -0.7923322 }, "geometry": { "type": "Point", "coordinates": [ 484439.0, 147305.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729685, "UPRN": 100061609126, "X_COORDINATE": 484443.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.2186347, "LONGITUDE": -0.7922768 }, "geometry": { "type": "Point", "coordinates": [ 484443.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729686, "UPRN": 100061609127, "X_COORDINATE": 484421.0, "Y_COORDINATE": 147287.0, "LATITUDE": 51.218548, "LONGITUDE": -0.7925941 }, "geometry": { "type": "Point", "coordinates": [ 484421.0, 147287.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729687, "UPRN": 100061609128, "X_COORDINATE": 484418.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2186024, "LONGITUDE": -0.7926356 }, "geometry": { "type": "Point", "coordinates": [ 484418.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729688, "UPRN": 100061609129, "X_COORDINATE": 484416.0, "Y_COORDINATE": 147303.0, "LATITUDE": 51.2186926, "LONGITUDE": -0.7926619 }, "geometry": { "type": "Point", "coordinates": [ 484416.0, 147303.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729689, "UPRN": 100061609130, "X_COORDINATE": 484413.0, "Y_COORDINATE": 147308.0, "LATITUDE": 51.218738, "LONGITUDE": -0.7927037 }, "geometry": { "type": "Point", "coordinates": [ 484413.0, 147308.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729690, "UPRN": 100061609131, "X_COORDINATE": 484409.0, "Y_COORDINATE": 147319.0, "LATITUDE": 51.2188375, "LONGITUDE": -0.7927583 }, "geometry": { "type": "Point", "coordinates": [ 484409.0, 147319.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729691, "UPRN": 100061609132, "X_COORDINATE": 484407.0, "Y_COORDINATE": 147323.0, "LATITUDE": 51.2188737, "LONGITUDE": -0.792786 }, "geometry": { "type": "Point", "coordinates": [ 484407.0, 147323.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729692, "UPRN": 100061609133, "X_COORDINATE": 484403.0, "Y_COORDINATE": 147334.0, "LATITUDE": 51.2189732, "LONGITUDE": -0.7928407 }, "geometry": { "type": "Point", "coordinates": [ 484403.0, 147334.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729693, "UPRN": 100061609134, "X_COORDINATE": 484401.0, "Y_COORDINATE": 147338.0, "LATITUDE": 51.2190095, "LONGITUDE": -0.7928684 }, "geometry": { "type": "Point", "coordinates": [ 484401.0, 147338.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729694, "UPRN": 100061609135, "X_COORDINATE": 484394.0, "Y_COORDINATE": 147346.0, "LATITUDE": 51.2190824, "LONGITUDE": -0.7929667 }, "geometry": { "type": "Point", "coordinates": [ 484394.0, 147346.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122295, "UPRN": 100062161819, "X_COORDINATE": 484463.0, "Y_COORDINATE": 147292.0, "LATITUDE": 51.2185868, "LONGITUDE": -0.7919917 }, "geometry": { "type": "Point", "coordinates": [ 484463.0, 147292.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122305, "UPRN": 100062161832, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122306, "UPRN": 100062161833, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122307, "UPRN": 100062161834, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122308, "UPRN": 100062161835, "X_COORDINATE": 484483.0, "Y_COORDINATE": 147290.0, "LATITUDE": 51.2185658, "LONGITUDE": -0.7917058 }, "geometry": { "type": "Point", "coordinates": [ 484483.0, 147290.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122530, "UPRN": 100062162129, "X_COORDINATE": 484719.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187107, "LONGITUDE": -0.7883227 }, "geometry": { "type": "Point", "coordinates": [ 484719.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122357, "UPRN": 100062161884, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122358, "UPRN": 100062161885, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122359, "UPRN": 100062161886, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122360, "UPRN": 100062161887, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122361, "UPRN": 100062161888, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122362, "UPRN": 100062161889, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122363, "UPRN": 100062161890, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122364, "UPRN": 100062161891, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122365, "UPRN": 100062161892, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2188902, "LONGITUDE": -0.7908955 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122309, "UPRN": 100062161836, "X_COORDINATE": 484574.0, "Y_COORDINATE": 147328.0, "LATITUDE": 51.218894, "LONGITUDE": -0.7903942 }, "geometry": { "type": "Point", "coordinates": [ 484574.0, 147328.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122311, "UPRN": 100062161838, "X_COORDINATE": 484574.0, "Y_COORDINATE": 147328.0, "LATITUDE": 51.218894, "LONGITUDE": -0.7903942 }, "geometry": { "type": "Point", "coordinates": [ 484574.0, 147328.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122313, "UPRN": 100062161840, "X_COORDINATE": 484574.0, "Y_COORDINATE": 147328.0, "LATITUDE": 51.218894, "LONGITUDE": -0.7903942 }, "geometry": { "type": "Point", "coordinates": [ 484574.0, 147328.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122531, "UPRN": 100062162130, "X_COORDINATE": 484727.0, "Y_COORDINATE": 147311.0, "LATITUDE": 51.2187185, "LONGITUDE": -0.788208 }, "geometry": { "type": "Point", "coordinates": [ 484727.0, 147311.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122532, "UPRN": 100062162131, "X_COORDINATE": 484719.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187107, "LONGITUDE": -0.7883227 }, "geometry": { "type": "Point", "coordinates": [ 484719.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122533, "UPRN": 100062162132, "X_COORDINATE": 484727.0, "Y_COORDINATE": 147311.0, "LATITUDE": 51.2187185, "LONGITUDE": -0.788208 }, "geometry": { "type": "Point", "coordinates": [ 484727.0, 147311.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122534, "UPRN": 100062162133, "X_COORDINATE": 484719.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187107, "LONGITUDE": -0.7883227 }, "geometry": { "type": "Point", "coordinates": [ 484719.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122535, "UPRN": 100062162134, "X_COORDINATE": 484727.0, "Y_COORDINATE": 147311.0, "LATITUDE": 51.2187185, "LONGITUDE": -0.788208 }, "geometry": { "type": "Point", "coordinates": [ 484727.0, 147311.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729673, "UPRN": 100061609114, "X_COORDINATE": 484438.0, "Y_COORDINATE": 147390.0, "LATITUDE": 51.2194715, "LONGITUDE": -0.7923265 }, "geometry": { "type": "Point", "coordinates": [ 484438.0, 147390.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729622, "UPRN": 100061609063, "X_COORDINATE": 484441.0, "Y_COORDINATE": 147423.0, "LATITUDE": 51.2197677, "LONGITUDE": -0.7922758 }, "geometry": { "type": "Point", "coordinates": [ 484441.0, 147423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729672, "UPRN": 100061609113, "X_COORDINATE": 484444.0, "Y_COORDINATE": 147387.0, "LATITUDE": 51.2194436, "LONGITUDE": -0.7922413 }, "geometry": { "type": "Point", "coordinates": [ 484444.0, 147387.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729623, "UPRN": 100061609064, "X_COORDINATE": 484448.0, "Y_COORDINATE": 147428.0, "LATITUDE": 51.2198116, "LONGITUDE": -0.7921744 }, "geometry": { "type": "Point", "coordinates": [ 484448.0, 147428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729671, "UPRN": 100061609112, "X_COORDINATE": 484456.0, "Y_COORDINATE": 147380.0, "LATITUDE": 51.2193789, "LONGITUDE": -0.7920712 }, "geometry": { "type": "Point", "coordinates": [ 484456.0, 147380.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729624, "UPRN": 100061609065, "X_COORDINATE": 484458.0, "Y_COORDINATE": 147433.0, "LATITUDE": 51.2198551, "LONGITUDE": -0.7920301 }, "geometry": { "type": "Point", "coordinates": [ 484458.0, 147433.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729670, "UPRN": 100061609111, "X_COORDINATE": 484463.0, "Y_COORDINATE": 147376.0, "LATITUDE": 51.2193419, "LONGITUDE": -0.7919719 }, "geometry": { "type": "Point", "coordinates": [ 484463.0, 147376.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729625, "UPRN": 100061609066, "X_COORDINATE": 484466.0, "Y_COORDINATE": 147436.0, "LATITUDE": 51.2198809, "LONGITUDE": -0.7919149 }, "geometry": { "type": "Point", "coordinates": [ 484466.0, 147436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729669, "UPRN": 100061609110, "X_COORDINATE": 484473.0, "Y_COORDINATE": 147367.0, "LATITUDE": 51.2192596, "LONGITUDE": -0.7918309 }, "geometry": { "type": "Point", "coordinates": [ 484473.0, 147367.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729668, "UPRN": 100061609109, "X_COORDINATE": 484475.0, "Y_COORDINATE": 147363.0, "LATITUDE": 51.2192233, "LONGITUDE": -0.7918032 }, "geometry": { "type": "Point", "coordinates": [ 484475.0, 147363.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729667, "UPRN": 100061609108, "X_COORDINATE": 484479.0, "Y_COORDINATE": 147352.0, "LATITUDE": 51.2191238, "LONGITUDE": -0.7917485 }, "geometry": { "type": "Point", "coordinates": [ 484479.0, 147352.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729626, "UPRN": 100061609067, "X_COORDINATE": 484480.0, "Y_COORDINATE": 147438.0, "LATITUDE": 51.2198968, "LONGITUDE": -0.791714 }, "geometry": { "type": "Point", "coordinates": [ 484480.0, 147438.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729627, "UPRN": 100061609068, "X_COORDINATE": 484488.0, "Y_COORDINATE": 147438.0, "LATITUDE": 51.2198956, "LONGITUDE": -0.7915994 }, "geometry": { "type": "Point", "coordinates": [ 484488.0, 147438.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729660, "UPRN": 100061609101, "X_COORDINATE": 484501.0, "Y_COORDINATE": 147382.0, "LATITUDE": 51.2193903, "LONGITUDE": -0.7914265 }, "geometry": { "type": "Point", "coordinates": [ 484501.0, 147382.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729628, "UPRN": 100061609069, "X_COORDINATE": 484502.0, "Y_COORDINATE": 147436.0, "LATITUDE": 51.2198756, "LONGITUDE": -0.7913995 }, "geometry": { "type": "Point", "coordinates": [ 484502.0, 147436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729659, "UPRN": 100061609100, "X_COORDINATE": 484502.0, "Y_COORDINATE": 147398.0, "LATITUDE": 51.219534, "LONGITUDE": -0.7914084 }, "geometry": { "type": "Point", "coordinates": [ 484502.0, 147398.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729661, "UPRN": 100061609102, "X_COORDINATE": 484502.0, "Y_COORDINATE": 147377.0, "LATITUDE": 51.2193452, "LONGITUDE": -0.7914134 }, "geometry": { "type": "Point", "coordinates": [ 484502.0, 147377.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729662, "UPRN": 100061609103, "X_COORDINATE": 484506.0, "Y_COORDINATE": 147368.0, "LATITUDE": 51.2192637, "LONGITUDE": -0.7913582 }, "geometry": { "type": "Point", "coordinates": [ 484506.0, 147368.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729658, "UPRN": 100061609099, "X_COORDINATE": 484507.0, "Y_COORDINATE": 147404.0, "LATITUDE": 51.2195872, "LONGITUDE": -0.7913354 }, "geometry": { "type": "Point", "coordinates": [ 484507.0, 147404.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729629, "UPRN": 100061609070, "X_COORDINATE": 484510.0, "Y_COORDINATE": 147439.0, "LATITUDE": 51.2199014, "LONGITUDE": -0.7912843 }, "geometry": { "type": "Point", "coordinates": [ 484510.0, 147439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729663, "UPRN": 100061609104, "X_COORDINATE": 484510.0, "Y_COORDINATE": 147361.0, "LATITUDE": 51.2192001, "LONGITUDE": -0.7913026 }, "geometry": { "type": "Point", "coordinates": [ 484510.0, 147361.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729657, "UPRN": 100061609098, "X_COORDINATE": 484517.0, "Y_COORDINATE": 147415.0, "LATITUDE": 51.2196846, "LONGITUDE": -0.7911897 }, "geometry": { "type": "Point", "coordinates": [ 484517.0, 147415.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729630, "UPRN": 100061609071, "X_COORDINATE": 484518.0, "Y_COORDINATE": 147444.0, "LATITUDE": 51.2199451, "LONGITUDE": -0.7911686 }, "geometry": { "type": "Point", "coordinates": [ 484518.0, 147444.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729631, "UPRN": 100061609072, "X_COORDINATE": 484523.0, "Y_COORDINATE": 147446.0, "LATITUDE": 51.2199624, "LONGITUDE": -0.7910965 }, "geometry": { "type": "Point", "coordinates": [ 484523.0, 147446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729656, "UPRN": 100061609097, "X_COORDINATE": 484524.0, "Y_COORDINATE": 147418.0, "LATITUDE": 51.2197105, "LONGITUDE": -0.7910888 }, "geometry": { "type": "Point", "coordinates": [ 484524.0, 147418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729621, "UPRN": 100061609062, "X_COORDINATE": 484430.0, "Y_COORDINATE": 147424.0, "LATITUDE": 51.2197783, "LONGITUDE": -0.792433 }, "geometry": { "type": "Point", "coordinates": [ 484430.0, 147424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729620, "UPRN": 100061609061, "X_COORDINATE": 484423.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2197614, "LONGITUDE": -0.7925337 }, "geometry": { "type": "Point", "coordinates": [ 484423.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729619, "UPRN": 100061609060, "X_COORDINATE": 484410.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2197633, "LONGITUDE": -0.7927198 }, "geometry": { "type": "Point", "coordinates": [ 484410.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729618, "UPRN": 100061609059, "X_COORDINATE": 484402.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2197645, "LONGITUDE": -0.7928343 }, "geometry": { "type": "Point", "coordinates": [ 484402.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729617, "UPRN": 100061609058, "X_COORDINATE": 484390.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2197663, "LONGITUDE": -0.7930061 }, "geometry": { "type": "Point", "coordinates": [ 484390.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729616, "UPRN": 100061609057, "X_COORDINATE": 484382.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.2197405, "LONGITUDE": -0.7931214 }, "geometry": { "type": "Point", "coordinates": [ 484382.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729695, "UPRN": 100061609136, "X_COORDINATE": 484392.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2191277, "LONGITUDE": -0.7929942 }, "geometry": { "type": "Point", "coordinates": [ 484392.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729696, "UPRN": 100061609137, "X_COORDINATE": 484376.0, "Y_COORDINATE": 147387.0, "LATITUDE": 51.2194537, "LONGITUDE": -0.7932148 }, "geometry": { "type": "Point", "coordinates": [ 484376.0, 147387.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729697, "UPRN": 100061609138, "X_COORDINATE": 484371.0, "Y_COORDINATE": 147384.0, "LATITUDE": 51.2194275, "LONGITUDE": -0.793287 }, "geometry": { "type": "Point", "coordinates": [ 484371.0, 147384.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729296, "UPRN": 100061608733, "X_COORDINATE": 484361.0, "Y_COORDINATE": 147411.0, "LATITUDE": 51.2196717, "LONGITUDE": -0.7934239 }, "geometry": { "type": "Point", "coordinates": [ 484361.0, 147411.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729572, "UPRN": 100061609013, "X_COORDINATE": 484787.0, "Y_COORDINATE": 147691.0, "LATITUDE": 51.2221258, "LONGITUDE": -0.7872594 }, "geometry": { "type": "Point", "coordinates": [ 484787.0, 147691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727440, "UPRN": 100061606703, "X_COORDINATE": 484910.0, "Y_COORDINATE": 147691.0, "LATITUDE": 51.2221076, "LONGITUDE": -0.7854985 }, "geometry": { "type": "Point", "coordinates": [ 484910.0, 147691.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727445, "UPRN": 100061606708, "X_COORDINATE": 484873.0, "Y_COORDINATE": 147699.0, "LATITUDE": 51.222185, "LONGITUDE": -0.7860263 }, "geometry": { "type": "Point", "coordinates": [ 484873.0, 147699.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727442, "UPRN": 100061606705, "X_COORDINATE": 484904.0, "Y_COORDINATE": 147708.0, "LATITUDE": 51.2222613, "LONGITUDE": -0.7855804 }, "geometry": { "type": "Point", "coordinates": [ 484904.0, 147708.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727447, "UPRN": 100061606710, "X_COORDINATE": 484868.0, "Y_COORDINATE": 147712.0, "LATITUDE": 51.2223026, "LONGITUDE": -0.7860948 }, "geometry": { "type": "Point", "coordinates": [ 484868.0, 147712.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727444, "UPRN": 100061606707, "X_COORDINATE": 484896.0, "Y_COORDINATE": 147721.0, "LATITUDE": 51.2223794, "LONGITUDE": -0.7856919 }, "geometry": { "type": "Point", "coordinates": [ 484896.0, 147721.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727449, "UPRN": 100061606712, "X_COORDINATE": 484860.0, "Y_COORDINATE": 147724.0, "LATITUDE": 51.2224117, "LONGITUDE": -0.7862065 }, "geometry": { "type": "Point", "coordinates": [ 484860.0, 147724.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727450, "UPRN": 100061606713, "X_COORDINATE": 484855.0, "Y_COORDINATE": 147733.0, "LATITUDE": 51.2224933, "LONGITUDE": -0.786276 }, "geometry": { "type": "Point", "coordinates": [ 484855.0, 147733.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727446, "UPRN": 100061606709, "X_COORDINATE": 484889.0, "Y_COORDINATE": 147736.0, "LATITUDE": 51.2225153, "LONGITUDE": -0.7857885 }, "geometry": { "type": "Point", "coordinates": [ 484889.0, 147736.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727448, "UPRN": 100061606711, "X_COORDINATE": 484884.0, "Y_COORDINATE": 147747.0, "LATITUDE": 51.2226149, "LONGITUDE": -0.7858575 }, "geometry": { "type": "Point", "coordinates": [ 484884.0, 147747.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447429, "UPRN": 10013893775, "X_COORDINATE": 484940.0, "Y_COORDINATE": 147756.0, "LATITUDE": 51.2226875, "LONGITUDE": -0.7850537 }, "geometry": { "type": "Point", "coordinates": [ 484940.0, 147756.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724696, "UPRN": 100061603831, "X_COORDINATE": 484987.0, "Y_COORDINATE": 147796.0, "LATITUDE": 51.2230401, "LONGITUDE": -0.7843713 }, "geometry": { "type": "Point", "coordinates": [ 484987.0, 147796.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444255, "UPRN": 10013890419, "X_COORDINATE": 484829.0, "Y_COORDINATE": 147826.0, "LATITUDE": 51.2233333, "LONGITUDE": -0.7866263 }, "geometry": { "type": "Point", "coordinates": [ 484829.0, 147826.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724697, "UPRN": 100061603832, "X_COORDINATE": 484973.0, "Y_COORDINATE": 147779.0, "LATITUDE": 51.2228893, "LONGITUDE": -0.7845758 }, "geometry": { "type": "Point", "coordinates": [ 484973.0, 147779.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724742, "UPRN": 100061603879, "X_COORDINATE": 484928.0, "Y_COORDINATE": 147778.0, "LATITUDE": 51.222887, "LONGITUDE": -0.7852203 }, "geometry": { "type": "Point", "coordinates": [ 484928.0, 147778.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447383, "UPRN": 10013893729, "X_COORDINATE": 485017.0, "Y_COORDINATE": 147837.0, "LATITUDE": 51.2234042, "LONGITUDE": -0.7839321 }, "geometry": { "type": "Point", "coordinates": [ 485017.0, 147837.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217406, "UPRN": 100062355210, "X_COORDINATE": 484996.0, "Y_COORDINATE": 147817.0, "LATITUDE": 51.2232275, "LONGITUDE": -0.7842375 }, "geometry": { "type": "Point", "coordinates": [ 484996.0, 147817.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724665, "UPRN": 100061603800, "X_COORDINATE": 484814.0, "Y_COORDINATE": 147431.0, "LATITUDE": 51.2197844, "LONGITUDE": -0.7869342 }, "geometry": { "type": "Point", "coordinates": [ 484814.0, 147431.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31723664, "UPRN": 100061602640, "X_COORDINATE": 484880.0, "Y_COORDINATE": 147432.0, "LATITUDE": 51.2197836, "LONGITUDE": -0.7859892 }, "geometry": { "type": "Point", "coordinates": [ 484880.0, 147432.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724668, "UPRN": 100061603803, "X_COORDINATE": 484818.0, "Y_COORDINATE": 147437.0, "LATITUDE": 51.2198378, "LONGITUDE": -0.7868756 }, "geometry": { "type": "Point", "coordinates": [ 484818.0, 147437.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724670, "UPRN": 100061603805, "X_COORDINATE": 484822.0, "Y_COORDINATE": 147440.0, "LATITUDE": 51.2198641, "LONGITUDE": -0.7868176 }, "geometry": { "type": "Point", "coordinates": [ 484822.0, 147440.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724672, "UPRN": 100061603807, "X_COORDINATE": 484826.0, "Y_COORDINATE": 147445.0, "LATITUDE": 51.2199085, "LONGITUDE": -0.7867592 }, "geometry": { "type": "Point", "coordinates": [ 484826.0, 147445.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724674, "UPRN": 100061603809, "X_COORDINATE": 484830.0, "Y_COORDINATE": 147449.0, "LATITUDE": 51.2199439, "LONGITUDE": -0.786701 }, "geometry": { "type": "Point", "coordinates": [ 484830.0, 147449.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724676, "UPRN": 100061603811, "X_COORDINATE": 484834.0, "Y_COORDINATE": 147453.0, "LATITUDE": 51.2199792, "LONGITUDE": -0.7866427 }, "geometry": { "type": "Point", "coordinates": [ 484834.0, 147453.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724662, "UPRN": 100061603797, "X_COORDINATE": 484796.0, "Y_COORDINATE": 147462.0, "LATITUDE": 51.2200658, "LONGITUDE": -0.7871846 }, "geometry": { "type": "Point", "coordinates": [ 484796.0, 147462.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724685, "UPRN": 100061603820, "X_COORDINATE": 484867.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2201182, "LONGITUDE": -0.7861666 }, "geometry": { "type": "Point", "coordinates": [ 484867.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724679, "UPRN": 100061603814, "X_COORDINATE": 484852.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2201204, "LONGITUDE": -0.7863813 }, "geometry": { "type": "Point", "coordinates": [ 484852.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724681, "UPRN": 100061603816, "X_COORDINATE": 484856.0, "Y_COORDINATE": 147471.0, "LATITUDE": 51.2201378, "LONGITUDE": -0.7863236 }, "geometry": { "type": "Point", "coordinates": [ 484856.0, 147471.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724687, "UPRN": 100061603822, "X_COORDINATE": 484873.0, "Y_COORDINATE": 147472.0, "LATITUDE": 51.2201442, "LONGITUDE": -0.78608 }, "geometry": { "type": "Point", "coordinates": [ 484873.0, 147472.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724667, "UPRN": 100061603802, "X_COORDINATE": 484816.0, "Y_COORDINATE": 147474.0, "LATITUDE": 51.2201707, "LONGITUDE": -0.7868955 }, "geometry": { "type": "Point", "coordinates": [ 484816.0, 147474.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724664, "UPRN": 100061603799, "X_COORDINATE": 484803.0, "Y_COORDINATE": 147474.0, "LATITUDE": 51.2201726, "LONGITUDE": -0.7870816 }, "geometry": { "type": "Point", "coordinates": [ 484803.0, 147474.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724689, "UPRN": 100061603824, "X_COORDINATE": 484878.0, "Y_COORDINATE": 147475.0, "LATITUDE": 51.2201705, "LONGITUDE": -0.7860077 }, "geometry": { "type": "Point", "coordinates": [ 484878.0, 147475.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724669, "UPRN": 100061603804, "X_COORDINATE": 484820.0, "Y_COORDINATE": 147476.0, "LATITUDE": 51.2201881, "LONGITUDE": -0.7868377 }, "geometry": { "type": "Point", "coordinates": [ 484820.0, 147476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724666, "UPRN": 100061603801, "X_COORDINATE": 484807.0, "Y_COORDINATE": 147476.0, "LATITUDE": 51.22019, "LONGITUDE": -0.7870238 }, "geometry": { "type": "Point", "coordinates": [ 484807.0, 147476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724671, "UPRN": 100061603806, "X_COORDINATE": 484823.0, "Y_COORDINATE": 147479.0, "LATITUDE": 51.2202146, "LONGITUDE": -0.7867941 }, "geometry": { "type": "Point", "coordinates": [ 484823.0, 147479.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724673, "UPRN": 100061603808, "X_COORDINATE": 484827.0, "Y_COORDINATE": 147483.0, "LATITUDE": 51.22025, "LONGITUDE": -0.7867359 }, "geometry": { "type": "Point", "coordinates": [ 484827.0, 147483.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445139, "UPRN": 10013891381, "X_COORDINATE": 484900.0, "Y_COORDINATE": 147488.0, "LATITUDE": 51.2202841, "LONGITUDE": -0.7856897 }, "geometry": { "type": "Point", "coordinates": [ 484900.0, 147488.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724675, "UPRN": 100061603810, "X_COORDINATE": 484832.0, "Y_COORDINATE": 147489.0, "LATITUDE": 51.2203032, "LONGITUDE": -0.7866629 }, "geometry": { "type": "Point", "coordinates": [ 484832.0, 147489.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445138, "UPRN": 10013891380, "X_COORDINATE": 484896.0, "Y_COORDINATE": 147495.0, "LATITUDE": 51.2203476, "LONGITUDE": -0.7857453 }, "geometry": { "type": "Point", "coordinates": [ 484896.0, 147495.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724677, "UPRN": 100061603812, "X_COORDINATE": 484843.0, "Y_COORDINATE": 147497.0, "LATITUDE": 51.2203734, "LONGITUDE": -0.7865035 }, "geometry": { "type": "Point", "coordinates": [ 484843.0, 147497.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724678, "UPRN": 100061603813, "X_COORDINATE": 484846.0, "Y_COORDINATE": 147499.0, "LATITUDE": 51.220391, "LONGITUDE": -0.7864601 }, "geometry": { "type": "Point", "coordinates": [ 484846.0, 147499.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727485, "UPRN": 100061606749, "X_COORDINATE": 484781.0, "Y_COORDINATE": 147501.0, "LATITUDE": 51.2204186, "LONGITUDE": -0.7873901 }, "geometry": { "type": "Point", "coordinates": [ 484781.0, 147501.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727487, "UPRN": 100061606751, "X_COORDINATE": 484779.0, "Y_COORDINATE": 147506.0, "LATITUDE": 51.2204639, "LONGITUDE": -0.7874176 }, "geometry": { "type": "Point", "coordinates": [ 484779.0, 147506.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732618, "UPRN": 100061612270, "X_COORDINATE": 484734.0, "Y_COORDINATE": 147487.0, "LATITUDE": 51.2202997, "LONGITUDE": -0.7880663 }, "geometry": { "type": "Point", "coordinates": [ 484734.0, 147487.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732619, "UPRN": 100061612271, "X_COORDINATE": 484746.0, "Y_COORDINATE": 147521.0, "LATITUDE": 51.2206036, "LONGITUDE": -0.7878865 }, "geometry": { "type": "Point", "coordinates": [ 484746.0, 147521.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732620, "UPRN": 100061612272, "X_COORDINATE": 484730.0, "Y_COORDINATE": 147484.0, "LATITUDE": 51.2202733, "LONGITUDE": -0.7881242 }, "geometry": { "type": "Point", "coordinates": [ 484730.0, 147484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732621, "UPRN": 100061612273, "X_COORDINATE": 484741.0, "Y_COORDINATE": 147519.0, "LATITUDE": 51.2205864, "LONGITUDE": -0.7879585 }, "geometry": { "type": "Point", "coordinates": [ 484741.0, 147519.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732622, "UPRN": 100061612274, "X_COORDINATE": 484726.0, "Y_COORDINATE": 147481.0, "LATITUDE": 51.220247, "LONGITUDE": -0.7881822 }, "geometry": { "type": "Point", "coordinates": [ 484726.0, 147481.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732623, "UPRN": 100061612275, "X_COORDINATE": 484733.0, "Y_COORDINATE": 147515.0, "LATITUDE": 51.2205516, "LONGITUDE": -0.788074 }, "geometry": { "type": "Point", "coordinates": [ 484733.0, 147515.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732624, "UPRN": 100061612276, "X_COORDINATE": 484728.0, "Y_COORDINATE": 147512.0, "LATITUDE": 51.2205254, "LONGITUDE": -0.7881463 }, "geometry": { "type": "Point", "coordinates": [ 484728.0, 147512.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732625, "UPRN": 100061612277, "X_COORDINATE": 484723.0, "Y_COORDINATE": 147507.0, "LATITUDE": 51.2204812, "LONGITUDE": -0.788219 }, "geometry": { "type": "Point", "coordinates": [ 484723.0, 147507.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732626, "UPRN": 100061612278, "X_COORDINATE": 484719.0, "Y_COORDINATE": 147505.0, "LATITUDE": 51.2204638, "LONGITUDE": -0.7882768 }, "geometry": { "type": "Point", "coordinates": [ 484719.0, 147505.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31732627, "UPRN": 100061612279, "X_COORDINATE": 484715.0, "Y_COORDINATE": 147503.0, "LATITUDE": 51.2204464, "LONGITUDE": -0.7883345 }, "geometry": { "type": "Point", "coordinates": [ 484715.0, 147503.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122542, "UPRN": 100062162147, "X_COORDINATE": 484799.0, "Y_COORDINATE": 147464.0, "LATITUDE": 51.2200833, "LONGITUDE": -0.7871412 }, "geometry": { "type": "Point", "coordinates": [ 484799.0, 147464.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729802, "UPRN": 100061609245, "X_COORDINATE": 484288.0, "Y_COORDINATE": 147308.0, "LATITUDE": 51.2187565, "LONGITUDE": -0.794493 }, "geometry": { "type": "Point", "coordinates": [ 484288.0, 147308.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729801, "UPRN": 100061609244, "X_COORDINATE": 484291.0, "Y_COORDINATE": 147304.0, "LATITUDE": 51.21872, "LONGITUDE": -0.794451 }, "geometry": { "type": "Point", "coordinates": [ 484291.0, 147304.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729800, "UPRN": 100061609243, "X_COORDINATE": 484294.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.2186567, "LONGITUDE": -0.7944097 }, "geometry": { "type": "Point", "coordinates": [ 484294.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729799, "UPRN": 100061609242, "X_COORDINATE": 484296.0, "Y_COORDINATE": 147293.0, "LATITUDE": 51.2186204, "LONGITUDE": -0.794382 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 147293.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729285, "UPRN": 100061608722, "X_COORDINATE": 484296.0, "Y_COORDINATE": 147348.0, "LATITUDE": 51.2191149, "LONGITUDE": -0.7943691 }, "geometry": { "type": "Point", "coordinates": [ 484296.0, 147348.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729798, "UPRN": 100061609241, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147287.0, "LATITUDE": 51.2185662, "LONGITUDE": -0.7943548 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147287.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729795, "UPRN": 100061609238, "X_COORDINATE": 484299.0, "Y_COORDINATE": 147345.0, "LATITUDE": 51.2190875, "LONGITUDE": -0.7943269 }, "geometry": { "type": "Point", "coordinates": [ 484299.0, 147345.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729797, "UPRN": 100061609240, "X_COORDINATE": 484300.0, "Y_COORDINATE": 147282.0, "LATITUDE": 51.2185209, "LONGITUDE": -0.7943274 }, "geometry": { "type": "Point", "coordinates": [ 484300.0, 147282.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729791, "UPRN": 100061609234, "X_COORDINATE": 484303.0, "Y_COORDINATE": 147334.0, "LATITUDE": 51.218988, "LONGITUDE": -0.7942722 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 147334.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729793, "UPRN": 100061609236, "X_COORDINATE": 484303.0, "Y_COORDINATE": 147339.0, "LATITUDE": 51.2190329, "LONGITUDE": -0.794271 }, "geometry": { "type": "Point", "coordinates": [ 484303.0, 147339.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729789, "UPRN": 100061609232, "X_COORDINATE": 484304.0, "Y_COORDINATE": 147330.0, "LATITUDE": 51.2189519, "LONGITUDE": -0.7942588 }, "geometry": { "type": "Point", "coordinates": [ 484304.0, 147330.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729787, "UPRN": 100061609230, "X_COORDINATE": 484306.0, "Y_COORDINATE": 147327.0, "LATITUDE": 51.2189246, "LONGITUDE": -0.7942309 }, "geometry": { "type": "Point", "coordinates": [ 484306.0, 147327.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729785, "UPRN": 100061609228, "X_COORDINATE": 484310.0, "Y_COORDINATE": 147323.0, "LATITUDE": 51.2188881, "LONGITUDE": -0.7941746 }, "geometry": { "type": "Point", "coordinates": [ 484310.0, 147323.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729263, "UPRN": 100061608700, "X_COORDINATE": 484627.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2197312, "LONGITUDE": -0.7896134 }, "geometry": { "type": "Point", "coordinates": [ 484627.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729655, "UPRN": 100061609096, "X_COORDINATE": 484538.0, "Y_COORDINATE": 147424.0, "LATITUDE": 51.2197624, "LONGITUDE": -0.790887 }, "geometry": { "type": "Point", "coordinates": [ 484538.0, 147424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729264, "UPRN": 100061608701, "X_COORDINATE": 484626.0, "Y_COORDINATE": 147425.0, "LATITUDE": 51.2197583, "LONGITUDE": -0.789627 }, "geometry": { "type": "Point", "coordinates": [ 484626.0, 147425.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729654, "UPRN": 100061609095, "X_COORDINATE": 484545.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2197883, "LONGITUDE": -0.7907861 }, "geometry": { "type": "Point", "coordinates": [ 484545.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729265, "UPRN": 100061608702, "X_COORDINATE": 484624.0, "Y_COORDINATE": 147429.0, "LATITUDE": 51.2197946, "LONGITUDE": -0.7896547 }, "geometry": { "type": "Point", "coordinates": [ 484624.0, 147429.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729266, "UPRN": 100061608703, "X_COORDINATE": 484623.0, "Y_COORDINATE": 147432.0, "LATITUDE": 51.2198217, "LONGITUDE": -0.7896683 }, "geometry": { "type": "Point", "coordinates": [ 484623.0, 147432.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729267, "UPRN": 100061608704, "X_COORDINATE": 484622.0, "Y_COORDINATE": 147436.0, "LATITUDE": 51.2198578, "LONGITUDE": -0.7896816 }, "geometry": { "type": "Point", "coordinates": [ 484622.0, 147436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729641, "UPRN": 100061609082, "X_COORDINATE": 484567.0, "Y_COORDINATE": 147439.0, "LATITUDE": 51.2198929, "LONGITUDE": -0.7904683 }, "geometry": { "type": "Point", "coordinates": [ 484567.0, 147439.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729268, "UPRN": 100061608705, "X_COORDINATE": 484620.0, "Y_COORDINATE": 147440.0, "LATITUDE": 51.2198941, "LONGITUDE": -0.7897093 }, "geometry": { "type": "Point", "coordinates": [ 484620.0, 147440.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729640, "UPRN": 100061609081, "X_COORDINATE": 484571.0, "Y_COORDINATE": 147441.0, "LATITUDE": 51.2199103, "LONGITUDE": -0.7904106 }, "geometry": { "type": "Point", "coordinates": [ 484571.0, 147441.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729269, "UPRN": 100061608706, "X_COORDINATE": 484618.0, "Y_COORDINATE": 147446.0, "LATITUDE": 51.2199483, "LONGITUDE": -0.7897365 }, "geometry": { "type": "Point", "coordinates": [ 484618.0, 147446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729632, "UPRN": 100061609073, "X_COORDINATE": 484533.0, "Y_COORDINATE": 147449.0, "LATITUDE": 51.2199879, "LONGITUDE": -0.7909527 }, "geometry": { "type": "Point", "coordinates": [ 484533.0, 147449.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729639, "UPRN": 100061609080, "X_COORDINATE": 484580.0, "Y_COORDINATE": 147450.0, "LATITUDE": 51.2199899, "LONGITUDE": -0.7902796 }, "geometry": { "type": "Point", "coordinates": [ 484580.0, 147450.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729270, "UPRN": 100061608707, "X_COORDINATE": 484616.0, "Y_COORDINATE": 147451.0, "LATITUDE": 51.2199936, "LONGITUDE": -0.789764 }, "geometry": { "type": "Point", "coordinates": [ 484616.0, 147451.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729633, "UPRN": 100061609074, "X_COORDINATE": 484539.0, "Y_COORDINATE": 147453.0, "LATITUDE": 51.2200229, "LONGITUDE": -0.7908658 }, "geometry": { "type": "Point", "coordinates": [ 484539.0, 147453.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729638, "UPRN": 100061609079, "X_COORDINATE": 484586.0, "Y_COORDINATE": 147454.0, "LATITUDE": 51.220025, "LONGITUDE": -0.7901928 }, "geometry": { "type": "Point", "coordinates": [ 484586.0, 147454.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729271, "UPRN": 100061608708, "X_COORDINATE": 484614.0, "Y_COORDINATE": 147457.0, "LATITUDE": 51.2200478, "LONGITUDE": -0.7897912 }, "geometry": { "type": "Point", "coordinates": [ 484614.0, 147457.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729634, "UPRN": 100061609075, "X_COORDINATE": 484550.0, "Y_COORDINATE": 147461.0, "LATITUDE": 51.2200932, "LONGITUDE": -0.7907065 }, "geometry": { "type": "Point", "coordinates": [ 484550.0, 147461.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729272, "UPRN": 100061608709, "X_COORDINATE": 484612.0, "Y_COORDINATE": 147462.0, "LATITUDE": 51.220093, "LONGITUDE": -0.7898187 }, "geometry": { "type": "Point", "coordinates": [ 484612.0, 147462.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729635, "UPRN": 100061609076, "X_COORDINATE": 484556.0, "Y_COORDINATE": 147466.0, "LATITUDE": 51.2201373, "LONGITUDE": -0.7906194 }, "geometry": { "type": "Point", "coordinates": [ 484556.0, 147466.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729273, "UPRN": 100061608710, "X_COORDINATE": 484609.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2201564, "LONGITUDE": -0.78986 }, "geometry": { "type": "Point", "coordinates": [ 484609.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729274, "UPRN": 100061608711, "X_COORDINATE": 484606.0, "Y_COORDINATE": 147473.0, "LATITUDE": 51.2201928, "LONGITUDE": -0.789902 }, "geometry": { "type": "Point", "coordinates": [ 484606.0, 147473.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729275, "UPRN": 100061608712, "X_COORDINATE": 484599.0, "Y_COORDINATE": 147491.0, "LATITUDE": 51.2203557, "LONGITUDE": -0.7899979 }, "geometry": { "type": "Point", "coordinates": [ 484599.0, 147491.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729637, "UPRN": 100061609078, "X_COORDINATE": 484570.0, "Y_COORDINATE": 147498.0, "LATITUDE": 51.2204229, "LONGITUDE": -0.7904115 }, "geometry": { "type": "Point", "coordinates": [ 484570.0, 147498.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729636, "UPRN": 100061609077, "X_COORDINATE": 484564.0, "Y_COORDINATE": 147501.0, "LATITUDE": 51.2204508, "LONGITUDE": -0.7904966 }, "geometry": { "type": "Point", "coordinates": [ 484564.0, 147501.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122310, "UPRN": 100062161837, "X_COORDINATE": 484582.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2189018, "LONGITUDE": -0.7902794 }, "geometry": { "type": "Point", "coordinates": [ 484582.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122312, "UPRN": 100062161839, "X_COORDINATE": 484582.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2189018, "LONGITUDE": -0.7902794 }, "geometry": { "type": "Point", "coordinates": [ 484582.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122314, "UPRN": 100062161841, "X_COORDINATE": 484582.0, "Y_COORDINATE": 147329.0, "LATITUDE": 51.2189018, "LONGITUDE": -0.7902794 }, "geometry": { "type": "Point", "coordinates": [ 484582.0, 147329.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122366, "UPRN": 100062161893, "X_COORDINATE": 484596.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189267, "LONGITUDE": -0.7900783 }, "geometry": { "type": "Point", "coordinates": [ 484596.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122367, "UPRN": 100062161894, "X_COORDINATE": 484596.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189267, "LONGITUDE": -0.7900783 }, "geometry": { "type": "Point", "coordinates": [ 484596.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122368, "UPRN": 100062161895, "X_COORDINATE": 484596.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189267, "LONGITUDE": -0.7900783 }, "geometry": { "type": "Point", "coordinates": [ 484596.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122369, "UPRN": 100062161896, "X_COORDINATE": 484596.0, "Y_COORDINATE": 147332.0, "LATITUDE": 51.2189267, "LONGITUDE": -0.7900783 }, "geometry": { "type": "Point", "coordinates": [ 484596.0, 147332.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122298, "UPRN": 100062161825, "X_COORDINATE": 484602.0, "Y_COORDINATE": 147333.0, "LATITUDE": 51.2189348, "LONGITUDE": -0.7899922 }, "geometry": { "type": "Point", "coordinates": [ 484602.0, 147333.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122299, "UPRN": 100062161826, "X_COORDINATE": 484602.0, "Y_COORDINATE": 147333.0, "LATITUDE": 51.2189348, "LONGITUDE": -0.7899922 }, "geometry": { "type": "Point", "coordinates": [ 484602.0, 147333.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122354, "UPRN": 100062161881, "X_COORDINATE": 484606.0, "Y_COORDINATE": 147335.0, "LATITUDE": 51.2189522, "LONGITUDE": -0.7899345 }, "geometry": { "type": "Point", "coordinates": [ 484606.0, 147335.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122355, "UPRN": 100062161882, "X_COORDINATE": 484606.0, "Y_COORDINATE": 147335.0, "LATITUDE": 51.2189522, "LONGITUDE": -0.7899345 }, "geometry": { "type": "Point", "coordinates": [ 484606.0, 147335.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122356, "UPRN": 100062161883, "X_COORDINATE": 484606.0, "Y_COORDINATE": 147335.0, "LATITUDE": 51.2189522, "LONGITUDE": -0.7899345 }, "geometry": { "type": "Point", "coordinates": [ 484606.0, 147335.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122351, "UPRN": 100062161878, "X_COORDINATE": 484611.0, "Y_COORDINATE": 147337.0, "LATITUDE": 51.2189694, "LONGITUDE": -0.7898624 }, "geometry": { "type": "Point", "coordinates": [ 484611.0, 147337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122352, "UPRN": 100062161879, "X_COORDINATE": 484611.0, "Y_COORDINATE": 147337.0, "LATITUDE": 51.2189694, "LONGITUDE": -0.7898624 }, "geometry": { "type": "Point", "coordinates": [ 484611.0, 147337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122353, "UPRN": 100062161880, "X_COORDINATE": 484611.0, "Y_COORDINATE": 147337.0, "LATITUDE": 51.2189694, "LONGITUDE": -0.7898624 }, "geometry": { "type": "Point", "coordinates": [ 484611.0, 147337.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729648, "UPRN": 100061609089, "X_COORDINATE": 484566.0, "Y_COORDINATE": 147374.0, "LATITUDE": 51.2193087, "LONGITUDE": -0.7904979 }, "geometry": { "type": "Point", "coordinates": [ 484566.0, 147374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729649, "UPRN": 100061609090, "X_COORDINATE": 484565.0, "Y_COORDINATE": 147378.0, "LATITUDE": 51.2193448, "LONGITUDE": -0.7905113 }, "geometry": { "type": "Point", "coordinates": [ 484565.0, 147378.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729647, "UPRN": 100061609088, "X_COORDINATE": 484586.0, "Y_COORDINATE": 147382.0, "LATITUDE": 51.2193777, "LONGITUDE": -0.7902097 }, "geometry": { "type": "Point", "coordinates": [ 484586.0, 147382.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729650, "UPRN": 100061609091, "X_COORDINATE": 484558.0, "Y_COORDINATE": 147384.0, "LATITUDE": 51.2193998, "LONGITUDE": -0.7906101 }, "geometry": { "type": "Point", "coordinates": [ 484558.0, 147384.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729646, "UPRN": 100061609087, "X_COORDINATE": 484584.0, "Y_COORDINATE": 147386.0, "LATITUDE": 51.2194139, "LONGITUDE": -0.7902374 }, "geometry": { "type": "Point", "coordinates": [ 484584.0, 147386.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729651, "UPRN": 100061609092, "X_COORDINATE": 484556.0, "Y_COORDINATE": 147389.0, "LATITUDE": 51.2194451, "LONGITUDE": -0.7906375 }, "geometry": { "type": "Point", "coordinates": [ 484556.0, 147389.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729645, "UPRN": 100061609086, "X_COORDINATE": 484584.0, "Y_COORDINATE": 147396.0, "LATITUDE": 51.2195038, "LONGITUDE": -0.790235 }, "geometry": { "type": "Point", "coordinates": [ 484584.0, 147396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729652, "UPRN": 100061609093, "X_COORDINATE": 484555.0, "Y_COORDINATE": 147398.0, "LATITUDE": 51.2195261, "LONGITUDE": -0.7906497 }, "geometry": { "type": "Point", "coordinates": [ 484555.0, 147398.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729644, "UPRN": 100061609085, "X_COORDINATE": 484582.0, "Y_COORDINATE": 147400.0, "LATITUDE": 51.2195401, "LONGITUDE": -0.7902627 }, "geometry": { "type": "Point", "coordinates": [ 484582.0, 147400.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729653, "UPRN": 100061609094, "X_COORDINATE": 484553.0, "Y_COORDINATE": 147403.0, "LATITUDE": 51.2195714, "LONGITUDE": -0.7906772 }, "geometry": { "type": "Point", "coordinates": [ 484553.0, 147403.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729643, "UPRN": 100061609084, "X_COORDINATE": 484576.0, "Y_COORDINATE": 147407.0, "LATITUDE": 51.2196039, "LONGITUDE": -0.790347 }, "geometry": { "type": "Point", "coordinates": [ 484576.0, 147407.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729642, "UPRN": 100061609083, "X_COORDINATE": 484575.0, "Y_COORDINATE": 147412.0, "LATITUDE": 51.219649, "LONGITUDE": -0.7903601 }, "geometry": { "type": "Point", "coordinates": [ 484575.0, 147412.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32216884, "UPRN": 100062354234, "X_COORDINATE": 484654.0, "Y_COORDINATE": 147347.0, "LATITUDE": 51.219053, "LONGITUDE": -0.7892445 }, "geometry": { "type": "Point", "coordinates": [ 484654.0, 147347.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217011, "UPRN": 100062354451, "X_COORDINATE": 484620.0, "Y_COORDINATE": 147339.0, "LATITUDE": 51.2189861, "LONGITUDE": -0.7897331 }, "geometry": { "type": "Point", "coordinates": [ 484620.0, 147339.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724655, "UPRN": 100061603790, "X_COORDINATE": 484778.0, "Y_COORDINATE": 147396.0, "LATITUDE": 51.2194751, "LONGITUDE": -0.7874579 }, "geometry": { "type": "Point", "coordinates": [ 484778.0, 147396.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724658, "UPRN": 100061603793, "X_COORDINATE": 484788.0, "Y_COORDINATE": 147404.0, "LATITUDE": 51.2195455, "LONGITUDE": -0.7873128 }, "geometry": { "type": "Point", "coordinates": [ 484788.0, 147404.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724659, "UPRN": 100061603794, "X_COORDINATE": 484795.0, "Y_COORDINATE": 147408.0, "LATITUDE": 51.2195805, "LONGITUDE": -0.7872117 }, "geometry": { "type": "Point", "coordinates": [ 484795.0, 147408.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724646, "UPRN": 100061603781, "X_COORDINATE": 484745.0, "Y_COORDINATE": 147411.0, "LATITUDE": 51.2196148, "LONGITUDE": -0.7879267 }, "geometry": { "type": "Point", "coordinates": [ 484745.0, 147411.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724648, "UPRN": 100061603783, "X_COORDINATE": 484750.0, "Y_COORDINATE": 147415.0, "LATITUDE": 51.2196501, "LONGITUDE": -0.7878542 }, "geometry": { "type": "Point", "coordinates": [ 484750.0, 147415.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724650, "UPRN": 100061603785, "X_COORDINATE": 484758.0, "Y_COORDINATE": 147425.0, "LATITUDE": 51.2197388, "LONGITUDE": -0.7877373 }, "geometry": { "type": "Point", "coordinates": [ 484758.0, 147425.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724651, "UPRN": 100061603786, "X_COORDINATE": 484758.0, "Y_COORDINATE": 147425.0, "LATITUDE": 51.2197388, "LONGITUDE": -0.7877373 }, "geometry": { "type": "Point", "coordinates": [ 484758.0, 147425.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724654, "UPRN": 100061603789, "X_COORDINATE": 484763.0, "Y_COORDINATE": 147428.0, "LATITUDE": 51.219765, "LONGITUDE": -0.787665 }, "geometry": { "type": "Point", "coordinates": [ 484763.0, 147428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724657, "UPRN": 100061603792, "X_COORDINATE": 484772.0, "Y_COORDINATE": 147436.0, "LATITUDE": 51.2198356, "LONGITUDE": -0.7875343 }, "geometry": { "type": "Point", "coordinates": [ 484772.0, 147436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724656, "UPRN": 100061603791, "X_COORDINATE": 484780.0, "Y_COORDINATE": 147446.0, "LATITUDE": 51.2199243, "LONGITUDE": -0.7874174 }, "geometry": { "type": "Point", "coordinates": [ 484780.0, 147446.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724660, "UPRN": 100061603795, "X_COORDINATE": 484783.0, "Y_COORDINATE": 147449.0, "LATITUDE": 51.2199508, "LONGITUDE": -0.7873738 }, "geometry": { "type": "Point", "coordinates": [ 484783.0, 147449.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727484, "UPRN": 100061606748, "X_COORDINATE": 484768.0, "Y_COORDINATE": 147472.0, "LATITUDE": 51.2201598, "LONGITUDE": -0.7875831 }, "geometry": { "type": "Point", "coordinates": [ 484768.0, 147472.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727486, "UPRN": 100061606750, "X_COORDINATE": 484766.0, "Y_COORDINATE": 147477.0, "LATITUDE": 51.2202051, "LONGITUDE": -0.7876105 }, "geometry": { "type": "Point", "coordinates": [ 484766.0, 147477.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727488, "UPRN": 100061606752, "X_COORDINATE": 484763.0, "Y_COORDINATE": 147481.0, "LATITUDE": 51.2202415, "LONGITUDE": -0.7876525 }, "geometry": { "type": "Point", "coordinates": [ 484763.0, 147481.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727494, "UPRN": 100061606758, "X_COORDINATE": 484761.0, "Y_COORDINATE": 147484.0, "LATITUDE": 51.2202687, "LONGITUDE": -0.7876805 }, "geometry": { "type": "Point", "coordinates": [ 484761.0, 147484.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727496, "UPRN": 100061606760, "X_COORDINATE": 484759.0, "Y_COORDINATE": 147489.0, "LATITUDE": 51.220314, "LONGITUDE": -0.7877079 }, "geometry": { "type": "Point", "coordinates": [ 484759.0, 147489.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727498, "UPRN": 100061606762, "X_COORDINATE": 484757.0, "Y_COORDINATE": 147492.0, "LATITUDE": 51.2203413, "LONGITUDE": -0.7877358 }, "geometry": { "type": "Point", "coordinates": [ 484757.0, 147492.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727500, "UPRN": 100061606764, "X_COORDINATE": 484755.0, "Y_COORDINATE": 147497.0, "LATITUDE": 51.2203865, "LONGITUDE": -0.7877633 }, "geometry": { "type": "Point", "coordinates": [ 484755.0, 147497.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727502, "UPRN": 100061606766, "X_COORDINATE": 484753.0, "Y_COORDINATE": 147501.0, "LATITUDE": 51.2204228, "LONGITUDE": -0.787791 }, "geometry": { "type": "Point", "coordinates": [ 484753.0, 147501.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727493, "UPRN": 100061606757, "X_COORDINATE": 484775.0, "Y_COORDINATE": 147514.0, "LATITUDE": 51.2205364, "LONGITUDE": -0.787473 }, "geometry": { "type": "Point", "coordinates": [ 484775.0, 147514.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727489, "UPRN": 100061606753, "X_COORDINATE": 484773.0, "Y_COORDINATE": 147518.0, "LATITUDE": 51.2205726, "LONGITUDE": -0.7875007 }, "geometry": { "type": "Point", "coordinates": [ 484773.0, 147518.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727490, "UPRN": 100061606754, "X_COORDINATE": 484771.0, "Y_COORDINATE": 147521.0, "LATITUDE": 51.2205999, "LONGITUDE": -0.7875286 }, "geometry": { "type": "Point", "coordinates": [ 484771.0, 147521.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727491, "UPRN": 100061606755, "X_COORDINATE": 484769.0, "Y_COORDINATE": 147525.0, "LATITUDE": 51.2206362, "LONGITUDE": -0.7875563 }, "geometry": { "type": "Point", "coordinates": [ 484769.0, 147525.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727492, "UPRN": 100061606756, "X_COORDINATE": 484767.0, "Y_COORDINATE": 147529.0, "LATITUDE": 51.2206724, "LONGITUDE": -0.787584 }, "geometry": { "type": "Point", "coordinates": [ 484767.0, 147529.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727495, "UPRN": 100061606759, "X_COORDINATE": 484760.0, "Y_COORDINATE": 147542.0, "LATITUDE": 51.2207903, "LONGITUDE": -0.7876811 }, "geometry": { "type": "Point", "coordinates": [ 484760.0, 147542.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31727497, "UPRN": 100061606761, "X_COORDINATE": 484756.0, "Y_COORDINATE": 147548.0, "LATITUDE": 51.2208449, "LONGITUDE": -0.7877369 }, "geometry": { "type": "Point", "coordinates": [ 484756.0, 147548.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724652, "UPRN": 100061603787, "X_COORDINATE": 484772.0, "Y_COORDINATE": 147388.0, "LATITUDE": 51.2194041, "LONGITUDE": -0.7875456 }, "geometry": { "type": "Point", "coordinates": [ 484772.0, 147388.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724653, "UPRN": 100061603788, "X_COORDINATE": 484762.0, "Y_COORDINATE": 147381.0, "LATITUDE": 51.2193426, "LONGITUDE": -0.7876904 }, "geometry": { "type": "Point", "coordinates": [ 484762.0, 147381.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724649, "UPRN": 100061603784, "X_COORDINATE": 484753.0, "Y_COORDINATE": 147374.0, "LATITUDE": 51.219281, "LONGITUDE": -0.7878209 }, "geometry": { "type": "Point", "coordinates": [ 484753.0, 147374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724647, "UPRN": 100061603782, "X_COORDINATE": 484747.0, "Y_COORDINATE": 147370.0, "LATITUDE": 51.219246, "LONGITUDE": -0.7879078 }, "geometry": { "type": "Point", "coordinates": [ 484747.0, 147370.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724484, "UPRN": 100061603606, "X_COORDINATE": 484771.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190716, "LONGITUDE": -0.7875687 }, "geometry": { "type": "Point", "coordinates": [ 484771.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724485, "UPRN": 100061603607, "X_COORDINATE": 484788.0, "Y_COORDINATE": 147351.0, "LATITUDE": 51.2190691, "LONGITUDE": -0.7873253 }, "geometry": { "type": "Point", "coordinates": [ 484788.0, 147351.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31724483, "UPRN": 100061603605, "X_COORDINATE": 484750.0, "Y_COORDINATE": 147348.0, "LATITUDE": 51.2190477, "LONGITUDE": -0.78787 }, "geometry": { "type": "Point", "coordinates": [ 484750.0, 147348.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443225, "UPRN": 10013889217, "X_COORDINATE": 485131.0, "Y_COORDINATE": 147287.0, "LATITUDE": 51.2184427, "LONGITUDE": -0.7824304 }, "geometry": { "type": "Point", "coordinates": [ 485131.0, 147287.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447648, "UPRN": 10013893999, "X_COORDINATE": 485107.0, "Y_COORDINATE": 147334.0, "LATITUDE": 51.2188688, "LONGITUDE": -0.7827628 }, "geometry": { "type": "Point", "coordinates": [ 485107.0, 147334.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446161, "UPRN": 10013892465, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147339.0, "LATITUDE": 51.2189123, "LONGITUDE": -0.7826185 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147339.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447647, "UPRN": 10013893998, "X_COORDINATE": 485125.0, "Y_COORDINATE": 147342.0, "LATITUDE": 51.218938, "LONGITUDE": -0.7825032 }, "geometry": { "type": "Point", "coordinates": [ 485125.0, 147342.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446163, "UPRN": 10013892467, "X_COORDINATE": 485123.0, "Y_COORDINATE": 147349.0, "LATITUDE": 51.2190013, "LONGITUDE": -0.7825302 }, "geometry": { "type": "Point", "coordinates": [ 485123.0, 147349.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444976, "UPRN": 10013891202, "X_COORDINATE": 485089.0, "Y_COORDINATE": 147417.0, "LATITUDE": 51.2196177, "LONGITUDE": -0.7830008 }, "geometry": { "type": "Point", "coordinates": [ 485089.0, 147417.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444975, "UPRN": 10013891201, "X_COORDINATE": 485094.0, "Y_COORDINATE": 147418.0, "LATITUDE": 51.2196259, "LONGITUDE": -0.782929 }, "geometry": { "type": "Point", "coordinates": [ 485094.0, 147418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444974, "UPRN": 10013891200, "X_COORDINATE": 485098.0, "Y_COORDINATE": 147418.0, "LATITUDE": 51.2196253, "LONGITUDE": -0.7828717 }, "geometry": { "type": "Point", "coordinates": [ 485098.0, 147418.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444962, "UPRN": 10013891188, "X_COORDINATE": 485111.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.2196324, "LONGITUDE": -0.7826854 }, "geometry": { "type": "Point", "coordinates": [ 485111.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444966, "UPRN": 10013891192, "X_COORDINATE": 485111.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.2196324, "LONGITUDE": -0.7826854 }, "geometry": { "type": "Point", "coordinates": [ 485111.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444970, "UPRN": 10013891196, "X_COORDINATE": 485111.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.2196324, "LONGITUDE": -0.7826854 }, "geometry": { "type": "Point", "coordinates": [ 485111.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444973, "UPRN": 10013891199, "X_COORDINATE": 485110.0, "Y_COORDINATE": 147421.0, "LATITUDE": 51.2196505, "LONGITUDE": -0.7826992 }, "geometry": { "type": "Point", "coordinates": [ 485110.0, 147421.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444963, "UPRN": 10013891189, "X_COORDINATE": 485108.0, "Y_COORDINATE": 147423.0, "LATITUDE": 51.2196688, "LONGITUDE": -0.7827274 }, "geometry": { "type": "Point", "coordinates": [ 485108.0, 147423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444967, "UPRN": 10013891193, "X_COORDINATE": 485108.0, "Y_COORDINATE": 147423.0, "LATITUDE": 51.2196688, "LONGITUDE": -0.7827274 }, "geometry": { "type": "Point", "coordinates": [ 485108.0, 147423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444971, "UPRN": 10013891197, "X_COORDINATE": 485108.0, "Y_COORDINATE": 147423.0, "LATITUDE": 51.2196688, "LONGITUDE": -0.7827274 }, "geometry": { "type": "Point", "coordinates": [ 485108.0, 147423.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444961, "UPRN": 10013891187, "X_COORDINATE": 485121.0, "Y_COORDINATE": 147424.0, "LATITUDE": 51.2196758, "LONGITUDE": -0.7825411 }, "geometry": { "type": "Point", "coordinates": [ 485121.0, 147424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444965, "UPRN": 10013891191, "X_COORDINATE": 485121.0, "Y_COORDINATE": 147424.0, "LATITUDE": 51.2196758, "LONGITUDE": -0.7825411 }, "geometry": { "type": "Point", "coordinates": [ 485121.0, 147424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444969, "UPRN": 10013891195, "X_COORDINATE": 485121.0, "Y_COORDINATE": 147424.0, "LATITUDE": 51.2196758, "LONGITUDE": -0.7825411 }, "geometry": { "type": "Point", "coordinates": [ 485121.0, 147424.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444972, "UPRN": 10013891198, "X_COORDINATE": 485119.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2197031, "LONGITUDE": -0.782569 }, "geometry": { "type": "Point", "coordinates": [ 485119.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444960, "UPRN": 10013891186, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147429.0, "LATITUDE": 51.2197214, "LONGITUDE": -0.7825971 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147429.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444964, "UPRN": 10013891190, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147429.0, "LATITUDE": 51.2197214, "LONGITUDE": -0.7825971 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147429.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444968, "UPRN": 10013891194, "X_COORDINATE": 485117.0, "Y_COORDINATE": 147429.0, "LATITUDE": 51.2197214, "LONGITUDE": -0.7825971 }, "geometry": { "type": "Point", "coordinates": [ 485117.0, 147429.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444953, "UPRN": 10013891179, "X_COORDINATE": 485135.0, "Y_COORDINATE": 147442.0, "LATITUDE": 51.2198356, "LONGITUDE": -0.7823364 }, "geometry": { "type": "Point", "coordinates": [ 485135.0, 147442.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444980, "UPRN": 10013891206, "X_COORDINATE": 485077.0, "Y_COORDINATE": 147447.0, "LATITUDE": 51.2198892, "LONGITUDE": -0.7831655 }, "geometry": { "type": "Point", "coordinates": [ 485077.0, 147447.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444979, "UPRN": 10013891205, "X_COORDINATE": 485081.0, "Y_COORDINATE": 147447.0, "LATITUDE": 51.2198886, "LONGITUDE": -0.7831082 }, "geometry": { "type": "Point", "coordinates": [ 485081.0, 147447.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444978, "UPRN": 10013891204, "X_COORDINATE": 485086.0, "Y_COORDINATE": 147448.0, "LATITUDE": 51.2198968, "LONGITUDE": -0.7830364 }, "geometry": { "type": "Point", "coordinates": [ 485086.0, 147448.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444977, "UPRN": 10013891203, "X_COORDINATE": 485090.0, "Y_COORDINATE": 147449.0, "LATITUDE": 51.2199052, "LONGITUDE": -0.7829789 }, "geometry": { "type": "Point", "coordinates": [ 485090.0, 147449.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32367193, "UPRN": 100062609441, "X_COORDINATE": 485220.0, "Y_COORDINATE": 147292.0, "LATITUDE": 51.2184744, "LONGITUDE": -0.7811552 }, "geometry": { "type": "Point", "coordinates": [ 485220.0, 147292.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399631, "UPRN": 100062699466, "X_COORDINATE": 485119.0, "Y_COORDINATE": 147350.0, "LATITUDE": 51.2190109, "LONGITUDE": -0.7825872 }, "geometry": { "type": "Point", "coordinates": [ 485119.0, 147350.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729289, "UPRN": 100061608726, "X_COORDINATE": 484336.0, "Y_COORDINATE": 147357.0, "LATITUDE": 51.2191899, "LONGITUDE": -0.7937944 }, "geometry": { "type": "Point", "coordinates": [ 484336.0, 147357.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122713, "UPRN": 100062162564, "X_COORDINATE": 484316.0, "Y_COORDINATE": 147358.0, "LATITUDE": 51.2192018, "LONGITUDE": -0.7940805 }, "geometry": { "type": "Point", "coordinates": [ 484316.0, 147358.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729287, "UPRN": 100061608724, "X_COORDINATE": 484323.0, "Y_COORDINATE": 147359.0, "LATITUDE": 51.2192098, "LONGITUDE": -0.79398 }, "geometry": { "type": "Point", "coordinates": [ 484323.0, 147359.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729291, "UPRN": 100061608728, "X_COORDINATE": 484345.0, "Y_COORDINATE": 147363.0, "LATITUDE": 51.2192425, "LONGITUDE": -0.7936642 }, "geometry": { "type": "Point", "coordinates": [ 484345.0, 147363.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729699, "UPRN": 100061609140, "X_COORDINATE": 484355.0, "Y_COORDINATE": 147374.0, "LATITUDE": 51.2193399, "LONGITUDE": -0.7935184 }, "geometry": { "type": "Point", "coordinates": [ 484355.0, 147374.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729284, "UPRN": 100061608721, "X_COORDINATE": 484269.0, "Y_COORDINATE": 147377.0, "LATITUDE": 51.2193796, "LONGITUDE": -0.7947489 }, "geometry": { "type": "Point", "coordinates": [ 484269.0, 147377.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729286, "UPRN": 100061608723, "X_COORDINATE": 484312.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193912, "LONGITUDE": -0.7941328 }, "geometry": { "type": "Point", "coordinates": [ 484312.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729698, "UPRN": 100061609139, "X_COORDINATE": 484360.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193841, "LONGITUDE": -0.7934457 }, "geometry": { "type": "Point", "coordinates": [ 484360.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122714, "UPRN": 100062162566, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122715, "UPRN": 100062162567, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122716, "UPRN": 100062162568, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122717, "UPRN": 100062162569, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122718, "UPRN": 100062162570, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122719, "UPRN": 100062162571, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122720, "UPRN": 100062162572, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122721, "UPRN": 100062162573, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729288, "UPRN": 100061608725, "X_COORDINATE": 484316.0, "Y_COORDINATE": 147380.0, "LATITUDE": 51.2193996, "LONGITUDE": -0.7940753 }, "geometry": { "type": "Point", "coordinates": [ 484316.0, 147380.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729290, "UPRN": 100061608727, "X_COORDINATE": 484320.0, "Y_COORDINATE": 147383.0, "LATITUDE": 51.219426, "LONGITUDE": -0.7940174 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 147383.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729292, "UPRN": 100061608729, "X_COORDINATE": 484324.0, "Y_COORDINATE": 147385.0, "LATITUDE": 51.2194434, "LONGITUDE": -0.7939596 }, "geometry": { "type": "Point", "coordinates": [ 484324.0, 147385.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729293, "UPRN": 100061608730, "X_COORDINATE": 484330.0, "Y_COORDINATE": 147389.0, "LATITUDE": 51.2194785, "LONGITUDE": -0.7938728 }, "geometry": { "type": "Point", "coordinates": [ 484330.0, 147389.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729294, "UPRN": 100061608731, "X_COORDINATE": 484333.0, "Y_COORDINATE": 147391.0, "LATITUDE": 51.219496, "LONGITUDE": -0.7938294 }, "geometry": { "type": "Point", "coordinates": [ 484333.0, 147391.0 ] } }, -{ "type": "Feature", "properties": { "FID": 31729295, "UPRN": 100061608732, "X_COORDINATE": 484342.0, "Y_COORDINATE": 147398.0, "LATITUDE": 51.2195576, "LONGITUDE": -0.7936989 }, "geometry": { "type": "Point", "coordinates": [ 484342.0, 147398.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399997, "UPRN": 100062700132, "X_COORDINATE": 484298.0, "Y_COORDINATE": 147379.0, "LATITUDE": 51.2193933, "LONGITUDE": -0.7943332 }, "geometry": { "type": "Point", "coordinates": [ 484298.0, 147379.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399998, "UPRN": 100062700133, "X_COORDINATE": 484316.0, "Y_COORDINATE": 147358.0, "LATITUDE": 51.2192018, "LONGITUDE": -0.7940805 }, "geometry": { "type": "Point", "coordinates": [ 484316.0, 147358.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32399999, "UPRN": 100062700134, "X_COORDINATE": 484321.0, "Y_COORDINATE": 147385.0, "LATITUDE": 51.2194438, "LONGITUDE": -0.7940026 }, "geometry": { "type": "Point", "coordinates": [ 484321.0, 147385.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400000, "UPRN": 100062700135, "X_COORDINATE": 484320.0, "Y_COORDINATE": 147383.0, "LATITUDE": 51.219426, "LONGITUDE": -0.7940174 }, "geometry": { "type": "Point", "coordinates": [ 484320.0, 147383.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122727, "UPRN": 100062162585, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122728, "UPRN": 100062162586, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122729, "UPRN": 100062162587, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122730, "UPRN": 100062162588, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122731, "UPRN": 100062162589, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122732, "UPRN": 100062162590, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122733, "UPRN": 100062162591, "X_COORDINATE": 484334.0, "Y_COORDINATE": 147312.0, "LATITUDE": 51.2187856, "LONGITUDE": -0.7938336 }, "geometry": { "type": "Point", "coordinates": [ 484334.0, 147312.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122734, "UPRN": 100062162592, "X_COORDINATE": 484334.0, "Y_COORDINATE": 147312.0, "LATITUDE": 51.2187856, "LONGITUDE": -0.7938336 }, "geometry": { "type": "Point", "coordinates": [ 484334.0, 147312.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122735, "UPRN": 100062162593, "X_COORDINATE": 484334.0, "Y_COORDINATE": 147312.0, "LATITUDE": 51.2187856, "LONGITUDE": -0.7938336 }, "geometry": { "type": "Point", "coordinates": [ 484334.0, 147312.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122736, "UPRN": 100062162594, "X_COORDINATE": 484334.0, "Y_COORDINATE": 147312.0, "LATITUDE": 51.2187856, "LONGITUDE": -0.7938336 }, "geometry": { "type": "Point", "coordinates": [ 484334.0, 147312.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122737, "UPRN": 100062162595, "X_COORDINATE": 484334.0, "Y_COORDINATE": 147312.0, "LATITUDE": 51.2187856, "LONGITUDE": -0.7938336 }, "geometry": { "type": "Point", "coordinates": [ 484334.0, 147312.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122738, "UPRN": 100062162596, "X_COORDINATE": 484334.0, "Y_COORDINATE": 147312.0, "LATITUDE": 51.2187856, "LONGITUDE": -0.7938336 }, "geometry": { "type": "Point", "coordinates": [ 484334.0, 147312.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122739, "UPRN": 100062162597, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188556, "LONGITUDE": -0.7936456 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122740, "UPRN": 100062162598, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188556, "LONGITUDE": -0.7936456 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122741, "UPRN": 100062162599, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188556, "LONGITUDE": -0.7936456 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122742, "UPRN": 100062162600, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188556, "LONGITUDE": -0.7936456 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122743, "UPRN": 100062162601, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188556, "LONGITUDE": -0.7936456 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122744, "UPRN": 100062162602, "X_COORDINATE": 484347.0, "Y_COORDINATE": 147320.0, "LATITUDE": 51.2188556, "LONGITUDE": -0.7936456 }, "geometry": { "type": "Point", "coordinates": [ 484347.0, 147320.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122745, "UPRN": 100062162603, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187631, "LONGITUDE": -0.7933903 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122746, "UPRN": 100062162604, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187631, "LONGITUDE": -0.7933903 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122747, "UPRN": 100062162605, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187631, "LONGITUDE": -0.7933903 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122748, "UPRN": 100062162606, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187631, "LONGITUDE": -0.7933903 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122749, "UPRN": 100062162607, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187631, "LONGITUDE": -0.7933903 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122750, "UPRN": 100062162608, "X_COORDINATE": 484365.0, "Y_COORDINATE": 147310.0, "LATITUDE": 51.2187631, "LONGITUDE": -0.7933903 }, "geometry": { "type": "Point", "coordinates": [ 484365.0, 147310.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122751, "UPRN": 100062162609, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186186, "LONGITUDE": -0.7933368 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122752, "UPRN": 100062162610, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186186, "LONGITUDE": -0.7933368 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122753, "UPRN": 100062162611, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186186, "LONGITUDE": -0.7933368 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122754, "UPRN": 100062162612, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186186, "LONGITUDE": -0.7933368 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122755, "UPRN": 100062162613, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186186, "LONGITUDE": -0.7933368 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122756, "UPRN": 100062162614, "X_COORDINATE": 484369.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2186186, "LONGITUDE": -0.7933368 }, "geometry": { "type": "Point", "coordinates": [ 484369.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122757, "UPRN": 100062162615, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184741, "LONGITUDE": -0.793269 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122758, "UPRN": 100062162616, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184741, "LONGITUDE": -0.793269 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122759, "UPRN": 100062162617, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184741, "LONGITUDE": -0.793269 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122760, "UPRN": 100062162618, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184741, "LONGITUDE": -0.793269 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122761, "UPRN": 100062162619, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184741, "LONGITUDE": -0.793269 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32122762, "UPRN": 100062162620, "X_COORDINATE": 484374.0, "Y_COORDINATE": 147278.0, "LATITUDE": 51.2184741, "LONGITUDE": -0.793269 }, "geometry": { "type": "Point", "coordinates": [ 484374.0, 147278.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32400013, "UPRN": 100062700180, "X_COORDINATE": 484326.0, "Y_COORDINATE": 147297.0, "LATITUDE": 51.218652, "LONGITUDE": -0.7939517 }, "geometry": { "type": "Point", "coordinates": [ 484326.0, 147297.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15443048, "UPRN": 10013889001, "X_COORDINATE": 485231.0, "Y_COORDINATE": 147427.0, "LATITUDE": 51.2196864, "LONGITUDE": -0.7809657 }, "geometry": { "type": "Point", "coordinates": [ 485231.0, 147427.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444896, "UPRN": 10013891122, "X_COORDINATE": 485072.0, "Y_COORDINATE": 147410.0, "LATITUDE": 51.2195573, "LONGITUDE": -0.7832458 }, "geometry": { "type": "Point", "coordinates": [ 485072.0, 147410.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444882, "UPRN": 10013891108, "X_COORDINATE": 485070.0, "Y_COORDINATE": 147445.0, "LATITUDE": 51.2198722, "LONGITUDE": -0.7832662 }, "geometry": { "type": "Point", "coordinates": [ 485070.0, 147445.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444881, "UPRN": 10013891107, "X_COORDINATE": 485070.0, "Y_COORDINATE": 147445.0, "LATITUDE": 51.2198722, "LONGITUDE": -0.7832662 }, "geometry": { "type": "Point", "coordinates": [ 485070.0, 147445.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444880, "UPRN": 10013891106, "X_COORDINATE": 485070.0, "Y_COORDINATE": 147445.0, "LATITUDE": 51.2198722, "LONGITUDE": -0.7832662 }, "geometry": { "type": "Point", "coordinates": [ 485070.0, 147445.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444895, "UPRN": 10013891121, "X_COORDINATE": 485069.0, "Y_COORDINATE": 147414.0, "LATITUDE": 51.2195937, "LONGITUDE": -0.7832878 }, "geometry": { "type": "Point", "coordinates": [ 485069.0, 147414.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444894, "UPRN": 10013891120, "X_COORDINATE": 485067.0, "Y_COORDINATE": 147419.0, "LATITUDE": 51.2196389, "LONGITUDE": -0.7833153 }, "geometry": { "type": "Point", "coordinates": [ 485067.0, 147419.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444893, "UPRN": 10013891119, "X_COORDINATE": 485065.0, "Y_COORDINATE": 147422.0, "LATITUDE": 51.2196662, "LONGITUDE": -0.7833432 }, "geometry": { "type": "Point", "coordinates": [ 485065.0, 147422.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444889, "UPRN": 10013891115, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147438.0, "LATITUDE": 51.2198106, "LONGITUDE": -0.7833967 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147438.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444886, "UPRN": 10013891112, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147438.0, "LATITUDE": 51.2198106, "LONGITUDE": -0.7833967 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147438.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444883, "UPRN": 10013891109, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147438.0, "LATITUDE": 51.2198106, "LONGITUDE": -0.7833967 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147438.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444884, "UPRN": 10013891110, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147428.0, "LATITUDE": 51.2197207, "LONGITUDE": -0.783399 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444887, "UPRN": 10013891113, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147428.0, "LATITUDE": 51.2197207, "LONGITUDE": -0.783399 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444890, "UPRN": 10013891116, "X_COORDINATE": 485061.0, "Y_COORDINATE": 147428.0, "LATITUDE": 51.2197207, "LONGITUDE": -0.783399 }, "geometry": { "type": "Point", "coordinates": [ 485061.0, 147428.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444892, "UPRN": 10013891118, "X_COORDINATE": 485058.0, "Y_COORDINATE": 147436.0, "LATITUDE": 51.2197931, "LONGITUDE": -0.7834401 }, "geometry": { "type": "Point", "coordinates": [ 485058.0, 147436.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444891, "UPRN": 10013891117, "X_COORDINATE": 485055.0, "Y_COORDINATE": 147434.0, "LATITUDE": 51.2197756, "LONGITUDE": -0.7834835 }, "geometry": { "type": "Point", "coordinates": [ 485055.0, 147434.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444888, "UPRN": 10013891114, "X_COORDINATE": 485055.0, "Y_COORDINATE": 147434.0, "LATITUDE": 51.2197756, "LONGITUDE": -0.7834835 }, "geometry": { "type": "Point", "coordinates": [ 485055.0, 147434.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444885, "UPRN": 10013891111, "X_COORDINATE": 485055.0, "Y_COORDINATE": 147434.0, "LATITUDE": 51.2197756, "LONGITUDE": -0.7834835 }, "geometry": { "type": "Point", "coordinates": [ 485055.0, 147434.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445280, "UPRN": 10013891565, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147258.0, "LATITUDE": 51.2181754, "LONGITUDE": -0.7818074 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147258.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15445279, "UPRN": 10013891564, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147258.0, "LATITUDE": 51.2181754, "LONGITUDE": -0.7818074 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147258.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444959, "UPRN": 10013891185, "X_COORDINATE": 485133.0, "Y_COORDINATE": 147447.0, "LATITUDE": 51.2198808, "LONGITUDE": -0.7823638 }, "geometry": { "type": "Point", "coordinates": [ 485133.0, 147447.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444954, "UPRN": 10013891180, "X_COORDINATE": 485133.0, "Y_COORDINATE": 147447.0, "LATITUDE": 51.2198808, "LONGITUDE": -0.7823638 }, "geometry": { "type": "Point", "coordinates": [ 485133.0, 147447.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444947, "UPRN": 10013891173, "X_COORDINATE": 485164.0, "Y_COORDINATE": 147448.0, "LATITUDE": 51.2198852, "LONGITUDE": -0.7819198 }, "geometry": { "type": "Point", "coordinates": [ 485164.0, 147448.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444946, "UPRN": 10013891172, "X_COORDINATE": 485170.0, "Y_COORDINATE": 147449.0, "LATITUDE": 51.2198933, "LONGITUDE": -0.7818337 }, "geometry": { "type": "Point", "coordinates": [ 485170.0, 147449.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444945, "UPRN": 10013891171, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147452.0, "LATITUDE": 51.2199195, "LONGITUDE": -0.7817614 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147452.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444944, "UPRN": 10013891170, "X_COORDINATE": 485179.0, "Y_COORDINATE": 147454.0, "LATITUDE": 51.2199369, "LONGITUDE": -0.7817037 }, "geometry": { "type": "Point", "coordinates": [ 485179.0, 147454.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444943, "UPRN": 10013891169, "X_COORDINATE": 485183.0, "Y_COORDINATE": 147456.0, "LATITUDE": 51.2199543, "LONGITUDE": -0.7816459 }, "geometry": { "type": "Point", "coordinates": [ 485183.0, 147456.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444942, "UPRN": 10013891168, "X_COORDINATE": 485183.0, "Y_COORDINATE": 147469.0, "LATITUDE": 51.2200711, "LONGITUDE": -0.7816428 }, "geometry": { "type": "Point", "coordinates": [ 485183.0, 147469.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444941, "UPRN": 10013891167, "X_COORDINATE": 485175.0, "Y_COORDINATE": 147475.0, "LATITUDE": 51.2201263, "LONGITUDE": -0.7817559 }, "geometry": { "type": "Point", "coordinates": [ 485175.0, 147475.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444929, "UPRN": 10013891155, "X_COORDINATE": 485135.0, "Y_COORDINATE": 147476.0, "LATITUDE": 51.2201412, "LONGITUDE": -0.7823283 }, "geometry": { "type": "Point", "coordinates": [ 485135.0, 147476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444930, "UPRN": 10013891156, "X_COORDINATE": 485135.0, "Y_COORDINATE": 147476.0, "LATITUDE": 51.2201412, "LONGITUDE": -0.7823283 }, "geometry": { "type": "Point", "coordinates": [ 485135.0, 147476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444931, "UPRN": 10013891157, "X_COORDINATE": 485135.0, "Y_COORDINATE": 147476.0, "LATITUDE": 51.2201412, "LONGITUDE": -0.7823283 }, "geometry": { "type": "Point", "coordinates": [ 485135.0, 147476.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444940, "UPRN": 10013891166, "X_COORDINATE": 485172.0, "Y_COORDINATE": 147479.0, "LATITUDE": 51.2201627, "LONGITUDE": -0.7817979 }, "geometry": { "type": "Point", "coordinates": [ 485172.0, 147479.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444939, "UPRN": 10013891165, "X_COORDINATE": 485169.0, "Y_COORDINATE": 147483.0, "LATITUDE": 51.2201991, "LONGITUDE": -0.7818399 }, "geometry": { "type": "Point", "coordinates": [ 485169.0, 147483.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217494, "UPRN": 100062355370, "X_COORDINATE": 485135.0, "Y_COORDINATE": 147261.0, "LATITUDE": 51.2182084, "LONGITUDE": -0.7823793 }, "geometry": { "type": "Point", "coordinates": [ 485135.0, 147261.0 ] } }, -{ "type": "Feature", "properties": { "FID": 32217511, "UPRN": 100062355411, "X_COORDINATE": 485141.0, "Y_COORDINATE": 147245.0, "LATITUDE": 51.2180636, "LONGITUDE": -0.7822972 }, "geometry": { "type": "Point", "coordinates": [ 485141.0, 147245.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448030, "UPRN": 10013894389, "X_COORDINATE": 485156.0, "Y_COORDINATE": 147294.0, "LATITUDE": 51.2185019, "LONGITUDE": -0.7820708 }, "geometry": { "type": "Point", "coordinates": [ 485156.0, 147294.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448100, "UPRN": 10013894459, "X_COORDINATE": 485253.0, "Y_COORDINATE": 147311.0, "LATITUDE": 51.2186403, "LONGITUDE": -0.7806783 }, "geometry": { "type": "Point", "coordinates": [ 485253.0, 147311.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15446162, "UPRN": 10013892466, "X_COORDINATE": 485162.0, "Y_COORDINATE": 147317.0, "LATITUDE": 51.2187078, "LONGITUDE": -0.7819795 }, "geometry": { "type": "Point", "coordinates": [ 485162.0, 147317.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15447329, "UPRN": 10013893673, "X_COORDINATE": 485154.0, "Y_COORDINATE": 147335.0, "LATITUDE": 51.2188708, "LONGITUDE": -0.7820898 }, "geometry": { "type": "Point", "coordinates": [ 485154.0, 147335.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15448099, "UPRN": 10013894458, "X_COORDINATE": 485222.0, "Y_COORDINATE": 147345.0, "LATITUDE": 51.2189506, "LONGITUDE": -0.781114 }, "geometry": { "type": "Point", "coordinates": [ 485222.0, 147345.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444949, "UPRN": 10013891175, "X_COORDINATE": 485149.0, "Y_COORDINATE": 147429.0, "LATITUDE": 51.2197166, "LONGITUDE": -0.7821391 }, "geometry": { "type": "Point", "coordinates": [ 485149.0, 147429.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444950, "UPRN": 10013891176, "X_COORDINATE": 485143.0, "Y_COORDINATE": 147431.0, "LATITUDE": 51.2197355, "LONGITUDE": -0.7822245 }, "geometry": { "type": "Point", "coordinates": [ 485143.0, 147431.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444951, "UPRN": 10013891177, "X_COORDINATE": 485140.0, "Y_COORDINATE": 147435.0, "LATITUDE": 51.2197719, "LONGITUDE": -0.7822665 }, "geometry": { "type": "Point", "coordinates": [ 485140.0, 147435.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444952, "UPRN": 10013891178, "X_COORDINATE": 485138.0, "Y_COORDINATE": 147438.0, "LATITUDE": 51.2197992, "LONGITUDE": -0.7822944 }, "geometry": { "type": "Point", "coordinates": [ 485138.0, 147438.0 ] } }, -{ "type": "Feature", "properties": { "FID": 15444948, "UPRN": 10013891174, "X_COORDINATE": 485160.0, "Y_COORDINATE": 147445.0, "LATITUDE": 51.2198588, "LONGITUDE": -0.7819778 }, "geometry": { "type": "Point", "coordinates": [ 485160.0, 147445.0 ] } } -] -} diff --git a/public/WD_MAY_2024_UK_BGC.geojson b/public/output.pmtiles similarity index 78% rename from public/WD_MAY_2024_UK_BGC.geojson rename to public/output.pmtiles index 159fffc1..8d4b5d43 100644 Binary files a/public/WD_MAY_2024_UK_BGC.geojson and b/public/output.pmtiles differ diff --git a/public/robots.txt b/public/robots.txt old mode 100644 new mode 100755 diff --git a/public/tail-spin.svg b/public/tail-spin.svg old mode 100644 new mode 100755 diff --git a/public/texture.png b/public/texture.png new file mode 100644 index 00000000..e5a92e9c Binary files /dev/null and b/public/texture.png differ diff --git a/resources/js/Components/DataMap/ConnectionsModal.tsx b/resources/js/Components/DataMap/ConnectionsModal.tsx new file mode 100644 index 00000000..1020259c --- /dev/null +++ b/resources/js/Components/DataMap/ConnectionsModal.tsx @@ -0,0 +1,563 @@ +import React, { useEffect, useMemo, useState } from 'react'; +import axios from 'axios'; + +interface Connection { + coordinates: [number, number]; + type: string; + properties: any; + id: string; + distance?: number; + bearing?: number; + status?: 'proposed' | 'verified' | 'rejected'; +} + +interface ConnectionsModalProps { + isOpen: boolean; + onClose: () => void; + connections: Connection[]; + onUpdateConnection: (connectionId: string, status: 'proposed' | 'verified' | 'rejected') => void; + sourcePhotoId?: string; +} + +const ConnectionsModal: React.FC| + + | ++ ID + | ++ Type + | ++ Distance + | ++ Bearing Δ + | ++ Source + | ++ Status + | ++ Action + | +
|---|---|---|---|---|---|---|---|
| + { + if (status === 'proposed' && !isLoadingStatuses) { + toggleSelectOne(connection.id); + } + }} + aria-label={`Select ${connection.id}`} + disabled={isLoadingStatuses || status !== 'proposed'} + /> + | ++ {(() => { + switch (connection.type) { + case 'building': + case 'buildingPart': + case 'site': + return connection.properties?.osid || 'N/A'; + case 'nhle': + return connection.properties.nhle_id || 'N/A'; + default: + return connection.properties?.id || connection.id.split('-')[1] || 'N/A'; + } + })()} + | +
+
+
+
+ {getTypeLabel(connection.type)}
+
+
+ |
+ + {connection.distance ? `${Math.round(connection.distance)}m` : '-'} + | ++ {connection.bearing ? `${Math.round(connection.bearing)}°` : '-'} + | +
+ {(() => {
+ const source = connection.properties?.connection_source;
+ if (source === 'land_registry_inspire_bearing_intersection') {
+ return (
+
+
+ );
+ } else if (source === 'land_registry_bearing_intersection') {
+ return 📐 Cadastral Polygon;
+ } else {
+ return 📍 Direct;
+ }
+ })()}
+ 🏛️ INSPIRE Polygon
+
+ ID: {connection.properties?.intersected_inspire_id || 'N/A'}
+
+ {connection.properties?.intersected_inspire_label && (
+
+ {connection.properties.intersected_inspire_label}
+
+ )}
+ |
+ + + {getStatusLabel(status)} + + | +
+ {isLoadingStatuses ? (
+
+
+ Checking status…
+
+ ) : (
+ <>
+ {status === 'proposed' && (
+ <>
+
+
+ >
+ )}
+ {(status === 'verified' || status === 'rejected') && (
+
+ )}
+ >
+ )}
+ |
+
| + Type + | + {/*+ ID + | */} ++ Distance + | ++ Bearing + | ++ Source + | ++ Properties + | +
|---|---|---|---|---|---|
|
+
+
+
+ {getTypeLabel(connection.type)}
+
+
+ |
+ {/* + {connection.properties?.id || connection.id} + | */} ++ {connection.distance ? `${Math.round(connection.distance)}m` : '-'} + | ++ {connection.bearing ? `${Math.round(connection.bearing)}°` : '-'} + | ++ {connection.properties?.connection_source === 'land_registry_bearing_intersection' ? ( + + Cadastral + + ) : ( + + Proximity + + )} + | +
+
+ {connection.properties?.name ||
+ connection.properties?.address ||
+ connection.properties?.description ||
+ 'No description'}
+
+ |
+
+
+